diff --git a/.devcontainer/Dockerfile b/.devcontainer/Dockerfile deleted file mode 100644 index fcc5f3644b..0000000000 --- a/.devcontainer/Dockerfile +++ /dev/null @@ -1,16 +0,0 @@ -# See here for image contents: https://github.com/microsoft/vscode-dev-containers/tree/v0.187.0/containers/typescript-node/.devcontainer/base.Dockerfile - -# [Choice] Node.js version: 16, 14, 12 -ARG VARIANT="16-buster" -FROM mcr.microsoft.com/vscode/devcontainers/typescript-node:0-${VARIANT} - -# [Optional] Uncomment this section to install additional OS packages. -# RUN apt-get update && export DEBIAN_FRONTEND=noninteractive \ -# && apt-get -y install --no-install-recommends - -# [Optional] Uncomment if you want to install an additional version of node using nvm -# ARG EXTRA_NODE_VERSION=10 -# RUN su node -c "source /usr/local/share/nvm/nvm.sh && nvm install ${EXTRA_NODE_VERSION}" - -# [Optional] Uncomment if you want to install more global node packages -# RUN su node -c "npm install -g " diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json deleted file mode 100644 index 8347a4fae8..0000000000 --- a/.devcontainer/devcontainer.json +++ /dev/null @@ -1,25 +0,0 @@ -// For format details, see https://aka.ms/devcontainer.json. For config options, see the README at: -// https://github.com/microsoft/vscode-dev-containers/tree/v0.187.0/containers/typescript-node -{ - "name": "MapComplete", - "build": { - "dockerfile": "Dockerfile", - // Update 'VARIANT' to pick a Node version: 12, 14, 16 - "args": { - "VARIANT": "14" - } - }, - // Set *default* container specific settings.json values on container create. - "settings": {}, - // Add the IDs of extensions you want installed when the container is created. - "extensions": [], - // Use 'forwardPorts' to make a list of ports inside the container available locally. - "forwardPorts": [ - 1234 - ], - // Use 'postCreateCommand' to run commands after the container is created. - //"postCreateCommand": "npm run init", - - // Comment out connect as root instead. More info: https://aka.ms/vscode-remote/containers/non-root. - "remoteUser": "node" -} diff --git a/.gitattributes b/.gitattributes deleted file mode 100644 index 8e0cc69297..0000000000 --- a/.gitattributes +++ /dev/null @@ -1 +0,0 @@ -*.json merge=json 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/pull_request_template.md b/.github/pull_request_template.md index 5852705867..8745114960 100644 --- a/.github/pull_request_template.md +++ b/.github/pull_request_template.md @@ -13,6 +13,5 @@ To making merging smooth, please make sure that each of the following conditions - [ ] The codebase is GPL-licensed. By opening a pull request, the new theme will be GPL too - [ ] All images are included in the pull request and no images are loaded from an external service (e.g. Wikipedia) -- [ ] - The [guidelines on how to make your own theme](https://github.com/pietervdvn/MapComplete/blob/master/Docs/Making_Your_Own_Theme.md) - are read and followed \ No newline at end of file +- [ ] The [guidelines on how to make your own theme](https://github.com/pietervdvn/MapComplete/blob/master/Docs/Making_Your_Own_Theme.md) + are read and followed 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/.prettierrc b/.prettierrc deleted file mode 100644 index 0b81e39b44..0000000000 --- a/.prettierrc +++ /dev/null @@ -1,6 +0,0 @@ -{ - "trailingComma": "es5", - "tabWidth": 4, - "semi": true, - "singleQuote": false -} diff --git a/.vscode/settings.json b/.vscode/settings.json deleted file mode 100644 index 35c483d8ab..0000000000 --- a/.vscode/settings.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "files.eol": "\n" -} \ 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/AllTranslationAssets.ts b/AllTranslationAssets.ts deleted file mode 100644 index 6ef387f0fa..0000000000 --- a/AllTranslationAssets.ts +++ /dev/null @@ -1,6 +0,0 @@ -import CompiledTranslations from "./assets/generated/CompiledTranslations"; - -export default class AllTranslationAssets { - - public static t = CompiledTranslations.t; -} \ No newline at end of file diff --git a/Docs/ContributorRights.md b/CONTRIBUTING.md similarity index 56% rename from Docs/ContributorRights.md rename to CONTRIBUTING.md index c9257350de..d514b13b08 100644 --- a/Docs/ContributorRights.md +++ b/CONTRIBUTING.md @@ -1,10 +1,23 @@ +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 -github. This means that this branch will be _automatically built_ and be **deployed** +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 deploys are free and totally automatic. They might fail if something is wrong, but this will hinder no-one. @@ -19,9 +32,9 @@ 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 -and then. +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 maintainers will then doublecheck and pull it in. @@ -39,4 +52,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 cf6aa010fc..0000000000 --- a/Customizations/AllKnownLayers.ts +++ /dev/null @@ -1,115 +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 - })() - - - // 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"] - /** - * 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] - - - - 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; - } - - /** - * 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){ - return SharedTagRenderings.SharedTagRenderingJson.get(renderingId) - } - - const [layerId, id] = renderingId.split(".") - const layer = AllKnownLayers.getSharedLayersJson().get(layerId) - if(layer === undefined){ - if(Utils.runningFromConsole){ - // Probably generating the layer overview - return { - id: "dummy" - } - } - throw "Builtin layer "+layerId+" not found" - } - const renderings = layer?.tagRenderings ?? [] - for (const rendering of renderings) { - if(rendering["id"] === id){ - 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]} - } - return found - } - } - 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(", ")}` - } - -} diff --git a/Customizations/AllKnownLayouts.ts b/Customizations/AllKnownLayouts.ts index 4d0c394428..2b3ce5c651 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"; @@ -6,12 +5,17 @@ import BaseUIElement from "../UI/BaseUIElement"; 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 { - - public static allKnownLayouts: Map = AllKnownLayouts.AllLayouts(); public static layoutsList: LayoutConfig[] = AllKnownLayouts.GenerateOrderedList(AllKnownLayouts.allKnownLayouts); + // Must be below the list... + private static sharedLayers: Map = AllKnownLayouts.getSharedLayers(); public static AllPublicLayers() { const allLayers: LayerConfig[] = [] @@ -33,21 +37,23 @@ 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()) + 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)) const themesPerLayer = new Map() for (const layout of Array.from(AllKnownLayouts.allKnownLayouts.values())) { - if(layout.hideFromOverview){ + if (layout.hideFromOverview) { continue } for (const layer of layout.layers) { + if (!builtinLayerIds.has(layer.id)) { + continue + } if (!themesPerLayer.has(layer.id)) { themesPerLayer.set(layer.id, []) } @@ -56,75 +62,124 @@ export class AllKnownLayouts { } - let popularLayerCutoff = 2; - const popupalLayers = allLayers.filter((layer) => themesPerLayer.get(layer.id)?.length >= 2) - .filter(layer => AllKnownLayers.priviliged_layers.indexOf(layer.id) < 0) + // 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) + } + } + + + // 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) + } + + + } + 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), AllKnownLayers.added_by_default.indexOf(l.id) >= 0, AllKnownLayers.no_include.indexOf(l.id) < 0)), - new Title("Frequently reused layers", 1), - "The following layers are used by at least "+popularLayerCutoff+" mapcomplete themes and might be interesting for your custom theme too", - new List(popupalLayers.map(layer => "[" + layer.id + "](#" + layer.id + ")")), - ...popupalLayers.map((layer) => layer.GenerateDocumentation(themesPerLayer.get(layer.id))) + 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 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) + 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 list; + } + + return sharedLayers; } - 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 GenerateOrderedList(allKnownLayouts: Map): LayoutConfig[] { + const list = [] + allKnownLayouts.forEach((layout) => { + list.push(layout) + }) + return list; } 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) - } + 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 = layout.layers[i] = AllKnownLayers.sharedLayers.get(layer); + layer = AllKnownLayouts.sharedLayers.get(layer); + layout.layers[i] = layer if (layer === undefined) { - console.log("Defined layers are ", AllKnownLayers.sharedLayers.keys()) + console.log("Defined layers are ", AllKnownLayouts.sharedLayers.keys()) throw `Layer ${layer} was not found or defined - probably a type was made` } } diff --git a/Customizations/SharedTagRenderings.ts b/Customizations/SharedTagRenderings.ts index 4344b6e893..3f0288748f 100644 --- a/Customizations/SharedTagRenderings.ts +++ b/Customizations/SharedTagRenderings.ts @@ -3,6 +3,11 @@ import * as icons from "../assets/tagRenderings/icons.json"; import {Utils} from "../Utils"; import TagRenderingConfig from "../Models/ThemeConfig/TagRenderingConfig"; import {TagRenderingConfigJson} from "../Models/ThemeConfig/Json/TagRenderingConfigJson"; +import BaseUIElement from "../UI/BaseUIElement"; +import Combine from "../UI/Base/Combine"; +import Title from "../UI/Base/Title"; +import {FixedUiElement} from "../UI/Base/FixedUiElement"; +import List from "../UI/Base/List"; export default class SharedTagRenderings { @@ -31,17 +36,73 @@ export default class SharedTagRenderings { if (!iconsOnly) { for (const key in questions) { + if (key === "id") { + continue + } dict.set(key, questions[key]) } } for (const key in icons) { + if (key === "id") { + continue + } dict.set(key, icons[key]) } - - dict.forEach((value, key) => value.id = key) + dict.forEach((value, key) => { + if (key === "id") { + return + } + value.id = value.id ?? key; + if(value["builtin"] !== undefined){ + if(value["override"] == undefined){ + throw "HUH? Why whould you want to reuse a builtin if one doesn't override? In questions.json/"+key + } + if(typeof value["builtin"] !== "string"){ + return; + } + // This is a really funny situation: we extend another tagRendering! + const parent = Utils.Clone(dict.get(value["builtin"])) + delete parent.id + Utils.Merge(value["override"], parent) + delete value["builtin"] + delete value["override"] + for (const pkey in parent) { + value[pkey] = parent[pkey] + } + } + }) + + return dict; } + public static HelpText(): BaseUIElement { + return new Combine([ + new Combine([ + + new Title("Builtin questions",1), + + "The following items can be easily reused in your layers" + ]).SetClass("flex flex-col"), + + ... Array.from( SharedTagRenderings.SharedTagRendering.keys()).map(key => { + const tr = SharedTagRenderings.SharedTagRendering.get(key) + let mappings: BaseUIElement = undefined + if(tr.mappings?.length > 0){ + mappings = new List(tr.mappings.map(m => m.then.textFor("en"))) + } + return new Combine([ + new Title(key), + tr.render?.textFor("en"), + tr.question?.textFor("en") ?? new FixedUiElement("Read-only tagrendering").SetClass("font-bold"), + mappings + ]).SetClass("flex flex-col") + + }) + + ]).SetClass("flex flex-col") + } + } diff --git a/Docs/AED-import.nl.png b/Docs/AED-import.nl.png new file mode 100644 index 0000000000..7ef24b85aa Binary files /dev/null and b/Docs/AED-import.nl.png differ diff --git a/Docs/Architecture.md b/Docs/Architecture.md index 60cbec7f08..b6446884bd 100644 --- a/Docs/Architecture.md +++ b/Docs/Architecture.md @@ -12,7 +12,7 @@ There are no servers for MapComplete, all services are configured by third parti Minimal HTML - Minimal CSS -------------------------- -There is quasi no HTML. Most of the components are generated by TypeScript and attached dynamically. The html is a +There is quasi no HTML. Most of the components are generated by TypeScript and attached dynamically. The HTML is a barebones skeleton which serves every theme. @@ -23,19 +23,21 @@ Most (but not all) objects in MapComplete get all the state they need as a param the case with most graphical applications, there are quite some dynamical values. All values which change regularly are wrapped into -a [UIEventSource](https://github.com/pietervdvn/MapComplete/blob/master/Logic/UIEventSource.ts). An UiEventSource is a +a [`UIEventSource`](../Logic/UIEventSource.ts). A `UIEventSource` is a wrapper containing a value and offers the possibility to add a callback function which is called every time the value is -changed (with setData) +changed (with `setData`) Furthermore, there are various helper functions, the most widely used one being `map` - generating a new event source -with the new value applied. Note that 'map' will also absorb some changes, +with the new value applied. Note that `map` will also absorb some changes, e.g. `const someEventSource : UIEventSource = ... ; someEventSource.map(list = list.length)` will only trigger when the length of the list has changed. -An object which receives an UIEventSource is responsible of responding onto changes of this object. This is especially -true for UI-components +An object which receives a `UIEventSource` is responsible of responding to changes of this object. This is especially +true for UI-components. -UI --``` +UI +-- +```typescript export default class MyComponent { @@ -47,21 +49,21 @@ export default class MyComponent { ``` -The Graphical User Interface is composed of various UI-elements. For every UI-element, there is a BaseUIElement which creates the actual HTMLElement when needed. +The Graphical User Interface is composed of various UI-elements. For every UI-element, there is a `BaseUIElement` which creates the actual `HTMLElement` when needed. There are some basic elements, such as: -- FixedUIElement which shows a fixed, unchangeble element -- Img to show an image -- Combine which wrap everything given (strings and other elements) in a div -- List +- `FixedUIElement` which shows a fixed, unchangeble element +- `Img` to show an image +- `Combine` which wraps everything given (strings and other elements) in a div +- `List` -There is one special component: the VariableUIElement -The variableUIElement takes a `UIEventSource` and will dynamicaly show whatever the UIEventSource contains at the moment. +There is one special component: the `VariableUIElement` +The `VariableUIElement` takes a `UIEventSource` and will dynamicaly show whatever the `UIEventSource` contains at the moment. For example: -``` +```typescript const src : UIEventSource = ... // E.g. user input, data that will be updated... new VariableUIElement(src) .AttachTo('some-id') // attach it to the html @@ -78,13 +80,13 @@ To add a translation: 2. Find a correct spot for your translation in the tree 3. run `npm run generate:translations` 4. `import Translations` -5. Translations.t..Clone() is the UIElement offering your translation +5. `Translations.t..Clone()` is the `UIElement` offering your translation -### Input elements` +### Input elements -Input elements are a special kind of BaseElement and which offer a piece of a form to the user, e.g. a TextField, a Radio button, a dropdown, ... +Input elements are a special kind of BaseElement which offer a piece of a form to the user, e.g. a TextField, a Radio button, a dropdown, ... -The constructor will ask all the parameters to configure them. The actual value can be obtained via `inputElement.GetValue()`, which is a UIEVentSource that will be triggered every time the user changes the input. +The constructor will ask all the parameters to configure them. The actual value can be obtained via `inputElement.GetValue()`, which is a `UIEventSource` that will be triggered every time the user changes the input. ### Advanced elements @@ -92,16 +94,16 @@ There are some components which offer useful functionality: - The `subtleButton` which is a friendly, big button -- The Toggle: `const t = new Toggle( componentA, componentB, source)` is a UIEventSource which shows `componentA` as long as `source` contains `true` and will show `componentB` otherwise. +- The Toggle: `const t = new Toggle( componentA, componentB, source)` is a `UIEventSource` which shows `componentA` as long as `source` contains `true` and will show `componentB` otherwise. ### Styling Styling is done as much as possible with [TailwindCSS](https://tailwindcss.com/). It contains a ton of utility classes, each of them containing a few rules. -For exmaple: ` someBaseUIElement.SetClass("flex flex-col border border-black rounded-full")` will set the component to be a flex object, as column, with a black border and pill-shaped. +For example: ` someBaseUIElement.SetClass("flex flex-col border border-black rounded-full")` will set the component to be a flex object, as column, with a black border and pill-shaped. -If tailwind is not enough, `baseUiElement.SetStyle("background: red; someOtherCssRule: abc;")` +If Tailwind is not enough, use `baseUiElement.SetStyle("background: red; someOtherCssRule: abc;")`. ### An example @@ -116,7 +118,7 @@ In the case of different hours, input hours should be too. This can be constructed as following: -``` +```typescript // We construct the dropdown element with values and labelshttps://tailwindcss.com/ const isOpened = new Dropdown(Translations.t.is_this_shop_opened_during_holidays, @@ -145,7 +147,7 @@ If you make a specialized class to offer a certain functionality, you can organi 1. Create a new class: -``` +```typescript export default class MyComponent { @@ -160,7 +162,7 @@ export default class MyComponent { 2. Construct the needed UI in the constructor -``` +```typescript export default class MyComponent { @@ -180,10 +182,10 @@ export default class MyComponent { ``` -3. You'll notice that you'll end up with one certain component (in this example the combine) to wrap it all together. Change the class to extend this type of component and use super to wrap it all up: +3. You'll notice that you'll end up with one certain component (in this example the combine) to wrap it all together. Change the class to extend this type of component and use `super()` to wrap it all up: -``` +```typescript export default class MyComponent extends Combine { @@ -203,17 +205,17 @@ Assets ### Themes -Theme and layer configuration files go into /assets/layers and assets/themes +Theme and layer configuration files go into `assets/layers` and `assets/themes`. ### Images -Other files (mostly images that are part of the core of mapcomplete) go into 'assets/svg' and are usable with `Svg.image_file_ui()`. Run `npm run generate:images` if you added a new image +Other files (mostly images that are part of the core of MapComplete) go into `assets/svg` and are usable with `Svg.image_file_ui()`. Run `npm run generate:images` if you added a new image. Logic ----- -The last part is the business logic of the application, found in 'Logic'. Actors are small objects which react to UIEventSources to update other eventSources. +The last part is the business logic of the application, found in the directory [Logic](../Logic). Actors are small objects which react to `UIEventSources` to update other eventSources. -State.state is a big singleton object containing a lot of the state of the entire application. That one is a bit a mess +`State.state` is a big singleton object containing a lot of the state of the entire application. That one is a bit of a mess. diff --git a/Docs/BuiltinIndex.md b/Docs/BuiltinIndex.md new file mode 100644 index 0000000000..8f4aa3e00e --- /dev/null +++ b/Docs/BuiltinIndex.md @@ -0,0 +1,332 @@ + + + Index of builtin TagRendering +=============================== + + + +## Table of contents + +1. [Index of builtin TagRendering](#index-of-builtin-tagrendering) + - [Existing builtin tagrenderings](#existing-builtin-tagrenderings) + + [images](#images) + + [website](#website) + + [phone](#phone) + + [email](#email) + + [opening_hours](#opening_hours) + + [description](#description) + + [payment-options](#payment-options) + + [payment-options-advanced](#payment-options-advanced) + + [level](#level) + + [bike_cleaning.bike_cleaning-service:bicycle:cleaning:charge](#bike_cleaningbike_cleaning-service:bicycle:cleaning:charge) + + [wheelchair-access](#wheelchair-access) + + [service:electricity](#serviceelectricity) + + [dog-access](#dog-access) + + [all_tags](#all_tags) + + [questions](#questions) + + [reviews](#reviews) + + [export_as_gpx](#export_as_gpx) + + [minimap](#minimap) + + [wikipedia](#wikipedia) + + + + + + Existing builtin tagrenderings +-------------------------------- + + + + + +### images + + + + + + - ambulancestation + - artwork + - bench + - bench_at_pt + - bicycle_library + - bicycle_tube_vending_machine + - bike_cafe + - bike_cleaning + - bike_parking + - bike_repair_station + - bike_shop + - bike_themed_object + - binocular + - birdhide + - cafe_pub + - charging_station + - defibrillator + - drinking_water + - entrance + - extinguisher + - fire_station + - food + - ghost_bike + - grass_in_parks + - hydrant + - information_board + - map + - nature_reserve + - observation_tower + - parking + - picnic_table + - play_forest + - playground + - public_bookcase + - shops + - slow_roads + - sport_pitch + - surveillance_camera + - toilet + - trail + - tree_node + - viewpoint + - village_green + - watermill + + + + +### website + + + + + + - bicycle_library + - bicycle_rental + - bike_themed_object + - cafe_pub + - food + - observation_tower + + + + +### phone + + + + + + - bicycle_library + - bicycle_rental + - bike_themed_object + - cafe_pub + - food + + + + +### email + + + + + + - bicycle_library + - bicycle_rental + - bike_themed_object + - cafe_pub + - food + + + + +### opening_hours + + + + + + - bicycle_library + - bicycle_rental + - bike_themed_object + - cafe_pub + - food + + + + +### description + + + + + + - bicycle_library + - bike_shop + - bike_themed_object + - toilet + + + + +### payment-options + + + + + + - bicycle_rental + - cafe_pub + - food + - observation_tower + - shops + - toilet + + + + +### payment-options-advanced + + + + + + - bicycle_rental + - charging_station + + + + +### level + + + + + + - bike_repair_station + - charging_station + - toilet + + + + +### bike_cleaning.bike_cleaning-service:bicycle:cleaning:charge + + + + + + - bike_shop + + + + +### wheelchair-access + + + + + + - cafe_pub + - defibrillator + - food + - observation_tower + + + + +### service:electricity + + + + + + - cafe_pub + - food + + + + +### dog-access + + + + + + - cafe_pub + - food + + + + +### all_tags + + + + + + - cluster_style + + + + +### questions + + + + + + - etymology + - play_forest + - playground + - shops + - sport_pitch + + + + +### reviews + + + + + + - food + - shops + + + + +### export_as_gpx + + + + + + - gps_track + + + + +### minimap + + + + + + - gps_track + + + + +### wikipedia + + + + + + - nature_reserve + - observation_tower + + +This document is autogenerated from [assets/layers/*.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/*.json) \ No newline at end of file diff --git a/Docs/BuiltinLayers.md b/Docs/BuiltinLayers.md index 78e563111e..2b581b69de 100644 --- a/Docs/BuiltinLayers.md +++ b/Docs/BuiltinLayers.md @@ -3,234 +3,785 @@ Special and other useful layers ================================= - 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. + + +## Table of contents + +1. [Special and other useful layers](#special-and-other-useful-layers) +1. [Priviliged layers](#priviliged-layers) +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. [import_candidate](#import_candidate) + - [Basic tags for this layer](#basic-tags-for-this-layer) + - [Supported attributes](#supported-attributes) + + [all_tags](#all_tags) +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) + + + +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) + - [import_candidate](#import_candidate) - [conflation](#conflation) - [left_right_style](#left_right_style) - - -### gps_location + - [split_point](#split_point) + - [current_view](#current_view) + - [matchpoint](#matchpoint) + + 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. + + + + + + - **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` + + [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 + + + + + + - **This layer is included automatically in every theme. This layer might contain no points** - - Not clickable by default. If you import this layer in your theme, override `title` to make this clickable + - 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` - - -### home_location + - 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 +---------------------- + + + + + + 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. + + + + + + - **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` + + [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. + + + + + + - **This layer is included automatically in every theme. This layer might contain no points** - - Not clickable by default. If you import this layer in your theme, override `title` to make this clickable - - Not visible in the layer selection by default. If you want to make this layer toggable, override `name` - + - 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` -### gps_track - - - -Meta layer showing the previou locations of the user. 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** - - Not visible in the layer selection by default. If you want to make this layer toggable, override `name` - + 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 +=========== + -### 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` - -### conflation + +[Go to the source code](../assets/layers/type_node/type_node.json) -If the import-button is set to conflate two ways, a preview is shown. This layer defines how this preview is rendered. This layer cannot be included in a theme. + 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?limit=10000&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_ + + + + + + import_candidate +================== + + + + + +Layer used in the importHelper + + + + + + + - 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/import_candidate/import_candidate.json) + + + + Basic tags for this layer +--------------------------- + + + +Elements must have the all of following tags to be shown on this layer: + + + + + + + + + Supported attributes +---------------------- + + + + + +### all_tags + + + +_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. + + + + + + + - 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/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. - + 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 +================== + -### 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. + + +[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) + + + + 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 +============== + + + + + +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'. + + + + + + + - 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/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) + + + + 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: + + + + - [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_rental](./Layers/bicycle_rental.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) + - [import_candidate](./Layers/import_candidate.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) - 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) - - [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 - - - -[Go to the source code](../assets/layers/drinking_water/drinking_water.json) - - - - - - - - -#### 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 - - - -[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) - - -### 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) - - -This document is autogenerated from AllKnownLayers.ts \ No newline at end of file +This document is autogenerated from [Customizations/AllKnownLayouts.ts](https://github.com/pietervdvn/MapComplete/blob/develop/Customizations/AllKnownLayouts.ts) \ No newline at end of file diff --git a/Docs/BuiltinQuestions.md b/Docs/BuiltinQuestions.md new file mode 100644 index 0000000000..6f705ff281 --- /dev/null +++ b/Docs/BuiltinQuestions.md @@ -0,0 +1,381 @@ + + + Builtin questions +=================== + + + +The following items can be easily reused in your layers + +## Table of contents + +1. [Builtin questions](#builtin-questions) + + [questions](#questions) + + [images](#images) + + [export_as_gpx](#export_as_gpx) + + [wikipedia](#wikipedia) + + [reviews](#reviews) + + [minimap](#minimap) + + [phone](#phone) + + [osmlink](#osmlink) + + [wikipedialink](#wikipedialink) + + [email](#email) + + [website](#website) + + [wheelchair-access](#wheelchair-access) + + [dog-access](#dog-access) + + [description](#description) + + [opening_hours](#opening_hours) + + [service:electricity](#serviceelectricity) + + [payment-options](#payment-options) + + [payment-options-advanced](#payment-options-advanced) + + [last_edit](#last_edit) + + [all_tags](#all_tags) + + [level](#level) + + [default](#default) + + [defaults](#defaults) + + [isOpen](#isopen) + + [phonelink](#phonelink) + + [emaillink](#emaillink) + + [sharelink](#sharelink) + + + + + +### questions + + + +Read-only tagrendering + + + +### images + + + +{image_carousel()}{image_upload()} + +Read-only tagrendering + + + +### export_as_gpx + + + +{export_as_gpx()} + +Read-only tagrendering + + + +### wikipedia + + + +{wikipedia():max-height:25rem} + +What is the corresponding Wikidata entity? + + + + - No Wikipedia page has been linked yet + + + + +### reviews + + + +{reviews()} + +Read-only tagrendering + + + +### minimap + + + +{minimap(18, id): width:100%; height:8rem; border-radius:2rem; overflow: hidden; pointer-events: none;} + +Read-only tagrendering + + + +### phone + + + +{phone} + +What is the phone number of {name}? + + + + - {contact:phone} + + + + +### osmlink + + + + + +Read-only tagrendering + + + + - + - + + + + +### wikipedialink + + + +WP + +Read-only tagrendering + + + + - WD + + + + +### email + + + +{email} + +What is the email address of {name}? + + + + - {contact:email} + + + + +### website + + + +{website} + +What is the website of {name}? + + + + - {contact:website} + + + + +### wheelchair-access + + + +Is this place accessible with a wheelchair? + + + + - This place is specially adapted for wheelchair users + - This place is easily reachable with a wheelchair + - It is possible to reach this place in a wheelchair, but it is not easy + - This place is not reachable with a wheelchair + + + + +### dog-access + + + +Are dogs allowed in this business? + + + + - Dogs are allowed + - Dogs are not allowed + - Dogs are allowed, but they have to be leashed + - Dogs are allowed and can run around freely + + + + +### description + + + +{description} + +Is there still something relevant you couldn't give in the previous questions? Add it here.
Don't repeat already stated facts + + + +### opening_hours + + + +

Opening hours

{opening_hours_table(opening_hours)} + +What are the opening hours of {name}? + + + +### service:electricity + + + +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 + - There are a few domestic sockets available to customers seated indoors, where they can charge their electronics + - There are no sockets available indoors to customers, but charging might be possible if the staff is asked + - There are a no domestic sockets available to customers seated indoors + + + + +### payment-options + + + +Which methods of payment are accepted here? + + + + - Cash is accepted here + - Payment cards are accepted here + + + + +### payment-options-advanced + + + +Which methods of payment are accepted here? + + + + - Cash is accepted here + - Payment cards are accepted here + - Payment is done using a dedicated app + - Payment is done using a membership card + + + + +### last_edit + + + + + +Read-only tagrendering + + + +### all_tags + + + +{all_tags()} + +Read-only tagrendering + + + +### level + + + +Located on the {level}th floor + +On what level is this feature located? + + + + - Located underground + - Located on the ground floor + - Located on the ground floor + - Located on the first floor + - Located on the first basement level + + + + +### default + + + +Read-only tagrendering + + + +### defaults + + + +Read-only tagrendering + + + +### isOpen + + + +Read-only tagrendering + + + + - clock:#0f0;ring:#0f0 + - circle:#f00;clock:#fff + - clock:#ff0;ring:#ff0 + - circle:#f0f;clock:#fff + + + + +### phonelink + + + + + +Read-only tagrendering + + + +### emaillink + + + + + +Read-only tagrendering + + + +### sharelink + + + +{share_link()} + +Read-only tagrendering + +This document is autogenerated from [Customizations/SharedTagRenderings.ts](https://github.com/pietervdvn/MapComplete/blob/develop/Customizations/SharedTagRenderings.ts), [assets/tagRenderings/questions.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/tagRenderings/questions.json) \ No newline at end of file diff --git a/Docs/CalculatedTags.md b/Docs/CalculatedTags.md index 91b0dd568b..7bafe75625 100644 --- a/Docs/CalculatedTags.md +++ b/Docs/CalculatedTags.md @@ -5,6 +5,32 @@ +## Table of contents + +1. [Metatags](#metatags) + - [Metatags calculated by MapComplete](#metatags-calculated-by-mapcomplete) + + [_lat, _lon](#_lat,-_lon) + + [_layer](#_layer) + + [_surface, _surface:ha](#_surface,-_surfaceha) + + [_length, _length:km](#_length,-_lengthkm) + + [Theme-defined keys](#theme-defined-keys) + + [_country](#_country) + + [_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) + + [sidewalk:left, sidewalk:right, generic_key:left:property, generic_key:right:property](#sidewalkleft,-sidewalk:right,-generic_key:left:property,-generic_key:right:property) + + [_geometry:type](#_geometrytype) + + [distanceTo](#distanceto) + + [overlapWith](#overlapwith) + + [intersectionsWith](#intersectionswith) + + [closest](#closest) + + [closestn](#closestn) + + [memberships](#memberships) + + [get](#get) + + + 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. @@ -82,7 +108,7 @@ The country code of the property (with latlon2country) -### _isOpen, _isOpen:description +### _isOpen @@ -132,6 +158,16 @@ Rewrites tags from 'generic_key:both:property' as 'generic_key:left:property' an +### _geometry:type + + + +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 ---------------------------------- @@ -182,6 +218,7 @@ Some advanced functions are available on **feat** as well: - [distanceTo](#distanceTo) - [overlapWith](#overlapWith) + - [intersectionsWith](#intersectionsWith) - [closest](#closest) - [closestn](#closestn) - [memberships](#memberships) @@ -190,7 +227,7 @@ Some advanced functions are available on **feat** as well: ### distanceTo - Calculates the distance between the feature and a specified point in kilometer. The input should either be a pair of coordinates, a geojson feature or the ID of an object + Calculates the distance between the feature and a specified point in meter. The input should either be a pair of coordinates, a geojson feature or the ID of an object 0. feature OR featureID OR longitude 1. undefined OR latitude @@ -205,7 +242,19 @@ The resulting list is sorted in descending order by overlap. The feature with th For example to get all objects which overlap or embed from a layer, use `_contained_climbing_routes_properties=feat.overlapWith('climbing_route')` - 0. ...layerIds - one or more layer ids of the layer from which every feature is checked for overlap) + 0. ...layerIds - one or more layer ids of the layer from which every feature is checked for overlap) + + +### intersectionsWith + + Gives the intersection points with selected features. Only works with (Multi)Polygons and LineStrings. + +Returns a `{feat: GeoJson, intersections: [number,number][]}` where `feat` is the full, original feature. This list is in random order. + +If the current feature is a point, this function will return an empty list. +Points from other layers are ignored - even if the points are parts of the current linestring. + + 0. ...layerIds - one or more layer ids of the layer from which every feature is checked for intersection) ### closest @@ -243,4 +292,4 @@ For example: `_part_of_walking_routes=feat.memberships().map(r => r.relation.tag 0. key -This document is autogenerated from SimpleMetaTagger, ExtraFunction \ No newline at end of file +This document is autogenerated from [Logic/SimpleMetaTagger.ts](https://github.com/pietervdvn/MapComplete/blob/develop/Logic/SimpleMetaTagger.ts), [Logic/ExtraFunctions.ts](https://github.com/pietervdvn/MapComplete/blob/develop/Logic/ExtraFunctions.ts) \ No newline at end of file diff --git a/Docs/Development_deployment.md b/Docs/Development_deployment.md index 30e14a4528..9a083b3a05 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 @@ -107,7 +106,8 @@ Try removing `node_modules`, `package-lock.json` and `.cache` Misc setup ---------- -~~The json-git-merger is used to quickly merge translation files, [documentation here](https://github.com/jonatanpedersen/git-json-merge#single-project--directory).~~ +~~The json-git-merger is used to quickly merge translation +files, [documentation here](https://github.com/jonatanpedersen/git-json-merge#single-project--directory).~~ This merge driver is broken and would sometimes drop new questions or duplicate them... Not a good idea! Overview of package.json-scripts diff --git a/Docs/Gebruikersgids.md b/Docs/Gebruikersgids.nl.md similarity index 100% rename from Docs/Gebruikersgids.md rename to Docs/Gebruikersgids.nl.md diff --git a/Docs/ImporteerHandleiding.nl.md b/Docs/ImporteerHandleiding.nl.md new file mode 100644 index 0000000000..6c28fc217d --- /dev/null +++ b/Docs/ImporteerHandleiding.nl.md @@ -0,0 +1,121 @@ +Data importeren in OpenStreetMap +================================ + +Om een dataset te importeren, zijn er enkele stappen die doorlopen moeten worden: + +0. Geschikte data +1. Licentie nakijken +2. Importeermethode bepalen +3. Community inlichten en Importeren voorbereiden +4. Importeren! + +## 0. Geschikte data + +Is de data die je wenst te importeren geschikt voor OpenStreetMap? Is ze dus verifieerbaar ter plaatse door een andere +contributor? Is ze ietwat permantent? + +## 1. Licentie nakijken + +Voordat we een dataset in OpenStreetMap kunnen toevoegen, moeten we nagaan of dit wel mag van de oorspronkelijke maker +van de dataset. + +Is er een licentievermelding bij de databron? Kijk deze dan na of er toestemming is voor hergebruik (ook commercieel) en +redistributie. Indien er een attributie voor de dataset moet zijn, dan kan de bronvermelding in de changeset (als +source) aangeduid worden en/of kan de auteur vermeld worden op [deze wikipagina]. **Vraag na of deze bronvermelding +voldoende is** + +## 2. Importeermethode bepalen + +De volgende vraag is hoe deze data geimporteerd zal worden. Ook hier moeten verschillende vragen beantwoord worden: + +1. Wie doet de import? +2. Is een survey nodig? +3. Welke tools worden ingezet? +4. Tagging bepalen + +### Wie importeert? + +Een ervaren contributor vergelijkt de bestaande OSM-data met de aangeleverde dataset. Duplicaten worden gefiltered en +geupdate. Dit is vooral geschikt voor kleinere dataset (maximaal enkele honderd feaures), maar is sneller (want minder +coordinatie is nodig). + +Indien een grotere dataset geimporteerd dient te worden, is dit vaak niet meer haalbaar door één enkele persoon. Als dit +het geval is, zal men contributors moeten zoeken om mee te helpen importeren. Dit kan heel passief (de data online +plaatsen en de community er attent op maken dat deze bestaat, in de hoop dat er iemand dit oppikt), tot actief een groep +vrijwilligers zoeken. Ten slotte kan men hier ook een betaalde kracht voor inhuren - een GIS-expert binnen de +organisatie, een jobstudent of een OpenStreetMap-expert die men betaald + +### Is een survey nodig? + +Indien de dataset oud is of veel fouten bevat, is het wellicht wenslijk om ter plaatse te gaan kijken. Dit hangt sterk +af van dataset tot dataset, of men de data op luchtfoto's kan afleiden, via mapillary of OpenStreetCam de situatie ter +plaatse kan zien, ... + +Vaak helpt het om terreinkennis te hebben, om de import voor te bereiden door alle data te overlopen, toe te voegen waar +men zeker van is en enkel de twijfelgevallen over te houden voor import. + +### Welke tools worden ingezet? + +Indien er één ervaren gebruiker de import doet, zal die wellicht JOSM (of zijn favoriete editor gebruiken). + +Voor extreem grote imports (meer dan 1000 objecten) zal men wellicht ook coordineren via een tasking manager (om +werkgebieden per contributor af te bakenen). + +Voor een import waar survey wenselijk is (ihb indien er verschillende contributors betrokken zijn), kan MapComplete +ingezet worden waar de na te zien data ingeladen wordt. MapComplete kan: + +- tegelijk een laag van OpenStreetMap én de te importeren data tonen . +- de te importeren objecten verbergen indien er een OpenStreetMap-object dichtbij is +- aanbieden om het te importeren object toe te voegen indien dit object ontbreekt (*) +- aanbieden om gegevens van het te importeren object over te zetten op een naburig, soortgelijk object (*) + +(*) Opties 3 en 4 vereisen een degelijke voorbereiding van de te importeren dataset en zijn niet altijd mogelijk of niet +altijd de moeite + +Op de screenshot hieronder is een voorbeeld te zien van het importeren van een dataset van Brugse defibrillatoren. + +- De vierkante logo's zijn AEDs die in OpenStreetMap gekend zijn +- Een bolletje is een AED die in de Brugse dataset gekend is +- Een bolletje wordt groen gekleurd indien er een AED in OSM gekend is binnen een straal van 25 meter +- In de popup wordt relevante informatie getoond uit de te importeren dataset + +![Voorbeeld van importeren](AED-import.nl.png) + +Een geavanceerder voorbeeld van een import is het UK-address-importproject. Hierbij wordt met een dataset van +vermoedelijke adressen gewerkt. Indien er geen gebouw met adres dit vermoedelijke adres omsluit, wordt er gevraagd om +dit adres toe te voegen. Door het adres via deze popup toe te voegen, wordt er meteen een INSPIRE-referentie meegegeven. + +![](uk_address_import.png) + +### Tagging bepalen en filteren voor duplicaten + +Ten slotte moet de data ook nog 'vertaald' worden naar het correct OpenStreetMap-formaat. + +De softwareprogramma's ook overweg kunnen met het dataformaat. **Geojson** is een veilige keuze, want dit open formaat +wordt door veel editors ondersteund. Met QGIS kunnen shapefiles omgezet worden in geojson. Een geojson kan ook als extra +laag in MapComplete geladen worden. + +Daarnaast moeten de attributen van de data omgezet moeten worden naar de OpenStreetMap-attributen - raadpleeg de wiki +voor de correcte tags. Dit kan bijvoorbeeld met QGIS of met JOSM gedaan worden. + +Ten slotte moet men ook voorkomen dat er duplicaten ontstaan: twee objecten in OpenStreetMap die beiden hetzelfde +voorwerp voorstellen. + +## 3. Community inlichten en importeren voorbereiden + +Indien er een grote import gaat gebeuren, dient de community hiervan ingelicht te worden. Door dit in de community te +bespreken, worden fouten voorkomen. Ook helpt dit om medecontributors warm te maken en niet-betrokken contributors geen +verassingen te bezorgen. + +Voor een import die enkel in Belgie plaatsvindt, volstaat een email naar talk@osm.be ; voor een globale import moet men +ook best naar import@openstreetmap.org sturen. + +Voor kleinere datasets is dit slechts een formaliteit - zeker indien de data gedubbelcheckt gaat worden. + +Ondertussen kan de import voorbereid worden door op kleine schaal te importeren (bv. een beperkt gebied of een beperkt +aantal punten). Indien er een MapComplete-thema wordt opgezet, kan dit ook al getest worden en naar de community +gestuurd worden. + +## 4. Importeren! + +Na enkele weken zijn we hier eindelijk aangeland! Tijd om de data in OpenStreetMap te importeren! diff --git a/Docs/Layers/address.md b/Docs/Layers/address.md new file mode 100644 index 0000000000..5aef945343 --- /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~^..*$ + + + + + 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](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/address/address.json) \ No newline at end of file diff --git a/Docs/Layers/all_streets.md b/Docs/Layers/all_streets.md new file mode 100644 index 0000000000..b71a3a4e4f --- /dev/null +++ b/Docs/Layers/all_streets.md @@ -0,0 +1,62 @@ +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..6c30c2a29b --- /dev/null +++ b/Docs/Layers/ambulancestation.md @@ -0,0 +1,161 @@ + + + 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) + - [personal](https://mapcomplete.osm.be/personal) + + +[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](https://github.com/pietervdvn/MapComplete/blob/develop/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..53cec1ee06 --- /dev/null +++ b/Docs/Layers/artwork.md @@ -0,0 +1,151 @@ + + + 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) + - [personal](https://mapcomplete.osm.be/personal) + + +[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](https://github.com/pietervdvn/MapComplete/blob/develop/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..4e2f170d04 --- /dev/null +++ b/Docs/Layers/assen.md @@ -0,0 +1,38 @@ +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..ef35a9f65a --- /dev/null +++ b/Docs/Layers/barrier.md @@ -0,0 +1,202 @@ + + + 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) + - [personal](https://mapcomplete.osm.be/personal) + + +[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](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/barrier/barrier.json) \ No newline at end of file diff --git a/Docs/Layers/bench.md b/Docs/Layers/bench.md new file mode 100644 index 0000000000..0c046ccaae --- /dev/null +++ b/Docs/Layers/bench.md @@ -0,0 +1,194 @@ + + + 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) + - [nature](https://mapcomplete.osm.be/nature) + - [personal](https://mapcomplete.osm.be/personal) + + +[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](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/bench/bench.json) \ No newline at end of file diff --git a/Docs/Layers/bench_at_pt.md b/Docs/Layers/bench_at_pt.md new file mode 100644 index 0000000000..3f30919b34 --- /dev/null +++ b/Docs/Layers/bench_at_pt.md @@ -0,0 +1,115 @@ + + + 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) + - [personal](https://mapcomplete.osm.be/personal) + + +[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](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/bench_at_pt/bench_at_pt.json) \ No newline at end of file diff --git a/Docs/Layers/bicycle_library.md b/Docs/Layers/bicycle_library.md new file mode 100644 index 0000000000..02acba67bc --- /dev/null +++ b/Docs/Layers/bicycle_library.md @@ -0,0 +1,215 @@ + + + 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) + - [personal](https://mapcomplete.osm.be/personal) + + +[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](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/bicycle_library/bicycle_library.json) \ No newline at end of file diff --git a/Docs/Layers/bicycle_rental.md b/Docs/Layers/bicycle_rental.md new file mode 100644 index 0000000000..331bc53cd6 --- /dev/null +++ b/Docs/Layers/bicycle_rental.md @@ -0,0 +1,362 @@ + + + bicycle_rental +================ + + + + + +Bicycle rental stations + + + + +## Table of contents + +1. [bicycle_rental](#bicycle_rental) + * [Themes using this layer](#themes-using-this-layer) + - [Basic tags for this layer](#basic-tags-for-this-layer) + - [Supported attributes](#supported-attributes) + + [bicycle_rental_type](#bicycle_rental_type) + + [website](#website) + + [email](#email) + + [phone](#phone) + + [opening_hours](#opening_hours) + + [payment-options](#payment-options) + + [payment-options-advanced](#payment-options-advanced) + + [bicycle-types](#bicycle-types) + + [rental-capacity-bicycle-type](#rental-capacity-bicycle-type) + + [questions](#questions) + + [rental-capacity-bicycle-type](#rental-capacity-bicycle-type) + + [questions](#questions) + + [rental-capacity-bicycle-type](#rental-capacity-bicycle-type) + + [questions](#questions) + + [rental-capacity-bicycle-type](#rental-capacity-bicycle-type) + + [questions](#questions) + + [rental-capacity-bicycle-type](#rental-capacity-bicycle-type) + + [questions](#questions) + + [rental-capacity-bicycle-type](#rental-capacity-bicycle-type) + + [questions](#questions) + + + + + + + + + + +#### Themes using this layer + + + + + + - [bicycle_rental](https://mapcomplete.osm.be/bicycle_rental) + - [personal](https://mapcomplete.osm.be/personal) + + +[Go to the source code](../assets/layers/bicycle_rental/bicycle_rental.json) + + + + Basic tags for this layer +--------------------------- + + + +Elements must have the all of following tags to be shown on this layer: + + + + - amenity=bicycle_rental|bicycle_rental~^..*$|service:bicycle:rental=yes|rental~^.*bicycle.*$ + + + + + Supported attributes +---------------------- + + + +**Warning** This quick overview is incomplete + + + +attribute | type | values which are supported by this layer +----------- | ------ | ------------------------------------------ +[](https://taginfo.openstreetmap.org/keys/website#values) [website](https://wiki.openstreetmap.org/wiki/Key:website) | [url](../SpecialInputElements.md#url) | +[](https://taginfo.openstreetmap.org/keys/email#values) [email](https://wiki.openstreetmap.org/wiki/Key:email) | [email](../SpecialInputElements.md#email) | +[](https://taginfo.openstreetmap.org/keys/phone#values) [phone](https://wiki.openstreetmap.org/wiki/Key:phone) | [phone](../SpecialInputElements.md#phone) | +[](https://taginfo.openstreetmap.org/keys/opening_hours#values) [opening_hours](https://wiki.openstreetmap.org/wiki/Key:opening_hours) | [opening_hours](../SpecialInputElements.md#opening_hours) | +[](https://taginfo.openstreetmap.org/keys/rental#values) [rental](https://wiki.openstreetmap.org/wiki/Key:rental) | [string](../SpecialInputElements.md#string) | [city_bike](https://wiki.openstreetmap.org/wiki/Tag:rental%3Dcity_bike) [ebike](https://wiki.openstreetmap.org/wiki/Tag:rental%3Debike) [bmx](https://wiki.openstreetmap.org/wiki/Tag:rental%3Dbmx) [mtb](https://wiki.openstreetmap.org/wiki/Tag:rental%3Dmtb) [kid_bike](https://wiki.openstreetmap.org/wiki/Tag:rental%3Dkid_bike) +[](https://taginfo.openstreetmap.org/keys/capacity:city_bike#values) [capacity:city_bike](https://wiki.openstreetmap.org/wiki/Key:capacity:city_bike) | [pnat](../SpecialInputElements.md#pnat) | +[](https://taginfo.openstreetmap.org/keys/capacity:ebike#values) [capacity:ebike](https://wiki.openstreetmap.org/wiki/Key:capacity:ebike) | [pnat](../SpecialInputElements.md#pnat) | +[](https://taginfo.openstreetmap.org/keys/capacity:kid_bike#values) [capacity:kid_bike](https://wiki.openstreetmap.org/wiki/Key:capacity:kid_bike) | [pnat](../SpecialInputElements.md#pnat) | +[](https://taginfo.openstreetmap.org/keys/capacity:bmx#values) [capacity:bmx](https://wiki.openstreetmap.org/wiki/Key:capacity:bmx) | [pnat](../SpecialInputElements.md#pnat) | +[](https://taginfo.openstreetmap.org/keys/capacity:mtb#values) [capacity:mtb](https://wiki.openstreetmap.org/wiki/Key:capacity:mtb) | [pnat](../SpecialInputElements.md#pnat) | +[](https://taginfo.openstreetmap.org/keys/capacity:bicycle_pannier#values) [capacity:bicycle_pannier](https://wiki.openstreetmap.org/wiki/Key:capacity:bicycle_pannier) | [pnat](../SpecialInputElements.md#pnat) | + + + + +### bicycle_rental_type + + + +The question is **What kind of bicycle rental is this?** + + + + + + - **This is a shop whose main focus is bicycle rental** corresponds with shop=bicycle_rental&bicycle_rental=shop + - **This is a rental buisiness which rents out various objects and/or vehicles. It rents out bicycles too, but this is not the main focus** corresponds with shop=rental_This option cannot be chosen as answer_ + - **This is a shop which sells or repairs bicycles, but also rents out bicycles** corresponds with service:bicycle:rental=yes&shop=bicycle + - **This is an automated docking station, where a bicycle is mechanically locked into a structure** corresponds with bicycle_rental=docking_station + - **A machine is present which dispenses and accepts keys, eventually after authentication and/or payment. The bicycles are parked nearby** corresponds with bicycle_rental=key_dispensing_machine + - **This is a dropoff point: a designated bicycle parking for this cycle rental** corresponds with bicycle_rental=dropoff_point + + + + +### 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)}` + + + +### 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 + + + + +### payment-options-advanced + + + +The question is **Which methods of payment are accepted here?** + + + + + + - **Cash is accepted here** corresponds with payment:cash=yesUnselecting this answer will add payment:cash=no + - **Payment cards are accepted here** corresponds with payment:cards=yesUnselecting this answer will add payment:cards=no + - **Payment is done using a dedicated app** corresponds with payment:app=yesUnselecting this answer will add payment:app=no + - **Payment is done using a membership card** corresponds with payment:membership_card=yesUnselecting this answer will add payment:membership_card=no + + + + +### bicycle-types + + + +The question is **What kind of bicycles and accessories are rented here?** + +This rendering asks information about the property [rental](https://wiki.openstreetmap.org/wiki/Key:rental) +This is rendered with `{rental} is rented here` + + + + - **Normal city bikes can be rented here** corresponds with rental=city_bike + - **Electrical bikes can be rented here** corresponds with rental=ebike + - **BMX bikes can be rented here** corresponds with rental=bmx + - **Mountainbikes can be rented here** corresponds with rental=mtb + - **Bikes for childs can be rented here** corresponds with rental=kid_bike + + + + +### rental-capacity-bicycle-type + + + +The question is **How much city bikes can be rented here? ** + +This rendering asks information about the property [capacity:city_bike](https://wiki.openstreetmap.org/wiki/Key:capacity:city_bike) +This is rendered with `{capacity:city_bike} city bikes can be rented here` + + + +### questions + + + +_This tagrendering has no question and is thus read-only_ + + + + + +### rental-capacity-bicycle-type + + + +The question is **How much electrical bikes can be rented here? ** + +This rendering asks information about the property [capacity:ebike](https://wiki.openstreetmap.org/wiki/Key:capacity:ebike) +This is rendered with `{capacity:ebike} electrical bikes can be rented here` + + + +### questions + + + +_This tagrendering has no question and is thus read-only_ + + + + + +### rental-capacity-bicycle-type + + + +The question is **How much bikes for children can be rented here? ** + +This rendering asks information about the property [capacity:kid_bike](https://wiki.openstreetmap.org/wiki/Key:capacity:kid_bike) +This is rendered with `{capacity:kid_bike} bikes for children can be rented here` + + + +### questions + + + +_This tagrendering has no question and is thus read-only_ + + + + + +### rental-capacity-bicycle-type + + + +The question is **How much BMX bikes can be rented here? ** + +This rendering asks information about the property [capacity:bmx](https://wiki.openstreetmap.org/wiki/Key:capacity:bmx) +This is rendered with `{capacity:bmx} BMX bikes can be rented here` + + + +### questions + + + +_This tagrendering has no question and is thus read-only_ + + + + + +### rental-capacity-bicycle-type + + + +The question is **How much mountainbike can be rented here? ** + +This rendering asks information about the property [capacity:mtb](https://wiki.openstreetmap.org/wiki/Key:capacity:mtb) +This is rendered with `{capacity:mtb} mountainbike can be rented here` + + + +### questions + + + +_This tagrendering has no question and is thus read-only_ + + + + + +### rental-capacity-bicycle-type + + + +The question is **How much bicycle panniers can be rented here? ** + +This rendering asks information about the property [capacity:bicycle_pannier](https://wiki.openstreetmap.org/wiki/Key:capacity:bicycle_pannier) +This is rendered with `{capacity:bicycle_pannier} bicycle panniers can be rented here` + + + +### questions + + + +_This tagrendering has no question and is thus read-only_ + + + +This document is autogenerated from [assets/layers/bicycle_rental/bicycle_rental.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/bicycle_rental/bicycle_rental.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..c98d9e5379 --- /dev/null +++ b/Docs/Layers/bicycle_tube_vending_machine.md @@ -0,0 +1,193 @@ + + + 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) + - [personal](https://mapcomplete.osm.be/personal) + + +[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](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/bicycle_tube_vending_machine/bicycle_tube_vending_machine.json) \ No newline at end of file diff --git a/Docs/Layers/bike_cafe.md b/Docs/Layers/bike_cafe.md new file mode 100644 index 0000000000..6c89510785 --- /dev/null +++ b/Docs/Layers/bike_cafe.md @@ -0,0 +1,203 @@ + + + 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) + - [personal](https://mapcomplete.osm.be/personal) + + +[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](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/bike_cafe/bike_cafe.json) \ No newline at end of file diff --git a/Docs/Layers/bike_cleaning.md b/Docs/Layers/bike_cleaning.md new file mode 100644 index 0000000000..01334ddd00 --- /dev/null +++ b/Docs/Layers/bike_cleaning.md @@ -0,0 +1,123 @@ + + + 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) + - [personal](https://mapcomplete.osm.be/personal) + + +[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|amenity=bike_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&service:bicycle:cleaning:charge=_This option cannot be chosen as answer_ + + + + +### 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](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/bike_cleaning/bike_cleaning.json) \ No newline at end of file diff --git a/Docs/Layers/bike_parking.md b/Docs/Layers/bike_parking.md new file mode 100644 index 0000000000..cdfd4dfba9 --- /dev/null +++ b/Docs/Layers/bike_parking.md @@ -0,0 +1,212 @@ + + + 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) + - [personal](https://mapcomplete.osm.be/personal) + + +[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](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/bike_parking/bike_parking.json) \ No newline at end of file diff --git a/Docs/Layers/bike_repair_station.md b/Docs/Layers/bike_repair_station.md new file mode 100644 index 0000000000..a4c7b10cfe --- /dev/null +++ b/Docs/Layers/bike_repair_station.md @@ -0,0 +1,324 @@ + + + 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) + + [Operational status](#operational-status) + + [bike_repair_station-opening_hours](#bike_repair_station-opening_hours) + + [access](#access) + + [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-bike-chain-tool](#bike_repair_station-bike-chain-tool) + + [bike_repair_station-bike-stand](#bike_repair_station-bike-stand) + + [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) + - [personal](https://mapcomplete.osm.be/personal) + + +[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/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) [operational](https://wiki.openstreetmap.org/wiki/Tag:service:bicycle:pump:operational_status%3Doperational) +[](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/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) [private](https://wiki.openstreetmap.org/wiki/Tag:access%3Dprivate) +[](https://taginfo.openstreetmap.org/keys/operator#values) [operator](https://wiki.openstreetmap.org/wiki/Key:operator) | [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/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/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) [-1](https://wiki.openstreetmap.org/wiki/Tag:level%3D-1) + + + + +### 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 location?** + + + + + + - **There is only a pump present** corresponds with service:bicycle:tools=no&service:bicycle:pump=yes + - **There are only tools (screwdrivers, pliers...) present** corresponds with service:bicycle:tools=yes&service:bicycle:pump=no + - **There are both tools and a pump present** corresponds with service:bicycle:tools=yes&service:bicycle:pump=yes + + + + +### 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 service:bicycle:pump:operational_status=operational + + + + +### 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 + + + + +### access + + + +The question is **Who is allowed to use this repair station?** + + + + + + - **Publicly accessible** corresponds with access=yes + - **Publicly accessible** corresponds with access=public_This option cannot be chosen as answer_ + - **Only for customers** corresponds with access=customers + - **Not accessible to the general public** corresponds with access=private + - **Not accessible to the general public** corresponds with access=no_This option cannot be chosen as answer_ + + + + +### 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}` + + + +### 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-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 + + + + +### 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 + - **Located on the first basement level** corresponds with level=-1 + + +This document is autogenerated from [assets/layers/bike_repair_station/bike_repair_station.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/bike_repair_station/bike_repair_station.json) \ No newline at end of file diff --git a/Docs/Layers/bike_shop.md b/Docs/Layers/bike_shop.md new file mode 100644 index 0000000000..6e9f82eb01 --- /dev/null +++ b/Docs/Layers/bike_shop.md @@ -0,0 +1,337 @@ + + + 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) + - [personal](https://mapcomplete.osm.be/personal) + + +[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&service:bicycle:cleaning:charge=_This option cannot be chosen as answer_ + + +This document is autogenerated from [assets/layers/bike_shop/bike_shop.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/bike_shop/bike_shop.json) \ No newline at end of file diff --git a/Docs/Layers/bike_themed_object.md b/Docs/Layers/bike_themed_object.md new file mode 100644 index 0000000000..51c33082ef --- /dev/null +++ b/Docs/Layers/bike_themed_object.md @@ -0,0 +1,163 @@ + + + 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) + - [personal](https://mapcomplete.osm.be/personal) + + +[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](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/bike_themed_object/bike_themed_object.json) \ No newline at end of file diff --git a/Docs/Layers/binocular.md b/Docs/Layers/binocular.md new file mode 100644 index 0000000000..2b5c60c354 --- /dev/null +++ b/Docs/Layers/binocular.md @@ -0,0 +1,114 @@ + + + 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) + - [personal](https://mapcomplete.osm.be/personal) + + +[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](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/binocular/binocular.json) \ No newline at end of file diff --git a/Docs/Layers/birdhide.md b/Docs/Layers/birdhide.md new file mode 100644 index 0000000000..435735d519 --- /dev/null +++ b/Docs/Layers/birdhide.md @@ -0,0 +1,142 @@ + + + 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) + - [personal](https://mapcomplete.osm.be/personal) + + +[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](https://github.com/pietervdvn/MapComplete/blob/develop/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..fdddb6acd6 --- /dev/null +++ b/Docs/Layers/brugge.md @@ -0,0 +1,73 @@ +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..3ef0649d22 --- /dev/null +++ b/Docs/Layers/cafe_pub.md @@ -0,0 +1,261 @@ + + + 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) + - [personal](https://mapcomplete.osm.be/personal) + + +[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](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/cafe_pub/cafe_pub.json) \ No newline at end of file diff --git a/Docs/Layers/caravansites.md b/Docs/Layers/caravansites.md new file mode 100644 index 0000000000..a46f676c71 --- /dev/null +++ b/Docs/Layers/caravansites.md @@ -0,0 +1,196 @@ +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..15ee8f3c3b --- /dev/null +++ b/Docs/Layers/charging_station.md @@ -0,0 +1,1592 @@ + + + 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-advanced](#payment-options-advanced) + + [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) + - [personal](https://mapcomplete.osm.be/personal) + + +[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) [-1](https://wiki.openstreetmap.org/wiki/Tag:level%3D-1) +[](https://taginfo.openstreetmap.org/keys/ref#values) [ref](https://wiki.openstreetmap.org/wiki/Key:ref) | [string](../SpecialInputElements.md#string) | +[](https://taginfo.openstreetmap.org/keys/planned:amenity#values) [planned:amenity](https://wiki.openstreetmap.org/wiki/Key:planned:amenity) | Multiple choice | [](https://wiki.openstreetmap.org/wiki/Tag:planned:amenity%3D) [](https://wiki.openstreetmap.org/wiki/Tag:planned:amenity%3D) [charging_station](https://wiki.openstreetmap.org/wiki/Tag:planned:amenity%3Dcharging_station) [](https://wiki.openstreetmap.org/wiki/Tag:planned:amenity%3D) [](https://wiki.openstreetmap.org/wiki/Tag:planned:amenity%3D) +[](https://taginfo.openstreetmap.org/keys/parking:fee#values) [parking:fee](https://wiki.openstreetmap.org/wiki/Key:parking:fee) | Multiple choice | [no](https://wiki.openstreetmap.org/wiki/Tag:parking:fee%3Dno) [yes](https://wiki.openstreetmap.org/wiki/Tag:parking:fee%3Dyes) + + + + +### images + + + +_This 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-advanced + + + +The question is **Which methods of payment are accepted here?** + + + + + + - **Cash is accepted here** corresponds with payment:cash=yesUnselecting this answer will add payment:cash=no + - **Payment cards are accepted here** corresponds with payment:cards=yesUnselecting this answer will add payment:cards=no + - **Payment is done using a dedicated app** corresponds with payment:app=yesUnselecting this answer will add payment:app=no + - **Payment is done using a membership card** corresponds with payment:membership_card=yesUnselecting this answer will add payment:membership_card=no + + + + +### 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 + - **Located on the first basement level** corresponds with level=-1 + + + + +### ref + + + +The question is **What is the reference number of this charging station?** + +This rendering asks information about the property [ref](https://wiki.openstreetmap.org/wiki/Key:ref) +This is rendered with `Reference number is {ref}` + + + +### 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](https://github.com/pietervdvn/MapComplete/blob/develop/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..3a77e5d9bb --- /dev/null +++ b/Docs/Layers/climbing.md @@ -0,0 +1,131 @@ +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..562cb6137f --- /dev/null +++ b/Docs/Layers/climbing_club.md @@ -0,0 +1,109 @@ +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..14a8611191 --- /dev/null +++ b/Docs/Layers/climbing_gym.md @@ -0,0 +1,123 @@ +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..c60b3159ca --- /dev/null +++ b/Docs/Layers/climbing_route.md @@ -0,0 +1,139 @@ +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..70a927b764 --- /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](https://github.com/pietervdvn/MapComplete/blob/develop/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..d5f0480cdc --- /dev/null +++ b/Docs/Layers/conflation.md @@ -0,0 +1,39 @@ +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..3aab2477e0 --- /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](https://github.com/pietervdvn/MapComplete/blob/develop/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..d9b325098d --- /dev/null +++ b/Docs/Layers/crossings.md @@ -0,0 +1,222 @@ + + + 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) + - [personal](https://mapcomplete.osm.be/personal) + + +[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](https://github.com/pietervdvn/MapComplete/blob/develop/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..2425feeca5 --- /dev/null +++ b/Docs/Layers/current_view.md @@ -0,0 +1,44 @@ +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..f190ce448b --- /dev/null +++ b/Docs/Layers/cycle_highways.md @@ -0,0 +1,107 @@ +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..2a57455ee1 --- /dev/null +++ b/Docs/Layers/cycleways_and_roads.md @@ -0,0 +1,418 @@ + + + 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) + - [personal](https://mapcomplete.osm.be/personal) + + +[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](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/cycleways_and_roads/cycleways_and_roads.json) \ No newline at end of file diff --git a/Docs/Layers/defibrillator.md b/Docs/Layers/defibrillator.md new file mode 100644 index 0000000000..636e014338 --- /dev/null +++ b/Docs/Layers/defibrillator.md @@ -0,0 +1,322 @@ + + + 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) + - [personal](https://mapcomplete.osm.be/personal) + + +[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](https://github.com/pietervdvn/MapComplete/blob/develop/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..ed30a70653 --- /dev/null +++ b/Docs/Layers/direction.md @@ -0,0 +1,64 @@ + + + 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 + + + + + + - [personal](https://mapcomplete.osm.be/personal) + - [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](https://github.com/pietervdvn/MapComplete/blob/develop/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..209b55bcab --- /dev/null +++ b/Docs/Layers/drinking_water.md @@ -0,0 +1,137 @@ + + + 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) + - [personal](https://mapcomplete.osm.be/personal) + + +[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](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/drinking_water/drinking_water.json) \ No newline at end of file diff --git a/Docs/Layers/dumpstations.md b/Docs/Layers/dumpstations.md new file mode 100644 index 0000000000..5b4414abef --- /dev/null +++ b/Docs/Layers/dumpstations.md @@ -0,0 +1,145 @@ +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..16ac93aecd --- /dev/null +++ b/Docs/Layers/entrance.md @@ -0,0 +1,169 @@ + + + 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) + - [personal](https://mapcomplete.osm.be/personal) + + +[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](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/entrance/entrance.json) \ No newline at end of file diff --git a/Docs/Layers/etymology.md b/Docs/Layers/etymology.md new file mode 100644 index 0000000000..5b3d8a81a8 --- /dev/null +++ b/Docs/Layers/etymology.md @@ -0,0 +1,180 @@ + + + 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) + - [personal](https://mapcomplete.osm.be/personal) + + +[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](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/etymology/etymology.json) \ No newline at end of file diff --git a/Docs/Layers/extinguisher.md b/Docs/Layers/extinguisher.md new file mode 100644 index 0000000000..a65711d6b3 --- /dev/null +++ b/Docs/Layers/extinguisher.md @@ -0,0 +1,102 @@ + + + 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) + - [personal](https://mapcomplete.osm.be/personal) + + +[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](https://github.com/pietervdvn/MapComplete/blob/develop/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..e29139bfa4 --- /dev/null +++ b/Docs/Layers/facadegardens.md @@ -0,0 +1,138 @@ +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..327223b219 --- /dev/null +++ b/Docs/Layers/fietsstraat.md @@ -0,0 +1,44 @@ +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..c597a9659d --- /dev/null +++ b/Docs/Layers/fire_station.md @@ -0,0 +1,161 @@ + + + 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) + - [personal](https://mapcomplete.osm.be/personal) + + +[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](https://github.com/pietervdvn/MapComplete/blob/develop/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..66bd8be800 --- /dev/null +++ b/Docs/Layers/food.md @@ -0,0 +1,456 @@ + + + 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) + - [personal](https://mapcomplete.osm.be/personal) + + +[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](https://github.com/pietervdvn/MapComplete/blob/develop/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..6688ee8c4a --- /dev/null +++ b/Docs/Layers/forest.md @@ -0,0 +1,50 @@ +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..e1ded5c7c3 --- /dev/null +++ b/Docs/Layers/fruitboom.md @@ -0,0 +1,77 @@ +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..eccc852941 --- /dev/null +++ b/Docs/Layers/generic_osm_object.md @@ -0,0 +1,45 @@ +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..8fd4efa3cf --- /dev/null +++ b/Docs/Layers/ghost_bike.md @@ -0,0 +1,151 @@ + + + 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) + - [personal](https://mapcomplete.osm.be/personal) + + +[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](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/ghost_bike/ghost_bike.json) \ No newline at end of file diff --git a/Docs/Layers/gps_location.md b/Docs/Layers/gps_location.md new file mode 100644 index 0000000000..2e196b1b84 --- /dev/null +++ b/Docs/Layers/gps_location.md @@ -0,0 +1,44 @@ +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..cdfe7f6103 --- /dev/null +++ b/Docs/Layers/gps_location_history.md @@ -0,0 +1,43 @@ +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..d10ccff474 --- /dev/null +++ b/Docs/Layers/gps_track.md @@ -0,0 +1,59 @@ +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..eb1d266f5d --- /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](https://github.com/pietervdvn/MapComplete/blob/develop/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..6e339fdf10 --- /dev/null +++ b/Docs/Layers/grb.md @@ -0,0 +1,98 @@ +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..cfc1dd152d --- /dev/null +++ b/Docs/Layers/hackerspaces.md @@ -0,0 +1,156 @@ +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..c8b3734a2b --- /dev/null +++ b/Docs/Layers/home_location.md @@ -0,0 +1,42 @@ +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..7135b312df --- /dev/null +++ b/Docs/Layers/hydrant.md @@ -0,0 +1,144 @@ + + + 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) + - [personal](https://mapcomplete.osm.be/personal) + + +[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](https://github.com/pietervdvn/MapComplete/blob/develop/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..2c3105f07f --- /dev/null +++ b/Docs/Layers/information_board.md @@ -0,0 +1,75 @@ + + + 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) + - [personal](https://mapcomplete.osm.be/personal) + + +[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](https://github.com/pietervdvn/MapComplete/blob/develop/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..471b5c9f65 --- /dev/null +++ b/Docs/Layers/left_right_style.md @@ -0,0 +1,45 @@ +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..158f4e997d --- /dev/null +++ b/Docs/Layers/lit_streets.md @@ -0,0 +1,62 @@ +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..7d0568481c --- /dev/null +++ b/Docs/Layers/map.md @@ -0,0 +1,123 @@ + + + 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) + - [personal](https://mapcomplete.osm.be/personal) + + +[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](https://github.com/pietervdvn/MapComplete/blob/develop/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..5fd22c6ca5 --- /dev/null +++ b/Docs/Layers/matchpoint.md @@ -0,0 +1,45 @@ +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..f3940462bc --- /dev/null +++ b/Docs/Layers/maybe_climbing.md @@ -0,0 +1,73 @@ +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..5f5faba576 --- /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](https://github.com/pietervdvn/MapComplete/blob/develop/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..1a4dae8dbd --- /dev/null +++ b/Docs/Layers/nature_reserve.md @@ -0,0 +1,283 @@ + + + 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) + - [personal](https://mapcomplete.osm.be/personal) + + +[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/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_ + + + + + +### 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](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/nature_reserve/nature_reserve.json) \ No newline at end of file diff --git a/Docs/Layers/nature_reserve_buurtnatuur.md b/Docs/Layers/nature_reserve_buurtnatuur.md new file mode 100644 index 0000000000..3f2a9cf681 --- /dev/null +++ b/Docs/Layers/nature_reserve_buurtnatuur.md @@ -0,0 +1,46 @@ +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..a767e1f35e --- /dev/null +++ b/Docs/Layers/node.md @@ -0,0 +1,60 @@ +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..c8a7247525 --- /dev/null +++ b/Docs/Layers/node2node.md @@ -0,0 +1,58 @@ +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/note_import.md b/Docs/Layers/note_import.md new file mode 100644 index 0000000000..e0662bc2bf --- /dev/null +++ b/Docs/Layers/note_import.md @@ -0,0 +1,129 @@ + + + note_import +============= + + + + + +Template for note note imports. + + + + +## Table of contents + +1. [note_import](#note_import) + - [Basic tags for this layer](#basic-tags-for-this-layer) + - [Supported attributes](#supported-attributes) + + [conversation](#conversation) + + [Intro](#intro) + + [import](#import) + + [close_note_](#close_note_) + + [close_note_mapped](#close_note_mapped) + + [comment](#comment) + + [add_image](#add_image) + + + + + + - This layer is loaded from an external source, namely `https://api.openstreetmap.org/api/0.6/notes.json?closed=0&bbox={x_min},{y_min},{x_max},{y_max}` + - This layer will automatically load [public_bookcase](./public_bookcase.md) into the layout as it depends on it: a tagrendering needs this layer (import) + + +[Go to the source code](../assets/layers/note_import/note_import.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_ + + + + + +### Intro + + + +_This tagrendering has no question and is thus read-only_ + + + + + +### import + + + +_This tagrendering has no question and is thus read-only_ + + + + + +### close_note_ + + + +_This tagrendering has no question and is thus read-only_ + + + + + +### close_note_mapped + + + +_This tagrendering has no question and is thus read-only_ + + + + + +### comment + + + +_This tagrendering has no question and is thus read-only_ + + + + + +### add_image + + + +_This tagrendering has no question and is thus read-only_ + + + +This document is autogenerated from [assets/layers/note_import/note_import.json](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/note_import/note_import.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..09b33e3cf9 --- /dev/null +++ b/Docs/Layers/observation_tower.md @@ -0,0 +1,267 @@ + + + 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) + + [access](#access) + + [Fee](#fee) + + [payment-options](#payment-options) + + [website](#website) + + [step_count](#step_count) + + [elevator](#elevator) + + [Operator](#operator) + + [wheelchair-access](#wheelchair-access) + + [wikipedia](#wikipedia) + + + + + + + + + + +#### Themes using this layer + + + + + + - [observation_towers](https://mapcomplete.osm.be/observation_towers) + - [personal](https://mapcomplete.osm.be/personal) + + +[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/access#values) [access](https://wiki.openstreetmap.org/wiki/Key:access) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:access%3Dyes) [guided](https://wiki.openstreetmap.org/wiki/Tag:access%3Dguided) +[](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/website#values) [website](https://wiki.openstreetmap.org/wiki/Key:website) | [url](../SpecialInputElements.md#url) | +[](https://taginfo.openstreetmap.org/keys/step_count#values) [step_count](https://wiki.openstreetmap.org/wiki/Key:step_count) | [pnat](../SpecialInputElements.md#pnat) | +[](https://taginfo.openstreetmap.org/keys/elevator#values) [elevator](https://wiki.openstreetmap.org/wiki/Key:elevator) | Multiple choice | [yes](https://wiki.openstreetmap.org/wiki/Tag:elevator%3Dyes) [no](https://wiki.openstreetmap.org/wiki/Tag:elevator%3Dno) +[](https://taginfo.openstreetmap.org/keys/operator#values) [operator](https://wiki.openstreetmap.org/wiki/Key:operator) | [string](../SpecialInputElements.md#string) | +[](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` + + + +### access + + + +The question is **Can this tower be visited?** + + + + + + - **This tower is publicly accessible** corresponds with access=yes + - **This tower can only be visited with a guide** corresponds with access=guided + + + + +### 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 + + + + +### 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_ + + + + +### step_count + + + +The question is **How much individual steps does one have to climb to reach the top of this tower?** + +This rendering asks information about the property [step_count](https://wiki.openstreetmap.org/wiki/Key:step_count) +This is rendered with `This tower has {step_count} steps to reach the top` + + + +### elevator + + + +The question is **Does this tower have an elevator?** + + + + + + - **This tower has an elevator which takes visitors to the top** corresponds with elevator=yes + - **This tower does not have an elevator** corresponds with elevator=no + + + + +### 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}` + + + +### 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](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/observation_tower/observation_tower.json) \ No newline at end of file diff --git a/Docs/Layers/orchards.md b/Docs/Layers/orchards.md new file mode 100644 index 0000000000..e25d58bf1c --- /dev/null +++ b/Docs/Layers/orchards.md @@ -0,0 +1,37 @@ +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..e9f6d27065 --- /dev/null +++ b/Docs/Layers/osm-buildings-fixme.md @@ -0,0 +1,143 @@ +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..f5562c9dc4 --- /dev/null +++ b/Docs/Layers/osm-buildings.md @@ -0,0 +1,51 @@ +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..dad8078172 --- /dev/null +++ b/Docs/Layers/parking.md @@ -0,0 +1,75 @@ + + + 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) + - [personal](https://mapcomplete.osm.be/personal) + + +[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](https://github.com/pietervdvn/MapComplete/blob/develop/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..800d653f08 --- /dev/null +++ b/Docs/Layers/parks.md @@ -0,0 +1,48 @@ +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..74ae60f8c3 --- /dev/null +++ b/Docs/Layers/pedestrian_path.md @@ -0,0 +1,64 @@ + + + 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) + - [personal](https://mapcomplete.osm.be/personal) + + +[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](https://github.com/pietervdvn/MapComplete/blob/develop/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..b48b7faad1 --- /dev/null +++ b/Docs/Layers/picnic_table.md @@ -0,0 +1,103 @@ + + + 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) + + [images](#images) + + [picnic_table-material](#picnic_table-material) + + + + + + + + + + +#### Themes using this layer + + + + + + - [benches](https://mapcomplete.osm.be/benches) + - [nature](https://mapcomplete.osm.be/nature) + - [personal](https://mapcomplete.osm.be/personal) + + +[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) + + + + +### images + + + +_This tagrendering has no question and is thus read-only_ + + + + + +### 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](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/picnic_table/picnic_table.json) \ No newline at end of file diff --git a/Docs/Layers/play_forest.md b/Docs/Layers/play_forest.md new file mode 100644 index 0000000000..ca02c3e8ed --- /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](https://github.com/pietervdvn/MapComplete/blob/develop/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..66a1a4b429 --- /dev/null +++ b/Docs/Layers/playground.md @@ -0,0 +1,272 @@ + + + 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 + + + + + + - [personal](https://mapcomplete.osm.be/personal) + - [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) [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 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_This option cannot be chosen as answer_ + - **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 + + + + +### 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](https://github.com/pietervdvn/MapComplete/blob/develop/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..d5ec722a4c --- /dev/null +++ b/Docs/Layers/postal_code_boundary.md @@ -0,0 +1,39 @@ +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..3edae41ea2 --- /dev/null +++ b/Docs/Layers/postboxes.md @@ -0,0 +1,49 @@ +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..3bde0835ef --- /dev/null +++ b/Docs/Layers/postoffices.md @@ -0,0 +1,70 @@ +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..46a1a174df --- /dev/null +++ b/Docs/Layers/public_bookcase.md @@ -0,0 +1,246 @@ + + + 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) + + [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) + - [personal](https://mapcomplete.osm.be/personal) + + +[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_ + + + + + +### 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](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/public_bookcase/public_bookcase.json) \ No newline at end of file diff --git a/Docs/Layers/raw_inspire_polygons.md b/Docs/Layers/raw_inspire_polygons.md new file mode 100644 index 0000000000..c38230aa27 --- /dev/null +++ b/Docs/Layers/raw_inspire_polygons.md @@ -0,0 +1,39 @@ +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..189b979416 --- /dev/null +++ b/Docs/Layers/service_ways.md @@ -0,0 +1,39 @@ +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..1cd41fafe1 --- /dev/null +++ b/Docs/Layers/shadow.md @@ -0,0 +1,37 @@ +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..2dca5cf6f7 --- /dev/null +++ b/Docs/Layers/shops.md @@ -0,0 +1,211 @@ + + + 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) + + [payment-options](#payment-options) + + [questions](#questions) + + [reviews](#reviews) + + + + + + + + + + +#### Themes using this layer + + + + + + - [personal](https://mapcomplete.osm.be/personal) + - [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)}` + + + +### 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 + + + + +### 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](https://github.com/pietervdvn/MapComplete/blob/develop/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..42a9de872c --- /dev/null +++ b/Docs/Layers/sidewalks.md @@ -0,0 +1,118 @@ +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..4e9b636fb0 --- /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](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/slow_roads/slow_roads.json) \ No newline at end of file diff --git a/Docs/Layers/split_point.md b/Docs/Layers/split_point.md new file mode 100644 index 0000000000..8164c272d8 --- /dev/null +++ b/Docs/Layers/split_point.md @@ -0,0 +1,36 @@ +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..1d0cf8ce61 --- /dev/null +++ b/Docs/Layers/sport_pitch.md @@ -0,0 +1,235 @@ + + + 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 + + + + + + - [personal](https://mapcomplete.osm.be/personal) + - [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](https://github.com/pietervdvn/MapComplete/blob/develop/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..f7fde14bab --- /dev/null +++ b/Docs/Layers/street_lamps.md @@ -0,0 +1,226 @@ + + + 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 + + + + + + - [personal](https://mapcomplete.osm.be/personal) + - [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](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/street_lamps/street_lamps.json) \ No newline at end of file diff --git a/Docs/Layers/surveillance_camera.md b/Docs/Layers/surveillance_camera.md new file mode 100644 index 0000000000..f65048715f --- /dev/null +++ b/Docs/Layers/surveillance_camera.md @@ -0,0 +1,228 @@ + + + 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 + + + + + + - [personal](https://mapcomplete.osm.be/personal) + - [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](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/surveillance_camera/surveillance_camera.json) \ No newline at end of file diff --git a/Docs/Layers/to_import.md b/Docs/Layers/to_import.md new file mode 100644 index 0000000000..ca546e45ff --- /dev/null +++ b/Docs/Layers/to_import.md @@ -0,0 +1,73 @@ +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..d411f8e986 --- /dev/null +++ b/Docs/Layers/toekomstige_fietsstraat.md @@ -0,0 +1,44 @@ +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..baa58efefd --- /dev/null +++ b/Docs/Layers/toilet.md @@ -0,0 +1,320 @@ + + + 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 + + + + + + - [nature](https://mapcomplete.osm.be/nature) + - [personal](https://mapcomplete.osm.be/personal) + - [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) [-1](https://wiki.openstreetmap.org/wiki/Tag:level%3D-1) +[](https://taginfo.openstreetmap.org/keys/description#values) [description](https://wiki.openstreetmap.org/wiki/Key:description) | [string](../SpecialInputElements.md#string) | + + + + +### 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 + - **Located on the first basement level** 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](https://github.com/pietervdvn/MapComplete/blob/develop/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..54230f32a6 --- /dev/null +++ b/Docs/Layers/town_hall.md @@ -0,0 +1,41 @@ +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..6cceb7ce4a --- /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~^.*foot.*$|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](https://github.com/pietervdvn/MapComplete/blob/develop/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..8f52172bd6 --- /dev/null +++ b/Docs/Layers/tree_node.md @@ -0,0 +1,226 @@ + + + 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 + + + + + + - [personal](https://mapcomplete.osm.be/personal) + - [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](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/tree_node/tree_node.json) \ No newline at end of file diff --git a/Docs/Layers/type_node.md b/Docs/Layers/type_node.md new file mode 100644 index 0000000000..d584c121f5 --- /dev/null +++ b/Docs/Layers/type_node.md @@ -0,0 +1,42 @@ +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..95d3592b22 --- /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](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/viewpoint/viewpoint.json) \ No newline at end of file diff --git a/Docs/Layers/village_green.md b/Docs/Layers/village_green.md new file mode 100644 index 0000000000..2ac2c08c80 --- /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](https://github.com/pietervdvn/MapComplete/blob/develop/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..c9235573ce --- /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](https://github.com/pietervdvn/MapComplete/blob/develop/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..81cf103077 --- /dev/null +++ b/Docs/Layers/walking_routes.md @@ -0,0 +1,111 @@ +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..e2fd55c73f --- /dev/null +++ b/Docs/Layers/walls_and_buildings.md @@ -0,0 +1,71 @@ + + + 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) + - [personal](https://mapcomplete.osm.be/personal) + - [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](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/walls_and_buildings/walls_and_buildings.json) \ No newline at end of file diff --git a/Docs/Layers/waste_basket.md b/Docs/Layers/waste_basket.md new file mode 100644 index 0000000000..89cfb33c03 --- /dev/null +++ b/Docs/Layers/waste_basket.md @@ -0,0 +1,113 @@ + + + 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 + + + + + + - [personal](https://mapcomplete.osm.be/personal) + - [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](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/waste_basket/waste_basket.json) \ No newline at end of file diff --git a/Docs/Layers/watermill.md b/Docs/Layers/watermill.md new file mode 100644 index 0000000000..f857b212a9 --- /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](https://github.com/pietervdvn/MapComplete/blob/develop/assets/layers/watermill/watermill.json) \ No newline at end of file diff --git a/Docs/Layers/windturbine.md b/Docs/Layers/windturbine.md new file mode 100644 index 0000000000..f8873bf9ef --- /dev/null +++ b/Docs/Layers/windturbine.md @@ -0,0 +1,96 @@ +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..572aaedfb8 --- /dev/null +++ b/Docs/Layers/wrong_postal_code.md @@ -0,0 +1,34 @@ +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..4baa5ff22e 100644 --- a/Docs/Making_Your_Own_Theme.md +++ b/Docs/Making_Your_Own_Theme.md @@ -110,18 +110,19 @@ 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 -A tagRendering can have a `group`-attribute, which acts as a tag. -All tagRenderings with the same group name will be rendered together, in the same order as they were defined. +A tagRendering can have a `group`-attribute, which acts as a tag. All tagRenderings with the same group name will be +rendered together, in the same order as they were defined. -For example, if the defined tagrenderings have groups `A A B A A B B B`, the group order is `A B` and first all tagrenderings from group A will be rendered (thus numbers 0, 1, 3 and 4) followed by the question box for this group. +For example, if the defined tagrenderings have groups `A A B A A B B B`, the group order is `A B` and first all +tagrenderings from group A will be rendered (thus numbers 0, 1, 3 and 4) followed by the question box for this group. Then, all the tagRenderings for group B will be shown, thus number 2, 5, 6 and 7, again followed by their questionbox. -Additionally, every tagrendering will receive a the groupname as class in the HTML, which can be used to hook up custom CSS. +Additionally, every tagrendering will receive a the groupname as class in the HTML, which can be used to hook up custom +CSS. If no group tag is given, the group is `` (empty string) @@ -133,7 +134,8 @@ To override this behaviour, one can add a tagrendering with id `questions` to mo To add a title to the questions, one can add a `render` and a condition. -To change the behaviour of the questionbox to show _all_ questions at once, one can use a helperArgs in the freeform field with option `showAllQuestions`. +To change the behaviour of the questionbox to show _all_ questions at once, one can use a helperArgs in the freeform +field with option `showAllQuestions`. For example, to show the questions on top, use: diff --git a/Docs/MapComplete-Auto_apply.gif b/Docs/MapComplete-Auto_apply.gif new file mode 100644 index 0000000000..dc3b500e9a Binary files /dev/null and b/Docs/MapComplete-Auto_apply.gif differ diff --git a/Docs/Misc/geolocation_button.gv.svg b/Docs/Misc/geolocation_button.gv.svg index 5fd2710d0e..c7fa3ec857 100644 --- a/Docs/Misc/geolocation_button.gv.svg +++ b/Docs/Misc/geolocation_button.gv.svg @@ -1,181 +1,687 @@ - - - - - - - G - - - - init - - init - - - - denied - - denied - - - - init->denied - - - geolocation - permanently denied - - - - - getting_location - - - getting_location - - - - - init->getting_location - - - previously - granted flag set - - - - - idle - - idle - - - - init->idle - - - previously - granted flag unset - - - - - location_found - - - location_found - - - - - getting_location->location_found - - - location - found - - - - - request_permission - - - request_permission - - - - - idle->request_permission - - - on click - - - - request_permission->denied - - - permanently - denied - - - - - request_permission->getting_location - - - granted (sets - flag) - - - - - request_permission->idle - - - not granted - - - - - open_lock - - open_lock - - - - - location_found->open_lock - - - on click (zooms - to location) - - - - - open_lock->location_found - - - after 3 sec - - - - - closed_lock - - closed_lock - - - - - open_lock->closed_lock - - - on click (locks - zoom to location) - - - - - closed_lock->location_found - - - on click - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + \ No newline at end of file diff --git a/Docs/Schemas/ExtraLinkConfigJson.schema.json b/Docs/Schemas/ExtraLinkConfigJson.schema.json new file mode 100644 index 0000000000..9d232d1f21 --- /dev/null +++ b/Docs/Schemas/ExtraLinkConfigJson.schema.json @@ -0,0 +1,66 @@ +{ + "type": "object", + "properties": { + "icon": { + "type": "string" + }, + "text": {}, + "href": { + "type": "string" + }, + "newTab": { + "type": "boolean" + }, + "requirements": { + "type": "array", + "items": { + "enum": [ + "iframe", + "no-iframe", + "no-welcome-message", + "welcome-message" + ], + "type": "string" + } + } + }, + "required": [ + "href" + ], + "definitions": { + "AndOrTagConfigJson": { + "type": "object", + "properties": { + "and": { + "type": "array", + "items": { + "anyOf": [ + { + "$ref": "#/definitions/AndOrTagConfigJson" + }, + { + "type": "string" + } + ] + } + }, + "or": { + "type": "array", + "items": { + "anyOf": [ + { + "$ref": "#/definitions/AndOrTagConfigJson" + }, + { + "type": "string" + } + ] + } + } + }, + "additionalProperties": false + } + }, + "$schema": "http://json-schema.org/draft-07/schema#", + "additionalProperties": false +} \ No newline at end of file diff --git a/Docs/Schemas/ExtraLinkConfigJsonJSC.ts b/Docs/Schemas/ExtraLinkConfigJsonJSC.ts new file mode 100644 index 0000000000..b3175e1c4a --- /dev/null +++ b/Docs/Schemas/ExtraLinkConfigJsonJSC.ts @@ -0,0 +1,64 @@ +export default { + "type": "object", + "properties": { + "icon": { + "type": "string" + }, + "text": {}, + "href": { + "type": "string" + }, + "newTab": { + "type": "boolean" + }, + "requirements": { + "type": "array", + "items": { + "enum": [ + "iframe", + "no-iframe", + "no-welcome-message", + "welcome-message" + ], + "type": "string" + } + } + }, + "required": [ + "href" + ], + "definitions": { + "AndOrTagConfigJson": { + "type": "object", + "properties": { + "and": { + "type": "array", + "items": { + "anyOf": [ + { + "$ref": "#/definitions/AndOrTagConfigJson" + }, + { + "type": "string" + } + ] + } + }, + "or": { + "type": "array", + "items": { + "anyOf": [ + { + "$ref": "#/definitions/AndOrTagConfigJson" + }, + { + "type": "string" + } + ] + } + } + } + } + }, + "$schema": "http://json-schema.org/draft-07/schema#" +} \ No newline at end of file diff --git a/Docs/Schemas/FilterConfigJson.schema.json b/Docs/Schemas/FilterConfigJson.schema.json index da7c9c8f06..ad6acfd29b 100644 --- a/Docs/Schemas/FilterConfigJson.schema.json +++ b/Docs/Schemas/FilterConfigJson.schema.json @@ -21,6 +21,26 @@ "type": "string" } ] + }, + "default": { + "type": "boolean" + }, + "fields": { + "type": "array", + "items": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "type": { + "type": "string" + } + }, + "required": [ + "name" + ] + } } }, "required": [ diff --git a/Docs/Schemas/FilterConfigJsonJSC.ts b/Docs/Schemas/FilterConfigJsonJSC.ts index b2f245b1b5..fc54409ec8 100644 --- a/Docs/Schemas/FilterConfigJsonJSC.ts +++ b/Docs/Schemas/FilterConfigJsonJSC.ts @@ -21,6 +21,26 @@ export default { "type": "string" } ] + }, + "default": { + "type": "boolean" + }, + "fields": { + "type": "array", + "items": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "type": { + "type": "string" + } + }, + "required": [ + "name" + ] + } } }, "required": [ diff --git a/Docs/Schemas/LayerConfigJson.schema.json b/Docs/Schemas/LayerConfigJson.schema.json index 471fd02820..72a8a69e0f 100644 --- a/Docs/Schemas/LayerConfigJson.schema.json +++ b/Docs/Schemas/LayerConfigJson.schema.json @@ -13,7 +13,7 @@ "description": "A description for this layer.\nShown in the layer selections and in the personel theme" }, "source": { - "description": "This determines where the data for the layer is fetched.\nThere are some options:\n\n# Query OSM directly\nsource: {osmTags: \"key=value\"}\n will fetch all objects with given tags from OSM.\n Currently, this will create a query to overpass and fetch the data - in the future this might fetch from the OSM API\n\n# Query OSM Via the overpass API with a custom script\nsource: {overpassScript: \"\"} when you want to do special things. _This should be really rare_.\n This means that the data will be pulled from overpass with this script, and will ignore the osmTags for the query\n However, for the rest of the pipeline, the OsmTags will _still_ be used. This is important to enable layers etc...\n\n\n# A single geojson-file\nsource: {geoJson: \"https://my.source.net/some-geo-data.geojson\"}\n fetches a geojson from a third party source\n\n# A tiled geojson source\nsource: {geoJson: \"https://my.source.net/some-tile-geojson-{layer}-{z}-{x}-{y}.geojson\", geoJsonZoomLevel: 14}\n to use a tiled geojson source. The web server must offer multiple geojsons. {z}, {x} and {y} are substituted by the location; {layer} is substituted with the id of the loaded layer\n\nSome API's use a BBOX instead of a tile, this can be used by specifying {y_min}, {y_max}, {x_min} and {x_max}\nSome API's use a mercator-projection (EPSG:900913) instead of WGS84. Set the flag `mercatorCrs: true` in the source for this\n\nNote that both geojson-options might set a flag 'isOsmCache' indicating that the data originally comes from OSM too\n\n\nNOTE: the previous format was 'overpassTags: AndOrTagConfigJson | string', which is interpreted as a shorthand for source: {osmTags: \"key=value\"}\n While still supported, this is considered deprecated", + "description": "This determines where the data for the layer is fetched: from OSM or from an external geojson dataset.\n\nIf no 'geojson' is defined, data will be fetched from overpass and the OSM-API.\n\nEvery source _must_ define which tags _must_ be present in order to be picked up.", "anyOf": [ { "allOf": [ @@ -21,6 +21,7 @@ "type": "object", "properties": { "osmTags": { + "description": "Every source must set which tags have to be present in order to load the given layer.", "anyOf": [ { "$ref": "#/definitions/AndOrTagConfigJson" @@ -30,8 +31,9 @@ } ] }, - "overpassScript": { - "type": "string" + "maxCacheAge": { + "description": "The maximum amount of seconds that a tile is allowed to linger in the cache", + "type": "number" } }, "required": [ @@ -41,9 +43,8 @@ { "type": "object", "properties": { - "maxCacheAge": { - "description": "The maximum amount of seconds that a tile is allowed to linger in the cache", - "type": "number" + "overpassScript": { + "type": "string" } } } @@ -55,6 +56,7 @@ "type": "object", "properties": { "osmTags": { + "description": "Every source must set which tags have to be present in order to load the given layer.", "anyOf": [ { "$ref": "#/definitions/AndOrTagConfigJson" @@ -64,39 +66,49 @@ } ] }, - "geoJson": { - "type": "string" - }, - "geoJsonZoomLevel": { + "maxCacheAge": { + "description": "The maximum amount of seconds that a tile is allowed to linger in the cache", "type": "number" - }, - "isOsmCache": { - "type": "boolean" - }, - "mercatorCrs": { - "type": "boolean" } }, "required": [ - "geoJson", "osmTags" ] }, { "type": "object", "properties": { - "maxCacheAge": { - "description": "The maximum amount of seconds that a tile is allowed to linger in the cache", + "geoJson": { + "description": "The actual source of the data to load, if loaded via geojson.\n\n# A single geojson-file\nsource: {geoJson: \"https://my.source.net/some-geo-data.geojson\"}\n fetches a geojson from a third party source\n\n# A tiled geojson source\nsource: {geoJson: \"https://my.source.net/some-tile-geojson-{layer}-{z}-{x}-{y}.geojson\", geoJsonZoomLevel: 14}\n to use a tiled geojson source. The web server must offer multiple geojsons. {z}, {x} and {y} are substituted by the location; {layer} is substituted with the id of the loaded layer\n\nSome API's use a BBOX instead of a tile, this can be used by specifying {y_min}, {y_max}, {x_min} and {x_max}", + "type": "string" + }, + "geoJsonZoomLevel": { + "description": "To load a tiled geojson layer, set the zoomlevel of the tiles", "type": "number" + }, + "isOsmCache": { + "description": "Indicates that the upstream geojson data is OSM-derived.\nUseful for e.g. merging or for scripts generating this cache", + "type": "boolean" + }, + "mercatorCrs": { + "description": "Some API's use a mercator-projection (EPSG:900913) instead of WGS84. Set the flag `mercatorCrs: true` in the source for this", + "type": "boolean" + }, + "idKey": { + "description": "Some API's have an id-field, but give it a different name.\nSetting this key will rename this field into 'id'", + "type": "string" } - } + }, + "required": [ + "geoJson" + ] } ] } ] }, "calculatedTags": { - "description": "A list of extra tags to calculate, specified as \"keyToAssignTo=javascript-expression\".\nThere are a few extra functions available. Refer to Docs/CalculatedTags.md for more information\nThe functions will be run in order, e.g.\n[\n \"_max_overlap_m2=Math.max(...feat.overlapsWith(\"someOtherLayer\").map(o => o.overlap))\n \"_max_overlap_ratio=Number(feat._max_overlap_m2)/feat.area\n]", + "description": "A list of extra tags to calculate, specified as \"keyToAssignTo=javascript-expression\".\nThere are a few extra functions available. Refer to Docs/CalculatedTags.md for more information\nThe functions will be run in order, e.g.\n[\n \"_max_overlap_m2=Math.max(...feat.overlapsWith(\"someOtherLayer\").map(o => o.overlap))\n \"_max_overlap_ratio=Number(feat._max_overlap_m2)/feat.area\n]\n\nThe specified tags are evaluated lazily. E.g. if a calculated tag is only used in the popup (e.g. the number of nearby features),\nthe expensive calculation will only be performed then for that feature. This avoids clogging up the contributors PC when all features are loaded.\n\nIf a tag has to be evaluated strictly, use ':=' instead:\n\n[\n\"_some_key:=some_javascript_expression\"\n]", "type": "array", "items": { "type": "string" @@ -110,10 +122,18 @@ "description": "This tag rendering should either be 'yes' or 'no'. If 'no' is returned, then the feature will be hidden from view.\nThis is useful to hide certain features from view.\n\nImportant: hiding features does not work dynamically, but is only calculated when the data is first renders.\nThis implies that it is not possible to hide a feature after a tagging change\n\nThe default value is 'yes'", "$ref": "#/definitions/TagRenderingConfigJson" }, + "forceLoad": { + "description": "Advanced option - might be set by the theme compiler\n\nIf true, this data will _always_ be loaded, even if the theme is disabled", + "type": "boolean" + }, "minzoom": { "description": "The minimum needed zoomlevel required before loading of the data start\nDefault: 0", "type": "number" }, + "shownByDefault": { + "description": "Indicates if this layer is shown by default;\ncan be used to hide a layer from start, or to load the layer but only to show it where appropriate (e.g. for snapping to it)", + "type": "boolean" + }, "minzoomVisible": { "description": "The zoom level at which point the data is hidden again\nDefault: 100 (thus: always visible", "type": "number" @@ -130,31 +150,55 @@ ] }, "titleIcons": { - "description": "Small icons shown next to the title.\nIf not specified, the OsmLink and wikipedia links will be used by default.\nUse an empty array to hide them.\nNote that \"defaults\" will insert all the default titleIcons", - "type": "array", - "items": { - "anyOf": [ - { - "$ref": "#/definitions/TagRenderingConfigJson" - }, - { - "type": "string" + "description": "Small icons shown next to the title.\nIf not specified, the OsmLink and wikipedia links will be used by default.\nUse an empty array to hide them.\nNote that \"defaults\" will insert all the default titleIcons (which are added automatically)\n\nType: icon[]", + "anyOf": [ + { + "type": "array", + "items": { + "anyOf": [ + { + "$ref": "#/definitions/TagRenderingConfigJson" + }, + { + "type": "string" + } + ] } - ] - } + }, + { + "type": "array", + "items": [ + { + "type": "string", + "enum": [ + "defaults" + ] + } + ], + "minItems": 1, + "maxItems": 1 + } + ] }, "mapRendering": { - "type": "array", - "items": { - "anyOf": [ - { - "$ref": "#/definitions/default_3" - }, - { - "$ref": "#/definitions/default_4" + "anyOf": [ + { + "type": "array", + "items": { + "anyOf": [ + { + "$ref": "#/definitions/default_4" + }, + { + "$ref": "#/definitions/default_5" + } + ] } - ] - } + }, + { + "type": "null" + } + ] }, "passAllFeatures": { "description": "If set, this layer will pass all the features it receives onto the next layer.\nThis is ideal for decoration, e.g. directionss on cameras", @@ -179,6 +223,13 @@ "description": { "description": "The _first sentence_ of the description is shown on the button of the `add` menu.\nThe full description is shown in the confirmation dialog.\n\n(The first sentence is until the first '.'-character in the description)" }, + "exampleImages": { + "description": "Example images, which show real-life pictures of what such a feature might look like\n\nType: image", + "type": "array", + "items": { + "type": "string" + } + }, "preciseInput": { "description": "If set, the user will prompted to confirm the location before actually adding the data.\nThis will be with a 'drag crosshair'-method.\n\nIf 'preferredBackgroundCategory' is set, the element will attempt to pick a background layer of that category.", "anyOf": [ @@ -262,25 +313,26 @@ "type": "object", "properties": { "rewrite": { - "type": "array", - "items": { - "type": "object", - "properties": { - "sourceString": { + "type": "object", + "properties": { + "sourceString": { + "type": "array", + "items": { "type": "string" - }, - "into": { - "type": "array", - "items": { - "type": "string" - } } }, - "required": [ - "into", - "sourceString" - ] - } + "into": { + "type": "array", + "items": { + "type": "array", + "items": {} + } + } + }, + "required": [ + "into", + "sourceString" + ] }, "renderings": { "type": "array", @@ -322,10 +374,25 @@ }, "filter": { "description": "All the extra questions for filtering", - "type": "array", - "items": { - "$ref": "#/definitions/default" - } + "anyOf": [ + { + "type": "array", + "items": { + "$ref": "#/definitions/default_1" + } + }, + { + "type": "object", + "properties": { + "sameAs": { + "type": "string" + } + }, + "required": [ + "sameAs" + ] + } + ] }, "deletion": { "description": "This block defines under what circumstances the delete dialog is shown for objects of this layer.\nIf set, a dialog is shown to the user to (soft) delete the point.\nThe dialog is built to be user friendly and to prevent mistakes.\nIf deletion is not possible, the dialog will hide itself and show the reason of non-deletability instead.\n\nTo configure, the following values are possible:\n\n- false: never ever show the delete button\n- true: show the default delete button\n- undefined: use the mapcomplete default to show deletion or not. Currently, this is the same as 'false' but this will change in the future\n- or: a hash with options (see below)\n\n The delete dialog\n =================\n\n\n\n#### Hard deletion if enough experience\n\nA feature can only be deleted from OpenStreetMap by mapcomplete if:\n\n- It is a node\n- No ways or relations use the node\n- The logged-in user has enough experience OR the user is the only one to have edited the point previously\n- The logged-in user has no unread messages (or has a ton of experience)\n- The user did not select one of the 'non-delete-options' (see below)\n\nIn all other cases, a 'soft deletion' is used.\n\n#### Soft deletion\n\nA 'soft deletion' is when the point isn't deleted from OSM but retagged so that it'll won't how up in the mapcomplete theme anymore.\nThis makes it look like it was deleted, without doing damage. A fixme will be added to the point.\n\nNote that a soft deletion is _only_ possible if these tags are provided by the theme creator, as they'll be different for every theme\n\n#### No-delete options\n\nIn some cases, the contributor might want to delete something for the wrong reason (e.g. someone who wants to have a path removed \"because the path is on their private property\").\nHowever, the path exists in reality and should thus be on OSM - otherwise the next contributor will pass by and notice \"hey, there is a path missing here! Let me redraw it in OSM!)\n\nThe correct approach is to retag the feature in such a way that it is semantically correct *and* that it doesn't show up on the theme anymore.\nA no-delete option is offered as 'reason to delete it', but secretly retags.", @@ -342,7 +409,7 @@ "description": "Indicates if a point can be moved and configures the modalities.\n\nA feature can be moved by MapComplete if:\n\n- It is a point\n- The point is _not_ part of a way or a a relation.\n\nOff by default. Can be enabled by setting this flag or by configuring.", "anyOf": [ { - "$ref": "#/definitions/default_2" + "$ref": "#/definitions/default_3" }, { "type": "boolean" @@ -357,8 +424,18 @@ "description": "In some cases, a value is represented in a certain unit (such as meters for heigt/distance/..., km/h for speed, ...)\n\nSometimes, multiple denominations are possible (e.g. km/h vs mile/h; megawatt vs kilowatt vs gigawatt for power generators, ...)\n\nThis brings in some troubles, as there are multiple ways to write it (no denomitation, 'm' vs 'meter' 'metre', ...)\n\nNot only do we want to write consistent data to OSM, we also want to present this consistently to the user.\nThis is handled by defining units.\n\n# Rendering\n\nTo render a value with long (human) denomination, use {canonical(key)}\n\n# Usage\n\nFirst of all, you define which keys have units applied, for example:\n\n```\nunits: [\n appliesTo: [\"maxspeed\", \"maxspeed:hgv\", \"maxspeed:bus\"]\n applicableUnits: [\n ...\n ]\n]\n```\n\nApplicableUnits defines which is the canonical extension, how it is presented to the user, ...:\n\n```\napplicableUnits: [\n{\n canonicalDenomination: \"km/h\",\n alternativeDenomination: [\"km/u\", \"kmh\", \"kph\"]\n default: true,\n human: {\n en: \"kilometer/hour\",\n nl: \"kilometer/uur\"\n },\n humanShort: {\n en: \"km/h\",\n nl: \"km/u\"\n }\n},\n{\n canoncialDenomination: \"mph\",\n ... similar for miles an hour ...\n}\n]\n```\n\n\nIf this is defined, then every key which the denominations apply to (`maxspeed`, `maxspeed:hgv` and `maxspeed:bus`) will be rewritten at the metatagging stage:\nevery value will be parsed and the canonical extension will be added add presented to the other parts of the code.\n\nAlso, if a freeform text field is used, an extra dropdown with applicable denominations will be given", "type": "array", "items": { - "$ref": "#/definitions/default_1" + "$ref": "#/definitions/default_2" } + }, + "syncSelection": { + "description": "If set, synchronizes wether or not this layer is selected.\n\nno: Do not sync at all, always revert to default\nlocal: keep selection on local storage\ntheme-only: sync via OSM, but this layer will only be toggled in this theme\nglobal: all layers with this ID will be synced accross all themes", + "enum": [ + "global", + "local", + "no", + "theme-only" + ], + "type": "string" } }, "required": [ @@ -442,15 +519,22 @@ "type": "object", "properties": { "id": { - "description": "The id of the tagrendering, should be an unique string.\nUsed to keep the translations in sync. Only used in the tagRenderings-array of a layerConfig, not requered otherwise", + "description": "The id of the tagrendering, should be an unique string.\nUsed to keep the translations in sync. Only used in the tagRenderings-array of a layerConfig, not requered otherwise.\n\nUse 'questions' to trigger the question box of this group (if a group is defined)", "type": "string" }, "group": { "description": "If 'group' is defined on many tagRenderings, these are grouped together when shown. The questions are grouped together as well.\nThe first tagRendering of a group will always be a sticky element.", "type": "string" }, + "labels": { + "description": "A list of labels. These are strings that are used for various purposes, e.g. to filter them away", + "type": "array", + "items": { + "type": "string" + } + }, "render": { - "description": "Renders this value. Note that \"{key}\"-parts are substituted by the corresponding values of the element.\nIf neither 'textFieldQuestion' nor 'mappings' are defined, this text is simply shown as default value.\n\nNote that this is a HTML-interpreted value, so you can add links as e.g. '{website}' or include images such as `This is of type A
`" + "description": "Renders this value. Note that \"{key}\"-parts are substituted by the corresponding values of the element.\nIf neither 'textFieldQuestion' nor 'mappings' are defined, this text is simply shown as default value.\n\nNote that this is a HTML-interpreted value, so you can add links as e.g. '{website}' or include images such as `This is of type A
`\ntype: rendered" }, "question": { "description": "If it turns out that this tagRendering doesn't match _any_ value, then we show this question.\nIf undefined, the question is never asked and this tagrendering is read-only" @@ -478,6 +562,9 @@ "description": "The type of the text-field, e.g. 'string', 'nat', 'float', 'date',...\nSee Docs/SpecialInputElements.md and UI/Input/ValidatedTextField.ts for supported values", "type": "string" }, + "placeholder": { + "description": "A (translated) text that is shown (as gray text) within the textfield" + }, "helperArgs": { "description": "Extra parameters to initialize the input helper arguments.\nFor semantics, see the 'SpecialInputElements.md'", "type": "array", @@ -525,7 +612,32 @@ ] }, "then": { - "description": "If the condition `if` is met, the text `then` will be rendered.\nIf not known yet, the user will be presented with `then` as an option" + "description": "If the condition `if` is met, the text `then` will be rendered.\nIf not known yet, the user will be presented with `then` as an option\nType: rendered" + }, + "icon": { + "description": "An icon supporting this mapping; typically shown pretty small\nType: icon", + "anyOf": [ + { + "type": "object", + "properties": { + "path": { + "description": "The path to the icon\nType: icon", + "type": "string" + }, + "class": { + "description": "A hint to mapcomplete on how to render this icon within the mapping.\nThis is translated to 'mapping-icon-', so defining your own in combination with a custom CSS is possible (but discouraged)", + "type": "string" + } + }, + "required": [ + "class", + "path" + ] + }, + { + "type": "string" + } + ] }, "hideInAnswer": { "description": "In some cases, multiple taggings exist (e.g. a default assumption, or a commonly mapped abbreviation and a fully written variation).\n\nIn the latter case, a correct text should be shown, but only a single, canonical tagging should be selectable by the user.\nIn this case, one of the mappings can be hiden by setting this flag.\n\nTo demonstrate an example making a default assumption:\n\nmappings: [\n {\n if: \"access=\", -- no access tag present, we assume accessible\n then: \"Accessible to the general public\",\n hideInAnswer: true\n },\n {\n if: \"access=yes\",\n then: \"Accessible to the general public\", -- the user selected this, we add that to OSM\n },\n {\n if: \"access=no\",\n then: \"Not accessible to the public\"\n }\n]\n\n\nFor example, for an operator, we have `operator=Agentschap Natuur en Bos`, which is often abbreviated to `operator=ANB`.\nThen, we would add two mappings:\n{\n if: \"operator=Agentschap Natuur en Bos\" -- the non-abbreviated version which should be uploaded\n then: \"Maintained by Agentschap Natuur en Bos\"\n},\n{\n if: \"operator=ANB\", -- we don't want to upload abbreviations\n then: \"Maintained by Agentschap Natuur en Bos\"\n hideInAnswer: true\n}\n\nHide in answer can also be a tagsfilter, e.g. to make sure an option is only shown when appropriate.\nKeep in mind that this is reverse logic: it will be hidden in the answer if the condition is true, it will thus only show in the case of a mismatch\n\ne.g., for toilets: if \"wheelchair=no\", we know there is no wheelchair dedicated room.\nFor the location of the changing table, the option \"in the wheelchair accessible toilet is weird\", so we write:\n\n{\n \"question\": \"Where is the changing table located?\"\n \"mappings\": [\n {\"if\":\"changing_table:location=female\",\"then\":\"In the female restroom\"},\n {\"if\":\"changing_table:location=male\",\"then\":\"In the male restroom\"},\n {\"if\":\"changing_table:location=wheelchair\",\"then\":\"In the wheelchair accessible restroom\", \"hideInAnswer\": \"wheelchair=no\"},\n \n ]\n}\n\nAlso have a look for the meta-tags\n{\n if: \"operator=Agentschap Natuur en Bos\",\n then: \"Maintained by Agentschap Natuur en Bos\",\n hideInAnswer: \"_country!=be\"\n}", @@ -569,7 +681,7 @@ }, "additionalProperties": false }, - "default_3": { + "default_4": { "description": "The PointRenderingConfig gives all details onto how to render a single point of a feature.\n\nThis can be used if:\n\n- The feature is a point\n- To render something at the centroid of an area, or at the start, end or projected centroid of a way", "type": "object", "properties": { @@ -577,17 +689,11 @@ "description": "All the locations that this point should be rendered at.\nUsing `location: [\"point\", \"centroid\"] will always render centerpoint", "type": "array", "items": { - "enum": [ - "centroid", - "end", - "point", - "start" - ], "type": "string" } }, "icon": { - "description": "The icon for an element.\nNote that this also doubles as the icon for this layer (rendered with the overpass-tags) ánd the icon in the presets.\n\nThe result of the icon is rendered as follows:\nthe resulting string is interpreted as a _list_ of items, separated by \";\". The bottommost layer is the first layer.\nAs a result, on could use a generic pin, then overlay it with a specific icon.\nTo make things even more practical, one can use all SVG's from the folder \"assets/svg\" and _substitute the color_ in it.\nE.g. to draw a red pin, use \"pin:#f00\", to have a green circle with your icon on top, use `circle:#0f0;`", + "description": "The icon for an element.\nNote that this also doubles as the icon for this layer (rendered with the overpass-tags) ánd the icon in the presets.\n\nThe result of the icon is rendered as follows:\nthe resulting string is interpreted as a _list_ of items, separated by \";\". The bottommost layer is the first layer.\nAs a result, on could use a generic pin, then overlay it with a specific icon.\nTo make things even more practical, one can use all SVG's from the folder \"assets/svg\" and _substitute the color_ in it.\nE.g. to draw a red pin, use \"pin:#f00\", to have a green circle with your icon on top, use `circle:#0f0;`\n\nType: icon", "anyOf": [ { "$ref": "#/definitions/TagRenderingConfigJson" @@ -614,6 +720,7 @@ ] }, "then": { + "description": "Badge to show\nType: icon", "anyOf": [ { "$ref": "#/definitions/TagRenderingConfigJson" @@ -669,7 +776,7 @@ ], "additionalProperties": false }, - "default_4": { + "default_5": { "description": "The LineRenderingConfig gives all details onto how to render a single line of a feature.\n\nThis can be used if:\n\n- The feature is a line\n- The feature is an area", "type": "object", "properties": { @@ -691,7 +798,10 @@ "$ref": "#/definitions/TagRenderingConfigJson" }, { - "type": "string" + "type": [ + "string", + "number" + ] } ] }, @@ -757,7 +867,7 @@ }, "additionalProperties": false }, - "default": { + "default_1": { "type": "object", "properties": { "id": { @@ -780,6 +890,26 @@ "type": "string" } ] + }, + "default": { + "type": "boolean" + }, + "fields": { + "type": "array", + "items": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "type": { + "type": "string" + } + }, + "required": [ + "name" + ] + } } }, "required": [ @@ -852,7 +982,7 @@ }, "additionalProperties": false }, - "default_2": { + "default_3": { "type": "object", "properties": { "enableImproveAccuracy": { @@ -866,7 +996,7 @@ }, "additionalProperties": false }, - "default_1": { + "default_2": { "type": "object", "properties": { "appliesToKey": { diff --git a/Docs/Schemas/LayerConfigJsonJSC.ts b/Docs/Schemas/LayerConfigJsonJSC.ts index 3f72a2e974..481e127360 100644 --- a/Docs/Schemas/LayerConfigJsonJSC.ts +++ b/Docs/Schemas/LayerConfigJsonJSC.ts @@ -13,7 +13,7 @@ export default { "description": "A description for this layer.\nShown in the layer selections and in the personel theme" }, "source": { - "description": "This determines where the data for the layer is fetched.\nThere are some options:\n\n# Query OSM directly\nsource: {osmTags: \"key=value\"}\n will fetch all objects with given tags from OSM.\n Currently, this will create a query to overpass and fetch the data - in the future this might fetch from the OSM API\n\n# Query OSM Via the overpass API with a custom script\nsource: {overpassScript: \"\"} when you want to do special things. _This should be really rare_.\n This means that the data will be pulled from overpass with this script, and will ignore the osmTags for the query\n However, for the rest of the pipeline, the OsmTags will _still_ be used. This is important to enable layers etc...\n\n\n# A single geojson-file\nsource: {geoJson: \"https://my.source.net/some-geo-data.geojson\"}\n fetches a geojson from a third party source\n\n# A tiled geojson source\nsource: {geoJson: \"https://my.source.net/some-tile-geojson-{layer}-{z}-{x}-{y}.geojson\", geoJsonZoomLevel: 14}\n to use a tiled geojson source. The web server must offer multiple geojsons. {z}, {x} and {y} are substituted by the location; {layer} is substituted with the id of the loaded layer\n\nSome API's use a BBOX instead of a tile, this can be used by specifying {y_min}, {y_max}, {x_min} and {x_max}\nSome API's use a mercator-projection (EPSG:900913) instead of WGS84. Set the flag `mercatorCrs: true` in the source for this\n\nNote that both geojson-options might set a flag 'isOsmCache' indicating that the data originally comes from OSM too\n\n\nNOTE: the previous format was 'overpassTags: AndOrTagConfigJson | string', which is interpreted as a shorthand for source: {osmTags: \"key=value\"}\n While still supported, this is considered deprecated", + "description": "This determines where the data for the layer is fetched: from OSM or from an external geojson dataset.\n\nIf no 'geojson' is defined, data will be fetched from overpass and the OSM-API.\n\nEvery source _must_ define which tags _must_ be present in order to be picked up.", "anyOf": [ { "allOf": [ @@ -21,6 +21,7 @@ export default { "type": "object", "properties": { "osmTags": { + "description": "Every source must set which tags have to be present in order to load the given layer.", "anyOf": [ { "$ref": "#/definitions/AndOrTagConfigJson" @@ -30,8 +31,9 @@ export default { } ] }, - "overpassScript": { - "type": "string" + "maxCacheAge": { + "description": "The maximum amount of seconds that a tile is allowed to linger in the cache", + "type": "number" } }, "required": [ @@ -41,9 +43,8 @@ export default { { "type": "object", "properties": { - "maxCacheAge": { - "description": "The maximum amount of seconds that a tile is allowed to linger in the cache", - "type": "number" + "overpassScript": { + "type": "string" } } } @@ -55,6 +56,7 @@ export default { "type": "object", "properties": { "osmTags": { + "description": "Every source must set which tags have to be present in order to load the given layer.", "anyOf": [ { "$ref": "#/definitions/AndOrTagConfigJson" @@ -64,39 +66,49 @@ export default { } ] }, - "geoJson": { - "type": "string" - }, - "geoJsonZoomLevel": { + "maxCacheAge": { + "description": "The maximum amount of seconds that a tile is allowed to linger in the cache", "type": "number" - }, - "isOsmCache": { - "type": "boolean" - }, - "mercatorCrs": { - "type": "boolean" } }, "required": [ - "geoJson", "osmTags" ] }, { "type": "object", "properties": { - "maxCacheAge": { - "description": "The maximum amount of seconds that a tile is allowed to linger in the cache", + "geoJson": { + "description": "The actual source of the data to load, if loaded via geojson.\n\n# A single geojson-file\nsource: {geoJson: \"https://my.source.net/some-geo-data.geojson\"}\n fetches a geojson from a third party source\n\n# A tiled geojson source\nsource: {geoJson: \"https://my.source.net/some-tile-geojson-{layer}-{z}-{x}-{y}.geojson\", geoJsonZoomLevel: 14}\n to use a tiled geojson source. The web server must offer multiple geojsons. {z}, {x} and {y} are substituted by the location; {layer} is substituted with the id of the loaded layer\n\nSome API's use a BBOX instead of a tile, this can be used by specifying {y_min}, {y_max}, {x_min} and {x_max}", + "type": "string" + }, + "geoJsonZoomLevel": { + "description": "To load a tiled geojson layer, set the zoomlevel of the tiles", "type": "number" + }, + "isOsmCache": { + "description": "Indicates that the upstream geojson data is OSM-derived.\nUseful for e.g. merging or for scripts generating this cache", + "type": "boolean" + }, + "mercatorCrs": { + "description": "Some API's use a mercator-projection (EPSG:900913) instead of WGS84. Set the flag `mercatorCrs: true` in the source for this", + "type": "boolean" + }, + "idKey": { + "description": "Some API's have an id-field, but give it a different name.\nSetting this key will rename this field into 'id'", + "type": "string" } - } + }, + "required": [ + "geoJson" + ] } ] } ] }, "calculatedTags": { - "description": "A list of extra tags to calculate, specified as \"keyToAssignTo=javascript-expression\".\nThere are a few extra functions available. Refer to Docs/CalculatedTags.md for more information\nThe functions will be run in order, e.g.\n[\n \"_max_overlap_m2=Math.max(...feat.overlapsWith(\"someOtherLayer\").map(o => o.overlap))\n \"_max_overlap_ratio=Number(feat._max_overlap_m2)/feat.area\n]", + "description": "A list of extra tags to calculate, specified as \"keyToAssignTo=javascript-expression\".\nThere are a few extra functions available. Refer to Docs/CalculatedTags.md for more information\nThe functions will be run in order, e.g.\n[\n \"_max_overlap_m2=Math.max(...feat.overlapsWith(\"someOtherLayer\").map(o => o.overlap))\n \"_max_overlap_ratio=Number(feat._max_overlap_m2)/feat.area\n]\n\nThe specified tags are evaluated lazily. E.g. if a calculated tag is only used in the popup (e.g. the number of nearby features),\nthe expensive calculation will only be performed then for that feature. This avoids clogging up the contributors PC when all features are loaded.\n\nIf a tag has to be evaluated strictly, use ':=' instead:\n\n[\n\"_some_key:=some_javascript_expression\"\n]", "type": "array", "items": { "type": "string" @@ -110,10 +122,18 @@ export default { "description": "This tag rendering should either be 'yes' or 'no'. If 'no' is returned, then the feature will be hidden from view.\nThis is useful to hide certain features from view.\n\nImportant: hiding features does not work dynamically, but is only calculated when the data is first renders.\nThis implies that it is not possible to hide a feature after a tagging change\n\nThe default value is 'yes'", "$ref": "#/definitions/TagRenderingConfigJson" }, + "forceLoad": { + "description": "Advanced option - might be set by the theme compiler\n\nIf true, this data will _always_ be loaded, even if the theme is disabled", + "type": "boolean" + }, "minzoom": { "description": "The minimum needed zoomlevel required before loading of the data start\nDefault: 0", "type": "number" }, + "shownByDefault": { + "description": "Indicates if this layer is shown by default;\ncan be used to hide a layer from start, or to load the layer but only to show it where appropriate (e.g. for snapping to it)", + "type": "boolean" + }, "minzoomVisible": { "description": "The zoom level at which point the data is hidden again\nDefault: 100 (thus: always visible", "type": "number" @@ -130,31 +150,55 @@ export default { ] }, "titleIcons": { - "description": "Small icons shown next to the title.\nIf not specified, the OsmLink and wikipedia links will be used by default.\nUse an empty array to hide them.\nNote that \"defaults\" will insert all the default titleIcons", - "type": "array", - "items": { - "anyOf": [ - { - "$ref": "#/definitions/TagRenderingConfigJson" - }, - { - "type": "string" + "description": "Small icons shown next to the title.\nIf not specified, the OsmLink and wikipedia links will be used by default.\nUse an empty array to hide them.\nNote that \"defaults\" will insert all the default titleIcons (which are added automatically)\n\nType: icon[]", + "anyOf": [ + { + "type": "array", + "items": { + "anyOf": [ + { + "$ref": "#/definitions/TagRenderingConfigJson" + }, + { + "type": "string" + } + ] } - ] - } + }, + { + "type": "array", + "items": [ + { + "type": "string", + "enum": [ + "defaults" + ] + } + ], + "minItems": 1, + "maxItems": 1 + } + ] }, "mapRendering": { - "type": "array", - "items": { - "anyOf": [ - { - "$ref": "#/definitions/default_3" - }, - { - "$ref": "#/definitions/default_4" + "anyOf": [ + { + "type": "array", + "items": { + "anyOf": [ + { + "$ref": "#/definitions/default_4" + }, + { + "$ref": "#/definitions/default_5" + } + ] } - ] - } + }, + { + "type": "null" + } + ] }, "passAllFeatures": { "description": "If set, this layer will pass all the features it receives onto the next layer.\nThis is ideal for decoration, e.g. directionss on cameras", @@ -179,6 +223,13 @@ export default { "description": { "description": "The _first sentence_ of the description is shown on the button of the `add` menu.\nThe full description is shown in the confirmation dialog.\n\n(The first sentence is until the first '.'-character in the description)" }, + "exampleImages": { + "description": "Example images, which show real-life pictures of what such a feature might look like\n\nType: image", + "type": "array", + "items": { + "type": "string" + } + }, "preciseInput": { "description": "If set, the user will prompted to confirm the location before actually adding the data.\nThis will be with a 'drag crosshair'-method.\n\nIf 'preferredBackgroundCategory' is set, the element will attempt to pick a background layer of that category.", "anyOf": [ @@ -262,25 +313,26 @@ export default { "type": "object", "properties": { "rewrite": { - "type": "array", - "items": { - "type": "object", - "properties": { - "sourceString": { + "type": "object", + "properties": { + "sourceString": { + "type": "array", + "items": { "type": "string" - }, - "into": { - "type": "array", - "items": { - "type": "string" - } } }, - "required": [ - "into", - "sourceString" - ] - } + "into": { + "type": "array", + "items": { + "type": "array", + "items": {} + } + } + }, + "required": [ + "into", + "sourceString" + ] }, "renderings": { "type": "array", @@ -322,10 +374,25 @@ export default { }, "filter": { "description": "All the extra questions for filtering", - "type": "array", - "items": { - "$ref": "#/definitions/default" - } + "anyOf": [ + { + "type": "array", + "items": { + "$ref": "#/definitions/default_1" + } + }, + { + "type": "object", + "properties": { + "sameAs": { + "type": "string" + } + }, + "required": [ + "sameAs" + ] + } + ] }, "deletion": { "description": "This block defines under what circumstances the delete dialog is shown for objects of this layer.\nIf set, a dialog is shown to the user to (soft) delete the point.\nThe dialog is built to be user friendly and to prevent mistakes.\nIf deletion is not possible, the dialog will hide itself and show the reason of non-deletability instead.\n\nTo configure, the following values are possible:\n\n- false: never ever show the delete button\n- true: show the default delete button\n- undefined: use the mapcomplete default to show deletion or not. Currently, this is the same as 'false' but this will change in the future\n- or: a hash with options (see below)\n\n The delete dialog\n =================\n\n\n\n#### Hard deletion if enough experience\n\nA feature can only be deleted from OpenStreetMap by mapcomplete if:\n\n- It is a node\n- No ways or relations use the node\n- The logged-in user has enough experience OR the user is the only one to have edited the point previously\n- The logged-in user has no unread messages (or has a ton of experience)\n- The user did not select one of the 'non-delete-options' (see below)\n\nIn all other cases, a 'soft deletion' is used.\n\n#### Soft deletion\n\nA 'soft deletion' is when the point isn't deleted from OSM but retagged so that it'll won't how up in the mapcomplete theme anymore.\nThis makes it look like it was deleted, without doing damage. A fixme will be added to the point.\n\nNote that a soft deletion is _only_ possible if these tags are provided by the theme creator, as they'll be different for every theme\n\n#### No-delete options\n\nIn some cases, the contributor might want to delete something for the wrong reason (e.g. someone who wants to have a path removed \"because the path is on their private property\").\nHowever, the path exists in reality and should thus be on OSM - otherwise the next contributor will pass by and notice \"hey, there is a path missing here! Let me redraw it in OSM!)\n\nThe correct approach is to retag the feature in such a way that it is semantically correct *and* that it doesn't show up on the theme anymore.\nA no-delete option is offered as 'reason to delete it', but secretly retags.", @@ -342,7 +409,7 @@ export default { "description": "Indicates if a point can be moved and configures the modalities.\n\nA feature can be moved by MapComplete if:\n\n- It is a point\n- The point is _not_ part of a way or a a relation.\n\nOff by default. Can be enabled by setting this flag or by configuring.", "anyOf": [ { - "$ref": "#/definitions/default_2" + "$ref": "#/definitions/default_3" }, { "type": "boolean" @@ -357,8 +424,18 @@ export default { "description": "In some cases, a value is represented in a certain unit (such as meters for heigt/distance/..., km/h for speed, ...)\n\nSometimes, multiple denominations are possible (e.g. km/h vs mile/h; megawatt vs kilowatt vs gigawatt for power generators, ...)\n\nThis brings in some troubles, as there are multiple ways to write it (no denomitation, 'm' vs 'meter' 'metre', ...)\n\nNot only do we want to write consistent data to OSM, we also want to present this consistently to the user.\nThis is handled by defining units.\n\n# Rendering\n\nTo render a value with long (human) denomination, use {canonical(key)}\n\n# Usage\n\nFirst of all, you define which keys have units applied, for example:\n\n```\nunits: [\n appliesTo: [\"maxspeed\", \"maxspeed:hgv\", \"maxspeed:bus\"]\n applicableUnits: [\n ...\n ]\n]\n```\n\nApplicableUnits defines which is the canonical extension, how it is presented to the user, ...:\n\n```\napplicableUnits: [\n{\n canonicalDenomination: \"km/h\",\n alternativeDenomination: [\"km/u\", \"kmh\", \"kph\"]\n default: true,\n human: {\n en: \"kilometer/hour\",\n nl: \"kilometer/uur\"\n },\n humanShort: {\n en: \"km/h\",\n nl: \"km/u\"\n }\n},\n{\n canoncialDenomination: \"mph\",\n ... similar for miles an hour ...\n}\n]\n```\n\n\nIf this is defined, then every key which the denominations apply to (`maxspeed`, `maxspeed:hgv` and `maxspeed:bus`) will be rewritten at the metatagging stage:\nevery value will be parsed and the canonical extension will be added add presented to the other parts of the code.\n\nAlso, if a freeform text field is used, an extra dropdown with applicable denominations will be given", "type": "array", "items": { - "$ref": "#/definitions/default_1" + "$ref": "#/definitions/default_2" } + }, + "syncSelection": { + "description": "If set, synchronizes wether or not this layer is selected.\n\nno: Do not sync at all, always revert to default\nlocal: keep selection on local storage\ntheme-only: sync via OSM, but this layer will only be toggled in this theme\nglobal: all layers with this ID will be synced accross all themes", + "enum": [ + "global", + "local", + "no", + "theme-only" + ], + "type": "string" } }, "required": [ @@ -440,15 +517,22 @@ export default { "type": "object", "properties": { "id": { - "description": "The id of the tagrendering, should be an unique string.\nUsed to keep the translations in sync. Only used in the tagRenderings-array of a layerConfig, not requered otherwise", + "description": "The id of the tagrendering, should be an unique string.\nUsed to keep the translations in sync. Only used in the tagRenderings-array of a layerConfig, not requered otherwise.\n\nUse 'questions' to trigger the question box of this group (if a group is defined)", "type": "string" }, "group": { "description": "If 'group' is defined on many tagRenderings, these are grouped together when shown. The questions are grouped together as well.\nThe first tagRendering of a group will always be a sticky element.", "type": "string" }, + "labels": { + "description": "A list of labels. These are strings that are used for various purposes, e.g. to filter them away", + "type": "array", + "items": { + "type": "string" + } + }, "render": { - "description": "Renders this value. Note that \"{key}\"-parts are substituted by the corresponding values of the element.\nIf neither 'textFieldQuestion' nor 'mappings' are defined, this text is simply shown as default value.\n\nNote that this is a HTML-interpreted value, so you can add links as e.g. '{website}' or include images such as `This is of type A
`" + "description": "Renders this value. Note that \"{key}\"-parts are substituted by the corresponding values of the element.\nIf neither 'textFieldQuestion' nor 'mappings' are defined, this text is simply shown as default value.\n\nNote that this is a HTML-interpreted value, so you can add links as e.g. '{website}' or include images such as `This is of type A
`\ntype: rendered" }, "question": { "description": "If it turns out that this tagRendering doesn't match _any_ value, then we show this question.\nIf undefined, the question is never asked and this tagrendering is read-only" @@ -476,6 +560,9 @@ export default { "description": "The type of the text-field, e.g. 'string', 'nat', 'float', 'date',...\nSee Docs/SpecialInputElements.md and UI/Input/ValidatedTextField.ts for supported values", "type": "string" }, + "placeholder": { + "description": "A (translated) text that is shown (as gray text) within the textfield" + }, "helperArgs": { "description": "Extra parameters to initialize the input helper arguments.\nFor semantics, see the 'SpecialInputElements.md'", "type": "array", @@ -523,7 +610,32 @@ export default { ] }, "then": { - "description": "If the condition `if` is met, the text `then` will be rendered.\nIf not known yet, the user will be presented with `then` as an option" + "description": "If the condition `if` is met, the text `then` will be rendered.\nIf not known yet, the user will be presented with `then` as an option\nType: rendered" + }, + "icon": { + "description": "An icon supporting this mapping; typically shown pretty small\nType: icon", + "anyOf": [ + { + "type": "object", + "properties": { + "path": { + "description": "The path to the icon\nType: icon", + "type": "string" + }, + "class": { + "description": "A hint to mapcomplete on how to render this icon within the mapping.\nThis is translated to 'mapping-icon-', so defining your own in combination with a custom CSS is possible (but discouraged)", + "type": "string" + } + }, + "required": [ + "class", + "path" + ] + }, + { + "type": "string" + } + ] }, "hideInAnswer": { "description": "In some cases, multiple taggings exist (e.g. a default assumption, or a commonly mapped abbreviation and a fully written variation).\n\nIn the latter case, a correct text should be shown, but only a single, canonical tagging should be selectable by the user.\nIn this case, one of the mappings can be hiden by setting this flag.\n\nTo demonstrate an example making a default assumption:\n\nmappings: [\n {\n if: \"access=\", -- no access tag present, we assume accessible\n then: \"Accessible to the general public\",\n hideInAnswer: true\n },\n {\n if: \"access=yes\",\n then: \"Accessible to the general public\", -- the user selected this, we add that to OSM\n },\n {\n if: \"access=no\",\n then: \"Not accessible to the public\"\n }\n]\n\n\nFor example, for an operator, we have `operator=Agentschap Natuur en Bos`, which is often abbreviated to `operator=ANB`.\nThen, we would add two mappings:\n{\n if: \"operator=Agentschap Natuur en Bos\" -- the non-abbreviated version which should be uploaded\n then: \"Maintained by Agentschap Natuur en Bos\"\n},\n{\n if: \"operator=ANB\", -- we don't want to upload abbreviations\n then: \"Maintained by Agentschap Natuur en Bos\"\n hideInAnswer: true\n}\n\nHide in answer can also be a tagsfilter, e.g. to make sure an option is only shown when appropriate.\nKeep in mind that this is reverse logic: it will be hidden in the answer if the condition is true, it will thus only show in the case of a mismatch\n\ne.g., for toilets: if \"wheelchair=no\", we know there is no wheelchair dedicated room.\nFor the location of the changing table, the option \"in the wheelchair accessible toilet is weird\", so we write:\n\n{\n \"question\": \"Where is the changing table located?\"\n \"mappings\": [\n {\"if\":\"changing_table:location=female\",\"then\":\"In the female restroom\"},\n {\"if\":\"changing_table:location=male\",\"then\":\"In the male restroom\"},\n {\"if\":\"changing_table:location=wheelchair\",\"then\":\"In the wheelchair accessible restroom\", \"hideInAnswer\": \"wheelchair=no\"},\n \n ]\n}\n\nAlso have a look for the meta-tags\n{\n if: \"operator=Agentschap Natuur en Bos\",\n then: \"Maintained by Agentschap Natuur en Bos\",\n hideInAnswer: \"_country!=be\"\n}", @@ -566,7 +678,7 @@ export default { } } }, - "default_3": { + "default_4": { "description": "The PointRenderingConfig gives all details onto how to render a single point of a feature.\n\nThis can be used if:\n\n- The feature is a point\n- To render something at the centroid of an area, or at the start, end or projected centroid of a way", "type": "object", "properties": { @@ -574,17 +686,11 @@ export default { "description": "All the locations that this point should be rendered at.\nUsing `location: [\"point\", \"centroid\"] will always render centerpoint", "type": "array", "items": { - "enum": [ - "centroid", - "end", - "point", - "start" - ], "type": "string" } }, "icon": { - "description": "The icon for an element.\nNote that this also doubles as the icon for this layer (rendered with the overpass-tags) ánd the icon in the presets.\n\nThe result of the icon is rendered as follows:\nthe resulting string is interpreted as a _list_ of items, separated by \";\". The bottommost layer is the first layer.\nAs a result, on could use a generic pin, then overlay it with a specific icon.\nTo make things even more practical, one can use all SVG's from the folder \"assets/svg\" and _substitute the color_ in it.\nE.g. to draw a red pin, use \"pin:#f00\", to have a green circle with your icon on top, use `circle:#0f0;`", + "description": "The icon for an element.\nNote that this also doubles as the icon for this layer (rendered with the overpass-tags) ánd the icon in the presets.\n\nThe result of the icon is rendered as follows:\nthe resulting string is interpreted as a _list_ of items, separated by \";\". The bottommost layer is the first layer.\nAs a result, on could use a generic pin, then overlay it with a specific icon.\nTo make things even more practical, one can use all SVG's from the folder \"assets/svg\" and _substitute the color_ in it.\nE.g. to draw a red pin, use \"pin:#f00\", to have a green circle with your icon on top, use `circle:#0f0;`\n\nType: icon", "anyOf": [ { "$ref": "#/definitions/TagRenderingConfigJson" @@ -611,6 +717,7 @@ export default { ] }, "then": { + "description": "Badge to show\nType: icon", "anyOf": [ { "$ref": "#/definitions/TagRenderingConfigJson" @@ -665,7 +772,7 @@ export default { "location" ] }, - "default_4": { + "default_5": { "description": "The LineRenderingConfig gives all details onto how to render a single line of a feature.\n\nThis can be used if:\n\n- The feature is a line\n- The feature is an area", "type": "object", "properties": { @@ -687,7 +794,10 @@ export default { "$ref": "#/definitions/TagRenderingConfigJson" }, { - "type": "string" + "type": [ + "string", + "number" + ] } ] }, @@ -752,7 +862,7 @@ export default { } } }, - "default": { + "default_1": { "type": "object", "properties": { "id": { @@ -775,6 +885,26 @@ export default { "type": "string" } ] + }, + "default": { + "type": "boolean" + }, + "fields": { + "type": "array", + "items": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "type": { + "type": "string" + } + }, + "required": [ + "name" + ] + } } }, "required": [ @@ -845,7 +975,7 @@ export default { } } }, - "default_2": { + "default_3": { "type": "object", "properties": { "enableImproveAccuracy": { @@ -858,7 +988,7 @@ export default { } } }, - "default_1": { + "default_2": { "type": "object", "properties": { "appliesToKey": { diff --git a/Docs/Schemas/LayoutConfigJson.schema.json b/Docs/Schemas/LayoutConfigJson.schema.json index 0acf04ad5d..362a59e45a 100644 --- a/Docs/Schemas/LayoutConfigJson.schema.json +++ b/Docs/Schemas/LayoutConfigJson.schema.json @@ -11,36 +11,22 @@ "type": "string" }, "maintainer": { - "description": "Who does maintian this preset?", + "description": "Who does maintain this preset?", "type": "string" }, "version": { "description": "A version number, either semantically or by date.\nShould be sortable, where the higher value is the later version", "type": "string" }, - "language": { - "description": "The supported language(s).\nThis should be a two-letter, lowercase code which identifies the language, e.g. \"en\", \"nl\", ...\nIf the theme supports multiple languages, use a list: `[\"en\",\"nl\",\"fr\"]` to allow the user to pick any of them", - "anyOf": [ - { - "type": "array", - "items": { - "type": "string" - } - }, - { - "type": "string" - } - ] - }, "mustHaveLanguage": { - "description": "Only used in 'generateLayerOverview': if present, every translation will be checked to make sure it is fully translated", + "description": "Only used in 'generateLayerOverview': if present, every translation will be checked to make sure it is fully translated.\n\nThis must be a list of two-letter, lowercase codes which identifies the language, e.g. \"en\", \"nl\", ...", "type": "array", "items": { "type": "string" } }, "title": { - "description": "The title, as shown in the welcome message and the more-screen" + "description": "The title, as shown in the welcome message and the more-screen." }, "shortDescription": { "description": "A short description, showed as social description and in the 'more theme'-buttons.\nNote that if this one is not defined, the first sentence of 'description' is used" @@ -52,11 +38,11 @@ "description": "A part of the description, shown under the login-button." }, "icon": { - "description": "The icon representing this theme.\nUsed as logo in the more-screen and (for official themes) as favicon, webmanifest logo, ...\nEither a URL or a base64 encoded value (which should include 'data:image/svg+xml;base64)", + "description": "The icon representing this theme.\nUsed as logo in the more-screen and (for official themes) as favicon, webmanifest logo, ...\nEither a URL or a base64 encoded value (which should include 'data:image/svg+xml;base64)\n\nType: icon", "type": "string" }, "socialImage": { - "description": "Link to a 'social image' which is included as og:image-tag on official themes.\nUseful to share the theme on social media.\nSee https://www.h3xed.com/web-and-internet/how-to-use-og-image-meta-tag-facebook-reddit for more information", + "description": "Link to a 'social image' which is included as og:image-tag on official themes.\nUseful to share the theme on social media.\nSee https://www.h3xed.com/web-and-internet/how-to-use-og-image-meta-tag-facebook-reddit for more information$\n\nType: image", "type": "string" }, "startZoom": { @@ -92,7 +78,7 @@ "description": "Define some (overlay) slippy map tilesources", "type": "array", "items": { - "$ref": "#/definitions/default_5" + "$ref": "#/definitions/default_6" } }, "layers": { @@ -119,7 +105,14 @@ } ] }, - "override": {} + "override": {}, + "hideTagRenderingsWithLabels": { + "description": "TagRenderings with any of these labels will be removed from the layer.\nNote that the 'id' and 'group' are considered labels too", + "type": "array", + "items": { + "type": "string" + } + } }, "required": [ "builtin", @@ -134,17 +127,27 @@ }, "clustering": { "description": "If defined, data will be clustered.\nDefaults to {maxZoom: 16, minNeeded: 500}", - "type": "object", - "properties": { - "maxZoom": { - "description": "All zoom levels above 'maxzoom' are not clustered anymore.\nDefaults to 18", - "type": "number" + "anyOf": [ + { + "type": "object", + "properties": { + "maxZoom": { + "description": "All zoom levels above 'maxzoom' are not clustered anymore.\nDefaults to 18", + "type": "number" + }, + "minNeededElements": { + "description": "The number of elements per tile needed to start clustering\nIf clustering is defined, defaults to 250", + "type": "number" + } + } }, - "minNeededElements": { - "description": "The number of elements per tile needed to start clustering\nIf clustering is defined, defaults to 25", - "type": "number" + { + "enum": [ + false + ], + "type": "boolean" } - } + ] }, "customCss": { "description": "The URL of a custom CSS stylesheet to modify the layout", @@ -155,7 +158,7 @@ "type": "boolean" }, "lockLocation": { - "description": "If set to true, the basemap will not scroll outside of the area visible on initial zoom.\nIf set to [[lat0, lon0], [lat1, lon1]], the map will not scroll outside of those bounds.\nOff by default, which will enable panning to the entire world", + "description": "If set to true, the basemap will not scroll outside of the area visible on initial zoom.\nIf set to [[lon, lat], [lon, lat]], the map will not scroll outside of those bounds.\nOff by default, which will enable panning to the entire world", "anyOf": [ { "type": "array", @@ -198,46 +201,59 @@ "type": "number" } } - }, - { - "type": "boolean" } ] }, + "extraLink": { + "description": "Adds an additional button on the top-left of the application.\nThis can link to an arbitrary location.\n\nNote that {lat},{lon},{zoom}, {language} and {theme} will be replaced\n\nDefault: {icon: \"./assets/svg/pop-out.svg\", href: 'https://mapcomplete.osm.be/{theme}.html?lat={lat}&lon={lon}&z={zoom}, requirements: [\"iframe\",\"no-welcome-message]},", + "$ref": "#/definitions/default" + }, "enableUserBadge": { + "description": "If set to false, disables logging in.\nThe userbadge will be hidden, all login-buttons will be hidden and editing will be disabled", "type": "boolean" }, "enableShareScreen": { + "description": "If false, hides the tab 'share'-tab in the welcomeMessage", "type": "boolean" }, "enableMoreQuests": { + "description": "Hides the tab with more themes in the welcomeMessage", "type": "boolean" }, "enableLayers": { + "description": "If false, the layer selection/filter view will be hidden\nThe corresponding URL-parameter is 'fs-filters' instead of 'fs-layers'", "type": "boolean" }, "enableSearch": { + "description": "If set to false, hides the search bar", "type": "boolean" }, "enableAddNewPoints": { + "description": "If set to false, the ability to add new points or nodes will be disabled.\nEditing already existing features will still be possible", "type": "boolean" }, "enableGeolocation": { + "description": "If set to false, the 'geolocation'-button will be hidden.", "type": "boolean" }, "enableBackgroundLayerSelection": { + "description": "Enable switching the backgroundlayer.\nIf false, the quickswitch-buttons are removed (bottom left) and the dropdown in the layer selection is removed as well", "type": "boolean" }, "enableShowAllQuestions": { + "description": "If set to true, will show _all_ unanswered questions in a popup instead of just the next one", "type": "boolean" }, "enableDownload": { + "description": "If set to true, download button for the data will be shown (offers downloading as geojson and csv)", "type": "boolean" }, "enablePdfDownload": { + "description": "If set to true, exporting a pdf is enabled", "type": "boolean" }, - "enableIframePopout": { + "enableNoteImports": { + "description": "If true, notes will be loaded and parsed. If a note is an import (as created by the import_helper.html-tool from mapcomplete),\nthese notes will be shown if a relevant layer is present.", "type": "boolean" }, "overpassUrl": { @@ -263,7 +279,6 @@ "description", "icon", "id", - "language", "layers", "maintainer", "startLat", @@ -348,15 +363,22 @@ "type": "object", "properties": { "id": { - "description": "The id of the tagrendering, should be an unique string.\nUsed to keep the translations in sync. Only used in the tagRenderings-array of a layerConfig, not requered otherwise", + "description": "The id of the tagrendering, should be an unique string.\nUsed to keep the translations in sync. Only used in the tagRenderings-array of a layerConfig, not requered otherwise.\n\nUse 'questions' to trigger the question box of this group (if a group is defined)", "type": "string" }, "group": { "description": "If 'group' is defined on many tagRenderings, these are grouped together when shown. The questions are grouped together as well.\nThe first tagRendering of a group will always be a sticky element.", "type": "string" }, + "labels": { + "description": "A list of labels. These are strings that are used for various purposes, e.g. to filter them away", + "type": "array", + "items": { + "type": "string" + } + }, "render": { - "description": "Renders this value. Note that \"{key}\"-parts are substituted by the corresponding values of the element.\nIf neither 'textFieldQuestion' nor 'mappings' are defined, this text is simply shown as default value.\n\nNote that this is a HTML-interpreted value, so you can add links as e.g. '{website}' or include images such as `This is of type A
`" + "description": "Renders this value. Note that \"{key}\"-parts are substituted by the corresponding values of the element.\nIf neither 'textFieldQuestion' nor 'mappings' are defined, this text is simply shown as default value.\n\nNote that this is a HTML-interpreted value, so you can add links as e.g. '{website}' or include images such as `This is of type A
`\ntype: rendered" }, "question": { "description": "If it turns out that this tagRendering doesn't match _any_ value, then we show this question.\nIf undefined, the question is never asked and this tagrendering is read-only" @@ -384,6 +406,9 @@ "description": "The type of the text-field, e.g. 'string', 'nat', 'float', 'date',...\nSee Docs/SpecialInputElements.md and UI/Input/ValidatedTextField.ts for supported values", "type": "string" }, + "placeholder": { + "description": "A (translated) text that is shown (as gray text) within the textfield" + }, "helperArgs": { "description": "Extra parameters to initialize the input helper arguments.\nFor semantics, see the 'SpecialInputElements.md'", "type": "array", @@ -431,7 +456,32 @@ ] }, "then": { - "description": "If the condition `if` is met, the text `then` will be rendered.\nIf not known yet, the user will be presented with `then` as an option" + "description": "If the condition `if` is met, the text `then` will be rendered.\nIf not known yet, the user will be presented with `then` as an option\nType: rendered" + }, + "icon": { + "description": "An icon supporting this mapping; typically shown pretty small\nType: icon", + "anyOf": [ + { + "type": "object", + "properties": { + "path": { + "description": "The path to the icon\nType: icon", + "type": "string" + }, + "class": { + "description": "A hint to mapcomplete on how to render this icon within the mapping.\nThis is translated to 'mapping-icon-', so defining your own in combination with a custom CSS is possible (but discouraged)", + "type": "string" + } + }, + "required": [ + "class", + "path" + ] + }, + { + "type": "string" + } + ] }, "hideInAnswer": { "description": "In some cases, multiple taggings exist (e.g. a default assumption, or a commonly mapped abbreviation and a fully written variation).\n\nIn the latter case, a correct text should be shown, but only a single, canonical tagging should be selectable by the user.\nIn this case, one of the mappings can be hiden by setting this flag.\n\nTo demonstrate an example making a default assumption:\n\nmappings: [\n {\n if: \"access=\", -- no access tag present, we assume accessible\n then: \"Accessible to the general public\",\n hideInAnswer: true\n },\n {\n if: \"access=yes\",\n then: \"Accessible to the general public\", -- the user selected this, we add that to OSM\n },\n {\n if: \"access=no\",\n then: \"Not accessible to the public\"\n }\n]\n\n\nFor example, for an operator, we have `operator=Agentschap Natuur en Bos`, which is often abbreviated to `operator=ANB`.\nThen, we would add two mappings:\n{\n if: \"operator=Agentschap Natuur en Bos\" -- the non-abbreviated version which should be uploaded\n then: \"Maintained by Agentschap Natuur en Bos\"\n},\n{\n if: \"operator=ANB\", -- we don't want to upload abbreviations\n then: \"Maintained by Agentschap Natuur en Bos\"\n hideInAnswer: true\n}\n\nHide in answer can also be a tagsfilter, e.g. to make sure an option is only shown when appropriate.\nKeep in mind that this is reverse logic: it will be hidden in the answer if the condition is true, it will thus only show in the case of a mismatch\n\ne.g., for toilets: if \"wheelchair=no\", we know there is no wheelchair dedicated room.\nFor the location of the changing table, the option \"in the wheelchair accessible toilet is weird\", so we write:\n\n{\n \"question\": \"Where is the changing table located?\"\n \"mappings\": [\n {\"if\":\"changing_table:location=female\",\"then\":\"In the female restroom\"},\n {\"if\":\"changing_table:location=male\",\"then\":\"In the male restroom\"},\n {\"if\":\"changing_table:location=wheelchair\",\"then\":\"In the wheelchair accessible restroom\", \"hideInAnswer\": \"wheelchair=no\"},\n \n ]\n}\n\nAlso have a look for the meta-tags\n{\n if: \"operator=Agentschap Natuur en Bos\",\n then: \"Maintained by Agentschap Natuur en Bos\",\n hideInAnswer: \"_country!=be\"\n}", @@ -475,7 +525,7 @@ }, "additionalProperties": false }, - "default_3": { + "default_4": { "description": "The PointRenderingConfig gives all details onto how to render a single point of a feature.\n\nThis can be used if:\n\n- The feature is a point\n- To render something at the centroid of an area, or at the start, end or projected centroid of a way", "type": "object", "properties": { @@ -483,17 +533,11 @@ "description": "All the locations that this point should be rendered at.\nUsing `location: [\"point\", \"centroid\"] will always render centerpoint", "type": "array", "items": { - "enum": [ - "centroid", - "end", - "point", - "start" - ], "type": "string" } }, "icon": { - "description": "The icon for an element.\nNote that this also doubles as the icon for this layer (rendered with the overpass-tags) ánd the icon in the presets.\n\nThe result of the icon is rendered as follows:\nthe resulting string is interpreted as a _list_ of items, separated by \";\". The bottommost layer is the first layer.\nAs a result, on could use a generic pin, then overlay it with a specific icon.\nTo make things even more practical, one can use all SVG's from the folder \"assets/svg\" and _substitute the color_ in it.\nE.g. to draw a red pin, use \"pin:#f00\", to have a green circle with your icon on top, use `circle:#0f0;`", + "description": "The icon for an element.\nNote that this also doubles as the icon for this layer (rendered with the overpass-tags) ánd the icon in the presets.\n\nThe result of the icon is rendered as follows:\nthe resulting string is interpreted as a _list_ of items, separated by \";\". The bottommost layer is the first layer.\nAs a result, on could use a generic pin, then overlay it with a specific icon.\nTo make things even more practical, one can use all SVG's from the folder \"assets/svg\" and _substitute the color_ in it.\nE.g. to draw a red pin, use \"pin:#f00\", to have a green circle with your icon on top, use `circle:#0f0;`\n\nType: icon", "anyOf": [ { "$ref": "#/definitions/TagRenderingConfigJson" @@ -520,6 +564,7 @@ ] }, "then": { + "description": "Badge to show\nType: icon", "anyOf": [ { "$ref": "#/definitions/TagRenderingConfigJson" @@ -575,7 +620,7 @@ ], "additionalProperties": false }, - "default_4": { + "default_5": { "description": "The LineRenderingConfig gives all details onto how to render a single line of a feature.\n\nThis can be used if:\n\n- The feature is a line\n- The feature is an area", "type": "object", "properties": { @@ -597,7 +642,10 @@ "$ref": "#/definitions/TagRenderingConfigJson" }, { - "type": "string" + "type": [ + "string", + "number" + ] } ] }, @@ -663,7 +711,7 @@ }, "additionalProperties": false }, - "default": { + "default_1": { "type": "object", "properties": { "id": { @@ -686,6 +734,26 @@ "type": "string" } ] + }, + "default": { + "type": "boolean" + }, + "fields": { + "type": "array", + "items": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "type": { + "type": "string" + } + }, + "required": [ + "name" + ] + } } }, "required": [ @@ -758,7 +826,7 @@ }, "additionalProperties": false }, - "default_2": { + "default_3": { "type": "object", "properties": { "enableImproveAccuracy": { @@ -772,7 +840,7 @@ }, "additionalProperties": false }, - "default_1": { + "default_2": { "type": "object", "properties": { "appliesToKey": { @@ -800,7 +868,7 @@ ], "additionalProperties": false }, - "default_5": { + "default_6": { "description": "Configuration for a tilesource config", "type": "object", "properties": { @@ -854,7 +922,7 @@ "description": "A description for this layer.\nShown in the layer selections and in the personel theme" }, "source": { - "description": "This determines where the data for the layer is fetched.\nThere are some options:\n\n# Query OSM directly\nsource: {osmTags: \"key=value\"}\n will fetch all objects with given tags from OSM.\n Currently, this will create a query to overpass and fetch the data - in the future this might fetch from the OSM API\n\n# Query OSM Via the overpass API with a custom script\nsource: {overpassScript: \"\"} when you want to do special things. _This should be really rare_.\n This means that the data will be pulled from overpass with this script, and will ignore the osmTags for the query\n However, for the rest of the pipeline, the OsmTags will _still_ be used. This is important to enable layers etc...\n\n\n# A single geojson-file\nsource: {geoJson: \"https://my.source.net/some-geo-data.geojson\"}\n fetches a geojson from a third party source\n\n# A tiled geojson source\nsource: {geoJson: \"https://my.source.net/some-tile-geojson-{layer}-{z}-{x}-{y}.geojson\", geoJsonZoomLevel: 14}\n to use a tiled geojson source. The web server must offer multiple geojsons. {z}, {x} and {y} are substituted by the location; {layer} is substituted with the id of the loaded layer\n\nSome API's use a BBOX instead of a tile, this can be used by specifying {y_min}, {y_max}, {x_min} and {x_max}\nSome API's use a mercator-projection (EPSG:900913) instead of WGS84. Set the flag `mercatorCrs: true` in the source for this\n\nNote that both geojson-options might set a flag 'isOsmCache' indicating that the data originally comes from OSM too\n\n\nNOTE: the previous format was 'overpassTags: AndOrTagConfigJson | string', which is interpreted as a shorthand for source: {osmTags: \"key=value\"}\n While still supported, this is considered deprecated", + "description": "This determines where the data for the layer is fetched: from OSM or from an external geojson dataset.\n\nIf no 'geojson' is defined, data will be fetched from overpass and the OSM-API.\n\nEvery source _must_ define which tags _must_ be present in order to be picked up.", "anyOf": [ { "allOf": [ @@ -862,6 +930,7 @@ "type": "object", "properties": { "osmTags": { + "description": "Every source must set which tags have to be present in order to load the given layer.", "anyOf": [ { "$ref": "#/definitions/AndOrTagConfigJson" @@ -871,8 +940,9 @@ } ] }, - "overpassScript": { - "type": "string" + "maxCacheAge": { + "description": "The maximum amount of seconds that a tile is allowed to linger in the cache", + "type": "number" } }, "required": [ @@ -882,9 +952,8 @@ { "type": "object", "properties": { - "maxCacheAge": { - "description": "The maximum amount of seconds that a tile is allowed to linger in the cache", - "type": "number" + "overpassScript": { + "type": "string" } } } @@ -896,6 +965,7 @@ "type": "object", "properties": { "osmTags": { + "description": "Every source must set which tags have to be present in order to load the given layer.", "anyOf": [ { "$ref": "#/definitions/AndOrTagConfigJson" @@ -905,39 +975,49 @@ } ] }, - "geoJson": { - "type": "string" - }, - "geoJsonZoomLevel": { + "maxCacheAge": { + "description": "The maximum amount of seconds that a tile is allowed to linger in the cache", "type": "number" - }, - "isOsmCache": { - "type": "boolean" - }, - "mercatorCrs": { - "type": "boolean" } }, "required": [ - "geoJson", "osmTags" ] }, { "type": "object", "properties": { - "maxCacheAge": { - "description": "The maximum amount of seconds that a tile is allowed to linger in the cache", + "geoJson": { + "description": "The actual source of the data to load, if loaded via geojson.\n\n# A single geojson-file\nsource: {geoJson: \"https://my.source.net/some-geo-data.geojson\"}\n fetches a geojson from a third party source\n\n# A tiled geojson source\nsource: {geoJson: \"https://my.source.net/some-tile-geojson-{layer}-{z}-{x}-{y}.geojson\", geoJsonZoomLevel: 14}\n to use a tiled geojson source. The web server must offer multiple geojsons. {z}, {x} and {y} are substituted by the location; {layer} is substituted with the id of the loaded layer\n\nSome API's use a BBOX instead of a tile, this can be used by specifying {y_min}, {y_max}, {x_min} and {x_max}", + "type": "string" + }, + "geoJsonZoomLevel": { + "description": "To load a tiled geojson layer, set the zoomlevel of the tiles", "type": "number" + }, + "isOsmCache": { + "description": "Indicates that the upstream geojson data is OSM-derived.\nUseful for e.g. merging or for scripts generating this cache", + "type": "boolean" + }, + "mercatorCrs": { + "description": "Some API's use a mercator-projection (EPSG:900913) instead of WGS84. Set the flag `mercatorCrs: true` in the source for this", + "type": "boolean" + }, + "idKey": { + "description": "Some API's have an id-field, but give it a different name.\nSetting this key will rename this field into 'id'", + "type": "string" } - } + }, + "required": [ + "geoJson" + ] } ] } ] }, "calculatedTags": { - "description": "A list of extra tags to calculate, specified as \"keyToAssignTo=javascript-expression\".\nThere are a few extra functions available. Refer to Docs/CalculatedTags.md for more information\nThe functions will be run in order, e.g.\n[\n \"_max_overlap_m2=Math.max(...feat.overlapsWith(\"someOtherLayer\").map(o => o.overlap))\n \"_max_overlap_ratio=Number(feat._max_overlap_m2)/feat.area\n]", + "description": "A list of extra tags to calculate, specified as \"keyToAssignTo=javascript-expression\".\nThere are a few extra functions available. Refer to Docs/CalculatedTags.md for more information\nThe functions will be run in order, e.g.\n[\n \"_max_overlap_m2=Math.max(...feat.overlapsWith(\"someOtherLayer\").map(o => o.overlap))\n \"_max_overlap_ratio=Number(feat._max_overlap_m2)/feat.area\n]\n\nThe specified tags are evaluated lazily. E.g. if a calculated tag is only used in the popup (e.g. the number of nearby features),\nthe expensive calculation will only be performed then for that feature. This avoids clogging up the contributors PC when all features are loaded.\n\nIf a tag has to be evaluated strictly, use ':=' instead:\n\n[\n\"_some_key:=some_javascript_expression\"\n]", "type": "array", "items": { "type": "string" @@ -951,10 +1031,18 @@ "description": "This tag rendering should either be 'yes' or 'no'. If 'no' is returned, then the feature will be hidden from view.\nThis is useful to hide certain features from view.\n\nImportant: hiding features does not work dynamically, but is only calculated when the data is first renders.\nThis implies that it is not possible to hide a feature after a tagging change\n\nThe default value is 'yes'", "$ref": "#/definitions/TagRenderingConfigJson" }, + "forceLoad": { + "description": "Advanced option - might be set by the theme compiler\n\nIf true, this data will _always_ be loaded, even if the theme is disabled", + "type": "boolean" + }, "minzoom": { "description": "The minimum needed zoomlevel required before loading of the data start\nDefault: 0", "type": "number" }, + "shownByDefault": { + "description": "Indicates if this layer is shown by default;\ncan be used to hide a layer from start, or to load the layer but only to show it where appropriate (e.g. for snapping to it)", + "type": "boolean" + }, "minzoomVisible": { "description": "The zoom level at which point the data is hidden again\nDefault: 100 (thus: always visible", "type": "number" @@ -971,31 +1059,55 @@ ] }, "titleIcons": { - "description": "Small icons shown next to the title.\nIf not specified, the OsmLink and wikipedia links will be used by default.\nUse an empty array to hide them.\nNote that \"defaults\" will insert all the default titleIcons", - "type": "array", - "items": { - "anyOf": [ - { - "$ref": "#/definitions/TagRenderingConfigJson" - }, - { - "type": "string" + "description": "Small icons shown next to the title.\nIf not specified, the OsmLink and wikipedia links will be used by default.\nUse an empty array to hide them.\nNote that \"defaults\" will insert all the default titleIcons (which are added automatically)\n\nType: icon[]", + "anyOf": [ + { + "type": "array", + "items": { + "anyOf": [ + { + "$ref": "#/definitions/TagRenderingConfigJson" + }, + { + "type": "string" + } + ] } - ] - } + }, + { + "type": "array", + "items": [ + { + "type": "string", + "enum": [ + "defaults" + ] + } + ], + "minItems": 1, + "maxItems": 1 + } + ] }, "mapRendering": { - "type": "array", - "items": { - "anyOf": [ - { - "$ref": "#/definitions/default_3" - }, - { - "$ref": "#/definitions/default_4" + "anyOf": [ + { + "type": "array", + "items": { + "anyOf": [ + { + "$ref": "#/definitions/default_4" + }, + { + "$ref": "#/definitions/default_5" + } + ] } - ] - } + }, + { + "type": "null" + } + ] }, "passAllFeatures": { "description": "If set, this layer will pass all the features it receives onto the next layer.\nThis is ideal for decoration, e.g. directionss on cameras", @@ -1020,6 +1132,13 @@ "description": { "description": "The _first sentence_ of the description is shown on the button of the `add` menu.\nThe full description is shown in the confirmation dialog.\n\n(The first sentence is until the first '.'-character in the description)" }, + "exampleImages": { + "description": "Example images, which show real-life pictures of what such a feature might look like\n\nType: image", + "type": "array", + "items": { + "type": "string" + } + }, "preciseInput": { "description": "If set, the user will prompted to confirm the location before actually adding the data.\nThis will be with a 'drag crosshair'-method.\n\nIf 'preferredBackgroundCategory' is set, the element will attempt to pick a background layer of that category.", "anyOf": [ @@ -1103,25 +1222,26 @@ "type": "object", "properties": { "rewrite": { - "type": "array", - "items": { - "type": "object", - "properties": { - "sourceString": { + "type": "object", + "properties": { + "sourceString": { + "type": "array", + "items": { "type": "string" - }, - "into": { - "type": "array", - "items": { - "type": "string" - } } }, - "required": [ - "into", - "sourceString" - ] - } + "into": { + "type": "array", + "items": { + "type": "array", + "items": {} + } + } + }, + "required": [ + "into", + "sourceString" + ] }, "renderings": { "type": "array", @@ -1163,10 +1283,25 @@ }, "filter": { "description": "All the extra questions for filtering", - "type": "array", - "items": { - "$ref": "#/definitions/default" - } + "anyOf": [ + { + "type": "array", + "items": { + "$ref": "#/definitions/default_1" + } + }, + { + "type": "object", + "properties": { + "sameAs": { + "type": "string" + } + }, + "required": [ + "sameAs" + ] + } + ] }, "deletion": { "description": "This block defines under what circumstances the delete dialog is shown for objects of this layer.\nIf set, a dialog is shown to the user to (soft) delete the point.\nThe dialog is built to be user friendly and to prevent mistakes.\nIf deletion is not possible, the dialog will hide itself and show the reason of non-deletability instead.\n\nTo configure, the following values are possible:\n\n- false: never ever show the delete button\n- true: show the default delete button\n- undefined: use the mapcomplete default to show deletion or not. Currently, this is the same as 'false' but this will change in the future\n- or: a hash with options (see below)\n\n The delete dialog\n =================\n\n\n\n#### Hard deletion if enough experience\n\nA feature can only be deleted from OpenStreetMap by mapcomplete if:\n\n- It is a node\n- No ways or relations use the node\n- The logged-in user has enough experience OR the user is the only one to have edited the point previously\n- The logged-in user has no unread messages (or has a ton of experience)\n- The user did not select one of the 'non-delete-options' (see below)\n\nIn all other cases, a 'soft deletion' is used.\n\n#### Soft deletion\n\nA 'soft deletion' is when the point isn't deleted from OSM but retagged so that it'll won't how up in the mapcomplete theme anymore.\nThis makes it look like it was deleted, without doing damage. A fixme will be added to the point.\n\nNote that a soft deletion is _only_ possible if these tags are provided by the theme creator, as they'll be different for every theme\n\n#### No-delete options\n\nIn some cases, the contributor might want to delete something for the wrong reason (e.g. someone who wants to have a path removed \"because the path is on their private property\").\nHowever, the path exists in reality and should thus be on OSM - otherwise the next contributor will pass by and notice \"hey, there is a path missing here! Let me redraw it in OSM!)\n\nThe correct approach is to retag the feature in such a way that it is semantically correct *and* that it doesn't show up on the theme anymore.\nA no-delete option is offered as 'reason to delete it', but secretly retags.", @@ -1183,7 +1318,7 @@ "description": "Indicates if a point can be moved and configures the modalities.\n\nA feature can be moved by MapComplete if:\n\n- It is a point\n- The point is _not_ part of a way or a a relation.\n\nOff by default. Can be enabled by setting this flag or by configuring.", "anyOf": [ { - "$ref": "#/definitions/default_2" + "$ref": "#/definitions/default_3" }, { "type": "boolean" @@ -1198,8 +1333,18 @@ "description": "In some cases, a value is represented in a certain unit (such as meters for heigt/distance/..., km/h for speed, ...)\n\nSometimes, multiple denominations are possible (e.g. km/h vs mile/h; megawatt vs kilowatt vs gigawatt for power generators, ...)\n\nThis brings in some troubles, as there are multiple ways to write it (no denomitation, 'm' vs 'meter' 'metre', ...)\n\nNot only do we want to write consistent data to OSM, we also want to present this consistently to the user.\nThis is handled by defining units.\n\n# Rendering\n\nTo render a value with long (human) denomination, use {canonical(key)}\n\n# Usage\n\nFirst of all, you define which keys have units applied, for example:\n\n```\nunits: [\n appliesTo: [\"maxspeed\", \"maxspeed:hgv\", \"maxspeed:bus\"]\n applicableUnits: [\n ...\n ]\n]\n```\n\nApplicableUnits defines which is the canonical extension, how it is presented to the user, ...:\n\n```\napplicableUnits: [\n{\n canonicalDenomination: \"km/h\",\n alternativeDenomination: [\"km/u\", \"kmh\", \"kph\"]\n default: true,\n human: {\n en: \"kilometer/hour\",\n nl: \"kilometer/uur\"\n },\n humanShort: {\n en: \"km/h\",\n nl: \"km/u\"\n }\n},\n{\n canoncialDenomination: \"mph\",\n ... similar for miles an hour ...\n}\n]\n```\n\n\nIf this is defined, then every key which the denominations apply to (`maxspeed`, `maxspeed:hgv` and `maxspeed:bus`) will be rewritten at the metatagging stage:\nevery value will be parsed and the canonical extension will be added add presented to the other parts of the code.\n\nAlso, if a freeform text field is used, an extra dropdown with applicable denominations will be given", "type": "array", "items": { - "$ref": "#/definitions/default_1" + "$ref": "#/definitions/default_2" } + }, + "syncSelection": { + "description": "If set, synchronizes wether or not this layer is selected.\n\nno: Do not sync at all, always revert to default\nlocal: keep selection on local storage\ntheme-only: sync via OSM, but this layer will only be toggled in this theme\nglobal: all layers with this ID will be synced accross all themes", + "enum": [ + "global", + "local", + "no", + "theme-only" + ], + "type": "string" } }, "required": [ @@ -1208,6 +1353,37 @@ "source" ], "additionalProperties": false + }, + "default": { + "type": "object", + "properties": { + "icon": { + "type": "string" + }, + "text": {}, + "href": { + "type": "string" + }, + "newTab": { + "type": "boolean" + }, + "requirements": { + "type": "array", + "items": { + "enum": [ + "iframe", + "no-iframe", + "no-welcome-message", + "welcome-message" + ], + "type": "string" + } + } + }, + "required": [ + "href" + ], + "additionalProperties": false } }, "$schema": "http://json-schema.org/draft-07/schema#", diff --git a/Docs/Schemas/LayoutConfigJsonJSC.ts b/Docs/Schemas/LayoutConfigJsonJSC.ts index 2c337340e2..92e8e24fb4 100644 --- a/Docs/Schemas/LayoutConfigJsonJSC.ts +++ b/Docs/Schemas/LayoutConfigJsonJSC.ts @@ -11,36 +11,22 @@ export default { "type": "string" }, "maintainer": { - "description": "Who does maintian this preset?", + "description": "Who does maintain this preset?", "type": "string" }, "version": { "description": "A version number, either semantically or by date.\nShould be sortable, where the higher value is the later version", "type": "string" }, - "language": { - "description": "The supported language(s).\nThis should be a two-letter, lowercase code which identifies the language, e.g. \"en\", \"nl\", ...\nIf the theme supports multiple languages, use a list: `[\"en\",\"nl\",\"fr\"]` to allow the user to pick any of them", - "anyOf": [ - { - "type": "array", - "items": { - "type": "string" - } - }, - { - "type": "string" - } - ] - }, "mustHaveLanguage": { - "description": "Only used in 'generateLayerOverview': if present, every translation will be checked to make sure it is fully translated", + "description": "Only used in 'generateLayerOverview': if present, every translation will be checked to make sure it is fully translated.\n\nThis must be a list of two-letter, lowercase codes which identifies the language, e.g. \"en\", \"nl\", ...", "type": "array", "items": { "type": "string" } }, "title": { - "description": "The title, as shown in the welcome message and the more-screen" + "description": "The title, as shown in the welcome message and the more-screen." }, "shortDescription": { "description": "A short description, showed as social description and in the 'more theme'-buttons.\nNote that if this one is not defined, the first sentence of 'description' is used" @@ -52,11 +38,11 @@ export default { "description": "A part of the description, shown under the login-button." }, "icon": { - "description": "The icon representing this theme.\nUsed as logo in the more-screen and (for official themes) as favicon, webmanifest logo, ...\nEither a URL or a base64 encoded value (which should include 'data:image/svg+xml;base64)", + "description": "The icon representing this theme.\nUsed as logo in the more-screen and (for official themes) as favicon, webmanifest logo, ...\nEither a URL or a base64 encoded value (which should include 'data:image/svg+xml;base64)\n\nType: icon", "type": "string" }, "socialImage": { - "description": "Link to a 'social image' which is included as og:image-tag on official themes.\nUseful to share the theme on social media.\nSee https://www.h3xed.com/web-and-internet/how-to-use-og-image-meta-tag-facebook-reddit for more information", + "description": "Link to a 'social image' which is included as og:image-tag on official themes.\nUseful to share the theme on social media.\nSee https://www.h3xed.com/web-and-internet/how-to-use-og-image-meta-tag-facebook-reddit for more information$\n\nType: image", "type": "string" }, "startZoom": { @@ -92,7 +78,7 @@ export default { "description": "Define some (overlay) slippy map tilesources", "type": "array", "items": { - "$ref": "#/definitions/default_5" + "$ref": "#/definitions/default_6" } }, "layers": { @@ -119,7 +105,14 @@ export default { } ] }, - "override": {} + "override": {}, + "hideTagRenderingsWithLabels": { + "description": "TagRenderings with any of these labels will be removed from the layer.\nNote that the 'id' and 'group' are considered labels too", + "type": "array", + "items": { + "type": "string" + } + } }, "required": [ "builtin", @@ -134,17 +127,27 @@ export default { }, "clustering": { "description": "If defined, data will be clustered.\nDefaults to {maxZoom: 16, minNeeded: 500}", - "type": "object", - "properties": { - "maxZoom": { - "description": "All zoom levels above 'maxzoom' are not clustered anymore.\nDefaults to 18", - "type": "number" + "anyOf": [ + { + "type": "object", + "properties": { + "maxZoom": { + "description": "All zoom levels above 'maxzoom' are not clustered anymore.\nDefaults to 18", + "type": "number" + }, + "minNeededElements": { + "description": "The number of elements per tile needed to start clustering\nIf clustering is defined, defaults to 250", + "type": "number" + } + } }, - "minNeededElements": { - "description": "The number of elements per tile needed to start clustering\nIf clustering is defined, defaults to 25", - "type": "number" + { + "enum": [ + false + ], + "type": "boolean" } - } + ] }, "customCss": { "description": "The URL of a custom CSS stylesheet to modify the layout", @@ -155,7 +158,7 @@ export default { "type": "boolean" }, "lockLocation": { - "description": "If set to true, the basemap will not scroll outside of the area visible on initial zoom.\nIf set to [[lat0, lon0], [lat1, lon1]], the map will not scroll outside of those bounds.\nOff by default, which will enable panning to the entire world", + "description": "If set to true, the basemap will not scroll outside of the area visible on initial zoom.\nIf set to [[lon, lat], [lon, lat]], the map will not scroll outside of those bounds.\nOff by default, which will enable panning to the entire world", "anyOf": [ { "type": "array", @@ -198,46 +201,59 @@ export default { "type": "number" } } - }, - { - "type": "boolean" } ] }, + "extraLink": { + "description": "Adds an additional button on the top-left of the application.\nThis can link to an arbitrary location.\n\nNote that {lat},{lon},{zoom}, {language} and {theme} will be replaced\n\nDefault: {icon: \"./assets/svg/pop-out.svg\", href: 'https://mapcomplete.osm.be/{theme}.html?lat={lat}&lon={lon}&z={zoom}, requirements: [\"iframe\",\"no-welcome-message]},", + "$ref": "#/definitions/default" + }, "enableUserBadge": { + "description": "If set to false, disables logging in.\nThe userbadge will be hidden, all login-buttons will be hidden and editing will be disabled", "type": "boolean" }, "enableShareScreen": { + "description": "If false, hides the tab 'share'-tab in the welcomeMessage", "type": "boolean" }, "enableMoreQuests": { + "description": "Hides the tab with more themes in the welcomeMessage", "type": "boolean" }, "enableLayers": { + "description": "If false, the layer selection/filter view will be hidden\nThe corresponding URL-parameter is 'fs-filters' instead of 'fs-layers'", "type": "boolean" }, "enableSearch": { + "description": "If set to false, hides the search bar", "type": "boolean" }, "enableAddNewPoints": { + "description": "If set to false, the ability to add new points or nodes will be disabled.\nEditing already existing features will still be possible", "type": "boolean" }, "enableGeolocation": { + "description": "If set to false, the 'geolocation'-button will be hidden.", "type": "boolean" }, "enableBackgroundLayerSelection": { + "description": "Enable switching the backgroundlayer.\nIf false, the quickswitch-buttons are removed (bottom left) and the dropdown in the layer selection is removed as well", "type": "boolean" }, "enableShowAllQuestions": { + "description": "If set to true, will show _all_ unanswered questions in a popup instead of just the next one", "type": "boolean" }, "enableDownload": { + "description": "If set to true, download button for the data will be shown (offers downloading as geojson and csv)", "type": "boolean" }, "enablePdfDownload": { + "description": "If set to true, exporting a pdf is enabled", "type": "boolean" }, - "enableIframePopout": { + "enableNoteImports": { + "description": "If true, notes will be loaded and parsed. If a note is an import (as created by the import_helper.html-tool from mapcomplete),\nthese notes will be shown if a relevant layer is present.", "type": "boolean" }, "overpassUrl": { @@ -263,7 +279,6 @@ export default { "description", "icon", "id", - "language", "layers", "maintainer", "startLat", @@ -346,15 +361,22 @@ export default { "type": "object", "properties": { "id": { - "description": "The id of the tagrendering, should be an unique string.\nUsed to keep the translations in sync. Only used in the tagRenderings-array of a layerConfig, not requered otherwise", + "description": "The id of the tagrendering, should be an unique string.\nUsed to keep the translations in sync. Only used in the tagRenderings-array of a layerConfig, not requered otherwise.\n\nUse 'questions' to trigger the question box of this group (if a group is defined)", "type": "string" }, "group": { "description": "If 'group' is defined on many tagRenderings, these are grouped together when shown. The questions are grouped together as well.\nThe first tagRendering of a group will always be a sticky element.", "type": "string" }, + "labels": { + "description": "A list of labels. These are strings that are used for various purposes, e.g. to filter them away", + "type": "array", + "items": { + "type": "string" + } + }, "render": { - "description": "Renders this value. Note that \"{key}\"-parts are substituted by the corresponding values of the element.\nIf neither 'textFieldQuestion' nor 'mappings' are defined, this text is simply shown as default value.\n\nNote that this is a HTML-interpreted value, so you can add links as e.g. '{website}' or include images such as `This is of type A
`" + "description": "Renders this value. Note that \"{key}\"-parts are substituted by the corresponding values of the element.\nIf neither 'textFieldQuestion' nor 'mappings' are defined, this text is simply shown as default value.\n\nNote that this is a HTML-interpreted value, so you can add links as e.g. '{website}' or include images such as `This is of type A
`\ntype: rendered" }, "question": { "description": "If it turns out that this tagRendering doesn't match _any_ value, then we show this question.\nIf undefined, the question is never asked and this tagrendering is read-only" @@ -382,6 +404,9 @@ export default { "description": "The type of the text-field, e.g. 'string', 'nat', 'float', 'date',...\nSee Docs/SpecialInputElements.md and UI/Input/ValidatedTextField.ts for supported values", "type": "string" }, + "placeholder": { + "description": "A (translated) text that is shown (as gray text) within the textfield" + }, "helperArgs": { "description": "Extra parameters to initialize the input helper arguments.\nFor semantics, see the 'SpecialInputElements.md'", "type": "array", @@ -429,7 +454,32 @@ export default { ] }, "then": { - "description": "If the condition `if` is met, the text `then` will be rendered.\nIf not known yet, the user will be presented with `then` as an option" + "description": "If the condition `if` is met, the text `then` will be rendered.\nIf not known yet, the user will be presented with `then` as an option\nType: rendered" + }, + "icon": { + "description": "An icon supporting this mapping; typically shown pretty small\nType: icon", + "anyOf": [ + { + "type": "object", + "properties": { + "path": { + "description": "The path to the icon\nType: icon", + "type": "string" + }, + "class": { + "description": "A hint to mapcomplete on how to render this icon within the mapping.\nThis is translated to 'mapping-icon-', so defining your own in combination with a custom CSS is possible (but discouraged)", + "type": "string" + } + }, + "required": [ + "class", + "path" + ] + }, + { + "type": "string" + } + ] }, "hideInAnswer": { "description": "In some cases, multiple taggings exist (e.g. a default assumption, or a commonly mapped abbreviation and a fully written variation).\n\nIn the latter case, a correct text should be shown, but only a single, canonical tagging should be selectable by the user.\nIn this case, one of the mappings can be hiden by setting this flag.\n\nTo demonstrate an example making a default assumption:\n\nmappings: [\n {\n if: \"access=\", -- no access tag present, we assume accessible\n then: \"Accessible to the general public\",\n hideInAnswer: true\n },\n {\n if: \"access=yes\",\n then: \"Accessible to the general public\", -- the user selected this, we add that to OSM\n },\n {\n if: \"access=no\",\n then: \"Not accessible to the public\"\n }\n]\n\n\nFor example, for an operator, we have `operator=Agentschap Natuur en Bos`, which is often abbreviated to `operator=ANB`.\nThen, we would add two mappings:\n{\n if: \"operator=Agentschap Natuur en Bos\" -- the non-abbreviated version which should be uploaded\n then: \"Maintained by Agentschap Natuur en Bos\"\n},\n{\n if: \"operator=ANB\", -- we don't want to upload abbreviations\n then: \"Maintained by Agentschap Natuur en Bos\"\n hideInAnswer: true\n}\n\nHide in answer can also be a tagsfilter, e.g. to make sure an option is only shown when appropriate.\nKeep in mind that this is reverse logic: it will be hidden in the answer if the condition is true, it will thus only show in the case of a mismatch\n\ne.g., for toilets: if \"wheelchair=no\", we know there is no wheelchair dedicated room.\nFor the location of the changing table, the option \"in the wheelchair accessible toilet is weird\", so we write:\n\n{\n \"question\": \"Where is the changing table located?\"\n \"mappings\": [\n {\"if\":\"changing_table:location=female\",\"then\":\"In the female restroom\"},\n {\"if\":\"changing_table:location=male\",\"then\":\"In the male restroom\"},\n {\"if\":\"changing_table:location=wheelchair\",\"then\":\"In the wheelchair accessible restroom\", \"hideInAnswer\": \"wheelchair=no\"},\n \n ]\n}\n\nAlso have a look for the meta-tags\n{\n if: \"operator=Agentschap Natuur en Bos\",\n then: \"Maintained by Agentschap Natuur en Bos\",\n hideInAnswer: \"_country!=be\"\n}", @@ -472,7 +522,7 @@ export default { } } }, - "default_3": { + "default_4": { "description": "The PointRenderingConfig gives all details onto how to render a single point of a feature.\n\nThis can be used if:\n\n- The feature is a point\n- To render something at the centroid of an area, or at the start, end or projected centroid of a way", "type": "object", "properties": { @@ -480,17 +530,11 @@ export default { "description": "All the locations that this point should be rendered at.\nUsing `location: [\"point\", \"centroid\"] will always render centerpoint", "type": "array", "items": { - "enum": [ - "centroid", - "end", - "point", - "start" - ], "type": "string" } }, "icon": { - "description": "The icon for an element.\nNote that this also doubles as the icon for this layer (rendered with the overpass-tags) ánd the icon in the presets.\n\nThe result of the icon is rendered as follows:\nthe resulting string is interpreted as a _list_ of items, separated by \";\". The bottommost layer is the first layer.\nAs a result, on could use a generic pin, then overlay it with a specific icon.\nTo make things even more practical, one can use all SVG's from the folder \"assets/svg\" and _substitute the color_ in it.\nE.g. to draw a red pin, use \"pin:#f00\", to have a green circle with your icon on top, use `circle:#0f0;`", + "description": "The icon for an element.\nNote that this also doubles as the icon for this layer (rendered with the overpass-tags) ánd the icon in the presets.\n\nThe result of the icon is rendered as follows:\nthe resulting string is interpreted as a _list_ of items, separated by \";\". The bottommost layer is the first layer.\nAs a result, on could use a generic pin, then overlay it with a specific icon.\nTo make things even more practical, one can use all SVG's from the folder \"assets/svg\" and _substitute the color_ in it.\nE.g. to draw a red pin, use \"pin:#f00\", to have a green circle with your icon on top, use `circle:#0f0;`\n\nType: icon", "anyOf": [ { "$ref": "#/definitions/TagRenderingConfigJson" @@ -517,6 +561,7 @@ export default { ] }, "then": { + "description": "Badge to show\nType: icon", "anyOf": [ { "$ref": "#/definitions/TagRenderingConfigJson" @@ -571,7 +616,7 @@ export default { "location" ] }, - "default_4": { + "default_5": { "description": "The LineRenderingConfig gives all details onto how to render a single line of a feature.\n\nThis can be used if:\n\n- The feature is a line\n- The feature is an area", "type": "object", "properties": { @@ -593,7 +638,10 @@ export default { "$ref": "#/definitions/TagRenderingConfigJson" }, { - "type": "string" + "type": [ + "string", + "number" + ] } ] }, @@ -658,7 +706,7 @@ export default { } } }, - "default": { + "default_1": { "type": "object", "properties": { "id": { @@ -681,6 +729,26 @@ export default { "type": "string" } ] + }, + "default": { + "type": "boolean" + }, + "fields": { + "type": "array", + "items": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "type": { + "type": "string" + } + }, + "required": [ + "name" + ] + } } }, "required": [ @@ -751,7 +819,7 @@ export default { } } }, - "default_2": { + "default_3": { "type": "object", "properties": { "enableImproveAccuracy": { @@ -764,7 +832,7 @@ export default { } } }, - "default_1": { + "default_2": { "type": "object", "properties": { "appliesToKey": { @@ -791,7 +859,7 @@ export default { "appliesToKey" ] }, - "default_5": { + "default_6": { "description": "Configuration for a tilesource config", "type": "object", "properties": { @@ -844,7 +912,7 @@ export default { "description": "A description for this layer.\nShown in the layer selections and in the personel theme" }, "source": { - "description": "This determines where the data for the layer is fetched.\nThere are some options:\n\n# Query OSM directly\nsource: {osmTags: \"key=value\"}\n will fetch all objects with given tags from OSM.\n Currently, this will create a query to overpass and fetch the data - in the future this might fetch from the OSM API\n\n# Query OSM Via the overpass API with a custom script\nsource: {overpassScript: \"\"} when you want to do special things. _This should be really rare_.\n This means that the data will be pulled from overpass with this script, and will ignore the osmTags for the query\n However, for the rest of the pipeline, the OsmTags will _still_ be used. This is important to enable layers etc...\n\n\n# A single geojson-file\nsource: {geoJson: \"https://my.source.net/some-geo-data.geojson\"}\n fetches a geojson from a third party source\n\n# A tiled geojson source\nsource: {geoJson: \"https://my.source.net/some-tile-geojson-{layer}-{z}-{x}-{y}.geojson\", geoJsonZoomLevel: 14}\n to use a tiled geojson source. The web server must offer multiple geojsons. {z}, {x} and {y} are substituted by the location; {layer} is substituted with the id of the loaded layer\n\nSome API's use a BBOX instead of a tile, this can be used by specifying {y_min}, {y_max}, {x_min} and {x_max}\nSome API's use a mercator-projection (EPSG:900913) instead of WGS84. Set the flag `mercatorCrs: true` in the source for this\n\nNote that both geojson-options might set a flag 'isOsmCache' indicating that the data originally comes from OSM too\n\n\nNOTE: the previous format was 'overpassTags: AndOrTagConfigJson | string', which is interpreted as a shorthand for source: {osmTags: \"key=value\"}\n While still supported, this is considered deprecated", + "description": "This determines where the data for the layer is fetched: from OSM or from an external geojson dataset.\n\nIf no 'geojson' is defined, data will be fetched from overpass and the OSM-API.\n\nEvery source _must_ define which tags _must_ be present in order to be picked up.", "anyOf": [ { "allOf": [ @@ -852,6 +920,7 @@ export default { "type": "object", "properties": { "osmTags": { + "description": "Every source must set which tags have to be present in order to load the given layer.", "anyOf": [ { "$ref": "#/definitions/AndOrTagConfigJson" @@ -861,8 +930,9 @@ export default { } ] }, - "overpassScript": { - "type": "string" + "maxCacheAge": { + "description": "The maximum amount of seconds that a tile is allowed to linger in the cache", + "type": "number" } }, "required": [ @@ -872,9 +942,8 @@ export default { { "type": "object", "properties": { - "maxCacheAge": { - "description": "The maximum amount of seconds that a tile is allowed to linger in the cache", - "type": "number" + "overpassScript": { + "type": "string" } } } @@ -886,6 +955,7 @@ export default { "type": "object", "properties": { "osmTags": { + "description": "Every source must set which tags have to be present in order to load the given layer.", "anyOf": [ { "$ref": "#/definitions/AndOrTagConfigJson" @@ -895,39 +965,49 @@ export default { } ] }, - "geoJson": { - "type": "string" - }, - "geoJsonZoomLevel": { + "maxCacheAge": { + "description": "The maximum amount of seconds that a tile is allowed to linger in the cache", "type": "number" - }, - "isOsmCache": { - "type": "boolean" - }, - "mercatorCrs": { - "type": "boolean" } }, "required": [ - "geoJson", "osmTags" ] }, { "type": "object", "properties": { - "maxCacheAge": { - "description": "The maximum amount of seconds that a tile is allowed to linger in the cache", + "geoJson": { + "description": "The actual source of the data to load, if loaded via geojson.\n\n# A single geojson-file\nsource: {geoJson: \"https://my.source.net/some-geo-data.geojson\"}\n fetches a geojson from a third party source\n\n# A tiled geojson source\nsource: {geoJson: \"https://my.source.net/some-tile-geojson-{layer}-{z}-{x}-{y}.geojson\", geoJsonZoomLevel: 14}\n to use a tiled geojson source. The web server must offer multiple geojsons. {z}, {x} and {y} are substituted by the location; {layer} is substituted with the id of the loaded layer\n\nSome API's use a BBOX instead of a tile, this can be used by specifying {y_min}, {y_max}, {x_min} and {x_max}", + "type": "string" + }, + "geoJsonZoomLevel": { + "description": "To load a tiled geojson layer, set the zoomlevel of the tiles", "type": "number" + }, + "isOsmCache": { + "description": "Indicates that the upstream geojson data is OSM-derived.\nUseful for e.g. merging or for scripts generating this cache", + "type": "boolean" + }, + "mercatorCrs": { + "description": "Some API's use a mercator-projection (EPSG:900913) instead of WGS84. Set the flag `mercatorCrs: true` in the source for this", + "type": "boolean" + }, + "idKey": { + "description": "Some API's have an id-field, but give it a different name.\nSetting this key will rename this field into 'id'", + "type": "string" } - } + }, + "required": [ + "geoJson" + ] } ] } ] }, "calculatedTags": { - "description": "A list of extra tags to calculate, specified as \"keyToAssignTo=javascript-expression\".\nThere are a few extra functions available. Refer to Docs/CalculatedTags.md for more information\nThe functions will be run in order, e.g.\n[\n \"_max_overlap_m2=Math.max(...feat.overlapsWith(\"someOtherLayer\").map(o => o.overlap))\n \"_max_overlap_ratio=Number(feat._max_overlap_m2)/feat.area\n]", + "description": "A list of extra tags to calculate, specified as \"keyToAssignTo=javascript-expression\".\nThere are a few extra functions available. Refer to Docs/CalculatedTags.md for more information\nThe functions will be run in order, e.g.\n[\n \"_max_overlap_m2=Math.max(...feat.overlapsWith(\"someOtherLayer\").map(o => o.overlap))\n \"_max_overlap_ratio=Number(feat._max_overlap_m2)/feat.area\n]\n\nThe specified tags are evaluated lazily. E.g. if a calculated tag is only used in the popup (e.g. the number of nearby features),\nthe expensive calculation will only be performed then for that feature. This avoids clogging up the contributors PC when all features are loaded.\n\nIf a tag has to be evaluated strictly, use ':=' instead:\n\n[\n\"_some_key:=some_javascript_expression\"\n]", "type": "array", "items": { "type": "string" @@ -941,10 +1021,18 @@ export default { "description": "This tag rendering should either be 'yes' or 'no'. If 'no' is returned, then the feature will be hidden from view.\nThis is useful to hide certain features from view.\n\nImportant: hiding features does not work dynamically, but is only calculated when the data is first renders.\nThis implies that it is not possible to hide a feature after a tagging change\n\nThe default value is 'yes'", "$ref": "#/definitions/TagRenderingConfigJson" }, + "forceLoad": { + "description": "Advanced option - might be set by the theme compiler\n\nIf true, this data will _always_ be loaded, even if the theme is disabled", + "type": "boolean" + }, "minzoom": { "description": "The minimum needed zoomlevel required before loading of the data start\nDefault: 0", "type": "number" }, + "shownByDefault": { + "description": "Indicates if this layer is shown by default;\ncan be used to hide a layer from start, or to load the layer but only to show it where appropriate (e.g. for snapping to it)", + "type": "boolean" + }, "minzoomVisible": { "description": "The zoom level at which point the data is hidden again\nDefault: 100 (thus: always visible", "type": "number" @@ -961,31 +1049,55 @@ export default { ] }, "titleIcons": { - "description": "Small icons shown next to the title.\nIf not specified, the OsmLink and wikipedia links will be used by default.\nUse an empty array to hide them.\nNote that \"defaults\" will insert all the default titleIcons", - "type": "array", - "items": { - "anyOf": [ - { - "$ref": "#/definitions/TagRenderingConfigJson" - }, - { - "type": "string" + "description": "Small icons shown next to the title.\nIf not specified, the OsmLink and wikipedia links will be used by default.\nUse an empty array to hide them.\nNote that \"defaults\" will insert all the default titleIcons (which are added automatically)\n\nType: icon[]", + "anyOf": [ + { + "type": "array", + "items": { + "anyOf": [ + { + "$ref": "#/definitions/TagRenderingConfigJson" + }, + { + "type": "string" + } + ] } - ] - } + }, + { + "type": "array", + "items": [ + { + "type": "string", + "enum": [ + "defaults" + ] + } + ], + "minItems": 1, + "maxItems": 1 + } + ] }, "mapRendering": { - "type": "array", - "items": { - "anyOf": [ - { - "$ref": "#/definitions/default_3" - }, - { - "$ref": "#/definitions/default_4" + "anyOf": [ + { + "type": "array", + "items": { + "anyOf": [ + { + "$ref": "#/definitions/default_4" + }, + { + "$ref": "#/definitions/default_5" + } + ] } - ] - } + }, + { + "type": "null" + } + ] }, "passAllFeatures": { "description": "If set, this layer will pass all the features it receives onto the next layer.\nThis is ideal for decoration, e.g. directionss on cameras", @@ -1010,6 +1122,13 @@ export default { "description": { "description": "The _first sentence_ of the description is shown on the button of the `add` menu.\nThe full description is shown in the confirmation dialog.\n\n(The first sentence is until the first '.'-character in the description)" }, + "exampleImages": { + "description": "Example images, which show real-life pictures of what such a feature might look like\n\nType: image", + "type": "array", + "items": { + "type": "string" + } + }, "preciseInput": { "description": "If set, the user will prompted to confirm the location before actually adding the data.\nThis will be with a 'drag crosshair'-method.\n\nIf 'preferredBackgroundCategory' is set, the element will attempt to pick a background layer of that category.", "anyOf": [ @@ -1093,25 +1212,26 @@ export default { "type": "object", "properties": { "rewrite": { - "type": "array", - "items": { - "type": "object", - "properties": { - "sourceString": { + "type": "object", + "properties": { + "sourceString": { + "type": "array", + "items": { "type": "string" - }, - "into": { - "type": "array", - "items": { - "type": "string" - } } }, - "required": [ - "into", - "sourceString" - ] - } + "into": { + "type": "array", + "items": { + "type": "array", + "items": {} + } + } + }, + "required": [ + "into", + "sourceString" + ] }, "renderings": { "type": "array", @@ -1153,10 +1273,25 @@ export default { }, "filter": { "description": "All the extra questions for filtering", - "type": "array", - "items": { - "$ref": "#/definitions/default" - } + "anyOf": [ + { + "type": "array", + "items": { + "$ref": "#/definitions/default_1" + } + }, + { + "type": "object", + "properties": { + "sameAs": { + "type": "string" + } + }, + "required": [ + "sameAs" + ] + } + ] }, "deletion": { "description": "This block defines under what circumstances the delete dialog is shown for objects of this layer.\nIf set, a dialog is shown to the user to (soft) delete the point.\nThe dialog is built to be user friendly and to prevent mistakes.\nIf deletion is not possible, the dialog will hide itself and show the reason of non-deletability instead.\n\nTo configure, the following values are possible:\n\n- false: never ever show the delete button\n- true: show the default delete button\n- undefined: use the mapcomplete default to show deletion or not. Currently, this is the same as 'false' but this will change in the future\n- or: a hash with options (see below)\n\n The delete dialog\n =================\n\n\n\n#### Hard deletion if enough experience\n\nA feature can only be deleted from OpenStreetMap by mapcomplete if:\n\n- It is a node\n- No ways or relations use the node\n- The logged-in user has enough experience OR the user is the only one to have edited the point previously\n- The logged-in user has no unread messages (or has a ton of experience)\n- The user did not select one of the 'non-delete-options' (see below)\n\nIn all other cases, a 'soft deletion' is used.\n\n#### Soft deletion\n\nA 'soft deletion' is when the point isn't deleted from OSM but retagged so that it'll won't how up in the mapcomplete theme anymore.\nThis makes it look like it was deleted, without doing damage. A fixme will be added to the point.\n\nNote that a soft deletion is _only_ possible if these tags are provided by the theme creator, as they'll be different for every theme\n\n#### No-delete options\n\nIn some cases, the contributor might want to delete something for the wrong reason (e.g. someone who wants to have a path removed \"because the path is on their private property\").\nHowever, the path exists in reality and should thus be on OSM - otherwise the next contributor will pass by and notice \"hey, there is a path missing here! Let me redraw it in OSM!)\n\nThe correct approach is to retag the feature in such a way that it is semantically correct *and* that it doesn't show up on the theme anymore.\nA no-delete option is offered as 'reason to delete it', but secretly retags.", @@ -1173,7 +1308,7 @@ export default { "description": "Indicates if a point can be moved and configures the modalities.\n\nA feature can be moved by MapComplete if:\n\n- It is a point\n- The point is _not_ part of a way or a a relation.\n\nOff by default. Can be enabled by setting this flag or by configuring.", "anyOf": [ { - "$ref": "#/definitions/default_2" + "$ref": "#/definitions/default_3" }, { "type": "boolean" @@ -1188,8 +1323,18 @@ export default { "description": "In some cases, a value is represented in a certain unit (such as meters for heigt/distance/..., km/h for speed, ...)\n\nSometimes, multiple denominations are possible (e.g. km/h vs mile/h; megawatt vs kilowatt vs gigawatt for power generators, ...)\n\nThis brings in some troubles, as there are multiple ways to write it (no denomitation, 'm' vs 'meter' 'metre', ...)\n\nNot only do we want to write consistent data to OSM, we also want to present this consistently to the user.\nThis is handled by defining units.\n\n# Rendering\n\nTo render a value with long (human) denomination, use {canonical(key)}\n\n# Usage\n\nFirst of all, you define which keys have units applied, for example:\n\n```\nunits: [\n appliesTo: [\"maxspeed\", \"maxspeed:hgv\", \"maxspeed:bus\"]\n applicableUnits: [\n ...\n ]\n]\n```\n\nApplicableUnits defines which is the canonical extension, how it is presented to the user, ...:\n\n```\napplicableUnits: [\n{\n canonicalDenomination: \"km/h\",\n alternativeDenomination: [\"km/u\", \"kmh\", \"kph\"]\n default: true,\n human: {\n en: \"kilometer/hour\",\n nl: \"kilometer/uur\"\n },\n humanShort: {\n en: \"km/h\",\n nl: \"km/u\"\n }\n},\n{\n canoncialDenomination: \"mph\",\n ... similar for miles an hour ...\n}\n]\n```\n\n\nIf this is defined, then every key which the denominations apply to (`maxspeed`, `maxspeed:hgv` and `maxspeed:bus`) will be rewritten at the metatagging stage:\nevery value will be parsed and the canonical extension will be added add presented to the other parts of the code.\n\nAlso, if a freeform text field is used, an extra dropdown with applicable denominations will be given", "type": "array", "items": { - "$ref": "#/definitions/default_1" + "$ref": "#/definitions/default_2" } + }, + "syncSelection": { + "description": "If set, synchronizes wether or not this layer is selected.\n\nno: Do not sync at all, always revert to default\nlocal: keep selection on local storage\ntheme-only: sync via OSM, but this layer will only be toggled in this theme\nglobal: all layers with this ID will be synced accross all themes", + "enum": [ + "global", + "local", + "no", + "theme-only" + ], + "type": "string" } }, "required": [ @@ -1197,6 +1342,36 @@ export default { "mapRendering", "source" ] + }, + "default": { + "type": "object", + "properties": { + "icon": { + "type": "string" + }, + "text": {}, + "href": { + "type": "string" + }, + "newTab": { + "type": "boolean" + }, + "requirements": { + "type": "array", + "items": { + "enum": [ + "iframe", + "no-iframe", + "no-welcome-message", + "welcome-message" + ], + "type": "string" + } + } + }, + "required": [ + "href" + ] } }, "$schema": "http://json-schema.org/draft-07/schema#" diff --git a/Docs/Schemas/LineRenderingConfigJson.schema.json b/Docs/Schemas/LineRenderingConfigJson.schema.json index 0f7289f025..2b8cac100b 100644 --- a/Docs/Schemas/LineRenderingConfigJson.schema.json +++ b/Docs/Schemas/LineRenderingConfigJson.schema.json @@ -20,7 +20,10 @@ "$ref": "#/definitions/TagRenderingConfigJson" }, { - "type": "string" + "type": [ + "string", + "number" + ] } ] }, @@ -160,15 +163,22 @@ "type": "object", "properties": { "id": { - "description": "The id of the tagrendering, should be an unique string.\nUsed to keep the translations in sync. Only used in the tagRenderings-array of a layerConfig, not requered otherwise", + "description": "The id of the tagrendering, should be an unique string.\nUsed to keep the translations in sync. Only used in the tagRenderings-array of a layerConfig, not requered otherwise.\n\nUse 'questions' to trigger the question box of this group (if a group is defined)", "type": "string" }, "group": { "description": "If 'group' is defined on many tagRenderings, these are grouped together when shown. The questions are grouped together as well.\nThe first tagRendering of a group will always be a sticky element.", "type": "string" }, + "labels": { + "description": "A list of labels. These are strings that are used for various purposes, e.g. to filter them away", + "type": "array", + "items": { + "type": "string" + } + }, "render": { - "description": "Renders this value. Note that \"{key}\"-parts are substituted by the corresponding values of the element.\nIf neither 'textFieldQuestion' nor 'mappings' are defined, this text is simply shown as default value.\n\nNote that this is a HTML-interpreted value, so you can add links as e.g. '{website}' or include images such as `This is of type A
`" + "description": "Renders this value. Note that \"{key}\"-parts are substituted by the corresponding values of the element.\nIf neither 'textFieldQuestion' nor 'mappings' are defined, this text is simply shown as default value.\n\nNote that this is a HTML-interpreted value, so you can add links as e.g. '{website}' or include images such as `This is of type A
`\ntype: rendered" }, "question": { "description": "If it turns out that this tagRendering doesn't match _any_ value, then we show this question.\nIf undefined, the question is never asked and this tagrendering is read-only" @@ -196,6 +206,9 @@ "description": "The type of the text-field, e.g. 'string', 'nat', 'float', 'date',...\nSee Docs/SpecialInputElements.md and UI/Input/ValidatedTextField.ts for supported values", "type": "string" }, + "placeholder": { + "description": "A (translated) text that is shown (as gray text) within the textfield" + }, "helperArgs": { "description": "Extra parameters to initialize the input helper arguments.\nFor semantics, see the 'SpecialInputElements.md'", "type": "array", @@ -243,7 +256,32 @@ ] }, "then": { - "description": "If the condition `if` is met, the text `then` will be rendered.\nIf not known yet, the user will be presented with `then` as an option" + "description": "If the condition `if` is met, the text `then` will be rendered.\nIf not known yet, the user will be presented with `then` as an option\nType: rendered" + }, + "icon": { + "description": "An icon supporting this mapping; typically shown pretty small\nType: icon", + "anyOf": [ + { + "type": "object", + "properties": { + "path": { + "description": "The path to the icon\nType: icon", + "type": "string" + }, + "class": { + "description": "A hint to mapcomplete on how to render this icon within the mapping.\nThis is translated to 'mapping-icon-', so defining your own in combination with a custom CSS is possible (but discouraged)", + "type": "string" + } + }, + "required": [ + "class", + "path" + ] + }, + { + "type": "string" + } + ] }, "hideInAnswer": { "description": "In some cases, multiple taggings exist (e.g. a default assumption, or a commonly mapped abbreviation and a fully written variation).\n\nIn the latter case, a correct text should be shown, but only a single, canonical tagging should be selectable by the user.\nIn this case, one of the mappings can be hiden by setting this flag.\n\nTo demonstrate an example making a default assumption:\n\nmappings: [\n {\n if: \"access=\", -- no access tag present, we assume accessible\n then: \"Accessible to the general public\",\n hideInAnswer: true\n },\n {\n if: \"access=yes\",\n then: \"Accessible to the general public\", -- the user selected this, we add that to OSM\n },\n {\n if: \"access=no\",\n then: \"Not accessible to the public\"\n }\n]\n\n\nFor example, for an operator, we have `operator=Agentschap Natuur en Bos`, which is often abbreviated to `operator=ANB`.\nThen, we would add two mappings:\n{\n if: \"operator=Agentschap Natuur en Bos\" -- the non-abbreviated version which should be uploaded\n then: \"Maintained by Agentschap Natuur en Bos\"\n},\n{\n if: \"operator=ANB\", -- we don't want to upload abbreviations\n then: \"Maintained by Agentschap Natuur en Bos\"\n hideInAnswer: true\n}\n\nHide in answer can also be a tagsfilter, e.g. to make sure an option is only shown when appropriate.\nKeep in mind that this is reverse logic: it will be hidden in the answer if the condition is true, it will thus only show in the case of a mismatch\n\ne.g., for toilets: if \"wheelchair=no\", we know there is no wheelchair dedicated room.\nFor the location of the changing table, the option \"in the wheelchair accessible toilet is weird\", so we write:\n\n{\n \"question\": \"Where is the changing table located?\"\n \"mappings\": [\n {\"if\":\"changing_table:location=female\",\"then\":\"In the female restroom\"},\n {\"if\":\"changing_table:location=male\",\"then\":\"In the male restroom\"},\n {\"if\":\"changing_table:location=wheelchair\",\"then\":\"In the wheelchair accessible restroom\", \"hideInAnswer\": \"wheelchair=no\"},\n \n ]\n}\n\nAlso have a look for the meta-tags\n{\n if: \"operator=Agentschap Natuur en Bos\",\n then: \"Maintained by Agentschap Natuur en Bos\",\n hideInAnswer: \"_country!=be\"\n}", diff --git a/Docs/Schemas/LineRenderingConfigJsonJSC.ts b/Docs/Schemas/LineRenderingConfigJsonJSC.ts index 2c0642834f..b0037110ac 100644 --- a/Docs/Schemas/LineRenderingConfigJsonJSC.ts +++ b/Docs/Schemas/LineRenderingConfigJsonJSC.ts @@ -20,7 +20,10 @@ export default { "$ref": "#/definitions/TagRenderingConfigJson" }, { - "type": "string" + "type": [ + "string", + "number" + ] } ] }, @@ -158,15 +161,22 @@ export default { "type": "object", "properties": { "id": { - "description": "The id of the tagrendering, should be an unique string.\nUsed to keep the translations in sync. Only used in the tagRenderings-array of a layerConfig, not requered otherwise", + "description": "The id of the tagrendering, should be an unique string.\nUsed to keep the translations in sync. Only used in the tagRenderings-array of a layerConfig, not requered otherwise.\n\nUse 'questions' to trigger the question box of this group (if a group is defined)", "type": "string" }, "group": { "description": "If 'group' is defined on many tagRenderings, these are grouped together when shown. The questions are grouped together as well.\nThe first tagRendering of a group will always be a sticky element.", "type": "string" }, + "labels": { + "description": "A list of labels. These are strings that are used for various purposes, e.g. to filter them away", + "type": "array", + "items": { + "type": "string" + } + }, "render": { - "description": "Renders this value. Note that \"{key}\"-parts are substituted by the corresponding values of the element.\nIf neither 'textFieldQuestion' nor 'mappings' are defined, this text is simply shown as default value.\n\nNote that this is a HTML-interpreted value, so you can add links as e.g. '{website}' or include images such as `This is of type A
`" + "description": "Renders this value. Note that \"{key}\"-parts are substituted by the corresponding values of the element.\nIf neither 'textFieldQuestion' nor 'mappings' are defined, this text is simply shown as default value.\n\nNote that this is a HTML-interpreted value, so you can add links as e.g. '{website}' or include images such as `This is of type A
`\ntype: rendered" }, "question": { "description": "If it turns out that this tagRendering doesn't match _any_ value, then we show this question.\nIf undefined, the question is never asked and this tagrendering is read-only" @@ -194,6 +204,9 @@ export default { "description": "The type of the text-field, e.g. 'string', 'nat', 'float', 'date',...\nSee Docs/SpecialInputElements.md and UI/Input/ValidatedTextField.ts for supported values", "type": "string" }, + "placeholder": { + "description": "A (translated) text that is shown (as gray text) within the textfield" + }, "helperArgs": { "description": "Extra parameters to initialize the input helper arguments.\nFor semantics, see the 'SpecialInputElements.md'", "type": "array", @@ -241,7 +254,32 @@ export default { ] }, "then": { - "description": "If the condition `if` is met, the text `then` will be rendered.\nIf not known yet, the user will be presented with `then` as an option" + "description": "If the condition `if` is met, the text `then` will be rendered.\nIf not known yet, the user will be presented with `then` as an option\nType: rendered" + }, + "icon": { + "description": "An icon supporting this mapping; typically shown pretty small\nType: icon", + "anyOf": [ + { + "type": "object", + "properties": { + "path": { + "description": "The path to the icon\nType: icon", + "type": "string" + }, + "class": { + "description": "A hint to mapcomplete on how to render this icon within the mapping.\nThis is translated to 'mapping-icon-', so defining your own in combination with a custom CSS is possible (but discouraged)", + "type": "string" + } + }, + "required": [ + "class", + "path" + ] + }, + { + "type": "string" + } + ] }, "hideInAnswer": { "description": "In some cases, multiple taggings exist (e.g. a default assumption, or a commonly mapped abbreviation and a fully written variation).\n\nIn the latter case, a correct text should be shown, but only a single, canonical tagging should be selectable by the user.\nIn this case, one of the mappings can be hiden by setting this flag.\n\nTo demonstrate an example making a default assumption:\n\nmappings: [\n {\n if: \"access=\", -- no access tag present, we assume accessible\n then: \"Accessible to the general public\",\n hideInAnswer: true\n },\n {\n if: \"access=yes\",\n then: \"Accessible to the general public\", -- the user selected this, we add that to OSM\n },\n {\n if: \"access=no\",\n then: \"Not accessible to the public\"\n }\n]\n\n\nFor example, for an operator, we have `operator=Agentschap Natuur en Bos`, which is often abbreviated to `operator=ANB`.\nThen, we would add two mappings:\n{\n if: \"operator=Agentschap Natuur en Bos\" -- the non-abbreviated version which should be uploaded\n then: \"Maintained by Agentschap Natuur en Bos\"\n},\n{\n if: \"operator=ANB\", -- we don't want to upload abbreviations\n then: \"Maintained by Agentschap Natuur en Bos\"\n hideInAnswer: true\n}\n\nHide in answer can also be a tagsfilter, e.g. to make sure an option is only shown when appropriate.\nKeep in mind that this is reverse logic: it will be hidden in the answer if the condition is true, it will thus only show in the case of a mismatch\n\ne.g., for toilets: if \"wheelchair=no\", we know there is no wheelchair dedicated room.\nFor the location of the changing table, the option \"in the wheelchair accessible toilet is weird\", so we write:\n\n{\n \"question\": \"Where is the changing table located?\"\n \"mappings\": [\n {\"if\":\"changing_table:location=female\",\"then\":\"In the female restroom\"},\n {\"if\":\"changing_table:location=male\",\"then\":\"In the male restroom\"},\n {\"if\":\"changing_table:location=wheelchair\",\"then\":\"In the wheelchair accessible restroom\", \"hideInAnswer\": \"wheelchair=no\"},\n \n ]\n}\n\nAlso have a look for the meta-tags\n{\n if: \"operator=Agentschap Natuur en Bos\",\n then: \"Maintained by Agentschap Natuur en Bos\",\n hideInAnswer: \"_country!=be\"\n}", diff --git a/Docs/Schemas/PointRenderingConfigJson.schema.json b/Docs/Schemas/PointRenderingConfigJson.schema.json index 03ec4cf3c5..89d2c3c417 100644 --- a/Docs/Schemas/PointRenderingConfigJson.schema.json +++ b/Docs/Schemas/PointRenderingConfigJson.schema.json @@ -6,17 +6,11 @@ "description": "All the locations that this point should be rendered at.\nUsing `location: [\"point\", \"centroid\"] will always render centerpoint", "type": "array", "items": { - "enum": [ - "centroid", - "end", - "point", - "start" - ], "type": "string" } }, "icon": { - "description": "The icon for an element.\nNote that this also doubles as the icon for this layer (rendered with the overpass-tags) ánd the icon in the presets.\n\nThe result of the icon is rendered as follows:\nthe resulting string is interpreted as a _list_ of items, separated by \";\". The bottommost layer is the first layer.\nAs a result, on could use a generic pin, then overlay it with a specific icon.\nTo make things even more practical, one can use all SVG's from the folder \"assets/svg\" and _substitute the color_ in it.\nE.g. to draw a red pin, use \"pin:#f00\", to have a green circle with your icon on top, use `circle:#0f0;`", + "description": "The icon for an element.\nNote that this also doubles as the icon for this layer (rendered with the overpass-tags) ánd the icon in the presets.\n\nThe result of the icon is rendered as follows:\nthe resulting string is interpreted as a _list_ of items, separated by \";\". The bottommost layer is the first layer.\nAs a result, on could use a generic pin, then overlay it with a specific icon.\nTo make things even more practical, one can use all SVG's from the folder \"assets/svg\" and _substitute the color_ in it.\nE.g. to draw a red pin, use \"pin:#f00\", to have a green circle with your icon on top, use `circle:#0f0;`\n\nType: icon", "anyOf": [ { "$ref": "#/definitions/TagRenderingConfigJson" @@ -43,6 +37,7 @@ ] }, "then": { + "description": "Badge to show\nType: icon", "anyOf": [ { "$ref": "#/definitions/TagRenderingConfigJson" @@ -172,15 +167,22 @@ "type": "object", "properties": { "id": { - "description": "The id of the tagrendering, should be an unique string.\nUsed to keep the translations in sync. Only used in the tagRenderings-array of a layerConfig, not requered otherwise", + "description": "The id of the tagrendering, should be an unique string.\nUsed to keep the translations in sync. Only used in the tagRenderings-array of a layerConfig, not requered otherwise.\n\nUse 'questions' to trigger the question box of this group (if a group is defined)", "type": "string" }, "group": { "description": "If 'group' is defined on many tagRenderings, these are grouped together when shown. The questions are grouped together as well.\nThe first tagRendering of a group will always be a sticky element.", "type": "string" }, + "labels": { + "description": "A list of labels. These are strings that are used for various purposes, e.g. to filter them away", + "type": "array", + "items": { + "type": "string" + } + }, "render": { - "description": "Renders this value. Note that \"{key}\"-parts are substituted by the corresponding values of the element.\nIf neither 'textFieldQuestion' nor 'mappings' are defined, this text is simply shown as default value.\n\nNote that this is a HTML-interpreted value, so you can add links as e.g. '{website}' or include images such as `This is of type A
`" + "description": "Renders this value. Note that \"{key}\"-parts are substituted by the corresponding values of the element.\nIf neither 'textFieldQuestion' nor 'mappings' are defined, this text is simply shown as default value.\n\nNote that this is a HTML-interpreted value, so you can add links as e.g. '{website}' or include images such as `This is of type A
`\ntype: rendered" }, "question": { "description": "If it turns out that this tagRendering doesn't match _any_ value, then we show this question.\nIf undefined, the question is never asked and this tagrendering is read-only" @@ -208,6 +210,9 @@ "description": "The type of the text-field, e.g. 'string', 'nat', 'float', 'date',...\nSee Docs/SpecialInputElements.md and UI/Input/ValidatedTextField.ts for supported values", "type": "string" }, + "placeholder": { + "description": "A (translated) text that is shown (as gray text) within the textfield" + }, "helperArgs": { "description": "Extra parameters to initialize the input helper arguments.\nFor semantics, see the 'SpecialInputElements.md'", "type": "array", @@ -255,7 +260,32 @@ ] }, "then": { - "description": "If the condition `if` is met, the text `then` will be rendered.\nIf not known yet, the user will be presented with `then` as an option" + "description": "If the condition `if` is met, the text `then` will be rendered.\nIf not known yet, the user will be presented with `then` as an option\nType: rendered" + }, + "icon": { + "description": "An icon supporting this mapping; typically shown pretty small\nType: icon", + "anyOf": [ + { + "type": "object", + "properties": { + "path": { + "description": "The path to the icon\nType: icon", + "type": "string" + }, + "class": { + "description": "A hint to mapcomplete on how to render this icon within the mapping.\nThis is translated to 'mapping-icon-', so defining your own in combination with a custom CSS is possible (but discouraged)", + "type": "string" + } + }, + "required": [ + "class", + "path" + ] + }, + { + "type": "string" + } + ] }, "hideInAnswer": { "description": "In some cases, multiple taggings exist (e.g. a default assumption, or a commonly mapped abbreviation and a fully written variation).\n\nIn the latter case, a correct text should be shown, but only a single, canonical tagging should be selectable by the user.\nIn this case, one of the mappings can be hiden by setting this flag.\n\nTo demonstrate an example making a default assumption:\n\nmappings: [\n {\n if: \"access=\", -- no access tag present, we assume accessible\n then: \"Accessible to the general public\",\n hideInAnswer: true\n },\n {\n if: \"access=yes\",\n then: \"Accessible to the general public\", -- the user selected this, we add that to OSM\n },\n {\n if: \"access=no\",\n then: \"Not accessible to the public\"\n }\n]\n\n\nFor example, for an operator, we have `operator=Agentschap Natuur en Bos`, which is often abbreviated to `operator=ANB`.\nThen, we would add two mappings:\n{\n if: \"operator=Agentschap Natuur en Bos\" -- the non-abbreviated version which should be uploaded\n then: \"Maintained by Agentschap Natuur en Bos\"\n},\n{\n if: \"operator=ANB\", -- we don't want to upload abbreviations\n then: \"Maintained by Agentschap Natuur en Bos\"\n hideInAnswer: true\n}\n\nHide in answer can also be a tagsfilter, e.g. to make sure an option is only shown when appropriate.\nKeep in mind that this is reverse logic: it will be hidden in the answer if the condition is true, it will thus only show in the case of a mismatch\n\ne.g., for toilets: if \"wheelchair=no\", we know there is no wheelchair dedicated room.\nFor the location of the changing table, the option \"in the wheelchair accessible toilet is weird\", so we write:\n\n{\n \"question\": \"Where is the changing table located?\"\n \"mappings\": [\n {\"if\":\"changing_table:location=female\",\"then\":\"In the female restroom\"},\n {\"if\":\"changing_table:location=male\",\"then\":\"In the male restroom\"},\n {\"if\":\"changing_table:location=wheelchair\",\"then\":\"In the wheelchair accessible restroom\", \"hideInAnswer\": \"wheelchair=no\"},\n \n ]\n}\n\nAlso have a look for the meta-tags\n{\n if: \"operator=Agentschap Natuur en Bos\",\n then: \"Maintained by Agentschap Natuur en Bos\",\n hideInAnswer: \"_country!=be\"\n}", diff --git a/Docs/Schemas/PointRenderingConfigJsonJSC.ts b/Docs/Schemas/PointRenderingConfigJsonJSC.ts index 2e88c1cf83..599e6c5c19 100644 --- a/Docs/Schemas/PointRenderingConfigJsonJSC.ts +++ b/Docs/Schemas/PointRenderingConfigJsonJSC.ts @@ -6,17 +6,11 @@ export default { "description": "All the locations that this point should be rendered at.\nUsing `location: [\"point\", \"centroid\"] will always render centerpoint", "type": "array", "items": { - "enum": [ - "centroid", - "end", - "point", - "start" - ], "type": "string" } }, "icon": { - "description": "The icon for an element.\nNote that this also doubles as the icon for this layer (rendered with the overpass-tags) ánd the icon in the presets.\n\nThe result of the icon is rendered as follows:\nthe resulting string is interpreted as a _list_ of items, separated by \";\". The bottommost layer is the first layer.\nAs a result, on could use a generic pin, then overlay it with a specific icon.\nTo make things even more practical, one can use all SVG's from the folder \"assets/svg\" and _substitute the color_ in it.\nE.g. to draw a red pin, use \"pin:#f00\", to have a green circle with your icon on top, use `circle:#0f0;`", + "description": "The icon for an element.\nNote that this also doubles as the icon for this layer (rendered with the overpass-tags) ánd the icon in the presets.\n\nThe result of the icon is rendered as follows:\nthe resulting string is interpreted as a _list_ of items, separated by \";\". The bottommost layer is the first layer.\nAs a result, on could use a generic pin, then overlay it with a specific icon.\nTo make things even more practical, one can use all SVG's from the folder \"assets/svg\" and _substitute the color_ in it.\nE.g. to draw a red pin, use \"pin:#f00\", to have a green circle with your icon on top, use `circle:#0f0;`\n\nType: icon", "anyOf": [ { "$ref": "#/definitions/TagRenderingConfigJson" @@ -43,6 +37,7 @@ export default { ] }, "then": { + "description": "Badge to show\nType: icon", "anyOf": [ { "$ref": "#/definitions/TagRenderingConfigJson" @@ -170,15 +165,22 @@ export default { "type": "object", "properties": { "id": { - "description": "The id of the tagrendering, should be an unique string.\nUsed to keep the translations in sync. Only used in the tagRenderings-array of a layerConfig, not requered otherwise", + "description": "The id of the tagrendering, should be an unique string.\nUsed to keep the translations in sync. Only used in the tagRenderings-array of a layerConfig, not requered otherwise.\n\nUse 'questions' to trigger the question box of this group (if a group is defined)", "type": "string" }, "group": { "description": "If 'group' is defined on many tagRenderings, these are grouped together when shown. The questions are grouped together as well.\nThe first tagRendering of a group will always be a sticky element.", "type": "string" }, + "labels": { + "description": "A list of labels. These are strings that are used for various purposes, e.g. to filter them away", + "type": "array", + "items": { + "type": "string" + } + }, "render": { - "description": "Renders this value. Note that \"{key}\"-parts are substituted by the corresponding values of the element.\nIf neither 'textFieldQuestion' nor 'mappings' are defined, this text is simply shown as default value.\n\nNote that this is a HTML-interpreted value, so you can add links as e.g. '{website}' or include images such as `This is of type A
`" + "description": "Renders this value. Note that \"{key}\"-parts are substituted by the corresponding values of the element.\nIf neither 'textFieldQuestion' nor 'mappings' are defined, this text is simply shown as default value.\n\nNote that this is a HTML-interpreted value, so you can add links as e.g. '{website}' or include images such as `This is of type A
`\ntype: rendered" }, "question": { "description": "If it turns out that this tagRendering doesn't match _any_ value, then we show this question.\nIf undefined, the question is never asked and this tagrendering is read-only" @@ -206,6 +208,9 @@ export default { "description": "The type of the text-field, e.g. 'string', 'nat', 'float', 'date',...\nSee Docs/SpecialInputElements.md and UI/Input/ValidatedTextField.ts for supported values", "type": "string" }, + "placeholder": { + "description": "A (translated) text that is shown (as gray text) within the textfield" + }, "helperArgs": { "description": "Extra parameters to initialize the input helper arguments.\nFor semantics, see the 'SpecialInputElements.md'", "type": "array", @@ -253,7 +258,32 @@ export default { ] }, "then": { - "description": "If the condition `if` is met, the text `then` will be rendered.\nIf not known yet, the user will be presented with `then` as an option" + "description": "If the condition `if` is met, the text `then` will be rendered.\nIf not known yet, the user will be presented with `then` as an option\nType: rendered" + }, + "icon": { + "description": "An icon supporting this mapping; typically shown pretty small\nType: icon", + "anyOf": [ + { + "type": "object", + "properties": { + "path": { + "description": "The path to the icon\nType: icon", + "type": "string" + }, + "class": { + "description": "A hint to mapcomplete on how to render this icon within the mapping.\nThis is translated to 'mapping-icon-', so defining your own in combination with a custom CSS is possible (but discouraged)", + "type": "string" + } + }, + "required": [ + "class", + "path" + ] + }, + { + "type": "string" + } + ] }, "hideInAnswer": { "description": "In some cases, multiple taggings exist (e.g. a default assumption, or a commonly mapped abbreviation and a fully written variation).\n\nIn the latter case, a correct text should be shown, but only a single, canonical tagging should be selectable by the user.\nIn this case, one of the mappings can be hiden by setting this flag.\n\nTo demonstrate an example making a default assumption:\n\nmappings: [\n {\n if: \"access=\", -- no access tag present, we assume accessible\n then: \"Accessible to the general public\",\n hideInAnswer: true\n },\n {\n if: \"access=yes\",\n then: \"Accessible to the general public\", -- the user selected this, we add that to OSM\n },\n {\n if: \"access=no\",\n then: \"Not accessible to the public\"\n }\n]\n\n\nFor example, for an operator, we have `operator=Agentschap Natuur en Bos`, which is often abbreviated to `operator=ANB`.\nThen, we would add two mappings:\n{\n if: \"operator=Agentschap Natuur en Bos\" -- the non-abbreviated version which should be uploaded\n then: \"Maintained by Agentschap Natuur en Bos\"\n},\n{\n if: \"operator=ANB\", -- we don't want to upload abbreviations\n then: \"Maintained by Agentschap Natuur en Bos\"\n hideInAnswer: true\n}\n\nHide in answer can also be a tagsfilter, e.g. to make sure an option is only shown when appropriate.\nKeep in mind that this is reverse logic: it will be hidden in the answer if the condition is true, it will thus only show in the case of a mismatch\n\ne.g., for toilets: if \"wheelchair=no\", we know there is no wheelchair dedicated room.\nFor the location of the changing table, the option \"in the wheelchair accessible toilet is weird\", so we write:\n\n{\n \"question\": \"Where is the changing table located?\"\n \"mappings\": [\n {\"if\":\"changing_table:location=female\",\"then\":\"In the female restroom\"},\n {\"if\":\"changing_table:location=male\",\"then\":\"In the male restroom\"},\n {\"if\":\"changing_table:location=wheelchair\",\"then\":\"In the wheelchair accessible restroom\", \"hideInAnswer\": \"wheelchair=no\"},\n \n ]\n}\n\nAlso have a look for the meta-tags\n{\n if: \"operator=Agentschap Natuur en Bos\",\n then: \"Maintained by Agentschap Natuur en Bos\",\n hideInAnswer: \"_country!=be\"\n}", diff --git a/Docs/Schemas/TagRenderingConfigJson.schema.json b/Docs/Schemas/TagRenderingConfigJson.schema.json index c330dbc058..21ee45e1ef 100644 --- a/Docs/Schemas/TagRenderingConfigJson.schema.json +++ b/Docs/Schemas/TagRenderingConfigJson.schema.json @@ -3,15 +3,22 @@ "type": "object", "properties": { "id": { - "description": "The id of the tagrendering, should be an unique string.\nUsed to keep the translations in sync. Only used in the tagRenderings-array of a layerConfig, not requered otherwise", + "description": "The id of the tagrendering, should be an unique string.\nUsed to keep the translations in sync. Only used in the tagRenderings-array of a layerConfig, not requered otherwise.\n\nUse 'questions' to trigger the question box of this group (if a group is defined)", "type": "string" }, "group": { "description": "If 'group' is defined on many tagRenderings, these are grouped together when shown. The questions are grouped together as well.\nThe first tagRendering of a group will always be a sticky element.", "type": "string" }, + "labels": { + "description": "A list of labels. These are strings that are used for various purposes, e.g. to filter them away", + "type": "array", + "items": { + "type": "string" + } + }, "render": { - "description": "Renders this value. Note that \"{key}\"-parts are substituted by the corresponding values of the element.\nIf neither 'textFieldQuestion' nor 'mappings' are defined, this text is simply shown as default value.\n\nNote that this is a HTML-interpreted value, so you can add links as e.g. '{website}' or include images such as `This is of type A
`" + "description": "Renders this value. Note that \"{key}\"-parts are substituted by the corresponding values of the element.\nIf neither 'textFieldQuestion' nor 'mappings' are defined, this text is simply shown as default value.\n\nNote that this is a HTML-interpreted value, so you can add links as e.g. '{website}' or include images such as `This is of type A
`\ntype: rendered" }, "question": { "description": "If it turns out that this tagRendering doesn't match _any_ value, then we show this question.\nIf undefined, the question is never asked and this tagrendering is read-only" @@ -39,6 +46,9 @@ "description": "The type of the text-field, e.g. 'string', 'nat', 'float', 'date',...\nSee Docs/SpecialInputElements.md and UI/Input/ValidatedTextField.ts for supported values", "type": "string" }, + "placeholder": { + "description": "A (translated) text that is shown (as gray text) within the textfield" + }, "helperArgs": { "description": "Extra parameters to initialize the input helper arguments.\nFor semantics, see the 'SpecialInputElements.md'", "type": "array", @@ -86,7 +96,32 @@ ] }, "then": { - "description": "If the condition `if` is met, the text `then` will be rendered.\nIf not known yet, the user will be presented with `then` as an option" + "description": "If the condition `if` is met, the text `then` will be rendered.\nIf not known yet, the user will be presented with `then` as an option\nType: rendered" + }, + "icon": { + "description": "An icon supporting this mapping; typically shown pretty small\nType: icon", + "anyOf": [ + { + "type": "object", + "properties": { + "path": { + "description": "The path to the icon\nType: icon", + "type": "string" + }, + "class": { + "description": "A hint to mapcomplete on how to render this icon within the mapping.\nThis is translated to 'mapping-icon-', so defining your own in combination with a custom CSS is possible (but discouraged)", + "type": "string" + } + }, + "required": [ + "class", + "path" + ] + }, + { + "type": "string" + } + ] }, "hideInAnswer": { "description": "In some cases, multiple taggings exist (e.g. a default assumption, or a commonly mapped abbreviation and a fully written variation).\n\nIn the latter case, a correct text should be shown, but only a single, canonical tagging should be selectable by the user.\nIn this case, one of the mappings can be hiden by setting this flag.\n\nTo demonstrate an example making a default assumption:\n\nmappings: [\n {\n if: \"access=\", -- no access tag present, we assume accessible\n then: \"Accessible to the general public\",\n hideInAnswer: true\n },\n {\n if: \"access=yes\",\n then: \"Accessible to the general public\", -- the user selected this, we add that to OSM\n },\n {\n if: \"access=no\",\n then: \"Not accessible to the public\"\n }\n]\n\n\nFor example, for an operator, we have `operator=Agentschap Natuur en Bos`, which is often abbreviated to `operator=ANB`.\nThen, we would add two mappings:\n{\n if: \"operator=Agentschap Natuur en Bos\" -- the non-abbreviated version which should be uploaded\n then: \"Maintained by Agentschap Natuur en Bos\"\n},\n{\n if: \"operator=ANB\", -- we don't want to upload abbreviations\n then: \"Maintained by Agentschap Natuur en Bos\"\n hideInAnswer: true\n}\n\nHide in answer can also be a tagsfilter, e.g. to make sure an option is only shown when appropriate.\nKeep in mind that this is reverse logic: it will be hidden in the answer if the condition is true, it will thus only show in the case of a mismatch\n\ne.g., for toilets: if \"wheelchair=no\", we know there is no wheelchair dedicated room.\nFor the location of the changing table, the option \"in the wheelchair accessible toilet is weird\", so we write:\n\n{\n \"question\": \"Where is the changing table located?\"\n \"mappings\": [\n {\"if\":\"changing_table:location=female\",\"then\":\"In the female restroom\"},\n {\"if\":\"changing_table:location=male\",\"then\":\"In the male restroom\"},\n {\"if\":\"changing_table:location=wheelchair\",\"then\":\"In the wheelchair accessible restroom\", \"hideInAnswer\": \"wheelchair=no\"},\n \n ]\n}\n\nAlso have a look for the meta-tags\n{\n if: \"operator=Agentschap Natuur en Bos\",\n then: \"Maintained by Agentschap Natuur en Bos\",\n hideInAnswer: \"_country!=be\"\n}", diff --git a/Docs/Schemas/TagRenderingConfigJsonJSC.ts b/Docs/Schemas/TagRenderingConfigJsonJSC.ts index bbc00373d2..cf2358570e 100644 --- a/Docs/Schemas/TagRenderingConfigJsonJSC.ts +++ b/Docs/Schemas/TagRenderingConfigJsonJSC.ts @@ -3,15 +3,22 @@ export default { "type": "object", "properties": { "id": { - "description": "The id of the tagrendering, should be an unique string.\nUsed to keep the translations in sync. Only used in the tagRenderings-array of a layerConfig, not requered otherwise", + "description": "The id of the tagrendering, should be an unique string.\nUsed to keep the translations in sync. Only used in the tagRenderings-array of a layerConfig, not requered otherwise.\n\nUse 'questions' to trigger the question box of this group (if a group is defined)", "type": "string" }, "group": { "description": "If 'group' is defined on many tagRenderings, these are grouped together when shown. The questions are grouped together as well.\nThe first tagRendering of a group will always be a sticky element.", "type": "string" }, + "labels": { + "description": "A list of labels. These are strings that are used for various purposes, e.g. to filter them away", + "type": "array", + "items": { + "type": "string" + } + }, "render": { - "description": "Renders this value. Note that \"{key}\"-parts are substituted by the corresponding values of the element.\nIf neither 'textFieldQuestion' nor 'mappings' are defined, this text is simply shown as default value.\n\nNote that this is a HTML-interpreted value, so you can add links as e.g. '{website}' or include images such as `This is of type A
`" + "description": "Renders this value. Note that \"{key}\"-parts are substituted by the corresponding values of the element.\nIf neither 'textFieldQuestion' nor 'mappings' are defined, this text is simply shown as default value.\n\nNote that this is a HTML-interpreted value, so you can add links as e.g. '{website}' or include images such as `This is of type A
`\ntype: rendered" }, "question": { "description": "If it turns out that this tagRendering doesn't match _any_ value, then we show this question.\nIf undefined, the question is never asked and this tagrendering is read-only" @@ -39,6 +46,9 @@ export default { "description": "The type of the text-field, e.g. 'string', 'nat', 'float', 'date',...\nSee Docs/SpecialInputElements.md and UI/Input/ValidatedTextField.ts for supported values", "type": "string" }, + "placeholder": { + "description": "A (translated) text that is shown (as gray text) within the textfield" + }, "helperArgs": { "description": "Extra parameters to initialize the input helper arguments.\nFor semantics, see the 'SpecialInputElements.md'", "type": "array", @@ -86,7 +96,32 @@ export default { ] }, "then": { - "description": "If the condition `if` is met, the text `then` will be rendered.\nIf not known yet, the user will be presented with `then` as an option" + "description": "If the condition `if` is met, the text `then` will be rendered.\nIf not known yet, the user will be presented with `then` as an option\nType: rendered" + }, + "icon": { + "description": "An icon supporting this mapping; typically shown pretty small\nType: icon", + "anyOf": [ + { + "type": "object", + "properties": { + "path": { + "description": "The path to the icon\nType: icon", + "type": "string" + }, + "class": { + "description": "A hint to mapcomplete on how to render this icon within the mapping.\nThis is translated to 'mapping-icon-', so defining your own in combination with a custom CSS is possible (but discouraged)", + "type": "string" + } + }, + "required": [ + "class", + "path" + ] + }, + { + "type": "string" + } + ] }, "hideInAnswer": { "description": "In some cases, multiple taggings exist (e.g. a default assumption, or a commonly mapped abbreviation and a fully written variation).\n\nIn the latter case, a correct text should be shown, but only a single, canonical tagging should be selectable by the user.\nIn this case, one of the mappings can be hiden by setting this flag.\n\nTo demonstrate an example making a default assumption:\n\nmappings: [\n {\n if: \"access=\", -- no access tag present, we assume accessible\n then: \"Accessible to the general public\",\n hideInAnswer: true\n },\n {\n if: \"access=yes\",\n then: \"Accessible to the general public\", -- the user selected this, we add that to OSM\n },\n {\n if: \"access=no\",\n then: \"Not accessible to the public\"\n }\n]\n\n\nFor example, for an operator, we have `operator=Agentschap Natuur en Bos`, which is often abbreviated to `operator=ANB`.\nThen, we would add two mappings:\n{\n if: \"operator=Agentschap Natuur en Bos\" -- the non-abbreviated version which should be uploaded\n then: \"Maintained by Agentschap Natuur en Bos\"\n},\n{\n if: \"operator=ANB\", -- we don't want to upload abbreviations\n then: \"Maintained by Agentschap Natuur en Bos\"\n hideInAnswer: true\n}\n\nHide in answer can also be a tagsfilter, e.g. to make sure an option is only shown when appropriate.\nKeep in mind that this is reverse logic: it will be hidden in the answer if the condition is true, it will thus only show in the case of a mismatch\n\ne.g., for toilets: if \"wheelchair=no\", we know there is no wheelchair dedicated room.\nFor the location of the changing table, the option \"in the wheelchair accessible toilet is weird\", so we write:\n\n{\n \"question\": \"Where is the changing table located?\"\n \"mappings\": [\n {\"if\":\"changing_table:location=female\",\"then\":\"In the female restroom\"},\n {\"if\":\"changing_table:location=male\",\"then\":\"In the male restroom\"},\n {\"if\":\"changing_table:location=wheelchair\",\"then\":\"In the wheelchair accessible restroom\", \"hideInAnswer\": \"wheelchair=no\"},\n \n ]\n}\n\nAlso have a look for the meta-tags\n{\n if: \"operator=Agentschap Natuur en Bos\",\n then: \"Maintained by Agentschap Natuur en Bos\",\n hideInAnswer: \"_country!=be\"\n}", diff --git a/Docs/Schemas/TilesourceConfigJson.schema.json b/Docs/Schemas/TilesourceConfigJson.schema.json index da181e8e54..ebac532924 100644 --- a/Docs/Schemas/TilesourceConfigJson.schema.json +++ b/Docs/Schemas/TilesourceConfigJson.schema.json @@ -111,15 +111,22 @@ "type": "object", "properties": { "id": { - "description": "The id of the tagrendering, should be an unique string.\nUsed to keep the translations in sync. Only used in the tagRenderings-array of a layerConfig, not requered otherwise", + "description": "The id of the tagrendering, should be an unique string.\nUsed to keep the translations in sync. Only used in the tagRenderings-array of a layerConfig, not requered otherwise.\n\nUse 'questions' to trigger the question box of this group (if a group is defined)", "type": "string" }, "group": { "description": "If 'group' is defined on many tagRenderings, these are grouped together when shown. The questions are grouped together as well.\nThe first tagRendering of a group will always be a sticky element.", "type": "string" }, + "labels": { + "description": "A list of labels. These are strings that are used for various purposes, e.g. to filter them away", + "type": "array", + "items": { + "type": "string" + } + }, "render": { - "description": "Renders this value. Note that \"{key}\"-parts are substituted by the corresponding values of the element.\nIf neither 'textFieldQuestion' nor 'mappings' are defined, this text is simply shown as default value.\n\nNote that this is a HTML-interpreted value, so you can add links as e.g. '{website}' or include images such as `This is of type A
`" + "description": "Renders this value. Note that \"{key}\"-parts are substituted by the corresponding values of the element.\nIf neither 'textFieldQuestion' nor 'mappings' are defined, this text is simply shown as default value.\n\nNote that this is a HTML-interpreted value, so you can add links as e.g. '{website}' or include images such as `This is of type A
`\ntype: rendered" }, "question": { "description": "If it turns out that this tagRendering doesn't match _any_ value, then we show this question.\nIf undefined, the question is never asked and this tagrendering is read-only" @@ -147,6 +154,9 @@ "description": "The type of the text-field, e.g. 'string', 'nat', 'float', 'date',...\nSee Docs/SpecialInputElements.md and UI/Input/ValidatedTextField.ts for supported values", "type": "string" }, + "placeholder": { + "description": "A (translated) text that is shown (as gray text) within the textfield" + }, "helperArgs": { "description": "Extra parameters to initialize the input helper arguments.\nFor semantics, see the 'SpecialInputElements.md'", "type": "array", @@ -194,7 +204,32 @@ ] }, "then": { - "description": "If the condition `if` is met, the text `then` will be rendered.\nIf not known yet, the user will be presented with `then` as an option" + "description": "If the condition `if` is met, the text `then` will be rendered.\nIf not known yet, the user will be presented with `then` as an option\nType: rendered" + }, + "icon": { + "description": "An icon supporting this mapping; typically shown pretty small\nType: icon", + "anyOf": [ + { + "type": "object", + "properties": { + "path": { + "description": "The path to the icon\nType: icon", + "type": "string" + }, + "class": { + "description": "A hint to mapcomplete on how to render this icon within the mapping.\nThis is translated to 'mapping-icon-', so defining your own in combination with a custom CSS is possible (but discouraged)", + "type": "string" + } + }, + "required": [ + "class", + "path" + ] + }, + { + "type": "string" + } + ] }, "hideInAnswer": { "description": "In some cases, multiple taggings exist (e.g. a default assumption, or a commonly mapped abbreviation and a fully written variation).\n\nIn the latter case, a correct text should be shown, but only a single, canonical tagging should be selectable by the user.\nIn this case, one of the mappings can be hiden by setting this flag.\n\nTo demonstrate an example making a default assumption:\n\nmappings: [\n {\n if: \"access=\", -- no access tag present, we assume accessible\n then: \"Accessible to the general public\",\n hideInAnswer: true\n },\n {\n if: \"access=yes\",\n then: \"Accessible to the general public\", -- the user selected this, we add that to OSM\n },\n {\n if: \"access=no\",\n then: \"Not accessible to the public\"\n }\n]\n\n\nFor example, for an operator, we have `operator=Agentschap Natuur en Bos`, which is often abbreviated to `operator=ANB`.\nThen, we would add two mappings:\n{\n if: \"operator=Agentschap Natuur en Bos\" -- the non-abbreviated version which should be uploaded\n then: \"Maintained by Agentschap Natuur en Bos\"\n},\n{\n if: \"operator=ANB\", -- we don't want to upload abbreviations\n then: \"Maintained by Agentschap Natuur en Bos\"\n hideInAnswer: true\n}\n\nHide in answer can also be a tagsfilter, e.g. to make sure an option is only shown when appropriate.\nKeep in mind that this is reverse logic: it will be hidden in the answer if the condition is true, it will thus only show in the case of a mismatch\n\ne.g., for toilets: if \"wheelchair=no\", we know there is no wheelchair dedicated room.\nFor the location of the changing table, the option \"in the wheelchair accessible toilet is weird\", so we write:\n\n{\n \"question\": \"Where is the changing table located?\"\n \"mappings\": [\n {\"if\":\"changing_table:location=female\",\"then\":\"In the female restroom\"},\n {\"if\":\"changing_table:location=male\",\"then\":\"In the male restroom\"},\n {\"if\":\"changing_table:location=wheelchair\",\"then\":\"In the wheelchair accessible restroom\", \"hideInAnswer\": \"wheelchair=no\"},\n \n ]\n}\n\nAlso have a look for the meta-tags\n{\n if: \"operator=Agentschap Natuur en Bos\",\n then: \"Maintained by Agentschap Natuur en Bos\",\n hideInAnswer: \"_country!=be\"\n}", @@ -238,7 +273,7 @@ }, "additionalProperties": false }, - "default_3": { + "default_4": { "description": "The PointRenderingConfig gives all details onto how to render a single point of a feature.\n\nThis can be used if:\n\n- The feature is a point\n- To render something at the centroid of an area, or at the start, end or projected centroid of a way", "type": "object", "properties": { @@ -246,17 +281,11 @@ "description": "All the locations that this point should be rendered at.\nUsing `location: [\"point\", \"centroid\"] will always render centerpoint", "type": "array", "items": { - "enum": [ - "centroid", - "end", - "point", - "start" - ], "type": "string" } }, "icon": { - "description": "The icon for an element.\nNote that this also doubles as the icon for this layer (rendered with the overpass-tags) ánd the icon in the presets.\n\nThe result of the icon is rendered as follows:\nthe resulting string is interpreted as a _list_ of items, separated by \";\". The bottommost layer is the first layer.\nAs a result, on could use a generic pin, then overlay it with a specific icon.\nTo make things even more practical, one can use all SVG's from the folder \"assets/svg\" and _substitute the color_ in it.\nE.g. to draw a red pin, use \"pin:#f00\", to have a green circle with your icon on top, use `circle:#0f0;`", + "description": "The icon for an element.\nNote that this also doubles as the icon for this layer (rendered with the overpass-tags) ánd the icon in the presets.\n\nThe result of the icon is rendered as follows:\nthe resulting string is interpreted as a _list_ of items, separated by \";\". The bottommost layer is the first layer.\nAs a result, on could use a generic pin, then overlay it with a specific icon.\nTo make things even more practical, one can use all SVG's from the folder \"assets/svg\" and _substitute the color_ in it.\nE.g. to draw a red pin, use \"pin:#f00\", to have a green circle with your icon on top, use `circle:#0f0;`\n\nType: icon", "anyOf": [ { "$ref": "#/definitions/TagRenderingConfigJson" @@ -283,6 +312,7 @@ ] }, "then": { + "description": "Badge to show\nType: icon", "anyOf": [ { "$ref": "#/definitions/TagRenderingConfigJson" @@ -338,7 +368,7 @@ ], "additionalProperties": false }, - "default_4": { + "default_5": { "description": "The LineRenderingConfig gives all details onto how to render a single line of a feature.\n\nThis can be used if:\n\n- The feature is a line\n- The feature is an area", "type": "object", "properties": { @@ -360,7 +390,10 @@ "$ref": "#/definitions/TagRenderingConfigJson" }, { - "type": "string" + "type": [ + "string", + "number" + ] } ] }, @@ -426,7 +459,7 @@ }, "additionalProperties": false }, - "default": { + "default_1": { "type": "object", "properties": { "id": { @@ -449,6 +482,26 @@ "type": "string" } ] + }, + "default": { + "type": "boolean" + }, + "fields": { + "type": "array", + "items": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "type": { + "type": "string" + } + }, + "required": [ + "name" + ] + } } }, "required": [ @@ -521,7 +574,7 @@ }, "additionalProperties": false }, - "default_2": { + "default_3": { "type": "object", "properties": { "enableImproveAccuracy": { @@ -535,7 +588,7 @@ }, "additionalProperties": false }, - "default_1": { + "default_2": { "type": "object", "properties": { "appliesToKey": { diff --git a/Docs/Schemas/TilesourceConfigJsonJSC.ts b/Docs/Schemas/TilesourceConfigJsonJSC.ts index a21c3f2ccb..bc487ece2c 100644 --- a/Docs/Schemas/TilesourceConfigJsonJSC.ts +++ b/Docs/Schemas/TilesourceConfigJsonJSC.ts @@ -109,15 +109,22 @@ export default { "type": "object", "properties": { "id": { - "description": "The id of the tagrendering, should be an unique string.\nUsed to keep the translations in sync. Only used in the tagRenderings-array of a layerConfig, not requered otherwise", + "description": "The id of the tagrendering, should be an unique string.\nUsed to keep the translations in sync. Only used in the tagRenderings-array of a layerConfig, not requered otherwise.\n\nUse 'questions' to trigger the question box of this group (if a group is defined)", "type": "string" }, "group": { "description": "If 'group' is defined on many tagRenderings, these are grouped together when shown. The questions are grouped together as well.\nThe first tagRendering of a group will always be a sticky element.", "type": "string" }, + "labels": { + "description": "A list of labels. These are strings that are used for various purposes, e.g. to filter them away", + "type": "array", + "items": { + "type": "string" + } + }, "render": { - "description": "Renders this value. Note that \"{key}\"-parts are substituted by the corresponding values of the element.\nIf neither 'textFieldQuestion' nor 'mappings' are defined, this text is simply shown as default value.\n\nNote that this is a HTML-interpreted value, so you can add links as e.g. '{website}' or include images such as `This is of type A
`" + "description": "Renders this value. Note that \"{key}\"-parts are substituted by the corresponding values of the element.\nIf neither 'textFieldQuestion' nor 'mappings' are defined, this text is simply shown as default value.\n\nNote that this is a HTML-interpreted value, so you can add links as e.g. '{website}' or include images such as `This is of type A
`\ntype: rendered" }, "question": { "description": "If it turns out that this tagRendering doesn't match _any_ value, then we show this question.\nIf undefined, the question is never asked and this tagrendering is read-only" @@ -145,6 +152,9 @@ export default { "description": "The type of the text-field, e.g. 'string', 'nat', 'float', 'date',...\nSee Docs/SpecialInputElements.md and UI/Input/ValidatedTextField.ts for supported values", "type": "string" }, + "placeholder": { + "description": "A (translated) text that is shown (as gray text) within the textfield" + }, "helperArgs": { "description": "Extra parameters to initialize the input helper arguments.\nFor semantics, see the 'SpecialInputElements.md'", "type": "array", @@ -192,7 +202,32 @@ export default { ] }, "then": { - "description": "If the condition `if` is met, the text `then` will be rendered.\nIf not known yet, the user will be presented with `then` as an option" + "description": "If the condition `if` is met, the text `then` will be rendered.\nIf not known yet, the user will be presented with `then` as an option\nType: rendered" + }, + "icon": { + "description": "An icon supporting this mapping; typically shown pretty small\nType: icon", + "anyOf": [ + { + "type": "object", + "properties": { + "path": { + "description": "The path to the icon\nType: icon", + "type": "string" + }, + "class": { + "description": "A hint to mapcomplete on how to render this icon within the mapping.\nThis is translated to 'mapping-icon-', so defining your own in combination with a custom CSS is possible (but discouraged)", + "type": "string" + } + }, + "required": [ + "class", + "path" + ] + }, + { + "type": "string" + } + ] }, "hideInAnswer": { "description": "In some cases, multiple taggings exist (e.g. a default assumption, or a commonly mapped abbreviation and a fully written variation).\n\nIn the latter case, a correct text should be shown, but only a single, canonical tagging should be selectable by the user.\nIn this case, one of the mappings can be hiden by setting this flag.\n\nTo demonstrate an example making a default assumption:\n\nmappings: [\n {\n if: \"access=\", -- no access tag present, we assume accessible\n then: \"Accessible to the general public\",\n hideInAnswer: true\n },\n {\n if: \"access=yes\",\n then: \"Accessible to the general public\", -- the user selected this, we add that to OSM\n },\n {\n if: \"access=no\",\n then: \"Not accessible to the public\"\n }\n]\n\n\nFor example, for an operator, we have `operator=Agentschap Natuur en Bos`, which is often abbreviated to `operator=ANB`.\nThen, we would add two mappings:\n{\n if: \"operator=Agentschap Natuur en Bos\" -- the non-abbreviated version which should be uploaded\n then: \"Maintained by Agentschap Natuur en Bos\"\n},\n{\n if: \"operator=ANB\", -- we don't want to upload abbreviations\n then: \"Maintained by Agentschap Natuur en Bos\"\n hideInAnswer: true\n}\n\nHide in answer can also be a tagsfilter, e.g. to make sure an option is only shown when appropriate.\nKeep in mind that this is reverse logic: it will be hidden in the answer if the condition is true, it will thus only show in the case of a mismatch\n\ne.g., for toilets: if \"wheelchair=no\", we know there is no wheelchair dedicated room.\nFor the location of the changing table, the option \"in the wheelchair accessible toilet is weird\", so we write:\n\n{\n \"question\": \"Where is the changing table located?\"\n \"mappings\": [\n {\"if\":\"changing_table:location=female\",\"then\":\"In the female restroom\"},\n {\"if\":\"changing_table:location=male\",\"then\":\"In the male restroom\"},\n {\"if\":\"changing_table:location=wheelchair\",\"then\":\"In the wheelchair accessible restroom\", \"hideInAnswer\": \"wheelchair=no\"},\n \n ]\n}\n\nAlso have a look for the meta-tags\n{\n if: \"operator=Agentschap Natuur en Bos\",\n then: \"Maintained by Agentschap Natuur en Bos\",\n hideInAnswer: \"_country!=be\"\n}", @@ -235,7 +270,7 @@ export default { } } }, - "default_3": { + "default_4": { "description": "The PointRenderingConfig gives all details onto how to render a single point of a feature.\n\nThis can be used if:\n\n- The feature is a point\n- To render something at the centroid of an area, or at the start, end or projected centroid of a way", "type": "object", "properties": { @@ -243,17 +278,11 @@ export default { "description": "All the locations that this point should be rendered at.\nUsing `location: [\"point\", \"centroid\"] will always render centerpoint", "type": "array", "items": { - "enum": [ - "centroid", - "end", - "point", - "start" - ], "type": "string" } }, "icon": { - "description": "The icon for an element.\nNote that this also doubles as the icon for this layer (rendered with the overpass-tags) ánd the icon in the presets.\n\nThe result of the icon is rendered as follows:\nthe resulting string is interpreted as a _list_ of items, separated by \";\". The bottommost layer is the first layer.\nAs a result, on could use a generic pin, then overlay it with a specific icon.\nTo make things even more practical, one can use all SVG's from the folder \"assets/svg\" and _substitute the color_ in it.\nE.g. to draw a red pin, use \"pin:#f00\", to have a green circle with your icon on top, use `circle:#0f0;`", + "description": "The icon for an element.\nNote that this also doubles as the icon for this layer (rendered with the overpass-tags) ánd the icon in the presets.\n\nThe result of the icon is rendered as follows:\nthe resulting string is interpreted as a _list_ of items, separated by \";\". The bottommost layer is the first layer.\nAs a result, on could use a generic pin, then overlay it with a specific icon.\nTo make things even more practical, one can use all SVG's from the folder \"assets/svg\" and _substitute the color_ in it.\nE.g. to draw a red pin, use \"pin:#f00\", to have a green circle with your icon on top, use `circle:#0f0;`\n\nType: icon", "anyOf": [ { "$ref": "#/definitions/TagRenderingConfigJson" @@ -280,6 +309,7 @@ export default { ] }, "then": { + "description": "Badge to show\nType: icon", "anyOf": [ { "$ref": "#/definitions/TagRenderingConfigJson" @@ -334,7 +364,7 @@ export default { "location" ] }, - "default_4": { + "default_5": { "description": "The LineRenderingConfig gives all details onto how to render a single line of a feature.\n\nThis can be used if:\n\n- The feature is a line\n- The feature is an area", "type": "object", "properties": { @@ -356,7 +386,10 @@ export default { "$ref": "#/definitions/TagRenderingConfigJson" }, { - "type": "string" + "type": [ + "string", + "number" + ] } ] }, @@ -421,7 +454,7 @@ export default { } } }, - "default": { + "default_1": { "type": "object", "properties": { "id": { @@ -444,6 +477,26 @@ export default { "type": "string" } ] + }, + "default": { + "type": "boolean" + }, + "fields": { + "type": "array", + "items": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "type": { + "type": "string" + } + }, + "required": [ + "name" + ] + } } }, "required": [ @@ -514,7 +567,7 @@ export default { } } }, - "default_2": { + "default_3": { "type": "object", "properties": { "enableImproveAccuracy": { @@ -527,7 +580,7 @@ export default { } } }, - "default_1": { + "default_2": { "type": "object", "properties": { "appliesToKey": { diff --git a/Docs/SpecialInputElements.md b/Docs/SpecialInputElements.md index 138054b30c..d6cde05f95 100644 --- a/Docs/SpecialInputElements.md +++ b/Docs/SpecialInputElements.md @@ -5,29 +5,91 @@ +## Table of contents + +1. [Available types for text fields](#available-types-for-text-fields) + + [string](#string) + + [text](#text) + + [date](#date) + + [nat](#nat) + + [int](#int) + + [decimal](#decimal) + + [direction](#direction) + + [wikidata](#wikidata) + + [pnat](#pnat) + + [float](#float) + + [pfloat](#pfloat) + + [email](#email) + + [url](#url) + + [phone](#phone) + + [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 -## string -A basic string -## text +### string -A string, but allows input of longer strings more comfortably and supports newlines (a text area) -## date -A date +A simple piece of text -## direction -A geographical direction, in degrees. 0° is north, 90° is east, ... Will return a value between 0 (incl) and 360 (excl) -## length +### text + + + +A longer piece of text + + + +### date + + + +A date with date picker + + + +### nat + + + +A positive number or zero + + + +### int + + + +A number + + + +### decimal + + A geographical length in meters (rounded at two points). Will give an extra minimap with a measurement tool. Arguments: [ zoomlevel, preferredBackgroundMapType (comma separated) ], e.g. `["21", "map,photo"] -## wikidata + + +### direction + + + +A geographical direction, in degrees. 0° is north, 90° is east, ... Will return a value between 0 (incl) and 360 (excl) + + + +### wikidata + + A wikidata identifier, e.g. Q42. @@ -70,39 +132,59 @@ removePostfixes | remove these snippets of text from the end of the passed strin } ``` -## int -A number -## nat +### pnat -A positive number or zero -## pnat A strict positive number -## float + + +### float + + A decimal -## pfloat -A positive decimal (incl zero) -## email +### pfloat + + + +A positive decimal (inclusive zero) + + + +### email + + An email adress -## url -A url -## phone +### url + + + +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 + + + +### phone + + A phone number -## opening_hours + + +### opening_hours + + Has extra elements to easily input when a POI is opened. @@ -141,8 +223,12 @@ 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 )` -## color + + +### color + + Shows a color picker -This document is autogenerated from ValidatedTextField.ts \ No newline at end of file +This document is autogenerated from [UI/Input/ValidatedTextField.ts](https://github.com/pietervdvn/MapComplete/blob/develop/UI/Input/ValidatedTextField.ts) \ No newline at end of file diff --git a/Docs/SpecialRenderings.md b/Docs/SpecialRenderings.md index 717e75e867..d95222141f 100644 --- a/Docs/SpecialRenderings.md +++ b/Docs/SpecialRenderings.md @@ -1,6 +1,65 @@ -### Special tag renderings + Special tag renderings +======================== + + + +## Table of contents + +1. [Special tag renderings](#special-tag-renderings) + + [all_tags](#all_tags) + * [Example usage of all_tags](#example-usage-of-all_tags) + + [image_carousel](#image_carousel) + * [Example usage of image_carousel](#example-usage-of-image_carousel) + + [image_upload](#image_upload) + * [Example usage of image_upload](#example-usage-of-image_upload) + + [wikipedia](#wikipedia) + * [Example usage of wikipedia](#example-usage-of-wikipedia) + + [minimap](#minimap) + * [Example usage of minimap](#example-usage-of-minimap) + + [sided_minimap](#sided_minimap) + * [Example usage of sided_minimap](#example-usage-of-sided_minimap) + + [reviews](#reviews) + * [Example usage of reviews](#example-usage-of-reviews) + + [opening_hours_table](#opening_hours_table) + * [Example usage of opening_hours_table](#example-usage-of-opening_hours_table) + + [live](#live) + * [Example usage of live](#example-usage-of-live) + + [histogram](#histogram) + * [Example usage of histogram](#example-usage-of-histogram) + + [share_link](#share_link) + * [Example usage of share_link](#example-usage-of-share_link) + + [canonical](#canonical) + * [Example usage of canonical](#example-usage-of-canonical) + + [import_button](#import_button) + * [Example usage of import_button](#example-usage-of-import_button) + + [import_way_button](#import_way_button) + * [Example usage of import_way_button](#example-usage-of-import_way_button) + + [conflate_button](#conflate_button) + * [Example usage of conflate_button](#example-usage-of-conflate_button) + + [multi_apply](#multi_apply) + * [Example usage of multi_apply](#example-usage-of-multi_apply) + + [tag_apply](#tag_apply) + * [Example usage of tag_apply](#example-usage-of-tag_apply) + + [export_as_gpx](#export_as_gpx) + * [Example usage of export_as_gpx](#example-usage-of-export_as_gpx) + + [export_as_geojson](#export_as_geojson) + * [Example usage of export_as_geojson](#example-usage-of-export_as_geojson) + + [open_in_iD](#open_in_id) + * [Example usage of open_in_iD](#example-usage-of-open_in_id) + + [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) @@ -10,30 +69,11 @@ General usage is `{func_name()}`, `{func_name(arg, someotherarg)}` or `{func_nam - - [all_tags](#all_tags) - - [image_carousel](#image_carousel) - - [image_upload](#image_upload) - - [wikipedia](#wikipedia) - - [minimap](#minimap) - - [sided_minimap](#sided_minimap) - - [reviews](#reviews) - - [opening_hours_table](#opening_hours_table) - - [live](#live) - - [histogram](#histogram) - - [share_link](#share_link) - - [canonical](#canonical) - - [import_button](#import_button) - - [multi_apply](#multi_apply) - - [tag_apply](#tag_apply) - - - - ### all_tags Prints all key-value pairs of the object - used for debugging -#### Example usage +#### Example usage of all_tags `{all_tags()}` @@ -48,7 +88,7 @@ name | default | description image key/prefix (multiple values allowed if comma-seperated) | image,mapillary,image,wikidata,wikimedia_commons,image,image | The keys given to the images, e.g. if image is given, the first picture URL will be added as image, the second as image:0, the third as image:1, etc... -#### Example usage +#### Example usage of image_carousel `{image_carousel(image,mapillary,image,wikidata,wikimedia_commons,image,image)}` @@ -64,7 +104,7 @@ image-key | image | Image tag to add the URL to (or image-tag:0, image-tag:1 whe label | Add image | The text to show on the button -#### Example usage +#### Example usage of image_upload `{image_upload(image,Add image)}` @@ -79,7 +119,7 @@ name | default | description keyToShowWikipediaFor | wikidata | Use the wikidata entry from this key to show the wikipedia article for -#### Example usage +#### 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 @@ -95,7 +135,7 @@ zoomlevel | 18 | The (maximum) zoomlevel: the target zoomlevel after fitting the idKey | id | (Matches all resting arguments) This argument should be the key of a property of the feature. The corresponding value is interpreted as either the id or the a list of ID's. The features with these ID's will be shown on this minimap. -#### Example usage +#### Example usage of minimap `{minimap()}`, `{minimap(17, id, _list_of_embedded_feature_ids_calculated_by_calculated_tag):height:10rem; border: 2px solid black}` @@ -110,7 +150,7 @@ name | default | description side | _undefined_ | The side to show, either `left` or `right` -#### Example usage +#### Example usage of sided_minimap `{sided_minimap(left)}` @@ -126,7 +166,7 @@ subjectKey | name | The key to use to determine the subject. If specified, the s fallback | _undefined_ | The identifier to use, if tags[subjectKey] as specified above is not available. This is effectively a fallback value -#### Example usage +#### 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 @@ -143,7 +183,7 @@ prefix | _empty string_ | Remove this string from the start of the value before postfix | _empty string_ | Remove this string from the end of the value before parsing. __Note: use `&RPARENs` to indicate `)` if needed__ -#### Example usage +#### 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)}` @@ -160,7 +200,7 @@ Shorthands | _undefined_ | A list of shorthands, of the format 'shorthandname:pa path | _undefined_ | The path (or shorthand) that should be returned -#### Example usage +#### 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)} @@ -173,12 +213,12 @@ path | _undefined_ | The path (or shorthand) that should be returned name | default | description ------ | --------- | ------------- key | _undefined_ | The key to be read and to generate a histogram from -title | _empty string_ | The text to put above the given values column -countHeader | _empty string_ | The text to put above the counts +title | _empty string_ | This text will be placed above the texts (in the first column of the visulasition) +countHeader | _empty string_ | This text will be placed above the bars colors* | _undefined_ | (Matches all resting arguments - optional) Matches a regex onto a color value, e.g. `3[a-zA-Z+-]*:#33cc33` -#### Example usage +#### Example usage of histogram `{histogram('some_key')}` with properties being `{some_key: ['a','b','a','c']} to create a histogram @@ -193,7 +233,7 @@ name | default | description url | _undefined_ | The url to share (default: current URL) -#### Example usage +#### Example usage of share_link {share_link()} to share the current page, {share_link()} to share the given url @@ -208,7 +248,7 @@ name | default | description key | _undefined_ | The key of the tag to give the canonical text for -#### Example usage +#### Example usage of canonical {canonical(length)} will give 42 metre (in french) @@ -216,8 +256,26 @@ key | _undefined_ | The key of the tag to give the canonical text for ### import_button - This button will copy the data from an external dataset into OpenStreetMap. It is only functional in official themes but can be tested in unofficial themes. + This button will copy the point from an external dataset into OpenStreetMap +Note that the contributor must zoom to at least zoomlevel 18 to be able to use this functionality. +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 (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. + +If a value to substitute is undefined, empty string will be used instead. + +This supports multiple values, e.g. `ref=$source:geometry:type/$source:geometry:ref` + +Remark that the syntax is slightly different then expected; it uses '$' to note a value to copy, followed by a name (matched with `[a-zA-Z0-9_:]*`). Sadly, delimiting with `{}` as these already mark the boundaries of the special rendering... + +Note that these values can be prepare with javascript in the theme by using a [calculatedTag](calculatedTags.md#calculating-tags-with-javascript) + #### Importing a dataset into OpenStreetMap: requirements If you want to import a dataset, make sure that: @@ -241,11 +299,35 @@ 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 + +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. 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_way_button + + This button will copy the data from an external dataset into OpenStreetMap + +Note that the contributor must zoom to at least zoomlevel 18 to be able to use this functionality. +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. @@ -258,25 +340,110 @@ 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) +#### Importing a dataset into OpenStreetMap: requirements - +If you want to import a dataset, make sure that: + +1. The dataset to import has a suitable license +2. The community has been informed of the import +3. All other requirements of the [import guidelines](https://wiki.openstreetmap.org/wiki/Import/Guidelines) have been followed + +There are also some technicalities in your theme to keep in mind: + +1. The new feature will be added and will flow through the program as any other new point as if it came from OSM. + This means that there should be a layer which will match the new tags and which will display it. +2. The original feature from your geojson layer will gain the tag '_imported=yes'. + This should be used to change the appearance or even to hide it (eg by changing the icon size to zero) +3. There should be a way for the theme to detect previously imported points, even after reloading. + A reference number to the original dataset is an excellent way to do this +4. When importing ways, the theme creator is also responsible of avoiding overlapping ways. + +#### Disabled in unofficial themes + +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 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 -minzoom | 18 | How far the contributor must zoom in before being able to import the point -Snap onto layer(s)/replace geometry with this other way | _undefined_ | - If the value corresponding with this key starts with 'way/' and the feature is a LineString or Polygon, the original OSM-way geometry will be changed to match the new geometry - - 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 -snap max distance | 5 | The maximum distance that this point will move to snap onto a layer (in meters) +snap_to_point_if | _undefined_ | Points with the given tags will be snapped to or moved +max_snap_distance | 5 | If the imported object is a LineString or (Multi)Polygon, already existing OSM-points will be reused to construct the geometry of the newly imported way +move_osm_point_if | _undefined_ | Moves the OSM-point to the newly imported point if these conditions are met +max_move_distance | 1 | If an OSM-point is moved, the maximum amount of meters it is moved. Capped on 20m +snap_onto_layers | _undefined_ | If no existing nearby point exists, but a line of a specified layer is closeby, snap to this layer instead +snap_to_layer_max_distance | 0.1 | Distance to distort the geometry to snap to this layer -#### Example usage +#### Example usage of import_way_button - `{import_button(,,Import this data into OpenStreetMap,./assets/svg/addSmall.svg,18,,5)}` + `{import_way_button(,,Import this data into OpenStreetMap,./assets/svg/addSmall.svg,,5,,1,,0.1)}` + + + +### conflate_button + + This button will modify the geometry of an existing OSM way to match the specified geometry. This can conflate OSM-ways with LineStrings and Polygons (only simple polygons with one single ring). An attempt is made to move points with special values to a decent new location (e.g. entrances) + +Note that the contributor must zoom to at least zoomlevel 18 to be able to use this functionality. +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 (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. + +If a value to substitute is undefined, empty string will be used instead. + +This supports multiple values, e.g. `ref=$source:geometry:type/$source:geometry:ref` + +Remark that the syntax is slightly different then expected; it uses '$' to note a value to copy, followed by a name (matched with `[a-zA-Z0-9_:]*`). Sadly, delimiting with `{}` as these already mark the boundaries of the special rendering... + +Note that these values can be prepare with javascript in the theme by using a [calculatedTag](calculatedTags.md#calculating-tags-with-javascript) + +#### Importing a dataset into OpenStreetMap: requirements + +If you want to import a dataset, make sure that: + +1. The dataset to import has a suitable license +2. The community has been informed of the import +3. All other requirements of the [import guidelines](https://wiki.openstreetmap.org/wiki/Import/Guidelines) have been followed + +There are also some technicalities in your theme to keep in mind: + +1. The new feature will be added and will flow through the program as any other new point as if it came from OSM. + This means that there should be a layer which will match the new tags and which will display it. +2. The original feature from your geojson layer will gain the tag '_imported=yes'. + This should be used to change the appearance or even to hide it (eg by changing the icon size to zero) +3. There should be a way for the theme to detect previously imported points, even after reloading. + A reference number to the original dataset is an excellent way to do this +4. When importing ways, the theme creator is also responsible of avoiding overlapping ways. + +#### Disabled in unofficial themes + +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 + + +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. 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 + + +#### Example usage of conflate_button + + `{conflate_button(,,Import this data into OpenStreetMap,./assets/svg/addSmall.svg,)}` @@ -286,14 +453,14 @@ snap max distance | 5 | The maximum distance that this point will move to snap o name | default | description ------ | --------- | ------------- -feature_ids | _undefined_ | A JSOn-serialized list of IDs of features to apply the tagging on +feature_ids | _undefined_ | A JSON-serialized list of IDs of features to apply the tagging on keys | _undefined_ | One key (or multiple keys, seperated by ';') of the attribute that should be copied onto the other features. text | _undefined_ | The text to show on the button autoapply | _undefined_ | A boolean indicating wether this tagging should be applied automatically if the relevant tags on this object are changed. A visual element indicating the multi_apply is still shown overwrite | _undefined_ | If set to 'true', the tags on the other objects will always be overwritten. The default behaviour will be to only change the tags on other objects if they are either undefined or had the same value before the change -#### Example usage +#### 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)} @@ -324,8 +491,137 @@ image | _undefined_ | An image to show to the contributor on the button id_of_object_to_apply_this_one | _undefined_ | If specified, applies the the tags onto _another_ object. The id will be read from properties[id_of_object_to_apply_this_one] of the selected object. The tags are still calculated based on the tags of the _selected_ element -#### Example usage +#### Example usage of tag_apply - `{tag_apply(survey_date:=$_now:date, Surveyed today!)}` + `{tag_apply(survey_date=$_now:date, Surveyed today!)}`, `{tag_apply(addr:street=$addr:street, Apply the address, apply_icon.svg, _closest_osm_id) -This document is autogenerated from UI/SpecialVisualisations.ts \ No newline at end of file + + +### export_as_gpx + + Exports the selected feature as GPX-file + +#### Example usage of export_as_gpx + + `{export_as_gpx()}` + + + +### export_as_geojson + + Exports the selected feature as GeoJson-file + +#### Example usage of export_as_geojson + + `{export_as_geojson()}` + + + +### open_in_iD + + Opens the current view in the iD-editor + +#### Example usage of open_in_iD + + `{open_in_iD()}` + + + +### clear_location_history + + A button to remove the travelled track information from the device + +#### Example usage of 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 + + A button to run many actions for many features at once. + +To effectively use this button, you'll need some ingredients: +- A target layer with features for which an action is defined in a tag rendering. The following special visualisations support an autoAction: import_way_button, tag_apply +- A host feature to place the auto-action on. This can be a big outline (such as a city). Another good option for this is the [current_view](./BuiltinLayers.md#current_view) +- Then, use a calculated tag on the host feature to determine the overlapping object ids +- At last, add this component + +name | default | description +------ | --------- | ------------- +target_layer | _undefined_ | The layer that the target features will reside in +target_feature_ids | _undefined_ | The key, of which the value contains a list of ids +tag_rendering_id | _undefined_ | The ID of the tagRendering containing the autoAction. This tagrendering will be calculated. The embedded actions will be executed +text | _undefined_ | The text to show on the button +icon | ./assets/svg/robot.svg | The icon to show on the button + + +#### Example usage of auto_apply + + `{auto_apply(,,,,./assets/svg/robot.svg)}` + +This document is autogenerated from [UI/SpecialVisualizations.ts](https://github.com/pietervdvn/MapComplete/blob/develop/UI/SpecialVisualizations.ts) \ No newline at end of file diff --git a/Docs/TagInfo/mapcomplete_aed.json b/Docs/TagInfo/mapcomplete_aed.json index b88de395d0..cede399932 100644 --- a/Docs/TagInfo/mapcomplete_aed.json +++ b/Docs/TagInfo/mapcomplete_aed.json @@ -72,7 +72,8 @@ }, { "key": "defibrillator", - "description": "Layer 'Defibrillators' shows and asks freeform values for key 'defibrillator' (in the MapComplete.osm.be theme 'Open AED Map')" + "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": "" }, { "key": "defibrillator", @@ -84,6 +85,10 @@ "description": "Layer 'Defibrillators' shows defibrillator=automatic with a fixed text, namely 'This is a normal automatic defibrillator' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open AED Map')", "value": "automatic" }, + { + "key": "defibrillator", + "description": "Layer 'Defibrillators' shows defibrillator~^..*$ with a fixed text, namely 'This is a special type of defibrillator: {defibrillator}' (in the MapComplete.osm.be theme 'Open AED Map')" + }, { "key": "level", "description": "Layer 'Defibrillators' shows and asks freeform values for key 'level' (in the MapComplete.osm.be theme 'Open AED Map')" @@ -167,6 +172,11 @@ { "key": "fixme", "description": "Layer 'Defibrillators' shows and asks freeform values for key 'fixme' (in the MapComplete.osm.be theme 'Open AED Map')" + }, + { + "key": "id", + "description": "The MapComplete theme Open AED Map has a layer Your travelled track showing features with this tag", + "value": "location_track" } ] } \ No newline at end of file diff --git a/Docs/TagInfo/mapcomplete_artwork.json b/Docs/TagInfo/mapcomplete_artwork.json index 307e32e7b7..47ac66d834 100644 --- a/Docs/TagInfo/mapcomplete_artwork.json +++ b/Docs/TagInfo/mapcomplete_artwork.json @@ -106,6 +106,11 @@ { "key": "wikidata", "description": "Layer 'Artworks' shows and asks freeform values for key 'wikidata' (in the MapComplete.osm.be theme 'Open Artwork Map')" + }, + { + "key": "id", + "description": "The MapComplete theme Open Artwork Map has a layer Your travelled track showing features with this tag", + "value": "location_track" } ] } \ No newline at end of file diff --git a/Docs/TagInfo/mapcomplete_benches.json b/Docs/TagInfo/mapcomplete_benches.json index 31b671d8e9..484abe6434 100644 --- a/Docs/TagInfo/mapcomplete_benches.json +++ b/Docs/TagInfo/mapcomplete_benches.json @@ -31,10 +31,6 @@ "key": "wikipedia", "description": "The layer 'Benches allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" }, - { - "key": "backrest", - "description": "Layer 'Benches' shows and asks freeform values for key 'backrest' (in the MapComplete.osm.be theme 'Benches')" - }, { "key": "backrest", "description": "Layer 'Benches' shows backrest=yes with a fixed text, namely 'Backrest: Yes' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Benches')", @@ -172,13 +168,40 @@ }, { "key": "bench", - "description": "Layer 'Benches at public transport stops' shows values with key 'bench' (in the MapComplete.osm.be theme 'Benches')" + "description": "Layer 'Benches at public transport stops' shows bench=yes with a fixed text, namely 'There is a normal, sit-down bench here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Benches')", + "value": "yes" + }, + { + "key": "bench", + "description": "Layer 'Benches at public transport stops' shows bench=stand_up_bench with a fixed text, namely 'Stand up bench' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Benches')", + "value": "stand_up_bench" + }, + { + "key": "bench", + "description": "Layer 'Benches at public transport stops' shows bench=no with a fixed text, namely 'There is no bench here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Benches')", + "value": "no" }, { "key": "leisure", "description": "The MapComplete theme Benches has a layer Picnic tables showing features with this tag", "value": "picnic_table" }, + { + "key": "image", + "description": "The layer 'Picnic tables allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "mapillary", + "description": "The layer 'Picnic tables allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "wikidata", + "description": "The layer 'Picnic tables allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "wikipedia", + "description": "The layer 'Picnic tables allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, { "key": "material", "description": "Layer 'Picnic tables' shows and asks freeform values for key 'material' (in the MapComplete.osm.be theme 'Benches')" @@ -192,6 +215,11 @@ "key": "material", "description": "Layer 'Picnic tables' shows material=concrete with a fixed text, namely 'This is a concrete picnic table' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Benches')", "value": "concrete" + }, + { + "key": "id", + "description": "The MapComplete theme Benches has a layer Your travelled track showing features with this tag", + "value": "location_track" } ] } \ No newline at end of file diff --git a/Docs/TagInfo/mapcomplete_bicycle_rental.json b/Docs/TagInfo/mapcomplete_bicycle_rental.json new file mode 100644 index 0000000000..6374d0914c --- /dev/null +++ b/Docs/TagInfo/mapcomplete_bicycle_rental.json @@ -0,0 +1,188 @@ +{ + "data_format": 1, + "project": { + "name": "MapComplete Bicycle rental", + "description": "A map with bicycle rental stations and bicycle rental shops", + "project_url": "https://mapcomplete.osm.be/bicycle_rental", + "doc_url": "https://github.com/pietervdvn/MapComplete/tree/master/assets/themes/", + "icon_url": "https://mapcomplete.osm.be/assets/themes/bicycle_rental/logo.svg", + "contact_name": "Pieter Vander Vennet, ", + "contact_email": "pietervdvn@posteo.net" + }, + "tags": [ + { + "key": "amenity", + "description": "The MapComplete theme Bicycle rental has a layer Bicycle rental showing features with this tag", + "value": "bicycle_rental" + }, + { + "key": "bicycle_rental", + "description": "The MapComplete theme Bicycle rental has a layer Bicycle rental showing features with this tag" + }, + { + "key": "service:bicycle:rental", + "description": "The MapComplete theme Bicycle rental has a layer Bicycle rental showing features with this tag", + "value": "yes" + }, + { + "key": "rental", + "description": "The MapComplete theme Bicycle rental has a layer Bicycle rental showing features with this tag" + }, + { + "key": "shop", + "description": "Layer 'Bicycle rental' shows shop=bicycle_rental&bicycle_rental=shop with a fixed text, namely 'This is a shop whose main focus is bicycle rental' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Bicycle rental')", + "value": "bicycle_rental" + }, + { + "key": "bicycle_rental", + "description": "Layer 'Bicycle rental' shows shop=bicycle_rental&bicycle_rental=shop with a fixed text, namely 'This is a shop whose main focus is bicycle rental' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Bicycle rental')", + "value": "shop" + }, + { + "key": "shop", + "description": "Layer 'Bicycle rental' shows shop=rental with a fixed text, namely 'This is a rental buisiness which rents out various objects and/or vehicles. It rents out bicycles too, but this is not the main focus' (in the MapComplete.osm.be theme 'Bicycle rental')", + "value": "rental" + }, + { + "key": "service:bicycle:rental", + "description": "Layer 'Bicycle rental' shows service:bicycle:rental=yes&shop=bicycle with a fixed text, namely 'This is a shop which sells or repairs bicycles, but also rents out bicycles' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Bicycle rental')", + "value": "yes" + }, + { + "key": "shop", + "description": "Layer 'Bicycle rental' shows service:bicycle:rental=yes&shop=bicycle with a fixed text, namely 'This is a shop which sells or repairs bicycles, but also rents out bicycles' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Bicycle rental')", + "value": "bicycle" + }, + { + "key": "bicycle_rental", + "description": "Layer 'Bicycle rental' shows bicycle_rental=docking_station with a fixed text, namely 'This is an automated docking station, where a bicycle is mechanically locked into a structure' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Bicycle rental')", + "value": "docking_station" + }, + { + "key": "bicycle_rental", + "description": "Layer 'Bicycle rental' shows bicycle_rental=key_dispensing_machine with a fixed text, namely 'A machine is present which dispenses and accepts keys, eventually after authentication and/or payment. The bicycles are parked nearby' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Bicycle rental')", + "value": "key_dispensing_machine" + }, + { + "key": "bicycle_rental", + "description": "Layer 'Bicycle rental' shows bicycle_rental=dropoff_point with a fixed text, namely 'This is a dropoff point: a designated bicycle parking for this cycle rental' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Bicycle rental')", + "value": "dropoff_point" + }, + { + "key": "website", + "description": "Layer 'Bicycle rental' shows and asks freeform values for key 'website' (in the MapComplete.osm.be theme 'Bicycle rental')" + }, + { + "key": "contact:website", + "description": "Layer 'Bicycle rental' shows contact:website~^..*$ with a fixed text, namely '{contact:website}' (in the MapComplete.osm.be theme 'Bicycle rental')" + }, + { + "key": "email", + "description": "Layer 'Bicycle rental' shows and asks freeform values for key 'email' (in the MapComplete.osm.be theme 'Bicycle rental')" + }, + { + "key": "contact:email", + "description": "Layer 'Bicycle rental' shows contact:email~^..*$ with a fixed text, namely '{contact:email}' (in the MapComplete.osm.be theme 'Bicycle rental')" + }, + { + "key": "phone", + "description": "Layer 'Bicycle rental' shows and asks freeform values for key 'phone' (in the MapComplete.osm.be theme 'Bicycle rental')" + }, + { + "key": "contact:phone", + "description": "Layer 'Bicycle rental' shows contact:phone~^..*$ with a fixed text, namely '{contact:phone}' (in the MapComplete.osm.be theme 'Bicycle rental')" + }, + { + "key": "opening_hours", + "description": "Layer 'Bicycle rental' shows and asks freeform values for key 'opening_hours' (in the MapComplete.osm.be theme 'Bicycle rental')" + }, + { + "key": "payment:cash", + "description": "Layer 'Bicycle rental' shows payment:cash=yes with a fixed text, namely 'Cash is accepted here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Bicycle rental')", + "value": "yes" + }, + { + "key": "payment:cards", + "description": "Layer 'Bicycle rental' shows payment:cards=yes with a fixed text, namely 'Payment cards are accepted here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Bicycle rental')", + "value": "yes" + }, + { + "key": "payment:cash", + "description": "Layer 'Bicycle rental' shows payment:cash=yes with a fixed text, namely 'Cash is accepted here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Bicycle rental')", + "value": "yes" + }, + { + "key": "payment:cards", + "description": "Layer 'Bicycle rental' shows payment:cards=yes with a fixed text, namely 'Payment cards are accepted here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Bicycle rental')", + "value": "yes" + }, + { + "key": "payment:app", + "description": "Layer 'Bicycle rental' shows payment:app=yes with a fixed text, namely 'Payment is done using a dedicated app' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Bicycle rental')", + "value": "yes" + }, + { + "key": "payment:membership_card", + "description": "Layer 'Bicycle rental' shows payment:membership_card=yes with a fixed text, namely 'Payment is done using a membership card' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Bicycle rental')", + "value": "yes" + }, + { + "key": "rental", + "description": "Layer 'Bicycle rental' shows and asks freeform values for key 'rental' (in the MapComplete.osm.be theme 'Bicycle rental')" + }, + { + "key": "rental", + "description": "Layer 'Bicycle rental' shows rental=city_bike with a fixed text, namely 'Normal city bikes can be rented here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Bicycle rental')", + "value": "city_bike" + }, + { + "key": "rental", + "description": "Layer 'Bicycle rental' shows rental=ebike with a fixed text, namely 'Electrical bikes can be rented here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Bicycle rental')", + "value": "ebike" + }, + { + "key": "rental", + "description": "Layer 'Bicycle rental' shows rental=bmx with a fixed text, namely 'BMX bikes can be rented here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Bicycle rental')", + "value": "bmx" + }, + { + "key": "rental", + "description": "Layer 'Bicycle rental' shows rental=mtb with a fixed text, namely 'Mountainbikes can be rented here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Bicycle rental')", + "value": "mtb" + }, + { + "key": "rental", + "description": "Layer 'Bicycle rental' shows rental=kid_bike with a fixed text, namely 'Bikes for childs can be rented here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Bicycle rental')", + "value": "kid_bike" + }, + { + "key": "capacity:city_bike", + "description": "Layer 'Bicycle rental' shows and asks freeform values for key 'capacity:city_bike' (in the MapComplete.osm.be theme 'Bicycle rental')" + }, + { + "key": "capacity:ebike", + "description": "Layer 'Bicycle rental' shows and asks freeform values for key 'capacity:ebike' (in the MapComplete.osm.be theme 'Bicycle rental')" + }, + { + "key": "capacity:kid_bike", + "description": "Layer 'Bicycle rental' shows and asks freeform values for key 'capacity:kid_bike' (in the MapComplete.osm.be theme 'Bicycle rental')" + }, + { + "key": "capacity:bmx", + "description": "Layer 'Bicycle rental' shows and asks freeform values for key 'capacity:bmx' (in the MapComplete.osm.be theme 'Bicycle rental')" + }, + { + "key": "capacity:mtb", + "description": "Layer 'Bicycle rental' shows and asks freeform values for key 'capacity:mtb' (in the MapComplete.osm.be theme 'Bicycle rental')" + }, + { + "key": "capacity:bicycle_pannier", + "description": "Layer 'Bicycle rental' shows and asks freeform values for key 'capacity:bicycle_pannier' (in the MapComplete.osm.be theme 'Bicycle rental')" + }, + { + "key": "id", + "description": "The MapComplete theme Bicycle rental has a layer Your travelled track showing features with this tag", + "value": "location_track" + } + ] +} \ No newline at end of file diff --git a/Docs/TagInfo/mapcomplete_bicyclelib.json b/Docs/TagInfo/mapcomplete_bicyclelib.json index d71e32d28d..7da19e1fa0 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": "" }, { @@ -93,6 +105,11 @@ { "key": "description", "description": "Layer 'Bicycle library' shows and asks freeform values for key 'description' (in the MapComplete.osm.be theme 'Bicycle libraries')" + }, + { + "key": "id", + "description": "The MapComplete theme Bicycle libraries has a layer Your travelled track showing features with this tag", + "value": "location_track" } ] } \ No newline at end of file diff --git a/Docs/TagInfo/mapcomplete_binoculars.json b/Docs/TagInfo/mapcomplete_binoculars.json index 8b9686cc60..f59c30a1fd 100644 --- a/Docs/TagInfo/mapcomplete_binoculars.json +++ b/Docs/TagInfo/mapcomplete_binoculars.json @@ -37,17 +37,22 @@ }, { "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": "" }, { "key": "direction", "description": "Layer 'Binoculars' shows and asks freeform values for key 'direction' (in the MapComplete.osm.be theme 'Binoculars')" + }, + { + "key": "id", + "description": "The MapComplete theme Binoculars has a layer Your travelled track showing features with this tag", + "value": "location_track" } ] } \ No newline at end of file diff --git a/Docs/TagInfo/mapcomplete_bookcases.json b/Docs/TagInfo/mapcomplete_bookcases.json index 091b4a833e..8f96b076ba 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": "" }, { @@ -143,6 +143,11 @@ { "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 Your travelled track showing features with this tag", + "value": "location_track" } ] } \ No newline at end of file diff --git a/Docs/TagInfo/mapcomplete_cafes_and_pubs.json b/Docs/TagInfo/mapcomplete_cafes_and_pubs.json index a72df9b193..285464bfa4 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')", @@ -160,6 +172,11 @@ "key": "dog", "description": "Layer 'Cafés and pubs' shows dog=unleashed with a fixed text, namely 'Dogs are allowed and can run around freely' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cafés and pubs')", "value": "unleashed" + }, + { + "key": "id", + "description": "The MapComplete theme Cafés and pubs has a layer Your travelled track showing features with this tag", + "value": "location_track" } ] } \ No newline at end of file diff --git a/Docs/TagInfo/mapcomplete_campersite.json b/Docs/TagInfo/mapcomplete_campersite.json index 5578180b09..0c2ed63afd 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": "" }, { @@ -252,6 +252,11 @@ "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 travelled track showing features with this tag", + "value": "location_track" } ] } \ No newline at end of file diff --git a/Docs/TagInfo/mapcomplete_charging_stations.json b/Docs/TagInfo/mapcomplete_charging_stations.json index 5f23aa146c..00fe86ead0 100644 --- a/Docs/TagInfo/mapcomplete_charging_stations.json +++ b/Docs/TagInfo/mapcomplete_charging_stations.json @@ -48,7 +48,7 @@ }, { "key": "bicycle", - "description": "Layer 'Charging stations' shows bicycle=yes with a fixed text, namely 'Bcycles can be charged here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations')", + "description": "Layer 'Charging stations' shows bicycle=yes with a fixed text, namely 'Bicycles can be charged here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations')", "value": "yes" }, { @@ -210,16 +210,16 @@ }, { "key": "socket:tesla_destination", - "description": "Layer 'Charging stations' shows socket:tesla_destination~^..*$&socket:tesla_destination!~^1$ with a fixed text, namely '
Tesla Supercharger (destination)
' (in the MapComplete.osm.be theme 'Charging stations')" + "description": "Layer 'Charging stations' shows socket:tesla_destination~^..*$&socket:tesla_destination!~^1$&_country=us with a fixed text, namely '
Tesla Supercharger (destination)
' (in the MapComplete.osm.be theme 'Charging stations')" }, { "key": "socket:tesla_destination", - "description": "Layer 'Charging stations' shows socket:tesla_destination=1 with a fixed text, namely '
Tesla supercharger (destination (A Type 2 with cable branded as tesla)
' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations')", + "description": "Layer 'Charging stations' shows socket:tesla_destination=1 with a fixed text, namely '
Tesla supercharger (destination) (A Type 2 with cable branded as tesla)
' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations')", "value": "1" }, { "key": "socket:tesla_destination", - "description": "Layer 'Charging stations' shows socket:tesla_destination~^..*$&socket:tesla_destination!~^1$ with a fixed text, namely '
Tesla supercharger (destination (A Type 2 with cable branded as tesla)
' (in the MapComplete.osm.be theme 'Charging stations')" + "description": "Layer 'Charging stations' shows socket:tesla_destination~^..*$&socket:tesla_destination!~^1$&_country!~^us$ with a fixed text, namely '
Tesla supercharger (destination) (A Type 2 with cable branded as tesla)
' (in the MapComplete.osm.be theme 'Charging stations')" }, { "key": "socket:USB-A", @@ -312,6 +312,573 @@ "key": "socket:bosch_5pin", "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:bosch_5pin' (in the MapComplete.osm.be theme 'Charging stations')" }, + { + "key": "socket:schuko:voltage", + "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:schuko:voltage' (in the MapComplete.osm.be theme 'Charging stations')" + }, + { + "key": "socket:socket:schuko:voltage", + "description": "Layer 'Charging stations' shows socket:socket:schuko:voltage=230 V with a fixed text, namely '
Schuko wall plug without ground pin (CEE7/4 type F)
outputs 230 volt' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations')", + "value": "230 V" + }, + { + "key": "socket:schuko:current", + "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:schuko:current' (in the MapComplete.osm.be theme 'Charging stations')" + }, + { + "key": "socket:socket:schuko:current", + "description": "Layer 'Charging stations' shows socket:socket:schuko:current=16 A with a fixed text, namely '
Schuko wall plug without ground pin (CEE7/4 type F)
outputs at most 16 A' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations')", + "value": "16 A" + }, + { + "key": "socket:schuko:output", + "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:schuko:output' (in the MapComplete.osm.be theme 'Charging stations')" + }, + { + "key": "socket:socket:schuko:output", + "description": "Layer 'Charging stations' shows socket:socket:schuko:output=3.6 kw with a fixed text, namely '
Schuko wall plug without ground pin (CEE7/4 type F)
outputs at most 3.6 kw' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations')", + "value": "3.6 kw" + }, + { + "key": "socket:typee:voltage", + "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:typee:voltage' (in the MapComplete.osm.be theme 'Charging stations')" + }, + { + "key": "socket:socket:typee:voltage", + "description": "Layer 'Charging stations' shows socket:socket:typee:voltage=230 V with a fixed text, namely '
European wall plug with ground pin (CEE7/4 type E)
outputs 230 volt' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations')", + "value": "230 V" + }, + { + "key": "socket:typee:current", + "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:typee:current' (in the MapComplete.osm.be theme 'Charging stations')" + }, + { + "key": "socket:socket:typee:current", + "description": "Layer 'Charging stations' shows socket:socket:typee:current=16 A with a fixed text, namely '
European wall plug with ground pin (CEE7/4 type E)
outputs at most 16 A' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations')", + "value": "16 A" + }, + { + "key": "socket:typee:output", + "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:typee:output' (in the MapComplete.osm.be theme 'Charging stations')" + }, + { + "key": "socket:socket:typee:output", + "description": "Layer 'Charging stations' shows socket:socket:typee:output=3 kw with a fixed text, namely '
European wall plug with ground pin (CEE7/4 type E)
outputs at most 3 kw' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations')", + "value": "3 kw" + }, + { + "key": "socket:socket:typee:output", + "description": "Layer 'Charging stations' shows socket:socket:typee:output=22 kw with a fixed text, namely '
European wall plug with ground pin (CEE7/4 type E)
outputs at most 22 kw' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations')", + "value": "22 kw" + }, + { + "key": "socket:chademo:voltage", + "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:chademo:voltage' (in the MapComplete.osm.be theme 'Charging stations')" + }, + { + "key": "socket:socket:chademo:voltage", + "description": "Layer 'Charging stations' shows socket:socket:chademo:voltage=500 V with a fixed text, namely '
Chademo
outputs 500 volt' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations')", + "value": "500 V" + }, + { + "key": "socket:chademo:current", + "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:chademo:current' (in the MapComplete.osm.be theme 'Charging stations')" + }, + { + "key": "socket:socket:chademo:current", + "description": "Layer 'Charging stations' shows socket:socket:chademo:current=120 A with a fixed text, namely '
Chademo
outputs at most 120 A' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations')", + "value": "120 A" + }, + { + "key": "socket:chademo:output", + "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:chademo:output' (in the MapComplete.osm.be theme 'Charging stations')" + }, + { + "key": "socket:socket:chademo:output", + "description": "Layer 'Charging stations' shows socket:socket:chademo:output=50 kw with a fixed text, namely '
Chademo
outputs at most 50 kw' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations')", + "value": "50 kw" + }, + { + "key": "socket:type1_cable:voltage", + "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:type1_cable:voltage' (in the MapComplete.osm.be theme 'Charging stations')" + }, + { + "key": "socket:socket:type1_cable:voltage", + "description": "Layer 'Charging stations' shows socket:socket:type1_cable:voltage=200 V with a fixed text, namely '
Type 1 with cable (J1772)
outputs 200 volt' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations')", + "value": "200 V" + }, + { + "key": "socket:socket:type1_cable:voltage", + "description": "Layer 'Charging stations' shows socket:socket:type1_cable:voltage=240 V with a fixed text, namely '
Type 1 with cable (J1772)
outputs 240 volt' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations')", + "value": "240 V" + }, + { + "key": "socket:type1_cable:current", + "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:type1_cable:current' (in the MapComplete.osm.be theme 'Charging stations')" + }, + { + "key": "socket:socket:type1_cable:current", + "description": "Layer 'Charging stations' shows socket:socket:type1_cable:current=32 A with a fixed text, namely '
Type 1 with cable (J1772)
outputs at most 32 A' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations')", + "value": "32 A" + }, + { + "key": "socket:type1_cable:output", + "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:type1_cable:output' (in the MapComplete.osm.be theme 'Charging stations')" + }, + { + "key": "socket:socket:type1_cable:output", + "description": "Layer 'Charging stations' shows socket:socket:type1_cable:output=3.7 kw with a fixed text, namely '
Type 1 with cable (J1772)
outputs at most 3.7 kw' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations')", + "value": "3.7 kw" + }, + { + "key": "socket:socket:type1_cable:output", + "description": "Layer 'Charging stations' shows socket:socket:type1_cable:output=7 kw with a fixed text, namely '
Type 1 with cable (J1772)
outputs at most 7 kw' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations')", + "value": "7 kw" + }, + { + "key": "socket:type1:voltage", + "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:type1:voltage' (in the MapComplete.osm.be theme 'Charging stations')" + }, + { + "key": "socket:socket:type1:voltage", + "description": "Layer 'Charging stations' shows socket:socket:type1:voltage=200 V with a fixed text, namely '
Type 1 without cable (J1772)
outputs 200 volt' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations')", + "value": "200 V" + }, + { + "key": "socket:socket:type1:voltage", + "description": "Layer 'Charging stations' shows socket:socket:type1:voltage=240 V with a fixed text, namely '
Type 1 without cable (J1772)
outputs 240 volt' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations')", + "value": "240 V" + }, + { + "key": "socket:type1:current", + "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:type1:current' (in the MapComplete.osm.be theme 'Charging stations')" + }, + { + "key": "socket:socket:type1:current", + "description": "Layer 'Charging stations' shows socket:socket:type1:current=32 A with a fixed text, namely '
Type 1 without cable (J1772)
outputs at most 32 A' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations')", + "value": "32 A" + }, + { + "key": "socket:type1:output", + "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:type1:output' (in the MapComplete.osm.be theme 'Charging stations')" + }, + { + "key": "socket:socket:type1:output", + "description": "Layer 'Charging stations' shows socket:socket:type1:output=3.7 kw with a fixed text, namely '
Type 1 without cable (J1772)
outputs at most 3.7 kw' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations')", + "value": "3.7 kw" + }, + { + "key": "socket:socket:type1:output", + "description": "Layer 'Charging stations' shows socket:socket:type1:output=6.6 kw with a fixed text, namely '
Type 1 without cable (J1772)
outputs at most 6.6 kw' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations')", + "value": "6.6 kw" + }, + { + "key": "socket:socket:type1:output", + "description": "Layer 'Charging stations' shows socket:socket:type1:output=7 kw with a fixed text, namely '
Type 1 without cable (J1772)
outputs at most 7 kw' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations')", + "value": "7 kw" + }, + { + "key": "socket:socket:type1:output", + "description": "Layer 'Charging stations' shows socket:socket:type1:output=7.2 kw with a fixed text, namely '
Type 1 without cable (J1772)
outputs at most 7.2 kw' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations')", + "value": "7.2 kw" + }, + { + "key": "socket:type1_combo:voltage", + "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:type1_combo:voltage' (in the MapComplete.osm.be theme 'Charging stations')" + }, + { + "key": "socket:socket:type1_combo:voltage", + "description": "Layer 'Charging stations' shows socket:socket:type1_combo:voltage=400 V with a fixed text, namely '
Type 1 CCS (aka Type 1 Combo)
outputs 400 volt' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations')", + "value": "400 V" + }, + { + "key": "socket:socket:type1_combo:voltage", + "description": "Layer 'Charging stations' shows socket:socket:type1_combo:voltage=1000 V with a fixed text, namely '
Type 1 CCS (aka Type 1 Combo)
outputs 1000 volt' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations')", + "value": "1000 V" + }, + { + "key": "socket:type1_combo:current", + "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:type1_combo:current' (in the MapComplete.osm.be theme 'Charging stations')" + }, + { + "key": "socket:socket:type1_combo:current", + "description": "Layer 'Charging stations' shows socket:socket:type1_combo:current=50 A with a fixed text, namely '
Type 1 CCS (aka Type 1 Combo)
outputs at most 50 A' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations')", + "value": "50 A" + }, + { + "key": "socket:socket:type1_combo:current", + "description": "Layer 'Charging stations' shows socket:socket:type1_combo:current=125 A with a fixed text, namely '
Type 1 CCS (aka Type 1 Combo)
outputs at most 125 A' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations')", + "value": "125 A" + }, + { + "key": "socket:type1_combo:output", + "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:type1_combo:output' (in the MapComplete.osm.be theme 'Charging stations')" + }, + { + "key": "socket:socket:type1_combo:output", + "description": "Layer 'Charging stations' shows socket:socket:type1_combo:output=50 kw with a fixed text, namely '
Type 1 CCS (aka Type 1 Combo)
outputs at most 50 kw' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations')", + "value": "50 kw" + }, + { + "key": "socket:socket:type1_combo:output", + "description": "Layer 'Charging stations' shows socket:socket:type1_combo:output=62.5 kw with a fixed text, namely '
Type 1 CCS (aka Type 1 Combo)
outputs at most 62.5 kw' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations')", + "value": "62.5 kw" + }, + { + "key": "socket:socket:type1_combo:output", + "description": "Layer 'Charging stations' shows socket:socket:type1_combo:output=150 kw with a fixed text, namely '
Type 1 CCS (aka Type 1 Combo)
outputs at most 150 kw' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations')", + "value": "150 kw" + }, + { + "key": "socket:socket:type1_combo:output", + "description": "Layer 'Charging stations' shows socket:socket:type1_combo:output=350 kw with a fixed text, namely '
Type 1 CCS (aka Type 1 Combo)
outputs at most 350 kw' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations')", + "value": "350 kw" + }, + { + "key": "socket:tesla_supercharger:voltage", + "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:tesla_supercharger:voltage' (in the MapComplete.osm.be theme 'Charging stations')" + }, + { + "key": "socket:socket:tesla_supercharger:voltage", + "description": "Layer 'Charging stations' shows socket:socket:tesla_supercharger:voltage=480 V with a fixed text, namely '
Tesla Supercharger
outputs 480 volt' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations')", + "value": "480 V" + }, + { + "key": "socket:tesla_supercharger:current", + "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:tesla_supercharger:current' (in the MapComplete.osm.be theme 'Charging stations')" + }, + { + "key": "socket:socket:tesla_supercharger:current", + "description": "Layer 'Charging stations' shows socket:socket:tesla_supercharger:current=125 A with a fixed text, namely '
Tesla Supercharger
outputs at most 125 A' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations')", + "value": "125 A" + }, + { + "key": "socket:socket:tesla_supercharger:current", + "description": "Layer 'Charging stations' shows socket:socket:tesla_supercharger:current=350 A with a fixed text, namely '
Tesla Supercharger
outputs at most 350 A' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations')", + "value": "350 A" + }, + { + "key": "socket:tesla_supercharger:output", + "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:tesla_supercharger:output' (in the MapComplete.osm.be theme 'Charging stations')" + }, + { + "key": "socket:socket:tesla_supercharger:output", + "description": "Layer 'Charging stations' shows socket:socket:tesla_supercharger:output=120 kw with a fixed text, namely '
Tesla Supercharger
outputs at most 120 kw' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations')", + "value": "120 kw" + }, + { + "key": "socket:socket:tesla_supercharger:output", + "description": "Layer 'Charging stations' shows socket:socket:tesla_supercharger:output=150 kw with a fixed text, namely '
Tesla Supercharger
outputs at most 150 kw' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations')", + "value": "150 kw" + }, + { + "key": "socket:socket:tesla_supercharger:output", + "description": "Layer 'Charging stations' shows socket:socket:tesla_supercharger:output=250 kw with a fixed text, namely '
Tesla Supercharger
outputs at most 250 kw' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations')", + "value": "250 kw" + }, + { + "key": "socket:type2:voltage", + "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:type2:voltage' (in the MapComplete.osm.be theme 'Charging stations')" + }, + { + "key": "socket:socket:type2:voltage", + "description": "Layer 'Charging stations' shows socket:socket:type2:voltage=230 V with a fixed text, namely '
Type 2 (mennekes)
outputs 230 volt' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations')", + "value": "230 V" + }, + { + "key": "socket:socket:type2:voltage", + "description": "Layer 'Charging stations' shows socket:socket:type2:voltage=400 V with a fixed text, namely '
Type 2 (mennekes)
outputs 400 volt' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations')", + "value": "400 V" + }, + { + "key": "socket:type2:current", + "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:type2:current' (in the MapComplete.osm.be theme 'Charging stations')" + }, + { + "key": "socket:socket:type2:current", + "description": "Layer 'Charging stations' shows socket:socket:type2:current=16 A with a fixed text, namely '
Type 2 (mennekes)
outputs at most 16 A' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations')", + "value": "16 A" + }, + { + "key": "socket:socket:type2:current", + "description": "Layer 'Charging stations' shows socket:socket:type2:current=32 A with a fixed text, namely '
Type 2 (mennekes)
outputs at most 32 A' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations')", + "value": "32 A" + }, + { + "key": "socket:type2:output", + "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:type2:output' (in the MapComplete.osm.be theme 'Charging stations')" + }, + { + "key": "socket:socket:type2:output", + "description": "Layer 'Charging stations' shows socket:socket:type2:output=11 kw with a fixed text, namely '
Type 2 (mennekes)
outputs at most 11 kw' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations')", + "value": "11 kw" + }, + { + "key": "socket:socket:type2:output", + "description": "Layer 'Charging stations' shows socket:socket:type2:output=22 kw with a fixed text, namely '
Type 2 (mennekes)
outputs at most 22 kw' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations')", + "value": "22 kw" + }, + { + "key": "socket:type2_combo:voltage", + "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:type2_combo:voltage' (in the MapComplete.osm.be theme 'Charging stations')" + }, + { + "key": "socket:socket:type2_combo:voltage", + "description": "Layer 'Charging stations' shows socket:socket:type2_combo:voltage=500 V with a fixed text, namely '
Type 2 CCS (mennekes)
outputs 500 volt' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations')", + "value": "500 V" + }, + { + "key": "socket:socket:type2_combo:voltage", + "description": "Layer 'Charging stations' shows socket:socket:type2_combo:voltage=920 V with a fixed text, namely '
Type 2 CCS (mennekes)
outputs 920 volt' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations')", + "value": "920 V" + }, + { + "key": "socket:type2_combo:current", + "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:type2_combo:current' (in the MapComplete.osm.be theme 'Charging stations')" + }, + { + "key": "socket:socket:type2_combo:current", + "description": "Layer 'Charging stations' shows socket:socket:type2_combo:current=125 A with a fixed text, namely '
Type 2 CCS (mennekes)
outputs at most 125 A' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations')", + "value": "125 A" + }, + { + "key": "socket:socket:type2_combo:current", + "description": "Layer 'Charging stations' shows socket:socket:type2_combo:current=350 A with a fixed text, namely '
Type 2 CCS (mennekes)
outputs at most 350 A' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations')", + "value": "350 A" + }, + { + "key": "socket:type2_combo:output", + "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:type2_combo:output' (in the MapComplete.osm.be theme 'Charging stations')" + }, + { + "key": "socket:socket:type2_combo:output", + "description": "Layer 'Charging stations' shows socket:socket:type2_combo:output=50 kw with a fixed text, namely '
Type 2 CCS (mennekes)
outputs at most 50 kw' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations')", + "value": "50 kw" + }, + { + "key": "socket:type2_cable:voltage", + "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:type2_cable:voltage' (in the MapComplete.osm.be theme 'Charging stations')" + }, + { + "key": "socket:socket:type2_cable:voltage", + "description": "Layer 'Charging stations' shows socket:socket:type2_cable:voltage=230 V with a fixed text, namely '
Type 2 with cable (mennekes)
outputs 230 volt' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations')", + "value": "230 V" + }, + { + "key": "socket:socket:type2_cable:voltage", + "description": "Layer 'Charging stations' shows socket:socket:type2_cable:voltage=400 V with a fixed text, namely '
Type 2 with cable (mennekes)
outputs 400 volt' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations')", + "value": "400 V" + }, + { + "key": "socket:type2_cable:current", + "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:type2_cable:current' (in the MapComplete.osm.be theme 'Charging stations')" + }, + { + "key": "socket:socket:type2_cable:current", + "description": "Layer 'Charging stations' shows socket:socket:type2_cable:current=16 A with a fixed text, namely '
Type 2 with cable (mennekes)
outputs at most 16 A' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations')", + "value": "16 A" + }, + { + "key": "socket:socket:type2_cable:current", + "description": "Layer 'Charging stations' shows socket:socket:type2_cable:current=32 A with a fixed text, namely '
Type 2 with cable (mennekes)
outputs at most 32 A' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations')", + "value": "32 A" + }, + { + "key": "socket:type2_cable:output", + "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:type2_cable:output' (in the MapComplete.osm.be theme 'Charging stations')" + }, + { + "key": "socket:socket:type2_cable:output", + "description": "Layer 'Charging stations' shows socket:socket:type2_cable:output=11 kw with a fixed text, namely '
Type 2 with cable (mennekes)
outputs at most 11 kw' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations')", + "value": "11 kw" + }, + { + "key": "socket:socket:type2_cable:output", + "description": "Layer 'Charging stations' shows socket:socket:type2_cable:output=22 kw with a fixed text, namely '
Type 2 with cable (mennekes)
outputs at most 22 kw' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations')", + "value": "22 kw" + }, + { + "key": "socket:tesla_supercharger_ccs:voltage", + "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:tesla_supercharger_ccs:voltage' (in the MapComplete.osm.be theme 'Charging stations')" + }, + { + "key": "socket:socket:tesla_supercharger_ccs:voltage", + "description": "Layer 'Charging stations' shows socket:socket:tesla_supercharger_ccs:voltage=500 V with a fixed text, namely '
Tesla Supercharger CCS (a branded type2_css)
outputs 500 volt' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations')", + "value": "500 V" + }, + { + "key": "socket:socket:tesla_supercharger_ccs:voltage", + "description": "Layer 'Charging stations' shows socket:socket:tesla_supercharger_ccs:voltage=920 V with a fixed text, namely '
Tesla Supercharger CCS (a branded type2_css)
outputs 920 volt' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations')", + "value": "920 V" + }, + { + "key": "socket:tesla_supercharger_ccs:current", + "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:tesla_supercharger_ccs:current' (in the MapComplete.osm.be theme 'Charging stations')" + }, + { + "key": "socket:socket:tesla_supercharger_ccs:current", + "description": "Layer 'Charging stations' shows socket:socket:tesla_supercharger_ccs:current=125 A with a fixed text, namely '
Tesla Supercharger CCS (a branded type2_css)
outputs at most 125 A' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations')", + "value": "125 A" + }, + { + "key": "socket:socket:tesla_supercharger_ccs:current", + "description": "Layer 'Charging stations' shows socket:socket:tesla_supercharger_ccs:current=350 A with a fixed text, namely '
Tesla Supercharger CCS (a branded type2_css)
outputs at most 350 A' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations')", + "value": "350 A" + }, + { + "key": "socket:tesla_supercharger_ccs:output", + "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:tesla_supercharger_ccs:output' (in the MapComplete.osm.be theme 'Charging stations')" + }, + { + "key": "socket:socket:tesla_supercharger_ccs:output", + "description": "Layer 'Charging stations' shows socket:socket:tesla_supercharger_ccs:output=50 kw with a fixed text, namely '
Tesla Supercharger CCS (a branded type2_css)
outputs at most 50 kw' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations')", + "value": "50 kw" + }, + { + "key": "socket:tesla_destination:voltage", + "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:tesla_destination:voltage' (in the MapComplete.osm.be theme 'Charging stations')" + }, + { + "key": "socket:socket:tesla_destination:voltage", + "description": "Layer 'Charging stations' shows socket:socket:tesla_destination:voltage=480 V with a fixed text, namely '
Tesla Supercharger (destination)
outputs 480 volt' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations')", + "value": "480 V" + }, + { + "key": "socket:tesla_destination:current", + "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:tesla_destination:current' (in the MapComplete.osm.be theme 'Charging stations')" + }, + { + "key": "socket:socket:tesla_destination:current", + "description": "Layer 'Charging stations' shows socket:socket:tesla_destination:current=125 A with a fixed text, namely '
Tesla Supercharger (destination)
outputs at most 125 A' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations')", + "value": "125 A" + }, + { + "key": "socket:socket:tesla_destination:current", + "description": "Layer 'Charging stations' shows socket:socket:tesla_destination:current=350 A with a fixed text, namely '
Tesla Supercharger (destination)
outputs at most 350 A' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations')", + "value": "350 A" + }, + { + "key": "socket:tesla_destination:output", + "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:tesla_destination:output' (in the MapComplete.osm.be theme 'Charging stations')" + }, + { + "key": "socket:socket:tesla_destination:output", + "description": "Layer 'Charging stations' shows socket:socket:tesla_destination:output=120 kw with a fixed text, namely '
Tesla Supercharger (destination)
outputs at most 120 kw' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations')", + "value": "120 kw" + }, + { + "key": "socket:socket:tesla_destination:output", + "description": "Layer 'Charging stations' shows socket:socket:tesla_destination:output=150 kw with a fixed text, namely '
Tesla Supercharger (destination)
outputs at most 150 kw' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations')", + "value": "150 kw" + }, + { + "key": "socket:socket:tesla_destination:output", + "description": "Layer 'Charging stations' shows socket:socket:tesla_destination:output=250 kw with a fixed text, namely '
Tesla Supercharger (destination)
outputs at most 250 kw' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations')", + "value": "250 kw" + }, + { + "key": "socket:tesla_destination:voltage", + "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:tesla_destination:voltage' (in the MapComplete.osm.be theme 'Charging stations')" + }, + { + "key": "socket:socket:tesla_destination:voltage", + "description": "Layer 'Charging stations' shows socket:socket:tesla_destination:voltage=230 V with a fixed text, namely '
Tesla supercharger (destination) (A Type 2 with cable branded as tesla)
outputs 230 volt' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations')", + "value": "230 V" + }, + { + "key": "socket:socket:tesla_destination:voltage", + "description": "Layer 'Charging stations' shows socket:socket:tesla_destination:voltage=400 V with a fixed text, namely '
Tesla supercharger (destination) (A Type 2 with cable branded as tesla)
outputs 400 volt' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations')", + "value": "400 V" + }, + { + "key": "socket:tesla_destination:current", + "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:tesla_destination:current' (in the MapComplete.osm.be theme 'Charging stations')" + }, + { + "key": "socket:socket:tesla_destination:current", + "description": "Layer 'Charging stations' shows socket:socket:tesla_destination:current=16 A with a fixed text, namely '
Tesla supercharger (destination) (A Type 2 with cable branded as tesla)
outputs at most 16 A' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations')", + "value": "16 A" + }, + { + "key": "socket:socket:tesla_destination:current", + "description": "Layer 'Charging stations' shows socket:socket:tesla_destination:current=32 A with a fixed text, namely '
Tesla supercharger (destination) (A Type 2 with cable branded as tesla)
outputs at most 32 A' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations')", + "value": "32 A" + }, + { + "key": "socket:tesla_destination:output", + "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:tesla_destination:output' (in the MapComplete.osm.be theme 'Charging stations')" + }, + { + "key": "socket:socket:tesla_destination:output", + "description": "Layer 'Charging stations' shows socket:socket:tesla_destination:output=11 kw with a fixed text, namely '
Tesla supercharger (destination) (A Type 2 with cable branded as tesla)
outputs at most 11 kw' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations')", + "value": "11 kw" + }, + { + "key": "socket:socket:tesla_destination:output", + "description": "Layer 'Charging stations' shows socket:socket:tesla_destination:output=22 kw with a fixed text, namely '
Tesla supercharger (destination) (A Type 2 with cable branded as tesla)
outputs at most 22 kw' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations')", + "value": "22 kw" + }, + { + "key": "socket:USB-A:voltage", + "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:USB-A:voltage' (in the MapComplete.osm.be theme 'Charging stations')" + }, + { + "key": "socket:socket:USB-A:voltage", + "description": "Layer 'Charging stations' shows socket:socket:USB-A:voltage=5 V with a fixed text, namely '
USB to charge phones and small electronics
outputs 5 volt' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations')", + "value": "5 V" + }, + { + "key": "socket:USB-A:current", + "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:USB-A:current' (in the MapComplete.osm.be theme 'Charging stations')" + }, + { + "key": "socket:socket:USB-A:current", + "description": "Layer 'Charging stations' shows socket:socket:USB-A:current=1 A with a fixed text, namely '
USB to charge phones and small electronics
outputs at most 1 A' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations')", + "value": "1 A" + }, + { + "key": "socket:socket:USB-A:current", + "description": "Layer 'Charging stations' shows socket:socket:USB-A:current=2 A with a fixed text, namely '
USB to charge phones and small electronics
outputs at most 2 A' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations')", + "value": "2 A" + }, + { + "key": "socket:USB-A:output", + "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:USB-A:output' (in the MapComplete.osm.be theme 'Charging stations')" + }, + { + "key": "socket:socket:USB-A:output", + "description": "Layer 'Charging stations' shows socket:socket:USB-A:output=5w with a fixed text, namely '
USB to charge phones and small electronics
outputs at most 5w' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations')", + "value": "5w" + }, + { + "key": "socket:socket:USB-A:output", + "description": "Layer 'Charging stations' shows socket:socket:USB-A:output=10w with a fixed text, namely '
USB to charge phones and small electronics
outputs at most 10w' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations')", + "value": "10w" + }, + { + "key": "socket:bosch_3pin:voltage", + "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:bosch_3pin:voltage' (in the MapComplete.osm.be theme 'Charging stations')" + }, + { + "key": "socket:bosch_3pin:current", + "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:bosch_3pin:current' (in the MapComplete.osm.be theme 'Charging stations')" + }, + { + "key": "socket:bosch_3pin:output", + "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:bosch_3pin:output' (in the MapComplete.osm.be theme 'Charging stations')" + }, + { + "key": "socket:bosch_5pin:voltage", + "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:bosch_5pin:voltage' (in the MapComplete.osm.be theme 'Charging stations')" + }, + { + "key": "socket:bosch_5pin:current", + "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:bosch_5pin:current' (in the MapComplete.osm.be theme 'Charging stations')" + }, + { + "key": "socket:bosch_5pin:output", + "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:bosch_5pin:output' (in the MapComplete.osm.be theme 'Charging stations')" + }, { "key": "opening_hours", "description": "Layer 'Charging stations' shows and asks freeform values for key 'opening_hours' (in the MapComplete.osm.be theme 'Charging stations')" @@ -328,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" }, { @@ -378,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": "" }, { @@ -469,7 +1036,7 @@ }, { "key": "no:network", - "description": "Layer 'Charging stations' shows no:network=yes with a fixed text, namely 'Not part of a bigger network' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations')", + "description": "Layer 'Charging stations' shows no:network=yes with a fixed text, namely 'Not part of a bigger network, e.g. because the charging station is maintained by a local business' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations')", "value": "yes" }, { @@ -489,8 +1056,23 @@ }, { "key": "network", - "description": "Layer 'Charging stations' shows network=eVgo with a fixed text, namely 'eVgo' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations')", - "value": "eVgo" + "description": "Layer 'Charging stations' shows network=EVgo with a fixed text, namely 'EVgo' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations')", + "value": "EVgo" + }, + { + "key": "network", + "description": "Layer 'Charging stations' shows network=Allego with a fixed text, namely 'Allego' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations')", + "value": "Allego" + }, + { + "key": "network", + "description": "Layer 'Charging stations' shows network=Blue Corner with a fixed text, namely 'Blue Corner' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations')", + "value": "Blue Corner" + }, + { + "key": "network", + "description": "Layer 'Charging stations' shows network=Tesla with a fixed text, namely 'Tesla' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations')", + "value": "Tesla" }, { "key": "operator", @@ -529,7 +1111,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": "" }, { @@ -537,135 +1119,140 @@ "description": "Layer 'Charging stations' shows level=1 with a fixed text, namely 'Located on the first floor' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations')", "value": "1" }, + { + "key": "level", + "description": "Layer 'Charging stations' shows level=-1 with a fixed text, namely 'Located on the first basement level' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations')", + "value": "-1" + }, { "key": "ref", "description": "Layer 'Charging stations' shows and asks freeform values for key 'ref' (in the MapComplete.osm.be theme 'Charging stations')" }, { "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 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=broken&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=broken&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=broken&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') Picking this answer will delete the key operational_status.", + "value": "" + }, + { + "key": "amenity", + "description": "Layer 'Charging stations' shows amenity=charging_station with a fixed text, namely 'This charging station works' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations')", + "value": "charging_station" + }, + { + "key": "planned:amenity", + "description": "Layer 'Charging stations' shows operational_status=broken&amenity=charging_station with a fixed text, namely 'This charging station is broken' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations') Picking this answer will delete the key planned:amenity.", + "value": "" + }, + { + "key": "construction:amenity", + "description": "Layer 'Charging stations' shows operational_status=broken&amenity=charging_station with a fixed text, namely 'This charging station is broken' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations') Picking this answer will delete the key construction:amenity.", + "value": "" + }, + { + "key": "disused:amenity", + "description": "Layer 'Charging stations' shows operational_status=broken&amenity=charging_station with a fixed text, namely 'This charging station is broken' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations') Picking this answer will delete the key disused:amenity.", + "value": "" + }, + { + "key": "operational_status", + "description": "Layer 'Charging stations' shows operational_status=broken&amenity=charging_station with a fixed text, namely 'This charging station is broken' and allows to pick this as a default answer (in the MapComplete.osm.be theme '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 works' 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 '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 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 '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 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 '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 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 '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 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 '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 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 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 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 planned 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 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 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 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 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 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 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 '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 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 '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 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 '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 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 '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 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 '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 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": "" }, - { - "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 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=&operational_status=&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=&operational_status=&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 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 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=&operational_status=&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": "parking:fee", "description": "Layer 'Charging stations' shows parking:fee=no with a fixed text, namely 'No additional parking cost while charging' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations')", @@ -675,6 +1262,11 @@ "key": "parking:fee", "description": "Layer 'Charging stations' shows parking:fee=yes with a fixed text, namely 'An additional parking fee should be paid while charging' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Charging stations')", "value": "yes" + }, + { + "key": "id", + "description": "The MapComplete theme Charging stations has a layer Your travelled track showing features with this tag", + "value": "location_track" } ] } \ No newline at end of file diff --git a/Docs/TagInfo/mapcomplete_climbing.json b/Docs/TagInfo/mapcomplete_climbing.json index 75142f1cec..1bccf0e5a9 100644 --- a/Docs/TagInfo/mapcomplete_climbing.json +++ b/Docs/TagInfo/mapcomplete_climbing.json @@ -36,14 +36,26 @@ "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')" @@ -64,7 +76,7 @@ }, { "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')", + "description": "Layer 'Climbing club' shows access=customers with a fixed text, namely 'Only customers' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Climbing Map')", "value": "customers" }, { @@ -202,14 +214,26 @@ "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')" @@ -230,7 +254,7 @@ }, { "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')", + "description": "Layer 'Climbing gyms' shows access=customers with a fixed text, namely 'Only customers' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Climbing Map')", "value": "customers" }, { @@ -361,12 +385,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": "" }, { @@ -411,7 +435,7 @@ }, { "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')", + "description": "Layer 'Climbing routes' shows access=customers with a fixed text, namely 'Only customers' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Climbing Map')", "value": "customers" }, { @@ -542,12 +566,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": "" }, { @@ -590,7 +614,7 @@ }, { "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')", + "description": "Layer 'Climbing opportunities' shows access=customers with a fixed text, namely 'Only customers' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Climbing Map')", "value": "customers" }, { @@ -755,7 +779,7 @@ }, { "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')", + "description": "Layer 'Climbing opportunities?' shows access=customers with a fixed text, namely 'Only customers' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Climbing Map')", "value": "customers" }, { @@ -858,6 +882,11 @@ { "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 travelled track showing features with this tag", + "value": "location_track" } ] } \ No newline at end of file diff --git a/Docs/TagInfo/mapcomplete_cycle_infra.json b/Docs/TagInfo/mapcomplete_cycle_infra.json index 7a38c85e26..322786dee5 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": "" }, { @@ -738,6 +753,11 @@ "key": "red_turn:straight:bicycle", "description": "Layer 'Crossings' shows red_turn:straight:bicycle=no with a fixed text, namely 'A cyclist can not go straight on if the light is red' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Bicycle infrastructure')", "value": "no" + }, + { + "key": "id", + "description": "The MapComplete theme Bicycle infrastructure has a layer Your travelled track showing features with this tag", + "value": "location_track" } ] } \ No newline at end of file diff --git a/Docs/TagInfo/mapcomplete_cyclestreets.json b/Docs/TagInfo/mapcomplete_cyclestreets.json index 28eba0c561..998ff21590 100644 --- a/Docs/TagInfo/mapcomplete_cyclestreets.json +++ b/Docs/TagInfo/mapcomplete_cyclestreets.json @@ -5,7 +5,7 @@ "description": "A map of cyclestreets", "project_url": "https://mapcomplete.osm.be/cyclestreets", "doc_url": "https://github.com/pietervdvn/MapComplete/tree/master/assets/themes/", - "icon_url": "https://mapcomplete.osm.be/assets/themes/cyclestreets/F111.svg", + "icon_url": "https://mapcomplete.osm.be/assets/themes/cyclestreets/logo.svg", "contact_name": "Pieter Vander Vennet, MapComplete", "contact_email": "pietervdvn@posteo.net" }, @@ -33,57 +33,57 @@ }, { "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')", + "description": "Layer 'Cyclestreets' shows cyclestreet=yes&maxspeed=30&overtaking:motor_vehicle=no 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')", + "description": "Layer 'Cyclestreets' shows cyclestreet=yes&maxspeed=30&overtaking:motor_vehicle=no 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')", + "description": "Layer 'Cyclestreets' shows cyclestreet=yes&maxspeed=30&overtaking:motor_vehicle=no 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.", + "description": "Layer 'Cyclestreets' shows cyclestreet=yes&maxspeed=30&overtaking:motor_vehicle=no 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')", + "description": "Layer 'Cyclestreets' shows cyclestreet=yes with a fixed text, namely 'This street is a cyclestreet' and allows to pick this as a default answer (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.", + "description": "Layer 'Cyclestreets' shows cyclestreet=yes with a fixed text, namely 'This street is 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": "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.", + "description": "Layer 'Cyclestreets' shows 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')", + "description": "Layer 'Cyclestreets' shows 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.", + "description": "Layer 'Cyclestreets' shows 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.", + "description": "Layer 'Cyclestreets' shows 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.", + "description": "Layer 'Cyclestreets' shows 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": "" }, { @@ -113,57 +113,57 @@ }, { "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')", + "description": "Layer 'Future cyclestreet' shows cyclestreet=yes&maxspeed=30&overtaking:motor_vehicle=no 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')", + "description": "Layer 'Future cyclestreet' shows cyclestreet=yes&maxspeed=30&overtaking:motor_vehicle=no 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')", + "description": "Layer 'Future cyclestreet' shows cyclestreet=yes&maxspeed=30&overtaking:motor_vehicle=no 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.", + "description": "Layer 'Future cyclestreet' shows cyclestreet=yes&maxspeed=30&overtaking:motor_vehicle=no 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')", + "description": "Layer 'Future cyclestreet' shows cyclestreet=yes with a fixed text, namely 'This street is a cyclestreet' and allows to pick this as a default answer (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.", + "description": "Layer 'Future cyclestreet' shows cyclestreet=yes with a fixed text, namely 'This street is 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": "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.", + "description": "Layer 'Future cyclestreet' shows 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')", + "description": "Layer 'Future cyclestreet' shows 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.", + "description": "Layer 'Future cyclestreet' shows 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.", + "description": "Layer 'Future cyclestreet' shows 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.", + "description": "Layer 'Future cyclestreet' shows 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": "" }, { @@ -203,62 +203,67 @@ }, { "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')", + "description": "Layer 'All streets' shows cyclestreet=yes&maxspeed=30&overtaking:motor_vehicle=no 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')", + "description": "Layer 'All streets' shows cyclestreet=yes&maxspeed=30&overtaking:motor_vehicle=no 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')", + "description": "Layer 'All streets' shows cyclestreet=yes&maxspeed=30&overtaking:motor_vehicle=no 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.", + "description": "Layer 'All streets' shows cyclestreet=yes&maxspeed=30&overtaking:motor_vehicle=no 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')", + "description": "Layer 'All streets' shows cyclestreet=yes with a fixed text, namely 'This street is a cyclestreet' and allows to pick this as a default answer (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.", + "description": "Layer 'All streets' shows cyclestreet=yes with a fixed text, namely 'This street is 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": "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.", + "description": "Layer 'All streets' shows 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')", + "description": "Layer 'All streets' shows 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.", + "description": "Layer 'All streets' shows 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.", + "description": "Layer 'All streets' shows 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.", + "description": "Layer 'All streets' shows 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 travelled track showing features with this tag", + "value": "location_track" } ] } \ No newline at end of file diff --git a/Docs/TagInfo/mapcomplete_cyclofix.json b/Docs/TagInfo/mapcomplete_cyclofix.json index f9a4eef42c..774e972bbf 100644 --- a/Docs/TagInfo/mapcomplete_cyclofix.json +++ b/Docs/TagInfo/mapcomplete_cyclofix.json @@ -50,6 +50,10 @@ "description": "The MapComplete theme Cyclofix - an open map for cyclists has a layer Bike cafe showing features with this tag", "value": "bicycle" }, + { + "key": "service:bicycle:.*", + "description": "The MapComplete theme Cyclofix - an open map for cyclists has a layer Bike cafe showing features with this tag" + }, { "key": "image", "description": "The layer 'Bike cafe allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" @@ -306,13 +310,13 @@ }, { "key": "service:bicycle:cleaning:fee", - "description": "Layer 'Bike repair/shop' shows service:bicycle:cleaning:fee=no& with a fixed text, namely 'Free to use' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')", - "value": "no&" + "description": "Layer 'Bike repair/shop' shows service:bicycle:cleaning:fee=no with a fixed text, namely 'Free to use' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')", + "value": "no" }, { "key": "service:bicycle:cleaning:fee", - "description": "Layer 'Bike repair/shop' shows service:bicycle:cleaning:fee=yes with a fixed text, namely 'The cleaning service has a fee' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')", - "value": "yes" + "description": "Layer 'Bike repair/shop' shows service:bicycle:cleaning:fee=yes&service:bicycle:cleaning:charge= with a fixed text, namely 'The cleaning service has a fee, but the amount is not known' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')", + "value": "yes&service:bicycle:cleaning:charge=" }, { "key": "amenity", @@ -343,14 +347,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 +377,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": "" }, { @@ -400,184 +416,204 @@ }, { "key": "amenity", - "description": "The MapComplete theme Cyclofix - an open map for cyclists has a layer Bike stations (repair, pump or both) showing features with this tag", + "description": "The MapComplete theme Cyclofix - an open map for cyclists has a layer Bicycle pump and repair showing features with this tag", "value": "bicycle_repair_station" }, { "key": "image", - "description": "The layer 'Bike stations (repair, pump or both) allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "The layer 'Bicycle pump and repair allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" }, { "key": "mapillary", - "description": "The layer 'Bike stations (repair, pump or both) allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "The layer 'Bicycle pump and repair allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" }, { "key": "wikidata", - "description": "The layer 'Bike stations (repair, pump or both) allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "The layer 'Bicycle pump and repair allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" }, { "key": "wikipedia", - "description": "The layer 'Bike stations (repair, pump or both) allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + "description": "The layer 'Bicycle pump and repair allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" }, { "key": "service:bicycle:tools", - "description": "Layer 'Bike stations (repair, pump or both)' shows service:bicycle:tools=no&service:bicycle:pump=yes with a fixed text, namely 'There is only a pump present' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')", + "description": "Layer 'Bicycle pump and repair' shows service:bicycle:tools=no&service:bicycle:pump=yes with a fixed text, namely 'There is only a pump present' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')", "value": "no" }, { "key": "service:bicycle:pump", - "description": "Layer 'Bike stations (repair, pump or both)' shows service:bicycle:tools=no&service:bicycle:pump=yes with a fixed text, namely 'There is only a pump present' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')", + "description": "Layer 'Bicycle pump and repair' shows service:bicycle:tools=no&service:bicycle:pump=yes with a fixed text, namely 'There is only a pump present' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')", "value": "yes" }, { "key": "service:bicycle:tools", - "description": "Layer 'Bike stations (repair, pump or both)' shows service:bicycle:tools=yes&service:bicycle:pump=no with a fixed text, namely 'There are only tools (screwdrivers, pliers...) present' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')", + "description": "Layer 'Bicycle pump and repair' shows service:bicycle:tools=yes&service:bicycle:pump=no with a fixed text, namely 'There are only tools (screwdrivers, pliers...) present' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')", "value": "yes" }, { "key": "service:bicycle:pump", - "description": "Layer 'Bike stations (repair, pump or both)' shows service:bicycle:tools=yes&service:bicycle:pump=no with a fixed text, namely 'There are only tools (screwdrivers, pliers...) present' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')", + "description": "Layer 'Bicycle pump and repair' shows service:bicycle:tools=yes&service:bicycle:pump=no with a fixed text, namely 'There are only tools (screwdrivers, pliers...) present' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')", "value": "no" }, { "key": "service:bicycle:tools", - "description": "Layer 'Bike stations (repair, pump or both)' shows service:bicycle:tools=yes&service:bicycle:pump=yes with a fixed text, namely 'There are both tools and a pump present' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')", + "description": "Layer 'Bicycle pump and repair' shows service:bicycle:tools=yes&service:bicycle:pump=yes with a fixed text, namely 'There are both tools and a pump present' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')", "value": "yes" }, { "key": "service:bicycle:pump", - "description": "Layer 'Bike stations (repair, pump or both)' shows service:bicycle:tools=yes&service:bicycle:pump=yes with a fixed text, namely 'There are both tools and a pump present' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')", + "description": "Layer 'Bicycle pump and repair' shows service:bicycle:tools=yes&service:bicycle:pump=yes with a fixed text, namely 'There are both tools and a pump present' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')", "value": "yes" }, - { - "key": "operator", - "description": "Layer 'Bike stations (repair, pump or both)' shows and asks freeform values for key 'operator' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')" - }, - { - "key": "operator", - "description": "Layer 'Bike stations (repair, pump or both)' shows operator=De Fietsambassade Gent with a fixed text, namely 'De Fietsambassade Gent' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')", - "value": "De Fietsambassade Gent" - }, - { - "key": "email", - "description": "Layer 'Bike stations (repair, pump or both)' shows and asks freeform values for key 'email' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')" - }, - { - "key": "phone", - "description": "Layer 'Bike stations (repair, pump or both)' shows and asks freeform values for key 'phone' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')" - }, - { - "key": "opening_hours", - "description": "Layer 'Bike stations (repair, pump or both)' shows and asks freeform values for key 'opening_hours' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')" - }, - { - "key": "opening_hours", - "description": "Layer 'Bike stations (repair, pump or both)' shows opening_hours=24/7 with a fixed text, namely 'Always open' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')", - "value": "24/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.", - "value": "" - }, - { - "key": "service:bicycle:chain_tool", - "description": "Layer 'Bike stations (repair, pump or both)' shows service:bicycle:chain_tool=yes with a fixed text, namely 'There is a chain tool' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')", - "value": "yes" - }, - { - "key": "service:bicycle:chain_tool", - "description": "Layer 'Bike stations (repair, pump or both)' shows service:bicycle:chain_tool=no with a fixed text, namely 'There is no chain tool' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')", - "value": "no" - }, - { - "key": "service:bicycle:stand", - "description": "Layer 'Bike stations (repair, pump or both)' shows service:bicycle:stand=yes with a fixed text, namely 'There is a hook or stand' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')", - "value": "yes" - }, - { - "key": "service:bicycle:stand", - "description": "Layer 'Bike stations (repair, pump or both)' shows service:bicycle:stand=no with a fixed text, namely 'There is no hook or stand' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')", - "value": "no" - }, { "key": "service:bicycle:pump:operational_status", - "description": "Layer 'Bike stations (repair, pump or both)' shows service:bicycle:pump:operational_status=broken with a fixed text, namely 'The bike pump is broken' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')", + "description": "Layer 'Bicycle pump and repair' shows service:bicycle:pump:operational_status=broken with a fixed text, namely 'The bike pump is broken' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')", "value": "broken" }, { "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.", - "value": "" + "description": "Layer 'Bicycle pump and repair' shows service:bicycle:pump:operational_status=operational with a fixed text, namely 'The bike pump is operational' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')", + "value": "operational" + }, + { + "key": "opening_hours", + "description": "Layer 'Bicycle pump and repair' shows and asks freeform values for key 'opening_hours' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')" + }, + { + "key": "opening_hours", + "description": "Layer 'Bicycle pump and repair' shows opening_hours=24/7 with a fixed text, namely 'Always open' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')", + "value": "24/7" + }, + { + "key": "access", + "description": "Layer 'Bicycle pump and repair' shows access=yes with a fixed text, namely 'Publicly accessible' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')", + "value": "yes" + }, + { + "key": "access", + "description": "Layer 'Bicycle pump and repair' shows access=public with a fixed text, namely 'Publicly accessible' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')", + "value": "public" + }, + { + "key": "access", + "description": "Layer 'Bicycle pump and repair' shows access=customers with a fixed text, namely 'Only for customers' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')", + "value": "customers" + }, + { + "key": "access", + "description": "Layer 'Bicycle pump and repair' shows access=private with a fixed text, namely 'Not accessible to the general public' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')", + "value": "private" + }, + { + "key": "access", + "description": "Layer 'Bicycle pump and repair' shows access=no with a fixed text, namely 'Not accessible to the general public' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')", + "value": "no" + }, + { + "key": "operator", + "description": "Layer 'Bicycle pump and repair' shows and asks freeform values for key 'operator' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')" + }, + { + "key": "email", + "description": "Layer 'Bicycle pump and repair' shows and asks freeform values for key 'email' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')" + }, + { + "key": "phone", + "description": "Layer 'Bicycle pump and repair' shows and asks freeform values for key 'phone' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')" + }, + { + "key": "service:bicycle:chain_tool", + "description": "Layer 'Bicycle pump and repair' shows service:bicycle:chain_tool=yes with a fixed text, namely 'There is a chain tool' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')", + "value": "yes" + }, + { + "key": "service:bicycle:chain_tool", + "description": "Layer 'Bicycle pump and repair' shows service:bicycle:chain_tool=no with a fixed text, namely 'There is no chain tool' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')", + "value": "no" + }, + { + "key": "service:bicycle:stand", + "description": "Layer 'Bicycle pump and repair' shows service:bicycle:stand=yes with a fixed text, namely 'There is a hook or stand' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')", + "value": "yes" + }, + { + "key": "service:bicycle:stand", + "description": "Layer 'Bicycle pump and repair' shows service:bicycle:stand=no with a fixed text, namely 'There is no hook or stand' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')", + "value": "no" }, { "key": "valves", - "description": "Layer 'Bike stations (repair, pump or both)' shows and asks freeform values for key 'valves' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')" + "description": "Layer 'Bicycle pump and repair' shows and asks freeform values for key 'valves' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')" }, { "key": "valves", - "description": "Layer 'Bike stations (repair, pump or both)' shows valves=sclaverand with a fixed text, namely 'Sclaverand (also known as Presta)' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')", + "description": "Layer 'Bicycle pump and repair' shows valves=sclaverand with a fixed text, namely 'Sclaverand (also known as Presta)' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')", "value": "sclaverand" }, { "key": "valves", - "description": "Layer 'Bike stations (repair, pump or both)' shows valves=dunlop with a fixed text, namely 'Dunlop' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')", + "description": "Layer 'Bicycle pump and repair' shows valves=dunlop with a fixed text, namely 'Dunlop' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')", "value": "dunlop" }, { "key": "valves", - "description": "Layer 'Bike stations (repair, pump or both)' shows valves=schrader with a fixed text, namely 'Schrader (cars)' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')", + "description": "Layer 'Bicycle pump and repair' shows valves=schrader with a fixed text, namely 'Schrader (cars)' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')", "value": "schrader" }, { "key": "manual", - "description": "Layer 'Bike stations (repair, pump or both)' shows manual=yes with a fixed text, namely 'Manual pump' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')", + "description": "Layer 'Bicycle pump and repair' shows manual=yes with a fixed text, namely 'Manual pump' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')", "value": "yes" }, { "key": "manual", - "description": "Layer 'Bike stations (repair, pump or both)' shows manual=no with a fixed text, namely 'Electrical pump' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')", + "description": "Layer 'Bicycle pump and repair' shows manual=no with a fixed text, namely 'Electrical pump' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')", "value": "no" }, { "key": "manometer", - "description": "Layer 'Bike stations (repair, pump or both)' shows manometer=yes with a fixed text, namely 'There is a manometer' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')", + "description": "Layer 'Bicycle pump and repair' shows manometer=yes with a fixed text, namely 'There is a manometer' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')", "value": "yes" }, { "key": "manometer", - "description": "Layer 'Bike stations (repair, pump or both)' shows manometer=no with a fixed text, namely 'There is no manometer' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')", + "description": "Layer 'Bicycle pump and repair' shows manometer=no with a fixed text, namely 'There is no manometer' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')", "value": "no" }, { "key": "manometer", - "description": "Layer 'Bike stations (repair, pump or both)' shows manometer=broken with a fixed text, namely 'There is manometer but it is broken' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')", + "description": "Layer 'Bicycle pump and repair' shows manometer=broken with a fixed text, namely 'There is manometer but it is broken' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')", "value": "broken" }, { "key": "level", - "description": "Layer 'Bike stations (repair, pump or both)' shows and asks freeform values for key 'level' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')" + "description": "Layer 'Bicycle pump and repair' shows and asks freeform values for key 'level' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')" }, { "key": "location", - "description": "Layer 'Bike stations (repair, pump or both)' shows location=underground with a fixed text, namely 'Located underground' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')", + "description": "Layer 'Bicycle pump and repair' shows location=underground with a fixed text, namely 'Located underground' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')", "value": "underground" }, { "key": "level", - "description": "Layer 'Bike stations (repair, pump or both)' shows level=0 with a fixed text, namely 'Located on the ground floor' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')", + "description": "Layer 'Bicycle pump and repair' shows level=0 with a fixed text, namely 'Located on the ground floor' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')", "value": "0" }, { "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 'Bicycle pump and repair' shows with a fixed text, namely 'Located on the ground floor' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists') Picking this answer will delete the key level.", "value": "" }, { "key": "level", - "description": "Layer 'Bike stations (repair, pump or both)' shows level=1 with a fixed text, namely 'Located on the first floor' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')", + "description": "Layer 'Bicycle pump and repair' shows level=1 with a fixed text, namely 'Located on the first floor' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')", "value": "1" }, + { + "key": "level", + "description": "Layer 'Bicycle pump and repair' shows level=-1 with a fixed text, namely 'Located on the first basement level' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')", + "value": "-1" + }, { "key": "amenity", "description": "The MapComplete theme Cyclofix - an open map for cyclists has a layer Bicycle tube vending machine showing features with this tag", @@ -609,7 +645,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 +757,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 +849,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')" @@ -840,6 +888,11 @@ "description": "The MapComplete theme Cyclofix - an open map for cyclists has a layer Bike cleaning service showing features with this tag", "value": "bicycle_wash" }, + { + "key": "amenity", + "description": "The MapComplete theme Cyclofix - an open map for cyclists has a layer Bike cleaning service showing features with this tag", + "value": "bike_wash" + }, { "key": "image", "description": "The layer 'Bike cleaning service allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" @@ -867,13 +920,13 @@ }, { "key": "service:bicycle:cleaning:fee", - "description": "Layer 'Bike cleaning service' shows service:bicycle:cleaning:fee=no& with a fixed text, namely 'Free to use' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')", - "value": "no&" + "description": "Layer 'Bike cleaning service' shows service:bicycle:cleaning:fee=no with a fixed text, namely 'Free to use' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')", + "value": "no" }, { "key": "service:bicycle:cleaning:fee", - "description": "Layer 'Bike cleaning service' shows service:bicycle:cleaning:fee=yes with a fixed text, namely 'The cleaning service has a fee' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')", - "value": "yes" + "description": "Layer 'Bike cleaning service' shows service:bicycle:cleaning:fee=yes&service:bicycle:cleaning:charge= with a fixed text, namely 'The cleaning service has a fee, but the amount is not known' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')", + "value": "yes&service:bicycle:cleaning:charge=" }, { "key": "charge", @@ -886,8 +939,8 @@ }, { "key": "fee", - "description": "Layer 'Bike cleaning service' shows fee=no& with a fixed text, namely 'Free to use' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')", - "value": "no&" + "description": "Layer 'Bike cleaning service' shows fee=no with a fixed text, namely 'Free to use' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')", + "value": "no" }, { "key": "fee", @@ -976,7 +1029,7 @@ }, { "key": "location", - "description": "Layer 'Bike parking' shows location= with a fixed text, namely 'Surface level parking' 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 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": "" }, { @@ -1035,6 +1088,11 @@ { "key": "capacity:cargo_bike", "description": "Layer 'Bike parking' shows and asks freeform values for key 'capacity:cargo_bike' (in the MapComplete.osm.be theme 'Cyclofix - an open map for cyclists')" + }, + { + "key": "id", + "description": "The MapComplete theme Cyclofix - an open map for cyclists has a layer Your travelled track showing features with this tag", + "value": "location_track" } ] } \ No newline at end of file diff --git a/Docs/TagInfo/mapcomplete_drinking_water.json b/Docs/TagInfo/mapcomplete_drinking_water.json index 2db459901a..538f7c6e30 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": "" }, { @@ -59,6 +59,11 @@ "key": "bottle", "description": "Layer 'Drinking water' shows bottle=no with a fixed text, namely 'Water bottles may not fit' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Drinking Water')", "value": "no" + }, + { + "key": "id", + "description": "The MapComplete theme Drinking Water has a layer Your travelled track showing features with this tag", + "value": "location_track" } ] } \ No newline at end of file diff --git a/Docs/TagInfo/mapcomplete_entrances.json b/Docs/TagInfo/mapcomplete_entrances.json new file mode 100644 index 0000000000..45ecc35918 --- /dev/null +++ b/Docs/TagInfo/mapcomplete_entrances.json @@ -0,0 +1,228 @@ +{ + "data_format": 1, + "project": { + "name": "MapComplete Entrances", + "description": "Survey entrances to help wheelchair routing", + "project_url": "https://mapcomplete.osm.be/entrances", + "doc_url": "https://github.com/pietervdvn/MapComplete/tree/master/assets/themes/", + "icon_url": "https://mapcomplete.osm.be/assets/layers/entrance/door.svg", + "contact_name": "Pieter Vander Vennet, MapComplete", + "contact_email": "pietervdvn@posteo.net" + }, + "tags": [ + { + "key": "highway", + "description": "The MapComplete theme Entrances has a layer Pedestrain paths showing features with this tag", + "value": "footway" + }, + { + "key": "highway", + "description": "The MapComplete theme Entrances has a layer Pedestrain paths showing features with this tag", + "value": "path" + }, + { + "key": "highway", + "description": "The MapComplete theme Entrances has a layer Pedestrain paths showing features with this tag", + "value": "corridor" + }, + { + "key": "highway", + "description": "The MapComplete theme Entrances has a layer Pedestrain paths showing features with this tag", + "value": "steps" + }, + { + "key": "entrance", + "description": "The MapComplete theme Entrances has a layer Entrance showing features with this tag" + }, + { + "key": "indoor", + "description": "The MapComplete theme Entrances has a layer Entrance showing features with this tag", + "value": "door" + }, + { + "key": "image", + "description": "The layer 'Entrance allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "mapillary", + "description": "The layer 'Entrance allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "wikidata", + "description": "The layer 'Entrance allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "wikipedia", + "description": "The layer 'Entrance allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "entrance", + "description": "Layer 'Entrance' shows entrance=yes with a fixed text, namely 'No specific entrance type is known' (in the MapComplete.osm.be theme 'Entrances')", + "value": "yes" + }, + { + "key": "entrance", + "description": "Layer 'Entrance' shows indoor=door with a fixed text, namely 'This is an indoor door, separating a room or a corridor within a single building' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Entrances') Picking this answer will delete the key entrance.", + "value": "" + }, + { + "key": "indoor", + "description": "Layer 'Entrance' shows indoor=door with a fixed text, namely 'This is an indoor door, separating a room or a corridor within a single building' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Entrances')", + "value": "door" + }, + { + "key": "indoor", + "description": "Layer 'Entrance' shows entrance=main with a fixed text, namely 'This is the main entrance' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Entrances') Picking this answer will delete the key indoor.", + "value": "" + }, + { + "key": "entrance", + "description": "Layer 'Entrance' shows entrance=main with a fixed text, namely 'This is the main entrance' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Entrances')", + "value": "main" + }, + { + "key": "indoor", + "description": "Layer 'Entrance' shows entrance=secondary with a fixed text, namely 'This is a secondary entrance' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Entrances') Picking this answer will delete the key indoor.", + "value": "" + }, + { + "key": "entrance", + "description": "Layer 'Entrance' shows entrance=secondary with a fixed text, namely 'This is a secondary entrance' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Entrances')", + "value": "secondary" + }, + { + "key": "indoor", + "description": "Layer 'Entrance' shows entrance=service with a fixed text, namely 'This is a service entrance - normally only used for employees, delivery, ...' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Entrances') Picking this answer will delete the key indoor.", + "value": "" + }, + { + "key": "entrance", + "description": "Layer 'Entrance' shows entrance=service with a fixed text, namely 'This is a service entrance - normally only used for employees, delivery, ...' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Entrances')", + "value": "service" + }, + { + "key": "indoor", + "description": "Layer 'Entrance' shows entrance=exit with a fixed text, namely 'This is an exit where one can not enter' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Entrances') Picking this answer will delete the key indoor.", + "value": "" + }, + { + "key": "entrance", + "description": "Layer 'Entrance' shows entrance=exit with a fixed text, namely 'This is an exit where one can not enter' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Entrances')", + "value": "exit" + }, + { + "key": "indoor", + "description": "Layer 'Entrance' shows entrance=entrance with a fixed text, namely 'This is an entrance where one can only enter (but not exit)' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Entrances') Picking this answer will delete the key indoor.", + "value": "" + }, + { + "key": "entrance", + "description": "Layer 'Entrance' shows entrance=entrance with a fixed text, namely 'This is an entrance where one can only enter (but not exit)' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Entrances')", + "value": "entrance" + }, + { + "key": "indoor", + "description": "Layer 'Entrance' shows entrance=emergency with a fixed text, namely 'This is emergency exit' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Entrances') Picking this answer will delete the key indoor.", + "value": "" + }, + { + "key": "entrance", + "description": "Layer 'Entrance' shows entrance=emergency with a fixed text, namely 'This is emergency exit' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Entrances')", + "value": "emergency" + }, + { + "key": "indoor", + "description": "Layer 'Entrance' shows entrance=home with a fixed text, namely 'This is the entrance to a private home' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Entrances') Picking this answer will delete the key indoor.", + "value": "" + }, + { + "key": "entrance", + "description": "Layer 'Entrance' shows entrance=home with a fixed text, namely 'This is the entrance to a private home' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Entrances')", + "value": "home" + }, + { + "key": "door", + "description": "Layer 'Entrance' shows door=yes with a fixed text, namely 'The door type is not known' (in the MapComplete.osm.be theme 'Entrances')", + "value": "yes" + }, + { + "key": "door", + "description": "Layer 'Entrance' shows door=hinged with a fixed text, namely 'A classical, hinged door supported by joints' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Entrances')", + "value": "hinged" + }, + { + "key": "door", + "description": "Layer 'Entrance' shows door=revolving with a fixed text, namely 'A revolving door which hangs on a central shaft, rotating within a cylindrical enclosure' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Entrances')", + "value": "revolving" + }, + { + "key": "door", + "description": "Layer 'Entrance' shows door=sliding with a fixed text, namely 'A sliding door where the door slides sidewards, typically parallel with a wall' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Entrances')", + "value": "sliding" + }, + { + "key": "door", + "description": "Layer 'Entrance' shows door=overhead with a fixed text, namely 'A door which rolls from overhead, typically seen for garages' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Entrances')", + "value": "overhead" + }, + { + "key": "door", + "description": "Layer 'Entrance' shows door=no with a fixed text, namely 'This is an entrance without a physical door' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Entrances')", + "value": "no" + }, + { + "key": "automatic_door", + "description": "Layer 'Entrance' shows automatic_door=yes with a fixed text, namely 'This is an automatic door' (in the MapComplete.osm.be theme 'Entrances')", + "value": "yes" + }, + { + "key": "automatic_door", + "description": "Layer 'Entrance' shows automatic_door=no with a fixed text, namely 'This door is not automated' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Entrances')", + "value": "no" + }, + { + "key": "automatic_door", + "description": "Layer 'Entrance' shows automatic_door=motion with a fixed text, namely 'This door will open automatically when motion is detected' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Entrances')", + "value": "motion" + }, + { + "key": "automatic_door", + "description": "Layer 'Entrance' shows automatic_door=floor with a fixed text, namely 'This door will open automatically when a sensor in the floor is triggered' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Entrances')", + "value": "floor" + }, + { + "key": "automatic_door", + "description": "Layer 'Entrance' shows automatic_door=button with a fixed text, namely 'This door will open automatically when a button is pressed' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Entrances')", + "value": "button" + }, + { + "key": "automatic_door", + "description": "Layer 'Entrance' shows automatic_door=slowdown_button with a fixed text, namely 'This door revolves automatically all the time, but has a button to slow it down, e.g. for wheelchair users' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Entrances')", + "value": "slowdown_button" + }, + { + "key": "automatic_door", + "description": "Layer 'Entrance' shows automatic_door=continuous with a fixed text, namely 'This door revolves automatically all the time' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Entrances')", + "value": "continuous" + }, + { + "key": "automatic_door", + "description": "Layer 'Entrance' shows automatic_door=serviced_on_button_press with a fixed text, namely 'This door will be opened by staff when requested by pressing a button{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')", @@ -344,6 +356,11 @@ "key": "dog", "description": "Layer 'Restaurants and fast food' shows dog=unleashed with a fixed text, namely 'Dogs are allowed and can run around freely' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Restaurants and fast food')", "value": "unleashed" + }, + { + "key": "id", + "description": "The MapComplete theme Restaurants and fast food has a layer Your travelled track showing features with this tag", + "value": "location_track" } ] } \ No newline at end of file diff --git a/Docs/TagInfo/mapcomplete_fritures.json b/Docs/TagInfo/mapcomplete_fritures.json index 42cf127741..4e088a5041 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')", @@ -351,339 +363,9 @@ "value": "unleashed" }, { - "key": "amenity", - "description": "The MapComplete theme Friturenkaart has a layer Restaurants and fast food showing features with this tag", - "value": "fast_food" - }, - { - "key": "amenity", - "description": "The MapComplete theme Friturenkaart has a layer Restaurants and fast food showing features with this tag", - "value": "restaurant" - }, - { - "key": "image", - "description": "The layer 'Restaurants and fast food allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "mapillary", - "description": "The layer 'Restaurants and fast food allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "wikidata", - "description": "The layer 'Restaurants and fast food allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "wikipedia", - "description": "The layer 'Restaurants and fast food allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "name", - "description": "Layer 'Restaurants and fast food' shows and asks freeform values for key 'name' (in the MapComplete.osm.be theme 'Friturenkaart')" - }, - { - "key": "amenity", - "description": "Layer 'Restaurants and fast food' shows amenity=fast_food with a fixed text, namely 'Dit is een fastfood-zaak. De focus ligt op snelle bediening, zitplaatsen zijn vaak beperkt en functioneel' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Friturenkaart')", - "value": "fast_food" - }, - { - "key": "amenity", - "description": "Layer 'Restaurants and fast food' shows amenity=restaurant with a fixed text, namely 'Dit is een restaurant. De focus ligt op een aangename ervaring waar je aan tafel wordt bediend' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Friturenkaart')", - "value": "restaurant" - }, - { - "key": "opening_hours", - "description": "Layer 'Restaurants and fast food' shows and asks freeform values for key 'opening_hours' (in the MapComplete.osm.be theme 'Friturenkaart')" - }, - { - "key": "website", - "description": "Layer 'Restaurants and fast food' shows and asks freeform values for key '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": "phone", - "description": "Layer 'Restaurants and fast food' shows and asks freeform values for key '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')", - "value": "yes" - }, - { - "key": "payment:cards", - "description": "Layer 'Restaurants and fast food' shows payment:cards=yes with a fixed text, namely 'Payment cards are accepted here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Friturenkaart')", - "value": "yes" - }, - { - "key": "wheelchair", - "description": "Layer 'Restaurants and fast food' shows wheelchair=designated with a fixed text, namely 'This place is specially adapted for wheelchair users' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Friturenkaart')", - "value": "designated" - }, - { - "key": "wheelchair", - "description": "Layer 'Restaurants and fast food' shows wheelchair=yes with a fixed text, namely 'This place is easily reachable with a wheelchair' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Friturenkaart')", - "value": "yes" - }, - { - "key": "wheelchair", - "description": "Layer 'Restaurants and fast food' shows wheelchair=limited with a fixed text, namely 'It is possible to reach this place in a wheelchair, but it is not easy' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Friturenkaart')", - "value": "limited" - }, - { - "key": "wheelchair", - "description": "Layer 'Restaurants and fast food' shows wheelchair=no with a fixed text, namely 'This place is not reachable with a wheelchair' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Friturenkaart')", - "value": "no" - }, - { - "key": "cuisine", - "description": "Layer 'Restaurants and fast food' shows and asks freeform values for key 'cuisine' (in the MapComplete.osm.be theme 'Friturenkaart')" - }, - { - "key": "cuisine", - "description": "Layer 'Restaurants and fast food' shows cuisine=pizza with a fixed text, namely 'This is a pizzeria' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Friturenkaart')", - "value": "pizza" - }, - { - "key": "cuisine", - "description": "Layer 'Restaurants and fast food' shows cuisine=friture with a fixed text, namely 'This is a friture' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Friturenkaart')", - "value": "friture" - }, - { - "key": "cuisine", - "description": "Layer 'Restaurants and fast food' shows cuisine=pasta with a fixed text, namely 'Mainly serves pasta' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Friturenkaart')", - "value": "pasta" - }, - { - "key": "cuisine", - "description": "Layer 'Restaurants and fast food' shows cuisine=kebab with a fixed text, namely 'Dit is een kebabzaak' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Friturenkaart')", - "value": "kebab" - }, - { - "key": "cuisine", - "description": "Layer 'Restaurants and fast food' shows cuisine=sandwich with a fixed text, namely 'Dit is een broodjeszaak' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Friturenkaart')", - "value": "sandwich" - }, - { - "key": "cuisine", - "description": "Layer 'Restaurants and fast food' shows cuisine=burger with a fixed text, namely 'Dit is een hamburgerrestaurant' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Friturenkaart')", - "value": "burger" - }, - { - "key": "cuisine", - "description": "Layer 'Restaurants and fast food' shows cuisine=sushi with a fixed text, namely 'Dit is een sushirestaurant' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Friturenkaart')", - "value": "sushi" - }, - { - "key": "cuisine", - "description": "Layer 'Restaurants and fast food' shows cuisine=coffee with a fixed text, namely 'Dit is een koffiezaak' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Friturenkaart')", - "value": "coffee" - }, - { - "key": "cuisine", - "description": "Layer 'Restaurants and fast food' shows cuisine=italian with a fixed text, namely 'Dit is een Italiaans restaurant (dat meer dan enkel pasta of pizza verkoopt)' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Friturenkaart')", - "value": "italian" - }, - { - "key": "cuisine", - "description": "Layer 'Restaurants and fast food' shows cuisine=french with a fixed text, namely 'Dit is een Frans restaurant' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Friturenkaart')", - "value": "french" - }, - { - "key": "cuisine", - "description": "Layer 'Restaurants and fast food' shows cuisine=chinese with a fixed text, namely 'Dit is een Chinees restaurant' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Friturenkaart')", - "value": "chinese" - }, - { - "key": "cuisine", - "description": "Layer 'Restaurants and fast food' shows cuisine=greek with a fixed text, namely 'Dit is een Grieks restaurant' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Friturenkaart')", - "value": "greek" - }, - { - "key": "cuisine", - "description": "Layer 'Restaurants and fast food' shows cuisine=indian with a fixed text, namely 'Dit is een Indisch restaurant' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Friturenkaart')", - "value": "indian" - }, - { - "key": "cuisine", - "description": "Layer 'Restaurants and fast food' shows cuisine=turkish with a fixed text, namely 'Dit is een Turks restaurant (dat meer dan enkel kebab verkoopt)' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Friturenkaart')", - "value": "turkish" - }, - { - "key": "cuisine", - "description": "Layer 'Restaurants and fast food' shows cuisine=thai with a fixed text, namely 'Dit is een Thaïs restaurant' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Friturenkaart')", - "value": "thai" - }, - { - "key": "takeaway", - "description": "Layer 'Restaurants and fast food' shows takeaway=only with a fixed text, namely 'This is a take-away only business' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Friturenkaart')", - "value": "only" - }, - { - "key": "takeaway", - "description": "Layer 'Restaurants and fast food' shows takeaway=yes with a fixed text, namely 'Take-away is possible here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Friturenkaart')", - "value": "yes" - }, - { - "key": "takeaway", - "description": "Layer 'Restaurants and fast food' shows takeaway=no with a fixed text, namely 'Take-away is not possible here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Friturenkaart')", - "value": "no" - }, - { - "key": "diet:vegetarian", - "description": "Layer 'Restaurants and fast food' shows diet:vegetarian=no with a fixed text, namely 'Geen vegetarische opties beschikbaar' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Friturenkaart')", - "value": "no" - }, - { - "key": "diet:vegetarian", - "description": "Layer 'Restaurants and fast food' shows diet:vegetarian=limited with a fixed text, namely 'Beperkte vegetarische opties zijn beschikbaar' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Friturenkaart')", - "value": "limited" - }, - { - "key": "diet:vegetarian", - "description": "Layer 'Restaurants and fast food' shows diet:vegetarian=yes with a fixed text, namely 'Vegetarische opties zijn beschikbaar' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Friturenkaart')", - "value": "yes" - }, - { - "key": "diet:vegetarian", - "description": "Layer 'Restaurants and fast food' shows diet:vegetarian=only with a fixed text, namely 'Enkel vegetarische opties zijn beschikbaar' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Friturenkaart')", - "value": "only" - }, - { - "key": "diet:vegan", - "description": "Layer 'Restaurants and fast food' shows diet:vegan=no with a fixed text, namely 'Geen veganistische opties beschikbaar' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Friturenkaart')", - "value": "no" - }, - { - "key": "diet:vegan", - "description": "Layer 'Restaurants and fast food' shows diet:vegan=limited with a fixed text, namely 'Beperkte veganistische opties zijn beschikbaar' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Friturenkaart')", - "value": "limited" - }, - { - "key": "diet:vegan", - "description": "Layer 'Restaurants and fast food' shows diet:vegan=yes with a fixed text, namely 'Veganistische opties zijn beschikbaar' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Friturenkaart')", - "value": "yes" - }, - { - "key": "diet:vegan", - "description": "Layer 'Restaurants and fast food' shows diet:vegan=only with a fixed text, namely 'Enkel veganistische opties zijn beschikbaar' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Friturenkaart')", - "value": "only" - }, - { - "key": "diet:halal", - "description": "Layer 'Restaurants and fast food' shows diet:halal=no with a fixed text, namely 'There are no halal options available' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Friturenkaart')", - "value": "no" - }, - { - "key": "diet:halal", - "description": "Layer 'Restaurants and fast food' shows diet:halal=limited with a fixed text, namely 'There is a small halal menu' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Friturenkaart')", - "value": "limited" - }, - { - "key": "diet:halal", - "description": "Layer 'Restaurants and fast food' shows diet:halal=yes with a fixed text, namely 'There is a halal menu' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Friturenkaart')", - "value": "yes" - }, - { - "key": "diet:halal", - "description": "Layer 'Restaurants and fast food' shows diet:halal=only with a fixed text, namely 'Only halal options are available' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Friturenkaart')", - "value": "only" - }, - { - "key": "diet:vegetarian", - "description": "Layer 'Restaurants and fast food' shows diet:vegetarian=yes with a fixed text, namely 'Er zijn vegetarische snacks aanwezig' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Friturenkaart')", - "value": "yes" - }, - { - "key": "diet:vegetarian", - "description": "Layer 'Restaurants and fast food' shows diet:vegetarian=limited with a fixed text, namely 'Slechts enkele vegetarische snacks' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Friturenkaart')", - "value": "limited" - }, - { - "key": "diet:vegetarian", - "description": "Layer 'Restaurants and fast food' shows diet:vegetarian=no with a fixed text, namely 'Geen vegetarische snacks beschikbaar' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Friturenkaart')", - "value": "no" - }, - { - "key": "diet:vegan", - "description": "Layer 'Restaurants and fast food' shows diet:vegan=yes with a fixed text, namely 'Er zijn veganistische snacks aanwezig' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Friturenkaart')", - "value": "yes" - }, - { - "key": "diet:vegan", - "description": "Layer 'Restaurants and fast food' shows diet:vegan=limited with a fixed text, namely 'Slechts enkele veganistische snacks' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Friturenkaart')", - "value": "limited" - }, - { - "key": "diet:vegan", - "description": "Layer 'Restaurants and fast food' shows diet:vegan=no with a fixed text, namely 'Geen veganistische snacks beschikbaar' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Friturenkaart')", - "value": "no" - }, - { - "key": "friture:oil", - "description": "Layer 'Restaurants and fast food' shows friture:oil=vegetable with a fixed text, namely 'Plantaardige olie' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Friturenkaart')", - "value": "vegetable" - }, - { - "key": "friture:oil", - "description": "Layer 'Restaurants and fast food' shows friture:oil=animal with a fixed text, namely 'Dierlijk vet' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Friturenkaart')", - "value": "animal" - }, - { - "key": "reusable_packaging:accept", - "description": "Layer 'Restaurants and fast food' shows reusable_packaging:accept=yes with a fixed text, namely 'You can bring your own containers to get your order, saving on single-use packaging material and thus waste' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Friturenkaart')", - "value": "yes" - }, - { - "key": "reusable_packaging:accept", - "description": "Layer 'Restaurants and fast food' shows reusable_packaging:accept=no with a fixed text, namely 'Bringing your own container is not allowed' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Friturenkaart')", - "value": "no" - }, - { - "key": "reusable_packaging:accept", - "description": "Layer 'Restaurants and fast food' shows reusable_packaging:accept=only with a fixed text, namely 'You must bring your own container to order here.' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Friturenkaart')", - "value": "only" - }, - { - "key": "service:electricity", - "description": "Layer 'Restaurants and fast food' shows service:electricity=yes with a fixed text, namely 'There are plenty of domestic sockets available to customers seated indoors, where they can charge their electronics' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Friturenkaart')", - "value": "yes" - }, - { - "key": "service:electricity", - "description": "Layer 'Restaurants and fast food' shows service:electricity=limited with a fixed text, namely 'There are a few domestic sockets available to customers seated indoors, where they can charge their electronics' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Friturenkaart')", - "value": "limited" - }, - { - "key": "service:electricity", - "description": "Layer 'Restaurants and fast food' shows service:electricity=ask with a fixed text, namely 'There are no sockets available indoors to customers, but charging might be possible if the staff is asked' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Friturenkaart')", - "value": "ask" - }, - { - "key": "service:electricity", - "description": "Layer 'Restaurants and fast food' shows service:electricity=no with a fixed text, namely 'There are a no domestic sockets available to customers seated indoors' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Friturenkaart')", - "value": "no" - }, - { - "key": "dog", - "description": "Layer 'Restaurants and fast food' shows dog=yes with a fixed text, namely 'Dogs are allowed' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Friturenkaart')", - "value": "yes" - }, - { - "key": "dog", - "description": "Layer 'Restaurants and fast food' shows dog=no with a fixed text, namely 'Dogs are not allowed' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Friturenkaart')", - "value": "no" - }, - { - "key": "dog", - "description": "Layer 'Restaurants and fast food' shows dog=leashed with a fixed text, namely 'Dogs are allowed, but they have to be leashed' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Friturenkaart')", - "value": "leashed" - }, - { - "key": "dog", - "description": "Layer 'Restaurants and fast food' shows dog=unleashed with a fixed text, namely 'Dogs are allowed and can run around freely' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Friturenkaart')", - "value": "unleashed" + "key": "id", + "description": "The MapComplete theme Friturenkaart has a layer Your travelled track showing features with this tag", + "value": "location_track" } ] } \ No newline at end of file diff --git a/Docs/TagInfo/mapcomplete_ghostbikes.json b/Docs/TagInfo/mapcomplete_ghostbikes.json index 042bf718f6..928a081a5b 100644 --- a/Docs/TagInfo/mapcomplete_ghostbikes.json +++ b/Docs/TagInfo/mapcomplete_ghostbikes.json @@ -51,6 +51,11 @@ { "key": "start_date", "description": "Layer 'Ghost bikes' shows and asks freeform values for key 'start_date' (in the MapComplete.osm.be theme 'Ghost bikes')" + }, + { + "key": "id", + "description": "The MapComplete theme Ghost bikes has a layer Your travelled track showing features with this tag", + "value": "location_track" } ] } \ No newline at end of file diff --git a/Docs/TagInfo/mapcomplete_hackerspaces.json b/Docs/TagInfo/mapcomplete_hackerspaces.json index bb607f4f30..d87813d3de 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')" @@ -83,6 +95,11 @@ { "key": "start_date", "description": "Layer 'Hackerspace' shows and asks freeform values for key 'start_date' (in the MapComplete.osm.be theme 'Hackerspaces')" + }, + { + "key": "id", + "description": "The MapComplete theme Hackerspaces has a layer Your travelled track showing features with this tag", + "value": "location_track" } ] } \ No newline at end of file diff --git a/Docs/TagInfo/mapcomplete_hailhydrant.json b/Docs/TagInfo/mapcomplete_hailhydrant.json index b7aa651f1d..2186fd41b3 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": "" }, { @@ -63,33 +63,29 @@ "description": "Layer 'Map of hydrants' shows fire_hydrant:type=underground with a fixed text, namely ' Underground type.' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Hydrants, Extinguishers, Fire stations, and Ambulance stations.')", "value": "underground" }, - { - "key": "disused:emergency", - "description": "Layer 'Map of hydrants' shows and asks freeform values for key 'disused:emergency' (in the MapComplete.osm.be theme 'Hydrants, Extinguishers, Fire stations, and Ambulance stations.')" - }, { "key": "emergency", - "description": "Layer 'Map of hydrants' shows emergency=fire_hydrant with a fixed text, namely 'The hydrant is (fully or partially) working.' 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 emergency=fire_hydrant with a fixed text, namely 'The hydrant is (fully or partially) working' 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": "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": "" }, { @@ -274,6 +270,11 @@ { "key": "wikipedia", "description": "The layer 'Map of ambulance stations allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "id", + "description": "The MapComplete theme Hydrants, Extinguishers, Fire stations, and Ambulance stations. has a layer Your travelled track showing features with this tag", + "value": "location_track" } ] } \ No newline at end of file diff --git a/Docs/TagInfo/mapcomplete_maps.json b/Docs/TagInfo/mapcomplete_maps.json index be108e5c11..3a220afb83 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¬: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¬: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": "" }, { @@ -74,6 +74,11 @@ "key": "map_source:attribution", "description": "Layer 'Maps' shows map_source:attribution=no with a fixed text, namely 'There is no attribution at all' (in the MapComplete.osm.be theme 'A map of maps')", "value": "no" + }, + { + "key": "id", + "description": "The MapComplete theme A map of maps has a layer Your travelled track showing features with this tag", + "value": "location_track" } ] } \ No newline at end of file diff --git a/Docs/TagInfo/mapcomplete_nature.json b/Docs/TagInfo/mapcomplete_nature.json index 75fc1ec2dd..7a32c2783a 100644 --- a/Docs/TagInfo/mapcomplete_nature.json +++ b/Docs/TagInfo/mapcomplete_nature.json @@ -1,8 +1,8 @@ { "data_format": 1, "project": { - "name": "MapComplete De Natuur in", - "description": "Deze kaart bevat informatie voor natuurliefhebbers", + "name": "MapComplete Into nature", + "description": "A map for nature lovers, with interesting POI's", "project_url": "https://mapcomplete.osm.be/nature", "doc_url": "https://github.com/pietervdvn/MapComplete/tree/master/assets/themes/", "icon_url": "https://mapcomplete.osm.be/assets/themes/nature/logo.svg", @@ -12,7 +12,7 @@ "tags": [ { "key": "amenity", - "description": "The MapComplete theme De Natuur in has a layer Drinking water showing features with this tag", + "description": "The MapComplete theme Into nature has a layer Drinking water showing features with this tag", "value": "drinking_water" }, { @@ -33,36 +33,36 @@ }, { "key": "operational_status", - "description": "Layer 'Drinking water' shows and asks freeform values for key 'operational_status' (in the MapComplete.osm.be theme 'De Natuur in')" + "description": "Layer 'Drinking water' shows and asks freeform values for key 'operational_status' (in the MapComplete.osm.be theme 'Into nature')" }, { "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 'Into nature') Picking this answer will delete the key operational_status.", "value": "" }, { "key": "operational_status", - "description": "Layer 'Drinking water' shows operational_status=broken with a fixed text, namely 'This drinking water is broken' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'De Natuur in')", + "description": "Layer 'Drinking water' shows operational_status=broken with a fixed text, namely 'This drinking water is broken' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Into nature')", "value": "broken" }, { "key": "operational_status", - "description": "Layer 'Drinking water' shows operational_status=closed with a fixed text, namely 'This drinking water is closed' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'De Natuur in')", + "description": "Layer 'Drinking water' shows operational_status=closed with a fixed text, namely 'This drinking water is closed' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Into nature')", "value": "closed" }, { "key": "bottle", - "description": "Layer 'Drinking water' shows bottle=yes with a fixed text, namely 'It is easy to refill water bottles' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'De Natuur in')", + "description": "Layer 'Drinking water' shows bottle=yes with a fixed text, namely 'It is easy to refill water bottles' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Into nature')", "value": "yes" }, { "key": "bottle", - "description": "Layer 'Drinking water' shows bottle=no with a fixed text, namely 'Water bottles may not fit' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'De Natuur in')", + "description": "Layer 'Drinking water' shows bottle=no with a fixed text, namely 'Water bottles may not fit' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Into nature')", "value": "no" }, { "key": "leisure", - "description": "The MapComplete theme De Natuur in has a layer Vogelkijkhutten showing features with this tag", + "description": "The MapComplete theme Into nature has a layer Vogelkijkhutten showing features with this tag", "value": "bird_hide" }, { @@ -83,187 +83,101 @@ }, { "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 'Into nature')", "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 'Into nature') 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 'Into nature') Picking this answer will delete the key amenity.", "value": "" }, { "key": "amenity", - "description": "Layer 'Vogelkijkhutten' shows amenity=shelter&building=yes&shelter=yes with a fixed text, namely 'Vogelkijkhut' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'De Natuur in')", + "description": "Layer 'Vogelkijkhutten' shows amenity=shelter&building=yes&shelter=yes with a fixed text, namely 'Vogelkijkhut' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Into nature')", "value": "shelter" }, { "key": "building", - "description": "Layer 'Vogelkijkhutten' shows amenity=shelter&building=yes&shelter=yes with a fixed text, namely 'Vogelkijkhut' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'De Natuur in')", + "description": "Layer 'Vogelkijkhutten' shows amenity=shelter&building=yes&shelter=yes with a fixed text, namely 'Vogelkijkhut' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Into nature')", "value": "yes" }, { "key": "shelter", - "description": "Layer 'Vogelkijkhutten' shows amenity=shelter&building=yes&shelter=yes with a fixed text, namely 'Vogelkijkhut' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'De Natuur in')", + "description": "Layer 'Vogelkijkhutten' shows amenity=shelter&building=yes&shelter=yes with a fixed text, namely 'Vogelkijkhut' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Into nature')", "value": "yes" }, { "key": "building", - "description": "Layer 'Vogelkijkhutten' shows building=tower&bird_hide=tower with a fixed text, namely 'Vogelkijktoren' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'De Natuur in')", + "description": "Layer 'Vogelkijkhutten' shows building=tower&bird_hide=tower with a fixed text, namely 'Vogelkijktoren' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Into nature')", "value": "tower" }, { "key": "bird_hide", - "description": "Layer 'Vogelkijkhutten' shows building=tower&bird_hide=tower with a fixed text, namely 'Vogelkijktoren' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'De Natuur in')", + "description": "Layer 'Vogelkijkhutten' shows building=tower&bird_hide=tower with a fixed text, namely 'Vogelkijktoren' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Into nature')", "value": "tower" }, { "key": "amenity", - "description": "Layer 'Vogelkijkhutten' shows amenity=shelter|building=yes|shelter=yes with a fixed text, namely 'Vogelkijkhut' (in the MapComplete.osm.be theme 'De Natuur in')", + "description": "Layer 'Vogelkijkhutten' shows amenity=shelter|building=yes|shelter=yes with a fixed text, namely 'Vogelkijkhut' (in the MapComplete.osm.be theme 'Into nature')", "value": "shelter" }, { "key": "building", - "description": "Layer 'Vogelkijkhutten' shows amenity=shelter|building=yes|shelter=yes with a fixed text, namely 'Vogelkijkhut' (in the MapComplete.osm.be theme 'De Natuur in')", + "description": "Layer 'Vogelkijkhutten' shows amenity=shelter|building=yes|shelter=yes with a fixed text, namely 'Vogelkijkhut' (in the MapComplete.osm.be theme 'Into nature')", "value": "yes" }, { "key": "shelter", - "description": "Layer 'Vogelkijkhutten' shows amenity=shelter|building=yes|shelter=yes with a fixed text, namely 'Vogelkijkhut' (in the MapComplete.osm.be theme 'De Natuur in')", + "description": "Layer 'Vogelkijkhutten' shows amenity=shelter|building=yes|shelter=yes with a fixed text, namely 'Vogelkijkhut' (in the MapComplete.osm.be theme 'Into nature')", "value": "yes" }, { "key": "wheelchair", - "description": "Layer 'Vogelkijkhutten' shows wheelchair=designated with a fixed text, namely 'Er zijn speciale voorzieningen voor rolstoelen' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'De Natuur in')", + "description": "Layer 'Vogelkijkhutten' shows wheelchair=designated with a fixed text, namely 'Er zijn speciale voorzieningen voor rolstoelen' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Into nature')", "value": "designated" }, { "key": "wheelchair", - "description": "Layer 'Vogelkijkhutten' shows wheelchair=yes with a fixed text, namely 'Een rolstoel raakt er vlot' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'De Natuur in')", + "description": "Layer 'Vogelkijkhutten' shows wheelchair=yes with a fixed text, namely 'Een rolstoel raakt er vlot' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Into nature')", "value": "yes" }, { "key": "wheelchair", - "description": "Layer 'Vogelkijkhutten' shows wheelchair=limited with a fixed text, namely 'Je kan er raken met een rolstoel, maar het is niet makkelijk' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'De Natuur in')", + "description": "Layer 'Vogelkijkhutten' shows wheelchair=limited with a fixed text, namely 'Je kan er raken met een rolstoel, maar het is niet makkelijk' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Into nature')", "value": "limited" }, { "key": "wheelchair", - "description": "Layer 'Vogelkijkhutten' shows wheelchair=no with a fixed text, namely 'Niet rolstoeltoegankelijk' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'De Natuur in')", + "description": "Layer 'Vogelkijkhutten' shows wheelchair=no with a fixed text, namely 'Niet rolstoeltoegankelijk' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Into nature')", "value": "no" }, { "key": "operator", - "description": "Layer 'Vogelkijkhutten' shows and asks freeform values for key 'operator' (in the MapComplete.osm.be theme 'De Natuur in')" + "description": "Layer 'Vogelkijkhutten' shows and asks freeform values for key 'operator' (in the MapComplete.osm.be theme 'Into nature')" }, { "key": "operator", - "description": "Layer 'Vogelkijkhutten' shows operator=Natuurpunt with a fixed text, namely 'Beheer door Natuurpunt' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'De Natuur in')", + "description": "Layer 'Vogelkijkhutten' shows operator=Natuurpunt with a fixed text, namely 'Beheer door Natuurpunt' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Into nature')", "value": "Natuurpunt" }, { "key": "operator", - "description": "Layer 'Vogelkijkhutten' shows operator=Agentschap Natuur en Bos with a fixed text, namely 'Beheer door het Agentschap Natuur en Bos ' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'De Natuur in')", + "description": "Layer 'Vogelkijkhutten' shows operator=Agentschap Natuur en Bos with a fixed text, namely 'Beheer door het Agentschap Natuur en Bos ' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Into nature')", "value": "Agentschap Natuur en Bos" }, - { - "key": "tourism", - "description": "The MapComplete theme De Natuur in has a layer Maps showing features with this tag", - "value": "map" - }, - { - "key": "information", - "description": "The MapComplete theme De Natuur in has a layer Maps showing features with this tag", - "value": "map" - }, - { - "key": "image", - "description": "The layer 'Maps allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "mapillary", - "description": "The layer 'Maps allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "wikidata", - "description": "The layer 'Maps allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "wikipedia", - "description": "The layer 'Maps allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "map_source", - "description": "Layer 'Maps' shows and asks freeform values for key 'map_source' (in the MapComplete.osm.be theme 'De Natuur in')" - }, - { - "key": "map_source", - "description": "Layer 'Maps' shows map_source=OpenStreetMap¬: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')", - "value": "OpenStreetMap" - }, - { - "key": "not:map_source", - "description": "Layer 'Maps' shows map_source=OpenStreetMap¬: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.", - "value": "" - }, - { - "key": "map_source:attribution", - "description": "Layer 'Maps' shows map_source:attribution=yes with a fixed text, namely 'OpenStreetMap is clearly attributed, including the ODBL-license' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'De Natuur in')", - "value": "yes" - }, - { - "key": "map_source:attribution", - "description": "Layer 'Maps' shows map_source:attribution=incomplete with a fixed text, namely 'OpenStreetMap is clearly attributed, but the license is not mentioned' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'De Natuur in')", - "value": "incomplete" - }, - { - "key": "map_source:attribution", - "description": "Layer 'Maps' shows map_source:attribution=sticker with a fixed text, namely 'OpenStreetMap wasn't mentioned, but someone put an OpenStreetMap-sticker on it' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'De Natuur in')", - "value": "sticker" - }, - { - "key": "map_source:attribution", - "description": "Layer 'Maps' shows map_source:attribution=none with a fixed text, namely 'There is no attribution at all' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'De Natuur in')", - "value": "none" - }, - { - "key": "map_source:attribution", - "description": "Layer 'Maps' shows map_source:attribution=no with a fixed text, namely 'There is no attribution at all' (in the MapComplete.osm.be theme 'De Natuur in')", - "value": "no" - }, - { - "key": "information", - "description": "The MapComplete theme De Natuur in has a layer Information boards showing features with this tag", - "value": "board" - }, - { - "key": "image", - "description": "The layer 'Information boards allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "mapillary", - "description": "The layer 'Information boards allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "wikidata", - "description": "The layer 'Information boards allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, - { - "key": "wikipedia", - "description": "The layer 'Information boards allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" - }, { "key": "leisure", - "description": "The MapComplete theme De Natuur in has a layer Natuurgebied showing features with this tag", + "description": "The MapComplete theme Into nature has a layer Natuurgebied showing features with this tag", "value": "nature_reserve" }, { "key": "boundary", - "description": "The MapComplete theme De Natuur in has a layer Natuurgebied showing features with this tag", + "description": "The MapComplete theme Into nature has a layer Natuurgebied showing features with this tag", "value": "protected_area" }, { @@ -284,151 +198,603 @@ }, { "key": "access:description", - "description": "Layer 'Natuurgebied' shows and asks freeform values for key 'access:description' (in the MapComplete.osm.be theme 'De Natuur in')" + "description": "Layer 'Natuurgebied' shows and asks freeform values for key 'access:description' (in the MapComplete.osm.be theme 'Into nature')" }, { "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 'Into nature')", "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 'Into nature') 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 'Into nature')", "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 'Into nature') 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 'Into nature')", "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 'Into nature') 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 'Into nature')", "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 'Into nature') 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 'Into nature')", "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 'Into nature') Picking this answer will delete the key fee.", "value": "" }, { "key": "access", - "description": "Layer 'Natuurgebied' shows access=yes&fee=yes with a fixed text, namely 'Toegankelijk mits betaling' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'De Natuur in')", + "description": "Layer 'Natuurgebied' shows access=yes&fee=yes with a fixed text, namely 'Toegankelijk mits betaling' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Into nature')", "value": "yes" }, { "key": "fee", - "description": "Layer 'Natuurgebied' shows access=yes&fee=yes with a fixed text, namely 'Toegankelijk mits betaling' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'De Natuur in')", + "description": "Layer 'Natuurgebied' shows access=yes&fee=yes with a fixed text, namely 'Toegankelijk mits betaling' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Into nature')", "value": "yes" }, { "key": "operator", - "description": "Layer 'Natuurgebied' shows and asks freeform values for key 'operator' (in the MapComplete.osm.be theme 'De Natuur in')" + "description": "Layer 'Natuurgebied' shows and asks freeform values for key 'operator' (in the MapComplete.osm.be theme 'Into nature')" }, { "key": "operator", - "description": "Layer 'Natuurgebied' shows operator=Natuurpunt with a fixed text, namely 'Dit gebied wordt beheerd door Natuurpunt' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'De Natuur in')", + "description": "Layer 'Natuurgebied' shows operator=Natuurpunt with a fixed text, namely 'Dit gebied wordt beheerd door Natuurpunt' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Into nature')", "value": "Natuurpunt" }, { "key": "operator", - "description": "Layer 'Natuurgebied' shows operator~^(n|N)atuurpunt.*$ with a fixed text, namely 'Dit gebied wordt beheerd door {operator}' (in the MapComplete.osm.be theme 'De Natuur in')" + "description": "Layer 'Natuurgebied' shows operator~^(n|N)atuurpunt.*$ with a fixed text, namely 'Dit gebied wordt beheerd door {operator}' (in the MapComplete.osm.be theme 'Into nature')" }, { "key": "operator", - "description": "Layer 'Natuurgebied' shows operator=Agentschap Natuur en Bos with a fixed text, namely 'Dit gebied wordt beheerd door het Agentschap Natuur en Bos' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'De Natuur in')", + "description": "Layer 'Natuurgebied' shows operator=Agentschap Natuur en Bos with a fixed text, namely 'Dit gebied wordt beheerd door het Agentschap Natuur en Bos' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Into nature')", "value": "Agentschap Natuur en Bos" }, { "key": "name:nl", - "description": "Layer 'Natuurgebied' shows and asks freeform values for key 'name:nl' (in the MapComplete.osm.be theme 'De Natuur in')" + "description": "Layer 'Natuurgebied' shows and asks freeform values for key 'name:nl' (in the MapComplete.osm.be theme 'Into nature')" }, { "key": "name", - "description": "Layer 'Natuurgebied' shows and asks freeform values for key 'name' (in the MapComplete.osm.be theme 'De Natuur in')" + "description": "Layer 'Natuurgebied' shows and asks freeform values for key 'name' (in the MapComplete.osm.be theme 'Into nature')" }, { "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 'Into nature')", "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 'Into nature') Picking this answer will delete the key name.", "value": "" }, { "key": "dog", - "description": "Layer 'Natuurgebied' shows dog=leashed with a fixed text, namely 'Dogs have to be leashed' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'De Natuur in')", + "description": "Layer 'Natuurgebied' shows dog=leashed with a fixed text, namely 'Dogs have to be leashed' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Into nature')", "value": "leashed" }, { "key": "dog", - "description": "Layer 'Natuurgebied' shows dog=no with a fixed text, namely 'No dogs allowed' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'De Natuur in')", + "description": "Layer 'Natuurgebied' shows dog=no with a fixed text, namely 'No dogs allowed' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Into nature')", "value": "no" }, { "key": "dog", - "description": "Layer 'Natuurgebied' shows dog=yes with a fixed text, namely 'Dogs are allowed to roam freely' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'De Natuur in')", + "description": "Layer 'Natuurgebied' shows dog=yes with a fixed text, namely 'Dogs are allowed to roam freely' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Into nature')", "value": "yes" }, { "key": "website", - "description": "Layer 'Natuurgebied' shows and asks freeform values for key 'website' (in the MapComplete.osm.be theme 'De Natuur in')" + "description": "Layer 'Natuurgebied' shows and asks freeform values for key 'website' (in the MapComplete.osm.be theme 'Into nature')" }, { "key": "curator", - "description": "Layer 'Natuurgebied' shows and asks freeform values for key 'curator' (in the MapComplete.osm.be theme 'De Natuur in')" + "description": "Layer 'Natuurgebied' shows and asks freeform values for key 'curator' (in the MapComplete.osm.be theme 'Into nature')" }, { "key": "email", - "description": "Layer 'Natuurgebied' shows and asks freeform values for key 'email' (in the MapComplete.osm.be theme 'De Natuur in')" + "description": "Layer 'Natuurgebied' shows and asks freeform values for key 'email' (in the MapComplete.osm.be theme 'Into nature')" }, { "key": "phone", - "description": "Layer 'Natuurgebied' shows and asks freeform values for key 'phone' (in the MapComplete.osm.be theme 'De Natuur in')" + "description": "Layer 'Natuurgebied' shows and asks freeform values for key 'phone' (in the MapComplete.osm.be theme 'Into nature')" }, { "key": "description", - "description": "Layer 'Natuurgebied' shows values with key 'description' (in the MapComplete.osm.be theme 'De Natuur in')" + "description": "Layer 'Natuurgebied' shows values with key 'description' (in the MapComplete.osm.be theme 'Into nature')" }, { "key": "description:0", - "description": "Layer 'Natuurgebied' shows and asks freeform values for key 'description:0' (in the MapComplete.osm.be theme 'De Natuur in')" + "description": "Layer 'Natuurgebied' shows and asks freeform values for key 'description:0' (in the MapComplete.osm.be theme 'Into nature')" }, { "key": "wikidata", - "description": "Layer 'Natuurgebied' shows and asks freeform values for key 'wikidata' (in the MapComplete.osm.be theme 'De Natuur in')" + "description": "Layer 'Natuurgebied' shows and asks freeform values for key 'wikidata' (in the MapComplete.osm.be theme 'Into nature')" }, { "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 'Into nature') Picking this answer will delete the key wikidata.", "value": "" + }, + { + "key": "tourism", + "description": "The MapComplete theme Into nature has a layer Maps showing features with this tag", + "value": "map" + }, + { + "key": "information", + "description": "The MapComplete theme Into nature has a layer Maps showing features with this tag", + "value": "map" + }, + { + "key": "image", + "description": "The layer 'Maps allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "mapillary", + "description": "The layer 'Maps allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "wikidata", + "description": "The layer 'Maps allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "wikipedia", + "description": "The layer 'Maps allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "map_source", + "description": "Layer 'Maps' shows and asks freeform values for key 'map_source' (in the MapComplete.osm.be theme 'Into nature')" + }, + { + "key": "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 'Into nature')", + "value": "OpenStreetMap" + }, + { + "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 'Into nature') Picking this answer will delete the key not:map_source.", + "value": "" + }, + { + "key": "map_source:attribution", + "description": "Layer 'Maps' shows map_source:attribution=yes with a fixed text, namely 'OpenStreetMap is clearly attributed, including the ODBL-license' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Into nature')", + "value": "yes" + }, + { + "key": "map_source:attribution", + "description": "Layer 'Maps' shows map_source:attribution=incomplete with a fixed text, namely 'OpenStreetMap is clearly attributed, but the license is not mentioned' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Into nature')", + "value": "incomplete" + }, + { + "key": "map_source:attribution", + "description": "Layer 'Maps' shows map_source:attribution=sticker with a fixed text, namely 'OpenStreetMap wasn't mentioned, but someone put an OpenStreetMap-sticker on it' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Into nature')", + "value": "sticker" + }, + { + "key": "map_source:attribution", + "description": "Layer 'Maps' shows map_source:attribution=none with a fixed text, namely 'There is no attribution at all' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Into nature')", + "value": "none" + }, + { + "key": "map_source:attribution", + "description": "Layer 'Maps' shows map_source:attribution=no with a fixed text, namely 'There is no attribution at all' (in the MapComplete.osm.be theme 'Into nature')", + "value": "no" + }, + { + "key": "information", + "description": "The MapComplete theme Into nature has a layer Information boards showing features with this tag", + "value": "board" + }, + { + "key": "image", + "description": "The layer 'Information boards allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "mapillary", + "description": "The layer 'Information boards allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "wikidata", + "description": "The layer 'Information boards allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "wikipedia", + "description": "The layer 'Information boards allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "amenity", + "description": "The MapComplete theme Into nature has a layer Benches showing features with this tag", + "value": "bench" + }, + { + "key": "image", + "description": "The layer 'Benches allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "mapillary", + "description": "The layer 'Benches allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "wikidata", + "description": "The layer 'Benches allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "wikipedia", + "description": "The layer 'Benches allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "backrest", + "description": "Layer 'Benches' shows backrest=yes with a fixed text, namely 'Backrest: Yes' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Into nature')", + "value": "yes" + }, + { + "key": "backrest", + "description": "Layer 'Benches' shows backrest=no with a fixed text, namely 'Backrest: No' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Into nature')", + "value": "no" + }, + { + "key": "seats", + "description": "Layer 'Benches' shows and asks freeform values for key 'seats' (in the MapComplete.osm.be theme 'Into nature')" + }, + { + "key": "material", + "description": "Layer 'Benches' shows and asks freeform values for key 'material' (in the MapComplete.osm.be theme 'Into nature')" + }, + { + "key": "material", + "description": "Layer 'Benches' shows material=wood with a fixed text, namely 'Material: wood' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Into nature')", + "value": "wood" + }, + { + "key": "material", + "description": "Layer 'Benches' shows material=metal with a fixed text, namely 'Material: metal' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Into nature')", + "value": "metal" + }, + { + "key": "material", + "description": "Layer 'Benches' shows material=stone with a fixed text, namely 'Material: stone' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Into nature')", + "value": "stone" + }, + { + "key": "material", + "description": "Layer 'Benches' shows material=concrete with a fixed text, namely 'Material: concrete' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Into nature')", + "value": "concrete" + }, + { + "key": "material", + "description": "Layer 'Benches' shows material=plastic with a fixed text, namely 'Material: plastic' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Into nature')", + "value": "plastic" + }, + { + "key": "material", + "description": "Layer 'Benches' shows material=steel with a fixed text, namely 'Material: steel' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Into nature')", + "value": "steel" + }, + { + "key": "direction", + "description": "Layer 'Benches' shows and asks freeform values for key 'direction' (in the MapComplete.osm.be theme 'Into nature')" + }, + { + "key": "colour", + "description": "Layer 'Benches' shows and asks freeform values for key 'colour' (in the MapComplete.osm.be theme 'Into nature')" + }, + { + "key": "colour", + "description": "Layer 'Benches' shows colour=brown with a fixed text, namely 'Colour: brown' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Into nature')", + "value": "brown" + }, + { + "key": "colour", + "description": "Layer 'Benches' shows colour=green with a fixed text, namely 'Colour: green' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Into nature')", + "value": "green" + }, + { + "key": "colour", + "description": "Layer 'Benches' shows colour=gray with a fixed text, namely 'Colour: gray' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Into nature')", + "value": "gray" + }, + { + "key": "colour", + "description": "Layer 'Benches' shows colour=white with a fixed text, namely 'Colour: white' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Into nature')", + "value": "white" + }, + { + "key": "colour", + "description": "Layer 'Benches' shows colour=red with a fixed text, namely 'Colour: red' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Into nature')", + "value": "red" + }, + { + "key": "colour", + "description": "Layer 'Benches' shows colour=black with a fixed text, namely 'Colour: black' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Into nature')", + "value": "black" + }, + { + "key": "colour", + "description": "Layer 'Benches' shows colour=blue with a fixed text, namely 'Colour: blue' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Into nature')", + "value": "blue" + }, + { + "key": "colour", + "description": "Layer 'Benches' shows colour=yellow with a fixed text, namely 'Colour: yellow' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Into nature')", + "value": "yellow" + }, + { + "key": "survey:date", + "description": "Layer 'Benches' shows and asks freeform values for key 'survey:date' (in the MapComplete.osm.be theme 'Into nature')" + }, + { + "key": "survey:date", + "description": "Layer 'Benches' shows survey:date= with a fixed text, namely 'Surveyed today!' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Into nature') Picking this answer will delete the key survey:date.", + "value": "" + }, + { + "key": "leisure", + "description": "The MapComplete theme Into nature has a layer Picnic tables showing features with this tag", + "value": "picnic_table" + }, + { + "key": "image", + "description": "The layer 'Picnic tables allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "mapillary", + "description": "The layer 'Picnic tables allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "wikidata", + "description": "The layer 'Picnic tables allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "wikipedia", + "description": "The layer 'Picnic tables allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "material", + "description": "Layer 'Picnic tables' shows and asks freeform values for key 'material' (in the MapComplete.osm.be theme 'Into nature')" + }, + { + "key": "material", + "description": "Layer 'Picnic tables' shows material=wood with a fixed text, namely 'This is a wooden picnic table' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Into nature')", + "value": "wood" + }, + { + "key": "material", + "description": "Layer 'Picnic tables' shows material=concrete with a fixed text, namely 'This is a concrete picnic table' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Into nature')", + "value": "concrete" + }, + { + "key": "amenity", + "description": "The MapComplete theme Into nature has a layer Toilets showing features with this tag", + "value": "toilets" + }, + { + "key": "image", + "description": "The layer 'Toilets allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "mapillary", + "description": "The layer 'Toilets allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "wikidata", + "description": "The layer 'Toilets allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "wikipedia", + "description": "The layer 'Toilets allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "access", + "description": "Layer 'Toilets' shows and asks freeform values for key 'access' (in the MapComplete.osm.be theme 'Into nature')" + }, + { + "key": "access", + "description": "Layer 'Toilets' shows access=yes with a fixed text, namely 'Public access' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Into nature')", + "value": "yes" + }, + { + "key": "access", + "description": "Layer 'Toilets' shows access=customers with a fixed text, namely 'Only access to customers' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Into nature')", + "value": "customers" + }, + { + "key": "access", + "description": "Layer 'Toilets' shows access=no with a fixed text, namely 'Not accessible' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Into nature')", + "value": "no" + }, + { + "key": "access", + "description": "Layer 'Toilets' shows access=key with a fixed text, namely 'Accessible, but one has to ask a key to enter' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Into nature')", + "value": "key" + }, + { + "key": "access", + "description": "Layer 'Toilets' shows access=public with a fixed text, namely 'Public access' (in the MapComplete.osm.be theme 'Into nature')", + "value": "public" + }, + { + "key": "fee", + "description": "Layer 'Toilets' shows fee=yes with a fixed text, namely 'These are paid toilets' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Into nature')", + "value": "yes" + }, + { + "key": "fee", + "description": "Layer 'Toilets' shows fee=no with a fixed text, namely 'Free to use' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Into nature')", + "value": "no" + }, + { + "key": "charge", + "description": "Layer 'Toilets' shows and asks freeform values for key 'charge' (in the MapComplete.osm.be theme 'Into nature')" + }, + { + "key": "payment:cash", + "description": "Layer 'Toilets' shows payment:cash=yes with a fixed text, namely 'Cash is accepted here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Into nature')", + "value": "yes" + }, + { + "key": "payment:cards", + "description": "Layer 'Toilets' shows payment:cards=yes with a fixed text, namely 'Payment cards are accepted here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Into nature')", + "value": "yes" + }, + { + "key": "opening_hours", + "description": "Layer 'Toilets' shows and asks freeform values for key 'opening_hours' (in the MapComplete.osm.be theme 'Into nature')" + }, + { + "key": "opening_hours", + "description": "Layer 'Toilets' shows opening_hours=24/7 with a fixed text, namely 'Opened 24/7' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Into nature')", + "value": "24/7" + }, + { + "key": "wheelchair", + "description": "Layer 'Toilets' shows wheelchair=yes with a fixed text, namely 'There is a dedicated toilet for wheelchair users' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Into nature')", + "value": "yes" + }, + { + "key": "wheelchair", + "description": "Layer 'Toilets' shows wheelchair=no with a fixed text, namely 'No wheelchair access' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Into nature')", + "value": "no" + }, + { + "key": "toilets:position", + "description": "Layer 'Toilets' shows toilets:position=seated with a fixed text, namely 'There are only seated toilets' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Into nature')", + "value": "seated" + }, + { + "key": "toilets:position", + "description": "Layer 'Toilets' shows toilets:position=urinal with a fixed text, namely 'There are only urinals here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Into nature')", + "value": "urinal" + }, + { + "key": "toilets:position", + "description": "Layer 'Toilets' shows toilets:position=squat with a fixed text, namely 'There are only squat toilets here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Into nature')", + "value": "squat" + }, + { + "key": "toilets:position", + "description": "Layer 'Toilets' shows toilets:position=seated;urinal with a fixed text, namely 'Both seated toilets and urinals are available here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Into nature')", + "value": "seated;urinal" + }, + { + "key": "changing_table", + "description": "Layer 'Toilets' shows changing_table=yes with a fixed text, namely 'A changing table is available' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Into nature')", + "value": "yes" + }, + { + "key": "changing_table", + "description": "Layer 'Toilets' shows changing_table=no with a fixed text, namely 'No changing table is available' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Into nature')", + "value": "no" + }, + { + "key": "changing_table:location", + "description": "Layer 'Toilets' shows and asks freeform values for key 'changing_table:location' (in the MapComplete.osm.be theme 'Into nature')" + }, + { + "key": "changing_table:location", + "description": "Layer 'Toilets' shows changing_table:location=female_toilet with a fixed text, namely 'The changing table is in the toilet for women. ' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Into nature')", + "value": "female_toilet" + }, + { + "key": "changing_table:location", + "description": "Layer 'Toilets' shows changing_table:location=male_toilet with a fixed text, namely 'The changing table is in the toilet for men. ' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Into nature')", + "value": "male_toilet" + }, + { + "key": "changing_table:location", + "description": "Layer 'Toilets' shows changing_table:location=wheelchair_toilet with a fixed text, namely 'The changing table is in the toilet for wheelchair users. ' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Into nature')", + "value": "wheelchair_toilet" + }, + { + "key": "changing_table:location", + "description": "Layer 'Toilets' shows changing_table:location=dedicated_room with a fixed text, namely 'The changing table is in a dedicated room. ' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Into nature')", + "value": "dedicated_room" + }, + { + "key": "toilets:handwashing", + "description": "Layer 'Toilets' shows toilets:handwashing=yes with a fixed text, namely 'This toilets have a sink to wash your hands' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Into nature')", + "value": "yes" + }, + { + "key": "toilets:handwashing", + "description": "Layer 'Toilets' shows toilets:handwashing=no with a fixed text, namely 'This toilets don't have a sink to wash your hands' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Into nature')", + "value": "no" + }, + { + "key": "toilets:paper_supplied", + "description": "Layer 'Toilets' shows toilets:paper_supplied=yes with a fixed text, namely 'This toilet is equipped with toilet paper' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Into nature')", + "value": "yes" + }, + { + "key": "toilets:paper_supplied", + "description": "Layer 'Toilets' shows toilets:paper_supplied=no with a fixed text, namely 'You have to bring your own toilet paper to this toilet' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Into nature')", + "value": "no" + }, + { + "key": "level", + "description": "Layer 'Toilets' shows and asks freeform values for key 'level' (in the MapComplete.osm.be theme 'Into nature')" + }, + { + "key": "location", + "description": "Layer 'Toilets' shows location=underground with a fixed text, namely 'Located underground' (in the MapComplete.osm.be theme 'Into nature')", + "value": "underground" + }, + { + "key": "level", + "description": "Layer 'Toilets' shows level=0 with a fixed text, namely 'Located on the ground floor' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Into nature')", + "value": "0" + }, + { + "key": "level", + "description": "Layer 'Toilets' shows with a fixed text, namely 'Located on the ground floor' (in the MapComplete.osm.be theme 'Into nature') Picking this answer will delete the key level.", + "value": "" + }, + { + "key": "level", + "description": "Layer 'Toilets' shows level=1 with a fixed text, namely 'Located on the first floor' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Into nature')", + "value": "1" + }, + { + "key": "level", + "description": "Layer 'Toilets' shows level=-1 with a fixed text, namely 'Located on the first basement level' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Into nature')", + "value": "-1" + }, + { + "key": "description", + "description": "Layer 'Toilets' shows and asks freeform values for key 'description' (in the MapComplete.osm.be theme 'Into nature')" + }, + { + "key": "id", + "description": "The MapComplete theme Into nature has a layer Your travelled track showing features with this tag", + "value": "location_track" } ] } \ No newline at end of file diff --git a/Docs/TagInfo/mapcomplete_notes.json b/Docs/TagInfo/mapcomplete_notes.json new file mode 100644 index 0000000000..194c65c341 --- /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/themes/notes/logo.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 travelled 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 1511340c08..1e8766dd56 100644 --- a/Docs/TagInfo/mapcomplete_observation_towers.json +++ b/Docs/TagInfo/mapcomplete_observation_towers.json @@ -45,12 +45,14 @@ "description": "Layer 'Observation towers' shows and asks freeform values for key 'height' (in the MapComplete.osm.be theme 'Observation towers')" }, { - "key": "operator", - "description": "Layer 'Observation towers' shows and asks freeform values for key 'operator' (in the MapComplete.osm.be theme 'Observation towers')" + "key": "access", + "description": "Layer 'Observation towers' shows access=yes with a fixed text, namely 'This tower is publicly accessible' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Observation towers')", + "value": "yes" }, { - "key": "website", - "description": "Layer 'Observation towers' shows and asks freeform values for key 'website' (in the MapComplete.osm.be theme 'Observation towers')" + "key": "access", + "description": "Layer 'Observation towers' shows access=guided with a fixed text, namely 'This tower can only be visited with a guide' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Observation towers')", + "value": "guided" }, { "key": "charge", @@ -58,12 +60,12 @@ }, { "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": "" }, { @@ -76,6 +78,32 @@ "description": "Layer 'Observation towers' 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 'Observation towers')", "value": "yes" }, + { + "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": "step_count", + "description": "Layer 'Observation towers' shows and asks freeform values for key 'step_count' (in the MapComplete.osm.be theme 'Observation towers')" + }, + { + "key": "elevator", + "description": "Layer 'Observation towers' shows elevator=yes with a fixed text, namely 'This tower has an elevator which takes visitors to the top' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Observation towers')", + "value": "yes" + }, + { + "key": "elevator", + "description": "Layer 'Observation towers' shows elevator=no with a fixed text, namely 'This tower does not have an elevator' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Observation towers')", + "value": "no" + }, + { + "key": "operator", + "description": "Layer 'Observation towers' shows and asks freeform values for key 'operator' (in the MapComplete.osm.be theme 'Observation towers')" + }, { "key": "wheelchair", "description": "Layer 'Observation towers' shows wheelchair=designated with a fixed text, namely 'This place is specially adapted for wheelchair users' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Observation towers')", @@ -102,8 +130,13 @@ }, { "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": "" + }, + { + "key": "id", + "description": "The MapComplete theme Observation towers has a layer Your travelled track showing features with this tag", + "value": "location_track" } ] } \ No newline at end of file diff --git a/Docs/TagInfo/mapcomplete_openwindpowermap.json b/Docs/TagInfo/mapcomplete_openwindpowermap.json index 48e1080378..83ecc311ad 100644 --- a/Docs/TagInfo/mapcomplete_openwindpowermap.json +++ b/Docs/TagInfo/mapcomplete_openwindpowermap.json @@ -5,7 +5,7 @@ "description": "A map for showing and editing wind turbines", "project_url": "https://mapcomplete.osm.be/openwindpowermap", "doc_url": "https://github.com/pietervdvn/MapComplete/tree/master/assets/themes/", - "icon_url": "https://mapcomplete.osm.be/assets/themes/openwindpowermap/wind_turbine.svg", + "icon_url": "https://mapcomplete.osm.be/assets/themes/openwindpowermap/logo.svg", "contact_name": "Pieter Vander Vennet, Seppe Santens", "contact_email": "pietervdvn@posteo.net" }, @@ -50,6 +50,11 @@ { "key": "wikipedia", "description": "The layer 'wind turbine allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "id", + "description": "The MapComplete theme OpenWindPowerMap has a layer Your travelled track showing features with this tag", + "value": "location_track" } ] } \ No newline at end of file diff --git a/Docs/TagInfo/mapcomplete_parkings.json b/Docs/TagInfo/mapcomplete_parkings.json index 86bcd0f4cd..0e52361f0e 100644 --- a/Docs/TagInfo/mapcomplete_parkings.json +++ b/Docs/TagInfo/mapcomplete_parkings.json @@ -15,16 +15,6 @@ "description": "The MapComplete theme Parking has a layer Parking showing features with this tag", "value": "parking" }, - { - "key": "amenity", - "description": "The MapComplete theme Parking has a layer Parking showing features with this tag", - "value": "motorcycle_parking" - }, - { - "key": "amenity", - "description": "The MapComplete theme Parking has a layer Parking showing features with this tag", - "value": "bicycle_parking" - }, { "key": "image", "description": "The layer 'Parking allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" @@ -40,6 +30,11 @@ { "key": "wikipedia", "description": "The layer 'Parking allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "id", + "description": "The MapComplete theme Parking has a layer Your travelled track showing features with this tag", + "value": "location_track" } ] } \ No newline at end of file diff --git a/Docs/TagInfo/mapcomplete_personal.json b/Docs/TagInfo/mapcomplete_personal.json index 987c1417f6..d80185cd31 100644 --- a/Docs/TagInfo/mapcomplete_personal.json +++ b/Docs/TagInfo/mapcomplete_personal.json @@ -9,5 +9,6612 @@ "contact_name": "Pieter Vander Vennet, MapComplete", "contact_email": "pietervdvn@posteo.net" }, - "tags": [] + "tags": [ + { + "key": "emergency", + "description": "The MapComplete theme Personal theme has a layer Defibrillators showing features with this tag", + "value": "defibrillator" + }, + { + "key": "image", + "description": "The layer 'Defibrillators allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "mapillary", + "description": "The layer 'Defibrillators allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "wikidata", + "description": "The layer 'Defibrillators allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "wikipedia", + "description": "The layer 'Defibrillators allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "indoor", + "description": "Layer 'Defibrillators' shows indoor=yes with a fixed text, namely 'This defibrillator is located indoors' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "yes" + }, + { + "key": "indoor", + "description": "Layer 'Defibrillators' shows indoor=no with a fixed text, namely 'This defibrillator is located outdoors' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "no" + }, + { + "key": "access", + "description": "Layer 'Defibrillators' shows and asks freeform values for key 'access' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "access", + "description": "Layer 'Defibrillators' shows access=yes with a fixed text, namely 'Publicly accessible' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "yes" + }, + { + "key": "access", + "description": "Layer 'Defibrillators' shows access=public with a fixed text, namely 'Publicly accessible' (in the MapComplete.osm.be theme 'Personal theme')", + "value": "public" + }, + { + "key": "access", + "description": "Layer 'Defibrillators' shows access=customers with a fixed text, namely 'Only accessible to customers' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "customers" + }, + { + "key": "access", + "description": "Layer 'Defibrillators' shows access=private with a fixed text, namely 'Not accessible to the general public (e.g. only accesible to staff, the owners, ...)' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "private" + }, + { + "key": "access", + "description": "Layer 'Defibrillators' shows access=no with a fixed text, namely 'Not accessible, possibly only for professional use' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "no" + }, + { + "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 'Personal theme') Picking this answer will delete the key defibrillator.", + "value": "" + }, + { + "key": "defibrillator", + "description": "Layer 'Defibrillators' shows defibrillator=manual with a fixed text, namely 'This is a manual defibrillator for professionals' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "manual" + }, + { + "key": "defibrillator", + "description": "Layer 'Defibrillators' shows defibrillator=automatic with a fixed text, namely 'This is a normal automatic defibrillator' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "automatic" + }, + { + "key": "defibrillator", + "description": "Layer 'Defibrillators' shows defibrillator~^..*$ with a fixed text, namely 'This is a special type of defibrillator: {defibrillator}' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "level", + "description": "Layer 'Defibrillators' shows and asks freeform values for key 'level' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "level", + "description": "Layer 'Defibrillators' shows level=0 with a fixed text, namely 'This defibrillator is on the ground floor' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "0" + }, + { + "key": "level", + "description": "Layer 'Defibrillators' shows level=1 with a fixed text, namely 'This defibrillator is on the first floor' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "1" + }, + { + "key": "defibrillator:location", + "description": "Layer 'Defibrillators' shows and asks freeform values for key 'defibrillator:location' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "defibrillator:location:en", + "description": "Layer 'Defibrillators' shows and asks freeform values for key 'defibrillator:location:en' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "defibrillator:location:fr", + "description": "Layer 'Defibrillators' shows and asks freeform values for key 'defibrillator:location:fr' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "wheelchair", + "description": "Layer 'Defibrillators' shows wheelchair=designated with a fixed text, namely 'This place is specially adapted for wheelchair users' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "designated" + }, + { + "key": "wheelchair", + "description": "Layer 'Defibrillators' shows wheelchair=yes with a fixed text, namely 'This place is easily reachable with a wheelchair' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "yes" + }, + { + "key": "wheelchair", + "description": "Layer 'Defibrillators' shows wheelchair=limited with a fixed text, namely 'It is possible to reach this place in a wheelchair, but it is not easy' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "limited" + }, + { + "key": "wheelchair", + "description": "Layer 'Defibrillators' shows wheelchair=no with a fixed text, namely 'This place is not reachable with a wheelchair' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "no" + }, + { + "key": "ref", + "description": "Layer 'Defibrillators' shows and asks freeform values for key 'ref' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "email", + "description": "Layer 'Defibrillators' shows and asks freeform values for key 'email' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "phone", + "description": "Layer 'Defibrillators' shows and asks freeform values for key 'phone' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "opening_hours", + "description": "Layer 'Defibrillators' shows and asks freeform values for key 'opening_hours' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "opening_hours", + "description": "Layer 'Defibrillators' shows opening_hours=24/7 with a fixed text, namely '24/7 opened (including holidays)' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "24/7" + }, + { + "key": "description", + "description": "Layer 'Defibrillators' shows and asks freeform values for key 'description' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "survey:date", + "description": "Layer 'Defibrillators' shows and asks freeform values for key 'survey:date' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "survey:date", + "description": "Layer 'Defibrillators' shows survey:date= with a fixed text, namely 'Checked today!' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme') Picking this answer will delete the key survey:date.", + "value": "" + }, + { + "key": "fixme", + "description": "Layer 'Defibrillators' shows and asks freeform values for key 'fixme' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "tourism", + "description": "The MapComplete theme Personal theme has a layer Artworks showing features with this tag", + "value": "artwork" + }, + { + "key": "image", + "description": "The layer 'Artworks allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "mapillary", + "description": "The layer 'Artworks allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "wikidata", + "description": "The layer 'Artworks allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "wikipedia", + "description": "The layer 'Artworks allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "artwork_type", + "description": "Layer 'Artworks' shows and asks freeform values for key 'artwork_type' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "artwork_type", + "description": "Layer 'Artworks' shows artwork_type=architecture with a fixed text, namely 'Architecture' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "architecture" + }, + { + "key": "artwork_type", + "description": "Layer 'Artworks' shows artwork_type=mural with a fixed text, namely 'Mural' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "mural" + }, + { + "key": "artwork_type", + "description": "Layer 'Artworks' shows artwork_type=painting with a fixed text, namely 'Painting' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "painting" + }, + { + "key": "artwork_type", + "description": "Layer 'Artworks' shows artwork_type=sculpture with a fixed text, namely 'Sculpture' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "sculpture" + }, + { + "key": "artwork_type", + "description": "Layer 'Artworks' shows artwork_type=statue with a fixed text, namely 'Statue' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "statue" + }, + { + "key": "artwork_type", + "description": "Layer 'Artworks' shows artwork_type=bust with a fixed text, namely 'Bust' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "bust" + }, + { + "key": "artwork_type", + "description": "Layer 'Artworks' shows artwork_type=stone with a fixed text, namely 'Stone' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "stone" + }, + { + "key": "artwork_type", + "description": "Layer 'Artworks' shows artwork_type=installation with a fixed text, namely 'Installation' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "installation" + }, + { + "key": "artwork_type", + "description": "Layer 'Artworks' shows artwork_type=graffiti with a fixed text, namely 'Graffiti' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "graffiti" + }, + { + "key": "artwork_type", + "description": "Layer 'Artworks' shows artwork_type=relief with a fixed text, namely 'Relief' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "relief" + }, + { + "key": "artwork_type", + "description": "Layer 'Artworks' shows artwork_type=azulejo with a fixed text, namely 'Azulejo (Spanish decorative tilework)' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "azulejo" + }, + { + "key": "artwork_type", + "description": "Layer 'Artworks' shows artwork_type=tilework with a fixed text, namely 'Tilework' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "tilework" + }, + { + "key": "artist_name", + "description": "Layer 'Artworks' shows and asks freeform values for key 'artist_name' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "website", + "description": "Layer 'Artworks' shows and asks freeform values for key 'website' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "wikidata", + "description": "Layer 'Artworks' shows and asks freeform values for key 'wikidata' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "amenity", + "description": "The MapComplete theme Personal theme has a layer Benches showing features with this tag", + "value": "bench" + }, + { + "key": "image", + "description": "The layer 'Benches allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "mapillary", + "description": "The layer 'Benches allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "wikidata", + "description": "The layer 'Benches allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "wikipedia", + "description": "The layer 'Benches allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "backrest", + "description": "Layer 'Benches' shows backrest=yes with a fixed text, namely 'Backrest: Yes' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "yes" + }, + { + "key": "backrest", + "description": "Layer 'Benches' shows backrest=no with a fixed text, namely 'Backrest: No' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "no" + }, + { + "key": "seats", + "description": "Layer 'Benches' shows and asks freeform values for key 'seats' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "material", + "description": "Layer 'Benches' shows and asks freeform values for key 'material' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "material", + "description": "Layer 'Benches' shows material=wood with a fixed text, namely 'Material: wood' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "wood" + }, + { + "key": "material", + "description": "Layer 'Benches' shows material=metal with a fixed text, namely 'Material: metal' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "metal" + }, + { + "key": "material", + "description": "Layer 'Benches' shows material=stone with a fixed text, namely 'Material: stone' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "stone" + }, + { + "key": "material", + "description": "Layer 'Benches' shows material=concrete with a fixed text, namely 'Material: concrete' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "concrete" + }, + { + "key": "material", + "description": "Layer 'Benches' shows material=plastic with a fixed text, namely 'Material: plastic' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "plastic" + }, + { + "key": "material", + "description": "Layer 'Benches' shows material=steel with a fixed text, namely 'Material: steel' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "steel" + }, + { + "key": "direction", + "description": "Layer 'Benches' shows and asks freeform values for key 'direction' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "colour", + "description": "Layer 'Benches' shows and asks freeform values for key 'colour' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "colour", + "description": "Layer 'Benches' shows colour=brown with a fixed text, namely 'Colour: brown' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "brown" + }, + { + "key": "colour", + "description": "Layer 'Benches' shows colour=green with a fixed text, namely 'Colour: green' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "green" + }, + { + "key": "colour", + "description": "Layer 'Benches' shows colour=gray with a fixed text, namely 'Colour: gray' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "gray" + }, + { + "key": "colour", + "description": "Layer 'Benches' shows colour=white with a fixed text, namely 'Colour: white' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "white" + }, + { + "key": "colour", + "description": "Layer 'Benches' shows colour=red with a fixed text, namely 'Colour: red' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "red" + }, + { + "key": "colour", + "description": "Layer 'Benches' shows colour=black with a fixed text, namely 'Colour: black' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "black" + }, + { + "key": "colour", + "description": "Layer 'Benches' shows colour=blue with a fixed text, namely 'Colour: blue' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "blue" + }, + { + "key": "colour", + "description": "Layer 'Benches' shows colour=yellow with a fixed text, namely 'Colour: yellow' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "yellow" + }, + { + "key": "survey:date", + "description": "Layer 'Benches' shows and asks freeform values for key 'survey:date' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "survey:date", + "description": "Layer 'Benches' shows survey:date= with a fixed text, namely 'Surveyed today!' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme') Picking this answer will delete the key survey:date.", + "value": "" + }, + { + "key": "bench", + "description": "The MapComplete theme Personal theme has a layer Benches at public transport stops showing features with this tag", + "value": "yes" + }, + { + "key": "bench", + "description": "The MapComplete theme Personal theme has a layer Benches at public transport stops showing features with this tag", + "value": "stand_up_bench" + }, + { + "key": "image", + "description": "The layer 'Benches at public transport stops allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "mapillary", + "description": "The layer 'Benches at public transport stops allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "wikidata", + "description": "The layer 'Benches at public transport stops allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "wikipedia", + "description": "The layer 'Benches at public transport stops allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "name", + "description": "Layer 'Benches at public transport stops' shows values with key 'name' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "bench", + "description": "Layer 'Benches at public transport stops' shows bench=yes with a fixed text, namely 'There is a normal, sit-down bench here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "yes" + }, + { + "key": "bench", + "description": "Layer 'Benches at public transport stops' shows bench=stand_up_bench with a fixed text, namely 'Stand up bench' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "stand_up_bench" + }, + { + "key": "bench", + "description": "Layer 'Benches at public transport stops' shows bench=no with a fixed text, namely 'There is no bench here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "no" + }, + { + "key": "leisure", + "description": "The MapComplete theme Personal theme has a layer Picnic tables showing features with this tag", + "value": "picnic_table" + }, + { + "key": "image", + "description": "The layer 'Picnic tables allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "mapillary", + "description": "The layer 'Picnic tables allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "wikidata", + "description": "The layer 'Picnic tables allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "wikipedia", + "description": "The layer 'Picnic tables allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "material", + "description": "Layer 'Picnic tables' shows and asks freeform values for key 'material' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "material", + "description": "Layer 'Picnic tables' shows material=wood with a fixed text, namely 'This is a wooden picnic table' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "wood" + }, + { + "key": "material", + "description": "Layer 'Picnic tables' shows material=concrete with a fixed text, namely 'This is a concrete picnic table' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "concrete" + }, + { + "key": "amenity", + "description": "The MapComplete theme Personal theme has a layer Bicycle rental showing features with this tag", + "value": "bicycle_rental" + }, + { + "key": "bicycle_rental", + "description": "The MapComplete theme Personal theme has a layer Bicycle rental showing features with this tag" + }, + { + "key": "service:bicycle:rental", + "description": "The MapComplete theme Personal theme has a layer Bicycle rental showing features with this tag", + "value": "yes" + }, + { + "key": "rental", + "description": "The MapComplete theme Personal theme has a layer Bicycle rental showing features with this tag" + }, + { + "key": "shop", + "description": "Layer 'Bicycle rental' shows shop=bicycle_rental&bicycle_rental=shop with a fixed text, namely 'This is a shop whose main focus is bicycle rental' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "bicycle_rental" + }, + { + "key": "bicycle_rental", + "description": "Layer 'Bicycle rental' shows shop=bicycle_rental&bicycle_rental=shop with a fixed text, namely 'This is a shop whose main focus is bicycle rental' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "shop" + }, + { + "key": "shop", + "description": "Layer 'Bicycle rental' shows shop=rental with a fixed text, namely 'This is a rental buisiness which rents out various objects and/or vehicles. It rents out bicycles too, but this is not the main focus' (in the MapComplete.osm.be theme 'Personal theme')", + "value": "rental" + }, + { + "key": "service:bicycle:rental", + "description": "Layer 'Bicycle rental' shows service:bicycle:rental=yes&shop=bicycle with a fixed text, namely 'This is a shop which sells or repairs bicycles, but also rents out bicycles' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "yes" + }, + { + "key": "shop", + "description": "Layer 'Bicycle rental' shows service:bicycle:rental=yes&shop=bicycle with a fixed text, namely 'This is a shop which sells or repairs bicycles, but also rents out bicycles' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "bicycle" + }, + { + "key": "bicycle_rental", + "description": "Layer 'Bicycle rental' shows bicycle_rental=docking_station with a fixed text, namely 'This is an automated docking station, where a bicycle is mechanically locked into a structure' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "docking_station" + }, + { + "key": "bicycle_rental", + "description": "Layer 'Bicycle rental' shows bicycle_rental=key_dispensing_machine with a fixed text, namely 'A machine is present which dispenses and accepts keys, eventually after authentication and/or payment. The bicycles are parked nearby' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "key_dispensing_machine" + }, + { + "key": "bicycle_rental", + "description": "Layer 'Bicycle rental' shows bicycle_rental=dropoff_point with a fixed text, namely 'This is a dropoff point: a designated bicycle parking for this cycle rental' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "dropoff_point" + }, + { + "key": "website", + "description": "Layer 'Bicycle rental' shows and asks freeform values for key 'website' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "contact:website", + "description": "Layer 'Bicycle rental' shows contact:website~^..*$ with a fixed text, namely '{contact:website}' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "email", + "description": "Layer 'Bicycle rental' shows and asks freeform values for key 'email' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "contact:email", + "description": "Layer 'Bicycle rental' shows contact:email~^..*$ with a fixed text, namely '{contact:email}' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "phone", + "description": "Layer 'Bicycle rental' shows and asks freeform values for key 'phone' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "contact:phone", + "description": "Layer 'Bicycle rental' shows contact:phone~^..*$ with a fixed text, namely '{contact:phone}' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "opening_hours", + "description": "Layer 'Bicycle rental' shows and asks freeform values for key 'opening_hours' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "payment:cash", + "description": "Layer 'Bicycle rental' shows payment:cash=yes with a fixed text, namely 'Cash is accepted here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "yes" + }, + { + "key": "payment:cards", + "description": "Layer 'Bicycle rental' shows payment:cards=yes with a fixed text, namely 'Payment cards are accepted here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "yes" + }, + { + "key": "payment:cash", + "description": "Layer 'Bicycle rental' shows payment:cash=yes with a fixed text, namely 'Cash is accepted here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "yes" + }, + { + "key": "payment:cards", + "description": "Layer 'Bicycle rental' shows payment:cards=yes with a fixed text, namely 'Payment cards are accepted here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "yes" + }, + { + "key": "payment:app", + "description": "Layer 'Bicycle rental' shows payment:app=yes with a fixed text, namely 'Payment is done using a dedicated app' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "yes" + }, + { + "key": "payment:membership_card", + "description": "Layer 'Bicycle rental' shows payment:membership_card=yes with a fixed text, namely 'Payment is done using a membership card' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "yes" + }, + { + "key": "rental", + "description": "Layer 'Bicycle rental' shows and asks freeform values for key 'rental' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "rental", + "description": "Layer 'Bicycle rental' shows rental=city_bike with a fixed text, namely 'Normal city bikes can be rented here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "city_bike" + }, + { + "key": "rental", + "description": "Layer 'Bicycle rental' shows rental=ebike with a fixed text, namely 'Electrical bikes can be rented here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "ebike" + }, + { + "key": "rental", + "description": "Layer 'Bicycle rental' shows rental=bmx with a fixed text, namely 'BMX bikes can be rented here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "bmx" + }, + { + "key": "rental", + "description": "Layer 'Bicycle rental' shows rental=mtb with a fixed text, namely 'Mountainbikes can be rented here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "mtb" + }, + { + "key": "rental", + "description": "Layer 'Bicycle rental' shows rental=kid_bike with a fixed text, namely 'Bikes for childs can be rented here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "kid_bike" + }, + { + "key": "capacity:city_bike", + "description": "Layer 'Bicycle rental' shows and asks freeform values for key 'capacity:city_bike' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "capacity:ebike", + "description": "Layer 'Bicycle rental' shows and asks freeform values for key 'capacity:ebike' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "capacity:kid_bike", + "description": "Layer 'Bicycle rental' shows and asks freeform values for key 'capacity:kid_bike' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "capacity:bmx", + "description": "Layer 'Bicycle rental' shows and asks freeform values for key 'capacity:bmx' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "capacity:mtb", + "description": "Layer 'Bicycle rental' shows and asks freeform values for key 'capacity:mtb' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "capacity:bicycle_pannier", + "description": "Layer 'Bicycle rental' shows and asks freeform values for key 'capacity:bicycle_pannier' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "amenity", + "description": "The MapComplete theme Personal theme has a layer Bicycle library showing features with this tag", + "value": "bicycle_library" + }, + { + "key": "image", + "description": "The layer 'Bicycle library allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "mapillary", + "description": "The layer 'Bicycle library allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "wikidata", + "description": "The layer 'Bicycle library allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "wikipedia", + "description": "The layer 'Bicycle library allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "name", + "description": "Layer 'Bicycle library' shows and asks freeform values for key 'name' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "website", + "description": "Layer 'Bicycle library' shows and asks freeform values for key 'website' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "contact:website", + "description": "Layer 'Bicycle library' shows contact:website~^..*$ with a fixed text, namely '{contact:website}' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "phone", + "description": "Layer 'Bicycle library' shows and asks freeform values for key 'phone' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "contact:phone", + "description": "Layer 'Bicycle library' shows contact:phone~^..*$ with a fixed text, namely '{contact:phone}' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "email", + "description": "Layer 'Bicycle library' shows and asks freeform values for key 'email' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "contact:email", + "description": "Layer 'Bicycle library' shows contact:email~^..*$ with a fixed text, namely '{contact:email}' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "opening_hours", + "description": "Layer 'Bicycle library' shows and asks freeform values for key 'opening_hours' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "charge", + "description": "Layer 'Bicycle library' shows and asks freeform values for key 'charge' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "fee", + "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 'Personal theme')", + "value": "no" + }, + { + "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 'Personal theme') Picking this answer will delete the key charge.", + "value": "" + }, + { + "key": "fee", + "description": "Layer 'Bicycle library' shows fee=yes&charge=€20warranty + €20/year with a fixed text, namely 'Lending a bicycle costs €20/year and €20 warranty' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "yes" + }, + { + "key": "charge", + "description": "Layer 'Bicycle library' shows fee=yes&charge=€20warranty + €20/year with a fixed text, namely 'Lending a bicycle costs €20/year and €20 warranty' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "€20warranty + €20/year" + }, + { + "key": "bicycle_library:for", + "description": "Layer 'Bicycle library' shows bicycle_library:for=child with a fixed text, namely 'Bikes for children available' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "child" + }, + { + "key": "bicycle_library:for", + "description": "Layer 'Bicycle library' shows bicycle_library:for=adult with a fixed text, namely 'Bikes for adult available' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "adult" + }, + { + "key": "bicycle_library:for", + "description": "Layer 'Bicycle library' shows bicycle_library:for=disabled with a fixed text, namely 'Bikes for disabled persons available' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "disabled" + }, + { + "key": "description", + "description": "Layer 'Bicycle library' shows and asks freeform values for key 'description' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "amenity", + "description": "The MapComplete theme Personal theme has a layer Binoculars showing features with this tag", + "value": "binoculars" + }, + { + "key": "image", + "description": "The layer 'Binoculars allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "mapillary", + "description": "The layer 'Binoculars allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "wikidata", + "description": "The layer 'Binoculars allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "wikipedia", + "description": "The layer 'Binoculars allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "charge", + "description": "Layer 'Binoculars' shows and asks freeform values for key 'charge' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "fee", + "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 'Personal theme')", + "value": "no" + }, + { + "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 'Personal theme') Picking this answer will delete the key charge.", + "value": "" + }, + { + "key": "direction", + "description": "Layer 'Binoculars' shows and asks freeform values for key 'direction' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "amenity", + "description": "The MapComplete theme Personal theme has a layer Bookcases showing features with this tag", + "value": "public_bookcase" + }, + { + "key": "image", + "description": "The layer 'Bookcases allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "mapillary", + "description": "The layer 'Bookcases allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "wikidata", + "description": "The layer 'Bookcases allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "wikipedia", + "description": "The layer 'Bookcases allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "name", + "description": "Layer 'Bookcases' shows and asks freeform values for key 'name' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "noname", + "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 'Personal theme')", + "value": "yes" + }, + { + "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 'Personal theme') Picking this answer will delete the key name.", + "value": "" + }, + { + "key": "capacity", + "description": "Layer 'Bookcases' shows and asks freeform values for key 'capacity' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "books", + "description": "Layer 'Bookcases' shows books=children with a fixed text, namely 'Mostly children books' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "children" + }, + { + "key": "books", + "description": "Layer 'Bookcases' shows books=adults with a fixed text, namely 'Mostly books for adults' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "adults" + }, + { + "key": "books", + "description": "Layer 'Bookcases' shows books=children;adults with a fixed text, namely 'Both books for kids and adults' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "children;adults" + }, + { + "key": "indoor", + "description": "Layer 'Bookcases' shows indoor=yes with a fixed text, namely 'This bookcase is located indoors' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "yes" + }, + { + "key": "indoor", + "description": "Layer 'Bookcases' shows indoor=no with a fixed text, namely 'This bookcase is located outdoors' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "no" + }, + { + "key": "indoor", + "description": "Layer 'Bookcases' shows with a fixed text, namely 'This bookcase is located outdoors' (in the MapComplete.osm.be theme 'Personal theme') Picking this answer will delete the key indoor.", + "value": "" + }, + { + "key": "access", + "description": "Layer 'Bookcases' shows access=yes with a fixed text, namely 'Publicly accessible' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "yes" + }, + { + "key": "access", + "description": "Layer 'Bookcases' shows access=customers with a fixed text, namely 'Only accessible to customers' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "customers" + }, + { + "key": "operator", + "description": "Layer 'Bookcases' shows and asks freeform values for key 'operator' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "brand", + "description": "Layer 'Bookcases' shows and asks freeform values for key 'brand' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "brand", + "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 'Personal theme')", + "value": "Little Free Library" + }, + { + "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 'Personal theme') Picking this answer will delete the key nobrand.", + "value": "" + }, + { + "key": "nobrand", + "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 'Personal theme')", + "value": "yes" + }, + { + "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 'Personal theme') Picking this answer will delete the key brand.", + "value": "" + }, + { + "key": "ref", + "description": "Layer 'Bookcases' shows and asks freeform values for key 'ref' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "nobrand", + "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 'Personal theme')", + "value": "yes" + }, + { + "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 'Personal theme') Picking this answer will delete the key brand.", + "value": "" + }, + { + "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 'Personal theme') Picking this answer will delete the key ref.", + "value": "" + }, + { + "key": "start_date", + "description": "Layer 'Bookcases' shows and asks freeform values for key 'start_date' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "website", + "description": "Layer 'Bookcases' shows and asks freeform values for key 'website' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "amenity", + "description": "The MapComplete theme Personal theme has a layer Cafés and pubs showing features with this tag", + "value": "bar" + }, + { + "key": "amenity", + "description": "The MapComplete theme Personal theme has a layer Cafés and pubs showing features with this tag", + "value": "pub" + }, + { + "key": "amenity", + "description": "The MapComplete theme Personal theme has a layer Cafés and pubs showing features with this tag", + "value": "cafe" + }, + { + "key": "amenity", + "description": "The MapComplete theme Personal theme has a layer Cafés and pubs showing features with this tag", + "value": "biergarten" + }, + { + "key": "image", + "description": "The layer 'Cafés and pubs allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "mapillary", + "description": "The layer 'Cafés and pubs allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "wikidata", + "description": "The layer 'Cafés and pubs allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "wikipedia", + "description": "The layer 'Cafés and pubs allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "name", + "description": "Layer 'Cafés and pubs' shows and asks freeform values for key 'name' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "amenity", + "description": "Layer 'Cafés and pubs' shows amenity=pub with a fixed text, namely 'Dit is een bruin café of een kroeg waar voornamelijk bier wordt gedronken. De inrichting is typisch gezellig met veel houtwerk ' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "pub" + }, + { + "key": "amenity", + "description": "Layer 'Cafés and pubs' shows amenity=bar with a fixed text, namely 'Dit is een bar waar men ter plaatse alcoholische drank nuttigt. De inrichting is typisch modern en commercieel, soms met lichtinstallatie en feestmuziek' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "bar" + }, + { + "key": "amenity", + "description": "Layer 'Cafés and pubs' shows amenity=cafe with a fixed text, namely 'Dit is een cafe - een plaats waar men rustig kan zitten om een thee, koffie of alcoholische drank te nuttigen.' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "cafe" + }, + { + "key": "amenity", + "description": "Layer 'Cafés and pubs' shows amenity=restaurant with a fixed text, namely 'Dit is een restaurant waar men een maaltijd geserveerd krijgt' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "restaurant" + }, + { + "key": "amenity", + "description": "Layer 'Cafés and pubs' shows amenity=biergarten with a fixed text, namely 'Een open ruimte waar bier geserveerd wordt. Typisch in Duitsland' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "biergarten" + }, + { + "key": "opening_hours", + "description": "Layer 'Cafés and pubs' shows and asks freeform values for key 'opening_hours' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "website", + "description": "Layer 'Cafés and pubs' shows and asks freeform values for key 'website' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "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 'Personal theme')" + }, + { + "key": "email", + "description": "Layer 'Cafés and pubs' shows and asks freeform values for key 'email' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "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 'Personal theme')" + }, + { + "key": "phone", + "description": "Layer 'Cafés and pubs' shows and asks freeform values for key 'phone' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "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 'Personal theme')" + }, + { + "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 'Personal theme')", + "value": "yes" + }, + { + "key": "payment:cards", + "description": "Layer 'Cafés and pubs' shows payment:cards=yes with a fixed text, namely 'Payment cards are accepted here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "yes" + }, + { + "key": "wheelchair", + "description": "Layer 'Cafés and pubs' shows wheelchair=designated with a fixed text, namely 'This place is specially adapted for wheelchair users' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "designated" + }, + { + "key": "wheelchair", + "description": "Layer 'Cafés and pubs' shows wheelchair=yes with a fixed text, namely 'This place is easily reachable with a wheelchair' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "yes" + }, + { + "key": "wheelchair", + "description": "Layer 'Cafés and pubs' shows wheelchair=limited with a fixed text, namely 'It is possible to reach this place in a wheelchair, but it is not easy' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "limited" + }, + { + "key": "wheelchair", + "description": "Layer 'Cafés and pubs' shows wheelchair=no with a fixed text, namely 'This place is not reachable with a wheelchair' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "no" + }, + { + "key": "service:electricity", + "description": "Layer 'Cafés and pubs' shows service:electricity=yes with a fixed text, namely 'There are plenty of domestic sockets available to customers seated indoors, where they can charge their electronics' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "yes" + }, + { + "key": "service:electricity", + "description": "Layer 'Cafés and pubs' shows service:electricity=limited with a fixed text, namely 'There are a few domestic sockets available to customers seated indoors, where they can charge their electronics' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "limited" + }, + { + "key": "service:electricity", + "description": "Layer 'Cafés and pubs' shows service:electricity=ask with a fixed text, namely 'There are no sockets available indoors to customers, but charging might be possible if the staff is asked' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "ask" + }, + { + "key": "service:electricity", + "description": "Layer 'Cafés and pubs' shows service:electricity=no with a fixed text, namely 'There are a no domestic sockets available to customers seated indoors' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "no" + }, + { + "key": "dog", + "description": "Layer 'Cafés and pubs' shows dog=yes with a fixed text, namely 'Dogs are allowed' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "yes" + }, + { + "key": "dog", + "description": "Layer 'Cafés and pubs' shows dog=no with a fixed text, namely 'Dogs are not allowed' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "no" + }, + { + "key": "dog", + "description": "Layer 'Cafés and pubs' shows dog=leashed with a fixed text, namely 'Dogs are allowed, but they have to be leashed' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "leashed" + }, + { + "key": "dog", + "description": "Layer 'Cafés and pubs' shows dog=unleashed with a fixed text, namely 'Dogs are allowed and can run around freely' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "unleashed" + }, + { + "key": "amenity", + "description": "The MapComplete theme Personal theme has a layer Charging stations showing features with this tag", + "value": "charging_station" + }, + { + "key": "disused:amenity", + "description": "The MapComplete theme Personal theme has a layer Charging stations showing features with this tag", + "value": "charging_station" + }, + { + "key": "planned:amenity", + "description": "The MapComplete theme Personal theme has a layer Charging stations showing features with this tag", + "value": "charging_station" + }, + { + "key": "construction:amenity", + "description": "The MapComplete theme Personal theme has a layer Charging stations showing features with this tag", + "value": "charging_station" + }, + { + "key": "image", + "description": "The layer 'Charging stations allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "mapillary", + "description": "The layer 'Charging stations allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "wikidata", + "description": "The layer 'Charging stations allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "wikipedia", + "description": "The layer 'Charging stations allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "bicycle", + "description": "Layer 'Charging stations' shows bicycle=yes with a fixed text, namely 'Bicycles can be charged here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "yes" + }, + { + "key": "motorcar", + "description": "Layer 'Charging stations' shows motorcar=yes with a fixed text, namely 'Cars can be charged here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "yes" + }, + { + "key": "scooter", + "description": "Layer 'Charging stations' shows scooter=yes with a fixed text, namely 'Scooters can be charged here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "yes" + }, + { + "key": "hgv", + "description": "Layer 'Charging stations' shows hgv=yes with a fixed text, namely 'Heavy good vehicles (such as trucks) can be charged here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "yes" + }, + { + "key": "bus", + "description": "Layer 'Charging stations' shows bus=yes with a fixed text, namely 'Buses can be charged here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "yes" + }, + { + "key": "access", + "description": "Layer 'Charging stations' shows and asks freeform values for key 'access' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "access", + "description": "Layer 'Charging stations' shows access=yes with a fixed text, namely 'Anyone can use this charging station (payment might be needed)' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "yes" + }, + { + "key": "access", + "description": "Layer 'Charging stations' shows access=permissive|access=public with a fixed text, namely 'Anyone can use this charging station (payment might be needed)' (in the MapComplete.osm.be theme 'Personal theme')", + "value": "permissive" + }, + { + "key": "access", + "description": "Layer 'Charging stations' shows access=permissive|access=public with a fixed text, namely 'Anyone can use this charging station (payment might be needed)' (in the MapComplete.osm.be theme 'Personal theme')", + "value": "public" + }, + { + "key": "access", + "description": "Layer 'Charging stations' shows access=customers with a fixed text, namely 'Only customers of the place this station belongs to can use this charging station
E.g. a charging station operated by hotel which is only usable by their guests' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "customers" + }, + { + "key": "access", + "description": "Layer 'Charging stations' shows access=private with a fixed text, namely 'Not accessible to the general public (e.g. only accessible to the owners, employees, ...)' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "private" + }, + { + "key": "capacity", + "description": "Layer 'Charging stations' shows and asks freeform values for key 'capacity' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "socket:schuko", + "description": "Layer 'Charging stations' shows socket:schuko=1 with a fixed text, namely '
Schuko wall plug without ground pin (CEE7/4 type F)
' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "1" + }, + { + "key": "socket:schuko", + "description": "Layer 'Charging stations' shows socket:schuko~^..*$&socket:schuko!~^1$ with a fixed text, namely '
Schuko wall plug without ground pin (CEE7/4 type F)
' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "socket:typee", + "description": "Layer 'Charging stations' shows socket:typee=1 with a fixed text, namely '
European wall plug with ground pin (CEE7/4 type E)
' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "1" + }, + { + "key": "socket:typee", + "description": "Layer 'Charging stations' shows socket:typee~^..*$&socket:typee!~^1$ with a fixed text, namely '
European wall plug with ground pin (CEE7/4 type E)
' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "socket:chademo", + "description": "Layer 'Charging stations' shows socket:chademo=1 with a fixed text, namely '
Chademo
' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "1" + }, + { + "key": "socket:chademo", + "description": "Layer 'Charging stations' shows socket:chademo~^..*$&socket:chademo!~^1$ with a fixed text, namely '
Chademo
' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "socket:type1_cable", + "description": "Layer 'Charging stations' shows socket:type1_cable=1 with a fixed text, namely '
Type 1 with cable (J1772)
' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "1" + }, + { + "key": "socket:type1_cable", + "description": "Layer 'Charging stations' shows socket:type1_cable~^..*$&socket:type1_cable!~^1$ with a fixed text, namely '
Type 1 with cable (J1772)
' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "socket:type1", + "description": "Layer 'Charging stations' shows socket:type1=1 with a fixed text, namely '
Type 1 without cable (J1772)
' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "1" + }, + { + "key": "socket:type1", + "description": "Layer 'Charging stations' shows socket:type1~^..*$&socket:type1!~^1$ with a fixed text, namely '
Type 1 without cable (J1772)
' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "socket:type1_combo", + "description": "Layer 'Charging stations' shows socket:type1_combo=1 with a fixed text, namely '
Type 1 CCS (aka Type 1 Combo)
' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "1" + }, + { + "key": "socket:type1_combo", + "description": "Layer 'Charging stations' shows socket:type1_combo~^..*$&socket:type1_combo!~^1$ with a fixed text, namely '
Type 1 CCS (aka Type 1 Combo)
' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "socket:tesla_supercharger", + "description": "Layer 'Charging stations' shows socket:tesla_supercharger=1 with a fixed text, namely '
Tesla Supercharger
' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "1" + }, + { + "key": "socket:tesla_supercharger", + "description": "Layer 'Charging stations' shows socket:tesla_supercharger~^..*$&socket:tesla_supercharger!~^1$ with a fixed text, namely '
Tesla Supercharger
' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "socket:type2", + "description": "Layer 'Charging stations' shows socket:type2=1 with a fixed text, namely '
Type 2 (mennekes)
' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "1" + }, + { + "key": "socket:type2", + "description": "Layer 'Charging stations' shows socket:type2~^..*$&socket:type2!~^1$ with a fixed text, namely '
Type 2 (mennekes)
' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "socket:type2_combo", + "description": "Layer 'Charging stations' shows socket:type2_combo=1 with a fixed text, namely '
Type 2 CCS (mennekes)
' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "1" + }, + { + "key": "socket:type2_combo", + "description": "Layer 'Charging stations' shows socket:type2_combo~^..*$&socket:type2_combo!~^1$ with a fixed text, namely '
Type 2 CCS (mennekes)
' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "socket:type2_cable", + "description": "Layer 'Charging stations' shows socket:type2_cable=1 with a fixed text, namely '
Type 2 with cable (mennekes)
' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "1" + }, + { + "key": "socket:type2_cable", + "description": "Layer 'Charging stations' shows socket:type2_cable~^..*$&socket:type2_cable!~^1$ with a fixed text, namely '
Type 2 with cable (mennekes)
' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "socket:tesla_supercharger_ccs", + "description": "Layer 'Charging stations' shows socket:tesla_supercharger_ccs=1 with a fixed text, namely '
Tesla Supercharger CCS (a branded type2_css)
' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "1" + }, + { + "key": "socket:tesla_supercharger_ccs", + "description": "Layer 'Charging stations' shows socket:tesla_supercharger_ccs~^..*$&socket:tesla_supercharger_ccs!~^1$ with a fixed text, namely '
Tesla Supercharger CCS (a branded type2_css)
' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "socket:tesla_destination", + "description": "Layer 'Charging stations' shows socket:tesla_destination=1 with a fixed text, namely '
Tesla Supercharger (destination)
' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "1" + }, + { + "key": "socket:tesla_destination", + "description": "Layer 'Charging stations' shows socket:tesla_destination~^..*$&socket:tesla_destination!~^1$&_country=us with a fixed text, namely '
Tesla Supercharger (destination)
' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "socket:tesla_destination", + "description": "Layer 'Charging stations' shows socket:tesla_destination=1 with a fixed text, namely '
Tesla supercharger (destination) (A Type 2 with cable branded as tesla)
' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "1" + }, + { + "key": "socket:tesla_destination", + "description": "Layer 'Charging stations' shows socket:tesla_destination~^..*$&socket:tesla_destination!~^1$&_country!~^us$ with a fixed text, namely '
Tesla supercharger (destination) (A Type 2 with cable branded as tesla)
' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "socket:USB-A", + "description": "Layer 'Charging stations' shows socket:USB-A=1 with a fixed text, namely '
USB to charge phones and small electronics
' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "1" + }, + { + "key": "socket:USB-A", + "description": "Layer 'Charging stations' shows socket:USB-A~^..*$&socket:USB-A!~^1$ with a fixed text, namely '
USB to charge phones and small electronics
' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "socket:bosch_3pin", + "description": "Layer 'Charging stations' shows socket:bosch_3pin=1 with a fixed text, namely '
Bosch Active Connect with 3 pins and cable
' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "1" + }, + { + "key": "socket:bosch_3pin", + "description": "Layer 'Charging stations' shows socket:bosch_3pin~^..*$&socket:bosch_3pin!~^1$ with a fixed text, namely '
Bosch Active Connect with 3 pins and cable
' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "socket:bosch_5pin", + "description": "Layer 'Charging stations' shows socket:bosch_5pin=1 with a fixed text, namely '
Bosch Active Connect with 5 pins and cable
' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "1" + }, + { + "key": "socket:bosch_5pin", + "description": "Layer 'Charging stations' shows socket:bosch_5pin~^..*$&socket:bosch_5pin!~^1$ with a fixed text, namely '
Bosch Active Connect with 5 pins and cable
' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "socket:schuko", + "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:schuko' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "socket:typee", + "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:typee' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "socket:chademo", + "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:chademo' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "socket:type1_cable", + "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:type1_cable' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "socket:type1", + "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:type1' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "socket:type1_combo", + "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:type1_combo' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "socket:tesla_supercharger", + "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:tesla_supercharger' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "socket:type2", + "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:type2' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "socket:type2_combo", + "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:type2_combo' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "socket:type2_cable", + "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:type2_cable' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "socket:tesla_supercharger_ccs", + "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:tesla_supercharger_ccs' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "socket:tesla_destination", + "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:tesla_destination' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "socket:tesla_destination", + "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:tesla_destination' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "socket:USB-A", + "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:USB-A' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "socket:bosch_3pin", + "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:bosch_3pin' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "socket:bosch_5pin", + "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:bosch_5pin' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "socket:schuko:voltage", + "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:schuko:voltage' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "socket:socket:schuko:voltage", + "description": "Layer 'Charging stations' shows socket:socket:schuko:voltage=230 V with a fixed text, namely '
Schuko wall plug without ground pin (CEE7/4 type F)
outputs 230 volt' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "230 V" + }, + { + "key": "socket:schuko:current", + "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:schuko:current' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "socket:socket:schuko:current", + "description": "Layer 'Charging stations' shows socket:socket:schuko:current=16 A with a fixed text, namely '
Schuko wall plug without ground pin (CEE7/4 type F)
outputs at most 16 A' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "16 A" + }, + { + "key": "socket:schuko:output", + "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:schuko:output' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "socket:socket:schuko:output", + "description": "Layer 'Charging stations' shows socket:socket:schuko:output=3.6 kw with a fixed text, namely '
Schuko wall plug without ground pin (CEE7/4 type F)
outputs at most 3.6 kw' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "3.6 kw" + }, + { + "key": "socket:typee:voltage", + "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:typee:voltage' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "socket:socket:typee:voltage", + "description": "Layer 'Charging stations' shows socket:socket:typee:voltage=230 V with a fixed text, namely '
European wall plug with ground pin (CEE7/4 type E)
outputs 230 volt' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "230 V" + }, + { + "key": "socket:typee:current", + "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:typee:current' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "socket:socket:typee:current", + "description": "Layer 'Charging stations' shows socket:socket:typee:current=16 A with a fixed text, namely '
European wall plug with ground pin (CEE7/4 type E)
outputs at most 16 A' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "16 A" + }, + { + "key": "socket:typee:output", + "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:typee:output' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "socket:socket:typee:output", + "description": "Layer 'Charging stations' shows socket:socket:typee:output=3 kw with a fixed text, namely '
European wall plug with ground pin (CEE7/4 type E)
outputs at most 3 kw' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "3 kw" + }, + { + "key": "socket:socket:typee:output", + "description": "Layer 'Charging stations' shows socket:socket:typee:output=22 kw with a fixed text, namely '
European wall plug with ground pin (CEE7/4 type E)
outputs at most 22 kw' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "22 kw" + }, + { + "key": "socket:chademo:voltage", + "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:chademo:voltage' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "socket:socket:chademo:voltage", + "description": "Layer 'Charging stations' shows socket:socket:chademo:voltage=500 V with a fixed text, namely '
Chademo
outputs 500 volt' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "500 V" + }, + { + "key": "socket:chademo:current", + "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:chademo:current' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "socket:socket:chademo:current", + "description": "Layer 'Charging stations' shows socket:socket:chademo:current=120 A with a fixed text, namely '
Chademo
outputs at most 120 A' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "120 A" + }, + { + "key": "socket:chademo:output", + "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:chademo:output' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "socket:socket:chademo:output", + "description": "Layer 'Charging stations' shows socket:socket:chademo:output=50 kw with a fixed text, namely '
Chademo
outputs at most 50 kw' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "50 kw" + }, + { + "key": "socket:type1_cable:voltage", + "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:type1_cable:voltage' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "socket:socket:type1_cable:voltage", + "description": "Layer 'Charging stations' shows socket:socket:type1_cable:voltage=200 V with a fixed text, namely '
Type 1 with cable (J1772)
outputs 200 volt' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "200 V" + }, + { + "key": "socket:socket:type1_cable:voltage", + "description": "Layer 'Charging stations' shows socket:socket:type1_cable:voltage=240 V with a fixed text, namely '
Type 1 with cable (J1772)
outputs 240 volt' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "240 V" + }, + { + "key": "socket:type1_cable:current", + "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:type1_cable:current' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "socket:socket:type1_cable:current", + "description": "Layer 'Charging stations' shows socket:socket:type1_cable:current=32 A with a fixed text, namely '
Type 1 with cable (J1772)
outputs at most 32 A' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "32 A" + }, + { + "key": "socket:type1_cable:output", + "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:type1_cable:output' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "socket:socket:type1_cable:output", + "description": "Layer 'Charging stations' shows socket:socket:type1_cable:output=3.7 kw with a fixed text, namely '
Type 1 with cable (J1772)
outputs at most 3.7 kw' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "3.7 kw" + }, + { + "key": "socket:socket:type1_cable:output", + "description": "Layer 'Charging stations' shows socket:socket:type1_cable:output=7 kw with a fixed text, namely '
Type 1 with cable (J1772)
outputs at most 7 kw' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "7 kw" + }, + { + "key": "socket:type1:voltage", + "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:type1:voltage' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "socket:socket:type1:voltage", + "description": "Layer 'Charging stations' shows socket:socket:type1:voltage=200 V with a fixed text, namely '
Type 1 without cable (J1772)
outputs 200 volt' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "200 V" + }, + { + "key": "socket:socket:type1:voltage", + "description": "Layer 'Charging stations' shows socket:socket:type1:voltage=240 V with a fixed text, namely '
Type 1 without cable (J1772)
outputs 240 volt' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "240 V" + }, + { + "key": "socket:type1:current", + "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:type1:current' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "socket:socket:type1:current", + "description": "Layer 'Charging stations' shows socket:socket:type1:current=32 A with a fixed text, namely '
Type 1 without cable (J1772)
outputs at most 32 A' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "32 A" + }, + { + "key": "socket:type1:output", + "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:type1:output' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "socket:socket:type1:output", + "description": "Layer 'Charging stations' shows socket:socket:type1:output=3.7 kw with a fixed text, namely '
Type 1 without cable (J1772)
outputs at most 3.7 kw' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "3.7 kw" + }, + { + "key": "socket:socket:type1:output", + "description": "Layer 'Charging stations' shows socket:socket:type1:output=6.6 kw with a fixed text, namely '
Type 1 without cable (J1772)
outputs at most 6.6 kw' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "6.6 kw" + }, + { + "key": "socket:socket:type1:output", + "description": "Layer 'Charging stations' shows socket:socket:type1:output=7 kw with a fixed text, namely '
Type 1 without cable (J1772)
outputs at most 7 kw' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "7 kw" + }, + { + "key": "socket:socket:type1:output", + "description": "Layer 'Charging stations' shows socket:socket:type1:output=7.2 kw with a fixed text, namely '
Type 1 without cable (J1772)
outputs at most 7.2 kw' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "7.2 kw" + }, + { + "key": "socket:type1_combo:voltage", + "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:type1_combo:voltage' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "socket:socket:type1_combo:voltage", + "description": "Layer 'Charging stations' shows socket:socket:type1_combo:voltage=400 V with a fixed text, namely '
Type 1 CCS (aka Type 1 Combo)
outputs 400 volt' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "400 V" + }, + { + "key": "socket:socket:type1_combo:voltage", + "description": "Layer 'Charging stations' shows socket:socket:type1_combo:voltage=1000 V with a fixed text, namely '
Type 1 CCS (aka Type 1 Combo)
outputs 1000 volt' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "1000 V" + }, + { + "key": "socket:type1_combo:current", + "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:type1_combo:current' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "socket:socket:type1_combo:current", + "description": "Layer 'Charging stations' shows socket:socket:type1_combo:current=50 A with a fixed text, namely '
Type 1 CCS (aka Type 1 Combo)
outputs at most 50 A' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "50 A" + }, + { + "key": "socket:socket:type1_combo:current", + "description": "Layer 'Charging stations' shows socket:socket:type1_combo:current=125 A with a fixed text, namely '
Type 1 CCS (aka Type 1 Combo)
outputs at most 125 A' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "125 A" + }, + { + "key": "socket:type1_combo:output", + "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:type1_combo:output' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "socket:socket:type1_combo:output", + "description": "Layer 'Charging stations' shows socket:socket:type1_combo:output=50 kw with a fixed text, namely '
Type 1 CCS (aka Type 1 Combo)
outputs at most 50 kw' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "50 kw" + }, + { + "key": "socket:socket:type1_combo:output", + "description": "Layer 'Charging stations' shows socket:socket:type1_combo:output=62.5 kw with a fixed text, namely '
Type 1 CCS (aka Type 1 Combo)
outputs at most 62.5 kw' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "62.5 kw" + }, + { + "key": "socket:socket:type1_combo:output", + "description": "Layer 'Charging stations' shows socket:socket:type1_combo:output=150 kw with a fixed text, namely '
Type 1 CCS (aka Type 1 Combo)
outputs at most 150 kw' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "150 kw" + }, + { + "key": "socket:socket:type1_combo:output", + "description": "Layer 'Charging stations' shows socket:socket:type1_combo:output=350 kw with a fixed text, namely '
Type 1 CCS (aka Type 1 Combo)
outputs at most 350 kw' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "350 kw" + }, + { + "key": "socket:tesla_supercharger:voltage", + "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:tesla_supercharger:voltage' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "socket:socket:tesla_supercharger:voltage", + "description": "Layer 'Charging stations' shows socket:socket:tesla_supercharger:voltage=480 V with a fixed text, namely '
Tesla Supercharger
outputs 480 volt' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "480 V" + }, + { + "key": "socket:tesla_supercharger:current", + "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:tesla_supercharger:current' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "socket:socket:tesla_supercharger:current", + "description": "Layer 'Charging stations' shows socket:socket:tesla_supercharger:current=125 A with a fixed text, namely '
Tesla Supercharger
outputs at most 125 A' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "125 A" + }, + { + "key": "socket:socket:tesla_supercharger:current", + "description": "Layer 'Charging stations' shows socket:socket:tesla_supercharger:current=350 A with a fixed text, namely '
Tesla Supercharger
outputs at most 350 A' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "350 A" + }, + { + "key": "socket:tesla_supercharger:output", + "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:tesla_supercharger:output' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "socket:socket:tesla_supercharger:output", + "description": "Layer 'Charging stations' shows socket:socket:tesla_supercharger:output=120 kw with a fixed text, namely '
Tesla Supercharger
outputs at most 120 kw' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "120 kw" + }, + { + "key": "socket:socket:tesla_supercharger:output", + "description": "Layer 'Charging stations' shows socket:socket:tesla_supercharger:output=150 kw with a fixed text, namely '
Tesla Supercharger
outputs at most 150 kw' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "150 kw" + }, + { + "key": "socket:socket:tesla_supercharger:output", + "description": "Layer 'Charging stations' shows socket:socket:tesla_supercharger:output=250 kw with a fixed text, namely '
Tesla Supercharger
outputs at most 250 kw' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "250 kw" + }, + { + "key": "socket:type2:voltage", + "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:type2:voltage' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "socket:socket:type2:voltage", + "description": "Layer 'Charging stations' shows socket:socket:type2:voltage=230 V with a fixed text, namely '
Type 2 (mennekes)
outputs 230 volt' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "230 V" + }, + { + "key": "socket:socket:type2:voltage", + "description": "Layer 'Charging stations' shows socket:socket:type2:voltage=400 V with a fixed text, namely '
Type 2 (mennekes)
outputs 400 volt' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "400 V" + }, + { + "key": "socket:type2:current", + "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:type2:current' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "socket:socket:type2:current", + "description": "Layer 'Charging stations' shows socket:socket:type2:current=16 A with a fixed text, namely '
Type 2 (mennekes)
outputs at most 16 A' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "16 A" + }, + { + "key": "socket:socket:type2:current", + "description": "Layer 'Charging stations' shows socket:socket:type2:current=32 A with a fixed text, namely '
Type 2 (mennekes)
outputs at most 32 A' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "32 A" + }, + { + "key": "socket:type2:output", + "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:type2:output' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "socket:socket:type2:output", + "description": "Layer 'Charging stations' shows socket:socket:type2:output=11 kw with a fixed text, namely '
Type 2 (mennekes)
outputs at most 11 kw' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "11 kw" + }, + { + "key": "socket:socket:type2:output", + "description": "Layer 'Charging stations' shows socket:socket:type2:output=22 kw with a fixed text, namely '
Type 2 (mennekes)
outputs at most 22 kw' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "22 kw" + }, + { + "key": "socket:type2_combo:voltage", + "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:type2_combo:voltage' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "socket:socket:type2_combo:voltage", + "description": "Layer 'Charging stations' shows socket:socket:type2_combo:voltage=500 V with a fixed text, namely '
Type 2 CCS (mennekes)
outputs 500 volt' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "500 V" + }, + { + "key": "socket:socket:type2_combo:voltage", + "description": "Layer 'Charging stations' shows socket:socket:type2_combo:voltage=920 V with a fixed text, namely '
Type 2 CCS (mennekes)
outputs 920 volt' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "920 V" + }, + { + "key": "socket:type2_combo:current", + "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:type2_combo:current' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "socket:socket:type2_combo:current", + "description": "Layer 'Charging stations' shows socket:socket:type2_combo:current=125 A with a fixed text, namely '
Type 2 CCS (mennekes)
outputs at most 125 A' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "125 A" + }, + { + "key": "socket:socket:type2_combo:current", + "description": "Layer 'Charging stations' shows socket:socket:type2_combo:current=350 A with a fixed text, namely '
Type 2 CCS (mennekes)
outputs at most 350 A' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "350 A" + }, + { + "key": "socket:type2_combo:output", + "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:type2_combo:output' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "socket:socket:type2_combo:output", + "description": "Layer 'Charging stations' shows socket:socket:type2_combo:output=50 kw with a fixed text, namely '
Type 2 CCS (mennekes)
outputs at most 50 kw' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "50 kw" + }, + { + "key": "socket:type2_cable:voltage", + "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:type2_cable:voltage' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "socket:socket:type2_cable:voltage", + "description": "Layer 'Charging stations' shows socket:socket:type2_cable:voltage=230 V with a fixed text, namely '
Type 2 with cable (mennekes)
outputs 230 volt' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "230 V" + }, + { + "key": "socket:socket:type2_cable:voltage", + "description": "Layer 'Charging stations' shows socket:socket:type2_cable:voltage=400 V with a fixed text, namely '
Type 2 with cable (mennekes)
outputs 400 volt' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "400 V" + }, + { + "key": "socket:type2_cable:current", + "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:type2_cable:current' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "socket:socket:type2_cable:current", + "description": "Layer 'Charging stations' shows socket:socket:type2_cable:current=16 A with a fixed text, namely '
Type 2 with cable (mennekes)
outputs at most 16 A' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "16 A" + }, + { + "key": "socket:socket:type2_cable:current", + "description": "Layer 'Charging stations' shows socket:socket:type2_cable:current=32 A with a fixed text, namely '
Type 2 with cable (mennekes)
outputs at most 32 A' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "32 A" + }, + { + "key": "socket:type2_cable:output", + "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:type2_cable:output' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "socket:socket:type2_cable:output", + "description": "Layer 'Charging stations' shows socket:socket:type2_cable:output=11 kw with a fixed text, namely '
Type 2 with cable (mennekes)
outputs at most 11 kw' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "11 kw" + }, + { + "key": "socket:socket:type2_cable:output", + "description": "Layer 'Charging stations' shows socket:socket:type2_cable:output=22 kw with a fixed text, namely '
Type 2 with cable (mennekes)
outputs at most 22 kw' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "22 kw" + }, + { + "key": "socket:tesla_supercharger_ccs:voltage", + "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:tesla_supercharger_ccs:voltage' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "socket:socket:tesla_supercharger_ccs:voltage", + "description": "Layer 'Charging stations' shows socket:socket:tesla_supercharger_ccs:voltage=500 V with a fixed text, namely '
Tesla Supercharger CCS (a branded type2_css)
outputs 500 volt' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "500 V" + }, + { + "key": "socket:socket:tesla_supercharger_ccs:voltage", + "description": "Layer 'Charging stations' shows socket:socket:tesla_supercharger_ccs:voltage=920 V with a fixed text, namely '
Tesla Supercharger CCS (a branded type2_css)
outputs 920 volt' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "920 V" + }, + { + "key": "socket:tesla_supercharger_ccs:current", + "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:tesla_supercharger_ccs:current' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "socket:socket:tesla_supercharger_ccs:current", + "description": "Layer 'Charging stations' shows socket:socket:tesla_supercharger_ccs:current=125 A with a fixed text, namely '
Tesla Supercharger CCS (a branded type2_css)
outputs at most 125 A' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "125 A" + }, + { + "key": "socket:socket:tesla_supercharger_ccs:current", + "description": "Layer 'Charging stations' shows socket:socket:tesla_supercharger_ccs:current=350 A with a fixed text, namely '
Tesla Supercharger CCS (a branded type2_css)
outputs at most 350 A' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "350 A" + }, + { + "key": "socket:tesla_supercharger_ccs:output", + "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:tesla_supercharger_ccs:output' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "socket:socket:tesla_supercharger_ccs:output", + "description": "Layer 'Charging stations' shows socket:socket:tesla_supercharger_ccs:output=50 kw with a fixed text, namely '
Tesla Supercharger CCS (a branded type2_css)
outputs at most 50 kw' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "50 kw" + }, + { + "key": "socket:tesla_destination:voltage", + "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:tesla_destination:voltage' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "socket:socket:tesla_destination:voltage", + "description": "Layer 'Charging stations' shows socket:socket:tesla_destination:voltage=480 V with a fixed text, namely '
Tesla Supercharger (destination)
outputs 480 volt' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "480 V" + }, + { + "key": "socket:tesla_destination:current", + "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:tesla_destination:current' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "socket:socket:tesla_destination:current", + "description": "Layer 'Charging stations' shows socket:socket:tesla_destination:current=125 A with a fixed text, namely '
Tesla Supercharger (destination)
outputs at most 125 A' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "125 A" + }, + { + "key": "socket:socket:tesla_destination:current", + "description": "Layer 'Charging stations' shows socket:socket:tesla_destination:current=350 A with a fixed text, namely '
Tesla Supercharger (destination)
outputs at most 350 A' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "350 A" + }, + { + "key": "socket:tesla_destination:output", + "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:tesla_destination:output' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "socket:socket:tesla_destination:output", + "description": "Layer 'Charging stations' shows socket:socket:tesla_destination:output=120 kw with a fixed text, namely '
Tesla Supercharger (destination)
outputs at most 120 kw' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "120 kw" + }, + { + "key": "socket:socket:tesla_destination:output", + "description": "Layer 'Charging stations' shows socket:socket:tesla_destination:output=150 kw with a fixed text, namely '
Tesla Supercharger (destination)
outputs at most 150 kw' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "150 kw" + }, + { + "key": "socket:socket:tesla_destination:output", + "description": "Layer 'Charging stations' shows socket:socket:tesla_destination:output=250 kw with a fixed text, namely '
Tesla Supercharger (destination)
outputs at most 250 kw' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "250 kw" + }, + { + "key": "socket:tesla_destination:voltage", + "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:tesla_destination:voltage' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "socket:socket:tesla_destination:voltage", + "description": "Layer 'Charging stations' shows socket:socket:tesla_destination:voltage=230 V with a fixed text, namely '
Tesla supercharger (destination) (A Type 2 with cable branded as tesla)
outputs 230 volt' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "230 V" + }, + { + "key": "socket:socket:tesla_destination:voltage", + "description": "Layer 'Charging stations' shows socket:socket:tesla_destination:voltage=400 V with a fixed text, namely '
Tesla supercharger (destination) (A Type 2 with cable branded as tesla)
outputs 400 volt' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "400 V" + }, + { + "key": "socket:tesla_destination:current", + "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:tesla_destination:current' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "socket:socket:tesla_destination:current", + "description": "Layer 'Charging stations' shows socket:socket:tesla_destination:current=16 A with a fixed text, namely '
Tesla supercharger (destination) (A Type 2 with cable branded as tesla)
outputs at most 16 A' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "16 A" + }, + { + "key": "socket:socket:tesla_destination:current", + "description": "Layer 'Charging stations' shows socket:socket:tesla_destination:current=32 A with a fixed text, namely '
Tesla supercharger (destination) (A Type 2 with cable branded as tesla)
outputs at most 32 A' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "32 A" + }, + { + "key": "socket:tesla_destination:output", + "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:tesla_destination:output' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "socket:socket:tesla_destination:output", + "description": "Layer 'Charging stations' shows socket:socket:tesla_destination:output=11 kw with a fixed text, namely '
Tesla supercharger (destination) (A Type 2 with cable branded as tesla)
outputs at most 11 kw' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "11 kw" + }, + { + "key": "socket:socket:tesla_destination:output", + "description": "Layer 'Charging stations' shows socket:socket:tesla_destination:output=22 kw with a fixed text, namely '
Tesla supercharger (destination) (A Type 2 with cable branded as tesla)
outputs at most 22 kw' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "22 kw" + }, + { + "key": "socket:USB-A:voltage", + "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:USB-A:voltage' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "socket:socket:USB-A:voltage", + "description": "Layer 'Charging stations' shows socket:socket:USB-A:voltage=5 V with a fixed text, namely '
USB to charge phones and small electronics
outputs 5 volt' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "5 V" + }, + { + "key": "socket:USB-A:current", + "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:USB-A:current' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "socket:socket:USB-A:current", + "description": "Layer 'Charging stations' shows socket:socket:USB-A:current=1 A with a fixed text, namely '
USB to charge phones and small electronics
outputs at most 1 A' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "1 A" + }, + { + "key": "socket:socket:USB-A:current", + "description": "Layer 'Charging stations' shows socket:socket:USB-A:current=2 A with a fixed text, namely '
USB to charge phones and small electronics
outputs at most 2 A' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "2 A" + }, + { + "key": "socket:USB-A:output", + "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:USB-A:output' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "socket:socket:USB-A:output", + "description": "Layer 'Charging stations' shows socket:socket:USB-A:output=5w with a fixed text, namely '
USB to charge phones and small electronics
outputs at most 5w' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "5w" + }, + { + "key": "socket:socket:USB-A:output", + "description": "Layer 'Charging stations' shows socket:socket:USB-A:output=10w with a fixed text, namely '
USB to charge phones and small electronics
outputs at most 10w' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "10w" + }, + { + "key": "socket:bosch_3pin:voltage", + "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:bosch_3pin:voltage' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "socket:bosch_3pin:current", + "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:bosch_3pin:current' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "socket:bosch_3pin:output", + "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:bosch_3pin:output' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "socket:bosch_5pin:voltage", + "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:bosch_5pin:voltage' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "socket:bosch_5pin:current", + "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:bosch_5pin:current' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "socket:bosch_5pin:output", + "description": "Layer 'Charging stations' shows and asks freeform values for key 'socket:bosch_5pin:output' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "opening_hours", + "description": "Layer 'Charging stations' shows and asks freeform values for key 'opening_hours' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "opening_hours", + "description": "Layer 'Charging stations' shows opening_hours=24/7 with a fixed text, namely '24/7 opened (including holidays)' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "24/7" + }, + { + "key": "fee", + "description": "Layer 'Charging stations' shows fee=no with a fixed text, namely 'Free to use' (in the MapComplete.osm.be theme 'Personal theme')", + "value": "no" + }, + { + "key": "fee", + "description": "Layer 'Charging stations' shows fee=no&authentication:none=yes with a fixed text, namely 'Free to use (without authenticating)' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "no" + }, + { + "key": "fee:conditional", + "description": "Layer 'Charging stations' shows fee=no&authentication:none=yes with a fixed text, namely 'Free to use (without authenticating)' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme') Picking this answer will delete the key fee:conditional.", + "value": "" + }, + { + "key": "charge", + "description": "Layer 'Charging stations' shows fee=no&authentication:none=yes with a fixed text, namely 'Free to use (without authenticating)' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme') Picking this answer will delete the key charge.", + "value": "" + }, + { + "key": "authentication:none", + "description": "Layer 'Charging stations' shows fee=no&authentication:none=yes with a fixed text, namely 'Free to use (without authenticating)' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "yes" + }, + { + "key": "fee", + "description": "Layer 'Charging stations' shows fee=no&authentication:none=no with a fixed text, namely 'Free to use, but one has to authenticate' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "no" + }, + { + "key": "fee:conditional", + "description": "Layer 'Charging stations' shows fee=no&authentication:none=no with a fixed text, namely 'Free to use, but one has to authenticate' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme') Picking this answer will delete the key fee:conditional.", + "value": "" + }, + { + "key": "charge", + "description": "Layer 'Charging stations' shows fee=no&authentication:none=no with a fixed text, namely 'Free to use, but one has to authenticate' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme') Picking this answer will delete the key charge.", + "value": "" + }, + { + "key": "authentication:none", + "description": "Layer 'Charging stations' shows fee=no&authentication:none=no with a fixed text, namely 'Free to use, but one has to authenticate' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "no" + }, + { + "key": "fee", + "description": "Layer 'Charging stations' shows fee=yes&fee:conditional=no @ customers with a fixed text, namely 'Paid use, but free for customers of the hotel/pub/hospital/... who operates the charging station' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "yes" + }, + { + "key": "fee:conditional", + "description": "Layer 'Charging stations' shows fee=yes&fee:conditional=no @ customers with a fixed text, namely 'Paid use, but free for customers of the hotel/pub/hospital/... who operates the charging station' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "no @ customers" + }, + { + "key": "fee", + "description": "Layer 'Charging stations' shows fee=yes with a fixed text, namely 'Paid use' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "yes" + }, + { + "key": "fee:conditional", + "description": "Layer 'Charging stations' shows fee=yes with a fixed text, namely 'Paid use' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme') Picking this answer will delete the key fee:conditional.", + "value": "" + }, + { + "key": "charge", + "description": "Layer 'Charging stations' shows and asks freeform values for key 'charge' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "payment:cash", + "description": "Layer 'Charging stations' shows payment:cash=yes with a fixed text, namely 'Cash is accepted here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "yes" + }, + { + "key": "payment:cards", + "description": "Layer 'Charging stations' shows payment:cards=yes with a fixed text, namely 'Payment cards are accepted here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "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 'Personal theme')", + "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 'Personal theme')", + "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 'Personal theme')", + "value": "yes" + }, + { + "key": "authentication:app", + "description": "Layer 'Charging stations' shows authentication:app=yes with a fixed text, namely 'Authentication by an app' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "yes" + }, + { + "key": "authentication:phone_call", + "description": "Layer 'Charging stations' shows authentication:phone_call=yes with a fixed text, namely 'Authentication via phone call is available' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "yes" + }, + { + "key": "authentication:short_message", + "description": "Layer 'Charging stations' shows authentication:short_message=yes with a fixed text, namely 'Authentication via SMS is available' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "yes" + }, + { + "key": "authentication:nfc", + "description": "Layer 'Charging stations' shows authentication:nfc=yes with a fixed text, namely 'Authentication via NFC is available' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "yes" + }, + { + "key": "authentication:money_card", + "description": "Layer 'Charging stations' shows authentication:money_card=yes with a fixed text, namely 'Authentication via Money Card is available' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "yes" + }, + { + "key": "authentication:debit_card", + "description": "Layer 'Charging stations' shows authentication:debit_card=yes with a fixed text, namely 'Authentication via debit card is available' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "yes" + }, + { + "key": "authentication:none", + "description": "Layer 'Charging stations' shows authentication:none=yes with a fixed text, namely 'Charging here is (also) possible without authentication' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "yes" + }, + { + "key": "authentication:phone_call:number", + "description": "Layer 'Charging stations' shows and asks freeform values for key 'authentication:phone_call:number' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "maxstay", + "description": "Layer 'Charging stations' shows and asks freeform values for key 'maxstay' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "maxstay", + "description": "Layer 'Charging stations' shows maxstay=unlimited with a fixed text, namely 'No timelimit on leaving your vehicle here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "unlimited" + }, + { + "key": "network", + "description": "Layer 'Charging stations' shows and asks freeform values for key 'network' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "no:network", + "description": "Layer 'Charging stations' shows no:network=yes with a fixed text, namely 'Not part of a bigger network, e.g. because the charging station is maintained by a local business' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "yes" + }, + { + "key": "network", + "description": "Layer 'Charging stations' shows network=none with a fixed text, namely 'Not part of a bigger network' (in the MapComplete.osm.be theme 'Personal theme')", + "value": "none" + }, + { + "key": "network", + "description": "Layer 'Charging stations' shows network=AeroVironment with a fixed text, namely 'AeroVironment' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "AeroVironment" + }, + { + "key": "network", + "description": "Layer 'Charging stations' shows network=Blink with a fixed text, namely 'Blink' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "Blink" + }, + { + "key": "network", + "description": "Layer 'Charging stations' shows network=EVgo with a fixed text, namely 'EVgo' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "EVgo" + }, + { + "key": "network", + "description": "Layer 'Charging stations' shows network=Allego with a fixed text, namely 'Allego' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "Allego" + }, + { + "key": "network", + "description": "Layer 'Charging stations' shows network=Blue Corner with a fixed text, namely 'Blue Corner' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "Blue Corner" + }, + { + "key": "network", + "description": "Layer 'Charging stations' shows network=Tesla with a fixed text, namely 'Tesla' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "Tesla" + }, + { + "key": "operator", + "description": "Layer 'Charging stations' shows and asks freeform values for key 'operator' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "network", + "description": "Layer 'Charging stations' shows network= with a fixed text, namely 'Actually, {operator} is the network' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme') Picking this answer will delete the key network.", + "value": "" + }, + { + "key": "phone", + "description": "Layer 'Charging stations' shows and asks freeform values for key 'phone' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "email", + "description": "Layer 'Charging stations' shows and asks freeform values for key 'email' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "website", + "description": "Layer 'Charging stations' shows and asks freeform values for key 'website' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "level", + "description": "Layer 'Charging stations' shows and asks freeform values for key 'level' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "location", + "description": "Layer 'Charging stations' shows location=underground with a fixed text, namely 'Located underground' (in the MapComplete.osm.be theme 'Personal theme')", + "value": "underground" + }, + { + "key": "level", + "description": "Layer 'Charging stations' shows level=0 with a fixed text, namely 'Located on the ground floor' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "0" + }, + { + "key": "level", + "description": "Layer 'Charging stations' shows with a fixed text, namely 'Located on the ground floor' (in the MapComplete.osm.be theme 'Personal theme') Picking this answer will delete the key level.", + "value": "" + }, + { + "key": "level", + "description": "Layer 'Charging stations' shows level=1 with a fixed text, namely 'Located on the first floor' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "1" + }, + { + "key": "level", + "description": "Layer 'Charging stations' shows level=-1 with a fixed text, namely 'Located on the first basement level' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "-1" + }, + { + "key": "ref", + "description": "Layer 'Charging stations' shows and asks freeform values for key 'ref' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "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 'Personal theme') Picking this answer will delete the key planned:amenity.", + "value": "" + }, + { + "key": "construction:amenity", + "description": "Layer 'Charging stations' shows amenity=charging_station with a fixed text, namely 'This charging station works' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme') Picking this answer will delete the key construction:amenity.", + "value": "" + }, + { + "key": "disused:amenity", + "description": "Layer 'Charging stations' shows amenity=charging_station with a fixed text, namely 'This charging station works' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme') Picking this answer will delete the key disused:amenity.", + "value": "" + }, + { + "key": "operational_status", + "description": "Layer 'Charging stations' shows amenity=charging_station with a fixed text, namely 'This charging station works' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme') Picking this answer will delete the key operational_status.", + "value": "" + }, + { + "key": "amenity", + "description": "Layer 'Charging stations' shows amenity=charging_station with a fixed text, namely 'This charging station works' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "charging_station" + }, + { + "key": "planned:amenity", + "description": "Layer 'Charging stations' shows operational_status=broken&amenity=charging_station with a fixed text, namely 'This charging station is broken' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme') Picking this answer will delete the key planned:amenity.", + "value": "" + }, + { + "key": "construction:amenity", + "description": "Layer 'Charging stations' shows operational_status=broken&amenity=charging_station with a fixed text, namely 'This charging station is broken' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme') Picking this answer will delete the key construction:amenity.", + "value": "" + }, + { + "key": "disused:amenity", + "description": "Layer 'Charging stations' shows operational_status=broken&amenity=charging_station with a fixed text, namely 'This charging station is broken' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme') Picking this answer will delete the key disused:amenity.", + "value": "" + }, + { + "key": "operational_status", + "description": "Layer 'Charging stations' shows operational_status=broken&amenity=charging_station with a fixed text, namely 'This charging station is broken' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "broken" + }, + { + "key": "amenity", + "description": "Layer 'Charging stations' shows operational_status=broken&amenity=charging_station with a fixed text, namely 'This charging station is broken' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "charging_station" + }, + { + "key": "planned:amenity", + "description": "Layer 'Charging stations' shows planned:amenity=charging_station with a fixed text, namely 'A charging station is planned here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "charging_station" + }, + { + "key": "construction:amenity", + "description": "Layer 'Charging stations' shows planned:amenity=charging_station with a fixed text, namely 'A charging station is planned here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme') Picking this answer will delete the key construction:amenity.", + "value": "" + }, + { + "key": "disused:amenity", + "description": "Layer 'Charging stations' shows planned:amenity=charging_station with a fixed text, namely 'A charging station is planned here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme') Picking this answer will delete the key disused:amenity.", + "value": "" + }, + { + "key": "operational_status", + "description": "Layer 'Charging stations' shows planned:amenity=charging_station with a fixed text, namely 'A charging station is planned here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme') Picking this answer will delete the key operational_status.", + "value": "" + }, + { + "key": "amenity", + "description": "Layer 'Charging stations' shows planned:amenity=charging_station with a fixed text, namely 'A charging station is planned here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme') Picking this answer will delete the key amenity.", + "value": "" + }, + { + "key": "planned:amenity", + "description": "Layer 'Charging stations' shows construction:amenity=charging_station with a fixed text, namely 'A charging station is constructed here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme') Picking this answer will delete the key planned:amenity.", + "value": "" + }, + { + "key": "construction:amenity", + "description": "Layer 'Charging stations' shows construction:amenity=charging_station with a fixed text, namely 'A charging station is constructed here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "charging_station" + }, + { + "key": "disused:amenity", + "description": "Layer 'Charging stations' shows construction:amenity=charging_station with a fixed text, namely 'A charging station is constructed here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme') Picking this answer will delete the key disused:amenity.", + "value": "" + }, + { + "key": "operational_status", + "description": "Layer 'Charging stations' shows construction:amenity=charging_station with a fixed text, namely 'A charging station is constructed here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme') Picking this answer will delete the key operational_status.", + "value": "" + }, + { + "key": "amenity", + "description": "Layer 'Charging stations' shows construction:amenity=charging_station with a fixed text, namely 'A charging station is constructed here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme') Picking this answer will delete the key amenity.", + "value": "" + }, + { + "key": "planned:amenity", + "description": "Layer 'Charging stations' shows disused:amenity=charging_station with a fixed text, namely 'This charging station has beed permanently disabled and is not in use anymore but is still visible' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme') Picking this answer will delete the key planned:amenity.", + "value": "" + }, + { + "key": "construction:amenity", + "description": "Layer 'Charging stations' shows disused:amenity=charging_station with a fixed text, namely 'This charging station has beed permanently disabled and is not in use anymore but is still visible' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme') Picking this answer will delete the key construction:amenity.", + "value": "" + }, + { + "key": "disused:amenity", + "description": "Layer 'Charging stations' shows disused:amenity=charging_station with a fixed text, namely 'This charging station has beed permanently disabled and is not in use anymore but is still visible' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "charging_station" + }, + { + "key": "operational_status", + "description": "Layer 'Charging stations' shows disused:amenity=charging_station with a fixed text, namely 'This charging station has beed permanently disabled and is not in use anymore but is still visible' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme') Picking this answer will delete the key operational_status.", + "value": "" + }, + { + "key": "amenity", + "description": "Layer 'Charging stations' shows disused:amenity=charging_station with a fixed text, namely 'This charging station has beed permanently disabled and is not in use anymore but is still visible' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme') Picking this answer will delete the key amenity.", + "value": "" + }, + { + "key": "parking:fee", + "description": "Layer 'Charging stations' shows parking:fee=no with a fixed text, namely 'No additional parking cost while charging' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "no" + }, + { + "key": "parking:fee", + "description": "Layer 'Charging stations' shows parking:fee=yes with a fixed text, namely 'An additional parking fee should be paid while charging' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "yes" + }, + { + "key": "highway", + "description": "The MapComplete theme Personal theme has a layer Cycleways and roads showing features with this tag", + "value": "cycleway" + }, + { + "key": "cycleway", + "description": "The MapComplete theme Personal theme has a layer Cycleways and roads showing features with this tag", + "value": "lane" + }, + { + "key": "cycleway", + "description": "The MapComplete theme Personal theme has a layer Cycleways and roads showing features with this tag", + "value": "shared_lane" + }, + { + "key": "cycleway", + "description": "The MapComplete theme Personal theme has a layer Cycleways and roads showing features with this tag", + "value": "track" + }, + { + "key": "cyclestreet", + "description": "The MapComplete theme Personal theme has a layer Cycleways and roads showing features with this tag", + "value": "yes" + }, + { + "key": "highway", + "description": "The MapComplete theme Personal theme has a layer Cycleways and roads showing features with this tag", + "value": "residential" + }, + { + "key": "highway", + "description": "The MapComplete theme Personal theme has a layer Cycleways and roads showing features with this tag", + "value": "tertiary" + }, + { + "key": "highway", + "description": "The MapComplete theme Personal theme has a layer Cycleways and roads showing features with this tag", + "value": "unclassified" + }, + { + "key": "highway", + "description": "The MapComplete theme Personal theme has a layer Cycleways and roads showing features with this tag", + "value": "primary" + }, + { + "key": "highway", + "description": "The MapComplete theme Personal theme has a layer Cycleways and roads showing features with this tag", + "value": "secondary" + }, + { + "key": "highway", + "description": "The MapComplete theme Personal theme has a layer Cycleways and roads showing features with this tag", + "value": "path" + }, + { + "key": "bicycle", + "description": "The MapComplete theme Personal theme has a layer Cycleways and roads showing features with this tag", + "value": "designated" + }, + { + "key": "cycleway", + "description": "Layer 'Cycleways and roads' shows cycleway=shared_lane with a fixed text, namely 'There is a shared lane' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "shared_lane" + }, + { + "key": "cycleway", + "description": "Layer 'Cycleways and roads' shows cycleway=lane with a fixed text, namely 'There is a lane next to the road (separated with paint)' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "lane" + }, + { + "key": "cycleway", + "description": "Layer 'Cycleways and roads' shows cycleway=track with a fixed text, namely 'There is a track, but no cycleway drawn separately from this road on the map.' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "track" + }, + { + "key": "cycleway", + "description": "Layer 'Cycleways and roads' shows cycleway=separate with a fixed text, namely 'There is a separately drawn cycleway' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "separate" + }, + { + "key": "cycleway", + "description": "Layer 'Cycleways and roads' shows cycleway=no with a fixed text, namely 'There is no cycleway' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "no" + }, + { + "key": "cycleway", + "description": "Layer 'Cycleways and roads' shows cycleway=no with a fixed text, namely 'There is no cycleway' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "no" + }, + { + "key": "lit", + "description": "Layer 'Cycleways and roads' shows lit=yes with a fixed text, namely 'This street is lit' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "yes" + }, + { + "key": "lit", + "description": "Layer 'Cycleways and roads' shows lit=no with a fixed text, namely 'This road is not lit' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "no" + }, + { + "key": "lit", + "description": "Layer 'Cycleways and roads' shows lit=sunset-sunrise with a fixed text, namely 'This road is lit at night' (in the MapComplete.osm.be theme 'Personal theme')", + "value": "sunset-sunrise" + }, + { + "key": "lit", + "description": "Layer 'Cycleways and roads' shows lit=24/7 with a fixed text, namely 'This road is lit 24/7' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "24/7" + }, + { + "key": "cyclestreet", + "description": "Layer 'Cycleways and roads' shows cyclestreet=yes with a fixed text, namely 'This is a cyclestreet, and a 30km/h zone.' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "yes" + }, + { + "key": "cyclestreet", + "description": "Layer 'Cycleways and roads' shows cyclestreet=yes with a fixed text, namely 'This is a cyclestreet' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "yes" + }, + { + "key": "cyclestreet", + "description": "Layer 'Cycleways and roads' shows with a fixed text, namely 'This is not a cyclestreet.' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme') Picking this answer will delete the key cyclestreet.", + "value": "" + }, + { + "key": "maxspeed", + "description": "Layer 'Cycleways and roads' shows and asks freeform values for key 'maxspeed' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "maxspeed", + "description": "Layer 'Cycleways and roads' shows maxspeed=20 with a fixed text, namely 'The maximum speed is 20 km/h' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "20" + }, + { + "key": "maxspeed", + "description": "Layer 'Cycleways and roads' shows maxspeed=30 with a fixed text, namely 'The maximum speed is 30 km/h' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "30" + }, + { + "key": "maxspeed", + "description": "Layer 'Cycleways and roads' shows maxspeed=50 with a fixed text, namely 'The maximum speed is 50 km/h' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "50" + }, + { + "key": "maxspeed", + "description": "Layer 'Cycleways and roads' shows maxspeed=70 with a fixed text, namely 'The maximum speed is 70 km/h' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "70" + }, + { + "key": "maxspeed", + "description": "Layer 'Cycleways and roads' shows maxspeed=90 with a fixed text, namely 'The maximum speed is 90 km/h' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "90" + }, + { + "key": "cycleway:surface", + "description": "Layer 'Cycleways and roads' shows and asks freeform values for key 'cycleway:surface' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "cycleway:surface", + "description": "Layer 'Cycleways and roads' shows cycleway:surface=unpaved with a fixed text, namely 'This cycleway is unpaved' (in the MapComplete.osm.be theme 'Personal theme')", + "value": "unpaved" + }, + { + "key": "cycleway:surface", + "description": "Layer 'Cycleways and roads' shows cycleway:surface=paved with a fixed text, namely 'This cycleway is paved' (in the MapComplete.osm.be theme 'Personal theme')", + "value": "paved" + }, + { + "key": "cycleway:surface", + "description": "Layer 'Cycleways and roads' shows cycleway:surface=asphalt with a fixed text, namely 'This cycleway is made of asphalt' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "asphalt" + }, + { + "key": "cycleway:surface", + "description": "Layer 'Cycleways and roads' shows cycleway:surface=paving_stones with a fixed text, namely 'This cycleway is made of smooth paving stones' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "paving_stones" + }, + { + "key": "cycleway:surface", + "description": "Layer 'Cycleways and roads' shows cycleway:surface=concrete with a fixed text, namely 'This cycleway is made of concrete' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "concrete" + }, + { + "key": "cycleway:surface", + "description": "Layer 'Cycleways and roads' shows cycleway:surface=cobblestone with a fixed text, namely 'This cycleway is made of cobblestone (unhewn or sett)' (in the MapComplete.osm.be theme 'Personal theme')", + "value": "cobblestone" + }, + { + "key": "cycleway:surface", + "description": "Layer 'Cycleways and roads' shows cycleway:surface=unhewn_cobblestone with a fixed text, namely 'This cycleway is made of raw, natural cobblestone' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "unhewn_cobblestone" + }, + { + "key": "cycleway:surface", + "description": "Layer 'Cycleways and roads' shows cycleway:surface=sett with a fixed text, namely 'This cycleway is made of flat, square cobblestone' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "sett" + }, + { + "key": "cycleway:surface", + "description": "Layer 'Cycleways and roads' shows cycleway:surface=wood with a fixed text, namely 'This cycleway is made of wood' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "wood" + }, + { + "key": "cycleway:surface", + "description": "Layer 'Cycleways and roads' shows cycleway:surface=gravel with a fixed text, namely 'This cycleway is made of gravel' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "gravel" + }, + { + "key": "cycleway:surface", + "description": "Layer 'Cycleways and roads' shows cycleway:surface=fine_gravel with a fixed text, namely 'This cycleway is made of fine gravel' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "fine_gravel" + }, + { + "key": "cycleway:surface", + "description": "Layer 'Cycleways and roads' shows cycleway:surface=pebblestone with a fixed text, namely 'This cycleway is made of pebblestone' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "pebblestone" + }, + { + "key": "cycleway:surface", + "description": "Layer 'Cycleways and roads' shows cycleway:surface=ground with a fixed text, namely 'This cycleway is made from raw ground' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "ground" + }, + { + "key": "cycleway:smoothness", + "description": "Layer 'Cycleways and roads' shows cycleway:smoothness=excellent with a fixed text, namely 'Usable for thin rollers: rollerblade, skateboard' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "excellent" + }, + { + "key": "cycleway:smoothness", + "description": "Layer 'Cycleways and roads' shows cycleway:smoothness=good with a fixed text, namely 'Usable for thin wheels: racing bike' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "good" + }, + { + "key": "cycleway:smoothness", + "description": "Layer 'Cycleways and roads' shows cycleway:smoothness=intermediate with a fixed text, namely 'Usable for normal wheels: city bike, wheelchair, scooter' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "intermediate" + }, + { + "key": "cycleway:smoothness", + "description": "Layer 'Cycleways and roads' shows cycleway:smoothness=bad with a fixed text, namely 'Usable for robust wheels: trekking bike, car, rickshaw' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "bad" + }, + { + "key": "cycleway:smoothness", + "description": "Layer 'Cycleways and roads' shows cycleway:smoothness=very_bad with a fixed text, namely 'Usable for vehicles with high clearance: light duty off-road vehicle' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "very_bad" + }, + { + "key": "cycleway:smoothness", + "description": "Layer 'Cycleways and roads' shows cycleway:smoothness=horrible with a fixed text, namely 'Usable for off-road vehicles: heavy duty off-road vehicle' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "horrible" + }, + { + "key": "cycleway:smoothness", + "description": "Layer 'Cycleways and roads' shows cycleway:smoothness=very_horrible with a fixed text, namely 'Usable for specialized off-road vehicles: tractor, ATV' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "very_horrible" + }, + { + "key": "cycleway:smoothness", + "description": "Layer 'Cycleways and roads' shows cycleway:smoothness=impassable with a fixed text, namely 'Impassable / No wheeled vehicle' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "impassable" + }, + { + "key": "surface", + "description": "Layer 'Cycleways and roads' shows and asks freeform values for key 'surface' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "surface", + "description": "Layer 'Cycleways and roads' shows surface=unpaved with a fixed text, namely 'This cycleway is unhardened' (in the MapComplete.osm.be theme 'Personal theme')", + "value": "unpaved" + }, + { + "key": "surface", + "description": "Layer 'Cycleways and roads' shows surface=paved with a fixed text, namely 'This cycleway is paved' (in the MapComplete.osm.be theme 'Personal theme')", + "value": "paved" + }, + { + "key": "surface", + "description": "Layer 'Cycleways and roads' shows surface=asphalt with a fixed text, namely 'This cycleway is made of asphalt' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "asphalt" + }, + { + "key": "surface", + "description": "Layer 'Cycleways and roads' shows surface=paving_stones with a fixed text, namely 'This cycleway is made of smooth paving stones' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "paving_stones" + }, + { + "key": "surface", + "description": "Layer 'Cycleways and roads' shows surface=concrete with a fixed text, namely 'This cycleway is made of concrete' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "concrete" + }, + { + "key": "surface", + "description": "Layer 'Cycleways and roads' shows surface=cobblestone with a fixed text, namely 'This cycleway is made of cobblestone (unhewn or sett)' (in the MapComplete.osm.be theme 'Personal theme')", + "value": "cobblestone" + }, + { + "key": "surface", + "description": "Layer 'Cycleways and roads' shows surface=unhewn_cobblestone with a fixed text, namely 'This cycleway is made of raw, natural cobblestone' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "unhewn_cobblestone" + }, + { + "key": "surface", + "description": "Layer 'Cycleways and roads' shows surface=sett with a fixed text, namely 'This cycleway is made of flat, square cobblestone' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "sett" + }, + { + "key": "surface", + "description": "Layer 'Cycleways and roads' shows surface=wood with a fixed text, namely 'This cycleway is made of wood' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "wood" + }, + { + "key": "surface", + "description": "Layer 'Cycleways and roads' shows surface=gravel with a fixed text, namely 'This cycleway is made of gravel' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "gravel" + }, + { + "key": "surface", + "description": "Layer 'Cycleways and roads' shows surface=fine_gravel with a fixed text, namely 'This cycleway is made of fine gravel' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "fine_gravel" + }, + { + "key": "surface", + "description": "Layer 'Cycleways and roads' shows surface=pebblestone with a fixed text, namely 'This cycleway is made of pebblestone' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "pebblestone" + }, + { + "key": "surface", + "description": "Layer 'Cycleways and roads' shows surface=ground with a fixed text, namely 'This cycleway is made from raw ground' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "ground" + }, + { + "key": "smoothness", + "description": "Layer 'Cycleways and roads' shows smoothness=excellent with a fixed text, namely 'Usable for thin rollers: rollerblade, skateboard' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "excellent" + }, + { + "key": "smoothness", + "description": "Layer 'Cycleways and roads' shows smoothness=good with a fixed text, namely 'Usable for thin wheels: racing bike' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "good" + }, + { + "key": "smoothness", + "description": "Layer 'Cycleways and roads' shows smoothness=intermediate with a fixed text, namely 'Usable for normal wheels: city bike, wheelchair, scooter' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "intermediate" + }, + { + "key": "smoothness", + "description": "Layer 'Cycleways and roads' shows smoothness=bad with a fixed text, namely 'Usable for robust wheels: trekking bike, car, rickshaw' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "bad" + }, + { + "key": "smoothness", + "description": "Layer 'Cycleways and roads' shows smoothness=very_bad with a fixed text, namely 'Usable for vehicles with high clearance: light duty off-road vehicle' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "very_bad" + }, + { + "key": "smoothness", + "description": "Layer 'Cycleways and roads' shows smoothness=horrible with a fixed text, namely 'Usable for off-road vehicles: heavy duty off-road vehicle' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "horrible" + }, + { + "key": "smoothness", + "description": "Layer 'Cycleways and roads' shows smoothness=very_horrible with a fixed text, namely 'Usable for specialized off-road vehicles: tractor, ATV' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "very_horrible" + }, + { + "key": "smoothness", + "description": "Layer 'Cycleways and roads' shows smoothness=impassable with a fixed text, namely 'Impassable / No wheeled vehicle' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "impassable" + }, + { + "key": "width:carriageway", + "description": "Layer 'Cycleways and roads' shows and asks freeform values for key 'width:carriageway' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "cycleway:traffic_sign", + "description": "Layer 'Cycleways and roads' shows cycleway:traffic_sign=BE:D7 with a fixed text, namely 'Compulsory cycleway ' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "BE:D7" + }, + { + "key": "cycleway:traffic_sign", + "description": "Layer 'Cycleways and roads' shows cycleway:traffic_sign~^BE:D7;.*$ with a fixed text, namely 'Compulsory cycleway (with supplementary sign)
' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "cycleway:traffic_sign", + "description": "Layer 'Cycleways and roads' shows cycleway:traffic_sign=BE:D9 with a fixed text, namely 'Segregated foot/cycleway ' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "BE:D9" + }, + { + "key": "cycleway:traffic_sign", + "description": "Layer 'Cycleways and roads' shows cycleway:traffic_sign=BE:D10 with a fixed text, namely 'Unsegregated foot/cycleway ' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "BE:D10" + }, + { + "key": "cycleway:traffic_sign", + "description": "Layer 'Cycleways and roads' shows cycleway:traffic_sign=none with a fixed text, namely 'No traffic sign present' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "none" + }, + { + "key": "traffic_sign", + "description": "Layer 'Cycleways and roads' shows traffic_sign=BE:D7 with a fixed text, namely 'Compulsory cycleway ' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "BE:D7" + }, + { + "key": "traffic_sign", + "description": "Layer 'Cycleways and roads' shows traffic_sign~^BE:D7;.*$ with a fixed text, namely 'Compulsory cycleway (with supplementary sign)
' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "traffic_sign", + "description": "Layer 'Cycleways and roads' shows traffic_sign=BE:D9 with a fixed text, namely 'Segregated foot/cycleway ' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "BE:D9" + }, + { + "key": "traffic_sign", + "description": "Layer 'Cycleways and roads' shows traffic_sign=BE:D10 with a fixed text, namely 'Unsegregated foot/cycleway ' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "BE:D10" + }, + { + "key": "traffic_sign", + "description": "Layer 'Cycleways and roads' shows traffic_sign=none with a fixed text, namely 'No traffic sign present' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "none" + }, + { + "key": "cycleway:traffic_sign", + "description": "Layer 'Cycleways and roads' shows cycleway:traffic_sign=BE:D7;BE:M6 with a fixed text, namely '' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "BE:D7;BE:M6" + }, + { + "key": "cycleway:traffic_sign", + "description": "Layer 'Cycleways and roads' shows cycleway:traffic_sign=BE:D7;BE:M13 with a fixed text, namely '' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "BE:D7;BE:M13" + }, + { + "key": "cycleway:traffic_sign", + "description": "Layer 'Cycleways and roads' shows cycleway:traffic_sign=BE:D7;BE:M14 with a fixed text, namely '' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "BE:D7;BE:M14" + }, + { + "key": "cycleway:traffic_sign", + "description": "Layer 'Cycleways and roads' shows cycleway:traffic_sign=BE:D7;BE:M7 with a fixed text, namely '' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "BE:D7;BE:M7" + }, + { + "key": "cycleway:traffic_sign", + "description": "Layer 'Cycleways and roads' shows cycleway:traffic_sign=BE:D7;BE:M15 with a fixed text, namely '' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "BE:D7;BE:M15" + }, + { + "key": "cycleway:traffic_sign", + "description": "Layer 'Cycleways and roads' shows cycleway:traffic_sign=BE:D7;BE:M16 with a fixed text, namely '' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "BE:D7;BE:M16" + }, + { + "key": "cycleway:traffic_sign:supplementary", + "description": "Layer 'Cycleways and roads' shows cycleway:traffic_sign:supplementary=none with a fixed text, namely 'No supplementary traffic sign present' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "none" + }, + { + "key": "traffic_sign", + "description": "Layer 'Cycleways and roads' shows traffic_sign=BE:D7;BE:M6 with a fixed text, namely '' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "BE:D7;BE:M6" + }, + { + "key": "traffic_sign", + "description": "Layer 'Cycleways and roads' shows traffic_sign=BE:D7;BE:M13 with a fixed text, namely '' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "BE:D7;BE:M13" + }, + { + "key": "traffic_sign", + "description": "Layer 'Cycleways and roads' shows traffic_sign=BE:D7;BE:M14 with a fixed text, namely '' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "BE:D7;BE:M14" + }, + { + "key": "traffic_sign", + "description": "Layer 'Cycleways and roads' shows traffic_sign=BE:D7;BE:M7 with a fixed text, namely '' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "BE:D7;BE:M7" + }, + { + "key": ":traffic_sign", + "description": "Layer 'Cycleways and roads' shows :traffic_sign=BE:D7;BE:M15 with a fixed text, namely '' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "BE:D7;BE:M15" + }, + { + "key": "traffic_sign", + "description": "Layer 'Cycleways and roads' shows traffic_sign=BE:D7;BE:M16 with a fixed text, namely '' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "BE:D7;BE:M16" + }, + { + "key": "traffic_sign:supplementary", + "description": "Layer 'Cycleways and roads' shows traffic_sign:supplementary=none with a fixed text, namely 'No supplementary traffic sign present' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "none" + }, + { + "key": "cycleway:buffer", + "description": "Layer 'Cycleways and roads' shows and asks freeform values for key 'cycleway:buffer' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "cycleway:separation", + "description": "Layer 'Cycleways and roads' shows cycleway:separation=dashed_line with a fixed text, namely 'This cycleway is separated by a dashed line' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "dashed_line" + }, + { + "key": "cycleway:separation", + "description": "Layer 'Cycleways and roads' shows cycleway:separation=solid_line with a fixed text, namely 'This cycleway is separated by a solid line' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "solid_line" + }, + { + "key": "cycleway:separation", + "description": "Layer 'Cycleways and roads' shows cycleway:separation=parking_lane with a fixed text, namely 'This cycleway is separated by a parking lane' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "parking_lane" + }, + { + "key": "cycleway:separation", + "description": "Layer 'Cycleways and roads' shows cycleway:separation=kerb with a fixed text, namely 'This cycleway is separated by a kerb' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "kerb" + }, + { + "key": "separation", + "description": "Layer 'Cycleways and roads' shows separation=dashed_line with a fixed text, namely 'This cycleway is separated by a dashed line' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "dashed_line" + }, + { + "key": "separation", + "description": "Layer 'Cycleways and roads' shows separation=solid_line with a fixed text, namely 'This cycleway is separated by a solid line' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "solid_line" + }, + { + "key": "separation", + "description": "Layer 'Cycleways and roads' shows separation=parking_lane with a fixed text, namely 'This cycleway is separated by a parking lane' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "parking_lane" + }, + { + "key": "separation", + "description": "Layer 'Cycleways and roads' shows separation=kerb with a fixed text, namely 'This cycleway is separated by a kerb' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "kerb" + }, + { + "key": "barrier", + "description": "The MapComplete theme Personal theme has a layer Barriers showing features with this tag", + "value": "bollard" + }, + { + "key": "barrier", + "description": "The MapComplete theme Personal theme has a layer Barriers showing features with this tag", + "value": "cycle_barrier" + }, + { + "key": "bicycle", + "description": "Layer 'Barriers' shows bicycle=yes with a fixed text, namely 'A cyclist can go past this.' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "yes" + }, + { + "key": "bicycle", + "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 'Personal theme')", + "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 'Personal theme')", + "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 'Personal theme')", + "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 'Personal theme')", + "value": "removable" + }, + { + "key": "bollard", + "description": "Layer 'Barriers' shows bollard=fixed with a fixed text, namely 'Fixed bollard' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "fixed" + }, + { + "key": "bollard", + "description": "Layer 'Barriers' shows bollard=foldable with a fixed text, namely 'Bollard that can be folded down' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "foldable" + }, + { + "key": "bollard", + "description": "Layer 'Barriers' shows bollard=flexible with a fixed text, namely 'Flexible bollard, usually plastic' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "flexible" + }, + { + "key": "bollard", + "description": "Layer 'Barriers' shows bollard=rising with a fixed text, namely 'Rising bollard' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "rising" + }, + { + "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 'Personal theme')", + "value": "single" + }, + { + "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 'Personal theme')", + "value": "double" + }, + { + "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 'Personal theme')", + "value": "triple" + }, + { + "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 'Personal theme')", + "value": "squeeze" + }, + { + "key": "maxwidth:physical", + "description": "Layer 'Barriers' shows and asks freeform values for key 'maxwidth:physical' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "width:separation", + "description": "Layer 'Barriers' shows and asks freeform values for key 'width:separation' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "width:opening", + "description": "Layer 'Barriers' shows and asks freeform values for key 'width:opening' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "overlap", + "description": "Layer 'Barriers' shows and asks freeform values for key 'overlap' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "highway", + "description": "The MapComplete theme Personal theme has a layer Crossings showing features with this tag", + "value": "traffic_signals" + }, + { + "key": "highway", + "description": "The MapComplete theme Personal theme has a layer Crossings showing features with this tag", + "value": "crossing" + }, + { + "key": "crossing", + "description": "Layer 'Crossings' shows crossing=uncontrolled with a fixed text, namely 'Crossing, without traffic lights' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "uncontrolled" + }, + { + "key": "crossing", + "description": "Layer 'Crossings' shows crossing=traffic_signals with a fixed text, namely 'Crossing with traffic signals' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "traffic_signals" + }, + { + "key": "crossing", + "description": "Layer 'Crossings' shows crossing=zebra with a fixed text, namely 'Zebra crossing' (in the MapComplete.osm.be theme 'Personal theme')", + "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 'Personal theme')", + "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 'Personal theme')", + "value": "zebra" + }, + { + "key": "crossing_ref", + "description": "Layer 'Crossings' shows with a fixed text, namely 'This is not a zebra crossing' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme') Picking this answer will delete the key crossing_ref.", + "value": "" + }, + { + "key": "bicycle", + "description": "Layer 'Crossings' shows bicycle=yes with a fixed text, namely 'A cyclist can use this crossing' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "yes" + }, + { + "key": "bicycle", + "description": "Layer 'Crossings' shows bicycle=no with a fixed text, namely 'A cyclist can not use this crossing' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "no" + }, + { + "key": "crossing:island", + "description": "Layer 'Crossings' shows crossing:island=yes with a fixed text, namely 'This crossing has an island in the middle' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "yes" + }, + { + "key": "crossing:island", + "description": "Layer 'Crossings' shows crossing:island=no with a fixed text, namely 'This crossing does not have an island in the middle' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "no" + }, + { + "key": "tactile_paving", + "description": "Layer 'Crossings' shows tactile_paving=yes with a fixed text, namely 'This crossing has tactile paving' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "yes" + }, + { + "key": "tactile_paving", + "description": "Layer 'Crossings' shows tactile_paving=no with a fixed text, namely 'This crossing does not have tactile paving' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "no" + }, + { + "key": "tactile_paving", + "description": "Layer 'Crossings' shows tactile_paving=incorrect with a fixed text, namely 'This crossing has tactile paving, but is not correct' (in the MapComplete.osm.be theme 'Personal theme')", + "value": "incorrect" + }, + { + "key": "button_operated", + "description": "Layer 'Crossings' shows button_operated=yes with a fixed text, namely 'This traffic light has a button to request green light' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "yes" + }, + { + "key": "button_operated", + "description": "Layer 'Crossings' shows button_operated=no with a fixed text, namely 'This traffic light does not have a button to request green light' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "no" + }, + { + "key": "red_turn:right:bicycle", + "description": "Layer 'Crossings' shows red_turn:right:bicycle=yes with a fixed text, namely 'A cyclist can turn right if the light is red ' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "yes" + }, + { + "key": "red_turn:right:bicycle", + "description": "Layer 'Crossings' shows red_turn:right:bicycle=yes with a fixed text, namely 'A cyclist can turn right if the light is red' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "yes" + }, + { + "key": "red_turn:right:bicycle", + "description": "Layer 'Crossings' shows red_turn:right:bicycle=no with a fixed text, namely 'A cyclist can not turn right if the light is red' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "no" + }, + { + "key": "red_turn:straight:bicycle", + "description": "Layer 'Crossings' shows red_turn:straight:bicycle=yes with a fixed text, namely 'A cyclist can go straight on if the light is red ' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "yes" + }, + { + "key": "red_turn:straight:bicycle", + "description": "Layer 'Crossings' shows red_turn:straight:bicycle=yes with a fixed text, namely 'A cyclist can go straight on if the light is red' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "yes" + }, + { + "key": "red_turn:straight:bicycle", + "description": "Layer 'Crossings' shows red_turn:straight:bicycle=no with a fixed text, namely 'A cyclist can not go straight on if the light is red' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "no" + }, + { + "key": "amenity", + "description": "The MapComplete theme Personal theme has a layer Bike cafe showing features with this tag", + "value": "pub" + }, + { + "key": "amenity", + "description": "The MapComplete theme Personal theme has a layer Bike cafe showing features with this tag", + "value": "bar" + }, + { + "key": "amenity", + "description": "The MapComplete theme Personal theme has a layer Bike cafe showing features with this tag", + "value": "cafe" + }, + { + "key": "amenity", + "description": "The MapComplete theme Personal theme has a layer Bike cafe showing features with this tag", + "value": "restaurant" + }, + { + "key": "pub", + "description": "The MapComplete theme Personal theme has a layer Bike cafe showing features with this tag", + "value": "cycling" + }, + { + "key": "pub", + "description": "The MapComplete theme Personal theme has a layer Bike cafe showing features with this tag", + "value": "bicycle" + }, + { + "key": "theme", + "description": "The MapComplete theme Personal theme has a layer Bike cafe showing features with this tag", + "value": "cycling" + }, + { + "key": "theme", + "description": "The MapComplete theme Personal theme has a layer Bike cafe showing features with this tag", + "value": "bicycle" + }, + { + "key": "service:bicycle:.*", + "description": "The MapComplete theme Personal theme has a layer Bike cafe showing features with this tag" + }, + { + "key": "image", + "description": "The layer 'Bike cafe allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "mapillary", + "description": "The layer 'Bike cafe allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "wikidata", + "description": "The layer 'Bike cafe allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "wikipedia", + "description": "The layer 'Bike cafe allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "name", + "description": "Layer 'Bike cafe' shows and asks freeform values for key 'name' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "service:bicycle:pump", + "description": "Layer 'Bike cafe' shows service:bicycle:pump=yes with a fixed text, namely 'This bike cafe offers a bike pump for anyone' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "yes" + }, + { + "key": "service:bicycle:pump", + "description": "Layer 'Bike cafe' shows service:bicycle:pump=no with a fixed text, namely 'This bike cafe doesn't offer a bike pump for anyone' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "no" + }, + { + "key": "service:bicycle:diy", + "description": "Layer 'Bike cafe' shows service:bicycle:diy=yes with a fixed text, namely 'This bike cafe offers tools for DIY repair' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "yes" + }, + { + "key": "service:bicycle:diy", + "description": "Layer 'Bike cafe' shows service:bicycle:diy=no with a fixed text, namely 'This bike cafe doesn't offer tools for DIY repair' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "no" + }, + { + "key": "service:bicycle:repair", + "description": "Layer 'Bike cafe' shows service:bicycle:repair=yes with a fixed text, namely 'This bike cafe repairs bikes' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "yes" + }, + { + "key": "service:bicycle:repair", + "description": "Layer 'Bike cafe' shows service:bicycle:repair=no with a fixed text, namely 'This bike cafe doesn't repair bikes' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "no" + }, + { + "key": "website", + "description": "Layer 'Bike cafe' shows and asks freeform values for key 'website' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "phone", + "description": "Layer 'Bike cafe' shows and asks freeform values for key 'phone' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "email", + "description": "Layer 'Bike cafe' shows and asks freeform values for key 'email' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "opening_hours", + "description": "Layer 'Bike cafe' shows and asks freeform values for key 'opening_hours' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "shop", + "description": "The MapComplete theme Personal theme has a layer Bike repair/shop showing features with this tag", + "value": "bicycle" + }, + { + "key": "amenity", + "description": "The MapComplete theme Personal theme has a layer Bike repair/shop showing features with this tag", + "value": "bicycle_rental" + }, + { + "key": "network", + "description": "The MapComplete theme Personal theme has a layer Bike repair/shop showing features with this tag", + "value": "" + }, + { + "key": "shop", + "description": "The MapComplete theme Personal theme has a layer Bike repair/shop showing features with this tag", + "value": "sports" + }, + { + "key": "sport", + "description": "The MapComplete theme Personal theme has a layer Bike repair/shop showing features with this tag", + "value": "bicycle" + }, + { + "key": "sport", + "description": "The MapComplete theme Personal theme has a layer Bike repair/shop showing features with this tag", + "value": "cycling" + }, + { + "key": "sport", + "description": "The MapComplete theme Personal theme has a layer Bike repair/shop showing features with this tag", + "value": "" + }, + { + "key": "image", + "description": "The layer 'Bike repair/shop allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "mapillary", + "description": "The layer 'Bike repair/shop allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "wikidata", + "description": "The layer 'Bike repair/shop allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "wikipedia", + "description": "The layer 'Bike repair/shop allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "name", + "description": "Layer 'Bike repair/shop' shows and asks freeform values for key 'name' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "website", + "description": "Layer 'Bike repair/shop' shows and asks freeform values for key 'website' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "phone", + "description": "Layer 'Bike repair/shop' shows and asks freeform values for key 'phone' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "email", + "description": "Layer 'Bike repair/shop' shows and asks freeform values for key 'email' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "opening_hours", + "description": "Layer 'Bike repair/shop' shows and asks freeform values for key 'opening_hours' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "description", + "description": "Layer 'Bike repair/shop' shows and asks freeform values for key 'description' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "access", + "description": "Layer 'Bike repair/shop' shows values with key 'access' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "service:bicycle:retail", + "description": "Layer 'Bike repair/shop' shows service:bicycle:retail=yes with a fixed text, namely 'This shop sells bikes' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "yes" + }, + { + "key": "service:bicycle:retail", + "description": "Layer 'Bike repair/shop' shows service:bicycle:retail=no with a fixed text, namely 'This shop doesn't sell bikes' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "no" + }, + { + "key": "service:bicycle:repair", + "description": "Layer 'Bike repair/shop' shows service:bicycle:repair=yes with a fixed text, namely 'This shop repairs bikes' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "yes" + }, + { + "key": "service:bicycle:repair", + "description": "Layer 'Bike repair/shop' shows service:bicycle:repair=no with a fixed text, namely 'This shop doesn't repair bikes' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "no" + }, + { + "key": "service:bicycle:repair", + "description": "Layer 'Bike repair/shop' shows service:bicycle:repair=only_sold with a fixed text, namely 'This shop only repairs bikes bought here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "only_sold" + }, + { + "key": "service:bicycle:repair", + "description": "Layer 'Bike repair/shop' shows service:bicycle:repair=brand with a fixed text, namely 'This shop only repairs bikes of a certain brand' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "brand" + }, + { + "key": "service:bicycle:rental", + "description": "Layer 'Bike repair/shop' shows service:bicycle:rental=yes with a fixed text, namely 'This shop rents out bikes' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "yes" + }, + { + "key": "service:bicycle:rental", + "description": "Layer 'Bike repair/shop' shows service:bicycle:rental=no with a fixed text, namely 'This shop doesn't rent out bikes' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "no" + }, + { + "key": "service:bicycle:second_hand", + "description": "Layer 'Bike repair/shop' shows service:bicycle:second_hand=yes with a fixed text, namely 'This shop sells second-hand bikes' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "yes" + }, + { + "key": "service:bicycle:second_hand", + "description": "Layer 'Bike repair/shop' shows service:bicycle:second_hand=no with a fixed text, namely 'This shop doesn't sell second-hand bikes' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "no" + }, + { + "key": "service:bicycle:second_hand", + "description": "Layer 'Bike repair/shop' shows service:bicycle:second_hand=only with a fixed text, namely 'This shop only sells second-hand bikes' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "only" + }, + { + "key": "service:bicycle:pump", + "description": "Layer 'Bike repair/shop' shows service:bicycle:pump=yes with a fixed text, namely 'This shop offers a bike pump for anyone' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "yes" + }, + { + "key": "service:bicycle:pump", + "description": "Layer 'Bike repair/shop' shows service:bicycle:pump=no with a fixed text, namely 'This shop doesn't offer a bike pump for anyone' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "no" + }, + { + "key": "service:bicycle:pump", + "description": "Layer 'Bike repair/shop' shows service:bicycle:pump=separate with a fixed text, namely 'There is bicycle pump, it is shown as a separate point ' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "separate" + }, + { + "key": "service:bicycle:diy", + "description": "Layer 'Bike repair/shop' shows service:bicycle:diy=yes with a fixed text, namely 'This shop offers tools for DIY repair' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "yes" + }, + { + "key": "service:bicycle:diy", + "description": "Layer 'Bike repair/shop' shows service:bicycle:diy=no with a fixed text, namely 'This shop doesn't offer tools for DIY repair' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "no" + }, + { + "key": "service:bicycle:diy", + "description": "Layer 'Bike repair/shop' shows service:bicycle:diy=only_sold with a fixed text, namely 'Tools for DIY repair are only available if you bought/hire the bike in the shop' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "only_sold" + }, + { + "key": "service:bicycle:cleaning", + "description": "Layer 'Bike repair/shop' shows service:bicycle:cleaning=yes with a fixed text, namely 'This shop cleans bicycles' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "yes" + }, + { + "key": "service:bicycle:cleaning", + "description": "Layer 'Bike repair/shop' shows service:bicycle:cleaning=diy with a fixed text, namely 'This shop has an installation where one can clean bicycles themselves' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "diy" + }, + { + "key": "service:bicycle:cleaning", + "description": "Layer 'Bike repair/shop' shows service:bicycle:cleaning=no with a fixed text, namely 'This shop doesn't offer bicycle cleaning' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "no" + }, + { + "key": "service:bicycle:cleaning:charge", + "description": "Layer 'Bike repair/shop' shows and asks freeform values for key 'service:bicycle:cleaning:charge' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "service:bicycle:cleaning:fee", + "description": "Layer 'Bike repair/shop' shows service:bicycle:cleaning:fee=no&service:bicycle:cleaning:charge= with a fixed text, namely 'The cleaning service is free to use' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "no&service:bicycle:cleaning:charge=" + }, + { + "key": "service:bicycle:cleaning:fee", + "description": "Layer 'Bike repair/shop' shows service:bicycle:cleaning:fee=no with a fixed text, namely 'Free to use' (in the MapComplete.osm.be theme 'Personal theme')", + "value": "no" + }, + { + "key": "service:bicycle:cleaning:fee", + "description": "Layer 'Bike repair/shop' shows service:bicycle:cleaning:fee=yes&service:bicycle:cleaning:charge= with a fixed text, namely 'The cleaning service has a fee, but the amount is not known' (in the MapComplete.osm.be theme 'Personal theme')", + "value": "yes&service:bicycle:cleaning:charge=" + }, + { + "key": "amenity", + "description": "The MapComplete theme Personal theme has a layer Bicycle pump and repair showing features with this tag", + "value": "bicycle_repair_station" + }, + { + "key": "image", + "description": "The layer 'Bicycle pump and repair allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "mapillary", + "description": "The layer 'Bicycle pump and repair allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "wikidata", + "description": "The layer 'Bicycle pump and repair allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "wikipedia", + "description": "The layer 'Bicycle pump and repair allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "service:bicycle:tools", + "description": "Layer 'Bicycle pump and repair' shows service:bicycle:tools=no&service:bicycle:pump=yes with a fixed text, namely 'There is only a pump present' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "no" + }, + { + "key": "service:bicycle:pump", + "description": "Layer 'Bicycle pump and repair' shows service:bicycle:tools=no&service:bicycle:pump=yes with a fixed text, namely 'There is only a pump present' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "yes" + }, + { + "key": "service:bicycle:tools", + "description": "Layer 'Bicycle pump and repair' shows service:bicycle:tools=yes&service:bicycle:pump=no with a fixed text, namely 'There are only tools (screwdrivers, pliers...) present' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "yes" + }, + { + "key": "service:bicycle:pump", + "description": "Layer 'Bicycle pump and repair' shows service:bicycle:tools=yes&service:bicycle:pump=no with a fixed text, namely 'There are only tools (screwdrivers, pliers...) present' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "no" + }, + { + "key": "service:bicycle:tools", + "description": "Layer 'Bicycle pump and repair' shows service:bicycle:tools=yes&service:bicycle:pump=yes with a fixed text, namely 'There are both tools and a pump present' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "yes" + }, + { + "key": "service:bicycle:pump", + "description": "Layer 'Bicycle pump and repair' shows service:bicycle:tools=yes&service:bicycle:pump=yes with a fixed text, namely 'There are both tools and a pump present' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "yes" + }, + { + "key": "service:bicycle:pump:operational_status", + "description": "Layer 'Bicycle pump and repair' shows service:bicycle:pump:operational_status=broken with a fixed text, namely 'The bike pump is broken' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "broken" + }, + { + "key": "service:bicycle:pump:operational_status", + "description": "Layer 'Bicycle pump and repair' shows service:bicycle:pump:operational_status=operational with a fixed text, namely 'The bike pump is operational' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "operational" + }, + { + "key": "opening_hours", + "description": "Layer 'Bicycle pump and repair' shows and asks freeform values for key 'opening_hours' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "opening_hours", + "description": "Layer 'Bicycle pump and repair' shows opening_hours=24/7 with a fixed text, namely 'Always open' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "24/7" + }, + { + "key": "access", + "description": "Layer 'Bicycle pump and repair' shows access=yes with a fixed text, namely 'Publicly accessible' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "yes" + }, + { + "key": "access", + "description": "Layer 'Bicycle pump and repair' shows access=public with a fixed text, namely 'Publicly accessible' (in the MapComplete.osm.be theme 'Personal theme')", + "value": "public" + }, + { + "key": "access", + "description": "Layer 'Bicycle pump and repair' shows access=customers with a fixed text, namely 'Only for customers' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "customers" + }, + { + "key": "access", + "description": "Layer 'Bicycle pump and repair' shows access=private with a fixed text, namely 'Not accessible to the general public' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "private" + }, + { + "key": "access", + "description": "Layer 'Bicycle pump and repair' shows access=no with a fixed text, namely 'Not accessible to the general public' (in the MapComplete.osm.be theme 'Personal theme')", + "value": "no" + }, + { + "key": "operator", + "description": "Layer 'Bicycle pump and repair' shows and asks freeform values for key 'operator' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "email", + "description": "Layer 'Bicycle pump and repair' shows and asks freeform values for key 'email' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "phone", + "description": "Layer 'Bicycle pump and repair' shows and asks freeform values for key 'phone' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "service:bicycle:chain_tool", + "description": "Layer 'Bicycle pump and repair' shows service:bicycle:chain_tool=yes with a fixed text, namely 'There is a chain tool' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "yes" + }, + { + "key": "service:bicycle:chain_tool", + "description": "Layer 'Bicycle pump and repair' shows service:bicycle:chain_tool=no with a fixed text, namely 'There is no chain tool' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "no" + }, + { + "key": "service:bicycle:stand", + "description": "Layer 'Bicycle pump and repair' shows service:bicycle:stand=yes with a fixed text, namely 'There is a hook or stand' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "yes" + }, + { + "key": "service:bicycle:stand", + "description": "Layer 'Bicycle pump and repair' shows service:bicycle:stand=no with a fixed text, namely 'There is no hook or stand' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "no" + }, + { + "key": "valves", + "description": "Layer 'Bicycle pump and repair' shows and asks freeform values for key 'valves' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "valves", + "description": "Layer 'Bicycle pump and repair' shows valves=sclaverand with a fixed text, namely 'Sclaverand (also known as Presta)' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "sclaverand" + }, + { + "key": "valves", + "description": "Layer 'Bicycle pump and repair' shows valves=dunlop with a fixed text, namely 'Dunlop' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "dunlop" + }, + { + "key": "valves", + "description": "Layer 'Bicycle pump and repair' shows valves=schrader with a fixed text, namely 'Schrader (cars)' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "schrader" + }, + { + "key": "manual", + "description": "Layer 'Bicycle pump and repair' shows manual=yes with a fixed text, namely 'Manual pump' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "yes" + }, + { + "key": "manual", + "description": "Layer 'Bicycle pump and repair' shows manual=no with a fixed text, namely 'Electrical pump' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "no" + }, + { + "key": "manometer", + "description": "Layer 'Bicycle pump and repair' shows manometer=yes with a fixed text, namely 'There is a manometer' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "yes" + }, + { + "key": "manometer", + "description": "Layer 'Bicycle pump and repair' shows manometer=no with a fixed text, namely 'There is no manometer' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "no" + }, + { + "key": "manometer", + "description": "Layer 'Bicycle pump and repair' shows manometer=broken with a fixed text, namely 'There is manometer but it is broken' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "broken" + }, + { + "key": "level", + "description": "Layer 'Bicycle pump and repair' shows and asks freeform values for key 'level' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "location", + "description": "Layer 'Bicycle pump and repair' shows location=underground with a fixed text, namely 'Located underground' (in the MapComplete.osm.be theme 'Personal theme')", + "value": "underground" + }, + { + "key": "level", + "description": "Layer 'Bicycle pump and repair' shows level=0 with a fixed text, namely 'Located on the ground floor' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "0" + }, + { + "key": "level", + "description": "Layer 'Bicycle pump and repair' shows with a fixed text, namely 'Located on the ground floor' (in the MapComplete.osm.be theme 'Personal theme') Picking this answer will delete the key level.", + "value": "" + }, + { + "key": "level", + "description": "Layer 'Bicycle pump and repair' shows level=1 with a fixed text, namely 'Located on the first floor' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "1" + }, + { + "key": "level", + "description": "Layer 'Bicycle pump and repair' shows level=-1 with a fixed text, namely 'Located on the first basement level' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "-1" + }, + { + "key": "amenity", + "description": "The MapComplete theme Personal theme has a layer Bicycle tube vending machine showing features with this tag", + "value": "vending_machine" + }, + { + "key": "vending", + "description": "The MapComplete theme Personal theme has a layer Bicycle tube vending machine showing features with this tag" + }, + { + "key": "image", + "description": "The layer 'Bicycle tube vending machine allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "mapillary", + "description": "The layer 'Bicycle tube vending machine allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "wikidata", + "description": "The layer 'Bicycle tube vending machine allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "wikipedia", + "description": "The layer 'Bicycle tube vending machine allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "operational_status", + "description": "Layer 'Bicycle tube vending machine' shows and asks freeform values for key 'operational_status' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "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 'Personal theme') Picking this answer will delete the key operational_status.", + "value": "" + }, + { + "key": "operational_status", + "description": "Layer 'Bicycle tube vending machine' shows operational_status=broken with a fixed text, namely 'This vending machine is broken' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "broken" + }, + { + "key": "operational_status", + "description": "Layer 'Bicycle tube vending machine' shows operational_status=closed with a fixed text, namely 'This vending machine is closed' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "closed" + }, + { + "key": "charge", + "description": "Layer 'Bicycle tube vending machine' shows and asks freeform values for key 'charge' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "payment:coins", + "description": "Layer 'Bicycle tube vending machine' shows payment:coins=yes with a fixed text, namely 'Payment with coins is possible' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "yes" + }, + { + "key": "payment:notes", + "description": "Layer 'Bicycle tube vending machine' shows payment:notes=yes with a fixed text, namely 'Payment with notes is possible' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "yes" + }, + { + "key": "payment:cards", + "description": "Layer 'Bicycle tube vending machine' shows payment:cards=yes with a fixed text, namely 'Payment with cards is possible' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "yes" + }, + { + "key": "brand", + "description": "Layer 'Bicycle tube vending machine' shows and asks freeform values for key 'brand' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "brand", + "description": "Layer 'Bicycle tube vending machine' shows brand=Continental with a fixed text, namely 'Continental tubes are sold here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "Continental" + }, + { + "key": "brand", + "description": "Layer 'Bicycle tube vending machine' shows brand=Schwalbe with a fixed text, namely 'Schwalbe tubes are sold here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "Schwalbe" + }, + { + "key": "operator", + "description": "Layer 'Bicycle tube vending machine' shows and asks freeform values for key 'operator' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "operator", + "description": "Layer 'Bicycle tube vending machine' shows operator=Schwalbe with a fixed text, namely 'Maintained by Schwalbe' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "Schwalbe" + }, + { + "key": "operator", + "description": "Layer 'Bicycle tube vending machine' shows operator=Continental with a fixed text, namely 'Maintained by Continental' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "Continental" + }, + { + "key": "vending:bicycle_light", + "description": "Layer 'Bicycle tube vending machine' shows vending:bicycle_light=yes with a fixed text, namely 'Bicycle lights are sold here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "yes" + }, + { + "key": "vending:gloves", + "description": "Layer 'Bicycle tube vending machine' shows vending:gloves=yes with a fixed text, namely 'Gloves are sold here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "yes" + }, + { + "key": "vending:bicycle_repair_kit", + "description": "Layer 'Bicycle tube vending machine' shows vending:bicycle_repair_kit=yes with a fixed text, namely 'Bicycle repair kits are sold here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "yes" + }, + { + "key": "vending:bicycle_pump", + "description": "Layer 'Bicycle tube vending machine' shows vending:bicycle_pump=yes with a fixed text, namely 'Bicycle pumps are sold here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "yes" + }, + { + "key": "vending:bicycle_lock", + "description": "Layer 'Bicycle tube vending machine' shows vending:bicycle_lock=yes with a fixed text, namely 'Bicycle locks are sold here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "yes" + }, + { + "key": "amenity", + "description": "The MapComplete theme Personal theme has a layer Drinking water showing features with this tag", + "value": "drinking_water" + }, + { + "key": "image", + "description": "The layer 'Drinking water allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "mapillary", + "description": "The layer 'Drinking water allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "wikidata", + "description": "The layer 'Drinking water allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "wikipedia", + "description": "The layer 'Drinking water allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "operational_status", + "description": "Layer 'Drinking water' shows and asks freeform values for key 'operational_status' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "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 'Personal theme') Picking this answer will delete the key operational_status.", + "value": "" + }, + { + "key": "operational_status", + "description": "Layer 'Drinking water' shows operational_status=broken with a fixed text, namely 'This drinking water is broken' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "broken" + }, + { + "key": "operational_status", + "description": "Layer 'Drinking water' shows operational_status=closed with a fixed text, namely 'This drinking water is closed' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "closed" + }, + { + "key": "bottle", + "description": "Layer 'Drinking water' shows bottle=yes with a fixed text, namely 'It is easy to refill water bottles' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "yes" + }, + { + "key": "bottle", + "description": "Layer 'Drinking water' shows bottle=no with a fixed text, namely 'Water bottles may not fit' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "no" + }, + { + "key": "theme", + "description": "The MapComplete theme Personal theme has a layer Bike related object showing features with this tag", + "value": "bicycle" + }, + { + "key": "theme", + "description": "The MapComplete theme Personal theme has a layer Bike related object showing features with this tag", + "value": "cycling" + }, + { + "key": "sport", + "description": "The MapComplete theme Personal theme has a layer Bike related object showing features with this tag", + "value": "cycling" + }, + { + "key": "association", + "description": "The MapComplete theme Personal theme has a layer Bike related object showing features with this tag", + "value": "cycling" + }, + { + "key": "association", + "description": "The MapComplete theme Personal theme has a layer Bike related object showing features with this tag", + "value": "bicycle" + }, + { + "key": "ngo", + "description": "The MapComplete theme Personal theme has a layer Bike related object showing features with this tag", + "value": "cycling" + }, + { + "key": "ngo", + "description": "The MapComplete theme Personal theme has a layer Bike related object showing features with this tag", + "value": "bicycle" + }, + { + "key": "club", + "description": "The MapComplete theme Personal theme has a layer Bike related object showing features with this tag", + "value": "bicycle" + }, + { + "key": "club", + "description": "The MapComplete theme Personal theme has a layer Bike related object showing features with this tag", + "value": "cycling" + }, + { + "key": "image", + "description": "The layer 'Bike related object allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "mapillary", + "description": "The layer 'Bike related object allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "wikidata", + "description": "The layer 'Bike related object allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "wikipedia", + "description": "The layer 'Bike related object allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "description", + "description": "Layer 'Bike related object' shows and asks freeform values for key 'description' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "website", + "description": "Layer 'Bike related object' shows and asks freeform values for key 'website' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "contact:website", + "description": "Layer 'Bike related object' shows contact:website~^..*$ with a fixed text, namely '{contact:website}' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "email", + "description": "Layer 'Bike related object' shows and asks freeform values for key 'email' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "contact:email", + "description": "Layer 'Bike related object' shows contact:email~^..*$ with a fixed text, namely '{contact:email}' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "phone", + "description": "Layer 'Bike related object' shows and asks freeform values for key 'phone' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "contact:phone", + "description": "Layer 'Bike related object' shows contact:phone~^..*$ with a fixed text, namely '{contact:phone}' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "opening_hours", + "description": "Layer 'Bike related object' shows and asks freeform values for key 'opening_hours' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "service:bicycle:cleaning", + "description": "The MapComplete theme Personal theme has a layer Bike cleaning service showing features with this tag", + "value": "yes" + }, + { + "key": "service:bicycle:cleaning", + "description": "The MapComplete theme Personal theme has a layer Bike cleaning service showing features with this tag", + "value": "diy" + }, + { + "key": "amenity", + "description": "The MapComplete theme Personal theme has a layer Bike cleaning service showing features with this tag", + "value": "bicycle_wash" + }, + { + "key": "amenity", + "description": "The MapComplete theme Personal theme has a layer Bike cleaning service showing features with this tag", + "value": "bike_wash" + }, + { + "key": "image", + "description": "The layer 'Bike cleaning service allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "mapillary", + "description": "The layer 'Bike cleaning service allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "wikidata", + "description": "The layer 'Bike cleaning service allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "wikipedia", + "description": "The layer 'Bike cleaning service allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "service:bicycle:cleaning:charge", + "description": "Layer 'Bike cleaning service' shows and asks freeform values for key 'service:bicycle:cleaning:charge' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "service:bicycle:cleaning:fee", + "description": "Layer 'Bike cleaning service' shows service:bicycle:cleaning:fee=no&service:bicycle:cleaning:charge= with a fixed text, namely 'The cleaning service is free to use' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "no&service:bicycle:cleaning:charge=" + }, + { + "key": "service:bicycle:cleaning:fee", + "description": "Layer 'Bike cleaning service' shows service:bicycle:cleaning:fee=no with a fixed text, namely 'Free to use' (in the MapComplete.osm.be theme 'Personal theme')", + "value": "no" + }, + { + "key": "service:bicycle:cleaning:fee", + "description": "Layer 'Bike cleaning service' shows service:bicycle:cleaning:fee=yes&service:bicycle:cleaning:charge= with a fixed text, namely 'The cleaning service has a fee, but the amount is not known' (in the MapComplete.osm.be theme 'Personal theme')", + "value": "yes&service:bicycle:cleaning:charge=" + }, + { + "key": "charge", + "description": "Layer 'Bike cleaning service' shows and asks freeform values for key 'charge' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "fee", + "description": "Layer 'Bike cleaning service' shows fee=no&charge= with a fixed text, namely 'Free to use cleaning service' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "no&charge=" + }, + { + "key": "fee", + "description": "Layer 'Bike cleaning service' shows fee=no with a fixed text, namely 'Free to use' (in the MapComplete.osm.be theme 'Personal theme')", + "value": "no" + }, + { + "key": "fee", + "description": "Layer 'Bike cleaning service' shows fee=yes with a fixed text, namely 'The cleaning service has a fee' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "yes" + }, + { + "key": "amenity", + "description": "The MapComplete theme Personal theme has a layer Bike parking showing features with this tag", + "value": "bicycle_parking" + }, + { + "key": "image", + "description": "The layer 'Bike parking allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "mapillary", + "description": "The layer 'Bike parking allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "wikidata", + "description": "The layer 'Bike parking allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "wikipedia", + "description": "The layer 'Bike parking allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "bicycle_parking", + "description": "Layer 'Bike parking' shows and asks freeform values for key 'bicycle_parking' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "bicycle_parking", + "description": "Layer 'Bike parking' shows bicycle_parking=stands with a fixed text, namely 'Staple racks ' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "stands" + }, + { + "key": "bicycle_parking", + "description": "Layer 'Bike parking' shows bicycle_parking=wall_loops with a fixed text, namely 'Wheel rack/loops ' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "wall_loops" + }, + { + "key": "bicycle_parking", + "description": "Layer 'Bike parking' shows bicycle_parking=handlebar_holder with a fixed text, namely 'Handlebar holder ' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "handlebar_holder" + }, + { + "key": "bicycle_parking", + "description": "Layer 'Bike parking' shows bicycle_parking=rack with a fixed text, namely 'Rack ' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "rack" + }, + { + "key": "bicycle_parking", + "description": "Layer 'Bike parking' shows bicycle_parking=two_tier with a fixed text, namely 'Two-tiered ' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "two_tier" + }, + { + "key": "bicycle_parking", + "description": "Layer 'Bike parking' shows bicycle_parking=shed with a fixed text, namely 'Shed ' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "shed" + }, + { + "key": "bicycle_parking", + "description": "Layer 'Bike parking' shows bicycle_parking=bollard with a fixed text, namely 'Bollard ' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "bollard" + }, + { + "key": "bicycle_parking", + "description": "Layer 'Bike parking' shows bicycle_parking=floor with a fixed text, namely 'An area on the floor which is marked for bicycle parking' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "floor" + }, + { + "key": "location", + "description": "Layer 'Bike parking' shows location=underground with a fixed text, namely 'Underground parking' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "underground" + }, + { + "key": "location", + "description": "Layer 'Bike parking' shows location=surface with a fixed text, namely 'Surface level parking' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "surface" + }, + { + "key": "location", + "description": "Layer 'Bike parking' shows location=rooftop with a fixed text, namely 'Rooftop parking' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "rooftop" + }, + { + "key": "location", + "description": "Layer 'Bike parking' shows with a fixed text, namely 'Surface level parking' (in the MapComplete.osm.be theme 'Personal theme') Picking this answer will delete the key location.", + "value": "" + }, + { + "key": "location", + "description": "Layer 'Bike parking' shows location=rooftop with a fixed text, namely 'Rooftop parking' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "rooftop" + }, + { + "key": "covered", + "description": "Layer 'Bike parking' shows covered=yes with a fixed text, namely 'This parking is covered (it has a roof)' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "yes" + }, + { + "key": "covered", + "description": "Layer 'Bike parking' shows covered=no with a fixed text, namely 'This parking is not covered' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "no" + }, + { + "key": "capacity", + "description": "Layer 'Bike parking' shows and asks freeform values for key 'capacity' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "access", + "description": "Layer 'Bike parking' shows and asks freeform values for key 'access' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "access", + "description": "Layer 'Bike parking' shows access=yes with a fixed text, namely 'Publicly accessible' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "yes" + }, + { + "key": "access", + "description": "Layer 'Bike parking' shows access=customers with a fixed text, namely 'Access is primarily for visitors to a business' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "customers" + }, + { + "key": "access", + "description": "Layer 'Bike parking' shows access=private with a fixed text, namely 'Access is limited to members of a school, company or organisation' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "private" + }, + { + "key": "cargo_bike", + "description": "Layer 'Bike parking' shows cargo_bike=yes with a fixed text, namely 'This parking has room for cargo bikes' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "yes" + }, + { + "key": "cargo_bike", + "description": "Layer 'Bike parking' shows cargo_bike=designated with a fixed text, namely 'This parking has designated (official) spots for cargo bikes.' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "designated" + }, + { + "key": "cargo_bike", + "description": "Layer 'Bike parking' shows cargo_bike=no with a fixed text, namely 'You're not allowed to park cargo bikes' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "no" + }, + { + "key": "capacity:cargo_bike", + "description": "Layer 'Bike parking' shows and asks freeform values for key 'capacity:cargo_bike' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "highway", + "description": "The MapComplete theme Personal theme has a layer Pedestrain paths showing features with this tag", + "value": "footway" + }, + { + "key": "highway", + "description": "The MapComplete theme Personal theme has a layer Pedestrain paths showing features with this tag", + "value": "path" + }, + { + "key": "highway", + "description": "The MapComplete theme Personal theme has a layer Pedestrain paths showing features with this tag", + "value": "corridor" + }, + { + "key": "highway", + "description": "The MapComplete theme Personal theme has a layer Pedestrain paths showing features with this tag", + "value": "steps" + }, + { + "key": "entrance", + "description": "The MapComplete theme Personal theme has a layer Entrance showing features with this tag" + }, + { + "key": "indoor", + "description": "The MapComplete theme Personal theme has a layer Entrance showing features with this tag", + "value": "door" + }, + { + "key": "image", + "description": "The layer 'Entrance allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "mapillary", + "description": "The layer 'Entrance allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "wikidata", + "description": "The layer 'Entrance allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "wikipedia", + "description": "The layer 'Entrance allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "entrance", + "description": "Layer 'Entrance' shows entrance=yes with a fixed text, namely 'No specific entrance type is known' (in the MapComplete.osm.be theme 'Personal theme')", + "value": "yes" + }, + { + "key": "entrance", + "description": "Layer 'Entrance' shows indoor=door with a fixed text, namely 'This is an indoor door, separating a room or a corridor within a single building' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme') Picking this answer will delete the key entrance.", + "value": "" + }, + { + "key": "indoor", + "description": "Layer 'Entrance' shows indoor=door with a fixed text, namely 'This is an indoor door, separating a room or a corridor within a single building' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "door" + }, + { + "key": "indoor", + "description": "Layer 'Entrance' shows entrance=main with a fixed text, namely 'This is the main entrance' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme') Picking this answer will delete the key indoor.", + "value": "" + }, + { + "key": "entrance", + "description": "Layer 'Entrance' shows entrance=main with a fixed text, namely 'This is the main entrance' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "main" + }, + { + "key": "indoor", + "description": "Layer 'Entrance' shows entrance=secondary with a fixed text, namely 'This is a secondary entrance' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme') Picking this answer will delete the key indoor.", + "value": "" + }, + { + "key": "entrance", + "description": "Layer 'Entrance' shows entrance=secondary with a fixed text, namely 'This is a secondary entrance' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "secondary" + }, + { + "key": "indoor", + "description": "Layer 'Entrance' shows entrance=service with a fixed text, namely 'This is a service entrance - normally only used for employees, delivery, ...' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme') Picking this answer will delete the key indoor.", + "value": "" + }, + { + "key": "entrance", + "description": "Layer 'Entrance' shows entrance=service with a fixed text, namely 'This is a service entrance - normally only used for employees, delivery, ...' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "service" + }, + { + "key": "indoor", + "description": "Layer 'Entrance' shows entrance=exit with a fixed text, namely 'This is an exit where one can not enter' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme') Picking this answer will delete the key indoor.", + "value": "" + }, + { + "key": "entrance", + "description": "Layer 'Entrance' shows entrance=exit with a fixed text, namely 'This is an exit where one can not enter' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "exit" + }, + { + "key": "indoor", + "description": "Layer 'Entrance' shows entrance=entrance with a fixed text, namely 'This is an entrance where one can only enter (but not exit)' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme') Picking this answer will delete the key indoor.", + "value": "" + }, + { + "key": "entrance", + "description": "Layer 'Entrance' shows entrance=entrance with a fixed text, namely 'This is an entrance where one can only enter (but not exit)' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "entrance" + }, + { + "key": "indoor", + "description": "Layer 'Entrance' shows entrance=emergency with a fixed text, namely 'This is emergency exit' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme') Picking this answer will delete the key indoor.", + "value": "" + }, + { + "key": "entrance", + "description": "Layer 'Entrance' shows entrance=emergency with a fixed text, namely 'This is emergency exit' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "emergency" + }, + { + "key": "indoor", + "description": "Layer 'Entrance' shows entrance=home with a fixed text, namely 'This is the entrance to a private home' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme') Picking this answer will delete the key indoor.", + "value": "" + }, + { + "key": "entrance", + "description": "Layer 'Entrance' shows entrance=home with a fixed text, namely 'This is the entrance to a private home' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "home" + }, + { + "key": "door", + "description": "Layer 'Entrance' shows door=yes with a fixed text, namely 'The door type is not known' (in the MapComplete.osm.be theme 'Personal theme')", + "value": "yes" + }, + { + "key": "door", + "description": "Layer 'Entrance' shows door=hinged with a fixed text, namely 'A classical, hinged door supported by joints' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "hinged" + }, + { + "key": "door", + "description": "Layer 'Entrance' shows door=revolving with a fixed text, namely 'A revolving door which hangs on a central shaft, rotating within a cylindrical enclosure' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "revolving" + }, + { + "key": "door", + "description": "Layer 'Entrance' shows door=sliding with a fixed text, namely 'A sliding door where the door slides sidewards, typically parallel with a wall' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "sliding" + }, + { + "key": "door", + "description": "Layer 'Entrance' shows door=overhead with a fixed text, namely 'A door which rolls from overhead, typically seen for garages' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "overhead" + }, + { + "key": "door", + "description": "Layer 'Entrance' shows door=no with a fixed text, namely 'This is an entrance without a physical door' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "no" + }, + { + "key": "automatic_door", + "description": "Layer 'Entrance' shows automatic_door=yes with a fixed text, namely 'This is an automatic door' (in the MapComplete.osm.be theme 'Personal theme')", + "value": "yes" + }, + { + "key": "automatic_door", + "description": "Layer 'Entrance' shows automatic_door=no with a fixed text, namely 'This door is not automated' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "no" + }, + { + "key": "automatic_door", + "description": "Layer 'Entrance' shows automatic_door=motion with a fixed text, namely 'This door will open automatically when motion is detected' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "motion" + }, + { + "key": "automatic_door", + "description": "Layer 'Entrance' shows automatic_door=floor with a fixed text, namely 'This door will open automatically when a sensor in the floor is triggered' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "floor" + }, + { + "key": "automatic_door", + "description": "Layer 'Entrance' shows automatic_door=button with a fixed text, namely 'This door will open automatically when a button is pressed' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "button" + }, + { + "key": "automatic_door", + "description": "Layer 'Entrance' shows automatic_door=slowdown_button with a fixed text, namely 'This door revolves automatically all the time, but has a button to slow it down, e.g. for wheelchair users' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "slowdown_button" + }, + { + "key": "automatic_door", + "description": "Layer 'Entrance' shows automatic_door=continuous with a fixed text, namely 'This door revolves automatically all the time' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "continuous" + }, + { + "key": "automatic_door", + "description": "Layer 'Entrance' shows automatic_door=serviced_on_button_press with a fixed text, namely 'This door will be opened by staff when requested by pressing a buttonfastfood-zaak. De focus ligt op snelle bediening, zitplaatsen zijn vaak beperkt en functioneel' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "fast_food" + }, + { + "key": "amenity", + "description": "Layer 'Restaurants and fast food' shows amenity=restaurant with a fixed text, namely 'Dit is een restaurant. De focus ligt op een aangename ervaring waar je aan tafel wordt bediend' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "restaurant" + }, + { + "key": "opening_hours", + "description": "Layer 'Restaurants and fast food' shows and asks freeform values for key 'opening_hours' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "website", + "description": "Layer 'Restaurants and fast food' shows and asks freeform values for key 'website' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "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 'Personal theme')" + }, + { + "key": "email", + "description": "Layer 'Restaurants and fast food' shows and asks freeform values for key 'email' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "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 'Personal theme')" + }, + { + "key": "phone", + "description": "Layer 'Restaurants and fast food' shows and asks freeform values for key 'phone' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "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 'Personal theme')" + }, + { + "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 'Personal theme')", + "value": "yes" + }, + { + "key": "payment:cards", + "description": "Layer 'Restaurants and fast food' shows payment:cards=yes with a fixed text, namely 'Payment cards are accepted here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "yes" + }, + { + "key": "wheelchair", + "description": "Layer 'Restaurants and fast food' shows wheelchair=designated with a fixed text, namely 'This place is specially adapted for wheelchair users' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "designated" + }, + { + "key": "wheelchair", + "description": "Layer 'Restaurants and fast food' shows wheelchair=yes with a fixed text, namely 'This place is easily reachable with a wheelchair' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "yes" + }, + { + "key": "wheelchair", + "description": "Layer 'Restaurants and fast food' shows wheelchair=limited with a fixed text, namely 'It is possible to reach this place in a wheelchair, but it is not easy' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "limited" + }, + { + "key": "wheelchair", + "description": "Layer 'Restaurants and fast food' shows wheelchair=no with a fixed text, namely 'This place is not reachable with a wheelchair' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "no" + }, + { + "key": "cuisine", + "description": "Layer 'Restaurants and fast food' shows and asks freeform values for key 'cuisine' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "cuisine", + "description": "Layer 'Restaurants and fast food' shows cuisine=pizza with a fixed text, namely 'This is a pizzeria' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "pizza" + }, + { + "key": "cuisine", + "description": "Layer 'Restaurants and fast food' shows cuisine=friture with a fixed text, namely 'This is a friture' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "friture" + }, + { + "key": "cuisine", + "description": "Layer 'Restaurants and fast food' shows cuisine=pasta with a fixed text, namely 'Mainly serves pasta' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "pasta" + }, + { + "key": "cuisine", + "description": "Layer 'Restaurants and fast food' shows cuisine=kebab with a fixed text, namely 'Dit is een kebabzaak' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "kebab" + }, + { + "key": "cuisine", + "description": "Layer 'Restaurants and fast food' shows cuisine=sandwich with a fixed text, namely 'Dit is een broodjeszaak' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "sandwich" + }, + { + "key": "cuisine", + "description": "Layer 'Restaurants and fast food' shows cuisine=burger with a fixed text, namely 'Dit is een hamburgerrestaurant' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "burger" + }, + { + "key": "cuisine", + "description": "Layer 'Restaurants and fast food' shows cuisine=sushi with a fixed text, namely 'Dit is een sushirestaurant' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "sushi" + }, + { + "key": "cuisine", + "description": "Layer 'Restaurants and fast food' shows cuisine=coffee with a fixed text, namely 'Dit is een koffiezaak' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "coffee" + }, + { + "key": "cuisine", + "description": "Layer 'Restaurants and fast food' shows cuisine=italian with a fixed text, namely 'Dit is een Italiaans restaurant (dat meer dan enkel pasta of pizza verkoopt)' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "italian" + }, + { + "key": "cuisine", + "description": "Layer 'Restaurants and fast food' shows cuisine=french with a fixed text, namely 'Dit is een Frans restaurant' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "french" + }, + { + "key": "cuisine", + "description": "Layer 'Restaurants and fast food' shows cuisine=chinese with a fixed text, namely 'Dit is een Chinees restaurant' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "chinese" + }, + { + "key": "cuisine", + "description": "Layer 'Restaurants and fast food' shows cuisine=greek with a fixed text, namely 'Dit is een Grieks restaurant' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "greek" + }, + { + "key": "cuisine", + "description": "Layer 'Restaurants and fast food' shows cuisine=indian with a fixed text, namely 'Dit is een Indisch restaurant' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "indian" + }, + { + "key": "cuisine", + "description": "Layer 'Restaurants and fast food' shows cuisine=turkish with a fixed text, namely 'Dit is een Turks restaurant (dat meer dan enkel kebab verkoopt)' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "turkish" + }, + { + "key": "cuisine", + "description": "Layer 'Restaurants and fast food' shows cuisine=thai with a fixed text, namely 'Dit is een Thaïs restaurant' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "thai" + }, + { + "key": "takeaway", + "description": "Layer 'Restaurants and fast food' shows takeaway=only with a fixed text, namely 'This is a take-away only business' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "only" + }, + { + "key": "takeaway", + "description": "Layer 'Restaurants and fast food' shows takeaway=yes with a fixed text, namely 'Take-away is possible here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "yes" + }, + { + "key": "takeaway", + "description": "Layer 'Restaurants and fast food' shows takeaway=no with a fixed text, namely 'Take-away is not possible here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "no" + }, + { + "key": "diet:vegetarian", + "description": "Layer 'Restaurants and fast food' shows diet:vegetarian=no with a fixed text, namely 'Geen vegetarische opties beschikbaar' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "no" + }, + { + "key": "diet:vegetarian", + "description": "Layer 'Restaurants and fast food' shows diet:vegetarian=limited with a fixed text, namely 'Beperkte vegetarische opties zijn beschikbaar' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "limited" + }, + { + "key": "diet:vegetarian", + "description": "Layer 'Restaurants and fast food' shows diet:vegetarian=yes with a fixed text, namely 'Vegetarische opties zijn beschikbaar' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "yes" + }, + { + "key": "diet:vegetarian", + "description": "Layer 'Restaurants and fast food' shows diet:vegetarian=only with a fixed text, namely 'Enkel vegetarische opties zijn beschikbaar' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "only" + }, + { + "key": "diet:vegan", + "description": "Layer 'Restaurants and fast food' shows diet:vegan=no with a fixed text, namely 'Geen veganistische opties beschikbaar' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "no" + }, + { + "key": "diet:vegan", + "description": "Layer 'Restaurants and fast food' shows diet:vegan=limited with a fixed text, namely 'Beperkte veganistische opties zijn beschikbaar' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "limited" + }, + { + "key": "diet:vegan", + "description": "Layer 'Restaurants and fast food' shows diet:vegan=yes with a fixed text, namely 'Veganistische opties zijn beschikbaar' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "yes" + }, + { + "key": "diet:vegan", + "description": "Layer 'Restaurants and fast food' shows diet:vegan=only with a fixed text, namely 'Enkel veganistische opties zijn beschikbaar' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "only" + }, + { + "key": "diet:halal", + "description": "Layer 'Restaurants and fast food' shows diet:halal=no with a fixed text, namely 'There are no halal options available' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "no" + }, + { + "key": "diet:halal", + "description": "Layer 'Restaurants and fast food' shows diet:halal=limited with a fixed text, namely 'There is a small halal menu' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "limited" + }, + { + "key": "diet:halal", + "description": "Layer 'Restaurants and fast food' shows diet:halal=yes with a fixed text, namely 'There is a halal menu' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "yes" + }, + { + "key": "diet:halal", + "description": "Layer 'Restaurants and fast food' shows diet:halal=only with a fixed text, namely 'Only halal options are available' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "only" + }, + { + "key": "diet:vegetarian", + "description": "Layer 'Restaurants and fast food' shows diet:vegetarian=yes with a fixed text, namely 'Er zijn vegetarische snacks aanwezig' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "yes" + }, + { + "key": "diet:vegetarian", + "description": "Layer 'Restaurants and fast food' shows diet:vegetarian=limited with a fixed text, namely 'Slechts enkele vegetarische snacks' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "limited" + }, + { + "key": "diet:vegetarian", + "description": "Layer 'Restaurants and fast food' shows diet:vegetarian=no with a fixed text, namely 'Geen vegetarische snacks beschikbaar' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "no" + }, + { + "key": "diet:vegan", + "description": "Layer 'Restaurants and fast food' shows diet:vegan=yes with a fixed text, namely 'Er zijn veganistische snacks aanwezig' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "yes" + }, + { + "key": "diet:vegan", + "description": "Layer 'Restaurants and fast food' shows diet:vegan=limited with a fixed text, namely 'Slechts enkele veganistische snacks' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "limited" + }, + { + "key": "diet:vegan", + "description": "Layer 'Restaurants and fast food' shows diet:vegan=no with a fixed text, namely 'Geen veganistische snacks beschikbaar' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "no" + }, + { + "key": "friture:oil", + "description": "Layer 'Restaurants and fast food' shows friture:oil=vegetable with a fixed text, namely 'Plantaardige olie' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "vegetable" + }, + { + "key": "friture:oil", + "description": "Layer 'Restaurants and fast food' shows friture:oil=animal with a fixed text, namely 'Dierlijk vet' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "animal" + }, + { + "key": "reusable_packaging:accept", + "description": "Layer 'Restaurants and fast food' shows reusable_packaging:accept=yes with a fixed text, namely 'You can bring your own containers to get your order, saving on single-use packaging material and thus waste' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "yes" + }, + { + "key": "reusable_packaging:accept", + "description": "Layer 'Restaurants and fast food' shows reusable_packaging:accept=no with a fixed text, namely 'Bringing your own container is not allowed' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "no" + }, + { + "key": "reusable_packaging:accept", + "description": "Layer 'Restaurants and fast food' shows reusable_packaging:accept=only with a fixed text, namely 'You must bring your own container to order here.' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "only" + }, + { + "key": "service:electricity", + "description": "Layer 'Restaurants and fast food' shows service:electricity=yes with a fixed text, namely 'There are plenty of domestic sockets available to customers seated indoors, where they can charge their electronics' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "yes" + }, + { + "key": "service:electricity", + "description": "Layer 'Restaurants and fast food' shows service:electricity=limited with a fixed text, namely 'There are a few domestic sockets available to customers seated indoors, where they can charge their electronics' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "limited" + }, + { + "key": "service:electricity", + "description": "Layer 'Restaurants and fast food' shows service:electricity=ask with a fixed text, namely 'There are no sockets available indoors to customers, but charging might be possible if the staff is asked' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "ask" + }, + { + "key": "service:electricity", + "description": "Layer 'Restaurants and fast food' shows service:electricity=no with a fixed text, namely 'There are a no domestic sockets available to customers seated indoors' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "no" + }, + { + "key": "dog", + "description": "Layer 'Restaurants and fast food' shows dog=yes with a fixed text, namely 'Dogs are allowed' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "yes" + }, + { + "key": "dog", + "description": "Layer 'Restaurants and fast food' shows dog=no with a fixed text, namely 'Dogs are not allowed' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "no" + }, + { + "key": "dog", + "description": "Layer 'Restaurants and fast food' shows dog=leashed with a fixed text, namely 'Dogs are allowed, but they have to be leashed' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "leashed" + }, + { + "key": "dog", + "description": "Layer 'Restaurants and fast food' shows dog=unleashed with a fixed text, namely 'Dogs are allowed and can run around freely' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "unleashed" + }, + { + "key": "memorial", + "description": "The MapComplete theme Personal theme has a layer Ghost bikes showing features with this tag", + "value": "ghost_bike" + }, + { + "key": "image", + "description": "The layer 'Ghost bikes allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "mapillary", + "description": "The layer 'Ghost bikes allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "wikidata", + "description": "The layer 'Ghost bikes allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "wikipedia", + "description": "The layer 'Ghost bikes allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "name", + "description": "Layer 'Ghost bikes' shows and asks freeform values for key 'name' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "noname", + "description": "Layer 'Ghost bikes' shows noname=yes with a fixed text, namely 'No name is marked on the bike' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "yes" + }, + { + "key": "source", + "description": "Layer 'Ghost bikes' shows and asks freeform values for key 'source' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "inscription", + "description": "Layer 'Ghost bikes' shows and asks freeform values for key 'inscription' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "start_date", + "description": "Layer 'Ghost bikes' shows and asks freeform values for key 'start_date' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "emergency", + "description": "The MapComplete theme Personal theme has a layer Map of hydrants showing features with this tag", + "value": "fire_hydrant" + }, + { + "key": "colour", + "description": "Layer 'Map of hydrants' shows and asks freeform values for key 'colour' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "colour", + "description": "Layer 'Map of hydrants' shows with a fixed text, namely 'The hydrant color is unknown.' (in the MapComplete.osm.be theme 'Personal theme') Picking this answer will delete the key colour.", + "value": "" + }, + { + "key": "colour", + "description": "Layer 'Map of hydrants' shows colour=yellow with a fixed text, namely 'The hydrant color is yellow.' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "yellow" + }, + { + "key": "colour", + "description": "Layer 'Map of hydrants' shows colour=red with a fixed text, namely 'The hydrant color is red.' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "red" + }, + { + "key": "fire_hydrant:type", + "description": "Layer 'Map of hydrants' shows and asks freeform values for key 'fire_hydrant:type' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "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 'Personal theme') Picking this answer will delete the key fire_hydrant:type.", + "value": "" + }, + { + "key": "fire_hydrant:type", + "description": "Layer 'Map of hydrants' shows fire_hydrant:type=pillar with a fixed text, namely ' Pillar type.' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "pillar" + }, + { + "key": "fire_hydrant:type", + "description": "Layer 'Map of hydrants' shows fire_hydrant:type=pipe with a fixed text, namely ' Pipe type.' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "pipe" + }, + { + "key": "fire_hydrant:type", + "description": "Layer 'Map of hydrants' shows fire_hydrant:type=wall with a fixed text, namely ' Wall type.' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "wall" + }, + { + "key": "fire_hydrant:type", + "description": "Layer 'Map of hydrants' shows fire_hydrant:type=underground with a fixed text, namely ' Underground type.' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "underground" + }, + { + "key": "emergency", + "description": "Layer 'Map of hydrants' shows emergency=fire_hydrant with a fixed text, namely 'The hydrant is (fully or partially) working' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "fire_hydrant" + }, + { + "key": "disused: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 'Personal theme')", + "value": "fire_hydrant" + }, + { + "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 'Personal theme') Picking this answer will delete the key emergency.", + "value": "" + }, + { + "key": "removed: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 'Personal theme')", + "value": "fire_hydrant" + }, + { + "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 'Personal theme') Picking this answer will delete the key emergency.", + "value": "" + }, + { + "key": "image", + "description": "The layer 'Map of hydrants allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "mapillary", + "description": "The layer 'Map of hydrants allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "wikidata", + "description": "The layer 'Map of hydrants allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "wikipedia", + "description": "The layer 'Map of hydrants allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "emergency", + "description": "The MapComplete theme Personal theme has a layer Map of fire extinguishers. showing features with this tag", + "value": "fire_extinguisher" + }, + { + "key": "location", + "description": "Layer 'Map of fire extinguishers.' shows and asks freeform values for key 'location' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "location", + "description": "Layer 'Map of fire extinguishers.' shows location=indoor with a fixed text, namely 'Found indoors.' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "indoor" + }, + { + "key": "location", + "description": "Layer 'Map of fire extinguishers.' shows location=outdoor with a fixed text, namely 'Found outdoors.' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "outdoor" + }, + { + "key": "image", + "description": "The layer 'Map of fire extinguishers. allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "mapillary", + "description": "The layer 'Map of fire extinguishers. allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "wikidata", + "description": "The layer 'Map of fire extinguishers. allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "wikipedia", + "description": "The layer 'Map of fire extinguishers. allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "amenity", + "description": "The MapComplete theme Personal theme has a layer Map of fire stations showing features with this tag", + "value": "fire_station" + }, + { + "key": "name", + "description": "Layer 'Map of fire stations' shows and asks freeform values for key 'name' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "addr:street", + "description": "Layer 'Map of fire stations' shows and asks freeform values for key 'addr:street' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "addr:place", + "description": "Layer 'Map of fire stations' shows and asks freeform values for key 'addr:place' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "operator", + "description": "Layer 'Map of fire stations' shows and asks freeform values for key 'operator' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "operator", + "description": "Layer 'Map of fire stations' shows operator=Bureau of Fire Protection&operator:type=government with a fixed text, namely 'Bureau of Fire Protection' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "Bureau of Fire Protection" + }, + { + "key": "operator:type", + "description": "Layer 'Map of fire stations' shows operator=Bureau of Fire Protection&operator:type=government with a fixed text, namely 'Bureau of Fire Protection' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "government" + }, + { + "key": "operator:type", + "description": "Layer 'Map of fire stations' shows and asks freeform values for key 'operator:type' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "operator:type", + "description": "Layer 'Map of fire stations' shows operator:type=government with a fixed text, namely 'The station is operated by the government.' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "government" + }, + { + "key": "operator:type", + "description": "Layer 'Map of fire stations' shows operator:type=community with a fixed text, namely 'The station is operated by a community-based, or informal organization.' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "community" + }, + { + "key": "operator:type", + "description": "Layer 'Map of fire stations' shows operator:type=ngo with a fixed text, namely 'The station is operated by a formal group of volunteers.' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "ngo" + }, + { + "key": "operator:type", + "description": "Layer 'Map of fire stations' shows operator:type=private with a fixed text, namely 'The station is privately operated.' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "private" + }, + { + "key": "image", + "description": "The layer 'Map of fire stations allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "mapillary", + "description": "The layer 'Map of fire stations allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "wikidata", + "description": "The layer 'Map of fire stations allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "wikipedia", + "description": "The layer 'Map of fire stations allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "emergency", + "description": "The MapComplete theme Personal theme has a layer Map of ambulance stations showing features with this tag", + "value": "ambulance_station" + }, + { + "key": "name", + "description": "Layer 'Map of ambulance stations' shows and asks freeform values for key 'name' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "addr:street", + "description": "Layer 'Map of ambulance stations' shows and asks freeform values for key 'addr:street' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "addr:place", + "description": "Layer 'Map of ambulance stations' shows and asks freeform values for key 'addr:place' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "operator", + "description": "Layer 'Map of ambulance stations' shows and asks freeform values for key 'operator' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "operator:type", + "description": "Layer 'Map of ambulance stations' shows and asks freeform values for key 'operator:type' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "operator:type", + "description": "Layer 'Map of ambulance stations' shows operator:type=government with a fixed text, namely 'The station is operated by the government.' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "government" + }, + { + "key": "operator:type", + "description": "Layer 'Map of ambulance stations' shows operator:type=community with a fixed text, namely 'The station is operated by a community-based, or informal organization.' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "community" + }, + { + "key": "operator:type", + "description": "Layer 'Map of ambulance stations' shows operator:type=ngo with a fixed text, namely 'The station is operated by a formal group of volunteers.' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "ngo" + }, + { + "key": "operator:type", + "description": "Layer 'Map of ambulance stations' shows operator:type=private with a fixed text, namely 'The station is privately operated.' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "private" + }, + { + "key": "image", + "description": "The layer 'Map of ambulance stations allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "mapillary", + "description": "The layer 'Map of ambulance stations allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "wikidata", + "description": "The layer 'Map of ambulance stations allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "wikipedia", + "description": "The layer 'Map of ambulance stations allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "tourism", + "description": "The MapComplete theme Personal theme has a layer Maps showing features with this tag", + "value": "map" + }, + { + "key": "information", + "description": "The MapComplete theme Personal theme has a layer Maps showing features with this tag", + "value": "map" + }, + { + "key": "image", + "description": "The layer 'Maps allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "mapillary", + "description": "The layer 'Maps allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "wikidata", + "description": "The layer 'Maps allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "wikipedia", + "description": "The layer 'Maps allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "map_source", + "description": "Layer 'Maps' shows and asks freeform values for key 'map_source' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "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 'Personal theme')", + "value": "OpenStreetMap" + }, + { + "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 'Personal theme') Picking this answer will delete the key not:map_source.", + "value": "" + }, + { + "key": "map_source:attribution", + "description": "Layer 'Maps' shows map_source:attribution=yes with a fixed text, namely 'OpenStreetMap is clearly attributed, including the ODBL-license' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "yes" + }, + { + "key": "map_source:attribution", + "description": "Layer 'Maps' shows map_source:attribution=incomplete with a fixed text, namely 'OpenStreetMap is clearly attributed, but the license is not mentioned' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "incomplete" + }, + { + "key": "map_source:attribution", + "description": "Layer 'Maps' shows map_source:attribution=sticker with a fixed text, namely 'OpenStreetMap wasn't mentioned, but someone put an OpenStreetMap-sticker on it' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "sticker" + }, + { + "key": "map_source:attribution", + "description": "Layer 'Maps' shows map_source:attribution=none with a fixed text, namely 'There is no attribution at all' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "none" + }, + { + "key": "map_source:attribution", + "description": "Layer 'Maps' shows map_source:attribution=no with a fixed text, namely 'There is no attribution at all' (in the MapComplete.osm.be theme 'Personal theme')", + "value": "no" + }, + { + "key": "leisure", + "description": "The MapComplete theme Personal theme has a layer Vogelkijkhutten showing features with this tag", + "value": "bird_hide" + }, + { + "key": "image", + "description": "The layer 'Vogelkijkhutten allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "mapillary", + "description": "The layer 'Vogelkijkhutten allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "wikidata", + "description": "The layer 'Vogelkijkhutten allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "wikipedia", + "description": "The layer 'Vogelkijkhutten allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "shelter", + "description": "Layer '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 'Personal theme')", + "value": "no" + }, + { + "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 'Personal theme') Picking this answer will delete the key building.", + "value": "" + }, + { + "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 'Personal theme') Picking this answer will delete the key amenity.", + "value": "" + }, + { + "key": "amenity", + "description": "Layer 'Vogelkijkhutten' shows amenity=shelter&building=yes&shelter=yes with a fixed text, namely 'Vogelkijkhut' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "shelter" + }, + { + "key": "building", + "description": "Layer 'Vogelkijkhutten' shows amenity=shelter&building=yes&shelter=yes with a fixed text, namely 'Vogelkijkhut' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "yes" + }, + { + "key": "shelter", + "description": "Layer 'Vogelkijkhutten' shows amenity=shelter&building=yes&shelter=yes with a fixed text, namely 'Vogelkijkhut' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "yes" + }, + { + "key": "building", + "description": "Layer 'Vogelkijkhutten' shows building=tower&bird_hide=tower with a fixed text, namely 'Vogelkijktoren' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "tower" + }, + { + "key": "bird_hide", + "description": "Layer 'Vogelkijkhutten' shows building=tower&bird_hide=tower with a fixed text, namely 'Vogelkijktoren' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "tower" + }, + { + "key": "amenity", + "description": "Layer 'Vogelkijkhutten' shows amenity=shelter|building=yes|shelter=yes with a fixed text, namely 'Vogelkijkhut' (in the MapComplete.osm.be theme 'Personal theme')", + "value": "shelter" + }, + { + "key": "building", + "description": "Layer 'Vogelkijkhutten' shows amenity=shelter|building=yes|shelter=yes with a fixed text, namely 'Vogelkijkhut' (in the MapComplete.osm.be theme 'Personal theme')", + "value": "yes" + }, + { + "key": "shelter", + "description": "Layer 'Vogelkijkhutten' shows amenity=shelter|building=yes|shelter=yes with a fixed text, namely 'Vogelkijkhut' (in the MapComplete.osm.be theme 'Personal theme')", + "value": "yes" + }, + { + "key": "wheelchair", + "description": "Layer 'Vogelkijkhutten' shows wheelchair=designated with a fixed text, namely 'Er zijn speciale voorzieningen voor rolstoelen' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "designated" + }, + { + "key": "wheelchair", + "description": "Layer 'Vogelkijkhutten' shows wheelchair=yes with a fixed text, namely 'Een rolstoel raakt er vlot' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "yes" + }, + { + "key": "wheelchair", + "description": "Layer 'Vogelkijkhutten' shows wheelchair=limited with a fixed text, namely 'Je kan er raken met een rolstoel, maar het is niet makkelijk' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "limited" + }, + { + "key": "wheelchair", + "description": "Layer 'Vogelkijkhutten' shows wheelchair=no with a fixed text, namely 'Niet rolstoeltoegankelijk' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "no" + }, + { + "key": "operator", + "description": "Layer 'Vogelkijkhutten' shows and asks freeform values for key 'operator' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "operator", + "description": "Layer 'Vogelkijkhutten' shows operator=Natuurpunt with a fixed text, namely 'Beheer door Natuurpunt' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "Natuurpunt" + }, + { + "key": "operator", + "description": "Layer 'Vogelkijkhutten' shows operator=Agentschap Natuur en Bos with a fixed text, namely 'Beheer door het Agentschap Natuur en Bos ' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "Agentschap Natuur en Bos" + }, + { + "key": "leisure", + "description": "The MapComplete theme Personal theme has a layer Natuurgebied showing features with this tag", + "value": "nature_reserve" + }, + { + "key": "boundary", + "description": "The MapComplete theme Personal theme has a layer Natuurgebied showing features with this tag", + "value": "protected_area" + }, + { + "key": "image", + "description": "The layer 'Natuurgebied allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "mapillary", + "description": "The layer 'Natuurgebied allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "wikidata", + "description": "The layer 'Natuurgebied allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "wikipedia", + "description": "The layer 'Natuurgebied allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "access:description", + "description": "Layer 'Natuurgebied' shows and asks freeform values for key 'access:description' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "access", + "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 'Personal theme')", + "value": "yes" + }, + { + "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 'Personal theme') Picking this answer will delete the key fee.", + "value": "" + }, + { + "key": "access", + "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 'Personal theme')", + "value": "no" + }, + { + "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 'Personal theme') Picking this answer will delete the key fee.", + "value": "" + }, + { + "key": "access", + "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 'Personal theme')", + "value": "private" + }, + { + "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 'Personal theme') Picking this answer will delete the key fee.", + "value": "" + }, + { + "key": "access", + "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 'Personal theme')", + "value": "permissive" + }, + { + "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 'Personal theme') Picking this answer will delete the key fee.", + "value": "" + }, + { + "key": "access", + "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 'Personal theme')", + "value": "guided" + }, + { + "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 'Personal theme') Picking this answer will delete the key fee.", + "value": "" + }, + { + "key": "access", + "description": "Layer 'Natuurgebied' shows access=yes&fee=yes with a fixed text, namely 'Toegankelijk mits betaling' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "yes" + }, + { + "key": "fee", + "description": "Layer 'Natuurgebied' shows access=yes&fee=yes with a fixed text, namely 'Toegankelijk mits betaling' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "yes" + }, + { + "key": "operator", + "description": "Layer 'Natuurgebied' shows and asks freeform values for key 'operator' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "operator", + "description": "Layer 'Natuurgebied' shows operator=Natuurpunt with a fixed text, namely 'Dit gebied wordt beheerd door Natuurpunt' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "Natuurpunt" + }, + { + "key": "operator", + "description": "Layer 'Natuurgebied' shows operator~^(n|N)atuurpunt.*$ with a fixed text, namely 'Dit gebied wordt beheerd door {operator}' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "operator", + "description": "Layer 'Natuurgebied' shows operator=Agentschap Natuur en Bos with a fixed text, namely 'Dit gebied wordt beheerd door het Agentschap Natuur en Bos' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "Agentschap Natuur en Bos" + }, + { + "key": "name:nl", + "description": "Layer 'Natuurgebied' shows and asks freeform values for key 'name:nl' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "name", + "description": "Layer 'Natuurgebied' shows and asks freeform values for key 'name' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "noname", + "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 'Personal theme')", + "value": "yes" + }, + { + "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 'Personal theme') Picking this answer will delete the key name.", + "value": "" + }, + { + "key": "dog", + "description": "Layer 'Natuurgebied' shows dog=leashed with a fixed text, namely 'Dogs have to be leashed' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "leashed" + }, + { + "key": "dog", + "description": "Layer 'Natuurgebied' shows dog=no with a fixed text, namely 'No dogs allowed' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "no" + }, + { + "key": "dog", + "description": "Layer 'Natuurgebied' shows dog=yes with a fixed text, namely 'Dogs are allowed to roam freely' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "yes" + }, + { + "key": "website", + "description": "Layer 'Natuurgebied' shows and asks freeform values for key 'website' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "curator", + "description": "Layer 'Natuurgebied' shows and asks freeform values for key 'curator' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "email", + "description": "Layer 'Natuurgebied' shows and asks freeform values for key 'email' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "phone", + "description": "Layer 'Natuurgebied' shows and asks freeform values for key 'phone' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "description", + "description": "Layer 'Natuurgebied' shows values with key 'description' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "description:0", + "description": "Layer 'Natuurgebied' shows and asks freeform values for key 'description:0' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "wikidata", + "description": "Layer 'Natuurgebied' shows and asks freeform values for key 'wikidata' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "wikidata", + "description": "Layer 'Natuurgebied' shows with a fixed text, namely 'No Wikipedia page has been linked yet' (in the MapComplete.osm.be theme 'Personal theme') Picking this answer will delete the key wikidata.", + "value": "" + }, + { + "key": "information", + "description": "The MapComplete theme Personal theme has a layer Information boards showing features with this tag", + "value": "board" + }, + { + "key": "image", + "description": "The layer 'Information boards allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "mapillary", + "description": "The layer 'Information boards allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "wikidata", + "description": "The layer 'Information boards allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "wikipedia", + "description": "The layer 'Information boards allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "amenity", + "description": "The MapComplete theme Personal theme has a layer Toilets showing features with this tag", + "value": "toilets" + }, + { + "key": "image", + "description": "The layer 'Toilets allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "mapillary", + "description": "The layer 'Toilets allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "wikidata", + "description": "The layer 'Toilets allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "wikipedia", + "description": "The layer 'Toilets allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "access", + "description": "Layer 'Toilets' shows and asks freeform values for key 'access' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "access", + "description": "Layer 'Toilets' shows access=yes with a fixed text, namely 'Public access' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "yes" + }, + { + "key": "access", + "description": "Layer 'Toilets' shows access=customers with a fixed text, namely 'Only access to customers' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "customers" + }, + { + "key": "access", + "description": "Layer 'Toilets' shows access=no with a fixed text, namely 'Not accessible' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "no" + }, + { + "key": "access", + "description": "Layer 'Toilets' shows access=key with a fixed text, namely 'Accessible, but one has to ask a key to enter' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "key" + }, + { + "key": "access", + "description": "Layer 'Toilets' shows access=public with a fixed text, namely 'Public access' (in the MapComplete.osm.be theme 'Personal theme')", + "value": "public" + }, + { + "key": "fee", + "description": "Layer 'Toilets' shows fee=yes with a fixed text, namely 'These are paid toilets' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "yes" + }, + { + "key": "fee", + "description": "Layer 'Toilets' shows fee=no with a fixed text, namely 'Free to use' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "no" + }, + { + "key": "charge", + "description": "Layer 'Toilets' shows and asks freeform values for key 'charge' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "payment:cash", + "description": "Layer 'Toilets' shows payment:cash=yes with a fixed text, namely 'Cash is accepted here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "yes" + }, + { + "key": "payment:cards", + "description": "Layer 'Toilets' shows payment:cards=yes with a fixed text, namely 'Payment cards are accepted here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "yes" + }, + { + "key": "opening_hours", + "description": "Layer 'Toilets' shows and asks freeform values for key 'opening_hours' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "opening_hours", + "description": "Layer 'Toilets' shows opening_hours=24/7 with a fixed text, namely 'Opened 24/7' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "24/7" + }, + { + "key": "wheelchair", + "description": "Layer 'Toilets' shows wheelchair=yes with a fixed text, namely 'There is a dedicated toilet for wheelchair users' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "yes" + }, + { + "key": "wheelchair", + "description": "Layer 'Toilets' shows wheelchair=no with a fixed text, namely 'No wheelchair access' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "no" + }, + { + "key": "toilets:position", + "description": "Layer 'Toilets' shows toilets:position=seated with a fixed text, namely 'There are only seated toilets' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "seated" + }, + { + "key": "toilets:position", + "description": "Layer 'Toilets' shows toilets:position=urinal with a fixed text, namely 'There are only urinals here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "urinal" + }, + { + "key": "toilets:position", + "description": "Layer 'Toilets' shows toilets:position=squat with a fixed text, namely 'There are only squat toilets here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "squat" + }, + { + "key": "toilets:position", + "description": "Layer 'Toilets' shows toilets:position=seated;urinal with a fixed text, namely 'Both seated toilets and urinals are available here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "seated;urinal" + }, + { + "key": "changing_table", + "description": "Layer 'Toilets' shows changing_table=yes with a fixed text, namely 'A changing table is available' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "yes" + }, + { + "key": "changing_table", + "description": "Layer 'Toilets' shows changing_table=no with a fixed text, namely 'No changing table is available' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "no" + }, + { + "key": "changing_table:location", + "description": "Layer 'Toilets' shows and asks freeform values for key 'changing_table:location' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "changing_table:location", + "description": "Layer 'Toilets' shows changing_table:location=female_toilet with a fixed text, namely 'The changing table is in the toilet for women. ' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "female_toilet" + }, + { + "key": "changing_table:location", + "description": "Layer 'Toilets' shows changing_table:location=male_toilet with a fixed text, namely 'The changing table is in the toilet for men. ' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "male_toilet" + }, + { + "key": "changing_table:location", + "description": "Layer 'Toilets' shows changing_table:location=wheelchair_toilet with a fixed text, namely 'The changing table is in the toilet for wheelchair users. ' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "wheelchair_toilet" + }, + { + "key": "changing_table:location", + "description": "Layer 'Toilets' shows changing_table:location=dedicated_room with a fixed text, namely 'The changing table is in a dedicated room. ' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "dedicated_room" + }, + { + "key": "toilets:handwashing", + "description": "Layer 'Toilets' shows toilets:handwashing=yes with a fixed text, namely 'This toilets have a sink to wash your hands' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "yes" + }, + { + "key": "toilets:handwashing", + "description": "Layer 'Toilets' shows toilets:handwashing=no with a fixed text, namely 'This toilets don't have a sink to wash your hands' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "no" + }, + { + "key": "toilets:paper_supplied", + "description": "Layer 'Toilets' shows toilets:paper_supplied=yes with a fixed text, namely 'This toilet is equipped with toilet paper' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "yes" + }, + { + "key": "toilets:paper_supplied", + "description": "Layer 'Toilets' shows toilets:paper_supplied=no with a fixed text, namely 'You have to bring your own toilet paper to this toilet' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "no" + }, + { + "key": "level", + "description": "Layer 'Toilets' shows and asks freeform values for key 'level' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "location", + "description": "Layer 'Toilets' shows location=underground with a fixed text, namely 'Located underground' (in the MapComplete.osm.be theme 'Personal theme')", + "value": "underground" + }, + { + "key": "level", + "description": "Layer 'Toilets' shows level=0 with a fixed text, namely 'Located on the ground floor' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "0" + }, + { + "key": "level", + "description": "Layer 'Toilets' shows with a fixed text, namely 'Located on the ground floor' (in the MapComplete.osm.be theme 'Personal theme') Picking this answer will delete the key level.", + "value": "" + }, + { + "key": "level", + "description": "Layer 'Toilets' shows level=1 with a fixed text, namely 'Located on the first floor' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "1" + }, + { + "key": "level", + "description": "Layer 'Toilets' shows level=-1 with a fixed text, namely 'Located on the first basement level' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "-1" + }, + { + "key": "description", + "description": "Layer 'Toilets' shows and asks freeform values for key 'description' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "id", + "description": "The MapComplete theme Personal theme has a layer OpenStreetMap notes showing features with this tag" + }, + { + "key": "tower:type", + "description": "The MapComplete theme Personal theme has a layer Observation towers showing features with this tag", + "value": "observation" + }, + { + "key": "image", + "description": "The layer 'Observation towers allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "mapillary", + "description": "The layer 'Observation towers allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "wikidata", + "description": "The layer 'Observation towers allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "wikipedia", + "description": "The layer 'Observation towers allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "name", + "description": "Layer 'Observation towers' shows and asks freeform values for key 'name' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "noname", + "description": "Layer 'Observation towers' shows noname=yes with a fixed text, namely 'This tower doesn't have a specific name' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "yes" + }, + { + "key": "height", + "description": "Layer 'Observation towers' shows and asks freeform values for key 'height' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "access", + "description": "Layer 'Observation towers' shows access=yes with a fixed text, namely 'This tower is publicly accessible' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "yes" + }, + { + "key": "access", + "description": "Layer 'Observation towers' shows access=guided with a fixed text, namely 'This tower can only be visited with a guide' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "guided" + }, + { + "key": "charge", + "description": "Layer 'Observation towers' shows and asks freeform values for key 'charge' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "fee", + "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 'Personal theme')", + "value": "no" + }, + { + "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 'Personal theme') Picking this answer will delete the key charge.", + "value": "" + }, + { + "key": "payment:cash", + "description": "Layer 'Observation towers' 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 'Personal theme')", + "value": "yes" + }, + { + "key": "payment:cards", + "description": "Layer 'Observation towers' 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 'Personal theme')", + "value": "yes" + }, + { + "key": "website", + "description": "Layer 'Observation towers' shows and asks freeform values for key 'website' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "contact:website", + "description": "Layer 'Observation towers' shows contact:website~^..*$ with a fixed text, namely '{contact:website}' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "step_count", + "description": "Layer 'Observation towers' shows and asks freeform values for key 'step_count' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "elevator", + "description": "Layer 'Observation towers' shows elevator=yes with a fixed text, namely 'This tower has an elevator which takes visitors to the top' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "yes" + }, + { + "key": "elevator", + "description": "Layer 'Observation towers' shows elevator=no with a fixed text, namely 'This tower does not have an elevator' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "no" + }, + { + "key": "operator", + "description": "Layer 'Observation towers' shows and asks freeform values for key 'operator' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "wheelchair", + "description": "Layer 'Observation towers' shows wheelchair=designated with a fixed text, namely 'This place is specially adapted for wheelchair users' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "designated" + }, + { + "key": "wheelchair", + "description": "Layer 'Observation towers' shows wheelchair=yes with a fixed text, namely 'This place is easily reachable with a wheelchair' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "yes" + }, + { + "key": "wheelchair", + "description": "Layer 'Observation towers' shows wheelchair=limited with a fixed text, namely 'It is possible to reach this place in a wheelchair, but it is not easy' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "limited" + }, + { + "key": "wheelchair", + "description": "Layer 'Observation towers' shows wheelchair=no with a fixed text, namely 'This place is not reachable with a wheelchair' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "no" + }, + { + "key": "wikidata", + "description": "Layer 'Observation towers' shows and asks freeform values for key 'wikidata' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "wikidata", + "description": "Layer 'Observation towers' shows with a fixed text, namely 'No Wikipedia page has been linked yet' (in the MapComplete.osm.be theme 'Personal theme') Picking this answer will delete the key wikidata.", + "value": "" + }, + { + "key": "amenity", + "description": "The MapComplete theme Personal theme has a layer Parking showing features with this tag", + "value": "parking" + }, + { + "key": "image", + "description": "The layer 'Parking allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "mapillary", + "description": "The layer 'Parking allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "wikidata", + "description": "The layer 'Parking allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "wikipedia", + "description": "The layer 'Parking allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "leisure", + "description": "The MapComplete theme Personal theme has a layer Playgrounds showing features with this tag", + "value": "playground" + }, + { + "key": "image", + "description": "The layer 'Playgrounds allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "mapillary", + "description": "The layer 'Playgrounds allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "wikidata", + "description": "The layer 'Playgrounds allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "wikipedia", + "description": "The layer 'Playgrounds allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "surface", + "description": "Layer 'Playgrounds' shows and asks freeform values for key 'surface' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "surface", + "description": "Layer 'Playgrounds' shows surface=grass with a fixed text, namely 'The surface is grass' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "grass" + }, + { + "key": "surface", + "description": "Layer 'Playgrounds' shows surface=sand with a fixed text, namely 'The surface is sand' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "sand" + }, + { + "key": "surface", + "description": "Layer 'Playgrounds' shows surface=woodchips with a fixed text, namely 'The surface consist of woodchips' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "woodchips" + }, + { + "key": "surface", + "description": "Layer 'Playgrounds' shows surface=paving_stones with a fixed text, namely 'The surface is paving stones' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "paving_stones" + }, + { + "key": "surface", + "description": "Layer 'Playgrounds' shows surface=asphalt with a fixed text, namely 'The surface is asphalt' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "asphalt" + }, + { + "key": "surface", + "description": "Layer 'Playgrounds' shows surface=concrete with a fixed text, namely 'The surface is concrete' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "concrete" + }, + { + "key": "surface", + "description": "Layer 'Playgrounds' shows surface=unpaved with a fixed text, namely 'The surface is unpaved' (in the MapComplete.osm.be theme 'Personal theme')", + "value": "unpaved" + }, + { + "key": "surface", + "description": "Layer 'Playgrounds' shows surface=paved with a fixed text, namely 'The surface is paved' (in the MapComplete.osm.be theme 'Personal theme')", + "value": "paved" + }, + { + "key": "lit", + "description": "Layer 'Playgrounds' shows lit=yes with a fixed text, namely 'This playground is lit at night' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "yes" + }, + { + "key": "lit", + "description": "Layer 'Playgrounds' shows lit=no with a fixed text, namely 'This playground is not lit at night' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "no" + }, + { + "key": "min_age", + "description": "Layer 'Playgrounds' shows and asks freeform values for key 'min_age' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "max_age", + "description": "Layer 'Playgrounds' shows and asks freeform values for key 'max_age' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "operator", + "description": "Layer 'Playgrounds' shows and asks freeform values for key 'operator' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "access", + "description": "Layer 'Playgrounds' shows access=yes with a fixed text, namely 'Accessible to the general public' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "yes" + }, + { + "key": "access", + "description": "Layer 'Playgrounds' shows access=customers with a fixed text, namely 'Only accessible for clients of the operating business' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "customers" + }, + { + "key": "access", + "description": "Layer 'Playgrounds' shows access=students with a fixed text, namely 'Only accessible to students of the school' (in the MapComplete.osm.be theme 'Personal theme')", + "value": "students" + }, + { + "key": "access", + "description": "Layer 'Playgrounds' shows access=private with a fixed text, namely 'Not accessible' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "private" + }, + { + "key": "email", + "description": "Layer 'Playgrounds' shows and asks freeform values for key 'email' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "phone", + "description": "Layer 'Playgrounds' shows and asks freeform values for key 'phone' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "wheelchair", + "description": "Layer 'Playgrounds' shows wheelchair=yes with a fixed text, namely 'Completely accessible for wheelchair users' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "yes" + }, + { + "key": "wheelchair", + "description": "Layer 'Playgrounds' shows wheelchair=limited with a fixed text, namely 'Limited accessibility for wheelchair users' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "limited" + }, + { + "key": "wheelchair", + "description": "Layer 'Playgrounds' shows wheelchair=no with a fixed text, namely 'Not accessible for wheelchair users' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "no" + }, + { + "key": "opening_hours", + "description": "Layer 'Playgrounds' shows and asks freeform values for key 'opening_hours' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "opening_hours", + "description": "Layer 'Playgrounds' shows opening_hours=sunrise-sunset with a fixed text, namely 'Accessible from sunrise till sunset' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "sunrise-sunset" + }, + { + "key": "opening_hours", + "description": "Layer 'Playgrounds' shows opening_hours=24/7 with a fixed text, namely 'Always accessible' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "24/7" + }, + { + "key": "shop", + "description": "The MapComplete theme Personal theme has a layer Shop showing features with this tag" + }, + { + "key": "image", + "description": "The layer 'Shop allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "mapillary", + "description": "The layer 'Shop allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "wikidata", + "description": "The layer 'Shop allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "wikipedia", + "description": "The layer 'Shop allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "name", + "description": "Layer 'Shop' shows and asks freeform values for key 'name' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows and asks freeform values for key 'shop' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=convenience with a fixed text, namely 'Convenience store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "convenience" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=supermarket with a fixed text, namely 'Supermarket' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "supermarket" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=clothes with a fixed text, namely 'Clothing store' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "clothes" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=hairdresser with a fixed text, namely 'Hairdresser' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "hairdresser" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=bakery with a fixed text, namely 'Bakery' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "bakery" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=car_repair with a fixed text, namely 'Car repair (garage)' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "car_repair" + }, + { + "key": "shop", + "description": "Layer 'Shop' shows shop=car with a fixed text, namely 'Car dealer' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "car" + }, + { + "key": "phone", + "description": "Layer 'Shop' shows and asks freeform values for key 'phone' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "website", + "description": "Layer 'Shop' shows and asks freeform values for key 'website' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "email", + "description": "Layer 'Shop' shows and asks freeform values for key 'email' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "opening_hours", + "description": "Layer 'Shop' shows and asks freeform values for key 'opening_hours' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "payment:cash", + "description": "Layer 'Shop' shows payment:cash=yes with a fixed text, namely 'Cash is accepted here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "yes" + }, + { + "key": "payment:cards", + "description": "Layer 'Shop' shows payment:cards=yes with a fixed text, namely 'Payment cards are accepted here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "yes" + }, + { + "key": "leisure", + "description": "The MapComplete theme Personal theme has a layer Sport pitches showing features with this tag", + "value": "pitch" + }, + { + "key": "image", + "description": "The layer 'Sport pitches allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "mapillary", + "description": "The layer 'Sport pitches allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "wikidata", + "description": "The layer 'Sport pitches allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "wikipedia", + "description": "The layer 'Sport pitches allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "sport", + "description": "Layer 'Sport pitches' shows and asks freeform values for key 'sport' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "sport", + "description": "Layer 'Sport pitches' shows sport=basketball with a fixed text, namely 'Basketball is played here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "basketball" + }, + { + "key": "sport", + "description": "Layer 'Sport pitches' shows sport=soccer with a fixed text, namely 'Soccer is played here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "soccer" + }, + { + "key": "sport", + "description": "Layer 'Sport pitches' shows sport=table_tennis with a fixed text, namely 'This is a pingpong table' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "table_tennis" + }, + { + "key": "sport", + "description": "Layer 'Sport pitches' shows sport=tennis with a fixed text, namely 'Tennis is played here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "tennis" + }, + { + "key": "sport", + "description": "Layer 'Sport pitches' shows sport=korfball with a fixed text, namely 'Korfball is played here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "korfball" + }, + { + "key": "sport", + "description": "Layer 'Sport pitches' shows sport=basket with a fixed text, namely 'Basketball is played here' (in the MapComplete.osm.be theme 'Personal theme')", + "value": "basket" + }, + { + "key": "surface", + "description": "Layer 'Sport pitches' shows and asks freeform values for key 'surface' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "surface", + "description": "Layer 'Sport pitches' shows surface=grass with a fixed text, namely 'The surface is grass' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "grass" + }, + { + "key": "surface", + "description": "Layer 'Sport pitches' shows surface=sand with a fixed text, namely 'The surface is sand' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "sand" + }, + { + "key": "surface", + "description": "Layer 'Sport pitches' shows surface=paving_stones with a fixed text, namely 'The surface is paving stones' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "paving_stones" + }, + { + "key": "surface", + "description": "Layer 'Sport pitches' shows surface=asphalt with a fixed text, namely 'The surface is asphalt' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "asphalt" + }, + { + "key": "surface", + "description": "Layer 'Sport pitches' shows surface=concrete with a fixed text, namely 'The surface is concrete' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "concrete" + }, + { + "key": "access", + "description": "Layer 'Sport pitches' shows access=public with a fixed text, namely 'Public access' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "public" + }, + { + "key": "access", + "description": "Layer 'Sport pitches' shows access=limited with a fixed text, namely 'Limited access (e.g. only with an appointment, during certain hours, ...)' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "limited" + }, + { + "key": "access", + "description": "Layer 'Sport pitches' shows access=members with a fixed text, namely 'Only accessible for members of the club' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "members" + }, + { + "key": "access", + "description": "Layer 'Sport pitches' shows access=private with a fixed text, namely 'Private - not accessible to the public' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "private" + }, + { + "key": "reservation", + "description": "Layer 'Sport pitches' shows reservation=required with a fixed text, namely 'Making an appointment is obligatory to use this sport pitch' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "required" + }, + { + "key": "reservation", + "description": "Layer 'Sport pitches' shows reservation=recommended with a fixed text, namely 'Making an appointment is recommended when using this sport pitch' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "recommended" + }, + { + "key": "reservation", + "description": "Layer 'Sport pitches' shows reservation=yes with a fixed text, namely 'Making an appointment is possible, but not necessary to use this sport pitch' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "yes" + }, + { + "key": "reservation", + "description": "Layer 'Sport pitches' shows reservation=no with a fixed text, namely 'Making an appointment is not possible' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "no" + }, + { + "key": "phone", + "description": "Layer 'Sport pitches' shows and asks freeform values for key 'phone' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "email", + "description": "Layer 'Sport pitches' shows and asks freeform values for key 'email' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "opening_hours", + "description": "Layer 'Sport pitches' shows and asks freeform values for key 'opening_hours' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "opening_hours", + "description": "Layer 'Sport pitches' shows with a fixed text, namely '24/7 toegankelijk' (in the MapComplete.osm.be theme 'Personal theme') Picking this answer will delete the key opening_hours.", + "value": "" + }, + { + "key": "opening_hours", + "description": "Layer 'Sport pitches' shows opening_hours=24/7 with a fixed text, namely 'Always accessible' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "24/7" + }, + { + "key": "highway", + "description": "The MapComplete theme Personal theme has a layer Street Lamps showing features with this tag", + "value": "street_lamp" + }, + { + "key": "ref", + "description": "Layer 'Street Lamps' shows and asks freeform values for key 'ref' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "support", + "description": "Layer 'Street Lamps' shows support=catenary with a fixed text, namely 'This lamp is suspended using cables' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "catenary" + }, + { + "key": "support", + "description": "Layer 'Street Lamps' shows support=ceiling with a fixed text, namely 'This lamp is mounted on a ceiling' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "ceiling" + }, + { + "key": "support", + "description": "Layer 'Street Lamps' shows support=ground with a fixed text, namely 'This lamp is mounted in the ground' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "ground" + }, + { + "key": "support", + "description": "Layer 'Street Lamps' shows support=pedestal with a fixed text, namely 'This lamp is mounted on a short pole (mostly < 1.5m)' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "pedestal" + }, + { + "key": "support", + "description": "Layer 'Street Lamps' shows support=pole with a fixed text, namely 'This lamp is mounted on a pole' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "pole" + }, + { + "key": "support", + "description": "Layer 'Street Lamps' shows support=wall with a fixed text, namely 'This lamp is mounted directly to the wall' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "wall" + }, + { + "key": "support", + "description": "Layer 'Street Lamps' shows support=wall_mount with a fixed text, namely 'This lamp is mounted to the wall using a metal bar' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "wall_mount" + }, + { + "key": "lamp_mount", + "description": "Layer 'Street Lamps' shows lamp_mount=straight_mast with a fixed text, namely 'This lamp sits atop of a straight mast' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "straight_mast" + }, + { + "key": "lamp_mount", + "description": "Layer 'Street Lamps' shows lamp_mount=bent_mast with a fixed text, namely 'This lamp sits at the end of a bent mast' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "bent_mast" + }, + { + "key": "light:method", + "description": "Layer 'Street Lamps' shows light:method=electric with a fixed text, namely 'This lamp is lit electrically' (in the MapComplete.osm.be theme 'Personal theme')", + "value": "electric" + }, + { + "key": "light:method", + "description": "Layer 'Street Lamps' shows light:method=LED with a fixed text, namely 'This lamp uses LEDs' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "LED" + }, + { + "key": "light:method", + "description": "Layer 'Street Lamps' shows light:method=incandescent with a fixed text, namely 'This lamp uses incandescent lighting' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "incandescent" + }, + { + "key": "light:method", + "description": "Layer 'Street Lamps' shows light:method=halogen with a fixed text, namely 'This lamp uses halogen lighting' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "halogen" + }, + { + "key": "light:method", + "description": "Layer 'Street Lamps' shows light:method=discharge with a fixed text, namely 'This lamp uses discharge lamps (unknown type)' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "discharge" + }, + { + "key": "light:method", + "description": "Layer 'Street Lamps' shows light:method=mercury with a fixed text, namely 'This lamp uses a mercury-vapour lamp (lightly blueish)' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "mercury" + }, + { + "key": "light:method", + "description": "Layer 'Street Lamps' shows light:method=metal-halide with a fixed text, namely 'This lamp uses metal-halide lamps (bright white)' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "metal-halide" + }, + { + "key": "light:method", + "description": "Layer 'Street Lamps' shows light:method=fluorescent with a fixed text, namely 'This lamp uses fluorescent lighting' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "fluorescent" + }, + { + "key": "light:method", + "description": "Layer 'Street Lamps' shows light:method=sodium with a fixed text, namely 'This lamp uses sodium lamps (unknown type)' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "sodium" + }, + { + "key": "light:method", + "description": "Layer 'Street Lamps' shows light:method=low_pressure_sodium with a fixed text, namely 'This lamp uses low pressure sodium lamps (monochrome orange)' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "low_pressure_sodium" + }, + { + "key": "light:method", + "description": "Layer 'Street Lamps' shows light:method=high_pressure_sodium with a fixed text, namely 'This lamp uses high pressure sodium lamps (orange with white)' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "high_pressure_sodium" + }, + { + "key": "light:method", + "description": "Layer 'Street Lamps' shows light:method=gas with a fixed text, namely 'This lamp is lit using gas' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "gas" + }, + { + "key": "light:colour", + "description": "Layer 'Street Lamps' shows and asks freeform values for key 'light:colour' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "light:colour", + "description": "Layer 'Street Lamps' shows light:colour=white with a fixed text, namely 'This lamp emits white light' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "white" + }, + { + "key": "light:colour", + "description": "Layer 'Street Lamps' shows light:colour=green with a fixed text, namely 'This lamp emits green light' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "green" + }, + { + "key": "light:colour", + "description": "Layer 'Street Lamps' shows light:colour=orange with a fixed text, namely 'This lamp emits orange light' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "orange" + }, + { + "key": "light:count", + "description": "Layer 'Street Lamps' shows and asks freeform values for key 'light:count' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "light:count", + "description": "Layer 'Street Lamps' shows light:count=1 with a fixed text, namely 'This lamp has 1 fixture' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "1" + }, + { + "key": "light:count", + "description": "Layer 'Street Lamps' shows light:count=2 with a fixed text, namely 'This lamp has 2 fixtures' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "2" + }, + { + "key": "light:lit", + "description": "Layer 'Street Lamps' shows light:lit=dusk-dawn with a fixed text, namely 'This lamp is lit at night' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "dusk-dawn" + }, + { + "key": "light:lit", + "description": "Layer 'Street Lamps' shows light:lit=24/7 with a fixed text, namely 'This lamp is lit 24/7' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "24/7" + }, + { + "key": "light:lit", + "description": "Layer 'Street Lamps' shows light:lit=motion with a fixed text, namely 'This lamp is lit based on motion' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "motion" + }, + { + "key": "light:lit", + "description": "Layer 'Street Lamps' shows light:lit=demand with a fixed text, namely 'This lamp is lit based on demand (e.g. with a pushbutton)' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "demand" + }, + { + "key": "light:direction", + "description": "Layer 'Street Lamps' shows and asks freeform values for key 'light:direction' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "camera:direction", + "description": "The MapComplete theme Personal theme has a layer Direction visualization showing features with this tag" + }, + { + "key": "direction", + "description": "The MapComplete theme Personal theme has a layer Direction visualization showing features with this tag" + }, + { + "key": "man_made", + "description": "The MapComplete theme Personal theme has a layer Surveillance camera's showing features with this tag", + "value": "surveillance" + }, + { + "key": "surveillance:type", + "description": "The MapComplete theme Personal theme has a layer Surveillance camera's showing features with this tag", + "value": "camera" + }, + { + "key": "surveillance:type", + "description": "The MapComplete theme Personal theme has a layer Surveillance camera's showing features with this tag", + "value": "ALPR" + }, + { + "key": "surveillance:type", + "description": "The MapComplete theme Personal theme has a layer Surveillance camera's showing features with this tag", + "value": "ANPR" + }, + { + "key": "image", + "description": "The layer 'Surveillance camera's allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "mapillary", + "description": "The layer 'Surveillance camera's allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "wikidata", + "description": "The layer 'Surveillance camera's allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "wikipedia", + "description": "The layer 'Surveillance camera's allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "camera:type", + "description": "Layer 'Surveillance camera's' shows camera:type=fixed with a fixed text, namely 'A fixed (non-moving) camera' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "fixed" + }, + { + "key": "camera:type", + "description": "Layer 'Surveillance camera's' shows camera:type=dome with a fixed text, namely 'A dome camera (which can turn)' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "dome" + }, + { + "key": "camera:type", + "description": "Layer 'Surveillance camera's' shows camera:type=panning with a fixed text, namely 'A panning camera' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "panning" + }, + { + "key": "camera:direction", + "description": "Layer 'Surveillance camera's' shows and asks freeform values for key 'camera:direction' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "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 'Personal theme') Picking this answer will delete the key camera:direction.", + "value": "" + }, + { + "key": "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 'Personal theme')" + }, + { + "key": "operator", + "description": "Layer 'Surveillance camera's' shows and asks freeform values for key 'operator' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "surveillance", + "description": "Layer 'Surveillance camera's' shows surveillance=public with a fixed text, namely 'A public area is surveilled, such as a street, a bridge, a square, a park, a train station, a public corridor or tunnel,...' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "public" + }, + { + "key": "surveillance", + "description": "Layer 'Surveillance camera's' shows surveillance=outdoor with a fixed text, namely 'An outdoor, yet private area is surveilled (e.g. a parking lot, a fuel station, courtyard, entrance, private driveway, ...)' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "outdoor" + }, + { + "key": "surveillance", + "description": "Layer 'Surveillance camera's' shows surveillance=indoor with a fixed text, namely 'A private indoor area is surveilled, e.g. a shop, a private underground parking, ...' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "indoor" + }, + { + "key": "indoor", + "description": "Layer 'Surveillance camera's' shows indoor=yes with a fixed text, namely 'This camera is located indoors' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "yes" + }, + { + "key": "indoor", + "description": "Layer 'Surveillance camera's' shows indoor=no with a fixed text, namely 'This camera is located outdoors' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "no" + }, + { + "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 'Personal theme') Picking this answer will delete the key indoor.", + "value": "" + }, + { + "key": "level", + "description": "Layer 'Surveillance camera's' shows and asks freeform values for key 'level' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "surveillance:zone", + "description": "Layer 'Surveillance camera's' shows and asks freeform values for key 'surveillance:zone' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "surveillance:zone", + "description": "Layer 'Surveillance camera's' shows surveillance:zone=parking with a fixed text, namely 'Surveills a parking' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "parking" + }, + { + "key": "surveillance:zone", + "description": "Layer 'Surveillance camera's' shows surveillance:zone=traffic with a fixed text, namely 'Surveills the traffic' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "traffic" + }, + { + "key": "surveillance:zone", + "description": "Layer 'Surveillance camera's' shows surveillance:zone=entrance with a fixed text, namely 'Surveills an entrance' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "entrance" + }, + { + "key": "surveillance:zone", + "description": "Layer 'Surveillance camera's' shows surveillance:zone=corridor with a fixed text, namely 'Surveills a corridor' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "corridor" + }, + { + "key": "surveillance:zone", + "description": "Layer 'Surveillance camera's' shows surveillance:zone=public_transport_platform with a fixed text, namely 'Surveills a public tranport platform' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "public_transport_platform" + }, + { + "key": "surveillance:zone", + "description": "Layer 'Surveillance camera's' shows surveillance:zone=shop with a fixed text, namely 'Surveills a shop' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "shop" + }, + { + "key": "camera:mount", + "description": "Layer 'Surveillance camera's' shows and asks freeform values for key 'camera:mount' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "camera:mount", + "description": "Layer 'Surveillance camera's' shows camera:mount=wall with a fixed text, namely 'This camera is placed against a wall' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "wall" + }, + { + "key": "camera:mount", + "description": "Layer 'Surveillance camera's' shows camera:mount=pole with a fixed text, namely 'This camera is placed one a pole' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "pole" + }, + { + "key": "camera:mount", + "description": "Layer 'Surveillance camera's' shows camera:mount=ceiling with a fixed text, namely 'This camera is placed on the ceiling' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "ceiling" + }, + { + "key": "natural", + "description": "The MapComplete theme Personal theme has a layer Tree showing features with this tag", + "value": "tree" + }, + { + "key": "image", + "description": "The layer 'Tree allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "mapillary", + "description": "The layer 'Tree allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "wikidata", + "description": "The layer 'Tree allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "wikipedia", + "description": "The layer 'Tree allows to upload images and adds them under the 'image'-tag (and image:0, image:1, ... for multiple images). Furhtermore, this layer shows images based on the keys image, wikidata, wikipedia, wikimedia_commons and mapillary" + }, + { + "key": "height", + "description": "Layer 'Tree' shows height~^[0-9.]+$ with a fixed text, namely 'Height: {height} m' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "leaf_type", + "description": "Layer 'Tree' shows leaf_type=broadleaved with a fixed text, namely '\"\"/ Broadleaved' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "broadleaved" + }, + { + "key": "leaf_type", + "description": "Layer 'Tree' shows leaf_type=needleleaved with a fixed text, namely '\"\"/ Needleleaved' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "needleleaved" + }, + { + "key": "leaf_type", + "description": "Layer 'Tree' shows leaf_type=leafless with a fixed text, namely '\"\"/ Permanently leafless' (in the MapComplete.osm.be theme 'Personal theme')", + "value": "leafless" + }, + { + "key": "denotation", + "description": "Layer 'Tree' shows denotation=landmark with a fixed text, namely 'The tree is remarkable due to its size or prominent location. It is useful for navigation.' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "landmark" + }, + { + "key": "denotation", + "description": "Layer 'Tree' shows denotation=natural_monument with a fixed text, namely 'The tree is a natural monument, e.g. because it is especially old, or of a valuable species.' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "natural_monument" + }, + { + "key": "denotation", + "description": "Layer 'Tree' shows denotation=agricultural with a fixed text, namely 'The tree is used for agricultural purposes, e.g. in an orchard.' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "agricultural" + }, + { + "key": "denotation", + "description": "Layer 'Tree' shows denotation=park with a fixed text, namely 'The tree is in a park or similar (cemetery, school grounds, …).' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "park" + }, + { + "key": "denotation", + "description": "Layer 'Tree' shows denotation=garden with a fixed text, namely 'The tree is a residential garden.' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "garden" + }, + { + "key": "denotation", + "description": "Layer 'Tree' shows denotation=avenue with a fixed text, namely 'This is a tree along an avenue.' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "avenue" + }, + { + "key": "denotation", + "description": "Layer 'Tree' shows denotation=urban with a fixed text, namely 'The tree is an urban area.' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "urban" + }, + { + "key": "denotation", + "description": "Layer 'Tree' shows denotation=none with a fixed text, namely 'The tree is outside of an urban area.' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "none" + }, + { + "key": "leaf_cycle", + "description": "Layer 'Tree' shows leaf_cycle=deciduous with a fixed text, namely 'Deciduous: the tree loses its leaves for some time of the year.' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "deciduous" + }, + { + "key": "leaf_cycle", + "description": "Layer 'Tree' shows leaf_cycle=evergreen with a fixed text, namely 'Evergreen.' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "evergreen" + }, + { + "key": "name", + "description": "Layer 'Tree' shows and asks freeform values for key 'name' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "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 'Personal theme') Picking this answer will delete the key name.", + "value": "" + }, + { + "key": "noname", + "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 'Personal theme')", + "value": "yes" + }, + { + "key": "heritage", + "description": "Layer 'Tree' shows heritage=4&heritage:operator=OnroerendErfgoed with a fixed text, namely '\"\"/ Registered as heritage by Onroerend Erfgoed Flanders' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "4" + }, + { + "key": "heritage:operator", + "description": "Layer 'Tree' shows heritage=4&heritage:operator=OnroerendErfgoed with a fixed text, namely '\"\"/ Registered as heritage by Onroerend Erfgoed Flanders' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "OnroerendErfgoed" + }, + { + "key": "heritage", + "description": "Layer 'Tree' shows heritage=4&heritage:operator=aatl with a fixed text, namely 'Registered as heritage by Direction du Patrimoine culturel Brussels' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "4" + }, + { + "key": "heritage:operator", + "description": "Layer 'Tree' shows heritage=4&heritage:operator=aatl with a fixed text, namely 'Registered as heritage by Direction du Patrimoine culturel Brussels' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "aatl" + }, + { + "key": "heritage", + "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 'Personal theme')", + "value": "yes" + }, + { + "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 'Personal theme') Picking this answer will delete the key heritage:operator.", + "value": "" + }, + { + "key": "heritage", + "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 'Personal theme')", + "value": "no" + }, + { + "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 'Personal theme') Picking this answer will delete the key heritage:operator.", + "value": "" + }, + { + "key": "heritage", + "description": "Layer 'Tree' shows heritage~^..*$ with a fixed text, namely 'Registered as heritage by a different organisation' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "ref:OnroerendErfgoed", + "description": "Layer 'Tree' shows and asks freeform values for key 'ref:OnroerendErfgoed' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "wikidata", + "description": "Layer 'Tree' shows and asks freeform values for key 'wikidata' (in the MapComplete.osm.be theme 'Personal theme')" + }, + { + "key": "amenity", + "description": "The MapComplete theme Personal theme has a layer Waste Basket showing features with this tag", + "value": "waste_basket" + }, + { + "key": "waste", + "description": "Layer 'Waste Basket' shows with a fixed text, namely 'A waste basket for general waste' (in the MapComplete.osm.be theme 'Personal theme') Picking this answer will delete the key waste.", + "value": "" + }, + { + "key": "waste", + "description": "Layer 'Waste Basket' shows waste=trash with a fixed text, namely 'A waste basket for general waste' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "trash" + }, + { + "key": "waste", + "description": "Layer 'Waste Basket' shows waste=dog_excrement with a fixed text, namely 'A waste basket for dog excrements' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "dog_excrement" + }, + { + "key": "waste", + "description": "Layer 'Waste Basket' shows waste=cigarettes with a fixed text, namely 'A waste basket for cigarettes' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "cigarettes" + }, + { + "key": "waste", + "description": "Layer 'Waste Basket' shows waste=drugs with a fixed text, namely 'A waste basket for drugs' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "drugs" + }, + { + "key": "waste", + "description": "Layer 'Waste Basket' shows waste=sharps with a fixed text, namely 'A waste basket for needles and other sharp objects' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Personal theme')", + "value": "sharps" + }, + { + "key": "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 'Personal theme')", + "value": "dog_excrement_bag" + }, + { + "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 'Personal theme') Picking this answer will delete the key not:vending.", + "value": "" + }, + { + "key": "not: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 'Personal theme')", + "value": "dog_excrement_bag" + }, + { + "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 'Personal theme') Picking this answer will delete the key vending.", + "value": "" + }, + { + "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 'Personal theme') Picking this answer will delete the key vending.", + "value": "" + } + ] } \ No newline at end of file diff --git a/Docs/TagInfo/mapcomplete_playgrounds.json b/Docs/TagInfo/mapcomplete_playgrounds.json index 3c3a939c6f..7571ff96bd 100644 --- a/Docs/TagInfo/mapcomplete_playgrounds.json +++ b/Docs/TagInfo/mapcomplete_playgrounds.json @@ -97,11 +97,6 @@ "key": "operator", "description": "Layer 'Playgrounds' shows and asks freeform values for key 'operator' (in the MapComplete.osm.be theme 'Playgrounds')" }, - { - "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.", - "value": "" - }, { "key": "access", "description": "Layer 'Playgrounds' shows access=yes with a fixed text, namely 'Accessible to the general public' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Playgrounds')", @@ -114,7 +109,7 @@ }, { "key": "access", - "description": "Layer 'Playgrounds' shows access=students with a fixed text, namely 'Only accessible to students of the school' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Playgrounds')", + "description": "Layer 'Playgrounds' shows access=students with a fixed text, namely 'Only accessible to students of the school' (in the MapComplete.osm.be theme 'Playgrounds')", "value": "students" }, { @@ -160,9 +155,9 @@ "value": "24/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.", - "value": "" + "key": "id", + "description": "The MapComplete theme Playgrounds has a layer Your travelled track showing features with this tag", + "value": "location_track" } ] } \ No newline at end of file diff --git a/Docs/TagInfo/mapcomplete_postboxes.json b/Docs/TagInfo/mapcomplete_postboxes.json index ecc1874cec..5a377c28aa 100644 --- a/Docs/TagInfo/mapcomplete_postboxes.json +++ b/Docs/TagInfo/mapcomplete_postboxes.json @@ -6,7 +6,7 @@ "project_url": "https://mapcomplete.osm.be/postboxes", "doc_url": "https://github.com/pietervdvn/MapComplete/tree/master/assets/themes/", "icon_url": "https://mapcomplete.osm.be/assets/themes/postboxes/postbox.svg", - "contact_name": "Pieter Vander Vennet, ", + "contact_name": "Pieter Vander Vennet, nicolelaine", "contact_email": "pietervdvn@posteo.net" }, "tags": [ @@ -60,6 +60,11 @@ "key": "opening_hours", "description": "Layer 'Post offices' shows opening_hours=24/7 with a fixed text, namely '24/7 opened (including holidays)' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Postbox and Post Office Map')", "value": "24/7" + }, + { + "key": "id", + "description": "The MapComplete theme Postbox and Post Office Map has a layer Your travelled track showing features with this tag", + "value": "location_track" } ] } \ No newline at end of file diff --git a/Docs/TagInfo/mapcomplete_shops.json b/Docs/TagInfo/mapcomplete_shops.json index 81097b0471..a0f96ea50e 100644 --- a/Docs/TagInfo/mapcomplete_shops.json +++ b/Docs/TagInfo/mapcomplete_shops.json @@ -88,6 +88,21 @@ { "key": "opening_hours", "description": "Layer 'Shop' shows and asks freeform values for key 'opening_hours' (in the MapComplete.osm.be theme 'Open Shop Map')" + }, + { + "key": "payment:cash", + "description": "Layer 'Shop' shows payment:cash=yes with a fixed text, namely 'Cash is accepted here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Shop Map')", + "value": "yes" + }, + { + "key": "payment:cards", + "description": "Layer 'Shop' shows payment:cards=yes with a fixed text, namely 'Payment cards are accepted here' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Shop Map')", + "value": "yes" + }, + { + "key": "id", + "description": "The MapComplete theme Open Shop Map has a layer Your travelled track showing features with this tag", + "value": "location_track" } ] } \ No newline at end of file diff --git a/Docs/TagInfo/mapcomplete_sport_pitches.json b/Docs/TagInfo/mapcomplete_sport_pitches.json index 3ce2861c79..0f4e6209d9 100644 --- a/Docs/TagInfo/mapcomplete_sport_pitches.json +++ b/Docs/TagInfo/mapcomplete_sport_pitches.json @@ -148,13 +148,18 @@ }, { "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": "" }, { "key": "opening_hours", "description": "Layer 'Sport pitches' shows opening_hours=24/7 with a fixed text, namely 'Always accessible' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Sport pitches')", "value": "24/7" + }, + { + "key": "id", + "description": "The MapComplete theme Sport pitches has a layer Your travelled track showing features with this tag", + "value": "location_track" } ] } \ No newline at end of file diff --git a/Docs/TagInfo/mapcomplete_street_lighting.json b/Docs/TagInfo/mapcomplete_street_lighting.json index 9a3a67e87b..4051bc241e 100644 --- a/Docs/TagInfo/mapcomplete_street_lighting.json +++ b/Docs/TagInfo/mapcomplete_street_lighting.json @@ -220,6 +220,11 @@ "key": "lit", "description": "Layer 'All streets' shows lit=24/7 with a fixed text, namely 'This street is lit 24/7' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Street Lighting')", "value": "24/7" + }, + { + "key": "id", + "description": "The MapComplete theme Street Lighting has a layer Your travelled track showing features with this tag", + "value": "location_track" } ] } \ No newline at end of file diff --git a/Docs/TagInfo/mapcomplete_surveillance.json b/Docs/TagInfo/mapcomplete_surveillance.json index 41bb96e44e..18f7d02f41 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": "" }, { @@ -172,6 +172,11 @@ "key": "camera:mount", "description": "Layer 'Surveillance camera's' shows camera:mount=ceiling with a fixed text, namely 'This camera is placed on the ceiling' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Surveillance under Surveillance')", "value": "ceiling" + }, + { + "key": "id", + "description": "The MapComplete theme Surveillance under Surveillance has a layer Your travelled track showing features with this tag", + "value": "location_track" } ] } \ No newline at end of file diff --git a/Docs/TagInfo/mapcomplete_toilets.json b/Docs/TagInfo/mapcomplete_toilets.json index 4be49037fa..f58006c2c4 100644 --- a/Docs/TagInfo/mapcomplete_toilets.json +++ b/Docs/TagInfo/mapcomplete_toilets.json @@ -176,6 +176,44 @@ "key": "toilets:paper_supplied", "description": "Layer 'Toilets' shows toilets:paper_supplied=no with a fixed text, namely 'You have to bring your own toilet paper to this toilet' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Toilet Map')", "value": "no" + }, + { + "key": "level", + "description": "Layer 'Toilets' shows and asks freeform values for key 'level' (in the MapComplete.osm.be theme 'Open Toilet Map')" + }, + { + "key": "location", + "description": "Layer 'Toilets' shows location=underground with a fixed text, namely 'Located underground' (in the MapComplete.osm.be theme 'Open Toilet Map')", + "value": "underground" + }, + { + "key": "level", + "description": "Layer 'Toilets' shows level=0 with a fixed text, namely 'Located on the ground floor' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Toilet Map')", + "value": "0" + }, + { + "key": "level", + "description": "Layer 'Toilets' shows with a fixed text, namely 'Located on the ground floor' (in the MapComplete.osm.be theme 'Open Toilet Map') Picking this answer will delete the key level.", + "value": "" + }, + { + "key": "level", + "description": "Layer 'Toilets' shows level=1 with a fixed text, namely 'Located on the first floor' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Toilet Map')", + "value": "1" + }, + { + "key": "level", + "description": "Layer 'Toilets' shows level=-1 with a fixed text, namely 'Located on the first basement level' and allows to pick this as a default answer (in the MapComplete.osm.be theme 'Open Toilet Map')", + "value": "-1" + }, + { + "key": "description", + "description": "Layer 'Toilets' shows and asks freeform values for key 'description' (in the MapComplete.osm.be theme 'Open Toilet Map')" + }, + { + "key": "id", + "description": "The MapComplete theme Open Toilet Map has a layer Your travelled track showing features with this tag", + "value": "location_track" } ] } \ No newline at end of file diff --git a/Docs/TagInfo/mapcomplete_trees.json b/Docs/TagInfo/mapcomplete_trees.json index da71b63af5..ec6c91fc78 100644 --- a/Docs/TagInfo/mapcomplete_trees.json +++ b/Docs/TagInfo/mapcomplete_trees.json @@ -33,7 +33,7 @@ }, { "key": "height", - "description": "Layer 'Tree' shows height~^^[0-9.]+$$ with a fixed text, namely 'Height: {height} m' (in the MapComplete.osm.be theme 'Trees')" + "description": "Layer 'Tree' shows height~^[0-9.]+$ with a fixed text, namely 'Height: {height} m' (in the MapComplete.osm.be theme 'Trees')" }, { "key": "leaf_type", @@ -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": "" }, { @@ -165,6 +165,11 @@ { "key": "wikidata", "description": "Layer 'Tree' shows and asks freeform values for key 'wikidata' (in the MapComplete.osm.be theme 'Trees')" + }, + { + "key": "id", + "description": "The MapComplete theme Trees has a layer Your travelled track showing features with this tag", + "value": "location_track" } ] } \ No newline at end of file diff --git a/Docs/TagInfo/mapcomplete_waste_basket.json b/Docs/TagInfo/mapcomplete_waste_basket.json index 1bbaca8cac..8f94b4f128 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,28 +47,33 @@ }, { "key": "vending", - "description": "Layer 'Waste Basket' shows vending=dog_excrement_bag¬: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¬: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": "" + }, + { + "key": "id", + "description": "The MapComplete theme Waste Basket has a layer Your travelled track showing features with this tag", + "value": "location_track" } ] } \ No newline at end of file diff --git a/Docs/Tags_format.md b/Docs/Tags_format.md index 25db913cd6..83ff0c392c 100644 --- a/Docs/Tags_format.md +++ b/Docs/Tags_format.md @@ -80,7 +80,7 @@ which we do not want. To mitigate this, use: -``` +```json "mappings": [ { "if":"key:={some_other_key}" @@ -88,4 +88,7 @@ To mitigate this, use: "hideInAnswer": "some_other_key=" } ] -``` \ No newline at end of file +``` + +One can use `key!:=prefix-{other_key}-postfix` as well, to match if `key` is _not_ the same +as `prefix-{other_key}-postfix` (with `other_key` substituted by the value) diff --git a/Docs/Tools/Cumulative changesets per contributor for theme cycle_infra.png b/Docs/Tools/Cumulative changesets per contributor for theme cycle_infra.png deleted file mode 100644 index bd34be595a..0000000000 Binary files a/Docs/Tools/Cumulative changesets per contributor for theme cycle_infra.png and /dev/null differ diff --git a/Docs/Tools/GenPlot.py b/Docs/Tools/GenPlot.py index 62419829a1..60601b9801 100644 --- a/Docs/Tools/GenPlot.py +++ b/Docs/Tools/GenPlot.py @@ -39,6 +39,15 @@ def createBar(options): pyplot.legend() +def createLine(options): + data = options["plot"]["count"] + keys = genKeys(data, options["interpetKeysAs"]) + values = list(map(lambda kv: kv["value"], data)) + + pyplot.plot(keys, values, label=options["name"]) + pyplot.legend() + + pyplot_init() title = sys.argv[1] pyplot.title = title @@ -59,5 +68,8 @@ while (True): createPie(options) elif (options["plot"]["type"] == "bar"): createBar(options) + elif (options["plot"]["type"] == "line"): + createLine(options) else: print("Unkown type: " + options.type) +print("Plot generated") \ No newline at end of file diff --git a/Docs/Tools/GenerateSeries.ts b/Docs/Tools/GenerateSeries.ts index 73e97e9a43..b97d7399b3 100644 --- a/Docs/Tools/GenerateSeries.ts +++ b/Docs/Tools/GenerateSeries.ts @@ -4,6 +4,8 @@ import {Utils} from "../../Utils"; import {exec} from "child_process" import {GeoOperations} from "../../Logic/GeoOperations"; +ScriptUtils.fixUtils() + class StatsDownloader { private readonly startYear = 2020 @@ -75,7 +77,7 @@ class StatsDownloader { while (url) { ScriptUtils.erasableLog(`Downloading stats for ${year}-${month}, page ${page} ${url}`) - const result = await ScriptUtils.DownloadJSON(url, headers) + const result = await Utils.downloadJson(url, headers) page++; allFeatures.push(...result.features) if (result.features === undefined) { @@ -84,7 +86,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)) @@ -179,7 +185,7 @@ interface PlotSpec { name: string, interpetKeysAs: "date" | "number" | "string" | string plot: { - type: "pie" | "bar" + type: "pie" | "bar" | "line" count: { key: string, value: number }[] } | { type: "stacked-bar" @@ -196,6 +202,7 @@ interface PlotSpec { function createGraph( title: string, ...options: PlotSpec[]) { + console.log("Creating graph",title,"...") const process = exec("python3 GenPlot.py \"graphs/" + title + "\"", ((error, stdout, stderr) => { console.log("Python: ", stdout) if (error !== null) { @@ -207,7 +214,8 @@ function createGraph( })) for (const option of options) { - process.stdin._write(JSON.stringify(option) + "\n", "utf-8", undefined) + const d = JSON.stringify(option) + "\n" + process.stdin._write(d, "utf-8", undefined) } process.stdin._write("\n", "utf-8", undefined) @@ -229,6 +237,7 @@ class Histogram { } public bump(key: K, increase = 1) { + if (this.counts.has(key)) { this.counts.set(key, increase + this.counts.get(key)) } else { @@ -324,6 +333,20 @@ class Histogram { return hist } + public asRunningAverages(convertToRange: ((key: K) => K[])) { + const newCount = new Histogram() + const self = this + this.counts.forEach((_, key) => { + const keysToCheck = convertToRange(key) + let sum = 0 + for (const k of keysToCheck) { + sum += self.counts.get(k) ?? 0 + } + newCount.bump(key, sum / keysToCheck.length) + }) + return newCount + } + /** * Given a histogram: * 'a': 3 @@ -402,6 +425,15 @@ class Histogram { return spec; } + public asLine(options: { + name: string + compare?: (a: K, b: K) => number + }) { + const spec = this.asPie(options) + spec.plot.type = "line" + return spec + } + } class Group { @@ -496,7 +528,7 @@ function stackHists(hists: [V, Histogram][]): [V, Histogram][] { runningTotals.bumpHist(hist) result.push([vhist[0], clone]) }) - result.reverse() + result.reverse(/* Changes in place, safe copy*/) return result } @@ -506,7 +538,8 @@ function createGraphs(allFeatures: ChangeSetData[], appliedFilterDescription: st hist .createOthersCategory("other", 20) .addCountToName() - .asBar({name: "Changesets per theme (bar)" + appliedFilterDescription}).render() + .asBar({name: "Changesets per theme (bar)" + appliedFilterDescription}) + .render() new Histogram(allFeatures.map(f => f.properties.user)) @@ -516,7 +549,48 @@ function createGraphs(allFeatures: ChangeSetData[], appliedFilterDescription: st { compare: (a, b) => Number(a) - Number(b), name: "Contributors per changeset count" + appliedFilterDescription - }).render() + }) + .render() + + + const csPerDay = new Histogram(allFeatures.map(f => f.properties.date.substr(0, 10))) + + const perDayLine = csPerDay + .keyToDate() + .asLine({ + compare: (a, b) => a.getTime() - b.getTime(), + name: "Changesets per day" + appliedFilterDescription + }) + + const perDayAvg = csPerDay.asRunningAverages(key => { + const keys = [] + for (let i = 0; i < 7; i++) { + const otherDay = new Date(new Date(key).getTime() - i * 1000 * 60 * 60 * 24) + keys.push(otherDay.toISOString().substr(0, 10)) + } + return keys + }) + .keyToDate() + .asLine({ + compare: (a, b) => a.getTime() - b.getTime(), + name: "Rolling 7 day average" + appliedFilterDescription + }) + + const perDayAvgMonth = csPerDay.asRunningAverages(key => { + const keys = [] + for (let i = 0; i < 31; i++) { + const otherDay = new Date(new Date(key).getTime() - i * 1000 * 60 * 60 * 24) + keys.push(otherDay.toISOString().substr(0, 10)) + } + return keys + }) + .keyToDate() + .asLine({ + compare: (a, b) => a.getTime() - b.getTime(), + name: "Rolling 31 day average" + appliedFilterDescription + }) + + createGraph("Changesets per day (line)" + appliedFilterDescription, perDayLine, perDayAvg, perDayAvgMonth) new Histogram(allFeatures.map(f => f.properties.metadata.host)) .asPie({ @@ -543,6 +617,18 @@ function createGraphs(allFeatures: ChangeSetData[], appliedFilterDescription: st f => f.properties.editor.substr("MapComplete ".length, 6).replace(/[a-zA-Z-/]/g, ''), 1 ) + + Group.createStackedBarChartPerDay( + "Changesets per minor version number" + appliedFilterDescription, + allFeatures, + f => { + const base = f.properties.editor.substr("MapComplete ".length).replace(/[a-zA-Z-/]/g, '') + const [major, minor, patch] = base.split(".") + return major+"."+minor + + }, + 1 + ) Group.createStackedBarChartPerDay( "Deletion-changesets per theme" + appliedFilterDescription, @@ -588,38 +674,49 @@ function createGraphs(allFeatures: ChangeSetData[], appliedFilterDescription: st } - -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") - -new Histogram(emptyCS.map(f => f.properties.date)).keyToDate().asBar({ - name: "Empty changesets by date" -}).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) - } - }) +function createMiscGraphs(allFeatures: ChangeSetData[], emptyCS: ChangeSetData[]) { + new Histogram(emptyCS.map(f => f.properties.date)).keyToDate().asBar({ + name: "Empty changesets by date" + }).render() + const geojson = { + type: "FeatureCollection", + 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)) } -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)))); + const emptyCS = allFeatures.filter(f => f.properties.metadata.theme === "EMPTY CS") + allFeatures = allFeatures.filter(f => f.properties.metadata.theme !== "EMPTY CS") -createGraphs(allFeatures, "") -createGraphs(allFeatures.filter(f => f.properties.date.startsWith("2020")), " in 2020") -createGraphs(allFeatures.filter(f => f.properties.date.startsWith("2021")), " in 2021") + 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..0fdf56c09e --- /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 2492ca4507..463bf000db 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,706 +119039,7662 @@ }, { "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": [ - 6.5463604, - 53.0115865 + 11.7923628, + 48.0082558 ] } }, { "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "bollyboll", + "uid": "12120321", + "editor": "MapComplete 0.12.10", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-30T07:53:31Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114390777, + "host": "mapcomplete.osm.be", + "theme": "benches", + "answer": 4, + "imagery": "osm", + "language": "de", + "change_within_25m": 4 + }, "geometry": { "type": "Point", "coordinates": [ - 6.5481828, - 53.0129515 + 11.6657021, + 48.052183 ] } }, { "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "bollyboll", + "uid": "12120321", + "editor": "MapComplete 0.12.10", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-30T07:18:33Z", + "reviewed_features": [], + "create": 5, + "modify": 0, + "delete": 0, + "area": 0.0000682660181000155, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114389648, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "imagery": "HDM_HOT", + "language": "de", + "change_over_5000m": 5 + }, "geometry": { "type": "Point", "coordinates": [ - 6.5486318, - 53.0134666 + 11.7041117, + 48.03995555 ] } }, { "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "CoyKoi", + "uid": "3757297", + "editor": "MapComplete 0.12.10", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-30T04:04:42Z", + "reviewed_features": [], + "create": 0, + "modify": 29, + "delete": 0, + "area": 0.000128250750119915, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114384752, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 52, + "imagery": "osm", + "language": "en" + }, "geometry": { "type": "Point", "coordinates": [ - 4.3435891, - 50.8314757 + 172.64223175, + -43.528306 ] } }, { "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "pieterpaul", + "uid": "14539037", + "editor": "MapComplete 0.12.10", + "comment": "Adding data with #MapComplete for theme #observation_towers", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-29T23:35:59Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114380980, + "host": "mapcomplete.osm.be", + "theme": "observation_towers", + "answer": 6, + "imagery": "osm", + "language": "en" + }, "geometry": { "type": "Point", "coordinates": [ - 3.7124507, - 50.8657342 + 4.9165347, + 50.9266435 ] } }, { "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.12.10", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-29T22:14:40Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114379235, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "answer": 3, + "imagery": "CartoDB.Voyager", + "language": "en" + }, "geometry": { "type": "Point", "coordinates": [ - 4.1439541, - 51.1716062 + 5.7296998, + 49.8311215 ] } }, { "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Mappilo", + "uid": "4763621", + "editor": "MapComplete 0.12.10", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-29T21:13:04Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114377590, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "answer": 4, + "imagery": "osm", + "language": "it", + "add-image": 1 + }, "geometry": { "type": "Point", "coordinates": [ - 6.57651145, - 53.01670355 + 11.6599333, + 45.2261839 ] } }, { "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.12.10", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-29T20:09:18Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114375671, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "answer": 2, + "imagery": "CartoDB.Voyager", + "language": "en", + "change_within_5000m": 2 + }, "geometry": { "type": "Point", "coordinates": [ - 6.5695252, - 53.017952 + 3.4445933, + 51.0832363 ] } }, { "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.12.10", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-29T17:07:03Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114369149, + "host": "mapcomplete.osm.be", + "theme": "shops", + "imagery": "osm", + "language": "en", + "add-image": 2 + }, "geometry": { "type": "Point", "coordinates": [ - -0.0322978, - 49.0182547 + 4.3931678, + 50.8743338 ] } }, { "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "pieterpaul", + "uid": "14539037", + "editor": "MapComplete 0.12.10", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-29T16:49:28Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114368553, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "answer": 3, + "imagery": "osm", + "language": "en" + }, "geometry": { "type": "Point", "coordinates": [ - 11.7177802, - 44.351625049999996 + 4.7631365, + 50.9219399 ] } }, { "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.12.10", + "comment": "Adding data with #MapComplete for theme #artwork", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-29T16:47:32Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114368491, + "host": "mapcomplete.osm.be", + "theme": "artwork", + "imagery": "osm", + "language": "en", + "add-image": 1 + }, "geometry": { "type": "Point", "coordinates": [ - 4.2334872, - 50.7377122 + 4.3873857, + 50.8607062 ] } }, { "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "pieterpaul", + "uid": "14539037", + "editor": "MapComplete 0.12.10", + "comment": "Adding data with #MapComplete for theme #fritures", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-29T16:41:39Z", + "reviewed_features": [], + "create": 2, + "modify": 3, + "delete": 0, + "area": 0.000218297283750148, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114368266, + "host": "mapcomplete.osm.be", + "theme": "fritures", + "answer": 8, + "imagery": "osm", + "language": "en" + }, "geometry": { "type": "Point", "coordinates": [ - 3.2084272499999997, - 51.220085499999996 + 4.74033235, + 50.92323155 ] } }, { "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "pieterpaul", + "uid": "14539037", + "editor": "MapComplete 0.12.10", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 1, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-29T16:33:34Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114367986, + "host": "mapcomplete.osm.be", + "theme": "aed", + "answer": 4, + "imagery": "osm", + "language": "en" + }, "geometry": { "type": "Point", "coordinates": [ - 11.35385915, - 46.4992565 + 4.7573459, + 50.9217664 ] } }, { "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Jakuje", + "uid": "1641564", + "editor": "MapComplete 0.12.10", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-29T10:09:16Z", + "reviewed_features": [], + "create": 0, + "modify": 20, + "delete": 0, + "area": 0.000114239332499982, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114354518, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 39, + "imagery": "osm", + "language": "en" + }, "geometry": { "type": "Point", "coordinates": [ - 8.992285, - 48.498860699999994 + 16.62298605, + 49.2292303 ] } }, { "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.12.10", + "comment": "Adding data with #MapComplete for theme #https://gist.githubusercontent.com/joostschouppe/4f631b3f658b67bcfafd56b731c726dc/raw/d39021f0731179a8105531f2e4254d1fe4a6eacf/locatus.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-29T08:49:44Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114351414, + "host": "mapcomplete.osm.be", + "theme": "https://gist.githubusercontent.com/joostschouppe/4f631b3f658b67bcfafd56b731c726dc/raw/d39021f0731179a8105531f2e4254d1fe4a6eacf/locatus.json", + "answer": 3, + "imagery": "osm", + "language": "en" + }, "geometry": { "type": "Point", "coordinates": [ - 8.996022100000001, - 48.501749700000005 + 4.2645948, + 50.7375044 ] } }, { "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "bollyboll", + "uid": "12120321", + "editor": "MapComplete 0.12.10", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-29T07:59:45Z", + "reviewed_features": [], + "create": 5, + "modify": 1, + "delete": 0, + "area": 0.0000147728961899905, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114349593, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "answer": 2, + "imagery": "HDM_HOT", + "language": "de", + "change_over_5000m": 5, + "change_within_25m": 2 + }, "geometry": { "type": "Point", "coordinates": [ - 4.5389581, - 51.2419872 + 11.79279395, + 48.00553045 ] } }, { "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "bollyboll", + "uid": "12120321", + "editor": "MapComplete 0.12.10", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-29T07:17:34Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114348251, + "host": "mapcomplete.osm.be", + "theme": "benches", + "answer": 3, + "imagery": "Mapbox", + "language": "de", + "change_within_25m": 3 + }, "geometry": { "type": "Point", "coordinates": [ - 2.7148547499999998, - 42.210143200000005 + 11.7620193, + 47.9896271 ] } }, { "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "bollyboll", + "uid": "12120321", + "editor": "MapComplete 0.12.10", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-29T06:47:54Z", + "reviewed_features": [], + "create": 2, + "modify": 1, + "delete": 0, + "area": 2.31018720001487e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114347399, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "answer": 3, + "imagery": "HDM_HOT", + "language": "de", + "change_over_5000m": 2, + "change_within_25m": 2, + "change_within_50m": 1 + }, "geometry": { "type": "Point", "coordinates": [ - 6.5614855, - 53.0029268 + 11.789493499999999, + 48.009133950000006 ] } }, { "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Nickrds09", + "uid": "966535", + "editor": "MapComplete 0.12.10", + "comment": "Adding data with #MapComplete for theme #street_lighting", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-29T03:57:19Z", + "reviewed_features": [], + "create": 0, + "modify": 94, + "delete": 0, + "area": 0.0000127603929000309, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114343276, + "host": "mapcomplete.osm.be", + "theme": "street_lighting", + "answer": 133, + "imagery": "osm", + "language": "en", + "change_within_25m": 5, + "change_within_50m": 11, + "change_within_100m": 29, + "change_within_500m": 88 + }, "geometry": { "type": "Point", "coordinates": [ - 10.6716799, - 44.764731 + 121.56077605, + 13.9636414 ] } }, { "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "pi11", + "uid": "12066190", + "editor": "MapComplete 0.12.11", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-28T23:29:38Z", + "reviewed_features": [], + "create": 0, + "modify": 28, + "delete": 0, + "area": 0.0160545229045806, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114340268, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "aed", + "answer": 41, + "imagery": "osm", + "language": "en" + }, "geometry": { "type": "Point", "coordinates": [ - 12.9823037, - 55.606332050000006 + 4.50383585, + 51.2238232 ] } }, { "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "yopaseopor", + "uid": "500572", + "editor": "MapComplete 0.12.10", + "comment": "Adding data with #MapComplete for theme #containeronvas", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-28T23:20:40Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114340098, + "host": "mapcomplete.osm.be", + "theme": "containeronvas", + "answer": 1, + "imagery": "EsriWorldImagery", + "language": "ca" + }, "geometry": { "type": "Point", "coordinates": [ - 12.9923348, - 55.611163899999994 + 1.7154551, + 41.2203449 ] } }, { "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Mappilo", + "uid": "4763621", + "editor": "MapComplete 0.12.10", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-28T22:14:08Z", + "reviewed_features": [], + "create": 7, + "modify": 12, + "delete": 0, + "area": 0.00014517395749991, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114338984, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "answer": 29, + "imagery": "osm", + "language": "it", + "add-image": 2, + "change_over_5000m": 2, + "change_within_1000m": 6 + }, "geometry": { "type": "Point", "coordinates": [ - 14.2590062, - 40.93136005 + 11.650590600000001, + 45.221955449999996 ] } }, { "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.12.10", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-28T20:04:26Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.000335444575200145, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114335960, + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "osm", + "language": "en", + "add-image": 2 + }, "geometry": { "type": "Point", "coordinates": [ - 3.7280077, - 51.0445407 + -73.2393975, + -39.8317206 ] } }, { "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jessbeutler", + "uid": "3243541", + "editor": "MapComplete 0.12.10", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-28T16:11:33Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114329759, + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "USDA-NAIP", + "language": "en" + }, "geometry": { "type": "Point", "coordinates": [ - 10.642136449999999, - 44.72005035 + -85.6652284, + 42.9635538 ] } }, { "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Nickrds09", + "uid": "966535", + "editor": "MapComplete 0.12.10", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-28T10:48:18Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114319431, + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "osm", + "language": "en", + "change_over_5000m": 1 + }, "geometry": { "type": "Point", "coordinates": [ - 10.64026185, - 44.71636225 + 121.55931, + 13.9643912 ] } }, { "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.12.11", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/osmbe/play/master/mapcomplete/cyclestreets/cyclestreets.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-28T10:32:05Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 1.59660540000511e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114319021, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "gh://osmbe/play/master/mapcomplete/cyclestreets/cyclestreets.json", + "answer": 2, + "imagery": "osm", + "language": "nl" + }, "geometry": { "type": "Point", "coordinates": [ - 10.65099, - 44.71412565 + 4.2539202, + 50.73936085 ] } }, { "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Frans_Napaters", + "uid": "3574538", + "editor": "MapComplete 0.12.10", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-28T09:02:42Z", + "reviewed_features": [], + "create": 1, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114316814, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "answer": 7, + "imagery": "osm", + "language": "en", + "change_over_5000m": 1, + "change_within_25m": 7 + }, "geometry": { "type": "Point", "coordinates": [ - 11.35358545, - 46.498667350000005 + 4.8806976, + 51.0598838 ] } }, { "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.12.10", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-27T20:36:47Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114306447, + "host": "mapcomplete.osm.be", + "theme": "food", + "answer": 1, + "imagery": "osm", + "language": "nl", + "change_over_5000m": 1 + }, "geometry": { "type": "Point", "coordinates": [ - 12.975145300000001, - 55.597958199999994 + 4.3478238, + 50.85017 ] } }, { "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.12.10", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-27T19:22:35Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114304836, + "host": "mapcomplete.osm.be", + "theme": "food", + "answer": 5, + "imagery": "osm", + "language": "nl", + "change_within_25m": 5 + }, "geometry": { "type": "Point", "coordinates": [ - 10.678854300000001, - 44.754301749999996 + 4.3478238, + 50.85017 ] } }, { "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "kewl", + "uid": "317259", + "editor": "MapComplete 0.12.10", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-27T19:07:43Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114304491, + "host": "mapcomplete.osm.be", + "theme": "benches", + "answer": 2, + "imagery": "osm", + "language": "en", + "add-image": 1 + }, "geometry": { "type": "Point", "coordinates": [ - 11.34900455, - 46.500302649999995 + 6.0071197, + 49.6155871 ] } }, { "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "mahau", + "uid": "160164", + "editor": "MapComplete 0.12.10", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-27T18:02:58Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.000029072655150009, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114302874, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 3, + "imagery": "osm", + "language": "de" + }, "geometry": { "type": "Point", "coordinates": [ - 12.98136865, - 55.60443215 + 8.688210250000001, + 49.39110865 ] } }, { "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "yopaseopor", + "uid": "500572", + "editor": "MapComplete 0.12.10", + "comment": "Adding data with #MapComplete for theme #lit", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-27T17:28:18Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114301863, + "host": "mapcomplete.osm.be", + "theme": "lit", + "answer": 2, + "imagery": "osm", + "language": "ca" + }, "geometry": { "type": "Point", "coordinates": [ - 12.97096985, - 55.60089265 + 1.7148006, + 41.222486 ] } }, { "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "yopaseopor", + "uid": "500572", + "editor": "MapComplete 0.12.10", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/yopaseopor/osmlitmap/master/src/json/lit.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-27T17:15:09Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114301506, + "host": "mapcomplete.osm.be", + "theme": "gh://yopaseopor/osmlitmap/master/src/json/lit.json", + "imagery": "PNOA-Spain-TMS", + "language": "ca" + }, "geometry": { "type": "Point", "coordinates": [ - 88.3540677, - 22.57377235 + 1.7148006, + 41.222486 ] } }, { "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Dahave", + "uid": "14527619", + "editor": "MapComplete 0.12.10", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-26T22:03:23Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 2, + "area": 0.000133468081600138, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114279545, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 2, + "imagery": "CartoDB.Voyager", + "deletion": 2, + "language": "en", + "deletion:node/8860535700": "not found", + "deletion:node/9165200919": "not found" + }, "geometry": { "type": "Point", "coordinates": [ - 6.5494963, - 53.0001853 + 4.391632599999999, + 50.8360138 ] } }, { "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ruben Van de Velde", + "uid": "2676725", + "editor": "MapComplete 0.12.11", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-26T21:51:20Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114279284, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "hailhydrant", + "answer": 1, + "imagery": "HDM_HOT", + "language": "en" + }, "geometry": { "type": "Point", "coordinates": [ - 7.434616650000001, - 46.949178700000004 + 3.7352121, + 51.0451377 ] } }, { "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Alexx4", + "uid": "14523679", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-26T18:01:32Z", + "reviewed_features": [], + "create": 25, + "modify": 22, + "delete": 0, + "area": 0.00221157224738992, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114273016, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, "geometry": { "type": "Point", "coordinates": [ - 13.06510535, - 52.3957008 + 13.184895350000001, + 52.27952485 ] } }, { "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.12.10", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-26T15:57:16Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114269075, + "host": "mapcomplete.osm.be", + "theme": "aed", + "answer": 3, + "imagery": "osm", + "language": "en", + "add-image": 1 + }, "geometry": { "type": "Point", "coordinates": [ - -58.5972038, - -34.645062249999995 + 3.7214601, + 51.0370299 ] } }, { "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.12.10", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-26T12:23:08Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114261635, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "AGIV", + "language": "en", + "change_over_5000m": 1 + }, "geometry": { "type": "Point", "coordinates": [ - 2.9134751, - 51.2275968 + 3.6716263, + 51.0137209 ] } }, { "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + }, + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-9285433246", + "osm_id": 9285433246, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "emergency": "Zisterne" + } + } + ], + "user": "LFFMH", + "uid": "14449743", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-26T08:50:47Z", + "reviewed_features": [], + "create": 99, + "modify": 59, + "delete": 0, + "area": 0.0406402914336205, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114253236, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, "geometry": { "type": "Point", "coordinates": [ - 4.1439541, - 51.1716062 + 14.007407449999999, + 52.0593209 ] } }, { "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Alexx4", + "uid": "14523679", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-26T08:38:16Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114252798, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, "geometry": { "type": "Point", "coordinates": [ - 6.5640763, - 53.0198777 + 13.212819, + 52.2821415 ] } }, { "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.12.10", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-25T21:26:31Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114238844, + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "osm", + "language": "en", + "add-image": 1 + }, "geometry": { "type": "Point", "coordinates": [ - 7.4240155, - 46.939158649999996 + -71.1234956, + -34.381268 ] } }, { "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AlexeyTyur", + "uid": "10509852", + "editor": "MapComplete 0.12.10", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-25T21:24:08Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114238775, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 4, + "imagery": "CartoDB.Voyager", + "language": "en", + "change_over_5000m": 1, + "change_within_25m": 4 + }, "geometry": { "type": "Point", "coordinates": [ - 2.8171891000000002, - 41.98195925 + -80.1312574, + 25.7645181 ] } }, { "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.12.10", + "comment": "Adding data with #MapComplete for theme #cafes_and_pubs", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-25T20:07:42Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 2.1703719000108e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114236873, + "host": "mapcomplete.osm.be", + "theme": "cafes_and_pubs", + "answer": 2, + "imagery": "osm", + "language": "en", + "change_within_1000m": 2 + }, "geometry": { "type": "Point", "coordinates": [ - 9.6414625, - 45.5027999 + 4.25062635, + 50.742049449999996 ] } }, { "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Wim L", + "uid": "223681", + "editor": "MapComplete 0.12.10", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-25T19:08:42Z", + "reviewed_features": [], + "create": 3, + "modify": 3, + "delete": 0, + "area": 0.0000278555802700433, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114235477, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "answer": 12, + "imagery": "osm", + "language": "en", + "change_over_5000m": 3, + "change_within_25m": 12 + }, "geometry": { "type": "Point", "coordinates": [ - 10.75107785, - 48.8108462 + -122.31678285000001, + 47.69018905 ] } }, { "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Nicolelaine", + "uid": "2997398", + "editor": "MapComplete 0.12.10", + "comment": "Adding data with #MapComplete for theme #waste_basket", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-25T14:50:29Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114226221, + "host": "mapcomplete.osm.be", + "theme": "waste_basket", + "answer": 1, + "imagery": "osm", + "language": "en" + }, "geometry": { "type": "Point", "coordinates": [ - 2.9132451, - 51.2274674 + 11.7128313, + 53.7345385 ] } }, { "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Nicolelaine", + "uid": "2997398", + "editor": "MapComplete 0.12.10", + "comment": "Adding data with #MapComplete for theme #test", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-25T14:47:09Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114226105, + "host": "mapcomplete.osm.be", + "theme": "test", + "answer": 1, + "imagery": "CartoDB.Voyager", + "language": "en", + "add-image": 4 + }, "geometry": { "type": "Point", "coordinates": [ - 10.63869095, - 44.7081696 + 11.7128581, + 53.7315318 ] } }, { "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "habi", + "uid": "15671", + "editor": "MapComplete 0.12.10", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-25T12:55:31Z", + "reviewed_features": [], + "create": 1, + "modify": 7, + "delete": 0, + "area": 7.90876400016128e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114222569, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 11, + "imagery": "CartoDB.Voyager", + "language": "en", + "change_over_5000m": 1, + "change_within_25m": 11 + }, "geometry": { "type": "Point", "coordinates": [ - 8.935956149999999, - 44.40689865 + 7.4295827, + 46.95714955 ] } }, { "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Nicolelaine", + "uid": "2997398", + "editor": "MapComplete 0.12.10", + "comment": "Adding data with #MapComplete for theme #postboxes", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-25T12:06:30Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114220664, + "host": "mapcomplete.osm.be", + "theme": "postboxes", + "imagery": "CartoDB.Voyager", + "language": "en" + }, "geometry": { "type": "Point", "coordinates": [ - 3.2304059499999997, - 51.2099597 + 11.7128581, + 53.7315318 ] } }, { "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "sergiofenoll", + "uid": "14519825", + "editor": "MapComplete 0.12.10", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-25T11:25:22Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.00000157241840000448, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114218744, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "answer": 7, + "imagery": "osm", + "language": "en" + }, "geometry": { "type": "Point", "coordinates": [ - 4.226562299999999, - 50.96279705 + 4.4313486, + 51.2063858 ] } }, { "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.12.10", + "comment": "Adding data with #MapComplete for theme #schools", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-25T10:33:14Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000661749590999616, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114216269, + "host": "mapcomplete.osm.be", + "theme": "schools", + "answer": 1, + "imagery": "osm", + "language": "en", + "change_over_5000m": 1 + }, "geometry": { "type": "Point", "coordinates": [ - 7.44229925, - 46.9489906 + 3.3297712500000003, + 51.135440849999995 ] } }, { "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "olr", + "uid": "432746", + "editor": "MapComplete 0.12.11", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-25T08:02:42Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114209976, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "trees", + "answer": 1, + "imagery": "osm", + "language": "en" + }, "geometry": { "type": "Point", "coordinates": [ - 2.22910945, - 41.44735275 + 13.3873519, + 52.5171181 ] } }, { "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "plicploc", + "uid": "75871", + "editor": "MapComplete 0.12.10", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-25T07:44:48Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114209389, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "answer": 1, + "imagery": "CartoDB.Voyager", + "language": "en", + "change_over_5000m": 1, + "change_within_25m": 1 + }, "geometry": { "type": "Point", "coordinates": [ - 4.392894, - 51.20707575 + 5.5468411, + 50.6286394 ] } }, { "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.12.11", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-24T20:00:30Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114195601, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "cyclofix", + "answer": 1, + "imagery": "CartoDB.Voyager", + "language": "nl", + "change_within_50m": 1 + }, "geometry": { "type": "Point", "coordinates": [ - 10.50317545, - 48.75473 + 3.2160907, + 51.195938 ] } }, { "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "ClarissaWAM", + "uid": "13745921", + "editor": "MapComplete 0.12.8", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-24T17:10:35Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114190549, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "add-image": 1 + }, "geometry": { "type": "Point", "coordinates": [ - 3.1353594, - 51.1818748 + 5.8804744, + 49.5957562 ] } }, { "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.12.8", + "comment": "Adding data with #MapComplete for theme #street_lighting", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-24T15:43:27Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 9.82276819993007e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114187255, + "host": "mapcomplete.osm.be", + "theme": "street_lighting", + "answer": 1, + "imagery": "osm", + "language": "en", + "change_within_50m": 1 + }, "geometry": { "type": "Point", "coordinates": [ - 3.20497705, - 51.18472965 + 3.72091495, + 51.036722 ] } }, { "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.12.10", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-24T12:11:10Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114179670, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "cyclofix", + "answer": 1, + "imagery": "CartoDB.Voyager", + "language": "nl", + "change_within_50m": 1 + }, "geometry": { "type": "Point", "coordinates": [ - 3.20557645, - 51.18384435 + 3.2248056, + 51.2092223 ] } }, { "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "esdb", + "uid": "12752971", + "editor": "MapComplete 0.12.8", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-23T18:55:52Z", + "reviewed_features": [], + "create": 0, + "modify": 6, + "delete": 0, + "area": 0.0000968267639999874, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114152917, + "host": "mapcomplete.osm.be", + "theme": "benches", + "answer": 8, + "imagery": "osm", + "language": "en" + }, "geometry": { "type": "Point", "coordinates": [ - 3.20416905, - 51.18382885 + 6.511006999999999, + 52.5163817 ] } }, { "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.12.8", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-23T15:25:53Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 1.00794999981806e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114145243, + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "CyclOSM", + "language": "en", + "add-image": 3 + }, "geometry": { "type": "Point", "coordinates": [ - 10.486115600000002, - 48.725182149999995 + -73.23049675, + -39.837828349999995 ] } }, { "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Geert Claessens", + "uid": "11913862", + "editor": "MapComplete 0.12.8", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-23T14:30:43Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114143108, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "answer": 3, + "imagery": "osm", + "language": "nl" + }, "geometry": { "type": "Point", "coordinates": [ - 3.2244893, - 51.2115434 + 4.0478664, + 50.9285288 ] } }, { "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "jospyck", + "uid": "12128135", + "editor": "MapComplete 0.12.8", + "comment": "Adding data with #MapComplete for theme #waste_basket", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-23T13:47:40Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114141649, + "host": "mapcomplete.osm.be", + "theme": "waste_basket", + "answer": 2, + "imagery": "HDM_HOT", + "language": "nl" + }, "geometry": { "type": "Point", "coordinates": [ - 3.2041749499999996, - 51.1829392 + 4.1958205, + 50.9160088 ] } }, { "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Sometimesmapping", + "uid": "13607423", + "editor": "MapComplete 0.12.8", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-23T12:08:31Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 0.00000913761140000294, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114137991, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "answer": 6, + "imagery": "osm", + "language": "en" + }, "geometry": { "type": "Point", "coordinates": [ - 7.4550518, - 46.9602491 + 10.769248950000001, + 59.9139277 ] } }, { "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "arukuni", + "uid": "8534839", + "editor": "MapComplete 0.12.8", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-23T11:59:53Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000152986193999159, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114137682, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 1, + "imagery": "osm", + "language": "en" + }, "geometry": { "type": "Point", "coordinates": [ - 3.2178952, - 51.2148113 + 18.936193000000003, + 50.27166355 ] } }, { "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Maarten O", + "uid": "13326535", + "editor": "MapComplete 0.12.8", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-23T09:42:14Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114131999, + "host": "mapcomplete.osm.be", + "theme": "aed", + "answer": 1, + "imagery": "osm", + "language": "nl" + }, "geometry": { "type": "Point", "coordinates": [ - 3.2244893, - 51.21157615 + 3.2304311, + 51.2099671 ] } }, { "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Aiae13", + "uid": "13072292", + "editor": "MapComplete 0.12.8", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-23T07:53:41Z", + "reviewed_features": [], + "create": 5, + "modify": 8, + "delete": 0, + "area": 0.0000226561488400754, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114127880, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "answer": 26, + "imagery": "osm", + "language": "en", + "change_within_25m": 26 + }, "geometry": { "type": "Point", "coordinates": [ - -58.648328750000005, - -34.651680850000005 + 11.24989435, + 43.7830436 ] } }, { "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Aiae13", + "uid": "13072292", + "editor": "MapComplete 0.12.8", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-22T21:00:31Z", + "reviewed_features": [], + "create": 2, + "modify": 0, + "delete": 0, + "area": 0.0000097859180999836, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114114258, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "answer": 4, + "imagery": "osm", + "language": "en", + "change_within_25m": 4 + }, "geometry": { "type": "Point", "coordinates": [ - 4.083827149999999, - 50.78122465 + 11.23882325, + 43.7816377 ] } }, { "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joeybab3", + "uid": "8783843", + "editor": "MapComplete 0.12.8", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-22T18:40:07Z", + "reviewed_features": [], + "create": 1, + "modify": 11, + "delete": 0, + "area": 0.000620345714450028, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114110334, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "answer": 25, + "imagery": "osm", + "language": "en", + "add-image": 2, + "change_within_25m": 10, + "change_within_100m": 4, + "change_within_500m": 4, + "change_within_5000m": 9 + }, "geometry": { "type": "Point", "coordinates": [ - 3.1987681500000003, - 51.19621705 + -122.05661275, + 36.974851150000006 ] } }, { "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "ClarissaWAM", + "uid": "13745921", + "editor": "MapComplete 0.12.8", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-22T18:01:56Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114109022, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "answer": 1, + "imagery": "osm", + "language": "en", + "add-image": 1 + }, "geometry": { "type": "Point", "coordinates": [ - 7.4177076, - 46.9393474 + 6.0457394, + 49.8544206 ] } }, { "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Aiae13", + "uid": "13072292", + "editor": "MapComplete 0.12.8", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-22T17:55:18Z", + "reviewed_features": [], + "create": 2, + "modify": 5, + "delete": 0, + "area": 4.13940500003485e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114108771, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "answer": 11, + "imagery": "osm", + "language": "en", + "change_within_25m": 11 + }, "geometry": { "type": "Point", "coordinates": [ - 7.4288396, - 46.9526135 + 11.24296635, + 43.782012449999996 ] } }, { "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Aiae13", + "uid": "13072292", + "editor": "MapComplete 0.12.8", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-22T17:15:38Z", + "reviewed_features": [], + "create": 8, + "modify": 8, + "delete": 0, + "area": 0.0000944718887499518, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114107213, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "answer": 30, + "imagery": "osm", + "language": "en", + "change_within_25m": 19, + "change_within_50m": 10, + "change_within_500m": 1 + }, "geometry": { "type": "Point", "coordinates": [ - 4.0106851, - 51.005699 + 11.264316749999999, + 43.77846855 ] } }, { "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "matissevdberg", + "uid": "12928471", + "editor": "MapComplete 0.12.10", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-22T16:11:17Z", + "reviewed_features": [], + "create": 3, + "modify": 3, + "delete": 0, + "area": 8.21412800010411e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114104745, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "surveillance", + "answer": 8, + "imagery": "AGIV", + "language": "en" + }, "geometry": { "type": "Point", "coordinates": [ - 3.21712535, - 51.214556 + 4.3640989, + 51.012136600000005 ] } }, { "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Driesvr", + "uid": "4757701", + "editor": "MapComplete 0.12.8", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-22T15:20:50Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114102892, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2516995, + 41.4479352 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Robin van der Linde", + "uid": "5093765", + "editor": "MapComplete 0.12.8", + "comment": "Adding data with #MapComplete for theme #postboxes", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-22T15:15:36Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 1.11597900002716e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114102705, + "host": "pietervdvn.github.io", + "path": "mc/post-partner/", + "theme": "postboxes", + "answer": 4, + "imagery": "CartoDB.Voyager", + "language": "en", + "change_within_25m": 3, + "change_within_50m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.55976165, + 52.99559845 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Aiae13", + "uid": "13072292", + "editor": "MapComplete 0.12.8", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-22T13:37:42Z", + "reviewed_features": [], + "create": 11, + "modify": 13, + "delete": 0, + "area": 0.000117263026560204, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114099060, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "answer": 41, + "imagery": "osm", + "language": "en", + "change_within_25m": 34, + "change_within_50m": 7 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.2634379, + 43.7787729 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Maarten O", + "uid": "13326535", + "editor": "MapComplete 0.12.8", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-22T12:57:08Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114097689, + "host": "mapcomplete.osm.be", + "theme": "aed", + "answer": 1, + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1866457, + 51.1947448 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Maarten O", + "uid": "13326535", + "editor": "MapComplete 0.12.8", + "comment": "Adding data with #MapComplete for theme #aed_brugge", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-22T12:44:01Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114097283, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "HDM_HOT", + "language": "nl", + "add-image": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.225277, + 51.2078916 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Aiae13", + "uid": "13072292", + "editor": "MapComplete 0.12.8", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-22T12:03:04Z", + "reviewed_features": [], + "create": 2, + "modify": 5, + "delete": 0, + "area": 0.00000977284489999132, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114095799, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "answer": 12, + "imagery": "osm", + "language": "en", + "change_within_25m": 5, + "change_within_500m": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.223763049999999, + 43.786877700000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "koloto", + "uid": "11371566", + "editor": "MapComplete 0.12.8", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-22T11:28:48Z", + "reviewed_features": [], + "create": 0, + "modify": 10, + "delete": 0, + "area": 0.000756230839340224, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114094304, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 10, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.512842500000001, + 48.08694825 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Aiae13", + "uid": "13072292", + "editor": "MapComplete 0.12.8", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-22T09:49:54Z", + "reviewed_features": [], + "create": 3, + "modify": 5, + "delete": 0, + "area": 0.0000218703679999861, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114089983, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "answer": 14, + "imagery": "osm", + "language": "en", + "change_within_25m": 11, + "change_within_50m": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.2458618, + 43.792691500000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Maarten O", + "uid": "13326535", + "editor": "MapComplete 0.12.8", + "comment": "Adding data with #MapComplete for theme #aed_brugge", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-22T08:26:40Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114086967, + "host": "mapcomplete.osm.be", + "theme": "aed", + "answer": 2, + "imagery": "HDM_HOT", + "language": "nl", + "add-image": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1866457, + 51.1947448 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Aiae13", + "uid": "13072292", + "editor": "MapComplete 0.12.8", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-22T07:15:28Z", + "reviewed_features": [], + "create": 5, + "modify": 7, + "delete": 0, + "area": 0.0000136027106999993, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114084633, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "answer": 24, + "imagery": "osm", + "language": "en", + "change_within_25m": 14, + "change_within_100m": 10 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.245411650000001, + 43.7813979 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "korobkov", + "uid": "389895", + "editor": "MapComplete 0.12.8", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-22T02:51:43Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114079110, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "answer": 1, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 48.3882483, + 54.3320122 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.12.10", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-22T02:46:49Z", + "reviewed_features": [], + "create": 50, + "modify": 45, + "delete": 0, + "area": 8.46224049998409e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114079039, + "host": "127.0.0.1:1234", + "move": 36, + "theme": "grb", + "imagery": "AGIV", + "language": "nl", + "conflation": 18 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.14068465, + 51.15207615 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.12.10", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-22T00:32:18Z", + "reviewed_features": [], + "create": 0, + "modify": 6, + "delete": 0, + "area": 0.0000298876789200192, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114077348, + "host": "127.0.0.1:1234", + "theme": "etymology", + "answer": 6, + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.140321500000001, + 51.1522738 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.12.10", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-21T23:37:09Z", + "reviewed_features": [], + "create": 178, + "modify": 128, + "delete": 0, + "area": 0.0560894581192678, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114076677, + "host": "127.0.0.1:1234", + "move": 84, + "theme": "grb", + "answer": 19, + "import": 8, + "imagery": "AGIV", + "language": "nl", + "conflation": 40 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.67913755, + 51.18201965 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "hfs", + "uid": "9607", + "editor": "MapComplete 0.12.8", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-21T21:44:53Z", + "reviewed_features": [], + "create": 0, + "modify": 9, + "delete": 0, + "area": 0.0000894335078699775, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114074271, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 15, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.09395635, + 52.39585475 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.12.10", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/seppesantens/MapComplete-Themes/main/walkingnodenetworks/walkingnodenetworks.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-21T19:52:27Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 0.000574572618270035, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114071129, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "gh://seppesantens/mapcomplete-themes/main/walkingnodenetworks/walkingnodenetworks.json", + "answer": 4, + "imagery": "osm", + "language": "en", + "add-image": 3, + "change_over_5000m": 7 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.30956485, + 51.10541125 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.12.10", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/seppesantens/MapComplete-Themes/main/cyclenodenetworks/cyclenodenetworks.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-21T19:43:07Z", + "reviewed_features": [], + "create": 0, + "modify": 8, + "delete": 0, + "area": 0.000634420899759996, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114070865, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "gh://seppesantens/mapcomplete-themes/main/cyclenodenetworks/cyclenodenetworks.json", + "answer": 5, + "imagery": "osm", + "language": "en", + "add-image": 3, + "change_over_5000m": 8 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3111592, + 51.09883125 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AlexeyTyur", + "uid": "10509852", + "editor": "MapComplete 0.12.8", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-21T17:55:16Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 8.613999996976e-11, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114067572, + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "cyclofix", + "answer": 4, + "imagery": "CartoDB.Voyager", + "language": "en", + "change_within_25m": 5, + "move:node/9272741457": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -112.0760909, + 33.46011025 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.12.10", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/seppesantens/MapComplete-Themes/main/cyclenodenetworks/cyclenodenetworks.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-21T17:19:54Z", + "reviewed_features": [], + "create": 0, + "modify": 21, + "delete": 0, + "area": 0.00183383042330007, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114066212, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "gh://seppesantens/mapcomplete-themes/main/cyclenodenetworks/cyclenodenetworks.json", + "answer": 21, + "imagery": "osm", + "language": "en", + "change_over_5000m": 21 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.33681825, + 51.102917399999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Koen Rijnsent", + "uid": "4569696", + "editor": "MapComplete 0.12.8", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-21T12:45:30Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114056542, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "answer": 3, + "imagery": "osm", + "language": "en", + "add-image": 1, + "change_within_25m": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.1032138, + 52.0830137 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Loviuz", + "uid": "4763621", + "editor": "MapComplete 0.12.8", + "comment": "Adding data with #MapComplete for theme #id", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-21T11:46:09Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114054547, + "host": "mapcomplete.osm.be", + "theme": "id", + "answer": 7, + "imagery": "osm", + "language": "it" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.6665122, + 45.2194957 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Loviuz", + "uid": "4763621", + "editor": "MapComplete 0.12.10", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-21T11:02:03Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114053349, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "surveillance", + "imagery": "EsriWorldImagery", + "language": "it" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 71.7765141, + 40.4045506 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Igor Zaytsev", + "uid": "3214325", + "editor": "MapComplete 0.12.8", + "comment": "Adding data with #MapComplete for theme #climbing", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-21T09:22:17Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114050247, + "host": "mapcomplete.osm.be", + "theme": "climbing", + "answer": 5, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 40.2759111, + 43.6810052 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Igor Zaytsev", + "uid": "3214325", + "editor": "MapComplete 0.12.8", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-21T09:06:54Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 3.51972999992477e-8, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114049879, + "host": "mapcomplete.osm.be", + "theme": "food", + "answer": 7, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 40.211125800000005, + 43.67893885 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AlexeyTyur", + "uid": "10509852", + "editor": "MapComplete 0.12.8", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-21T05:33:44Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 1.32311799992476e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114046939, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "answer": 2, + "imagery": "osm", + "language": "en", + "change_within_1000m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -112.0766027, + 33.462172949999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Aiae13", + "uid": "13072292", + "editor": "MapComplete 0.12.8", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-21T01:01:34Z", + "reviewed_features": [], + "create": 1, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114044551, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "answer": 6, + "imagery": "osm", + "language": "en", + "change_within_25m": 6 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.1438811, + 43.7502381 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Mannivu", + "uid": "1950277", + "editor": "MapComplete 0.12.8", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-20T18:18:24Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0.00000996640796000694, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114036668, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "answer": 8, + "imagery": "osm", + "language": "it", + "change_within_500m": 2, + "change_within_1000m": 6 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.64106515, + 45.4933166 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "_Zaizen_", + "uid": "13632730", + "editor": "MapComplete 0.12.8", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-20T17:17:12Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114034673, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "answer": 1, + "imagery": "osm", + "language": "it" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.7305151, + 45.33372 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.12.9", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-20T17:02:24Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114034194, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "aed", + "imagery": "osm", + "language": "en", + "add-image": 1, + "change_within_500m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2004225, + 51.186175 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Loviuz", + "uid": "4763621", + "editor": "MapComplete 0.12.8", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-20T16:57:17Z", + "reviewed_features": [], + "create": 2, + "modify": 5, + "delete": 0, + "area": 1.23114000001429e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114034038, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "answer": 9, + "imagery": "osm", + "language": "it" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.6590959, + 45.226970300000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Danysan95", + "uid": "4425563", + "editor": "MapComplete 0.12.8", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-20T16:40:54Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114033487, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "answer": 1, + "imagery": "osm", + "language": "en", + "change_within_5000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.7127615, + 44.35393 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.12.9", + "comment": "Adding data with #MapComplete for theme #hackerspaces", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-20T16:12:21Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 3.02229839998312e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114032625, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "hackerspaces", + "answer": 2, + "imagery": "osm", + "language": "en", + "change_over_5000m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.387559899999999, + 50.82240395 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.12.8", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-20T15:57:19Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114032166, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "answer": 5, + "imagery": "osm", + "language": "en", + "add-image": 1, + "change_within_25m": 6 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.6100849, + 50.8468398 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.12.8", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-20T15:30:10Z", + "reviewed_features": [], + "create": 0, + "modify": 0, + "delete": 1, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114031265, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "imagery": "CartoDB.Voyager", + "deletion": 1, + "language": "en", + "change_within_25m": 1, + "deletion:node/4314294835": "not found" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.6036213, + 50.8422367 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Nickrds09", + "uid": "966535", + "editor": "MapComplete 0.12.8", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-20T15:08:11Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114030479, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "answer": 3, + "imagery": "HDM_HOT", + "language": "en", + "change_within_5000m": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 121.5856916, + 13.9476675 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.12.8", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-20T15:07:44Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114030464, + "host": "mapcomplete.osm.be", + "theme": "aed", + "answer": 3, + "imagery": "osm", + "language": "en", + "add-image": 1, + "change_within_25m": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.6036377, + 50.8426303 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.12.8", + "comment": "Adding data with #MapComplete for theme #postboxes", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-20T14:47:25Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114029802, + "host": "mapcomplete.osm.be", + "theme": "postboxes", + "imagery": "CartoDB.Voyager", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.5994668, + 50.8487499 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.12.8", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-20T14:46:50Z", + "reviewed_features": [], + "create": 9, + "modify": 17, + "delete": 0, + "area": 0.0000360140516999965, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114029781, + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "cyclofix", + "answer": 46, + "imagery": "CartoDB.Voyager", + "language": "nl", + "add-image": 4, + "change_within_25m": 45, + "change_within_100m": 6, + "move:node/9269860379": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.6021821, + 50.84544965 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "ClarissaWAM", + "uid": "13745921", + "editor": "MapComplete 0.12.8", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-20T14:37:47Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114029511, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.1401763, + 49.6891113 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Andrea Musuruane", + "uid": "90379", + "editor": "MapComplete 0.12.8", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-20T13:24:44Z", + "reviewed_features": [], + "create": 0, + "modify": 35, + "delete": 0, + "area": 0.000108278303890037, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114027270, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 43, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.170543949999999, + 45.36629955 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Andrea Musuruane", + "uid": "90379", + "editor": "MapComplete 0.12.8", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-20T13:15:36Z", + "reviewed_features": [], + "create": 0, + "modify": 24, + "delete": 0, + "area": 0.000111772254069973, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114026957, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 33, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.17861305, + 45.367286449999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Andrea Musuruane", + "uid": "90379", + "editor": "MapComplete 0.12.8", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-20T12:24:29Z", + "reviewed_features": [], + "create": 0, + "modify": 9, + "delete": 0, + "area": 0.0000242288045999661, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114025440, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 11, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.1802704, + 45.367302699999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "brust84", + "uid": "1225756", + "editor": "MapComplete 0.12.8", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-20T12:17:05Z", + "reviewed_features": [], + "create": 2, + "modify": 0, + "delete": 0, + "area": 1.6948240000644e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114025211, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "answer": 2, + "imagery": "GEOSN-DOP-RGB", + "language": "en", + "change_within_25m": 1, + "change_within_50m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.684601, + 51.0580336 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "whatismoss", + "uid": "8427311", + "editor": "MapComplete 0.12.8", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-20T11:22:40Z", + "reviewed_features": [], + "create": 0, + "modify": 8, + "delete": 0, + "area": 0.0000612271297499718, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114023582, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 17, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.94329205, + 50.41015625 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "habi", + "uid": "15671", + "editor": "MapComplete 0.12.8", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-20T11:17:24Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114023430, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 6, + "imagery": "CartoDB.Voyager", + "language": "en", + "change_within_500m": 6 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.4455923, + 46.9288723 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pablo667", + "uid": "13166651", + "editor": "MapComplete 0.12.8", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-20T09:34:25Z", + "reviewed_features": [], + "create": 2, + "modify": 6, + "delete": 0, + "area": 3.92010000005903e-10, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114020398, + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "toilets", + "answer": 7, + "imagery": "osm", + "language": "en", + "move:node/9269432914": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.33714965, + 46.48656335 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Koen Rijnsent", + "uid": "4569696", + "editor": "MapComplete 0.12.8", + "comment": "Adding data with #MapComplete for theme #artwork", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-20T09:32:53Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114020355, + "host": "mapcomplete.osm.be", + "theme": "artwork", + "answer": 2, + "imagery": "osm", + "language": "en", + "add-image": 1, + "change_within_25m": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.1203799, + 52.0888547 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Nickrds09", + "uid": "966535", + "editor": "MapComplete 0.12.8", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-20T08:06:00Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114018406, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "answer": 3, + "imagery": "HDM_HOT", + "language": "en", + "add-image": 1, + "change_within_25m": 3, + "change_within_500m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 121.5577407, + 13.9629595 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "iPhaulat", + "uid": "14492583", + "editor": "MapComplete 0.12.8", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-20T07:42:56Z", + "reviewed_features": [], + "create": 4, + "modify": 0, + "delete": 0, + "area": 0.00758018241031997, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114017985, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "answer": 4, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.0648529, + 50.82412895 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "schoka", + "uid": "818053", + "editor": "MapComplete 0.12.8", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-19T22:25:00Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.00090291097782003, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114010623, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "answer": 4, + "imagery": "osm", + "language": "de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 12.15186765, + 48.5498855 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Jrachi", + "uid": "2976645", + "editor": "MapComplete 0.12.8", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-19T21:01:53Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114008323, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "imagery": "CartoDB.Voyager", + "language": "it", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.4712417, + 45.2644314 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "habi", + "uid": "15671", + "editor": "MapComplete 0.12.8", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-19T14:42:34Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113993823, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 4, + "imagery": "CartoDB.Voyager", + "language": "en", + "change_within_25m": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.4422382, + 46.9461388 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "PetrusGeographicus", + "uid": "6306504", + "editor": "MapComplete 0.0.8f", + "comment": "Adding data with #MapComplete for theme #buurtnatuur", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-19T12:04:21Z", + "reviewed_features": [], + "create": 0, + "modify": 8, + "delete": 0, + "area": 0.0000956295655200007, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113988227, + "theme": "buurtnatuur", + "theme-creator": "Pieter Vander Vennet" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.9388232, + 51.33024090000001 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "GRF86", + "uid": "10697310", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-19T07:26:34Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113977700, + "host": "www.waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.7497433, + 52.431594 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Maarten O", + "uid": "13326535", + "editor": "MapComplete 0.12.8", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-18T15:28:46Z", + "reviewed_features": [], + "create": 0, + "modify": 6, + "delete": 0, + "area": 0.000197076321260082, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113949456, + "host": "mapcomplete.osm.be", + "theme": "aed", + "answer": 10, + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2310654000000003, + 51.20193345 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.12.8", + "comment": "Adding data with #MapComplete for theme #postboxes", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-18T15:26:51Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113949393, + "host": "mapcomplete.osm.be", + "theme": "postboxes", + "imagery": "CartoDB.Voyager", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2455038, + 50.7262381 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.12.8", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-18T15:23:51Z", + "reviewed_features": [], + "create": 1, + "modify": 5, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113949291, + "host": "mapcomplete.osm.be", + "theme": "aed", + "answer": 7, + "imagery": "osm", + "language": "nl", + "add-image": 1, + "change_within_25m": 8 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2454414, + 50.7261862 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Maarten O", + "uid": "13326535", + "editor": "MapComplete 0.12.8", + "comment": "Adding data with #MapComplete for theme #aed_brugge", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-18T14:41:29Z", + "reviewed_features": [], + "create": 0, + "modify": 11, + "delete": 0, + "area": 0.00101611818000008, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113947704, + "host": "mapcomplete.osm.be", + "theme": "aed", + "answer": 8, + "imagery": "HDM_HOT", + "language": "nl", + "add-image": 12 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.21888015, + 51.196195 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Maarten O", + "uid": "13326535", + "editor": "MapComplete 0.12.8", + "comment": "Adding data with #MapComplete for theme #aed_brugge", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-18T12:57:06Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113943668, + "host": "mapcomplete.osm.be", + "theme": "aed", + "answer": 4, + "imagery": "HDM_HOT", + "language": "nl", + "change_within_5000m": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2442324, + 51.2039627 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "willyVerbruggen", + "uid": "14482087", + "editor": "MapComplete 0.12.8", + "comment": "Adding data with #MapComplete for theme #fritures", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-18T11:00:04Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113939005, + "host": "mapcomplete.osm.be", + "theme": "fritures", + "answer": 1, + "imagery": "osm", + "language": "nl", + "change_within_500m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4276041, + 51.1842084 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Maarten O", + "uid": "13326535", + "editor": "MapComplete 0.12.8", + "comment": "Adding data with #MapComplete for theme #aed_brugge", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-18T10:49:25Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113938518, + "host": "mapcomplete.osm.be", + "theme": "aed", + "answer": 7, + "imagery": "HDM_HOT", + "language": "nl", + "change_within_25m": 7 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1935279, + 51.2004931 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Maarten O", + "uid": "13326535", + "editor": "MapComplete 0.12.8", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-18T08:10:04Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.00676452815376038, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113932492, + "host": "mapcomplete.osm.be", + "theme": "aed", + "answer": 3, + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2158667, + 51.2752488 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.12.8", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-18T00:59:57Z", + "reviewed_features": [], + "create": 1, + "modify": 16, + "delete": 0, + "area": 0.0000725956390899909, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113922524, + "host": "mapcomplete.osm.be", + "move": 14, + "theme": "grb", + "answer": 1, + "imagery": "AGIVFlandersGRB", + "language": "nl", + "conflation": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.15234765, + 51.15873035 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.12.8", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-17T22:21:32Z", + "reviewed_features": [], + "create": 202, + "modify": 190, + "delete": 0, + "area": 0.0000212697524500094, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113919138, + "host": "mapcomplete.osm.be", + "move": 181, + "theme": "grb", + "answer": 1, + "import": 7, + "imagery": "AGIVFlandersGRB", + "language": "nl", + "conflation": 18 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.15130295, + 51.16151945 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "DieterWesttoer", + "uid": "13062237", + "editor": "MapComplete 0.12.8", + "comment": "Adding data with #MapComplete for theme #cyclestreets", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-17T15:26:45Z", + "reviewed_features": [], + "create": 2, + "modify": 7, + "delete": 0, + "area": 0.0000608488785001403, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113903019, + "host": "mapcomplete.osm.be", + "split": 4, + "theme": "cyclestreets", + "answer": 6, + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.0913365, + 51.06573865 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Maarten O", + "uid": "13326535", + "editor": "MapComplete 0.12.8", + "comment": "Adding data with #MapComplete for theme #aed_brugge", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-17T11:41:03Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113894057, + "host": "mapcomplete.osm.be", + "theme": "aed", + "answer": 6, + "imagery": "HDM_HOT", + "language": "nl", + "change_within_500m": 6 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1859279, + 51.3139366 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "mach314", + "uid": "10409578", + "editor": "MapComplete 0.12.8", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-17T10:34:02Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 5.39747999993043e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113891121, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 7, + "imagery": "CartoDB.Voyager", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -86.0676955, + 40.753911200000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Maarten O", + "uid": "13326535", + "editor": "MapComplete 0.12.8", + "comment": "Adding data with #MapComplete for theme #aed_brugge", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-17T08:35:11Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113885921, + "host": "mapcomplete.osm.be", + "theme": "aed", + "answer": 6, + "imagery": "HDM_HOT", + "language": "nl", + "add-image": 1, + "change_within_25m": 7 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1951949, + 51.3265608 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jessbeutler", + "uid": "3243541", + "editor": "MapComplete 0.12.8", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-17T00:11:29Z", + "reviewed_features": [], + "create": 1, + "modify": 6, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113874951, + "host": "mapcomplete.osm.be", + "theme": "food", + "answer": 7, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -85.6718148, + 42.9794391 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.12.8", + "comment": "Adding data with #MapComplete for theme #nature", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-16T22:11:02Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113871656, + "host": "mapcomplete.osm.be", + "theme": "nature", + "imagery": "osm", + "language": "nl", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2655267, + 51.1980204 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Dampee", + "uid": "2175714", + "editor": "MapComplete 0.12.8", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-16T22:01:20Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113871399, + "host": "mapcomplete.osm.be", + "theme": "benches", + "answer": 1, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.5876905, + 51.1446402 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Lattenzaun", + "uid": "2603279", + "editor": "MapComplete 0.12.9", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-16T21:59:11Z", + "reviewed_features": [], + "create": 0, + "modify": 9, + "delete": 0, + "area": 0.00000261649920001031, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113871332, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "etymology", + "answer": 14, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.4558026, + 51.314914599999994 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Stijn79", + "uid": "14458086", + "editor": "MapComplete 0.12.8", + "comment": "Adding data with #MapComplete for theme #ghostbikes", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-16T21:39:38Z", + "reviewed_features": [], + "create": 1, + "modify": 6, + "delete": 0, + "area": 0.00294268790241994, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113870726, + "host": "mapcomplete.osm.be", + "theme": "ghostbikes", + "answer": 5, + "imagery": "CartoDB.Positron", + "language": "nl", + "add-image": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.4130676, + 50.94953925 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Stijn79", + "uid": "14458086", + "editor": "MapComplete 0.12.8", + "comment": "Adding data with #MapComplete for theme #test", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-16T21:21:11Z", + "reviewed_features": [], + "create": 1, + "modify": 6, + "delete": 0, + "area": 0.00484706036529017, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113870121, + "host": "mapcomplete.osm.be", + "theme": "test", + "answer": 8, + "imagery": "CartoDB.Positron", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.34933765, + 50.96533895 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "meiadeleite", + "uid": "13279813", + "editor": "MapComplete 0.12.8", + "comment": "Adding data with #MapComplete for theme #postboxes", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-16T21:20:31Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.00084320154780016, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113870099, + "host": "mapcomplete.osm.be", + "theme": "postboxes", + "imagery": "CartoDB.Voyager", + "language": "en", + "add-image": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -7.6280573, + 37.13392235 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.12.9", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/seppesantens/MapComplete-Themes/main/walkingnodenetworks/walkingnodenetworks.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-16T18:34:32Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113864247, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "gh://seppesantens/mapcomplete-themes/main/walkingnodenetworks/walkingnodenetworks.json", + "imagery": "osm", + "language": "en", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2904695, + 51.1994981 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.12.8", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-16T18:07:18Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 1, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113863158, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 1, + "imagery": "osm", + "deletion": 1, + "language": "nl", + "change_within_500m": 2, + "deletion:node/9257811058": "testing point" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2182378, + 51.2155418 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "hke2912", + "uid": "5154951", + "editor": "MapComplete 0.12.9", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-16T17:06:43Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113860718, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "cyclofix", + "answer": 2, + "imagery": "CartoDB.Voyager", + "language": "de", + "change_within_25m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.0119706, + 51.4544025 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "hke2912", + "uid": "5154951", + "editor": "MapComplete 0.12.9", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-16T17:04:37Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113860578, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "bookcases", + "answer": 3, + "imagery": "osm", + "language": "de", + "change_within_25m": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.0120718, + 51.4545208 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.12.8", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-16T16:43:49Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113859710, + "host": "mapcomplete.osm.be", + "theme": "trees", + "answer": 3, + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2352944, + 50.85522 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Geert Claessens", + "uid": "11913862", + "editor": "MapComplete 0.12.8", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-16T16:38:12Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113859499, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "answer": 4, + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.0945347, + 50.953635 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.12.9", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/seppesantens/MapComplete-Themes/main/cyclenodenetworks/cyclenodenetworks.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-16T16:11:40Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113858537, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "gh://seppesantens/mapcomplete-themes/main/cyclenodenetworks/cyclenodenetworks.json", + "imagery": "osm", + "language": "en", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2344067, + 51.2031169 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Maarten O", + "uid": "13326535", + "editor": "MapComplete 0.12.8", + "comment": "Adding data with #MapComplete for theme #aed_brugge", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-16T15:55:53Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113857890, + "host": "mapcomplete.osm.be", + "theme": "aed", + "answer": 5, + "imagery": "HDM_HOT", + "language": "nl", + "add-image": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1838748, + 51.1960646 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "plicploc", + "uid": "75871", + "editor": "MapComplete 0.12.8", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-16T14:28:53Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113854721, + "host": "mapcomplete.osm.be", + "theme": "aed", + "answer": 4, + "imagery": "osm", + "language": "en", + "change_within_5000m": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.5741409, + 50.6194838 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.12.9", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/seppesantens/MapComplete-Themes/main/walkingnodenetworks/walkingnodenetworks.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-16T11:35:14Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113847794, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "gh://seppesantens/mapcomplete-themes/main/walkingnodenetworks/walkingnodenetworks.json", + "imagery": "osm", + "language": "en", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2503067, + 51.1835053 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "whatismoss", + "uid": "8427311", + "editor": "MapComplete 0.12.8", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-16T10:18:52Z", + "reviewed_features": [], + "create": 0, + "modify": 21, + "delete": 0, + "area": 0.000844845464179843, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113844419, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 24, + "imagery": "osm", + "language": "en", + "add-image": 6 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.9601947, + 50.41745865 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.12.8", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-16T08:49:14Z", + "reviewed_features": [], + "create": 20, + "modify": 2, + "delete": 0, + "area": 5.21078799997252e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113840870, + "host": "mapcomplete.osm.be", + "theme": "grb", + "import": 2, + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.0374999999999996, + 51.0977036 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Koen Rijnsent", + "uid": "4569696", + "editor": "MapComplete 0.12.8", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-16T08:38:05Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 0.00000139722750999456, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113840427, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "answer": 3, + "imagery": "osm", + "language": "en", + "add-image": 2, + "change_within_25m": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.131047049999999, + 52.09527165 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "s8evq", + "uid": "3710738", + "editor": "MapComplete 0.12.8", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-16T08:34:52Z", + "reviewed_features": [], + "create": 26, + "modify": 1, + "delete": 0, + "area": 0.000771888263670192, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113840300, + "host": "mapcomplete.osm.be", + "theme": "grb", + "answer": 1, + "import": 4, + "imagery": "AGIVFlandersGRB", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.25407285, + 51.09879255 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Koen Rijnsent", + "uid": "4569696", + "editor": "MapComplete 0.12.8", + "comment": "Adding data with #MapComplete for theme #artwork", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-16T08:34:00Z", + "reviewed_features": [], + "create": 8, + "modify": 10, + "delete": 0, + "area": 0.0000555664662199595, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113840279, + "host": "mapcomplete.osm.be", + "theme": "artwork", + "answer": 9, + "imagery": "osm", + "language": "en", + "add-image": 7, + "change_within_25m": 14, + "change_within_500m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.1284506499999996, + 52.0974834 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Mitch85302", + "uid": "14030677", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-16T08:27:29Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113840019, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 14.481883, + 51.9319697 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "todrobbins", + "uid": "94039", + "editor": "MapComplete 0.12.9", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-16T04:45:49Z", + "reviewed_features": [], + "create": 5, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113833223, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "bookcases", + "answer": 2, + "imagery": "Mapbox", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -111.8574094, + 40.3632181 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.12.8", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/seppesantens/MapComplete-Themes/main/walkingnodenetworks/walkingnodenetworks.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-15T22:30:15Z", + "reviewed_features": [], + "create": 0, + "modify": 93, + "delete": 0, + "area": 0.0021328588070996, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113827490, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "gh://seppesantens/mapcomplete-themes/main/walkingnodenetworks/walkingnodenetworks.json", + "answer": 78, + "imagery": "osm", + "language": "en", + "add-image": 20 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2564290500000004, + 51.1928764 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.12.8", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-15T20:48:06Z", + "reviewed_features": [], + "create": 167, + "modify": 0, + "delete": 0, + "area": 0.00000583677631999368, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113823101, + "host": "mapcomplete.osm.be", + "theme": "grb", + "import": 15, + "imagery": "AGIVFlandersGRB", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2524943, + 51.218247149999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.12.8", + "comment": "Adding data with #MapComplete for theme #cyclestreets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-15T20:24:26Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.00000299234779999665, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113821970, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "cyclestreets", + "answer": 2, + "imagery": "osm", + "language": "en", + "change_within_100m": 1, + "change_within_500m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.25789845, + 51.2076036 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Dampee", + "uid": "2175714", + "editor": "MapComplete 0.12.8", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-15T19:33:29Z", + "reviewed_features": [], + "create": 2, + "modify": 0, + "delete": 0, + "area": 0.0277351012938999, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113820175, + "host": "mapcomplete.osm.be", + "theme": "benches", + "answer": 2, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.6150423499999995, + 51.1610935 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "lebeno", + "uid": "1710114", + "editor": "MapComplete 0.12.8", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-15T19:20:51Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 0.0000939837382400018, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113819738, + "host": "mapcomplete.osm.be", + "theme": "food", + "answer": 7, + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7421088, + 51.0412423 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "francians", + "uid": "9006927", + "editor": "MapComplete 0.12.8", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-15T17:19:23Z", + "reviewed_features": [], + "create": 0, + "modify": 6, + "delete": 0, + "area": 0.0000366630589200139, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113815150, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 10, + "imagery": "osm", + "language": "en", + "change_within_5000m": 10 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.5410926, + 44.3860696 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "dekoe65", + "uid": "13921921", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-15T15:41:52Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.00000889276929998622, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113811125, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 12.85410045, + 52.165043600000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "plicploc", + "uid": "75871", + "editor": "MapComplete 0.12.8", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-15T15:21:46Z", + "reviewed_features": [], + "create": 0, + "modify": 6, + "delete": 0, + "area": 2.65645200003639e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113810342, + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "aed", + "answer": 8, + "imagery": "osm", + "language": "en", + "change_within_25m": 9, + "move:node/9247814726": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.5579327, + 50.6242225 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 4, + "name": "mass modification" + } + ], + "tags": [], + "features": [], + "user": "whatismoss", + "uid": "8427311", + "editor": "MapComplete 0.12.8", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-15T15:16:27Z", + "reviewed_features": [], + "create": 0, + "modify": 269, + "delete": 0, + "area": 0.00233214065237989, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113810139, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 447, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.96330215, + 50.4183087 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Maarten O", + "uid": "13326535", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-15T15:14:31Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113810072, + "host": "mapcomplete.osm.be", + "theme": "aed", + "answer": 1, + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2118652, + 51.2048584 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 4, + "name": "mass modification" + }, + { + "id": 83, + "name": "User has multiple blocks" + } + ], + "tags": [], + "features": [], + "user": "Simon M", + "uid": "517839", + "editor": "MapComplete 0.12.8", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-15T14:21:23Z", + "reviewed_features": [], + "create": 0, + "modify": 231, + "delete": 0, + "area": 0.000742580267359978, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113807773, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 324, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.593448, + 48.7254492 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Maarten O", + "uid": "13326535", + "editor": "MapComplete 0.12.8", + "comment": "Adding data with #MapComplete for theme #aed_brugge", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-15T13:52:53Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 4.11261619995775e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113806724, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "HDM_HOT", + "language": "nl", + "add-image": 8, + "change_within_1000m": 8 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2393514, + 51.210834750000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.12.8", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-15T13:42:18Z", + "reviewed_features": [], + "create": 0, + "modify": 34, + "delete": 0, + "area": 115.922662753623, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113806349, + "host": "127.0.0.1:1234", + "theme": "etymology", + "answer": 53, + "imagery": "osm", + "language": "nl", + "change_over_5000m": 53 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.79737515, + 52.242610049999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-15T11:27:33Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 1.17177180001118e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113800961, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "imagery": "osm", + "language": "nl", + "add-image": 1, + "change_within_25m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2381010999999997, + 51.18833585 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "whatismoss", + "uid": "8427311", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-15T11:19:08Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.000107223143040029, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113800605, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 4, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.95028465, + 50.4177244 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Nickrds09", + "uid": "966535", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #streetlamps", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-15T10:50:55Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 2.69268000126868e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113799603, + "host": "mapcomplete.osm.be", + "theme": "streetlamps", + "answer": 3, + "imagery": "osm", + "language": "en", + "change_within_25m": 1, + "change_within_50m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 121.5587778, + 13.96359275 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-15T09:17:52Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 3.24088799987655e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113795722, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "imagery": "osm", + "language": "nl", + "add-image": 1, + "change_within_25m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2713437, + 51.2003859 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #test", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-15T09:15:24Z", + "reviewed_features": [], + "create": 2, + "modify": 7, + "delete": 0, + "area": 0.000201693462579993, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113795604, + "host": "mapcomplete.osm.be", + "theme": "test", + "answer": 1, + "imagery": "osm", + "language": "nl", + "add-image": 6, + "change_within_25m": 7 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.275556, + 51.19025275 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Maarten O", + "uid": "13326535", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-15T08:25:33Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.0000194049454600024, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113793660, + "host": "mapcomplete.osm.be", + "theme": "aed", + "answer": 2, + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.23263115, + 51.2115921 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "danielhaniel", + "uid": "2608278", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-15T05:21:29Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 0.0000280521583199941, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113787479, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 5, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 10.1730426, + 52.17872920000001 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #cafes_and_pubs", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-15T00:48:25Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113783093, + "host": "mapcomplete.osm.be", + "theme": "cafes_and_pubs", + "answer": 3, + "imagery": "osm", + "language": "nl", + "change_within_5000m": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.9824694, + 51.1500361 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "FennecusZerda", + "uid": "665677", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-14T22:40:47Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000620114805003255, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113781509, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 1, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 10.149091349999999, + 59.755147449999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "nw520", + "uid": "6895624", + "editor": "MapComplete 0.12.8", + "comment": "Adding data with #MapComplete for theme #cycle_infra", + "comments_count": 1, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-14T22:33:47Z", + "reviewed_features": [], + "create": 0, + "modify": 7, + "delete": 0, + "area": 0.0000196494605999997, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113781375, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "cycle_infra", + "answer": 10, + "imagery": "CartoDB.Voyager", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.00325925, + 49.2319904 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.12.8", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-14T21:55:12Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113780467, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "food", + "answer": 1, + "imagery": "osm", + "language": "en", + "change_within_500m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7276412, + 51.0411273 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.12.8", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/seppesantens/MapComplete-Themes/main/walkingnodenetworks/walkingnodenetworks.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-14T20:00:32Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.0741323386900802, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113777162, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "gh://seppesantens/mapcomplete-themes/main/walkingnodenetworks/walkingnodenetworks.json", + "answer": 2, + "imagery": "osm", + "language": "en", + "add-image": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.5767153, + 51.0096022 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.12.8", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-14T18:04:50Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113773473, + "host": "pietervdvn.github.io", + "path": "mc/toilets-at-amenity/", + "theme": "toilets", + "answer": 1, + "imagery": "osm", + "language": "en" + }, "geometry": { "type": "Point", "coordinates": [ @@ -31157,16696 +126705,13268 @@ }, { "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.3499349, - 50.8533748 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 10.63322065, - 48.8411258 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.219522, - 51.21604535 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.8604582, - 50.99566 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.289834, - 41.610439 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.1775754, - 51.1128633 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.5803687, - 53.2510803 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.20418225, - 51.18284165 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.4392947, - 46.95332115 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2397780000000003, - 41.43957465 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.148393, - 51.1531118 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.44867075, - 46.96296565 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.2254811, - 51.2084386 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 11.3413453, - 44.380366 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 11.67208595, - 52.10917795 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 11.665308750000001, - 52.114730699999996 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.20680885, - 51.2305336 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.2170325, - 51.2149832 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2580250499999996, - 48.74150775 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 9.982036650000001, - 48.4100799 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 12.1995771, - 44.419088 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.42972365, - 46.953410950000006 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.30281045, - 50.833947699999996 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.433689749999999, - 46.9498844 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.8641211, - 51.0331532 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.8595969, - 51.0339334 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -9.10136625, - 53.2669087 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 30.6013954, - 50.4284077 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 30.59795485, - 50.429091 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.615215, - 50.8515194 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.18631465, - 50.815494900000004 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.1853377, - 50.814548 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.18632335, - 50.8154678 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 9.9102199, - 53.5662632 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.6454225, - 50.77147625 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -58.6672584, - -34.659333950000004 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.1128401, - 41.51369795 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 114.1728093, - 22.2773452 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 9.90980745, - 53.5710328 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 114.1728093, - 22.2773452 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 11.66709775, - 52.1275933 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.35413045, - 51.129450750000004 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.2199102, - 51.18215035 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.5108385, - 51.02711875 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.34535365, - 50.8756156 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.34535365, - 50.8756156 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 10.2197793, - 50.0550399 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 10.16562955, - 50.05992995 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 9.300674149999999, - 48.73751395 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.13701785, - 51.2912237 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 9.24298235, - 48.7546082 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 13.289573449999999, - 52.633128049999996 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 9.1522336, - 45.1799458 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 9.1884112, - 45.1594003 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.3460637, - 50.8181966 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -70.6661284, - -33.4410426 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -70.6662356, - -33.4405524 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.5483264, - 51.0209132 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.2324803, - 51.1870806 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.10732, - 51.0191728 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.962680349999999, - 51.51007905 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -70.66719255, - -33.440229200000005 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.3120827, - 52.0952965 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.0831776, - 53.0514086 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 174.6376345, - -36.9080008 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -78.4966095, - 38.0292344 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -78.49641105, - 38.029513949999995 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.7462493, - 50.882086150000006 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.31179995, - 48.902481050000006 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -43.95752195, - -19.8671501 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.2785507, - 51.0602815 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.5904223, - 51.96621175 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.7541618, - 50.8881994 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.5933867, - 51.9655788 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.0831776, - 53.0514086 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.8889407, - 51.1636509 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.8420487, - 50.8816233 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.88064465, - 51.15442585 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.3277199, - 49.7047654 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.8415804, - 50.8810941 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.3337069, - 50.9213363 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.4676368, - 50.7789634 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.6862591, - 50.9186731 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.6619207, - 40.5548316 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -122.3093423, - 47.5717359 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -122.31036425, - 47.5737862 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -122.30627595, - 47.604153100000005 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -70.9871108, - -34.592627 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.5834972, - 51.128417 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.2663029, - 50.6493925 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.1585628, - 51.1181747 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.2611535499999995, - 50.76968855 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.3779478, - 50.5894761 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.7114187999999997, - 51.04952395 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 11.3311382, - 44.5064686 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 11.2987561, - 44.4912213 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 11.3372532, - 44.51279605 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.7989668, - 51.2352485 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.3876739, - 50.814662 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 9.0417253, - 48.5106315 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.70464575, - 51.0505651 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -122.35579405, - 47.6522841 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -89.39523095, - 43.0759022 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.4931266, - 51.0240137 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.6100709, - 51.9644565 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.5483264, - 51.0209132 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -70.57429225, - -33.5943984 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.4784087, - 51.0338428 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -78.4683707, - 38.0246363 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 11.3459252, - 44.5016229 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -70.76828005, - -33.485767949999996 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.612652450000001, - 50.603597199999996 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.6039661, - 50.5217799 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 8.2322798, - 50.00430595 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.9100392500000005, - 52.07708505 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.4834706, - 51.1263994 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.2198444, - 51.2156765 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.9784675, - 51.45215465 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.98123295, - 51.450460500000005 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -122.35004635, - 47.6504853 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.912490200000001, - 52.077004 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.4122499, - 50.9198635 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.7043881, - 51.0527373 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.5483264, - 51.0209132 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 151.1473668, - -33.877031 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.9437802, - 51.4145483 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.4861886, - 51.0302155 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.9678074, - 51.19856835 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.260727599999999, - 50.77372025 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.44946665, - 51.088295 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.4481166500000002, - 51.085109700000004 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 122.52171455000001, - 12.42032665 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -70.5916481, - -33.6048667 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.6809309, - 51.0533349 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.1169699, - 51.1853225 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.0784276, - 50.9282274 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.718829, - 51.9723273 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -70.77061235, - -33.484625550000004 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.730679, - 51.0570573 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.3189133, - 50.7844049 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.9783645, - 51.4469767 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.9776831, - 51.4467987 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.9754290999999995, - 51.448456750000005 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -70.7685697, - -33.4852773 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.6361571, - 50.8671482 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -70.76847465, - -33.48529165 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.980164, - 51.4515591 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.6776237500000004, - 51.05316075 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.6923423, - 51.0522571 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.6873641499999996, - 51.051935099999994 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.8836749, - 51.3929233 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -70.76856685, - -33.4855934 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -70.76843740000001, - -33.4854654 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.6295405, - 52.06749415 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.6331904999999995, - 52.06488425 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.5003356, - 50.8024306 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -70.331597, - -27.3667738 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -6.9320182500000005, - 37.268227350000004 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.020231, - 41.3118936 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.1802422999999997, - 41.4315176 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.1783346, - 41.4315121 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.1799567, - 41.43060495 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.94941795, - 53.081298000000004 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -71.6323415, - -33.0487834 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -71.6298409, - -33.044419 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.1549186, - 46.3511896 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.7511256, - 51.1837616 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -70.5700547, - -33.5921539 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.8705054999999999, - 41.6339055 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -70.5705244, - -33.591813 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.2936882, - 50.7900105 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.6912024, - 51.06882145 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.94485965, - 51.3509725 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.96971445, - 51.4021099 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.124745450000001, - 52.07666125 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.1254283, - 52.0800196 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.96971445, - 51.4021099 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -70.6703281, - -33.4378348 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -70.66508205, - -33.4413164 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.4155033, - 46.9354862 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.1240626, - 52.0733029 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 11.78176805, - 48.0965631 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.1590598500000002, - 41.43716725 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -6.0178028, - 38.2408024 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.1850213, - 48.9201129 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.1850213, - 48.9201129 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.63421855, - 51.96134585 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.630075550000001, - 51.96047885 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.24551165, - -39.81183395 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.6314213, - 51.9586447 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.2644413, - 51.9566396 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -70.666665, - -33.4405009 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -70.66548725, - -33.44066745000001 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -70.6649823, - -33.44123 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.23337505, - 50.71058015 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.4937944, - 50.8055185 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.419711, - 46.932459 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 123.9427891, - 10.3279113 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.212412, - 51.1812564 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.2198417, - 51.2156931 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.2243352, - 51.2043211 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.2250906500000003, - 51.2052578 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.2244503, - 51.2051514 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.54923275, - 51.993055 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.5480679, - 51.9716756 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.55018145, - 51.9939315 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.6375207, - 50.9306339 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.7848262999999998, - 50.288463899999996 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.8717445, - 50.3763515 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.54659575, - 51.9802843 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.8759797, - 50.393442 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.063949, - 50.9178564 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.39102705, - 51.41294605 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.8458316, - 47.9957557 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.8655851, - 50.4656655 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.7434571, - 50.4684935 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.6952149, - 51.0429887 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.72338, - 51.074132750000004 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.23295315, - 51.19848565 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.9621834, - 43.09315325 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.5935324499999997, - 51.0801166 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.1249256, - 52.0723886 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.6856499, - 50.4803465 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.1289433, - 52.0751935 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.9011496, - 51.0901087 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.7549933, - 51.1682088 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.23100955000001, - -39.8449823 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 11.3452181, - 44.4918527 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.47904395, - 51.1638611 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 11.3429674, - 44.49055415 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 11.3430292, - 44.4900047 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.237850249999999, - 50.7356509 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.722367, - 51.06025905 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.7259104499999998, - 51.0442976 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 11.333306, - 44.4993477 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 11.33470305, - 44.50277775 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 11.3382193, - 44.5048172 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.72181375, - 41.220075800000004 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.45347285, - 51.18067835 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.68603245, - 51.04304185 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.71299535, - 51.07116415 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.88819725, - 51.0026768 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 11.310816, - 44.4956116 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 11.31224255, - 44.49972205 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -9.1330343, - 38.7351593 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -9.13839015, - 38.7223661 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -9.1330343, - 38.7351593 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.1372851, - 52.08506655 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.9689054500000003, - 50.9751826 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 11.3536417, - 44.5388807 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.0958256, - 50.99626495 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.09523855, - 50.995809300000005 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -122.37163425, - 47.6802721 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.1760177, - 51.01786285 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.94073589999999, - 40.58705475 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.46093245, - 51.1793589 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 148.0752161, - -42.1237047 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.15613075, - 51.01908525 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.1795777000000003, - 41.43358645 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.163357, - 51.1860935 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -118.7131072, - 34.09303185 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.6572492, - 45.5734327 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 9.9091482, - 53.60843175 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -80.2696517, - 27.1695582 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.126649649999999, - 51.0239939 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 9.196214600000001, - 45.45284085 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 12.15159525, - 48.559054849999995 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 9.1102693, - 45.4307345 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.9139572, - 56.1184677 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.96018855, - 51.21921105 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.22379395, - 51.2099135 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.2070707, - 51.2057659 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.13932645, - 50.8420987 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.92375535, - 51.22478025 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -70.6707891, - -33.435642 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.473981, - 51.0323917 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.211270150000001, - 51.511902000000006 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.34247735, - 51.47048595 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.1234536, - 52.0823233 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.1308647999999994, - 50.998833 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.115708850000001, - 52.09265499999999 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.68893315, - 51.163898 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.3853565, - 51.1826524 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.272129250000001, - 51.4820573 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.4892502, - 51.9009947 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.7208301, - 51.0541539 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.7219512, - 51.0594005 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.7285763, - 51.05652275 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.7197948, - 51.0466304 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.8326445, - 40.343163950000005 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.12564165, - 52.07643485 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.3815402, - 52.114142150000006 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.127792, - 52.0844943 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.8825673, - 51.0015189 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.8802570999999997, - 51.0059073 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.4184579, - 51.0117709 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 123.9419389, - 10.328426 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.6656229499999995, - 52.0207697 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.3953575, - 52.1045726 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.3775823, - 52.1116123 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.7139395, - 51.0418714 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.7197948, - 51.0466304 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -49.26973085, - -16.60013685 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.4784087, - 51.0338428 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -70.66624475, - -33.440266699999995 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.7232309, - 51.0422215 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.2631580499999995, - 51.50908565 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 11.3313426, - 44.5151128 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 11.3356062, - 44.517966 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.21842755, - 51.485547049999994 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.2188914, - 51.48180605 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.23447, - 50.7330014 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.2165796, - 51.1966576 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -70.6656069, - -33.4402674 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -70.66695304999999, - -33.440989450000004 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.5108385, - 51.026933299999996 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 11.3460846, - 44.4968805 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -70.6655717, - -33.440496100000004 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 123.94311354999999, - 10.32842665 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.68050505, - 51.0730919 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.2264808499999997, - 51.218427899999995 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.3628355, - 50.9308665 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.12660875, - 52.056700649999996 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.2268238, - 51.2090664 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.1165435, - 50.7941926 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.0017191, - 51.0972734 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -70.6665444, - -33.4402128 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.6964697500000003, - 51.05501175 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -70.6657956, - -33.44041345 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.1589093, - 51.3234098 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.21142225, - 51.2136497 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.2413718, - 51.2033866 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.2214650999999996, - 51.216511999999994 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.0084192, - 51.0455108 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.2301736, - 51.2136117 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.5483264, - 51.0209132 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.24357795, - 51.21016885 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 11.2896052, - 44.5163488 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.9269886, - 42.685478599999996 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 11.340170449999999, - 44.496238950000006 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -70.6649128, - -33.4397615 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -7.1488974, - 37.3021427 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.4802631, - 51.03197145 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 11.2492109, - 46.4635196 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 9.976179949999999, - 47.91576445 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -70.6660433, - -33.4407233 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -70.6666115, - -33.4410701 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -70.5606231, - -33.5923823 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.243217700000001, - 51.0670852 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.4733506, - 51.0203947 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -70.56981865, - -33.592443349999996 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.1524921, - 52.0273061 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -70.56948514999999, - -33.5930872 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -72.4816568, - 43.29756645 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.7089318, - 51.0506301 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -90.0541458, - 29.9774995 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 11.32365545, - 44.512713149999996 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -70.666804, - -33.4402386 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.1165435, - 50.7941926 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.2128207, - 51.0556986 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.60811895, - 50.9562043 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.2008889, - 51.0566202 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.19744225, - 51.05136925 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.4834303, - 38.36955365 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.1781891, - 41.4326157 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 10.544343, - 52.9864598 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.17913625, - 41.43186095 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.9818392, - 51.3173752 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.5569267, - 51.1851613 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -122.21284295000001, - 47.6795755 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 11.3164676, - 44.506155 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.1365871, - 52.0626422 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.43328855, - 51.1656861 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.7036862, - 51.05718505 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -70.66710950000001, - -33.4395362 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -70.66820335, - -33.43917225 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.55219895, - 44.3052706 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.4776314, - 51.0320371 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 11.3385643, - 44.5058257 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.9340209, - 50.883268150000006 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.3379058, - 50.8331733 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.2829442, - 50.7023665 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.015015999999999, - 50.890615600000004 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.2182265, - 51.2187983 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 9.1174573, - 45.4932035 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.1320768, - 52.08401 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.3764752, - 51.1887924 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.7288407, - 51.0483444 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.2896939, - 50.7282592 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.7089667, - 51.0339914 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.7040289, - 51.0406965 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.08200655, - 53.0501675 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -70.6653146, - -33.4405225 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -70.66601005, - -33.44084985 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 11.33608835, - 44.52161945 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.2166172, - 51.213796349999996 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.01534855, - 50.8911562 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.12534365, - 52.0751711 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.1237834, - 52.077176 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.12364815, - 52.0812872 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.4784087, - 51.0338428 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.475491, - 51.0262159 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.4784087, - 51.0338428 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -7.9977143, - 37.097959 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 11.328988599999999, - 44.512492949999995 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -8.1790775, - 37.2334741 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -70.66584835, - -33.4402704 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -7.7009194, - 37.1252454 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 11.3579385, - 44.510412849999994 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.0149703500000005, - 50.89125935 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 11.3577996, - 44.50819825 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.7806433999999998, - 39.64794675 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.7728815, - 39.648012 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.7744178, - 39.64887685 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 11.342334300000001, - 44.5084494 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.0111361500000005, - 50.88470185 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.1077964, - 52.0957511 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.2947933, - 51.08497405 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -77.0356957, - -12.1281742 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -77.0412662, - -12.12189475 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.9569762, - 52.119684899999996 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.9542906, - 52.130140600000004 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.2100195, - 51.198730499999996 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.2142827, - -39.8393394 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.70717715, - 51.029522 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.35958595, - 50.857106099999996 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 9.2263631, - 45.4844916 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.2561551, - 51.1574858 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -71.94427285, - -36.640838450000004 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -71.05959345, - -34.06783815 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.32665055, - 50.87935055 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.2421657, - 50.7423639 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -70.66676885000001, - -33.44088895 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 9.1884112, - 45.1594003 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.9615555, - 51.0704267 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.3217388, - 51.5843333 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.31624695, - 51.5836589 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.3290022, - 51.577778 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.3292972, - 51.5774994 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -70.57000074999999, - -33.59225365 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -7.6782291, - 37.095724 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -70.6666959, - -33.4410356 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.9329197, - 50.8072454 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -122.37033735, - 47.6819544 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.12598585, - 41.379443550000005 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 8.923514, - 48.6254402 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -70.5712225, - -33.59082035 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.381626150000001, - 50.9309927 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 8.8996291, - 48.6604416 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 8.904362299999999, - 48.622651000000005 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.3761334000000005, - 50.93647335 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.38450825, - 50.928748600000006 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -43.9619181, - -19.8680519 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.7196875, - 51.0458851 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -70.5712297, - -33.5905869 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -70.67022890000001, - -33.44014905 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.3555574, - 50.847501 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 11.328579000000001, - 44.51435205 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 11.35641345, - 44.5013925 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 11.3491578, - 44.5004854 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.7196875, - 51.0458851 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.2972979, - 51.469178850000006 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.706322, - 51.0513358 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.1625554, - 51.5120398 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.714256, - 51.052328 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 11.3704151, - 44.5026081 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -70.66606265, - -33.44069815 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.1184193, - 51.028489 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.11615415, - 51.023584 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.3522822, - 52.1307702 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.8869124, - 51.15442585 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -70.66618135, - -33.4409388 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -70.66593449999999, - -33.44053265 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -70.66631659999999, - -33.4407037 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.1559722, - 51.3128267 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.6153566, - 51.97151955 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.6686743, - 53.1217365 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 14.6423829, - 51.7475349 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.6805995, - 53.0767525 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 24.64019285, - 60.14990365 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 14.6457168, - 51.7436771 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.7217118, - 50.2997137 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2208848, - 41.4434507 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.604115050000001, - 51.96554185 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 121.5753042, - 13.94833535 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 121.5266097, - 13.9618558 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.3956956, - 51.0618712 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.1383536, - 48.4387268 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.1807232, - 48.905622 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 11.7777917, - 48.1106173 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 125.6132843, - 7.0810085 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.3309564, - 51.0008052 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.6052710999999995, - 51.964066900000006 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2707072, - 48.8854112 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.612473700000001, - 51.966145850000004 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 11.3437134, - 44.4926522 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 8.6807961, - 49.4082013 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.6853959, - 53.093366 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.667859, - 53.0865434 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.4785197, - 51.12169204999999 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.60077925, - 51.984085 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.7875312, - 51.2629135 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.67172295, - 51.038554250000004 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.116502, - 51.2896921 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.63582415, - 51.9747927 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 25.1359414, - 60.2843251 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.66598825, - 51.9904876 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.664737, - 51.9874499 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2220553499999998, - 41.4406696 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.23545105, - 46.65985685 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.664675750000001, - 51.983955800000004 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.7076497, - 51.0527377 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.610163399999999, - 51.964806100000004 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.4424327, - 51.5800064 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.8990066, - 42.7019566 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.22121365, - 41.4388982 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 122.5663318, - 10.6978999 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 122.5676608, - 10.6979935 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.52963305, - 52.06181755 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.5399294999999995, - 52.060113099999995 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2125226500000004, - 48.8769602 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.6039803, - 53.81568985 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.77511055, - 51.04929225 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.9406506, - 42.6885199 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.7367263, - 51.0567966 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.2773693, - 51.1411478 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.27960755, - 51.13873235 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 123.8552731, - 9.651098 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.29111495, - 51.138160799999994 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.55113455, - 47.23013 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.5353583, - 47.2348378 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -74.2946997, - 40.0078117 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.3127014, - 50.9999245 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.9391837, - 42.67761245 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 13.6827261, - 51.0711484 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.9209982, - 40.5834518 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2710022, - 48.8856122 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 12.9228187, - 43.7338638 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.87308755, - 43.605526749999996 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.6633976, - 50.8056975 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -79.857119, - 43.252467499999995 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 11.1892235, - 44.6373819 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 13.3503836, - 52.5298945 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.65447915, - 50.822216 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 11.77156935, - 48.07982595 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.4189151, - 43.65091185 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 11.3408582, - 44.4997321 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.3260135, - 51.000644 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.3244923, - 50.9997912 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 121.0828409, - 14.6596073 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 11.7667222, - 48.112535300000005 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.1001049, - 51.0165051 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 11.765712350000001, - 48.1083301 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.3776462, - 52.1109647 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.19442785, - 48.493589 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 41.13276005, - 37.8570153 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.12519655, - 52.087020949999996 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.2903521, - 50.7295549 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 121.9609121, - 13.741767549999999 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.3496761, - 50.8484877 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.4736377, - 51.127487099999996 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.2673597, - 50.6998045 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 122.06508794999999, - 13.8806443 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 121.98013900000001, - 13.76260375 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 121.5592763, - 13.9654559 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 121.5693514, - 13.9474464 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 125.6069952, - 7.0685686 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 123.94137945, - 10.3282972 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -122.27791745, - 47.7566983 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.709485, - 51.05970835 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.6331276, - 51.0123862 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 9.644862199999999, - 45.496666399999995 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.1979603, - 48.47839345 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 37.61821865, - 55.7135046 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.7043881, - 51.0527373 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3516804, - 48.9176894 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.8206109, - 50.9322662 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.9264483, - 42.6576455 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 121.5602278, - 13.963747349999998 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.3956645500000002, - 51.035928600000005 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.40144025, - 51.04021015 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.3955539, - 51.041811 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.1246316, - 52.0640521 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -93.2266867, - 44.9250087 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 121.5611337, - 13.964858 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.452056499999999, - 51.16578 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -82.4353854, - 38.4095972 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -82.4355031, - 38.4107301 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.3996981, - 51.0422216 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.39846125, - 51.040937400000004 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.7083597, - 51.0344284 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.33376155, - 60.3956242 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.61190895, - 51.966736499999996 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 123.9453466, - 10.326233 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -82.43544065, - 38.4097843 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2201841, - 41.4424398 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.6998021, - 50.8794035 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.26013865, - 50.7373888 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.4389646, - 51.6000302 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.46051495, - 51.6131807 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.377617, - 50.863287 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.34342565, - 51.11081085 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.2309894, - 51.562237350000004 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.24147635, - 51.5658794 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.6996553, - 51.0521448 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 8.59393635, - 47.4109246 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.348305699999999, - 51.112392850000006 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.34877945, - 50.8676184 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -71.41285429999999, - 42.51649165 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.6319973, - 46.75648255 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.2675099, - 50.7129995 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.2930548, - 51.5605659 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.1236589, - 52.06611545 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.2029236, - 52.01746955 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.33383325, - 51.5352116 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.3191073, - 51.544087399999995 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.2022732, - 50.9096269 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.1285244500000005, - 52.0633839 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.1310661500000005, - 52.0734135 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.19407185, - 50.9226867 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.2296129, - 49.9212138 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.1980299500000005, - 50.928646 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.3440142, - 51.5417397 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.36784805, - 51.5519979 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.19466695, - 51.0505694 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 41.1176319, - 37.9059134 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -70.72286005000001, - -33.4337893 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.1118165, - 50.999427 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.1256514, - 50.9924841 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.3918089, - 50.8457251 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.1251972, - 52.0803334 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 11.551116, - 48.1437266 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.64203045, - 51.064950350000004 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 18.7153246, - 46.3473224 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 18.5310107, - 46.2983756 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 24.72087295, - 60.164690050000004 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 19.0979565, - 47.559217 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 11.5143081, - 48.1391637 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 19.21700565, - 47.48696645 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 19.237448, - 47.4826637 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 11.883755, - 44.2846558 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.6449865, - 51.0940244 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 99.1390195, - 18.7485279 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 115.768089, - -32.055927 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 175.2197404, - -40.46107615 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 10.1239779, - 54.3264599 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 41.10913835, - 37.8621806 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 41.1293489, - 37.8943816 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 25.4270774, - 57.3837463 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 41.09752765, - 37.84683495 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.8391177999999999, - 51.130258 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.9073992, - 52.404361949999995 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -85.17043415, - 41.0795563 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -85.1569461, - 41.08970645 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -85.02470170000001, - 41.408981100000005 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -85.21750209999999, - 41.0497343 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -85.15871295, - 41.08753605 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -85.18066114999999, - 41.07892185 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -85.1795744, - 41.088582 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.27922425, - 48.14709545 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -81.4503622, - 39.410636 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 151.2959513, - -33.7027022 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.7030966, - 50.8789727 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 150.3785788, - -35.555895750000005 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 150.37994400000002, - -35.5548857 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 150.3777334, - -35.5567564 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 151.2814003, - -33.7044204 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.25903275, - 51.8222502 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.2510968, - 51.8217336 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 12.0682571, - 55.8387637 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 8.44694775, - 48.831289049999995 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 8.53531555, - 48.0541955 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.7016007, - 50.8617558 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 14.5848571, - 46.0554088 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 14.6044779, - 46.1405958 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 14.5823525, - 46.0538395 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 8.1667269, - 47.7592266 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 13.08300595, - 52.39096485 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 18.0532542, - 59.3280479 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.186226, - 50.791883 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.23062295, - 51.207059150000006 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -80.4528252, - 22.142556550000002 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.1127181, - 50.9586203 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.1129396, - 50.9586681 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.1804904, - 50.787774999999996 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.2196887, - 51.2116155 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.39774275, - 51.041594700000005 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -71.82477639999999, - -36.1375687 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -122.3656633, - 47.6833449 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -70.9875318, - -34.5789783 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.1696897, - 52.0642062 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.2008889, - 51.0566202 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.4396516999999998, - 51.079451649999996 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.5969482, - 51.960931 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 121.0801399, - 14.627217 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 121.08002834999999, - 14.62726415 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.3732209, - 50.823650400000005 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.3717702, - 50.836002500000006 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.3311079, - 50.8281226 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.4049165, - 51.2255603 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.4178337, - 51.2250521 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -76.8378696, - 39.1773855 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.20380205, - 50.9201449 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.581072750000001, - 51.2926095 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 123.9414342, - 10.32766865 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.0802326, - 50.7483334 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.0803936, - 50.7482694 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.18619965, - 50.8029491 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 11.111650699999998, - 44.8915116 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 11.1117, - 44.8914119 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 11.12801045, - 44.82816575 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 11.1440383, - 44.77670835 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 11.144091249999999, - 44.776653749999994 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 11.208219750000001, - 44.62089455 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 11.20821665, - 44.62065385 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 11.210166699999998, - 44.615996249999995 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.4807181, - 51.0244802 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.4807181, - 51.0244802 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.9145579, - 50.5179022 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.9145799, - 50.5181073 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.8697363, - 50.3727392 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 17.4726391, - 49.0704289 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.2244466, - -39.8271305 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 123.94531219999999, - 10.3293194 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -70.7322572, - -33.4072292 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.78439705, - 52.2290127 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.6100038, - 51.9647292 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 11.3425459, - 44.5032332 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.7373068499999995, - 52.220523549999996 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.3456652, - 50.8350219 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.09525235, - 50.99594035 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.794268150000001, - 50.97436585 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.21656295, - 51.244409000000005 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.209079, - 51.1925388 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.7275342, - 52.22449535 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.7296015000000002, - 51.0508134 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.7055742, - 51.0558532 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.7337853, - 52.225321 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.6043096, - 50.8529614 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.198081, - 51.201627 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.1973138, - 51.2008153 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.20798675, - 51.2062196 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.83656535, - 50.98734195 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.722986499999999, - 52.22228135 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.83650355, - 50.9865121 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 11.345097299999999, - 44.5107983 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.4073440999999995, - 51.9211641 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.40757975, - 51.921111749999994 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.4081759, - 51.9212422 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.4486801, - 51.904408399999994 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -71.441575, - -33.0500485 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.0046157, - 50.8964051 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 11.3425459, - 44.5032332 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 11.33836805, - 44.4989622 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.8360416, - 50.986051450000005 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.23805335, - 50.885279749999995 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 123.9404717, - 10.3292374 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 123.92198594999999, - 10.33818525 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.4077894, - 51.9209483 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 9.90769755, - 53.609603 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.39999115, - 50.82557315 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.7475748, - 51.0455389 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.35240855, - 51.30594765 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.26724155, - 50.6997463 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.1102168, - 51.0214354 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.2311538, - 51.33597315 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.11034435, - 51.0214572 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.7489742, - 51.0413653 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.7517157, - 51.04478105 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.1139212, - 52.08138995 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.112507900000001, - 52.081776649999995 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.87194575, - 51.0002284 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -122.3684554, - 47.6796484 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.1436508, - 51.1713439 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.4510942, - 51.0964328 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.44279065, - 51.095555700000006 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.4468089, - 51.090752 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 9.9201219, - 53.6188554 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.7507582, - 51.0442895 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.8628745, - 51.1327033 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.7513375, - 51.0446731 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.1440102, - 51.1724743 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.716965, - 51.0341386 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.8239271, - 50.7374363 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.2362217, - 50.735992 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.25500125, - 51.44798445 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.2200536, - 51.2157723 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -70.7324476, - -33.407209 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 13.2995993, - 52.5213147 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.3460678, - 50.841520700000004 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 9.1900152, - 45.4656144 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.1366728999999998, - 51.315722550000004 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.21724295, - 51.2120107 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.9933496, - 51.163066 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.9933259, - 51.16306575 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.4892502, - 51.9009947 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.8856546, - 50.6829334 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.5303126, - 50.6037899 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 9.1757848, - 45.4635752 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.554868, - 50.5942339 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.1301413499999997, - 50.95133615 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.1053365, - 50.9870572 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.0929177, - 50.9946582 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.0964235, - 50.997031699999994 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.0980845500000003, - 50.987492 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2028713, - 48.5011147 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.1183711, - 50.9641453 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.1319752, - 51.2838332 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.5935479, - 51.1852562 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 10.1698273, - 52.9012462 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.1167767, - 50.9928367 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.0957344, - 50.996829000000005 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 9.2014294, - 45.3565504 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.224726, - 51.2021413 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.5965995, - 51.9497286 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.358930900000001, - 50.89988295 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.13103445, - 51.31298645 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.3671199000000005, - 50.87177965 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 123.95219565, - 10.3396154 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.3422572, - 51.2470648 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 9.260155300000001, - 45.4676949 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.7358061, - 52.6201108 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.743646249999999, - 52.62733815 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.3872587, - 49.884646399999994 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 121.0669408, - 14.572291 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.99613195, - 43.2900836 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 9.904452599999999, - 53.6078371 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 9.91479025, - 53.60877845 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.1235607, - 52.08536065 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 121.06255065, - 14.5743747 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.7328329, - 52.6163104 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 121.0669408, - 14.572291 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.8708919, - 51.01655315 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -70.7674406, - -33.4874239 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -70.7674406, - -33.4874239 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -70.7674595, - -33.4874413 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.3780276, - 50.8603775 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.2542579499999995, - 51.9564546 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.8081131, - 50.724030400000004 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.6996004, - 51.05936 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.1163223, - 52.0731162 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.71149255, - 50.8815833 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.7105625, - 52.6003287 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.661284950000001, - 49.93608915 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.4446054, - 51.1900344 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.8240842, - 50.73734745 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.8236044, - 50.7375385 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.4438583000000005, - 51.18943075 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.8116952, - 50.7486504 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.804531, - 50.6994104 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.2007486, - 50.986216150000004 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.268695, - 50.986261 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.9743066, - 42.3045529 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 8.508066249999999, - 47.1583082 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.722838899999999, - 50.87538325 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 11.3336542, - 44.49516355 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 11.327612949999999, - 44.489386249999995 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 8.50951195, - 47.1440686 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.7300211, - 50.8866063 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.91501175, - 51.227475749999996 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.46708445, - 52.33395005 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.5285835500000005, - 51.9567207 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.2307119, - -39.84341085 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.2372803, - -39.845244 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.68591945, - 53.86010565 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.3178882, - 45.701599650000006 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -58.594497849999996, - -34.64502795 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -58.7917208, - -34.649936 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.2061303, - 51.1871501 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.2084011, - 51.1869047 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 10.3257719, - 43.5032495 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -70.7310614, - -33.4677007 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 122.09953485, - 13.92089145 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -58.4666664, - -34.53998395 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 16.60259305, - 49.2251541 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 16.6172481, - 49.2177212 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.02200465, - 50.9174665 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 9.9549544, - 53.6245624 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 9.973136499999999, - 53.631291700000006 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 43.8566539, - 56.2576637 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.9517362, - 50.8464569 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.9468304, - 50.8470988 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.7515642, - 50.9784145 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.0210699000000005, - 50.9183135 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.958101, - 50.8471648 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 9.9135947, - 53.6079631 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -122.35904239999999, - 47.675138000000004 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.9269374, - 50.3546674 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.4607644, - 42.35879065 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.8827781, - 51.215784549999995 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 43.8590768, - 56.2553563 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.09923075, - 51.19348925 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.9001811, - 51.21942425 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.6419618, - 49.9305073 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.6461159, - 49.9334178 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.6421056, - 49.9303136 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.7907508, - 50.785135600000004 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.3486896, - 51.1744232 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3779956, - 48.908687 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.1191509, - 50.9693049 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.4155276, - 51.2062991 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.4533185, - 51.25020945 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -58.6400716, - -34.6513452 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 43.8592109, - 56.2416367 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -58.6027297, - -34.645712599999996 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.23532355, - 50.7344225 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.1226049, - 52.0831865 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -58.7551985, - -34.657894049999996 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 121.0064341, - 14.5511908 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.9881632, - 51.1787212 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.0526434, - 51.1962641 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -82.43556305000001, - 38.410135 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.2123712500000003, - 51.1917379 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.20446725, - 51.2150768 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 13.819718049999999, - 51.81127015 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -58.59432605, - -34.6447223 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 13.806082199999999, - 51.8169858 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -58.6310854, - -34.6520687 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -58.69289845, - -34.6621691 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2165779, - 41.4330737 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.23078415, - 41.440836399999995 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2219420000000003, - 41.43591605 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 14.1477031, - 52.3448603 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 13.7139912, - 52.2423022 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.036989350000001, - 51.1393507 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.2177818, - 51.20740275 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.2034321, - 51.1822992 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -70.4734044, - -33.5889291 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.573256600000001, - 50.9321513 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 10.04383355, - 53.256570499999995 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2441183, - 41.4470779 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2440553, - 41.4471712 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2440553, - 41.4471712 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2440902, - 41.4471234 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2440868, - 41.44712455 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2440287, - 41.4472179 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2440902, - 41.4471234 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2436824, - 41.4478395 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 11.7966235, - 48.1144586 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -58.62557405, - -34.65190285 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.19414885, - 51.2022593 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.1959963499999997, - 51.19238775 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.196541, - 51.1913916 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 10.3175247, - 43.5129753 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.2018441, - 51.247683 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 121.01143775, - 14.60215685 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.37910115, - 50.86689885 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.402338, - 51.039901 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.25165135, - 41.44837595 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2531290999999998, - 41.4505361 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 12.7623636, - 52.1835731 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.2158218, - 51.2006089 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.4683959, - 46.9334184 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 23.3210091, - 42.6795374 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 13.76625915, - 52.8400339 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -70.4846171, - -33.5905772 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 23.3616829, - 42.7037798 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.2324194, - 51.221882449999995 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.713385, - 51.092517099999995 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.2158218, - 51.2006089 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.3197247, - 45.70180405 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 121.0535163, - 14.7564885 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 121.05351089999999, - 14.75653905 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -122.3893261, - 37.770719 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.4352976, - 51.191794 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.84051635, - 50.86614145 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.2752024, - 50.7917724 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.106668, - 51.0274239 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.2023899, - 52.0686648 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.46774745, - 50.77929245 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -9.29504625, - 53.85439265 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 9.9432471, - 51.53845695 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 21.25382085, - 48.72730525 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 21.2563617, - 48.7374982 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -70.7584149, - -33.4895703 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.5472319999999999, - 51.4319502 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.614514, - 50.7909286 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 12.756734999999999, - 52.18132575 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.6910387, - 50.8416995 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 11.7887527, - 48.1039734 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.6746772, - 50.8518793 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.9047789999999996, - 52.4055037 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.6922644, - 50.8546733 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -89.59835100000001, - 44.530470449999996 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -89.5715612, - 44.5272569 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 21.92493695, - 48.749327300000004 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 120.9734014, - 14.6264747 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -122.371635, - 47.6815637 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.7080653, - 51.0016916 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.70902825, - 51.002085199999996 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.4900823, - 51.0255114 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.325668, - 51.0851891 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.324901, - 51.0848623 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.3250432, - 51.0848202 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.0938607, - 51.0299026 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -58.7871767, - -34.6603102 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -58.790958849999996, - -34.658889099999996 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.73894005, - 51.07994775 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2152739500000003, - 41.4346289 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2135683999999998, - 41.4375731 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.21459425, - 41.43908105 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.217211, - 41.44065545 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.6734764, - 52.1223227 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.37460995, - 50.95609045 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.8008447, - 50.9731441 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 12.7625809, - 52.183676 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.374147, - 50.8678918 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -58.62278435, - -34.650230300000004 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.2061303, - 51.1871501 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 12.7625809, - 52.183676 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.14727235, - 51.07386030000001 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.2843487, - 51.2471323 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.29516325, - 51.2515511 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.2368134, - 51.1928043 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 17.0424686, - 51.0993964 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 13.8147658, - 53.1617286 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 121.0171562, - 14.5568088 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -58.6494128, - -34.6543642 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.3107749, - 51.1620554 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.23143845000001, - -39.819421250000005 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.2077396, - 51.2500368 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.7091491, - 51.0691059 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 13.8549909, - 53.1356141 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -58.58407975, - -34.645720600000004 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 13.853645799999999, - 53.129142200000004 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.21228935, - 51.2381667 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.255092149999999, - 50.74929295 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 13.7963319, - 53.1290517 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -58.72981245, - -34.66411025 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -58.5969843, - -34.6450966 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.4833377, - 51.0134216 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.71845875, - 51.0784364 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.23125875, - -39.8190834 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 13.4079707, - 52.5020373 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2240514, - 41.4417342 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2225965, - 41.4440076 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.1138035, - 50.7955749 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -58.662437499999996, - -34.65480575 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.3319900000000002, - 50.9880195 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.2255468, - 51.2076194 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 8.6986102, - 50.1287726 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 13.8452518, - 53.13347455 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.2320207, - -39.8183833 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.2312281, - -39.81929845 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.7446938, - 51.1793416 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -58.6431496, - -34.65222145 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.2519605, - 51.1968298 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.7315988, - 50.87381135 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.7344131, - 50.8700529 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.1136635, - 51.0178601 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -122.37015615, - 47.6948642 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -58.7267282, - -34.6645689 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 149.06017185000002, - -35.231631 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.2453575, - 50.731274799999994 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.4747274, - 51.0270199 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.2521088, - 50.7411765 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -58.65658295, - -34.65332685 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.4981589, - 51.0255454 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.93846925, - 42.68486875 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.02077345, - 50.83733555 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.2251739500000003, - 51.20791935 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.2335913, - 50.7345064 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.468469, - 51.0310196 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 121.0071355, - 14.7190524 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 120.9940356, - 14.7303498 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.2453575, - 50.731274799999994 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.1042263, - 51.0214067 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.5249457, - 50.7767051 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.1001049, - 51.0165051 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.5251066, - 50.7767484 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.11835755, - 52.096576 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.7363475, - 50.8773984 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 8.6188464, - 45.4487601 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.7415926, - 50.8787892 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.735982, - 50.87727125000001 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.7323153, - 50.8748135 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.1237641, - 52.0848937 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.221376, - 41.4389884 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 113.4056023, - 23.0781105 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.45296565, - 45.445305000000005 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.221924, - -39.813445650000006 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.765833, - 50.2997654 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.0361083, - 51.2711004 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.8774373, - 50.9694044 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 19.52303335, - 50.5240756 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2174305, - 41.4385019 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.2203555, - 51.20661 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.235082, - 51.2096004 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2150213499999998, - 41.438468150000006 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2139703, - 41.4361383 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.5190169000000004, - 51.02368035000001 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2173656499999996, - 41.43833875 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2172017, - 41.434478150000004 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -74.1442248, - 40.06020855 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 121.0018167, - 14.572307 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.7704386, - 51.086784699999995 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.3510853000000003, - 51.12035995 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.2917034, - 51.1194612 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.2916979, - 51.1194475 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2163805500000002, - 41.43967845 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.69846715, - 51.071773699999994 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.2129082, - 51.2048633 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.5928277, - 44.8376667 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.5864462, - 44.8556083 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -58.65663195, - -34.65148765 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 10.204661300000001, - 59.7365509 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.11833765, - 52.1010281 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.823591, - 41.7275416 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.11099965, - 52.1085511 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 121.0345202, - 14.5668445 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -58.7530451, - -34.6703418 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 30.25208455, - 53.73048105 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 10.24717815, - 59.75303675 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 24.01391385, - 56.945104400000005 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 9.90920725, - 53.66523165 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.4227627500000004, - 51.1023685 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 11.776667849999999, - 48.10687955 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 9.90998645, - 53.66403065 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 9.89911965, - 53.608688 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.4458708500000004, - 51.092950099999996 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 11.7705245, - 48.1048285 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -58.7922004, - -34.64985275 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 9.92746095, - 59.7159054 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.6307239000000004, - 44.17029475 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -58.73429595, - -34.66356725 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -58.5657576, - -34.6405413 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -8.6113777, - 41.1460496 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -8.612524350000001, - 41.14066355 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.43869195, - 51.0801872 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -71.2708725, - -32.983775 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.7019879, - 51.0584335 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.0380195, - 51.457571099999996 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -71.2706328, - -32.9839877 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 11.767740100000001, - 48.113208650000004 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 11.76746245, - 48.11476485 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.9931475, - 50.8290779 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.07470975, - 51.4148192 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -58.633130949999995, - -34.6531933 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -77.6209281, - 43.11637895 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 121.0388835, - 14.6079696 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 120.58377300000001, - 14.13368525 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 120.5912738, - 14.1325571 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -84.54920870000001, - 42.7354279 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -58.568991999999994, - -34.6431586 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.9373163, - 48.4837389 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.4501882, - 51.1738214 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.1213388, - 51.518561399999996 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.072036349999999, - 51.48815095 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.76689865, - 51.00651235 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -58.7917543, - -34.64996855 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.1941562, - 41.415860949999995 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.276447, - 51.387630900000005 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 121.0592133, - 14.7358283 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.53862785, - 51.30497205 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.73253795, - 51.046897200000004 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.524248699999999, - 51.33767885 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.3291065, - 51.42827975 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 121.53007235, - 13.964517050000001 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -58.64622055, - -34.6512051 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.154912, - 45.6122344 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.2198332, - 51.215705 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -77.78820765, - 42.2565572 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -77.788479, - 42.2567096 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 18.4968553, - 54.464641 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.2259732, - 51.2116402 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.2259732, - 51.2116402 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.2320207, - 51.20471125 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 19.3897633, - 50.669220800000005 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -58.65694965, - -34.65330095 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -85.15683315, - 40.9864849 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.0796346, - 50.9344553 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.8660219, - 43.651728250000005 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 23.2262608, - 53.1678182 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 13.8549909, - 53.1356141 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 13.5852344, - 52.6791026 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.9039446, - 43.32459235 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 11.7459706, - 48.1192639 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 10.8004411, - 45.1618381 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.220041, - 51.21575955 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.37773829999999997, - 49.1845414 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.8872236, - 51.0093569 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -72.306483, - 43.71324155 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.2682475, - 51.1566463 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -86.7749105, - 39.2895893 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -86.8697199, - 39.2103621 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -86.7622867, - 39.2846994 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 10.6935299, - 45.4364119 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.220067, - 51.2157567 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 121.52641295000001, - 13.963484399999999 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 121.0495587, - 14.55443325 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 11.2859606, - 44.4990997 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.1136635, - 51.0178601 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.11020745, - 51.01776305 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.7097807, - 51.0375149 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.8420487, - 50.8816233 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.1170282, - 52.096787750000004 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -58.60225185, - -34.6472755 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.0956148, - 51.027961 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -58.49182545, - -34.54722945 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 16.144859, - 50.3474723 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 121.0555447, - 14.6240254 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.7041112, - 51.052696 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.7045624, - 51.0527661 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -58.6455025, - -34.6527314 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 15.610203349999999, - 51.12703915 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.881065, - 46.2899434 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 9.9051662, - 53.608371399999996 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.4596047500000005, - 51.13965455 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -58.55756735, - -34.639685400000005 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.006488, - 52.1035974 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.3259754, - 50.9959771 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 24.7403955, - 60.160001 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.9413681, - 42.6852421 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 121.0188074, - 14.6546927 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -58.73221545, - -34.66389115 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -58.7851824, - -34.6513911 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -74.07524185, - 39.9373766 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -74.0759429, - 39.9378049 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.8556325500000002, - 42.08456045 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.21788375, - 41.441146 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -58.5826525, - -34.6273904 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -58.7045993, - -34.658935549999995 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 10.1351653, - 54.3256607 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.2560088, - -39.8161799 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 123.8959752, - 10.3078378 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -58.778126900000004, - -34.65372755 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 41.10015485, - 37.84436925 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 123.8980177, - 10.305034 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.2991582, - 51.1105638 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2195097, - 41.4331789 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -58.66135815, - -34.65304625 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 123.9034492, - 10.293082 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.80683305, - 49.4253923 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 123.8954294, - 10.2950032 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 123.9019094, - 10.2979115 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -58.5591645, - -34.641718 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.3282392, - 50.9950974 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 11.7664052, - 48.1051001 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -58.6272041, - -34.602365 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 11.7777917, - 48.1106173 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.27718205, - 51.9809647 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 123.9114166, - 10.3126037 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2204143, - 41.440472 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 11.8063272, - 48.10575575 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.23042, - 51.9621928 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2187200000000002, - 41.4428286 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.23042, - 51.9621928 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 123.8872808, - 10.2965048 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 11.7777917, - 48.1106173 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.6706588, - 51.9843105 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.67008075, - 51.98169805 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 123.88120695, - 10.29909565 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 123.8891895, - 10.310557249999999 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -122.366381, - 47.6851819 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -6.6169446, - 41.423333 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -122.37256805, - 47.68166775 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 8.1075186, - 47.1630492 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.37094715, - 51.0996413 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.3983913, - 51.02951505 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.3892071, - 50.9775205 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.1106110000000005, - 51.0320236 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.3306748, - 50.9963862 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 121.04459055, - 14.55266605 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.667157250000001, - 51.98629615 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 11.8355383, - 48.0713649 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.5989388, - 51.929751 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.6134907, - 51.9609535 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 120.82017015, - 14.38436445 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -58.7633237, - -34.657805 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.3795404, - 50.8534846 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 12.609601000000001, - 52.003398950000005 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.7908486, - 51.08049485 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 11.3495708, - 44.5274979 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.22171375, - 41.45695365 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.3982776, - 50.8243429 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.77773075, - 41.62106125 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 81.66232, - 18.38939245 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.8167856000000002, - 50.98108245 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 174.7101614, - -36.8704582 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.3871468, - 48.707442900000004 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.7759992, - 41.6278924 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.0965746, - 50.97009545 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.3552986, - 50.8481911 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.776543650000001, - 41.6248751 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.31585175, - 50.13701275 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.565281649999999, - 51.270291150000006 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 13.4610474, - 52.5168006 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.3433171, - 60.3948088 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -93.65300395, - 41.7347538 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 11.0191421, - 49.4062913 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 11.0132982, - 49.4097763 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.7821286, - 41.622697 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.721686399999999, - 50.8657805 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.7897045, - 41.618785450000004 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.7469949, - 50.7976986 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.804531, - 50.6994104 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.12246765, - 52.0725717 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.7457193, - 50.7978641 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.6214948, - 43.105798 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.76547185, - 50.997573 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.3984036, - 50.8776843 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.79573605, - 41.61802005 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.7591382, - 50.867187650000005 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2396728, - 41.445234549999995 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -6.2089359, - 53.2957435 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -6.2178975, - 53.2956951 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.0620822, - 51.077856 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.0619696, - 51.0778931 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.0502295, - 51.0771769 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.0618511, - 51.0775862 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 18.41077345, - 54.4414818 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.23593435, - 41.44066755 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.9728638, - 52.3336624 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2423586, - 41.4421288 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.60826, - 51.92917365 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.79599475, - 41.6221853 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.108259, - 52.0950938 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.1078083, - 52.0960307 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.11912845, - 52.087902 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.7994719, - 41.6156986 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.1410035, - 51.0276438 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 8.0934908, - 50.4049327 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.1330481, - 51.0266148 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.799350499999999, - 41.6191791 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.1169738, - 52.08955555 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.8992688, - 51.1283964 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 11.775844549999999, - 48.10832284999999 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.90200385, - 51.12583105 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.1197919, - 52.0925035 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.3143855, - 60.3960622 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.9575567, - 51.1203863 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.9086306, - 51.11858145 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.864247300000001, - 51.408950250000004 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.4467402, - 51.0917122 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -58.7878928, - -34.6510406 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.3264648, - 50.8772372 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.3264058, - 50.8772236 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.53177025, - 50.4039388 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.914287, - 52.3688819 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.3320802, - 50.9341511 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.8104460499999995, - 41.6136903 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -58.7214746, - -34.6653664 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 10.8994036, - 48.3401015 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.029673, - 50.9669615 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 11.3460491, - 44.4971024 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -77.1497646, - 38.8830742 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.9385411, - 42.6799724 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.0058401999999997, - 43.331150199999996 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.01377555, - 43.327766749999995 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.3190333, - 60.400436 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.35486515, - 50.85517525 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 13.44864525, - 52.50195295 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.81486855, - 41.617787199999995 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.408041, - 50.84443955 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 121.5909852, - 14.0256778 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 21.066690700000002, - 52.237429000000006 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 10.8745216, - 45.8710111 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 13.48499025, - 52.539233249999995 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.2634724, - 50.8306239 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.0168216, - 43.3268002 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.7675936, - 52.4184735 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -58.7877295, - -34.651022100000006 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -70.75769905000001, - -33.493288899999996 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.09193035, - 50.3944184 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.1458612, - 52.2141956 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.7170866, - 52.0587911 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.53177025, - 50.4039388 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.5180982, - 45.3491915 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.7168, - 51.073654149999996 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.75020115, - 52.41434385 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.6132603000000001, - 51.18753755 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.99737665, - 51.46671255 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 28.3095468, - 48.12838435 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -58.787898150000004, - -34.6510947 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -58.787923, - -34.650952 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -70.58024155000001, - -33.5907841 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.810981999999999, - 41.6180713 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.08076655, - 50.29907455 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -81.4565247, - 39.4148476 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.3122652, - 50.7261627 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2311233, - 41.43989525 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.60655155, - 51.443386149999995 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.66924345, - 51.5211231 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.8035423, - 41.61691945 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 17.1108171, - 48.1439458 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.395986, - 50.8565891 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.7785003, - 51.014973 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.32852645, - 50.84211865 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.0627553, - 51.1631967 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.4806838, - 51.0216314 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.5183164, - 50.9798866 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 11.8748876, - 53.239025 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 8.5239051, - 47.4146851 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 10.2602001, - 59.7173728 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.23742605, - 41.4390898 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.3604404, - 50.8424905 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.7592565, - 51.0445581 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.6474642, - 46.686447 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.4349977, - 50.7657692 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.3852293, - 50.7594359 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.2130821999999997, - 51.216153 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.4077103, - 50.8185517 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.07447395, - 53.0870862 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2356328, - 41.4392396 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2386850000000003, - 41.437396250000006 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.2572879, - 50.8426534 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -112.07274125, - 33.4625901 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -149.79409629999998, - 61.1872781 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 14.6645755, - 52.1846388 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.4279213, - 51.10014875 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.4665137, - 50.3579165 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 11.7814314, - 48.1086634 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.2440671500000002, - 51.216379 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.8662103, - 50.9958733 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.1816176, - 51.1931976 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.8063254, - 50.99397785 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -70.7588237, - -33.4944575 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.3689763500000005, - 50.8509216 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.7240504, - 51.0537634 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.4469925, - 50.843114 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.2048985, - 51.3199888 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.24871825, - 41.452016150000006 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -58.6308613, - -34.6501123 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.23495, - 41.4405327 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.016924400000001, - 50.3442427 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.62373295, - 51.197543350000004 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 12.0327356, - 53.2451823 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.2306443, - 51.2089972 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.1810248, - 51.1975359 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 16.3636667, - 58.67330685 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -70.73707425, - -33.5164379 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.61555725, - 51.1860527 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.1982204, - 51.1872852 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.22210595, - 41.45090255 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 11.7827296, - 53.1345328 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -149.72364305000002, - 61.2029519 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.5164848, - 51.130294649999996 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -58.5988948, - -34.6451119 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.22363235, - 51.30519845 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.9357654, - 42.6803247 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.3331087, - 50.8765703 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -122.36437325, - 47.6833503 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -122.34921865, - 47.683291600000004 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.6155697, - 51.1854563 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.24250505, - 41.44191085 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.2245804, - 51.215657 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.1937398000000004, - 51.33658905 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.0414097, - 50.9205177 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.68579225, - 50.87367895 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.6634291, - 50.8672283 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.2404108999999996, - 51.210834750000004 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.66315185, - 50.86702405 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.20948705, - 51.1967086 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -149.75799404999998, - 61.2061611 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -149.7236431, - 61.2029519 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.4830905, - 51.0398257 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.23578025, - 41.4432731 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 11.359883700000001, - 44.497995700000004 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2398496000000003, - 41.44005855 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.2401533999999996, - 51.2314305 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.2199034, - 51.2157079 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -58.61445435, - -34.652380300000004 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 14.6320188, - 51.7466482 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.23988455, - 41.439640499999996 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.25119265, - 41.45159155 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.2119413, - 51.2161752 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.24206565, - 41.43956195 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.474571, - 51.0331244 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -70.57533355, - -33.60786365 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2516957, - 41.4516107 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 12.9455588, - 41.5384073 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 121.5593782, - 13.9631211 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.5446573, - 51.015526699999995 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.21991605, - 41.43618465 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.1252923, - 57.52189 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.1217972, - 57.158449700000006 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.9772384, - 51.450567 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2181348, - 41.4369497 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.1200299, - 52.0889095 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 13.8176342, - 53.15545185 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.5354039, - 47.22013895 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.2224668999999997, - 51.1817236 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.2177214, - 51.1852644 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.2093006, - 51.2504045 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.2093006, - 51.2504045 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.2193945, - 51.20038115 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.2207564, - 51.1968115 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.2256675, - 51.2009292 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.2358518, - 50.7362727 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.5288760999999997, - 51.1046504 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -58.66589385, - -34.6542771 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 14.4111477, - 51.667655 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.2198309, - 51.210788050000005 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.2837828, - 50.7132916 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.2165451000000003, - 51.201877550000006 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.2524009, - 51.956147 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -58.49182545, - -34.54722945 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.1598628, - 51.953407299999995 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 11.3497738, - 44.5030433 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.06109805, - 51.03158645 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.7997411999999997, - 51.1744513 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 121.5420542, - 24.9968233 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -70.75982205, - -33.4864679 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -70.6642932, - -33.5369547 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 16.6944958, - 49.2065668 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.23953945, - 41.43921375 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.659544, - 51.112606850000006 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 14.6425298, - 51.7474555 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.8635547, - 51.033286450000006 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.2198846, - 51.2157082 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.8604228000000003, - 51.03445105 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 11.78210735, - 48.10966005 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.2198712, - 51.2157065 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.21332315, - 51.357829100000004 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.0196522999999997, - 50.91703675 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -58.598192, - -34.645163 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.26063735, - 51.314180699999994 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 9.9140444, - 52.5125487 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 9.9142402, - 52.5115096 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2402151, - 41.44001605 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.1991914, - 51.1968607 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.600244849999999, - 51.1025837 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.30232, - 51.3011769 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -82.4353391, - 38.40942545 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2423232, - 41.4427319 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 13.733525, - 51.028718 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 13.73361425, - 51.025560600000006 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 121.5617332, - 13.9642587 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 121.5627184, - 13.964552300000001 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.2195606, - 51.194798950000006 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.970667949999999, - 50.965588499999996 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.4203578, - 51.2797844 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 14.6330753, - 51.7437815 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -58.8656073, - -34.3709202 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -58.643626100000006, - -34.652601149999995 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 18.9856387, - 69.64829945 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.24270295, - 41.4410455 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2444271000000002, - 41.4427731 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2475017, - 41.44585205 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2473639, - 41.4457751 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -58.5963626, - -34.6450242 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.246541, - 41.4449598 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2447127, - 41.4432125 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.24159955, - 41.44022445 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.24075985, - 41.439421 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.8979314, - 51.2443251 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.2180064, - 51.2115635 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 121.5348307, - 25.016046 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 121.53882379999999, - 25.0042755 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.82498285, - 51.1112813 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2409078, - 41.4395575 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.24044115, - 41.4390991 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2214031, - 41.44005755 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.24095945, - 41.4388925 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 13.9653397, - 52.3725338 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 16.4357159, - 43.508435 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 16.459122049999998, - 43.504516499999994 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.2002831, - 51.1905568 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 121.5602915, - 13.96404145 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -70.52045785, - -33.57646745 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 121.55977060000001, - 13.963536999999999 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.25437095, - 50.7427329 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.2955177, - 50.7100694 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 121.5628028, - 13.9645049 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 121.55997805, - 13.96351355 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 121.55918835, - 13.96252165 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 121.55882105, - 13.963075700000001 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 121.56047235, - 13.96380055 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 12.16815515, - 48.57143069999999 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 121.56123410000001, - 13.96411745 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 12.14531465, - 48.5831383 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 121.56038095, - 13.9630335 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 121.5613266, - 13.9652043 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 15.4411152, - 47.0465848 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -122.35923034999999, - 47.66017115 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.69861065, - 51.0226315 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 13.7295088, - 52.8390529 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 11.933488700000002, - 58.3496403 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.230196, - 41.4503282 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.24914995, - 41.45277285 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 9.5890863, - 45.515874 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2302382, - 41.4503545 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2302936, - 41.4503862 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2198333, - 41.4352922 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.22370635, - 41.438410250000004 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2486658999999998, - 41.454603649999996 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.24777735, - 41.44702155 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2465580999999997, - 41.4522395 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2176522, - 41.4390691 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.24879765, - 41.4542158 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2179836, - 41.4372123 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2187725499999997, - 41.4376102 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2306509500000002, - 41.4507038 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2494715000000003, - 41.4536754 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2476216, - 41.4594091 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2500889500000003, - 41.447811599999994 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.232189, - 41.4516205 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2514325, - 41.4549361 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.25078025, - 41.45437605 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2312985000000003, - 41.4526692 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2443126, - 41.4515501 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.21933575, - 41.4377469 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2480501999999998, - 41.46028165 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.25123315, - 41.455169 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2312484, - 41.4526581 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.24433535, - 41.4523864 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2475410499999997, - 41.46062555 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 13.7062946, - 52.24507525 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -58.54542575, - -34.60790505 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.1585389, - 50.8222133 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.4480757, - 51.0935406 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.9932969, - 50.8345362 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.2143784, - 51.1908391 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.21504745, - 51.191972699999994 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.45276285, - 51.154340700000006 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.48941035, - 51.150408999999996 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.91692415, - 51.228060400000004 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.444729000000001, - 51.14208035 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.24546005, - 41.4510151 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2450291, - 41.4506645 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 139.7362366, - 35.7696039 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -52.6268828, - -27.0704663 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2457176, - 41.4511451 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.5610879, - 53.0193794 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -52.6249731, - -27.0701085 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -52.6276368, - -27.0701627 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -58.6085099, - -34.6463926 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -58.5972709, - -34.6450947 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.2111755, - 51.2295459 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.1533463, - 52.0844293 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.5359346, - 51.3830698 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -70.4846171, - -33.5905772 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.91501175, - 51.227475749999996 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 11.362229, - 44.49929495 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -58.62100145, - -34.65041535 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.9116600999999998, - 51.2221714 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.1942644, - 51.22335055 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 13.60473225, - 48.28955485 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.31623695, - 45.699021 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.3137291, - 45.69814345 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.31351865, - 45.69947915 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -78.7003344, - 26.5404793 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.4666412, - 44.415974 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.2439621, - 51.095523 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.17462375, - 52.089487399999996 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.910993250000001, - 51.07083325 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.6962306, - 52.1436707 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.60044785, - 50.665459999999996 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -58.468474900000004, - -34.53542445 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.473457, - 47.02391135 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 14.5063587, - 46.0541681 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.042544, - 44.0834712 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.18588895, - 50.801121949999995 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.042544, - 44.0834712 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.0426022, - 44.0833241 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -58.65521725, - -34.65204885 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.0426329, - 44.0837248 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -58.4452137, - -34.6198902 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.4166591, - 46.936766500000004 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 11.6629114, - 54.0071391 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.22556645, - 41.4350166 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2241797, - 41.43492355 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.22267645, - 41.43331525 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 8.15879035, - 47.167780949999994 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 121.116178, - 14.5786877 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.5895507, - 51.0933052 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.7047731, - 51.075759 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -58.6760433, - -34.653726649999996 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.20041275, - 51.1929068 - ] - } - }, - { - "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "eiryelio", + "uid": "831652", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-14T17:38:50Z", + "reviewed_features": [], + "create": 3, + "modify": 8, + "delete": 0, + "area": 0.0000156939545699938, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113772524, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "answer": 17, + "imagery": "osm", + "language": "fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1406575500000002, + 50.70147355 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "daviddelon", + "uid": "1241", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-14T16:28:45Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 0.00000880051314996219, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113770114, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 6, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.8770761499999997, + 43.61476115 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.12.8", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-14T15:21:41Z", + "reviewed_features": [], + "create": 43, + "modify": 4, + "delete": 0, + "area": 8.51590500008236e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113767259, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "grb", + "import": 2, + "imagery": "AGIVFlandersGRB", + "language": "en", + "change_within_500m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.73486325, + 51.03997725 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Lea Ziegle", + "uid": "14423363", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #parkings", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-14T15:16:25Z", + "reviewed_features": [], + "create": 2, + "modify": 0, + "delete": 0, + "area": 0.000304947586439922, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113767040, + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "parkings", + "imagery": "osm", + "language": "de", + "move:node/-1": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.956541999999999, + 50.2793812 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.12.8", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-14T15:15:59Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113767012, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "toilets", + "imagery": "osm", + "language": "en", + "add-image": 2, + "change_within_500m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7348232, + 51.0401155 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Lea Ziegle", + "uid": "14423363", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #artwork", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-14T15:10:32Z", + "reviewed_features": [], + "create": 2, + "modify": 0, + "delete": 0, + "area": 0.000124813402699997, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113766752, + "host": "mapcomplete.osm.be", + "move": 2, + "theme": "artwork", + "answer": 1, + "imagery": "osm", + "language": "de", + "move:node/-1": "improve_accuracy", + "move:node/-2": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.96033895, + 50.2622085 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "StegoStadtführer", + "uid": "14423387", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #observation_towers", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-14T14:56:01Z", + "reviewed_features": [], + "create": 0, + "modify": 6, + "delete": 0, + "area": 0.0104533629923, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113766100, + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "observation_towers", + "answer": 6, + "imagery": "osm", + "language": "de", + "move:node/1719597181": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.6232303, + 50.07017255 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Lea Ziegle", + "uid": "14423363", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #sport_pitches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-14T14:52:17Z", + "reviewed_features": [], + "create": 6, + "modify": 2, + "delete": 0, + "area": 0.000622089057040089, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113765933, + "host": "mapcomplete.osm.be", + "theme": "sport_pitches", + "answer": 5, + "imagery": "osm", + "language": "de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.95595755, + 50.2775154 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "StegoStadtführer", + "uid": "14423387", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-14T14:43:50Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.00000624980264999187, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113765601, + "host": "mapcomplete.osm.be", + "move": 2, + "theme": "shops", + "imagery": "osm", + "language": "de", + "move:node/267286858": "improve_accuracy", + "move:node/322806285": "relocated" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.67980365, + 50.14115535 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Lea Ziegle", + "uid": "14423363", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-14T14:39:25Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113765369, + "host": "mapcomplete.osm.be", + "theme": "trees", + "answer": 1, + "imagery": "osm", + "language": "de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.9477634, + 50.272717 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "StegoStadtführer", + "uid": "14423387", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-14T14:37:12Z", + "reviewed_features": [], + "create": 0, + "modify": 14, + "delete": 0, + "area": 0.000068700732380047, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113765275, + "host": "mapcomplete.osm.be", + "move": 5, + "theme": "trees", + "answer": 15, + "imagery": "osm", + "language": "de", + "move:node/1754404741": "improve_accuracy", + "move:node/1754404754": "improve_accuracy", + "move:node/1754404771": "improve_accuracy", + "move:node/1754404811": "improve_accuracy", + "move:node/5368395007": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.69264245, + 50.128844 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "StegoStadtführer", + "uid": "14423387", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #parkings", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-14T14:37:12Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113765274, + "host": "mapcomplete.osm.be", + "theme": "parkings", + "imagery": "osm", + "language": "de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.6867148, + 50.1269821 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "StegoStadtführer", + "uid": "14423387", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #parkings", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-14T14:34:30Z", + "reviewed_features": [], + "create": 3, + "modify": 0, + "delete": 0, + "area": 0.0000150462936599833, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113765121, + "host": "mapcomplete.osm.be", + "theme": "parkings", + "imagery": "osm", + "language": "de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.6862293, + 50.12752025 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "StegoStadtführer", + "uid": "14423387", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #sport_pitches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-14T14:26:03Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113764730, + "host": "mapcomplete.osm.be", + "theme": "sport_pitches", + "imagery": "osm", + "language": "de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.6423108, + 50.070061 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "koilebeit", + "uid": "10355146", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-14T13:32:25Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.0000440209433999806, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113762865, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 4, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.60576105, + 47.7714283 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Stijn79", + "uid": "14458086", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #ghostbikes", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-14T13:07:40Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113762052, + "host": "mapcomplete.osm.be", + "theme": "ghostbikes", + "imagery": "CartoDB.Positron", + "language": "nl", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.3031168, + 50.9391221 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Lea Ziegle", + "uid": "14423363", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #parkings", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-14T12:59:38Z", + "reviewed_features": [], + "create": 2, + "modify": 1, + "delete": 0, + "area": 2.80131719988906e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113761796, + "host": "mapcomplete.osm.be", + "move": 2, + "theme": "parkings", + "imagery": "osm", + "language": "de", + "move:node/-3": "improve_accuracy", + "move:node/9250298364": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.976755449999999, + 50.2600235 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Lea Ziegle", + "uid": "14423363", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #parkings", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-14T12:54:45Z", + "reviewed_features": [], + "create": 3, + "modify": 0, + "delete": 0, + "area": 0.00000251462843999828, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113761638, + "host": "mapcomplete.osm.be", + "move": 3, + "theme": "parkings", + "imagery": "osm", + "language": "de", + "move:node/-1": "improve_accuracy", + "move:node/-2": "improve_accuracy", + "move:node/-3": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.94739365, + 50.2737678 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Andrea Musuruane", + "uid": "90379", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-14T12:52:33Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.0000181816271999955, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113761593, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 3, + "imagery": "osm", + "language": "it" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.1757982, + 45.36604115 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Lea Ziegle", + "uid": "14423363", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-14T12:50:48Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113761534, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "answer": 3, + "imagery": "osm", + "language": "de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.9660253, + 50.2622817 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Niklas0404", + "uid": "14423368", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-14T12:31:18Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113760996, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "answer": 2, + "imagery": "osm", + "language": "en", + "change_within_50m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.5442707, + 50.1581591 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Lea Ziegle", + "uid": "14423363", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-14T12:27:16Z", + "reviewed_features": [], + "create": 1, + "modify": 5, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113760883, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "answer": 7, + "imagery": "CartoDB.Voyager", + "language": "de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.9941227, + 50.2423472 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Lea Ziegle", + "uid": "14423363", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #postboxes", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-14T12:18:01Z", + "reviewed_features": [], + "create": 3, + "modify": 2, + "delete": 0, + "area": 0.00104816007672005, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113760658, + "host": "mapcomplete.osm.be", + "theme": "postboxes", + "answer": 4, + "imagery": "CartoDB.Voyager", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.960747999999999, + 50.27161095 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Lea Ziegle", + "uid": "14423363", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #street_lighting", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-14T12:10:59Z", + "reviewed_features": [], + "create": 1, + "modify": 10, + "delete": 0, + "area": 0.000162390976959991, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113760489, + "host": "mapcomplete.osm.be", + "theme": "street_lighting", + "answer": 13, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.9495018, + 50.2774503 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Lea Ziegle", + "uid": "14423363", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-14T12:03:58Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.000035843274600036, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113760328, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "answer": 4, + "imagery": "osm", + "language": "de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.944194849999999, + 50.274159499999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Niklas0404", + "uid": "14423368", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #parkings", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-14T11:56:13Z", + "reviewed_features": [], + "create": 6, + "modify": 3, + "delete": 0, + "area": 0.0000138805410099955, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113760141, + "host": "mapcomplete.osm.be", + "move": 5, + "theme": "parkings", + "imagery": "osm", + "language": "de", + "add-image": 2, + "move:node/-1": "improve_accuracy", + "move:node/-4": "improve_accuracy", + "change_within_25m": 2, + "change_within_50m": 3, + "change_within_100m": 2, + "move:node/9250188450": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.54404465, + 50.16105265 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Niklas0404", + "uid": "14423368", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-14T11:41:18Z", + "reviewed_features": [], + "create": 5, + "modify": 6, + "delete": 0, + "area": 0.0000185388451000009, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113759711, + "host": "mapcomplete.osm.be", + "move": 2, + "theme": "benches", + "answer": 32, + "imagery": "osm", + "language": "de", + "change_within_25m": 25, + "change_within_50m": 6, + "move:node/9250013123": "improve_accuracy", + "move:node/9250177500": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.54536235, + 50.1618474 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Niklas0404", + "uid": "14423368", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-14T11:36:38Z", + "reviewed_features": [], + "create": 12, + "modify": 16, + "delete": 0, + "area": 0.0000185424557000219, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113759556, + "host": "mapcomplete.osm.be", + "move": 7, + "theme": "trees", + "answer": 29, + "imagery": "osm", + "language": "de", + "add-image": 2, + "move:node/-1": "improve_accuracy", + "change_within_25m": 30, + "change_within_50m": 6, + "change_within_100m": 2, + "move:node/1874211610": "improve_accuracy", + "move:node/9250164261": "improve_accuracy", + "move:node/9250169556": "improve_accuracy", + "move:node/9250176600": "improve_accuracy", + "move:node/9250185096": "improve_accuracy", + "move:node/9250200237": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.5451746, + 50.162814850000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Niklas0404", + "uid": "14423368", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #waste_basket", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-14T11:35:14Z", + "reviewed_features": [], + "create": 7, + "modify": 1, + "delete": 0, + "area": 0.0000133246554599942, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113759501, + "host": "mapcomplete.osm.be", + "theme": "waste_basket", + "answer": 7, + "imagery": "osm", + "language": "en", + "change_within_25m": 6, + "change_within_50m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.545350299999999, + 50.16191445 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Niklas0404", + "uid": "14423368", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #personal", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-14T11:27:05Z", + "reviewed_features": [], + "create": 9, + "modify": 13, + "delete": 0, + "area": 0.0000144811267999846, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113759289, + "host": "mapcomplete.osm.be", + "move": 2, + "theme": "personal", + "answer": 32, + "imagery": "osm", + "language": "en", + "add-image": 1, + "change_within_25m": 35, + "move:node/9250160715": "improve_accuracy", + "move:node/9250171354": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.5452807, + 50.1607658 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-14T11:20:18Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000275097605999909, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113759055, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 1, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3740456000000005, + 50.86143745 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Niklas0404", + "uid": "14423368", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #cafes_and_pubs", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-14T11:12:50Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113758800, + "host": "mapcomplete.osm.be", + "theme": "cafes_and_pubs", + "answer": 5, + "imagery": "osm", + "language": "en", + "change_within_100m": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.5460034, + 50.159276 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Robin van der Linde", + "uid": "5093765", + "editor": "MapComplete 0.12.8", + "comment": "Adding data with #MapComplete for theme #postboxes", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-14T11:03:41Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113758504, + "host": "pietervdvn.github.io", + "path": "mc/post-partner/", + "theme": "postboxes", + "answer": 4, + "imagery": "CartoDB.Voyager", + "language": "en", + "change_within_5000m": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.5640962, + 52.9950848 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Lea Ziegle", + "uid": "14423363", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #cycle_infra", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-14T10:55:30Z", + "reviewed_features": [], + "create": 2, + "modify": 1, + "delete": 0, + "area": 0.0000184265210999496, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113758185, + "host": "mapcomplete.osm.be", + "theme": "cycle_infra", + "answer": 2, + "imagery": "CartoDB.Voyager", + "language": "de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.96740535, + 50.2748423 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Robin van der Linde", + "uid": "5093765", + "editor": "MapComplete 0.12.8", + "comment": "Adding data with #MapComplete for theme #postboxes", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-14T10:55:25Z", + "reviewed_features": [], + "create": 0, + "modify": 7, + "delete": 0, + "area": 0.000136135512499957, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113758182, + "host": "pietervdvn.github.io", + "path": "mc/post-partner/", + "theme": "postboxes", + "answer": 11, + "imagery": "CartoDB.Voyager", + "language": "en", + "change_within_5000m": 11 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.537877, + 52.99543985 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Niklas0404", + "uid": "14423368", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #street_lighting", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-14T10:38:10Z", + "reviewed_features": [], + "create": 9, + "modify": 17, + "delete": 0, + "area": 0.00000321948500000108, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113757575, + "host": "mapcomplete.osm.be", + "move": 2, + "theme": "street_lighting", + "answer": 55, + "imagery": "osm", + "language": "en", + "change_within_25m": 47, + "change_within_50m": 10, + "move:node/9250101192": "improve_accuracy", + "move:node/9250140726": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.5466847, + 50.159459049999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Niklas0404", + "uid": "14423368", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-14T10:35:03Z", + "reviewed_features": [], + "create": 1, + "modify": 4, + "delete": 0, + "area": 5.91250000007636e-10, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113757473, + "host": "mapcomplete.osm.be", + "theme": "benches", + "answer": 6, + "imagery": "osm", + "language": "de", + "add-image": 1, + "change_within_25m": 6, + "change_within_50m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.54822695, + 50.15882755 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Tharwatblabla", + "uid": "14423401", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #cycle_infra", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-14T10:27:58Z", + "reviewed_features": [], + "create": 3, + "modify": 18, + "delete": 0, + "area": 0.0000631549900800196, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113757237, + "host": "mapcomplete.osm.be", + "split": 3, + "theme": "cycle_infra", + "answer": 37, + "imagery": "CartoDB.Voyager", + "language": "de", + "relation-fix": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.754583499999999, + 50.3344212 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Niklas0404", + "uid": "14423368", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-14T10:23:42Z", + "reviewed_features": [], + "create": 9, + "modify": 11, + "delete": 0, + "area": 0.00000123259112999777, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113757122, + "host": "mapcomplete.osm.be", + "theme": "trees", + "answer": 21, + "imagery": "osm", + "language": "de", + "add-image": 4, + "change_within_25m": 22, + "change_within_50m": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.549551950000001, + 50.15823985 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Niklas0404", + "uid": "14423368", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-14T10:16:41Z", + "reviewed_features": [], + "create": 5, + "modify": 4, + "delete": 0, + "area": 0.00000527521994999788, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113756938, + "host": "mapcomplete.osm.be", + "theme": "benches", + "answer": 24, + "imagery": "osm", + "language": "de", + "change_within_25m": 6, + "change_within_50m": 17, + "change_within_100m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.54991405, + 50.15806455 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Niklas0404", + "uid": "14423368", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #artwork", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-14T10:12:52Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0.00000721872184001032, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113756828, + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "artwork", + "answer": 1, + "imagery": "osm", + "language": "de", + "add-image": 2, + "change_within_25m": 4, + "move:node/9250058943": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.54798555, + 50.1589066 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Niklas0404", + "uid": "14423368", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #waste_basket", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-14T10:12:26Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113756814, + "host": "mapcomplete.osm.be", + "theme": "waste_basket", + "answer": 1, + "imagery": "osm", + "language": "de", + "change_within_25m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.550598, + 50.1582158 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Niklas0404", + "uid": "14423368", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-14T10:10:58Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113756772, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "imagery": "HDM_HOT", + "language": "de", + "add-image": 1, + "change_within_25m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.5506839, + 50.1586076 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Niklas0404", + "uid": "14423368", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #waste_basket", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-14T10:08:09Z", + "reviewed_features": [], + "create": 12, + "modify": 2, + "delete": 0, + "area": 0.00000554620200000289, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113756676, + "host": "mapcomplete.osm.be", + "theme": "waste_basket", + "answer": 12, + "imagery": "osm", + "language": "de", + "change_within_25m": 7, + "change_within_50m": 1, + "change_within_100m": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.54988995, + 50.1582948 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Niklas0404", + "uid": "14423368", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #parkings", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-14T10:05:25Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113756593, + "host": "mapcomplete.osm.be", + "theme": "parkings", + "imagery": "osm", + "language": "de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.5477495, + 50.1592846 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Niklas0404", + "uid": "14423368", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-14T10:02:10Z", + "reviewed_features": [], + "create": 6, + "modify": 4, + "delete": 0, + "area": 0.0000106323035599849, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113756494, + "host": "mapcomplete.osm.be", + "theme": "benches", + "answer": 26, + "imagery": "osm", + "language": "de", + "add-image": 1, + "change_within_25m": 8, + "change_within_50m": 14, + "change_within_100m": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.54875805, + 50.1584701 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Michael 3", + "uid": "13922389", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-14T09:44:18Z", + "reviewed_features": [], + "create": 3, + "modify": 3, + "delete": 0, + "area": 0.00000463535666000777, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113756026, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.2490917, + 52.77244085 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Lea Ziegle", + "uid": "14423363", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #openwindpowermap", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-14T09:00:35Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113754874, + "host": "mapcomplete.osm.be", + "theme": "openwindpowermap", + "answer": 4, + "imagery": "CartoDB.Voyager", + "language": "de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.9456606, + 50.3058153 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Lea Ziegle", + "uid": "14423363", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-14T08:52:48Z", + "reviewed_features": [], + "create": 0, + "modify": 6, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113754698, + "host": "mapcomplete.osm.be", + "theme": "food", + "answer": 10, + "imagery": "osm", + "language": "de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.941353, + 50.2853359 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Lea Ziegle", + "uid": "14423363", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-14T08:45:40Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113754541, + "host": "mapcomplete.osm.be", + "theme": "food", + "answer": 4, + "imagery": "osm", + "language": "de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.941353, + 50.2853359 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Saputro16", + "uid": "14423472", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-14T08:44:11Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113754500, + "host": "mapcomplete.osm.be", + "theme": "food", + "answer": 7, + "imagery": "osm", + "language": "de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.6862027, + 50.114882 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Saputro16", + "uid": "14423472", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #cafes_and_pubs", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-14T08:40:40Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113754433, + "host": "mapcomplete.osm.be", + "theme": "cafes_and_pubs", + "answer": 4, + "imagery": "osm", + "language": "de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.6853782, + 50.1165911 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Saputro16", + "uid": "14423472", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-14T08:29:55Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.00022252862830001, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113754188, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "answer": 13, + "imagery": "osm", + "language": "de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.69559315, + 50.1094906 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Saputro16", + "uid": "14423472", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-14T08:26:34Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.00000101381808000238, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113754116, + "host": "mapcomplete.osm.be", + "theme": "benches", + "answer": 8, + "imagery": "osm", + "language": "de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.659948499999999, + 50.105537999999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Tharwatblabla", + "uid": "14423401", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #cycle_infra", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-14T08:23:14Z", + "reviewed_features": [], + "create": 0, + "modify": 41, + "delete": 0, + "area": 0.000121456326400027, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113754045, + "host": "mapcomplete.osm.be", + "theme": "cycle_infra", + "answer": 59, + "imagery": "CartoDB.Voyager", + "language": "de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.754045600000001, + 50.331973950000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Wesomat87", + "uid": "14348684", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-14T06:00:23Z", + "reviewed_features": [], + "create": 3, + "modify": 2, + "delete": 0, + "area": 0.0000336142241099786, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113752071, + "host": "www.waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 12.76859585, + 53.15715375 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "ralley", + "uid": "670820", + "editor": "MapComplete 0.12.8", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-14T00:43:32Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113749418, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "aed", + "answer": 1, + "imagery": "osm", + "language": "en", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 174.702026, + -36.8765078 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Saputro16", + "uid": "14423472", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-13T22:54:14Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113747585, + "host": "mapcomplete.osm.be", + "theme": "benches", + "answer": 5, + "imagery": "osm", + "language": "de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.6773092, + 50.107802 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Saputro16", + "uid": "14423472", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-13T22:43:22Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 4.47220799996838e-8, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113747362, + "host": "mapcomplete.osm.be", + "theme": "food", + "answer": 8, + "imagery": "osm", + "language": "de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.69519405, + 50.1137454 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Saputro16", + "uid": "14423472", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-13T22:25:25Z", + "reviewed_features": [], + "create": 0, + "modify": 8, + "delete": 0, + "area": 0.0000168137771599894, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113747067, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "answer": 17, + "imagery": "CartoDB.Voyager", + "language": "de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.688638000000001, + 50.1151145 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Saputro16", + "uid": "14423472", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #cafes_and_pubs", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-13T21:59:56Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.0000026695314800012, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113746594, + "host": "mapcomplete.osm.be", + "theme": "cafes_and_pubs", + "answer": 9, + "imagery": "osm", + "language": "de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.683682999999998, + 50.1142431 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Saputro16", + "uid": "14423472", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-13T21:47:17Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.000375816023339926, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113746256, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "answer": 12, + "imagery": "osm", + "language": "de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.684360649999999, + 50.1223254 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Tharwatblabla", + "uid": "14423401", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #cycle_infra", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-13T20:19:02Z", + "reviewed_features": [], + "create": 0, + "modify": 26, + "delete": 0, + "area": 0.00000684466477999113, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113744063, + "host": "mapcomplete.osm.be", + "theme": "cycle_infra", + "answer": 36, + "imagery": "CartoDB.Voyager", + "language": "de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.7578024, + 50.33270895 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Saputro16", + "uid": "14423472", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-13T20:17:57Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113744040, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "answer": 9, + "imagery": "osm", + "language": "de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.6528492, + 50.1091454 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Saputro16", + "uid": "14423472", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-13T20:14:11Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113743952, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 2, + "imagery": "CartoDB.Voyager", + "language": "de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.6830898, + 50.1148656 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Robin van der Linde", + "uid": "5093765", + "editor": "MapComplete 0.12.8", + "comment": "Adding data with #MapComplete for theme #street_lighting", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-13T18:40:46Z", + "reviewed_features": [], + "create": 39, + "modify": 48, + "delete": 0, + "area": 0.00000684312634001648, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113741375, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "street_lighting", + "answer": 80, + "imagery": "Actueel_orthoHR_WMTS", + "language": "en", + "change_over_5000m": 39, + "change_within_5000m": 80 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.5329098000000005, + 52.985321049999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Robin van der Linde", + "uid": "5093765", + "editor": "MapComplete 0.12.8", + "comment": "Adding data with #MapComplete for theme #street_lighting", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-13T18:35:34Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.00000114772787999964, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113741225, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "street_lighting", + "answer": 4, + "imagery": "Actueel_orthoHR_WMTS", + "language": "en", + "change_within_50m": 1, + "change_within_100m": 1, + "change_within_500m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.5704241, + 53.0206216 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "NonnEmilia", + "uid": "683102", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-13T18:22:29Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.0000136283129100017, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113740818, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 3, + "imagery": "osm", + "language": "en", + "change_within_5000m": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 10.65024765, + 44.73081185 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "MaximilianList", + "uid": "14423402", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #cycle_infra", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-13T18:12:32Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113740545, + "host": "mapcomplete.osm.be", + "theme": "cycle_infra", + "answer": 1, + "imagery": "CartoDB.Voyager", + "language": "de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.677804, + 50.1272677 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.12.8", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-13T15:42:46Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113735110, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "toilets", + "answer": 1, + "imagery": "osm", + "language": "en", + "change_within_25m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7348232, + 51.0401155 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Saputro16", + "uid": "14423472", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-13T15:02:24Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113733740, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 3, + "imagery": "CartoDB.Voyager", + "language": "de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.6839434, + 50.1146583 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Saputro16", + "uid": "14423472", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-13T14:56:59Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.0000204209408199706, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113733520, + "host": "mapcomplete.osm.be", + "theme": "benches", + "answer": 15, + "imagery": "osm", + "language": "de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.69791175, + 50.1163602 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Saputro16", + "uid": "14423472", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #street_lighting", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-13T14:51:38Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000691734054003194, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113733331, + "host": "mapcomplete.osm.be", + "theme": "street_lighting", + "answer": 1, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.68328565, + 50.114305099999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Saputro16", + "uid": "14423472", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-13T14:48:49Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 3.46087860008833e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113733222, + "host": "mapcomplete.osm.be", + "theme": "trees", + "answer": 6, + "imagery": "osm", + "language": "de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.68109755, + 50.1163472 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.12.8", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-13T14:29:19Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 9.36659999984568e-10, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113732652, + "host": "pietervdvn.github.io", + "move": 2, + "path": "mc/develop/", + "theme": "toilets", + "answer": 6, + "imagery": "osm", + "language": "en", + "move:node/-1": "improve_accuracy", + "change_over_5000m": 1, + "change_within_25m": 8, + "move:node/9248363054": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7348299000000003, + 51.04008055 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Saputro16", + "uid": "14423472", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-13T14:03:51Z", + "reviewed_features": [], + "create": 0, + "modify": 10, + "delete": 0, + "area": 0.0000043167563399821, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113731799, + "host": "mapcomplete.osm.be", + "theme": "food", + "answer": 23, + "imagery": "osm", + "language": "de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.6907608, + 50.11390175 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-13T13:25:51Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113730627, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 4, + "imagery": "AGIV10cm", + "language": "nl", + "add-image": 1, + "change_within_25m": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.1993715, + 50.7445529 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Saputro16", + "uid": "14423472", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-13T12:20:54Z", + "reviewed_features": [], + "create": 0, + "modify": 8, + "delete": 0, + "area": 2.52769799857233e-8, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113728526, + "host": "mapcomplete.osm.be", + "theme": "food", + "answer": 20, + "imagery": "osm", + "language": "de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.6829606, + 50.11461825 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Gruppe61", + "uid": "14437392", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-13T12:08:34Z", + "reviewed_features": [], + "create": 1, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113728191, + "host": "mapcomplete.osm.be", + "theme": "benches", + "answer": 6, + "imagery": "osm", + "language": "de", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.4499186, + 49.4759151 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "pfiers", + "uid": "3797928", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-13T12:03:24Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113728066, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 1, + "imagery": "CartoDB.Voyager", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.2041098, + 51.5014559 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Saputro16", + "uid": "14423472", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-13T07:36:55Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 1.79250600007531e-8, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113721207, + "host": "mapcomplete.osm.be", + "theme": "food", + "answer": 1, + "imagery": "osm", + "language": "de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.68311665, + 50.1144909 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Saputro16", + "uid": "14423472", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-12T21:15:48Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.00000462178655999379, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113712667, + "host": "mapcomplete.osm.be", + "theme": "trees", + "answer": 6, + "imagery": "osm", + "language": "de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.6846751, + 50.1158075 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Saputro16", + "uid": "14423472", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-12T21:09:30Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.0000254016174299636, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113712485, + "host": "mapcomplete.osm.be", + "theme": "benches", + "answer": 13, + "imagery": "osm", + "language": "de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.68409165, + 50.112874149999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Saputro16", + "uid": "14423472", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-12T21:03:02Z", + "reviewed_features": [], + "create": 0, + "modify": 8, + "delete": 0, + "area": 0.0000699641189000275, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113712262, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "answer": 31, + "imagery": "osm", + "language": "de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.6774814, + 50.11119025 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Saputro16", + "uid": "14423472", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-12T20:54:43Z", + "reviewed_features": [], + "create": 0, + "modify": 16, + "delete": 0, + "area": 0.0000141726613600619, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113711932, + "host": "mapcomplete.osm.be", + "theme": "food", + "answer": 32, + "imagery": "osm", + "language": "de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.687577600000001, + 50.115007750000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "dekoe65", + "uid": "13921921", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-12T17:30:27Z", + "reviewed_features": [], + "create": 20, + "modify": 12, + "delete": 0, + "area": 0.000604562851159979, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113705603, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 12.8632879, + 52.1777432 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Saputro16", + "uid": "14423472", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-12T16:52:13Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113704380, + "host": "mapcomplete.osm.be", + "theme": "food", + "answer": 8, + "imagery": "osm", + "language": "de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.6917978, + 50.1152513 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Saputro16", + "uid": "14423472", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #cafes_and_pubs", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-12T16:35:18Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113703818, + "host": "mapcomplete.osm.be", + "theme": "cafes_and_pubs", + "answer": 6, + "imagery": "osm", + "language": "de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.6868891, + 50.1137075 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #nature", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-12T16:28:22Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113703612, + "host": "mapcomplete.osm.be", + "theme": "nature", + "imagery": "osm", + "language": "nl", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.4581663, + 51.1707405 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Tresho", + "uid": "6178157", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-12T15:59:32Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.0001684038762, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113702505, + "host": "mapcomplete.osm.be", + "theme": "aed", + "answer": 3, + "imagery": "osm", + "language": "it" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 10.9771117, + 45.43634245 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Grxzzly_", + "uid": "14423678", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-12T15:57:51Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.00000804630236001237, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113702444, + "host": "mapcomplete.osm.be", + "theme": "food", + "answer": 6, + "imagery": "CartoDB.Voyager", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.18929335, + 50.1980947 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Grxzzly_", + "uid": "14423678", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-12T15:51:00Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113702124, + "host": "mapcomplete.osm.be", + "theme": "food", + "answer": 4, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.1906575, + 50.1995693 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Grxzzly_", + "uid": "14423678", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-12T15:49:09Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113702050, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "answer": 1, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.6832145, + 50.1116981 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Grxzzly_", + "uid": "14423678", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-12T15:42:17Z", + "reviewed_features": [], + "create": 0, + "modify": 8, + "delete": 0, + "area": 0.0000126798033999945, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113701784, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "answer": 14, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.19187145, + 50.198229100000006 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Grxzzly_", + "uid": "14423678", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #cafes_and_pubs", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-12T15:40:32Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113701706, + "host": "mapcomplete.osm.be", + "theme": "cafes_and_pubs", + "answer": 8, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.1854334, + 50.199891 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Grxzzly_", + "uid": "14423678", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #cafes_and_pubs", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-12T15:30:35Z", + "reviewed_features": [], + "create": 1, + "modify": 7, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113701360, + "host": "mapcomplete.osm.be", + "theme": "cafes_and_pubs", + "answer": 17, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.6838824, + 50.1115399 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Maarten O", + "uid": "13326535", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 1, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-12T14:54:28Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113700003, + "host": "mapcomplete.osm.be", + "theme": "aed", + "answer": 1, + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2011437, + 51.2002594 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ze0zohk1", + "uid": "4565074", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-12T14:29:11Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113699070, + "host": "mapcomplete.osm.be", + "theme": "benches", + "answer": 1, + "imagery": "osm", + "language": "de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.1509005, + 48.7299946 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Gruppe61", + "uid": "14437392", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-12T14:14:53Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113698480, + "host": "mapcomplete.osm.be", + "theme": "trees", + "answer": 2, + "imagery": "osm", + "language": "de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.4502941, + 49.4742454 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Gruppe61", + "uid": "14437392", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-12T14:10:21Z", + "reviewed_features": [], + "create": 2, + "modify": 2, + "delete": 0, + "area": 3.39544999986822e-9, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113698337, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "answer": 2, + "imagery": "osm", + "language": "de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.45007285, + 49.47343845 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Gruppe61", + "uid": "14437392", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-12T14:08:48Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113698278, + "host": "mapcomplete.osm.be", + "theme": "benches", + "answer": 6, + "imagery": "osm", + "language": "de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.4499562, + 49.4732868 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Gruppe61", + "uid": "14437392", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-12T13:54:13Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113697689, + "host": "mapcomplete.osm.be", + "theme": "shops", + "imagery": "osm", + "language": "de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.4480947, + 49.4760771 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Gruppe61", + "uid": "14437392", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #cafes_and_pubs", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-12T13:48:48Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113697517, + "host": "mapcomplete.osm.be", + "theme": "cafes_and_pubs", + "answer": 7, + "imagery": "osm", + "language": "de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.4485105, + 49.4769189 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-12T13:40:26Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113697242, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "answer": 7, + "imagery": "CartoDB.Voyager", + "language": "nl", + "change_within_1000m": 7 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2532747, + 50.7435566 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Maarten O", + "uid": "13326535", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #aed_brugge", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-12T13:38:51Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113697189, + "host": "mapcomplete.osm.be", + "theme": "aed", + "answer": 1, + "imagery": "HDM_HOT", + "language": "nl", + "change_within_1000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2238342, + 51.2079706 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "LFFMH", + "uid": "14449743", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-12T13:29:39Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113696848, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 14.0631437, + 52.0389766 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Abir-Reza Alauddin", + "uid": "14423423", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #climbing", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-12T13:22:56Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113696506, + "host": "mapcomplete.osm.be", + "theme": "climbing", + "imagery": "osm", + "language": "de", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.6898369, + 50.1276097 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-12T12:52:57Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113695360, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "answer": 2, + "imagery": "osm", + "language": "en", + "change_within_1000m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.248831, + 50.741326 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Grxzzly_", + "uid": "14423678", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #artwork", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-12T11:49:33Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113692952, + "host": "mapcomplete.osm.be", + "theme": "artwork", + "answer": 1, + "imagery": "osm", + "language": "en", + "add-image": 1, + "change_within_25m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.669955, + 50.1448601 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Grxzzly_", + "uid": "14423678", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-12T11:43:17Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113692745, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "answer": 6, + "imagery": "osm", + "language": "en", + "add-image": 1, + "change_within_25m": 2, + "change_within_50m": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.668921, + 50.1439577 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Grxzzly_", + "uid": "14423678", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #waste_basket", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-12T11:40:42Z", + "reviewed_features": [], + "create": 3, + "modify": 0, + "delete": 0, + "area": 0.00000106569960000036, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113692652, + "host": "mapcomplete.osm.be", + "theme": "waste_basket", + "answer": 3, + "imagery": "osm", + "language": "en", + "change_within_25m": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.6693012, + 50.1435194 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Grxzzly_", + "uid": "14423678", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-12T11:07:57Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 5.49226000017609e-9, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113691415, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 10, + "imagery": "CartoDB.Voyager", + "language": "en", + "add-image": 1, + "change_within_25m": 11 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.686496049999999, + 50.1153186 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "ReTroll", + "uid": "4909451", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-12T08:26:54Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 5.56307999982847e-9, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113684745, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "answer": 1, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.3043364, + 47.073127 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "ReTroll", + "uid": "4909451", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-12T06:44:23Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.0000486393412099971, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113680426, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "answer": 4, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.30238595, + 47.12222705 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Yanxg", + "uid": "14436337", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #cafes_and_pubs", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-11T19:37:56Z", + "reviewed_features": [], + "create": 2, + "modify": 0, + "delete": 0, + "area": 8.82026729996815e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113666227, + "host": "mapcomplete.osm.be", + "theme": "cafes_and_pubs", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.14602965, + 49.840428450000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Yanxg", + "uid": "14436337", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #fritures", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-11T19:34:58Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113666128, + "host": "mapcomplete.osm.be", + "theme": "fritures", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.1488433, + 49.8067305 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-11T19:30:28Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113666007, + "host": "mapcomplete.osm.be", + "theme": "food", + "answer": 5, + "imagery": "osm", + "language": "en", + "change_within_25m": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2376243, + 50.7366011 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-11T18:48:26Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113664697, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "food", + "answer": 1, + "imagery": "CartoDB.Voyager", + "language": "en", + "change_within_5000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2263353, + 51.2096424 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Yanxg", + "uid": "14436337", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #fritures", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-11T18:37:02Z", + "reviewed_features": [], + "create": 6, + "modify": 0, + "delete": 0, + "area": 0.0000287575351200046, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113664294, + "host": "mapcomplete.osm.be", + "theme": "fritures", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.1552538, + 49.8048021 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Yanxg", + "uid": "14436337", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #waste_basket", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-11T18:14:52Z", + "reviewed_features": [], + "create": 13, + "modify": 0, + "delete": 0, + "area": 0.000058726923320058, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113663618, + "host": "mapcomplete.osm.be", + "theme": "waste_basket", + "answer": 9, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.1613773, + 49.802349050000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Yanxg", + "uid": "14436337", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #parkings", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-11T17:59:20Z", + "reviewed_features": [], + "create": 6, + "modify": 0, + "delete": 0, + "area": 0.00000204321538000214, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113663060, + "host": "mapcomplete.osm.be", + "theme": "parkings", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.1612914, + 49.80233005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Yanxg", + "uid": "14436337", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #facadegardens", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-11T17:57:52Z", + "reviewed_features": [], + "create": 2, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113663005, + "host": "mapcomplete.osm.be", + "theme": "facadegardens", + "answer": 3, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.1612217, + 49.8024287 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Yanxg", + "uid": "14436337", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-11T17:47:21Z", + "reviewed_features": [], + "create": 5, + "modify": 0, + "delete": 0, + "area": 0.0000551038015999803, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113662582, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "answer": 1, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.158906949999999, + 49.8059756 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Yanxg", + "uid": "14436337", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-11T17:36:39Z", + "reviewed_features": [], + "create": 4, + "modify": 0, + "delete": 0, + "area": 0.00000138273874999847, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113662208, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "imagery": "HDM_HOT", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.16029495, + 49.80140385 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Yanxg", + "uid": "14436337", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-11T17:21:18Z", + "reviewed_features": [], + "create": 13, + "modify": 1, + "delete": 0, + "area": 0.000124051448040004, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113661631, + "host": "mapcomplete.osm.be", + "theme": "benches", + "answer": 3, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.1599798, + 49.806965649999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-11T17:20:33Z", + "reviewed_features": [], + "create": 0, + "modify": 7, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113661608, + "host": "mapcomplete.osm.be", + "theme": "food", + "answer": 7, + "imagery": "osm", + "language": "en", + "change_within_1000m": 7 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2263353, + 51.2096424 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Gncatr", + "uid": "14423389", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #parkings", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-11T17:20:29Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113661606, + "host": "mapcomplete.osm.be", + "theme": "parkings", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.9852071, + 50.0386577 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Gncatr", + "uid": "14423389", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #street_lighting", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-11T17:18:30Z", + "reviewed_features": [], + "create": 2, + "modify": 2, + "delete": 0, + "area": 1.58330739999979e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113661550, + "host": "mapcomplete.osm.be", + "theme": "street_lighting", + "answer": 7, + "imagery": "osm", + "language": "en", + "change_within_50m": 4, + "change_within_100m": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.985786449999999, + 50.0384269 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Gncatr", + "uid": "14423389", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #artwork", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-11T17:09:33Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113661212, + "host": "mapcomplete.osm.be", + "theme": "artwork", + "answer": 1, + "imagery": "osm", + "language": "de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.9840189, + 50.0397068 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Gncatr", + "uid": "14423389", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-11T17:08:08Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113661169, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "answer": 4, + "imagery": "osm", + "language": "de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.9843253, + 50.0391539 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Gncatr", + "uid": "14423389", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #cycle_infra", + "comments_count": 1, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-11T17:01:00Z", + "reviewed_features": [], + "create": 6, + "modify": 5, + "delete": 0, + "area": 0.0000335890302599913, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113660924, + "host": "mapcomplete.osm.be", + "theme": "cycle_infra", + "answer": 8, + "imagery": "CartoDB.Voyager", + "language": "de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.984525999999999, + 50.03906635 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Gncatr", + "uid": "14423389", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #waste_basket", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-11T16:57:27Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113660783, + "host": "mapcomplete.osm.be", + "theme": "waste_basket", + "answer": 1, + "imagery": "osm", + "language": "de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.9813849, + 50.0410488 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Gncatr", + "uid": "14423389", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-11T16:55:09Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113660696, + "host": "mapcomplete.osm.be", + "theme": "benches", + "answer": 4, + "imagery": "osm", + "language": "de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.981173, + 50.0423011 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Gncatr", + "uid": "14423389", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-11T16:53:57Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113660668, + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "osm", + "language": "de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.9811918, + 50.0423183 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Selin Yel", + "uid": "14423396", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #artwork", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-11T16:44:06Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113660337, + "host": "mapcomplete.osm.be", + "theme": "artwork", + "answer": 1, + "imagery": "osm", + "language": "en", + "add-image": 1, + "change_within_25m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.1607603, + 49.8024633 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Gncatr", + "uid": "14423389", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-11T16:43:28Z", + "reviewed_features": [], + "create": 1, + "modify": 7, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113660317, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "answer": 8, + "imagery": "CartoDB.Voyager", + "language": "de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.9819241, + 50.0414725 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Selin Yel", + "uid": "14423396", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-11T16:39:30Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113660174, + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.1590598, + 49.8026295 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Yanxg", + "uid": "14436337", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #cafes_and_pubs", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-11T16:27:38Z", + "reviewed_features": [], + "create": 2, + "modify": 0, + "delete": 0, + "area": 0.00000351601991999663, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113659748, + "host": "mapcomplete.osm.be", + "theme": "cafes_and_pubs", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.1597934, + 49.80452075 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Selin Yel", + "uid": "14423396", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-11T16:24:35Z", + "reviewed_features": [], + "create": 5, + "modify": 9, + "delete": 0, + "area": 0.00000135597419998786, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113659643, + "host": "mapcomplete.osm.be", + "theme": "benches", + "answer": 25, + "imagery": "osm", + "language": "en", + "change_within_25m": 24, + "change_within_50m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.158330249999999, + 49.8028909 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Selin Yel", + "uid": "14423396", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #waste_basket", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-11T16:23:17Z", + "reviewed_features": [], + "create": 6, + "modify": 1, + "delete": 0, + "area": 0.00000362193149998517, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113659591, + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "waste_basket", + "answer": 6, + "imagery": "osm", + "language": "en", + "change_within_25m": 6, + "change_within_50m": 1, + "move:node/9243908844": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.1583209, + 49.80278965 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Yanxg", + "uid": "14436337", + "editor": "MapComplete 0.12.7", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-11T16:22:40Z", + "reviewed_features": [], + "create": 6, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113659569, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "answer": 1, + "imagery": "HDM_HOT", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.160189, + 49.8029775 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Selin Yel", + "uid": "14423396", + "editor": "MapComplete 0.12.6", + "comment": "Adding data with #MapComplete for theme #parkings", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-11T16:19:29Z", + "reviewed_features": [], + "create": 9, + "modify": 0, + "delete": 0, + "area": 0.00000187559517001751, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113659450, + "host": "mapcomplete.osm.be", + "theme": "parkings", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.15700395, + 49.80288745 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Yanxg", + "uid": "14436337", + "editor": "MapComplete 0.12.6", + "comment": "Adding data with #MapComplete for theme #campersite", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-11T16:17:13Z", + "reviewed_features": [], + "create": 2, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113659366, + "host": "mapcomplete.osm.be", + "theme": "campersite", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.1788948, + 49.7538018 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Yanxg", + "uid": "14436337", + "editor": "MapComplete 0.12.6", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-11T16:14:55Z", + "reviewed_features": [], + "create": 3, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113659288, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.1656822, + 49.7933756 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Selin Yel", + "uid": "14423396", + "editor": "MapComplete 0.12.6", + "comment": "Adding data with #MapComplete for theme #street_lighting", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-11T16:12:11Z", + "reviewed_features": [], + "create": 9, + "modify": 5, + "delete": 0, + "area": 0.00000345907702000459, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113659179, + "host": "mapcomplete.osm.be", + "theme": "street_lighting", + "answer": 26, + "imagery": "osm", + "language": "en", + "change_within_25m": 20, + "change_within_50m": 6 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.1577482, + 49.80287535 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + }, + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-9243903292", + "osm_id": 9243903292, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "shop": "digitale Medien" + } + }, + { + "url": "node-9243925011", + "osm_id": 9243925011, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "shop": "Versicherungen" + } + } + ], + "user": "Selin Yel", + "uid": "14423396", + "editor": "MapComplete 0.12.6", + "comment": "Adding data with #MapComplete for theme #waste_basket", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-11T16:09:16Z", + "reviewed_features": [], + "create": 2, + "modify": 0, + "delete": 0, + "area": 0.00000104733419999638, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113659027, + "host": "mapcomplete.osm.be", + "theme": "waste_basket", + "answer": 3, + "imagery": "osm", + "language": "de", + "change_within_25m": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.156385700000001, + 49.803068350000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Yanxg", + "uid": "14436337", + "editor": "MapComplete 0.12.6", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-11T16:08:59Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113659015, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.1579735, + 49.801326 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Yanxg", + "uid": "14436337", + "editor": "MapComplete 0.12.6", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-11T16:05:18Z", + "reviewed_features": [], + "create": 2, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113658838, + "host": "mapcomplete.osm.be", + "theme": "food", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.1626325, + 49.8023629 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Selin Yel", + "uid": "14423396", + "editor": "MapComplete 0.12.6", + "comment": "Adding data with #MapComplete for theme #cafes_and_pubs", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-11T16:01:43Z", + "reviewed_features": [], + "create": 1, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113658681, + "host": "mapcomplete.osm.be", + "theme": "cafes_and_pubs", + "answer": 6, + "imagery": "osm", + "language": "de", + "change_within_25m": 5, + "change_within_50m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.1552243, + 49.8030952 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Yanxg", + "uid": "14436337", + "editor": "MapComplete 0.12.6", + "comment": "Adding data with #MapComplete for theme #street_lighting", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-11T16:01:19Z", + "reviewed_features": [], + "create": 10, + "modify": 2, + "delete": 0, + "area": 0.00000749192950000058, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113658667, + "host": "mapcomplete.osm.be", + "theme": "street_lighting", + "answer": 5, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.16364795, + 49.8037963 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.12.6", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-11T15:55:15Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 3.30694899999425e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113658469, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 6, + "imagery": "AGIV10cm", + "language": "en", + "add-image": 2, + "change_within_25m": 8 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.25393335, + 50.725780349999994 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Yanxg", + "uid": "14436337", + "editor": "MapComplete 0.12.6", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-11T15:43:33Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113657967, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "answer": 1, + "imagery": "osm", + "language": "de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.1671735, + 49.7998942 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Yanxg", + "uid": "14436337", + "editor": "MapComplete 0.12.6", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-11T15:37:39Z", + "reviewed_features": [], + "create": 16, + "modify": 0, + "delete": 0, + "area": 0.000016251251420004, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113657736, + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "osm", + "language": "de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.1597357, + 49.80114415 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Yanxg", + "uid": "14436337", + "editor": "MapComplete 0.12.6", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-11T15:34:22Z", + "reviewed_features": [], + "create": 4, + "modify": 1, + "delete": 0, + "area": 6.93663879997258e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113657620, + "host": "mapcomplete.osm.be", + "theme": "benches", + "answer": 5, + "imagery": "osm", + "language": "de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.15785955, + 49.800221 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Yanxg", + "uid": "14436337", + "editor": "MapComplete 0.12.6", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-11T15:32:49Z", + "reviewed_features": [], + "create": 2, + "modify": 0, + "delete": 0, + "area": 2.80799999784335e-11, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113657564, + "host": "mapcomplete.osm.be", + "theme": "benches", + "answer": 1, + "imagery": "osm", + "language": "de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.15853005, + 49.7999115 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Yanxg", + "uid": "14436337", + "editor": "MapComplete 0.12.6", + "comment": "Adding data with #MapComplete for theme #cycle_infra", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-11T15:29:19Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.00000287828616000439, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113657450, + "host": "mapcomplete.osm.be", + "theme": "cycle_infra", + "answer": 5, + "imagery": "CartoDB.Voyager", + "language": "de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.1570915, + 49.800447000000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Yanxg", + "uid": "14436337", + "editor": "MapComplete 0.12.6", + "comment": "Adding data with #MapComplete for theme #street_lighting", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-11T15:26:14Z", + "reviewed_features": [], + "create": 2, + "modify": 0, + "delete": 0, + "area": 0.00000201053814001154, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113657347, + "host": "mapcomplete.osm.be", + "theme": "street_lighting", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.16274785, + 49.801279199999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Yanxg", + "uid": "14436337", + "editor": "MapComplete 0.12.6", + "comment": "Adding data with #MapComplete for theme #waste_basket", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-11T15:23:16Z", + "reviewed_features": [], + "create": 2, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113657212, + "host": "mapcomplete.osm.be", + "theme": "waste_basket", + "answer": 1, + "imagery": "osm", + "language": "de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.1606718, + 49.8018436 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Yanxg", + "uid": "14436337", + "editor": "MapComplete 0.12.6", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-11T15:17:29Z", + "reviewed_features": [], + "create": 8, + "modify": 1, + "delete": 0, + "area": 1.92227560003999e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113657009, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "answer": 4, + "imagery": "osm", + "language": "de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.16094545, + 49.802493600000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Yanxg", + "uid": "14436337", + "editor": "MapComplete 0.12.6", + "comment": "Adding data with #MapComplete for theme #parkings", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-11T15:12:02Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113656795, + "host": "mapcomplete.osm.be", + "theme": "parkings", + "imagery": "osm", + "language": "de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.1637403, + 49.802453 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Yanxg", + "uid": "14436337", + "editor": "MapComplete 0.12.6", + "comment": "Adding data with #MapComplete for theme #postboxes", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-11T15:08:43Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113656695, + "host": "mapcomplete.osm.be", + "theme": "postboxes", + "answer": 1, + "imagery": "CartoDB.Voyager", + "language": "de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.162371, + 49.8030623 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.12.5", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-11T12:10:27Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113649599, + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "osm", + "language": "en", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.2484543, + -39.8131879 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Wesomat87", + "uid": "14348684", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-11T11:48:20Z", + "reviewed_features": [], + "create": 3, + "modify": 2, + "delete": 0, + "area": 0.00000657169134997989, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113648617, + "host": "www.waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 12.75899385, + 53.15936765 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Lea Ziegle", + "uid": "14423363", + "editor": "MapComplete 0.12.5", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-10T18:25:43Z", + "reviewed_features": [], + "create": 10, + "modify": 21, + "delete": 0, + "area": 0.000988510331520011, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113621156, + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "benches", + "answer": 62, + "imagery": "osm", + "language": "de", + "move:node/9241346070": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.9458849, + 50.280960500000006 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Tamara Zafirova", + "uid": "14422734", + "editor": "MapComplete 0.12.5", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-10T16:57:53Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113617351, + "host": "mapcomplete.osm.be", + "theme": "shops", + "answer": 1, + "imagery": "osm", + "language": "de", + "change_within_25m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.5497558, + 50.1005473 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Tamara Zafirova", + "uid": "14422734", + "editor": "MapComplete 0.12.5", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-10T16:38:55Z", + "reviewed_features": [], + "create": 2, + "modify": 0, + "delete": 0, + "area": 3.77568000005621e-9, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113616486, + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "osm", + "language": "de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.5469288, + 50.10262385 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Tamara Zafirova", + "uid": "14422734", + "editor": "MapComplete 0.12.5", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-10T16:36:14Z", + "reviewed_features": [], + "create": 4, + "modify": 1, + "delete": 0, + "area": 5.99634999991383e-8, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113616350, + "host": "mapcomplete.osm.be", + "theme": "benches", + "answer": 3, + "imagery": "osm", + "language": "de", + "change_within_25m": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.547218449999999, + 50.1026849 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Maarten O", + "uid": "13326535", + "editor": "MapComplete 0.12.5", + "comment": "Adding data with #MapComplete for theme #aed_brugge", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-10T16:34:38Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 0.00160165419990046, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113616285, + "host": "mapcomplete.osm.be", + "theme": "aed", + "answer": 6, + "imagery": "HDM_HOT", + "language": "nl", + "add-image": 3, + "change_within_25m": 8, + "change_within_5000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.24020775, + 51.2043448 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Tamara Zafirova", + "uid": "14422734", + "editor": "MapComplete 0.12.5", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-10T16:15:02Z", + "reviewed_features": [], + "create": 4, + "modify": 1, + "delete": 0, + "area": 0.00000150567659999582, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113615451, + "host": "mapcomplete.osm.be", + "theme": "food", + "answer": 4, + "imagery": "osm", + "language": "de", + "add-image": 1, + "change_within_25m": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.54247095, + 50.106960799999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Tamara Zafirova", + "uid": "14422734", + "editor": "MapComplete 0.12.5", + "comment": "Adding data with #MapComplete for theme #waste_basket", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-10T16:12:27Z", + "reviewed_features": [], + "create": 4, + "modify": 1, + "delete": 0, + "area": 0.0000433780830000337, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113615348, + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "waste_basket", + "answer": 4, + "imagery": "osm", + "language": "de", + "change_within_25m": 5, + "move:node/9241010777": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.5447951, + 50.10491785 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Tamara Zafirova", + "uid": "14422734", + "editor": "MapComplete 0.12.5", + "comment": "Adding data with #MapComplete for theme #cafes_and_pubs", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-10T16:01:43Z", + "reviewed_features": [], + "create": 5, + "modify": 3, + "delete": 0, + "area": 0.000106781131290011, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113614934, + "host": "mapcomplete.osm.be", + "theme": "cafes_and_pubs", + "answer": 4, + "imagery": "osm", + "language": "de", + "add-image": 2, + "change_within_25m": 6 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.54438065, + 50.10558605 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "K-Pete", + "uid": "9038981", + "editor": "MapComplete 0.12.5", + "comment": "Adding data with #MapComplete for theme #cycle_infra", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-10T15:58:41Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113614812, + "host": "mapcomplete.osm.be", + "theme": "cycle_infra", + "answer": 2, + "imagery": "CartoDB.Voyager", + "language": "de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.6937454, + 50.1296435 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Tamara Zafirova", + "uid": "14422734", + "editor": "MapComplete 0.12.5", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-10T15:54:38Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113614651, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "answer": 3, + "imagery": "osm", + "language": "de", + "change_within_500m": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.5340783, + 50.1146463 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Tamara Zafirova", + "uid": "14422734", + "editor": "MapComplete 0.12.5", + "comment": "Adding data with #MapComplete for theme #waste_basket", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-10T15:40:51Z", + "reviewed_features": [], + "create": 10, + "modify": 3, + "delete": 0, + "area": 0.00016710411749992, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113614079, + "host": "mapcomplete.osm.be", + "move": 3, + "theme": "waste_basket", + "answer": 10, + "imagery": "osm", + "language": "de", + "move:node/-1": "improve_accuracy", + "change_within_25m": 13, + "move:node/9240998351": "improve_accuracy", + "move:node/9241137476": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.5418366, + 50.10780245 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Gncatr", + "uid": "14423389", + "editor": "MapComplete 0.12.5", + "comment": "Adding data with #MapComplete for theme #artwork", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-10T15:30:30Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113613656, + "host": "mapcomplete.osm.be", + "theme": "artwork", + "answer": 1, + "imagery": "osm", + "language": "en", + "change_within_25m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.9749181, + 50.0442803 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Gncatr", + "uid": "14423389", + "editor": "MapComplete 0.12.5", + "comment": "Adding data with #MapComplete for theme #waste_basket", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-10T15:30:05Z", + "reviewed_features": [], + "create": 2, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113613643, + "host": "mapcomplete.osm.be", + "theme": "waste_basket", + "answer": 1, + "imagery": "osm", + "language": "en", + "change_within_25m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.9749449, + 50.0443302 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Gncatr", + "uid": "14423389", + "editor": "MapComplete 0.12.5", + "comment": "Adding data with #MapComplete for theme #waste_basket", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-10T15:25:47Z", + "reviewed_features": [], + "create": 2, + "modify": 2, + "delete": 0, + "area": 2.85179439998008e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113613487, + "host": "mapcomplete.osm.be", + "theme": "waste_basket", + "answer": 2, + "imagery": "osm", + "language": "en", + "add-image": 1, + "change_within_25m": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.975534849999999, + 50.043349199999994 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Gncatr", + "uid": "14423389", + "editor": "MapComplete 0.12.5", + "comment": "Adding data with #MapComplete for theme #waste_basket", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-10T15:25:47Z", + "reviewed_features": [], + "create": 2, + "modify": 0, + "delete": 0, + "area": 4.46901999976122e-9, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113613486, + "host": "mapcomplete.osm.be", + "theme": "waste_basket", + "answer": 2, + "imagery": "osm", + "language": "en", + "change_within_25m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.975598049999999, + 50.043480200000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Gncatr", + "uid": "14423389", + "editor": "MapComplete 0.12.5", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-10T15:23:06Z", + "reviewed_features": [], + "create": 2, + "modify": 0, + "delete": 0, + "area": 4.78520699998025e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113613375, + "host": "mapcomplete.osm.be", + "theme": "shops", + "answer": 2, + "imagery": "osm", + "language": "en", + "change_within_25m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.97555475, + 50.043371199999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Gncatr", + "uid": "14423389", + "editor": "MapComplete 0.12.5", + "comment": "Adding data with #MapComplete for theme #parkings", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-10T15:16:42Z", + "reviewed_features": [], + "create": 2, + "modify": 0, + "delete": 0, + "area": 7.45410239999122e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113613114, + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "parkings", + "imagery": "osm", + "language": "en", + "move:node/-1": "improve_accuracy", + "change_within_25m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.9761548, + 50.0425456 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Gncatr", + "uid": "14423389", + "editor": "MapComplete 0.12.5", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-10T15:05:44Z", + "reviewed_features": [], + "create": 5, + "modify": 2, + "delete": 0, + "area": 0.00000442510599001278, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113612599, + "host": "mapcomplete.osm.be", + "theme": "shops", + "answer": 7, + "imagery": "osm", + "language": "en", + "change_within_25m": 6, + "change_within_50m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.97722615, + 50.042217550000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Gncatr", + "uid": "14423389", + "editor": "MapComplete 0.12.5", + "comment": "Adding data with #MapComplete for theme #cyclestreets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-10T15:03:51Z", + "reviewed_features": [], + "create": 2, + "modify": 2, + "delete": 0, + "area": 0.00000875889056000161, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113612509, + "host": "mapcomplete.osm.be", + "split": 3, + "theme": "cyclestreets", + "answer": 2, + "imagery": "osm", + "language": "en", + "change_within_25m": 4, + "change_within_100m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.9773203, + 50.0421193 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Gncatr", + "uid": "14423389", + "editor": "MapComplete 0.12.5", + "comment": "Adding data with #MapComplete for theme #street_lighting", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-10T14:55:02Z", + "reviewed_features": [], + "create": 6, + "modify": 4, + "delete": 0, + "area": 0.00000290310461998559, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113612102, + "host": "mapcomplete.osm.be", + "split": 2, + "theme": "street_lighting", + "answer": 18, + "imagery": "osm", + "language": "en", + "relation-fix": 1, + "change_within_25m": 20 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.97821595, + 50.0417998 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Gncatr", + "uid": "14423389", + "editor": "MapComplete 0.12.5", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-10T14:49:41Z", + "reviewed_features": [], + "create": 2, + "modify": 2, + "delete": 0, + "area": 0.0000180691031700152, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113611794, + "host": "mapcomplete.osm.be", + "theme": "benches", + "answer": 9, + "imagery": "osm", + "language": "en", + "change_within_25m": 9 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.97823605, + 50.042525850000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Selin Yel", + "uid": "14423396", + "editor": "MapComplete 0.12.5", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-10T14:49:31Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113611786, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.9813273, + 50.0409669 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "sualko", + "uid": "11086971", + "editor": "MapComplete 0.12.5", + "comment": "Adding data with #MapComplete for theme #test", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-10T14:40:10Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113611335, + "host": "mapcomplete.osm.be", + "theme": "test", + "answer": 1, + "imagery": "osm", + "language": "de", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.1704841, + 48.7253806 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Gruppe 6", + "uid": "14427130", + "editor": "MapComplete 0.12.5", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-10T13:05:19Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113607510, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "answer": 6, + "imagery": "osm", + "language": "de", + "change_within_25m": 6 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.6381339, + 50.1232861 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Gruppe 6", + "uid": "14427130", + "editor": "MapComplete 0.12.5", + "comment": "Adding data with #MapComplete for theme #cafes_and_pubs", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-10T12:54:48Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113607198, + "host": "mapcomplete.osm.be", + "theme": "cafes_and_pubs", + "answer": 5, + "imagery": "osm", + "language": "de", + "change_within_25m": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.644698, + 50.1229582 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.12.5", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/railway", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-10T12:51:05Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.00139282330581061, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113607073, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/railway", + "answer": 4, + "imagery": "osm", + "language": "es", + "change_within_25m": 1, + "change_within_500m": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.53979215, + -34.63900825 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + }, + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-9240517718", + "name": "Call a bike station", + "osm_id": 9240517718, + "reasons": [ + 43 + ], + "version": 4, + "primary_tags": { + "amenity": "bicycle_library" + } + } + ], + "user": "Gruppe 6", + "uid": "14427130", + "editor": "MapComplete 0.12.5", + "comment": "Adding data with #MapComplete for theme #bicyclelib", + "comments_count": 1, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-10T12:46:44Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113606918, + "host": "mapcomplete.osm.be", + "theme": "bicyclelib", + "answer": 5, + "imagery": "osm", + "language": "de", + "change_within_25m": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.6430378, + 50.1235416 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.12.5", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-10T12:33:21Z", + "reviewed_features": [], + "create": 6, + "modify": 1, + "delete": 0, + "area": 0.0161826207550004, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113606449, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/signals", + "answer": 15, + "imagery": "EsriWorldImageryClarity", + "language": "es", + "change_within_25m": 12, + "change_within_1000m": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.5743771, + -34.63804115000001 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Gruppe 6", + "uid": "14427130", + "editor": "MapComplete 0.12.5", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-10T12:22:05Z", + "reviewed_features": [], + "create": 1, + "modify": 5, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113606018, + "host": "mapcomplete.osm.be", + "theme": "shops", + "answer": 5, + "imagery": "osm", + "language": "de", + "change_within_25m": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.6429062, + 50.1239728 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Gruppe 6", + "uid": "14427130", + "editor": "MapComplete 0.12.5", + "comment": "Adding data with #MapComplete for theme #parkings", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-10T12:16:11Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113605823, + "host": "mapcomplete.osm.be", + "theme": "parkings", + "imagery": "osm", + "language": "de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.6428607, + 50.1240037 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Gruppe 6", + "uid": "14427130", + "editor": "MapComplete 0.12.5", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-10T12:11:39Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 1.903559000065e-8, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113605661, + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "benches", + "answer": 5, + "imagery": "osm", + "language": "de", + "change_within_25m": 6, + "move:node/9240371801": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.64227815, + 50.12367365 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "AliceKaufmann", + "uid": "14437368", + "editor": "MapComplete 0.12.5", + "comment": "Adding data with #MapComplete for theme #parkings", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-10T12:07:56Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113605548, + "host": "mapcomplete.osm.be", + "theme": "parkings", + "imagery": "osm", + "language": "de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.6413559, + 50.1237561 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Maarten O", + "uid": "13326535", + "editor": "MapComplete 0.12.5", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-10T12:02:10Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113605291, + "host": "mapcomplete.osm.be", + "theme": "aed", + "answer": 2, + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2578433, + 51.2068582 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Gruppe 6", + "uid": "14427130", + "editor": "MapComplete 0.12.5", + "comment": "Adding data with #MapComplete for theme #test", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-10T11:59:33Z", + "reviewed_features": [], + "create": 0, + "modify": 6, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113605210, + "host": "mapcomplete.osm.be", + "theme": "test", + "answer": 9, + "imagery": "osm", + "language": "de", + "change_within_25m": 9 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.6404319, + 50.1237762 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "AliceKaufmann", + "uid": "14437368", + "editor": "MapComplete 0.12.5", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-10T11:58:37Z", + "reviewed_features": [], + "create": 1, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113605176, + "host": "mapcomplete.osm.be", + "theme": "food", + "answer": 8, + "imagery": "osm", + "language": "de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.6406317, + 50.1236633 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "AliceKaufmann", + "uid": "14437368", + "editor": "MapComplete 0.12.5", + "comment": "Adding data with #MapComplete for theme #cafes_and_pubs", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-10T11:48:20Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113604837, + "host": "mapcomplete.osm.be", + "theme": "cafes_and_pubs", + "answer": 5, + "imagery": "osm", + "language": "de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.6392477, + 50.1246641 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Gruppe 6", + "uid": "14427130", + "editor": "MapComplete 0.12.5", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-10T11:47:21Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 1, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113604805, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "imagery": "CartoDB.Voyager", + "deletion": 1, + "language": "de", + "change_within_25m": 1, + "deletion:node/9240394592": "testing point" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.6388749, + 50.1249341 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "AliceKaufmann", + "uid": "14437368", + "editor": "MapComplete 0.12.5", + "comment": "Adding data with #MapComplete for theme #postboxes", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-10T11:39:47Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113604564, + "host": "mapcomplete.osm.be", + "theme": "postboxes", + "imagery": "CartoDB.Voyager", + "language": "de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.6351493, + 50.1237286 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "AliceKaufmann", + "uid": "14437368", + "editor": "MapComplete 0.12.5", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-10T11:28:06Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 1.09296000039273e-9, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113604148, + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "trees", + "answer": 1, + "imagery": "osm", + "language": "de", + "move:node/9240321658": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.638031999999999, + 50.1219264 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "AliceKaufmann", + "uid": "14437368", + "editor": "MapComplete 0.12.5", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-10T11:20:52Z", + "reviewed_features": [], + "create": 0, + "modify": 13, + "delete": 0, + "area": 0.0000229069660500024, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113603891, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "answer": 16, + "imagery": "osm", + "language": "de", + "add-image": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.63991335, + 50.12286415 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Gruppe 6", + "uid": "14427130", + "editor": "MapComplete 0.12.5", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-10T11:19:23Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113603838, + "host": "mapcomplete.osm.be", + "theme": "trees", + "answer": 1, + "imagery": "osm", + "language": "de", + "change_within_25m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.6376545, + 50.1215962 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "AliceKaufmann", + "uid": "14437368", + "editor": "MapComplete 0.12.5", + "comment": "Adding data with #MapComplete for theme #waste_basket", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-10T11:18:24Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113603802, + "host": "mapcomplete.osm.be", + "theme": "waste_basket", + "answer": 1, + "imagery": "osm", + "language": "de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.6375512, + 50.1214672 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "sualko", + "uid": "11086971", + "editor": "MapComplete 0.12.5", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-10T11:02:18Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113603188, + "host": "mapcomplete.osm.be", + "theme": "aed", + "answer": 5, + "imagery": "osm", + "language": "de", + "change_within_25m": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.1704841, + 48.7253806 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Abir-Reza Alauddin", + "uid": "14423423", + "editor": "MapComplete 0.12.5", + "comment": "Adding data with #MapComplete for theme #postboxes", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-10T10:51:06Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 1.0275504000031e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113602685, + "host": "mapcomplete.osm.be", + "theme": "postboxes", + "answer": 3, + "imagery": "CartoDB.Voyager", + "language": "de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.6842887, + 50.126216 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Abir-Reza Alauddin", + "uid": "14423423", + "editor": "MapComplete 0.12.5", + "comment": "Adding data with #MapComplete for theme #postboxes", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-10T10:51:06Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113602684, + "host": "mapcomplete.osm.be", + "theme": "postboxes", + "imagery": "CartoDB.Voyager", + "language": "de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.6838555, + 50.1261567 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + }, + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-9240236465", + "name": "Schiller Apotheke", + "osm_id": 9240236465, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "shop": "Medizin" + } + } + ], + "user": "Abir-Reza Alauddin", + "uid": "14423423", + "editor": "MapComplete 0.12.5", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-10T10:40:41Z", + "reviewed_features": [], + "create": 3, + "modify": 4, + "delete": 0, + "area": 2.85723899996051e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113602296, + "host": "mapcomplete.osm.be", + "theme": "shops", + "answer": 7, + "imagery": "osm", + "language": "de", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.685079949999999, + 50.1264748 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Gruppe 6", + "uid": "14427130", + "editor": "MapComplete 0.12.5", + "comment": "Adding data with #MapComplete for theme #test", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-10T10:39:11Z", + "reviewed_features": [], + "create": 1, + "modify": 4, + "delete": 0, + "area": 0.00000133381378000755, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113602222, + "host": "mapcomplete.osm.be", + "theme": "test", + "answer": 3, + "imagery": "osm", + "language": "de", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.64021945, + 50.125679500000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Abir-Reza Alauddin", + "uid": "14423423", + "editor": "MapComplete 0.12.5", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-10T10:36:36Z", + "reviewed_features": [], + "create": 1, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113602123, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "answer": 5, + "imagery": "osm", + "language": "de", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.6862373, + 50.12659 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Abir-Reza Alauddin", + "uid": "14423423", + "editor": "MapComplete 0.12.5", + "comment": "Adding data with #MapComplete for theme #waste_basket", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-10T10:31:15Z", + "reviewed_features": [], + "create": 2, + "modify": 1, + "delete": 0, + "area": 3.14877999990273e-8, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113601902, + "host": "mapcomplete.osm.be", + "theme": "waste_basket", + "answer": 2, + "imagery": "osm", + "language": "de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.6868234, + 50.126735350000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Abir-Reza Alauddin", + "uid": "14423423", + "editor": "MapComplete 0.12.5", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-10T10:25:11Z", + "reviewed_features": [], + "create": 2, + "modify": 6, + "delete": 0, + "area": 9.54939510010869e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113601645, + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "benches", + "answer": 11, + "imagery": "osm", + "language": "de", + "add-image": 1, + "move:node/9240267570": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.68669735, + 50.12670695 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Gruppe 6", + "uid": "14427130", + "editor": "MapComplete 0.12.5", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-10T10:19:51Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113601430, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 2, + "imagery": "CartoDB.Voyager", + "language": "de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.6407429, + 50.1272733 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Abir-Reza Alauddin", + "uid": "14423423", + "editor": "MapComplete 0.12.5", + "comment": "Adding data with #MapComplete for theme #parkings", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-10T10:17:29Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 9.03230000004829e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113601332, + "host": "mapcomplete.osm.be", + "theme": "parkings", + "imagery": "osm", + "language": "de", + "add-image": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.689150399999999, + 50.1270328 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Abir-Reza Alauddin", + "uid": "14423423", + "editor": "MapComplete 0.12.5", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-10T10:10:19Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113601079, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "answer": 4, + "imagery": "osm", + "language": "de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.6897011, + 50.1273803 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Saputro16", + "uid": "14423472", + "editor": "MapComplete 0.12.5", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-10T09:30:04Z", + "reviewed_features": [], + "create": 0, + "modify": 6, + "delete": 0, + "area": 0.0000187538328000068, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113599699, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "answer": 9, + "imagery": "CartoDB.Voyager", + "language": "de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.6994321, + 50.11287299999999 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Robin van der Linde", + "uid": "5093765", + "editor": "MapComplete 0.12.5", + "comment": "Adding data with #MapComplete for theme #street_lighting_assen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-10T09:02:13Z", + "reviewed_features": [], + "create": 4, + "modify": 1, + "delete": 0, + "area": 0.0000112281976800018, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113598666, + "host": "mapcomplete.osm.be", + "theme": "street_lighting_assen", + "answer": 6, + "imagery": "Actueel_ortho25_WMS", + "language": "en", + "change_within_500m": 6 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.5594736, + 53.0164646 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.12.5", + "comment": "Adding data with #MapComplete for theme #test", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-10T08:57:48Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113598511, + "host": "mapcomplete.osm.be", + "theme": "test", + "answer": 1, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3871451, + 50.8668183 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Saputro16", + "uid": "14423472", + "editor": "MapComplete 0.12.5", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-10T08:53:46Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 1.58471999995757e-8, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113598373, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "answer": 6, + "imagery": "osm", + "language": "de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.6866062, + 50.1146941 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Saputro16", + "uid": "14423472", + "editor": "MapComplete 0.12.5", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-10T08:45:21Z", + "reviewed_features": [], + "create": 0, + "modify": 7, + "delete": 0, + "area": 0.000178332927049979, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113598091, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "answer": 22, + "imagery": "osm", + "language": "de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.69935325, + 50.13102385 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Blacky98", + "uid": "14326205", + "editor": "MapComplete 0.12.5", + "comment": "Adding data with #MapComplete for theme #cycle_infra", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-10T07:02:43Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000296699670999996, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113594709, + "host": "mapcomplete.osm.be", + "theme": "cycle_infra", + "answer": 1, + "imagery": "osmfr-basque", + "language": "de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 12.56197795, + 50.682000349999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.12.5", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-10T00:55:26Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 2.33740500002667e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113588296, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 1, + "imagery": "osm", + "language": "nl", + "change_within_100m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.22888695, + 51.206115 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Alexmol", + "uid": "347293", + "editor": "MapComplete 0.12.3", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-09T22:46:50Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.00824348653915973, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113586229, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "answer": 5, + "imagery": "osm", + "language": "pt", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -7.752205099999999, + 37.1358424 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "afgb1977", + "uid": "10218404", + "editor": "MapComplete 0.12.3", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-09T22:26:59Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113585788, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "imagery": "HDM_HOT", + "language": "en", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.4623911, + 5.0312873 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Niklas0404", + "uid": "14423368", + "editor": "MapComplete 0.12.3", + "comment": "Adding data with #MapComplete for theme #fritures", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-09T21:40:53Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.0000126087341399945, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113584728, + "host": "mapcomplete.osm.be", + "theme": "fritures", + "answer": 6, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.545202849999999, + 50.160830000000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Niklas0404", + "uid": "14423368", + "editor": "MapComplete 0.12.3", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-09T21:35:27Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113584605, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 1, + "imagery": "CartoDB.Voyager", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.5514026, + 50.159433 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Niklas0404", + "uid": "14423368", + "editor": "MapComplete 0.12.3", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-09T21:30:48Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113584481, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "answer": 4, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.550188, + 50.1588121 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Niklas0404", + "uid": "14423368", + "editor": "MapComplete 0.12.3", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-09T21:27:31Z", + "reviewed_features": [], + "create": 1, + "modify": 4, + "delete": 0, + "area": 0.0000311745775100273, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113584409, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "answer": 8, + "imagery": "CartoDB.Voyager", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.547471349999999, + 50.16120555 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Niklas0404", + "uid": "14423368", + "editor": "MapComplete 0.12.3", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-09T21:21:16Z", + "reviewed_features": [], + "create": 3, + "modify": 0, + "delete": 0, + "area": 0.0000148675928800016, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113584246, + "host": "mapcomplete.osm.be", + "theme": "benches", + "answer": 11, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.5449828, + 50.1601884 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Grxzzly_", + "uid": "14423678", + "editor": "MapComplete 0.12.3", + "comment": "Adding data with #MapComplete for theme #street_lighting", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-09T20:00:46Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 7.77960959991867e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113581830, + "host": "mapcomplete.osm.be", + "theme": "street_lighting", + "answer": 3, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.1912836, + 50.20169705 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Grxzzly_", + "uid": "14423678", + "editor": "MapComplete 0.12.3", + "comment": "Adding data with #MapComplete for theme #sport_pitches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-09T19:46:58Z", + "reviewed_features": [], + "create": 0, + "modify": 7, + "delete": 0, + "area": 0.0522773966699786, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113581380, + "host": "mapcomplete.osm.be", + "theme": "sport_pitches", + "answer": 12, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.93181115, + 50.1508993 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Grxzzly_", + "uid": "14423678", + "editor": "MapComplete 0.12.3", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-09T19:44:42Z", + "reviewed_features": [], + "create": 2, + "modify": 2, + "delete": 0, + "area": 3.89135199999847e-8, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113581306, + "host": "mapcomplete.osm.be", + "theme": "benches", + "answer": 6, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.19254185, + 50.1995891 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Niklas0404", + "uid": "14423368", + "editor": "MapComplete 0.12.3", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-09T19:42:30Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113581221, + "host": "mapcomplete.osm.be", + "theme": "benches", + "answer": 5, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.545416, + 50.1595767 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Niklas0404", + "uid": "14423368", + "editor": "MapComplete 0.12.3", + "comment": "Adding data with #MapComplete for theme #parkings", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-09T19:37:22Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113581039, + "host": "mapcomplete.osm.be", + "theme": "parkings", + "imagery": "osm", + "language": "en", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.5464031, + 50.1614016 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Grxzzly_", + "uid": "14423678", + "editor": "MapComplete 0.12.3", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-09T19:34:02Z", + "reviewed_features": [], + "create": 0, + "modify": 10, + "delete": 0, + "area": 0.00000709135899000157, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113580922, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 16, + "imagery": "CartoDB.Voyager", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.19272805, + 50.19846805 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Niklas0404", + "uid": "14423368", + "editor": "MapComplete 0.12.3", + "comment": "Adding data with #MapComplete for theme #street_lighting", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-09T19:26:27Z", + "reviewed_features": [], + "create": 3, + "modify": 18, + "delete": 0, + "area": 0.0000512286847199975, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113580637, + "host": "mapcomplete.osm.be", + "theme": "street_lighting", + "answer": 34, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.54873435, + 50.1643012 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "MaximilianList", + "uid": "14423402", + "editor": "MapComplete 0.12.3", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-09T14:51:32Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113568845, + "host": "mapcomplete.osm.be", + "theme": "trees", + "answer": 2, + "imagery": "osm", + "language": "de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.6788216, + 50.1260216 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "MaximilianList", + "uid": "14423402", + "editor": "MapComplete 0.12.3", + "comment": "Adding data with #MapComplete for theme #artwork", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-09T14:44:18Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113568571, + "host": "mapcomplete.osm.be", + "theme": "artwork", + "answer": 1, + "imagery": "osm", + "language": "de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.6791831, + 50.125971 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "MaximilianList", + "uid": "14423402", + "editor": "MapComplete 0.12.3", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-09T14:40:25Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 9.55100190001775e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113568433, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "answer": 3, + "imagery": "osm", + "language": "de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.67796695, + 50.12684495 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "MaximilianList", + "uid": "14423402", + "editor": "MapComplete 0.12.3", + "comment": "Adding data with #MapComplete for theme #street_lighting", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-09T14:30:20Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113568103, + "host": "mapcomplete.osm.be", + "theme": "street_lighting", + "answer": 3, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.6805457, + 50.1275839 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "MaximilianList", + "uid": "14423402", + "editor": "MapComplete 0.12.3", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-09T14:20:46Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113567768, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "imagery": "HDM_HOT", + "language": "de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.6814415, + 50.1276836 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "MaximilianList", + "uid": "14423402", + "editor": "MapComplete 0.12.3", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-09T14:13:02Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113567505, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 1, + "imagery": "CartoDB.Voyager", + "language": "de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.6816034, + 50.127716 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "MaximilianList", + "uid": "14423402", + "editor": "MapComplete 0.12.3", + "comment": "Adding data with #MapComplete for theme #cycle_infra", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-09T13:59:04Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 0.00000401784183999837, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113566980, + "host": "mapcomplete.osm.be", + "theme": "cycle_infra", + "answer": 7, + "imagery": "CartoDB.Voyager", + "language": "de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.6805324, + 50.12763585 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "MaximilianList", + "uid": "14423402", + "editor": "MapComplete 0.12.3", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-09T13:48:13Z", + "reviewed_features": [], + "create": 2, + "modify": 3, + "delete": 0, + "area": 3.07071599991194e-8, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113566589, + "host": "mapcomplete.osm.be", + "theme": "benches", + "answer": 7, + "imagery": "osm", + "language": "de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.683234599999999, + 50.1282141 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.12.3", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-09T13:15:31Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.000911185000980453, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113565479, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/signals", + "answer": 2, + "imagery": "osm", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.68838615, + -34.6586347 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Saputro16", + "uid": "14423472", + "editor": "MapComplete 0.12.3", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-09T13:05:46Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 0.0000022798149999971, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113565126, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "answer": 11, + "imagery": "osm", + "language": "de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.6891366, + 50.1335472 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Maarten O", + "uid": "13326535", + "editor": "MapComplete 0.12.3", + "comment": "Adding data with #MapComplete for theme #aed_brugge", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-09T13:04:07Z", + "reviewed_features": [], + "create": 3, + "modify": 11, + "delete": 0, + "area": 0.0000758788009200088, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113565062, + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "aed", + "answer": 20, + "imagery": "HDM_HOT", + "language": "nl", + "add-image": 7, + "move:node/9238133163": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2222564, + 51.202200700000006 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Saputro16", + "uid": "14423472", + "editor": "MapComplete 0.12.3", + "comment": "Adding data with #MapComplete for theme #cafes_and_pubs", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-09T12:57:28Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.00000758767600000295, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113564788, + "host": "mapcomplete.osm.be", + "theme": "cafes_and_pubs", + "answer": 7, + "imagery": "osm", + "language": "de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.69328115, + 50.1287127 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Niklas0404", + "uid": "14423368", + "editor": "MapComplete 0.12.3", + "comment": "Adding data with #MapComplete for theme #street_lighting", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-09T12:28:07Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 2.52159500000829e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113563735, + "host": "mapcomplete.osm.be", + "theme": "street_lighting", + "answer": 2, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.69003945, + 50.1276393 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "matissevdberg", + "uid": "12928471", + "editor": "MapComplete 0.12.4", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-09T11:31:36Z", + "reviewed_features": [], + "create": 2, + "modify": 5, + "delete": 0, + "area": 0.0000154464442500041, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113561665, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "surveillance", + "answer": 15, + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.39333945, + 51.20875735 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "plicploc", + "uid": "75871", + "editor": "MapComplete 0.12.3", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-09T11:15:36Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113561089, + "host": "mapcomplete.osm.be", + "theme": "aed", + "answer": 5, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.5617588, + 50.5852711 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Maarten O", + "uid": "13326535", + "editor": "MapComplete 0.12.3", + "comment": "Adding data with #MapComplete for theme #aed_brugge", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-09T10:09:27Z", + "reviewed_features": [], + "create": 1, + "modify": 11, + "delete": 0, + "area": 0.0000231193711500255, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113558406, + "host": "mapcomplete.osm.be", + "move": 3, + "theme": "aed", + "answer": 12, + "imagery": "HDM_HOT", + "language": "nl", + "add-image": 8, + "move:node/-1": "improve_accuracy", + "move:node/8768659559": "improve_accuracy", + "move:node/9237576880": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.20237385, + 51.20223925 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Maarten O", + "uid": "13326535", + "editor": "MapComplete 0.12.3", + "comment": "Adding data with #MapComplete for theme #aed_brugge", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-09T08:42:20Z", + "reviewed_features": [], + "create": 2, + "modify": 10, + "delete": 0, + "area": 0.000178019645350141, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113554894, + "host": "mapcomplete.osm.be", + "theme": "aed", + "answer": 15, + "imagery": "HDM_HOT", + "language": "nl", + "add-image": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2743556500000004, + 51.20955345 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.12.3", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-09T00:41:07Z", + "reviewed_features": [], + "create": 0, + "modify": 6, + "delete": 0, + "area": 0.000308943590360058, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113544129, + "host": "127.0.0.1:1234", + "move": 1, + "theme": "toilets", + "answer": 13, + "imagery": "osm", + "language": "en", + "change_within_500m": 8, + "change_within_1000m": 3, + "change_within_5000m": 3, + "move:node/3455390192": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2297791, + 51.20713155 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Moisès", + "uid": "12884230", + "editor": "MapComplete 0.12.3", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-08T22:52:20Z", + "reviewed_features": [], + "create": 0, + "modify": 8, + "delete": 0, + "area": 0.0000457981481999824, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113541988, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 8, + "imagery": "CartoDB.Voyager", + "language": "en", + "add-image": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2867471999999998, + 41.6019153 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.12.2-beta", + "comment": "Adding data with #MapComplete for theme #postboxes", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-08T19:53:45Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 3.73612799997067e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113536549, + "host": "pietervdvn.github.io", + "path": "mc/post-partner/", + "theme": "postboxes", + "answer": 1, + "imagery": "CartoDB.Voyager", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2264614, + 51.2201449 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Ninopiña10", + "uid": "11138282", + "editor": "MapComplete 0.12.3", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-08T17:32:37Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113531693, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "answer": 1, + "imagery": "osm", + "language": "en", + "add-image": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.8141441, + 43.3810326 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "PaulSembten", + "uid": "13999064", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-08T14:09:22Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113524257, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 14.6541279, + 52.0111969 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "habi", + "uid": "15671", + "editor": "MapComplete 0.12.2", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-08T12:26:23Z", + "reviewed_features": [], + "create": 2, + "modify": 5, + "delete": 0, + "area": 1.04957999996664e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113520538, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 7, + "imagery": "CartoDB.Voyager", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.43261105, + 46.9454512 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "StegoStadtführer", + "uid": "14423387", + "editor": "MapComplete 0.12.2", + "comment": "Adding data with #MapComplete for theme #sport_pitches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-08T11:51:05Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113519157, + "host": "mapcomplete.osm.be", + "theme": "sport_pitches", + "answer": 6, + "imagery": "osm", + "language": "de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.6455965, + 50.0688335 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "paulderstadtführer", + "uid": "14423380", + "editor": "MapComplete 0.12.2", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-08T11:46:45Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 4.63917000000991e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113518984, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "answer": 1, + "imagery": "osm", + "language": "de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.6762497, + 50.0985021 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "StegoStadtführer", + "uid": "14423387", + "editor": "MapComplete 0.12.2", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-08T11:44:36Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113518889, + "host": "mapcomplete.osm.be", + "theme": "food", + "answer": 5, + "imagery": "osm", + "language": "de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.7027381, + 50.122315 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": "joost schouppe", + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [ + { + "id": 9, + "name": "Resolved" + } + ], + "features": [], + "user": "StegoStadtführer", + "uid": "14423387", + "editor": "MapComplete 0.12.2", + "comment": "Adding data with #MapComplete for theme #observation_towers", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-08T11:41:09Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 4.01760000000901e-10, + "is_suspect": true, + "harmful": true, + "checked": true, + "check_date": "2021-11-11T14:20:49.197781Z", + "id": 113518734, + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "observation_towers", + "answer": 1, + "imagery": "osm", + "language": "de", + "move:node/9235173348": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.71135515, + 50.0890136 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Saputro16", + "uid": "14423472", + "editor": "MapComplete 0.12.2", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-08T11:40:47Z", + "reviewed_features": [], + "create": 0, + "modify": 6, + "delete": 0, + "area": 6.32895750003157e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113518718, + "host": "mapcomplete.osm.be", + "theme": "food", + "answer": 14, + "imagery": "osm", + "language": "de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.69186135, + 50.12827765 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "paulderstadtführer", + "uid": "14423380", + "editor": "MapComplete 0.12.2", + "comment": "Adding data with #MapComplete for theme #sport_pitches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-08T11:38:27Z", + "reviewed_features": [], + "create": 3, + "modify": 6, + "delete": 0, + "area": 0.0000197479445799703, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113518617, + "host": "mapcomplete.osm.be", + "theme": "sport_pitches", + "answer": 10, + "imagery": "osm", + "language": "de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.659828300000001, + 50.09142095 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "StegoStadtführer", + "uid": "14423387", + "editor": "MapComplete 0.12.2", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-08T11:36:07Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113518508, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "answer": 5, + "imagery": "CartoDB.Voyager", + "language": "de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.6641896, + 50.1069909 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "paulderstadtführer", + "uid": "14423380", + "editor": "MapComplete 0.12.2", + "comment": "Adding data with #MapComplete for theme #binoculars", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-08T11:34:33Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113518425, + "host": "mapcomplete.osm.be", + "theme": "binoculars", + "answer": 1, + "imagery": "osm", + "language": "de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.711375, + 50.0890135 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "StegoStadtführer", + "uid": "14423387", + "editor": "MapComplete 0.12.2", + "comment": "Adding data with #MapComplete for theme #waste_basket", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-08T11:31:21Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.000713276226809939, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113518262, + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "waste_basket", + "answer": 1, + "imagery": "osm", + "language": "de", + "move:node/9235095153": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.68113615, + 50.11404075 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "paulderstadtführer", + "uid": "14423380", + "editor": "MapComplete 0.12.2", + "comment": "Adding data with #MapComplete for theme #parkings", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-08T11:30:13Z", + "reviewed_features": [], + "create": 3, + "modify": 1, + "delete": 0, + "area": 0.00000202942276999293, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113518197, + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "parkings", + "imagery": "osm", + "language": "de", + "move:node/9235138165": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.71016665, + 50.089053050000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "paulderstadtführer", + "uid": "14423380", + "editor": "MapComplete 0.12.2", + "comment": "Adding data with #MapComplete for theme #observation_towers", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-08T11:27:40Z", + "reviewed_features": [], + "create": 2, + "modify": 4, + "delete": 0, + "area": 0.000915092173519948, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113518084, + "host": "mapcomplete.osm.be", + "theme": "observation_towers", + "answer": 8, + "imagery": "osm", + "language": "de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.6918138, + 50.100693500000006 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "StegoStadtführer", + "uid": "14423387", + "editor": "MapComplete 0.12.2", + "comment": "Adding data with #MapComplete for theme #parkings", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-08T11:26:41Z", + "reviewed_features": [], + "create": 0, + "modify": 6, + "delete": 0, + "area": 0.00101053350089997, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113518040, + "host": "mapcomplete.osm.be", + "move": 6, + "theme": "parkings", + "imagery": "osm", + "language": "de", + "move:node/1468812551": "improve_accuracy", + "move:node/1976912975": "improve_accuracy", + "move:node/6230129920": "improve_accuracy", + "move:node/6230129922": "improve_accuracy", + "move:node/6447492689": "improve_accuracy", + "move:node/6447504487": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.6797915, + 50.11238965 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "paulderstadtführer", + "uid": "14423380", + "editor": "MapComplete 0.12.2", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-08T11:22:45Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113517912, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "answer": 7, + "imagery": "CartoDB.Voyager", + "language": "de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.6773708, + 50.1120637 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "StegoStadtführer", + "uid": "14423387", + "editor": "MapComplete 0.12.2", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-08T11:19:37Z", + "reviewed_features": [], + "create": 0, + "modify": 8, + "delete": 0, + "area": 0.00119331654813018, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113517804, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "answer": 15, + "imagery": "osm", + "language": "de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.68431645, + 50.11610775 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "paulderstadtführer", + "uid": "14423380", + "editor": "MapComplete 0.12.2", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-08T11:18:51Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 4.18080000314834e-10, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113517769, + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "trees", + "answer": 2, + "imagery": "osm", + "language": "de", + "move:node/9235112785": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.692076499999999, + 50.1306746 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "StegoStadtführer", + "uid": "14423387", + "editor": "MapComplete 0.12.2", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-08T11:15:48Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113517620, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.6866933, + 50.1351904 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Saputro16", + "uid": "14423472", + "editor": "MapComplete 0.12.2", + "comment": "Adding data with #MapComplete for theme #cafes_and_pubs", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-08T11:09:51Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.0000021673015200009, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113517349, + "host": "mapcomplete.osm.be", + "theme": "cafes_and_pubs", + "answer": 4, + "imagery": "osm", + "language": "de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.69282015, + 50.1293519 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "StegoStadtführer", + "uid": "14423387", + "editor": "MapComplete 0.12.2", + "comment": "Adding data with #MapComplete for theme #cafes_and_pubs", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-08T11:09:06Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113517323, + "host": "mapcomplete.osm.be", + "theme": "cafes_and_pubs", + "answer": 1, + "imagery": "osm", + "language": "de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.6980666, + 50.1287091 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "paulderstadtführer", + "uid": "14423380", + "editor": "MapComplete 0.12.2", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-08T11:01:02Z", + "reviewed_features": [], + "create": 7, + "modify": 15, + "delete": 0, + "area": 0.00060861293480014, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113517015, + "host": "mapcomplete.osm.be", + "theme": "benches", + "answer": 27, + "imagery": "osm", + "language": "de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.68087695, + 50.113137800000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "StegoStadtführer", + "uid": "14423387", + "editor": "MapComplete 0.12.2", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-08T10:58:38Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113516933, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 2, + "imagery": "CartoDB.Voyager", + "language": "de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.6972467, + 50.1261847 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "paulderstadtführer", + "uid": "14423380", + "editor": "MapComplete 0.12.2", + "comment": "Adding data with #MapComplete for theme #waste_basket", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-08T10:57:21Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113516869, + "host": "mapcomplete.osm.be", + "theme": "waste_basket", + "answer": 1, + "imagery": "osm", + "language": "de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.6919746, + 50.1304932 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "habi", + "uid": "15671", + "editor": "MapComplete 0.12.2", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-08T10:57:01Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 1, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113516857, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "deletion": 1, + "language": "en", + "deletion:node/9235082800": "testing point" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.4303868, + 46.9522689 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "oliverhawes", + "uid": "665469", + "editor": "MapComplete 0.12.2", + "comment": "Adding data with #MapComplete for theme #climbing", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-08T10:56:15Z", + "reviewed_features": [], + "create": 1, + "modify": 14, + "delete": 0, + "area": 0.000185166408930015, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113516827, + "host": "mapcomplete.osm.be", + "theme": "climbing", + "answer": 24, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.28425835, + 55.87046315 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "paulderstadtführer", + "uid": "14423380", + "editor": "MapComplete 0.12.2", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-08T10:50:01Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113516557, + "host": "mapcomplete.osm.be", + "theme": "food", + "answer": 1, + "imagery": "osm", + "language": "de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.6887285, + 50.128598 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Selin Yel", + "uid": "14423396", + "editor": "MapComplete 0.12.2", + "comment": "Adding data with #MapComplete for theme #waste_basket", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-08T10:01:05Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113514618, + "host": "mapcomplete.osm.be", + "theme": "waste_basket", + "imagery": "osm", + "language": "de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.6883402, + 50.127577 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "paulderstadtführer", + "uid": "14423380", + "editor": "MapComplete 0.12.2", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-08T09:58:27Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.00001507774703998, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113514495, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 7, + "imagery": "CartoDB.Voyager", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.689585399999999, + 50.130203949999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.12.2", + "comment": "Adding data with #MapComplete for theme #campersite", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-08T09:52:29Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 1.76957039998735e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113514247, + "host": "mapcomplete.osm.be", + "theme": "campersite", + "answer": 1, + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.5852588, + 51.1775497 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "katarina ugljevarević", + "uid": "14420839", + "editor": "MapComplete 0.12.2", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-08T09:42:22Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113513805, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 3, + "imagery": "CartoDB.Voyager", + "language": "de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.6886929, + 50.1287807 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.12.2", + "comment": "Adding data with #MapComplete for theme #cyclestreets", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-08T08:49:37Z", + "reviewed_features": [], + "create": 0, + "modify": 6, + "delete": 0, + "area": 0.000274408653180093, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113511570, + "host": "mapcomplete.osm.be", + "theme": "cyclestreets", + "answer": 6, + "imagery": "osm", + "language": "en", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.91373375, + 51.0149064 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "InsertUser", + "uid": "89098", + "editor": "MapComplete 0.12.1", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-07T23:22:34Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113499377, + "host": "mapcomplete.osm.be", + "theme": "food", + "answer": 1, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -78.6966002, + 26.5307092 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "PlayzinhoAgro", + "uid": "10460642", + "editor": "MapComplete 0.12.1", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-07T22:18:42Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113498268, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "answer": 1, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -42.8143327, + -5.0923526 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "PlayzinhoAgro", + "uid": "10460642", + "editor": "MapComplete 0.12.1", + "comment": "Adding data with #MapComplete for theme #cafes_and_pubs", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-07T22:17:20Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113498240, + "host": "mapcomplete.osm.be", + "theme": "cafes_and_pubs", + "answer": 1, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -42.8404302, + -5.0966517 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "zepelindererste", + "uid": "504008", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-07T19:40:58Z", + "reviewed_features": [], + "create": 5, + "modify": 5, + "delete": 0, + "area": 0.0000926318724800438, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113493880, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 14.36533075, + 51.6749899 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.12.1", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-07T19:32:46Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113493657, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "imagery": "osm", + "language": "en", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.6537454, + 50.9009087 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.12.1", + "comment": "Adding data with #MapComplete for theme #postboxes", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-07T19:07:07Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113492944, + "host": "mapcomplete.osm.be", + "theme": "postboxes", + "imagery": "CartoDB.Voyager", + "language": "en", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7195112, + 50.8516306 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Robin van der Linde", + "uid": "5093765", + "editor": "MapComplete 0.12.1", + "comment": "Adding data with #MapComplete for theme #cycle_infra", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-07T18:29:20Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113491702, + "host": "mapcomplete.osm.be", + "theme": "cycle_infra", + "answer": 2, + "imagery": "CartoDB.Voyager", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.5463604, + 53.0115865 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Robin van der Linde", + "uid": "5093765", + "editor": "MapComplete 0.12.1", + "comment": "Adding data with #MapComplete for theme #street_lighting_assen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-07T18:16:06Z", + "reviewed_features": [], + "create": 8, + "modify": 17, + "delete": 0, + "area": 0.00000745318367998207, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113491295, + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "street_lighting_assen", + "answer": 61, + "imagery": "osm", + "language": "en", + "move:node/-1": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.546791450000001, + 53.0118218 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Robin van der Linde", + "uid": "5093765", + "editor": "MapComplete 0.12.1", + "comment": "Adding data with #MapComplete for theme #street_lighting", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-07T18:14:19Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113491238, + "host": "mapcomplete.osm.be", + "theme": "street_lighting", + "answer": 8, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.5486318, + 53.0134666 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.12.1", + "comment": "Adding data with #MapComplete for theme #ghostbikes", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-07T17:18:25Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113489356, + "host": "127.0.0.1:1234", + "theme": "ghostbikes", + "answer": 2, + "imagery": "CartoDB.Positron", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3435891, + 50.8314757 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.12.0", + "comment": "Adding data with #MapComplete for theme #artwork", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-07T17:13:14Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113489134, + "host": "mapcomplete.osm.be", + "theme": "artwork", + "imagery": "osm", + "language": "en", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7124507, + 50.8657342 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.12.0", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-07T16:51:22Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113488340, + "host": "127.0.0.1:1234", + "theme": "toilets", + "answer": 2, + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.1439541, + 51.1716062 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Robin van der Linde", + "uid": "5093765", + "editor": "MapComplete 0.12.2-beta", + "comment": "Adding data with #MapComplete for theme #postboxes", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-07T14:14:41Z", + "reviewed_features": [], + "create": 0, + "modify": 13, + "delete": 0, + "area": 0.000417737522469978, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113481936, + "host": "pietervdvn.github.io", + "path": "mc/post-partner/", + "theme": "postboxes", + "answer": 19, + "imagery": "CartoDB.Voyager", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.57651145, + 53.01670355 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Robin van der Linde", + "uid": "5093765", + "editor": "MapComplete 0.12.2-beta", + "comment": "Adding data with #MapComplete for theme #cycle_infra", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-07T13:43:15Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113480631, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "cycle_infra", + "answer": 1, + "imagery": "CartoDB.Voyager", + "language": "en" + }, "geometry": { "type": "Point", "coordinates": [ @@ -47857,7267 +139977,58960 @@ }, { "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.4480540499999996, - 51.0979195 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.7046642, - 51.075796600000004 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.7055238, - 51.0729996 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.262407, - 51.01584835 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.7456124, - 51.036743 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.0808656, - 51.3281815 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.7403728, - 51.0339897 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.7423387, - 51.0350406 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.74268875, - 51.034529500000005 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.9774026, - 50.6589766 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.2374986, - 52.09015905 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.7467693, - 51.03942015 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.5533368, - 50.991728 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.5533368, - 50.991728 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.2311794, - 51.2202459 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.5498526, - 50.9909412 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.5498526, - 50.9909412 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.2278937, - 51.22052895 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.74700715, - 51.03143235 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -58.6539211, - -34.652989649999995 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.21895025, - 51.21512235 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.4391632, - 50.8767193 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.4391632, - 50.8767193 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 9.1100631, - 48.5490101 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.2196855, - 51.21544095 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 9.0333881, - 48.52091525 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.64105585, - 50.9963688 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.6428985, - 44.8982967 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.633988, - 44.8940661 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.2537717, - 51.2182316 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 8.96258015, - 51.9584416 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.2216745, - 51.3042444 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.2208458, - 51.305255450000004 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.2191934, - 51.30727925 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.21754245, - 51.3093032 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.1194974, - 49.6696867 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.7456029500000003, - 51.0370814 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.7439911, - 51.037078199999996 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.7454008, - 51.0368833 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.7454953, - 51.0373494 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.44542635, - 51.1396407 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -58.628302649999995, - -34.651587649999996 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.97222045, - 51.12304215 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 10.5425827, - 52.2556346 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 10.530704, - 52.2579515 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.5205818, - 42.5275233 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 9.3581119, - 48.6451984 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.1197442, - 52.0889652 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -72.6167449, - -38.7327441 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.53041715, - 51.22723685 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -76.6160533, - 39.3244445 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -76.9843903, - 38.9417097 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -76.9929744, - 38.9352868 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.98198105, - 50.957867300000004 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -58.66789665, - -34.66014615 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.9202898, - 45.5651718 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -58.717643, - -34.6661333 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.9226714, - 45.5651055 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.9228191, - 45.5646536 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.1992957, - 51.2504341 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -70.6724676, - -33.54374985 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 174.7104652, - -36.8697646 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -70.7731406, - -33.488473850000005 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.5352854, - 46.2692277 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.5351344000000005, - 46.2692284 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.97222045, - 51.12304215 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.62736645, - 50.86434745 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 84.96379145, - 56.4727002 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2355926999999998, - 41.543791299999995 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.95734685, - 48.0559873 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.504129, - 49.5927947 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.5040458, - 49.5927651 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.5034987, - 49.5928573 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.5034987, - 49.5928573 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.6309916, - 51.957496 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -58.77106055, - -34.655521300000004 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.069506, - 48.8824157 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.8838655, - 50.7742916 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.8838655, - 50.7742916 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.8838655, - 50.7742916 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.8836831, - 50.7740032 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.8836831, - 50.7740032 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.8836831, - 50.7740032 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2833604999999997, - 41.596085450000004 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.21537925, - 41.544907699999996 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.0629672, - 49.567449 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.84967595, - 50.9675912 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -58.5296926, - -34.6390782 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -58.6633149, - -34.65173885 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 16.5872921, - 43.1389492 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 10.3283045, - 45.516046700000004 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.5663713, - 45.47880995 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -93.5570759, - 41.6753625 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -58.6548431, - -34.648801199999994 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.3072549, - 51.23067575 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.3063540499999995, - 51.2423047 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.24493, - 51.213230949999996 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -58.66412755, - -34.6525143 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.82105535, - 41.34369865 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.2099896, - 51.2189471 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.365448, - 51.00100155 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 152.78021595, - -28.197958800000002 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -58.7910967, - -34.6501798 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -58.5935962, - -34.6448995 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -58.5935962, - -34.6448995 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -58.7880751, - -34.6505571 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.3089677, - 51.2343257 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -58.78787265, - -34.65047105 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.2436999, - 50.5964984 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 8.0528616, - 52.2680928 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -71.3701939, - -34.634742700000004 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -58.6060913, - -34.651439800000006 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -58.75169235, - -34.65975415 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 8.8227697, - 47.2275413 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 174.5874281, - -36.0949011 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -58.7880269, - -34.650549299999994 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -71.368774, - -34.63359135 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -58.69185155, - -34.654613 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -58.5657603, - -34.6407465 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.0203997000000005, - 51.18336675 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.0205408, - 51.1834753 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.00173385, - 51.1658759 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.591224, - 50.3595479 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.57653435, - 50.353613100000004 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -58.653345099999996, - -34.652850650000005 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.2261438, - 51.2207042 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.479119799999999, - 51.14972285 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -58.7887698, - -34.650802 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.7248091, - 51.0463223 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2444888, - 41.4527621 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 9.37269375, - 48.6594726 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 9.403545099999999, - 48.6474566 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 9.36969635, - 48.643115699999996 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -58.55607215, - -34.63999235 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -58.5773514, - -34.6425593 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 121.592998, - 14.0253039 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -58.6643133, - -34.65404685 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.4033236, - 51.1453697 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.57336795, - 53.02736564999999 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 13.9470255, - 56.9688806 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.6281972, - 52.9422425 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.6276608, - 52.9441933 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 8.887518499999999, - 48.61831045 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -58.5302183, - -34.6390572 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -58.6555399, - -34.4580123 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 10.1830368, - 47.2578633 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -8.25466665, - 51.79303815 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -66.3764379, - 48.065903399999996 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.837549, - 52.4468179 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.8361274, - 52.4474947 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 10.1754642, - 47.26041 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 10.1830368, - 47.2578633 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.1290193, - 52.0854267 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 14.6194635, - 51.7501632 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.1265906, - 52.0909803 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 14.600713200000001, - 51.78430925000001 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -78.67418269999999, - 26.538453 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2342372, - 41.556681850000004 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2080541, - 41.8045116 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 11.8218416, - 48.1952926 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 13.7766221, - 52.851453 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.1325849, - 52.0110929 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2092133, - 41.5408444 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.194163400000001, - 51.998345150000006 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.3684587, - 53.1441682 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 33.16033375, - 47.68635585 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.02238265, - 52.0249272 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -58.6617686, - -34.65209835 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.39535925, - 52.114477300000004 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.5495777, - 51.20743125 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.5495039, - 51.2072901 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.8789959, - 50.9949351 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.8647842, - 50.9992925 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.5710134, - 47.47768965 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -122.38201140000001, - 47.8124236 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -58.757661600000006, - -34.6578412 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -66.3923603, - 48.0658702 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.1111803, - 45.9067356 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -66.36960075, - 48.062547550000005 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -66.3758779, - 48.06631 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -66.3579502, - 48.057223 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -66.35260665, - 48.05984875 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -66.35260665, - 48.05984875 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -66.35260665, - 48.05984875 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.213278, - 41.5388879 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2116168, - 41.536439 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2264390499999998, - 41.4573673 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2108323, - 41.5372516 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.21127, - 41.5385792 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.22470155, - 41.4593975 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2240657, - 41.4588307 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.20948345, - 41.5409978 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.207518, - 41.5435661 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.22323085, - 41.458096999999995 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2217541, - 41.4567621 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -58.64597775, - -34.64964075 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.44067755, - 50.764060549999996 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -58.7321082, - -34.6616791 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -58.52819325, - -34.63900975 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 8.9940647, - 48.5014852 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -58.64884975, - -34.653103349999995 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 13.7682121, - 52.8421823 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.5417852, - 47.450397 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 121.0629178, - 14.6475876 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 8.66548525, - 49.4155586 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.56148415, - 53.0172139 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.4490648999999998, - 51.09201645 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -58.689340349999995, - -34.65437685 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -58.5674018, - -34.6408447 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -58.5673964, - -34.640861799999996 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -58.5497877, - -34.6397402 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -58.5497877, - -34.6397104 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 38.23359185, - 55.5566521 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 37.7109274, - 55.8018651 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 15.0769222, - 50.7779514 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 15.0595318, - 50.7697147 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 13.180553450000001, - 52.23052595 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 15.0556925, - 50.7733671 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 11.37481995, - 44.49866815 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -58.5854356, - -34.64572665 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -58.789410849999996, - -34.65037395 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.7078171, - 51.0520396 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.24247395, - 50.73778735 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.1102142, - 57.1578867 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -70.66658749999999, - -33.440852250000006 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 15.0610946, - 50.77482845 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 15.0012555, - 50.7356145 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -58.6590944, - -34.6446411 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 15.0599096, - 50.7745699 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.46821575, - 51.14545065 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 15.0579905, - 50.7696993 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 15.0567831, - 50.7710809 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 15.0567831, - 50.7710809 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 14.6491539, - 51.722251650000004 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.206401, - 49.70821565 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 14.64501375, - 51.741143949999994 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.94825415, - 49.9165269 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.2426351, - 50.7384463 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.3343592, - 51.0111175 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.3343592, - 51.0111175 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.3343592, - 51.0111175 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.3343592, - 51.0111175 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.3401609, - 51.0127806 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.3401609, - 51.0127806 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.3401609, - 51.0127806 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.3401609, - 51.0127806 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.3401609, - 51.0127806 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.3401977, - 51.0127793 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.4107613, - 51.0149358 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.4806194, - 51.0166452 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.4806194, - 51.0166452 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.4806194, - 51.0166452 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -58.7910578, - -34.650065 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.4891864, - 51.2049038 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.4891864, - 51.2049038 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.8842757500000005, - 51.1196966 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.9019891, - 51.12581 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.2183929, - 51.2185418 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2248947, - 41.4422966 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 10.8882263, - 50.1890977 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2250746, - 41.4408405 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 10.24175065, - 53.5500643 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 9.2737703, - 45.4693406 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.3262046, - 50.9300686 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.3262046, - 50.9300686 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.3262046, - 50.9300686 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.3262046, - 50.9300686 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.3266203, - 50.930143 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.3266203, - 50.930143 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.3266203, - 50.930143 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.3266203, - 50.930143 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.3270119, - 50.9300872 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.3270119, - 50.9300872 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.3270119, - 50.9300872 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.3266767, - 50.930006 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.3266767, - 50.930006 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.3779639, - 51.0125987 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.3779639, - 51.0125987 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.3779565, - 51.0125692 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.3779565, - 51.0125692 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.377978, - 51.0126105 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.4367378, - 51.0385184 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.4367378, - 51.0385184 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.4367378, - 51.0385184 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.4367713, - 51.0385019 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.4367713, - 51.0385019 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.4367713, - 51.0385019 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.4367264, - 51.0385066 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.4367264, - 51.0385066 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.4367264, - 51.0385066 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.4367693, - 51.0385285 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.4367693, - 51.0385285 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 14.59387065, - 51.73184345 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.1025686, - 52.0690786 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 29.499676450000003, - 64.12339180000001 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 29.512679650000003, - 64.12769225 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 29.5491793, - 64.1120751 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.7677469, - 50.9369172 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.7415319, - 50.9594129 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.79669275, - 50.9164394 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.79669275, - 50.9164394 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.7966038, - 50.9164247 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2494066999999998, - 41.452191150000004 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 11.1164367, - 49.4359709 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -8.532622499999999, - 51.98053625 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.2074467, - 51.2144965 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.240745, - 50.7341532 - ] - } - }, - { - "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "gtaro", + "uid": "2973154", + "editor": "MapComplete 0.11.4", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-07T13:26:24Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 3.45720000041099e-10, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113480016, + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "toilets", + "answer": 5, + "imagery": "osm", + "language": "fr", + "move:node/9233019525": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0322978, + 49.0182547 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Danysan95", + "uid": "4425563", + "editor": "MapComplete 0.11.4", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-07T12:05:01Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 2.03412000078743e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113477074, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 1, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.7177802, + 44.351625049999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.11.4", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-07T09:43:02Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113472305, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 6, + "imagery": "CartoDB.Voyager", + "language": "nl", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2334872, + 50.7377122 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.11.3", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-07T01:09:51Z", + "reviewed_features": [], + "create": 0, + "modify": 14, + "delete": 0, + "area": 0.00000298279099999223, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113465263, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 24, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2084272499999997, + 51.220085499999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "MaximusIT", + "uid": "132225", + "editor": "MapComplete 0.11.3", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-06T22:49:13Z", + "reviewed_features": [], + "create": 8, + "modify": 29, + "delete": 0, + "area": 0.00000619698200001883, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113463623, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "answer": 42, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.35385915, + 46.4992565 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ygramul", + "uid": "1230818", + "editor": "MapComplete 0.11.3", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-06T22:46:24Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 2.03423999998362e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113463553, + "host": "mapcomplete.osm.be", + "theme": "trees", + "answer": 6, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.992285, + 48.498860699999994 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ygramul", + "uid": "1230818", + "editor": "MapComplete 0.11.3", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-06T22:39:48Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 0.0000420592103999792, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113463449, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 5, + "imagery": "CartoDB.Voyager", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.996022100000001, + 48.501749700000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "pi11", + "uid": "12066190", + "editor": "MapComplete 0.11.3", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-06T15:29:08Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113450975, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "answer": 1, + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.5389581, + 51.2419872 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "quelgir", + "uid": "13293058", + "editor": "MapComplete 0.11.3", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-06T15:17:55Z", + "reviewed_features": [], + "create": 0, + "modify": 13, + "delete": 0, + "area": 0.00145729828518017, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113450551, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 14, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.7148547499999998, + 42.210143200000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Robin van der Linde", + "uid": "5093765", + "editor": "MapComplete 0.11.3", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-06T14:30:32Z", + "reviewed_features": [], + "create": 1, + "modify": 8, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113448373, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "answer": 11, + "imagery": "CartoDB.Voyager", + "language": "en", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.5614855, + 53.0029268 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "NonnEmilia", + "uid": "683102", + "editor": "MapComplete 0.11.3", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-06T12:46:37Z", + "reviewed_features": [], + "create": 0, + "modify": 6, + "delete": 0, + "area": 0.0000414945458399997, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113444561, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 9, + "imagery": "osm", + "language": "it" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 10.6716799, + 44.764731 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Cerritus", + "uid": "12919", + "editor": "MapComplete 0.11.3", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-06T11:27:52Z", + "reviewed_features": [], + "create": 0, + "modify": 16, + "delete": 0, + "area": 0.000470778397499989, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113442152, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 19, + "imagery": "CartoDB.Voyager", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 12.9823037, + 55.606332050000006 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Cerritus", + "uid": "12919", + "editor": "MapComplete 0.11.3", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-06T09:37:57Z", + "reviewed_features": [], + "create": 2, + "modify": 1, + "delete": 0, + "area": 0.0000129510835199958, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113438716, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 3, + "imagery": "CartoDB.Voyager", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 12.9923348, + 55.611163899999994 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Acheloo", + "uid": "11366923", + "editor": "MapComplete 0.11.3", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-06T09:30:58Z", + "reviewed_features": [], + "create": 0, + "modify": 83, + "delete": 0, + "area": 0.00124839668159998, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113438500, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 121, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 14.2590062, + 40.93136005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.12.2-beta", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-05T22:34:25Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113429453, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "drinking_water", + "answer": 1, + "imagery": "CartoDB.Voyager", + "language": "en", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7280077, + 51.0445407 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "NonnEmilia", + "uid": "683102", + "editor": "MapComplete 0.11.3", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-05T22:10:53Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 0.00000410808536999299, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113428932, + "host": "mapcomplete.osm.be", + "theme": "food", + "answer": 12, + "imagery": "osm", + "language": "it" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 10.642136449999999, + 44.72005035 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "NonnEmilia", + "uid": "683102", + "editor": "MapComplete 0.11.3", + "comment": "Adding data with #MapComplete for theme #cafes_and_pubs", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-05T22:07:54Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.0000102794778700148, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113428858, + "host": "mapcomplete.osm.be", + "theme": "cafes_and_pubs", + "answer": 5, + "imagery": "osm", + "language": "it" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 10.64026185, + 44.71636225 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "NonnEmilia", + "uid": "683102", + "editor": "MapComplete 0.11.3", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-05T22:06:06Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 2.16673200007942e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113428835, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "answer": 4, + "imagery": "osm", + "language": "it" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 10.65099, + 44.71412565 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "MaximusIT", + "uid": "132225", + "editor": "MapComplete 0.11.3", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-05T22:04:13Z", + "reviewed_features": [], + "create": 6, + "modify": 15, + "delete": 0, + "area": 0.0000260164897500148, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113428798, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "answer": 33, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.35358545, + 46.498667350000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Cerritus", + "uid": "12919", + "editor": "MapComplete 0.11.3", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-05T21:52:59Z", + "reviewed_features": [], + "create": 0, + "modify": 8, + "delete": 0, + "area": 6.98022400003523e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113428563, + "host": "mapcomplete.osm.be", + "theme": "shops", + "answer": 8, + "imagery": "osm", + "language": "de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 12.975145300000001, + 55.597958199999994 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "NonnEmilia", + "uid": "683102", + "editor": "MapComplete 0.11.3", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-05T21:35:55Z", + "reviewed_features": [], + "create": 0, + "modify": 22, + "delete": 0, + "area": 0.000480059839139946, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113428090, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 28, + "imagery": "osm", + "language": "it" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 10.678854300000001, + 44.754301749999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "MaximusIT", + "uid": "132225", + "editor": "MapComplete 0.11.3", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-05T20:45:16Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 4.48158900018126e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113426608, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "answer": 4, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.34900455, + 46.500302649999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Cerritus", + "uid": "12919", + "editor": "MapComplete 0.11.3", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-05T18:24:33Z", + "reviewed_features": [], + "create": 0, + "modify": 21, + "delete": 0, + "area": 0.000473449057229855, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113421595, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 24, + "imagery": "CartoDB.Voyager", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 12.98136865, + 55.60443215 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Cerritus", + "uid": "12919", + "editor": "MapComplete 0.11.3", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-05T17:00:19Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.0000306219843099754, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113418491, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 5, + "imagery": "CartoDB.Voyager", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 12.97096985, + 55.60089265 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Bodhisattwa", + "uid": "2876061", + "editor": "MapComplete 0.11.3", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-05T15:22:34Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.000145691423759975, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113413987, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 2, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 88.3540677, + 22.57377235 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Robin van der Linde", + "uid": "5093765", + "editor": "MapComplete 0.12.2-beta", + "comment": "Adding data with #MapComplete for theme #street_lighting", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-05T14:30:32Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113412065, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "street_lighting", + "answer": 7, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.5494963, + 53.0001853 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "habi", + "uid": "15671", + "editor": "MapComplete 0.11.3", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-05T14:22:58Z", + "reviewed_features": [], + "create": 4, + "modify": 3, + "delete": 0, + "area": 0.0000378498970000387, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113411796, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 14, + "imagery": "CartoDB.Voyager", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.434616650000001, + 46.949178700000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "hfs", + "uid": "9607", + "editor": "MapComplete 0.11.3", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-05T13:55:26Z", + "reviewed_features": [], + "create": 0, + "modify": 68, + "delete": 0, + "area": 0.000403383526039839, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113410685, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 115, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.06510535, + 52.3957008 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.11.3", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-05T13:44:53Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 1.38071999830083e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113410204, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/signals", + "answer": 2, + "imagery": "osm", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.5972038, + -34.645062249999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Tom Callens", + "uid": "14405801", + "editor": "MapComplete 0.11.3", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-05T13:37:55Z", + "reviewed_features": [], + "create": 1, + "modify": 5, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113409895, + "host": "mapcomplete.osm.be", + "theme": "benches", + "answer": 6, + "imagery": "osm", + "language": "nl", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.9134751, + 51.2275968 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.12.2-beta", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-05T13:35:20Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113409798, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "toilets", + "answer": 6, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.1439541, + 51.1716062 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Robin van der Linde", + "uid": "5093765", + "editor": "MapComplete 0.11.3", + "comment": "Adding data with #MapComplete for theme #test", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-05T13:15:53Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113409011, + "host": "mapcomplete.osm.be", + "theme": "test", + "answer": 1, + "imagery": "osm", + "language": "en", + "add-image": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.5640763, + 53.0198777 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "habi", + "uid": "15671", + "editor": "MapComplete 0.11.3", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-05T12:31:10Z", + "reviewed_features": [], + "create": 1, + "modify": 5, + "delete": 0, + "area": 0.0000701146874999973, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113407314, + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "cyclofix", + "answer": 7, + "imagery": "CartoDB.Voyager", + "language": "en", + "move:node/4568201391": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.4240155, + 46.939158649999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "quelgir", + "uid": "13293058", + "editor": "MapComplete 0.11.3", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-05T11:53:54Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.0000546384102600114, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113405992, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 6, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.8171891000000002, + 41.98195925 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Mannivu", + "uid": "1950277", + "editor": "MapComplete 0.11.3", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-05T11:15:15Z", + "reviewed_features": [], + "create": 0, + "modify": 41, + "delete": 0, + "area": 0.0000612309076399951, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113404377, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 64, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.6414625, + 45.5027999 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "ladoga", + "uid": "827957", + "editor": "MapComplete 0.11.3", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-05T11:14:54Z", + "reviewed_features": [], + "create": 0, + "modify": 6, + "delete": 0, + "area": 0.00063046333229992, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113404365, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 10, + "imagery": "osm", + "language": "de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 10.75107785, + 48.8108462 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Tom Callens", + "uid": "14405801", + "editor": "MapComplete 0.11.3", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-05T10:51:47Z", + "reviewed_features": [], + "create": 1, + "modify": 5, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113403407, + "host": "mapcomplete.osm.be", + "theme": "benches", + "answer": 5, + "imagery": "osm", + "language": "nl", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.9132451, + 51.2274674 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "NonnEmilia", + "uid": "683102", + "editor": "MapComplete 0.11.3", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-05T09:58:57Z", + "reviewed_features": [], + "create": 0, + "modify": 81, + "delete": 0, + "area": 0.000460347335160025, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113401156, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 131, + "imagery": "osm", + "language": "it" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 10.63869095, + 44.7081696 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "sabas88", + "uid": "454589", + "editor": "MapComplete 0.11.3", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-05T09:39:14Z", + "reviewed_features": [], + "create": 0, + "modify": 32, + "delete": 0, + "area": 0.0000227984566499867, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113400546, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 46, + "imagery": "osm", + "language": "it" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.935956149999999, + 44.40689865 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Maarten O", + "uid": "13326535", + "editor": "MapComplete 0.11.3", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 1, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-05T09:12:45Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 1.04255999983614e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113399744, + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "aed", + "answer": 1, + "imagery": "osm", + "language": "nl", + "move:node/9223875638": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2304059499999997, + 51.2099597 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "kobevandeweerdt", + "uid": "14408432", + "editor": "MapComplete 0.11.3", + "comment": "Adding data with #MapComplete for theme #cyclestreets", + "comments_count": 3, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-05T08:06:00Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.0000101793449800139, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113397481, + "host": "mapcomplete.osm.be", + "theme": "cyclestreets", + "answer": 2, + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.226562299999999, + 50.96279705 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "habi", + "uid": "15671", + "editor": "MapComplete 0.11.3", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-04T21:19:11Z", + "reviewed_features": [], + "create": 4, + "modify": 5, + "delete": 0, + "area": 4.74588839993215e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113386555, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 15, + "imagery": "CartoDB.Voyager", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.44229925, + 46.9489906 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Maribelens", + "uid": "13480216", + "editor": "MapComplete 0.11.3", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete1.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-04T20:33:11Z", + "reviewed_features": [], + "create": 13, + "modify": 23, + "delete": 0, + "area": 0.00000109573694998512, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113385218, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "answer": 40, + "imagery": "HDM_HOT", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.22910945, + 41.44735275 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "matissevdberg", + "uid": "12928471", + "editor": "MapComplete 0.12.2-beta", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-04T19:22:17Z", + "reviewed_features": [], + "create": 2, + "modify": 6, + "delete": 0, + "area": 0.00000196991630000178, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113382487, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "surveillance", + "answer": 9, + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.392894, + 51.20707575 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "ladoga", + "uid": "827957", + "editor": "MapComplete 0.11.3", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-04T19:15:47Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.00000507672233999808, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113382251, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 3, + "imagery": "osm", + "language": "de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 10.50317545, + 48.75473 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.11.3", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-04T16:12:01Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.0000105067423199965, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113376351, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 2, + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1353594, + 51.1818748 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.12.2-beta", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-04T15:56:32Z", + "reviewed_features": [], + "create": 95, + "modify": 18, + "delete": 0, + "area": 0.00000751217193001292, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113375792, + "host": "127.0.0.1:1234", + "move": 14, + "theme": "grb", + "import": 16, + "imagery": "AGIV10cm", + "language": "en", + "conflation": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.20497705, + 51.18472965 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.12.2-beta", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-04T15:56:22Z", + "reviewed_features": [], + "create": 9, + "modify": 0, + "delete": 0, + "area": 2.10118049999207e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113375786, + "host": "127.0.0.1:1234", + "theme": "grb", + "answer": 1, + "import": 1, + "imagery": "AGIV10cm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.20557645, + 51.18384435 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.12.2-beta", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-04T15:55:06Z", + "reviewed_features": [], + "create": 22, + "modify": 1, + "delete": 0, + "area": 0.00000126567441000353, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113375744, + "host": "127.0.0.1:1234", + "theme": "grb", + "answer": 2, + "import": 4, + "imagery": "AGIV10cm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.20416905, + 51.18382885 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "ladoga", + "uid": "827957", + "editor": "MapComplete 0.11.3", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-04T15:51:05Z", + "reviewed_features": [], + "create": 0, + "modify": 12, + "delete": 0, + "area": 0.000123591220899982, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113375602, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 22, + "imagery": "osm", + "language": "de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 10.486115600000002, + 48.725182149999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Maarten O", + "uid": "13326535", + "editor": "MapComplete 0.11.3", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-04T15:50:25Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.0000380710458800614, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113375570, + "host": "mapcomplete.osm.be", + "move": 2, + "theme": "aed", + "answer": 2, + "imagery": "osm", + "language": "nl", + "move:node/9223875638": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2244893, + 51.2115434 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.12.2-beta", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-04T15:21:59Z", + "reviewed_features": [], + "create": 229, + "modify": 22, + "delete": 0, + "area": 0.00000428556856002004, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113374469, + "host": "127.0.0.1:1234", + "move": 16, + "theme": "grb", + "answer": 2, + "import": 18, + "imagery": "osm", + "language": "en", + "conflation": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2041749499999996, + 51.1829392 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "habi", + "uid": "15671", + "editor": "MapComplete 0.11.3", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-04T15:11:15Z", + "reviewed_features": [], + "create": 6, + "modify": 4, + "delete": 0, + "area": 0.0012632808480001, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113374140, + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "cyclofix", + "answer": 11, + "imagery": "CartoDB.Voyager", + "language": "en", + "move:node/9223995072": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.4550518, + 46.9602491 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.12.1-beta", + "comment": "Adding data with #MapComplete for theme #sidewalks", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-04T15:09:04Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 2.20268240002105e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113374077, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "sidewalks", + "answer": 1, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2178952, + 51.2148113 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Maarten O", + "uid": "13326535", + "editor": "MapComplete 0.11.3", + "comment": "Adding data with #MapComplete for theme #aed_brugge", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-04T14:41:06Z", + "reviewed_features": [], + "create": 2, + "modify": 9, + "delete": 0, + "area": 0.0000372942551800002, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113373022, + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "aed", + "answer": 14, + "imagery": "HDM_HOT", + "language": "nl", + "add-image": 7, + "move:node/9223917538": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2244893, + 51.21157615 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.11.3", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-04T12:47:13Z", + "reviewed_features": [], + "create": 0, + "modify": 10, + "delete": 0, + "area": 0.00575372257911075, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113368653, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/signals", + "answer": 11, + "imagery": "osm", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.648328750000005, + -34.651680850000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.11.3", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-04T12:18:50Z", + "reviewed_features": [], + "create": 2, + "modify": 1, + "delete": 0, + "area": 0.00660576879837093, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113367547, + "host": "mapcomplete.osm.be", + "theme": "grb", + "answer": 1, + "import": 2, + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.083827149999999, + 50.78122465 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Maarten O", + "uid": "13326535", + "editor": "MapComplete 0.11.3", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-04T11:00:44Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.000389650912310169, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113364948, + "host": "mapcomplete.osm.be", + "theme": "aed", + "answer": 4, + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1987681500000003, + 51.19621705 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "habi", + "uid": "15671", + "editor": "MapComplete 0.11.3", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-04T10:54:30Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113364737, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 3, + "imagery": "CartoDB.Voyager", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.4177076, + 46.9393474 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "habi", + "uid": "15671", + "editor": "MapComplete 0.11.3", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-04T08:23:47Z", + "reviewed_features": [], + "create": 0, + "modify": 6, + "delete": 0, + "area": 0.00000158639320000227, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113360279, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 6, + "imagery": "CartoDB.Voyager", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.4288396, + 46.9526135 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.11.3", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-04T01:41:04Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113354339, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 4, + "imagery": "osm", + "language": "en", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.0106851, + 51.005699 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.12.1-beta", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-04T01:06:12Z", + "reviewed_features": [], + "create": 7, + "modify": 11, + "delete": 0, + "area": 9.42359399993855e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113353891, + "host": "127.0.0.1:1234", + "theme": "grb", + "import": 3, + "imagery": "AGIVFlandersGRB", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.21712535, + 51.214556 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.11.3", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-04T00:31:11Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113353572, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "answer": 1, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3507453, + 50.8536834 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.11.3", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-03T22:09:26Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113351309, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 2, + "imagery": "osm", + "language": "en", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3499349, + 50.8533748 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "ladoga", + "uid": "827957", + "editor": "MapComplete 0.11.3", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-03T21:58:13Z", + "reviewed_features": [], + "create": 0, + "modify": 9, + "delete": 0, + "area": 0.000629558460639741, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113351051, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 13, + "imagery": "osm", + "language": "de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 10.63322065, + 48.8411258 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.12.1-beta", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-03T21:29:10Z", + "reviewed_features": [], + "create": 5, + "modify": 15, + "delete": 0, + "area": 4.10042819998336e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113350305, + "host": "127.0.0.1:1234", + "move": 13, + "theme": "grb", + "imagery": "AGIVFlandersGRB", + "language": "en", + "conflation": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.219522, + 51.21604535 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.11.3", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-03T20:06:21Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113347810, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "imagery": "CartoDB.Voyager", + "language": "en", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.8604582, + 50.99566 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Moisès", + "uid": "12884230", + "editor": "MapComplete 0.11.3", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-03T20:02:05Z", + "reviewed_features": [], + "create": 0, + "modify": 6, + "delete": 0, + "area": 0.0000501468055199548, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113347649, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 3, + "imagery": "CartoDB.Voyager", + "language": "en", + "add-image": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.289834, + 41.610439 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.12.1-beta", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-03T16:06:05Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113339240, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "shops", + "answer": 3, + "imagery": "osm", + "language": "en", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.1775754, + 51.1128633 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Robin van der Linde", + "uid": "5093765", + "editor": "MapComplete 0.11.3", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-03T15:11:05Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113337126, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "answer": 2, + "imagery": "CartoDB.Voyager", + "language": "en", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.5803687, + 53.2510803 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Maarten O", + "uid": "13326535", + "editor": "MapComplete 0.11.3", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 6, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-03T15:08:35Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 1.46969999997495e-10, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113337023, + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "aed", + "imagery": "osm", + "language": "nl", + "move:node/8771441240": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.20418225, + 51.18284165 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "habi", + "uid": "15671", + "editor": "MapComplete 0.11.3", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-03T15:03:06Z", + "reviewed_features": [], + "create": 3, + "modify": 4, + "delete": 0, + "area": 0.000228111346560001, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113336834, + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "cyclofix", + "answer": 14, + "imagery": "CartoDB.Voyager", + "language": "en", + "move:node/9221540197": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.4392947, + 46.95332115 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "JBadalona", + "uid": "13507795", + "editor": "MapComplete 0.11.3", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete1.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-03T14:40:45Z", + "reviewed_features": [], + "create": 13, + "modify": 1, + "delete": 0, + "area": 3.19596119996116e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113335939, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "answer": 9, + "imagery": "HDM_HOT", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2397780000000003, + 41.43957465 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.12.1-beta", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-03T14:13:01Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113334874, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "shops", + "answer": 2, + "imagery": "osm", + "language": "en", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.148393, + 51.1531118 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "habi", + "uid": "15671", + "editor": "MapComplete 0.11.3", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-03T12:56:10Z", + "reviewed_features": [], + "create": 1, + "modify": 6, + "delete": 0, + "area": 0.0000275477909299911, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113331345, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 14, + "imagery": "CartoDB.Voyager", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.44867075, + 46.96296565 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Maarten O", + "uid": "13326535", + "editor": "MapComplete 0.11.3", + "comment": "Adding data with #MapComplete for theme #aed_brugge", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-03T12:06:27Z", + "reviewed_features": [], + "create": 1, + "modify": 5, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113329273, + "host": "mapcomplete.osm.be", + "theme": "aed", + "answer": 7, + "imagery": "HDM_HOT", + "language": "nl", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2254811, + 51.2084386 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "WinstonSmith", + "uid": "36030", + "editor": "MapComplete 0.11.3", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-03T12:03:02Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113329108, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 5, + "imagery": "CartoDB.Voyager", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.3413453, + 44.380366 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "ClickKlack", + "uid": "90262", + "editor": "MapComplete 0.11.3", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-03T12:01:13Z", + "reviewed_features": [], + "create": 0, + "modify": 38, + "delete": 0, + "area": 0.0000891666066899877, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113329026, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 83, + "imagery": "osm", + "language": "de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.67208595, + 52.10917795 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "ClickKlack", + "uid": "90262", + "editor": "MapComplete 0.11.3", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-03T11:52:01Z", + "reviewed_features": [], + "create": 0, + "modify": 10, + "delete": 0, + "area": 0.0000506066526599765, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113328646, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 11, + "imagery": "osm", + "language": "de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.665308750000001, + 52.114730699999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Maarten O", + "uid": "13326535", + "editor": "MapComplete 0.11.3", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-03T11:38:18Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.00119183980211994, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113328015, + "host": "mapcomplete.osm.be", + "move": 2, + "theme": "aed", + "imagery": "osm", + "language": "nl", + "move:node/8789200971": "improve_accuracy", + "move:node/8823682990": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.20680885, + 51.2305336 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.12.1-beta", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-02T22:41:02Z", + "reviewed_features": [], + "create": 28, + "modify": 51, + "delete": 0, + "area": 3.88931200000511e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113305401, + "host": "127.0.0.1:1234", + "move": 48, + "theme": "grb", + "import": 1, + "imagery": "AGIVFlandersGRB", + "language": "nl", + "conflation": 10 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2170325, + 51.2149832 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Sukkoria", + "uid": "3083013", + "editor": "MapComplete 0.2.2a", + "comment": "Adding data with #MapComplete for theme #climbing", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-02T21:04:36Z", + "reviewed_features": [], + "create": 0, + "modify": 30, + "delete": 0, + "area": 0.0289055600068687, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113302704, + "theme": "climbing", + "language": "en", + "theme-creator": "Christian Neumann " + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2580250499999996, + 48.74150775 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "stk_ulm", + "uid": "43217", + "editor": "MapComplete 0.11.3", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-02T19:58:44Z", + "reviewed_features": [], + "create": 0, + "modify": 38, + "delete": 0, + "area": 0.00149967788543997, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113300229, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 49, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.982036650000001, + 48.4100799 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Pablo667", + "uid": "13166651", + "editor": "MapComplete 0.11.3", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-02T16:02:36Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113291887, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "answer": 4, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 12.1995771, + 44.419088 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "habi", + "uid": "15671", + "editor": "MapComplete 0.11.3", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-02T13:31:34Z", + "reviewed_features": [], + "create": 2, + "modify": 12, + "delete": 0, + "area": 0.0000017263743100007, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113284886, + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "cyclofix", + "answer": 18, + "imagery": "CartoDB.Voyager", + "language": "en", + "move:node/9218593524": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.42972365, + 46.953410950000006 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.12.1-beta", + "comment": "Adding data with #MapComplete for theme #https://gist.githubusercontent.com/joostschouppe/e1190515ff5f8847beec6eb9a1b788bb/raw/aa9d3ed1959529eb3fbefe1857cc8616f53b7ccf/temp.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-02T13:13:48Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000156795455999889, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113284013, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "https://gist.githubusercontent.com/joostschouppe/e1190515ff5f8847beec6eb9a1b788bb/raw/aa9d3ed1959529eb3fbefe1857cc8616f53b7ccf/temp.json", + "answer": 1, + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.30281045, + 50.833947699999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "habi", + "uid": "15671", + "editor": "MapComplete 0.11.3", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-02T08:20:35Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.0000312247542800216, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113270690, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 5, + "imagery": "CartoDB.Voyager", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.433689749999999, + 46.9498844 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.11.3", + "comment": "Adding data with #MapComplete for theme #artwork", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-01T23:30:58Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113259034, + "host": "mapcomplete.osm.be", + "theme": "artwork", + "imagery": "osm", + "language": "nl", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.8641211, + 51.0331532 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.11.3", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-01T23:29:50Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113259014, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "nl", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.8595969, + 51.0339334 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Cmap99", + "uid": "13524250", + "editor": "MapComplete 0.11.3", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-01T21:11:21Z", + "reviewed_features": [ + { + "id": "node-2105271928", + "user": "PieterVanderVennet" + } + ], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.0000583447344000255, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113255395, + "host": "mapcomplete.osm.be", + "theme": "shops", + "answer": 3, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -9.10136625, + 53.2669087 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "skfd", + "uid": "205595", + "editor": "MapComplete 0.11.3", + "comment": "Adding data with #MapComplete for theme #cafes_and_pubs", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-01T19:18:10Z", + "reviewed_features": [], + "create": 0, + "modify": 0, + "delete": 1, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113251293, + "host": "mapcomplete.osm.be", + "theme": "cafes_and_pubs", + "imagery": "osm", + "deletion": 1, + "language": "en", + "deletion:node/2442953886": "disused" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 30.6013954, + 50.4284077 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "skfd", + "uid": "205595", + "editor": "MapComplete 0.11.3", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-01T19:04:23Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.0000119044173599518, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113250793, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 4, + "imagery": "CartoDB.Voyager", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 30.59795485, + 50.429091 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.11.3", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-01T17:20:32Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113247252, + "host": "mapcomplete.osm.be", + "theme": "aed", + "answer": 4, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.615215, + 50.8515194 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.12.1-beta", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-01T17:04:34Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 5.90400000192051e-11, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113246649, + "host": "pietervdvn.github.io", + "move": 1, + "path": "mc/develop/", + "theme": "charging_stations", + "answer": 6, + "imagery": "CartoDB.Voyager", + "language": "nl", + "move:node/9216683715": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.18631465, + 50.815494900000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.12.1-beta", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-01T15:24:21Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113242289, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "shops", + "answer": 3, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.1853377, + 50.814548 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.12.1-beta", + "comment": "Adding data with #MapComplete for theme #personal", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-01T14:59:26Z", + "reviewed_features": [], + "create": 3, + "modify": 2, + "delete": 0, + "area": 7.5600000014029e-11, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113241037, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "personal", + "answer": 7, + "imagery": "osm", + "language": "en", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.18632335, + 50.8154678 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Nicolelaine", + "uid": "2997398", + "editor": "MapComplete 0.11.3", + "comment": "Adding data with #MapComplete for theme #postboxes", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-01T14:02:53Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113238301, + "host": "mapcomplete.osm.be", + "theme": "postboxes", + "imagery": "CartoDB.Voyager", + "language": "en", + "add-image": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.9102199, + 53.5662632 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.11.3", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-01T13:39:08Z", + "reviewed_features": [], + "create": 1, + "modify": 4, + "delete": 0, + "area": 3.06720000012044e-10, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113237148, + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "charging_stations", + "answer": 8, + "imagery": "AGIV10cm", + "language": "en", + "move:node/9216279358": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.6454225, + 50.77147625 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.11.3", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-01T13:27:59Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.000236193990540127, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113236656, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/signals", + "answer": 2, + "imagery": "osm", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.6672584, + -34.659333950000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Moisès", + "uid": "12884230", + "editor": "MapComplete 0.11.3", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-01T12:28:39Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 0.0237610681327001, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113234111, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 2, + "imagery": "CartoDB.Voyager", + "language": "en", + "add-image": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.1128401, + 41.51369795 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Wright One", + "uid": "261189", + "editor": "MapComplete 0.12.1-beta", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-01T10:11:28Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113227669, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "aed", + "answer": 1, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 114.1728093, + 22.2773452 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Nicolelaine", + "uid": "2997398", + "editor": "MapComplete 0.11.3", + "comment": "Adding data with #MapComplete for theme #waste_basket", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-01T09:32:32Z", + "reviewed_features": [], + "create": 5, + "modify": 0, + "delete": 0, + "area": 0.000173590895479989, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113225986, + "host": "mapcomplete.osm.be", + "theme": "waste_basket", + "answer": 4, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.90980745, + 53.5710328 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Wright One", + "uid": "261189", + "editor": "MapComplete 0.12.1-beta", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-11-01T08:51:49Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113224286, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "aed", + "answer": 3, + "imagery": "osm", + "language": "en", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 114.1728093, + 22.2773452 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 4, + "name": "mass modification" + } + ], + "tags": [], + "features": [], + "user": "ClickKlack", + "uid": "90262", + "editor": "MapComplete 0.11.3", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-11-01T07:36:09Z", + "reviewed_features": [], + "create": 0, + "modify": 273, + "delete": 0, + "area": 0.000983084450800187, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 113220970, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 519, + "imagery": "osm", + "language": "de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.66709775, + 52.1275933 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Wim L", + "uid": "223681", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-31T23:36:09Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115624437, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "answer": 4, + "imagery": "osm", + "language": "en", + "change_over_5000m": 1, + "change_within_100m": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -84.4255382, + 33.6415534 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-10", + "comment": "Adding data with #MapComplete for theme #cycle_infra", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-31T16:19:45Z", + "reviewed_features": [], + "create": 4, + "modify": 2, + "delete": 0, + "area": 0.0000726576689999328, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115615786, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "cycle_infra", + "answer": 2, + "imagery": "CartoDB.Voyager", + "language": "nl", + "change_over_5000m": 6 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.0331259500000005, + 51.077133599999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Stinus_Clasius", + "uid": "1086503", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-31T14:10:25Z", + "reviewed_features": [], + "create": 13, + "modify": 20, + "delete": 0, + "area": 0.00000169535327999774, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115610774, + "host": "mapcomplete.osm.be", + "move": 17, + "theme": "grb", + "import": 1, + "imagery": "AGIVFlandersGRB", + "language": "nl", + "conflation": 6 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.74853965, + 51.1598178 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-10", + "comment": "Adding data with #MapComplete for theme #cyclestreets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-31T14:03:55Z", + "reviewed_features": [], + "create": 2, + "modify": 4, + "delete": 0, + "area": 0.00000742547175000162, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115610573, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "split": 3, + "theme": "cyclestreets", + "answer": 2, + "imagery": "osm", + "language": "nl", + "relation-fix": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.00505115, + 51.15137145 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-31T13:30:13Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115609231, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 4, + "imagery": "CartoDB.Voyager", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.0219657, + 51.1135031 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-31T13:24:43Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115609068, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "answer": 2, + "imagery": "osm", + "language": "en", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.0101024, + 51.1280572 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "bollyboll", + "uid": "12120321", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-31T11:27:04Z", + "reviewed_features": [], + "create": 11, + "modify": 0, + "delete": 0, + "area": 0.000256938011010081, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115604832, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "answer": 4, + "imagery": "HDM_HOT", + "language": "en", + "change_over_5000m": 11, + "change_within_25m": 2, + "change_within_50m": 1, + "change_within_500m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.80811405, + 48.018068650000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "beardhatcode", + "uid": "5439560", + "editor": "MapComplete 0.13.0-alpha-10", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-31T09:50:29Z", + "reviewed_features": [], + "create": 5, + "modify": 0, + "delete": 0, + "area": 1.45241800005193e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115600877, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "grb", + "import": 1, + "imagery": "AGIVFlandersGRB", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1986315999999997, + 51.18606285 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "davidtorcivia", + "uid": "1798584", + "editor": "MapComplete 0.13.0-alpha-10", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-30T23:20:15Z", + "reviewed_features": [], + "create": 13, + "modify": 17, + "delete": 0, + "area": 2.73115150007338e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115586324, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "surveillance", + "answer": 24, + "imagery": "osm", + "language": "en", + "add-image": 1, + "change_within_25m": 33, + "change_within_50m": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.91450735000001, + 40.704855550000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-30T22:53:05Z", + "reviewed_features": [], + "create": 2, + "modify": 0, + "delete": 0, + "area": 0.00000348926490000952, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115585682, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "nl", + "change_over_5000m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.0365388499999995, + 51.1979716 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/xliving/xliving.github.io/main/OSM/amenity-recycling/recycling-organic/mapcomplete.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-30T22:15:27Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.02293982994424, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115584740, + "host": "mapcomplete.osm.be", + "theme": "gh://xliving/xliving.github.io/main/osm/amenity-recycling/recycling-organic/mapcomplete.json", + "answer": 2, + "imagery": "osm", + "language": "nl", + "change_over_5000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.34709885, + 51.1590587 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Moisès", + "uid": "12884230", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-30T21:53:47Z", + "reviewed_features": [], + "create": 0, + "modify": 6, + "delete": 0, + "area": 9.46198400003329e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115584260, + "host": "mapcomplete.osm.be", + "theme": "trees", + "answer": 6, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2096115999999997, + 41.5417711 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "davidtorcivia", + "uid": "1798584", + "editor": "MapComplete 0.13.0-alpha-10", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-30T21:38:35Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 9.66194999878765e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115583852, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "surveillance", + "answer": 6, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.91482095, + 40.705006350000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-30T18:45:27Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115578339, + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "osm", + "language": "en", + "add-image": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.7675618, + -33.489466 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-10", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-30T15:51:57Z", + "reviewed_features": [], + "create": 124, + "modify": 0, + "delete": 0, + "area": 0.00000174049764000254, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115571697, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "grb", + "import": 3, + "imagery": "osm", + "language": "nl", + "change_over_5000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.1235882, + 51.223730149999994 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "WinstonSmith", + "uid": "36030", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-30T10:25:26Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115556947, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "answer": 7, + "imagery": "osm", + "language": "en", + "change_within_25m": 7 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.9375362, + 44.4243671 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-30T10:21:22Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 1, + "area": 2.61030000015409e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115556765, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "answer": 4, + "imagery": "osm", + "deletion": 1, + "language": "nl", + "change_over_5000m": 2, + "change_within_25m": 4, + "deletion:node/9378806868": "Addition was buggy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.055233000000000004, + 40.11256805 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-30T10:20:56Z", + "reviewed_features": [], + "create": 2, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115556736, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "answer": 8, + "imagery": "osm", + "language": "nl", + "change_over_5000m": 4, + "change_within_25m": 6 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0552669, + 40.1125873 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "emilinfrance", + "uid": "14568184", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-29T19:51:11Z", + "reviewed_features": [], + "create": 0, + "modify": 8, + "delete": 0, + "area": 0.00000752628239999239, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115535515, + "host": "mapcomplete.osm.be", + "theme": "shops", + "answer": 9, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.3802349, + 44.485122700000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-10", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-29T18:34:47Z", + "reviewed_features": [], + "create": 1, + "modify": 7, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115533103, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "food", + "answer": 12, + "imagery": "osm", + "language": "nl", + "change_over_5000m": 1, + "change_within_25m": 12 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.0399204, + 51.0704084 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "mweper", + "uid": "1311281", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-29T17:13:25Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.0000303569155999916, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115530115, + "host": "mapcomplete.osm.be", + "theme": "benches", + "answer": 5, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -60.8099207, + -32.914557099999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-29T16:19:20Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115527664, + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "osm", + "language": "en", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -72.0076495, + -34.3861726 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-29T16:09:41Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115527316, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "answer": 3, + "imagery": "osm", + "language": "nl", + "change_within_25m": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.4038183, + 40.3598926 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "emilinfrance", + "uid": "14568184", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #cycle_infra", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-29T15:00:15Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.0447987956217506, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115524073, + "host": "mapcomplete.osm.be", + "theme": "cycle_infra", + "answer": 4, + "imagery": "CartoDB.Voyager", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.89545075, + 44.49052695 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Mannivu", + "uid": "1950277", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-29T13:45:09Z", + "reviewed_features": [], + "create": 0, + "modify": 68, + "delete": 0, + "area": 0.000316713272790073, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115520700, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 103, + "imagery": "osm", + "language": "it", + "change_within_1000m": 12, + "change_within_5000m": 91 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.644962150000001, + 45.50006995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-10", + "comment": "Adding data with #MapComplete for theme #ghostbikes", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-29T13:27:02Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115519801, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "ghostbikes", + "answer": 1, + "imagery": "CartoDB.Positron", + "language": "nl", + "add-image": 1, + "change_over_5000m": 1, + "change_within_25m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.0898866, + 51.0978985 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Arickx", + "uid": "9282195", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #Composthoekjes", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-29T12:28:07Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115517105, + "host": "mapcomplete.osm.be", + "theme": "composthoekjes", + "answer": 1, + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2242486, + 51.2195 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pablo667", + "uid": "13166651", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-29T12:12:15Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115516355, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "answer": 2, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 12.4807742, + 41.8267555 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-10", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-29T12:02:18Z", + "reviewed_features": [], + "create": 1, + "modify": 11, + "delete": 0, + "area": 0.00000494970367999776, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115515838, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "cyclofix", + "answer": 13, + "imagery": "CartoDB.Voyager", + "language": "nl", + "add-image": 1, + "change_over_5000m": 1, + "change_within_25m": 4, + "change_within_50m": 3, + "change_within_100m": 3, + "change_within_500m": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.0425293, + 51.0706672 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Arickx", + "uid": "9282195", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #Composthoekjes", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-29T10:57:54Z", + "reviewed_features": [], + "create": 2, + "modify": 3, + "delete": 0, + "area": 0.000569822034119916, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115512626, + "host": "mapcomplete.osm.be", + "theme": "composthoekjes", + "imagery": "osm", + "language": "nl", + "add-image": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2275678, + 51.20081535 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "emilinfrance", + "uid": "14568184", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #cycle_infra", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-29T10:41:35Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115511711, + "host": "mapcomplete.osm.be", + "theme": "cycle_infra", + "answer": 2, + "imagery": "CartoDB.Voyager", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.7179091, + 44.4285732 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "InsertUser", + "uid": "89098", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #Slipways", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-29T04:58:15Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115498674, + "host": "mapcomplete.osm.be", + "theme": "slipways", + "answer": 1, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -78.6806049, + 26.4936961 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "InsertUser", + "uid": "89098", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #sport_pitches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-29T03:13:56Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 1.05596809998062e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115496293, + "host": "mapcomplete.osm.be", + "theme": "sport_pitches", + "answer": 1, + "imagery": "osm", + "language": "en", + "change_within_1000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -78.60873964999999, + 26.525312749999998 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-28T22:43:33Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115491537, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 2, + "imagery": "CartoDB.Voyager", + "language": "en", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3392289, + 50.8879395 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-9372994636", + "osm_id": 9372994636, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "amenity": "binoculars" + } + } + ], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-10", + "comment": "Adding data with #MapComplete for theme #binoculars", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-28T21:01:50Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115488738, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "binoculars", + "language": "nl", + "add-image": 1, + "change_within_25m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.0213501, + 51.1038032 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Árboles chilenos en el mundo", + "uid": "9040761", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-28T20:42:23Z", + "reviewed_features": [], + "create": 1, + "modify": 5, + "delete": 0, + "area": 0.000494673538280127, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115488123, + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "trees", + "answer": 7, + "imagery": "osm", + "language": "en", + "move:node/9374436265": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.56920704999999, + -33.4111445 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "InsertUser", + "uid": "89098", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #uk_addresses", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-28T20:26:29Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.00000283547141998578, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115487638, + "host": "mapcomplete.osm.be", + "theme": "uk_addresses", + "answer": 2, + "imagery": "osm", + "language": "en", + "change_within_1000m": 1, + "change_within_5000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -78.6307208, + 26.53397305 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-28T19:42:38Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115486160, + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "osm", + "language": "en", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -71.2659019, + -33.0009287 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Silence37", + "uid": "12430749", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #hackerspaces", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-28T18:24:55Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115483390, + "host": "mapcomplete.osm.be", + "theme": "hackerspaces", + "answer": 2, + "imagery": "osm", + "language": "de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.5750335, + 48.1204593 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "bponkishore", + "uid": "14062769", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-28T16:10:45Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 5.03474999877717e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115477973, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 1, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 79.49821474999999, + 11.6087107 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "bponkishore", + "uid": "14062769", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-28T14:28:58Z", + "reviewed_features": [], + "create": 0, + "modify": 13, + "delete": 0, + "area": 0.0000584305575399665, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115473836, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 14, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 79.5085115, + 11.61178825 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-9372994742", + "osm_id": 9372994742, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "amenity": "binoculars" + } + }, + { + "url": "node-9372994636", + "osm_id": 9372994636, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "amenity": "binoculars" + } + } + ], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-10", + "comment": "Adding data with #MapComplete for theme #binoculars", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-28T12:27:35Z", + "reviewed_features": [], + "create": 3, + "modify": 3, + "delete": 0, + "area": 0.000002318997699992, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115468613, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "binoculars", + "answer": 4, + "imagery": "osm", + "language": "nl", + "add-image": 2, + "change_over_5000m": 3, + "change_within_25m": 6 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.0192446, + 51.103527850000006 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-10", + "comment": "Adding data with #MapComplete for theme #natuurpunt", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-28T12:22:50Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115468391, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "natuurpunt", + "answer": 1, + "imagery": "CartoDB.Positron", + "language": "nl", + "add-image": 1, + "change_over_5000m": 1, + "change_within_25m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.0147948, + 51.1018866 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-10", + "comment": "Adding data with #MapComplete for theme #nature", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-28T12:19:10Z", + "reviewed_features": [], + "create": 1, + "modify": 4, + "delete": 0, + "area": 0.000251523361320056, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115468231, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "nature", + "answer": 4, + "imagery": "osm", + "language": "nl", + "add-image": 2, + "change_over_5000m": 1, + "change_within_25m": 5, + "change_within_500m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.01486665, + 51.100987 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-10", + "comment": "Adding data with #MapComplete for theme #ghostbikes", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-28T11:50:29Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115466855, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "ghostbikes", + "answer": 2, + "imagery": "CartoDB.Positron", + "language": "en", + "add-image": 1, + "change_over_5000m": 1, + "change_within_25m": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.0264168, + 51.0799001 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "emilinfrance", + "uid": "14568184", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #facadegardens", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-28T10:04:03Z", + "reviewed_features": [], + "create": 2, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115461954, + "host": "mapcomplete.osm.be", + "theme": "facadegardens", + "answer": 1, + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.7158357, + 44.4269075 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "emilinfrance", + "uid": "14568184", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-28T09:55:27Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115461617, + "host": "mapcomplete.osm.be", + "theme": "shops", + "answer": 4, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.7157232, + 44.4252561 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "emilinfrance", + "uid": "14568184", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-28T08:43:28Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115458708, + "host": "mapcomplete.osm.be", + "theme": "shops", + "answer": 1, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.7170669, + 44.4277081 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "francians", + "uid": "9006927", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-27T20:45:19Z", + "reviewed_features": [], + "create": 0, + "modify": 33, + "delete": 0, + "area": 0.000321190203570045, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115443137, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 44, + "imagery": "osm", + "language": "en", + "change_within_5000m": 43 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.53595945, + 44.38239165 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-27T20:20:17Z", + "reviewed_features": [], + "create": 1, + "modify": 5, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115442498, + "host": "mapcomplete.osm.be", + "theme": "shops", + "answer": 6, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.0375493, + 51.06536 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-10", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-27T17:55:33Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 4.06889999997148e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115437807, + "host": "pietervdvn.github.io", + "move": 1, + "path": "mc/develop/", + "theme": "cyclofix", + "answer": 1, + "imagery": "CartoDB.Voyager", + "language": "en", + "change_within_25m": 2, + "move:node/1625214199": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.037392, + 51.06487605 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-10", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-27T17:38:10Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 2.37799800007639e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115437165, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "food", + "answer": 2, + "imagery": "osm", + "language": "en", + "change_within_25m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.0362709500000005, + 51.0703174 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-27T17:33:40Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 2.96988900003651e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115436960, + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "osm", + "language": "en", + "add-image": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.2232976, + -39.83408465 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-10", + "comment": "Adding data with #MapComplete for theme #entrances", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-27T16:38:02Z", + "reviewed_features": [], + "create": 2, + "modify": 1, + "delete": 0, + "area": 3.92588040003519e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115434625, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "entrances", + "answer": 3, + "imagery": "osm", + "language": "en", + "change_within_25m": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.04050595, + 51.0715013 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-10", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-27T16:06:46Z", + "reviewed_features": [], + "create": 0, + "modify": 0, + "delete": 1, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115433386, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "shops", + "imagery": "osm", + "deletion": 1, + "language": "en", + "change_within_100m": 1, + "deletion:node/1625270206": "disused" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.0401059, + 51.0737208 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-10", + "comment": "Adding data with #MapComplete for theme #cyclestreets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-27T16:00:08Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.0000058615536299816, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115433128, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "cyclestreets", + "answer": 3, + "imagery": "osm", + "language": "nl", + "change_within_500m": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.041923649999999, + 51.069277549999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-10", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-27T15:54:46Z", + "reviewed_features": [], + "create": 0, + "modify": 16, + "delete": 0, + "area": 0.000142851260639982, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115432966, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "etymology", + "answer": 23, + "imagery": "osm", + "language": "nl", + "change_within_100m": 5, + "change_within_500m": 14, + "change_within_1000m": 3, + "change_within_5000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.0355138, + 51.0688983 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-10", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-27T15:42:53Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.000016328166000005, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115432598, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "food", + "answer": 4, + "imagery": "osm", + "language": "en", + "change_within_500m": 3, + "change_within_1000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.034516099999999, + 51.0681791 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-10", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-27T14:34:26Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115429817, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "charging_stations", + "answer": 7, + "imagery": "osm", + "language": "en", + "add-image": 1, + "change_over_5000m": 1, + "change_within_25m": 8 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.0401766, + 51.0554902 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-10", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-27T14:10:11Z", + "reviewed_features": [], + "create": 5, + "modify": 0, + "delete": 0, + "area": 0.00048021905250004, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115428764, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "benches", + "answer": 3, + "imagery": "cyclosm", + "language": "en", + "change_over_5000m": 5, + "change_within_25m": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.04987715, + 51.0356207 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-10", + "comment": "Adding data with #MapComplete for theme #cyclestreets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-27T13:43:11Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 8.28924999975283e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115427632, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "cyclestreets", + "answer": 1, + "imagery": "osm", + "language": "en", + "change_within_5000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.8858149500000003, + 51.00701005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #campersite", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-27T08:48:33Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 8.36189199990278e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115414828, + "host": "mapcomplete.osm.be", + "theme": "campersite", + "answer": 6, + "imagery": "osm", + "language": "nl", + "change_within_25m": 6 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.1733485, + 41.263031999999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-8853544373", + "osm_id": 8853544373, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8853544357", + "osm_id": 8853544357, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8853544359", + "osm_id": 8853544359, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8853544358", + "osm_id": 8853544358, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "Jose Luis Infante", + "uid": "126203", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete1.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-27T08:36:10Z", + "reviewed_features": [], + "create": 0, + "modify": 9, + "delete": 0, + "area": 2.67567299996058e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115414383, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "answer": 9, + "imagery": "HDM_HOT", + "language": "ca", + "change_within_25m": 2, + "change_within_50m": 1, + "change_within_100m": 6 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.23799335, + 41.4822347 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "francians", + "uid": "9006927", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-27T06:13:24Z", + "reviewed_features": [], + "create": 0, + "modify": 9, + "delete": 0, + "area": 0.0000317774547199931, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115410069, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 9, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.5419114, + 44.3783434 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "s_SoNick", + "uid": "8082926", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #sport_pitches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-27T02:56:51Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.0000102061975399402, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115405896, + "host": "mapcomplete.osm.be", + "theme": "sport_pitches", + "answer": 2, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -99.3182189, + 38.87447405 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-27T02:33:24Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115405642, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "answer": 5, + "imagery": "osm", + "language": "en", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3687606, + 50.8671268 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "s_SoNick", + "uid": "8082926", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-27T01:18:08Z", + "reviewed_features": [], + "create": 0, + "modify": 25, + "delete": 0, + "area": 0.0000514332167799604, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115404835, + "host": "mapcomplete.osm.be", + "theme": "food", + "answer": 35, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -99.31797875, + 38.897699200000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "s_SoNick", + "uid": "8082926", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-27T01:14:59Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 3.71999991215105e-12, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115404805, + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "drinking_water", + "answer": 1, + "imagery": "CartoDB.Voyager", + "language": "en", + "move:node/9368735169": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -99.3306461, + 38.871408 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.13.0-alpha-10", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-26T21:44:45Z", + "reviewed_features": [], + "create": 27, + "modify": 0, + "delete": 0, + "area": 1.3858944000163e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115401224, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "grb", + "import": 5, + "imagery": "AGIVFlandersGRB", + "language": "nl", + "change_within_500m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.0058344, + 51.124421600000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-10", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-26T17:13:05Z", + "reviewed_features": [], + "create": 262, + "modify": 26, + "delete": 0, + "area": 0.0000027183597000012, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115393520, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "grb", + "answer": 47, + "import": 37, + "imagery": "AGIVFlandersGRB", + "language": "en", + "change_within_25m": 8, + "change_within_50m": 9, + "change_within_100m": 23, + "change_within_500m": 44 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.66020395, + 51.079127099999994 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #campersite", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-26T17:08:38Z", + "reviewed_features": [], + "create": 2, + "modify": 6, + "delete": 0, + "area": 3.83989999991271e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115393404, + "host": "mapcomplete.osm.be", + "theme": "campersite", + "answer": 11, + "imagery": "osm", + "language": "nl", + "add-image": 3, + "change_over_5000m": 16 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.99920765, + 41.8101906 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-10", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-26T15:12:41Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 9.55944000022799e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115389875, + "host": "pietervdvn.github.io", + "move": 1, + "path": "mc/develop/", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "change_within_50m": 1, + "move:node/8979968069": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.66183365, + 51.0730304 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-26T14:52:00Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.000050823335680013, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115389171, + "host": "mapcomplete.osm.be", + "theme": "shops", + "imagery": "osm", + "language": "en", + "add-image": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.37699035, + 50.863454700000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-26T14:23:01Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115388271, + "host": "mapcomplete.osm.be", + "theme": "food", + "imagery": "osm", + "language": "en", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.381861, + 50.8463349 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 5, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-26T14:21:17Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115388203, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "osm", + "language": "en", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4352893, + 50.8938546 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-26T13:13:55Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115386087, + "host": "mapcomplete.osm.be", + "theme": "aed", + "answer": 3, + "imagery": "osm", + "language": "nl", + "add-image": 1, + "change_over_5000m": 1, + "change_within_25m": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.0870269, + 41.311761 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-10", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-26T13:04:01Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115385781, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "bookcases", + "answer": 3, + "imagery": "osm", + "language": "en", + "add-image": 1, + "change_over_5000m": 1, + "change_within_25m": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.6528925, + 51.0791451 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "sebkur", + "uid": "22917", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-26T10:49:20Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115382020, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 14.6508665, + 51.7439416 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-26T10:12:35Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115380975, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "answer": 4, + "imagery": "CartoDB.Voyager", + "language": "nl", + "change_over_5000m": 1, + "change_within_25m": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.1633472, + 41.3757814 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "bponkishore", + "uid": "14062769", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-26T06:51:31Z", + "reviewed_features": [], + "create": 0, + "modify": 21, + "delete": 0, + "area": 0.000820622657959962, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115377293, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 23, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 79.50021035, + 11.6132235 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Casi1980", + "uid": "13989376", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-25T21:48:18Z", + "reviewed_features": [], + "create": 3, + "modify": 1, + "delete": 0, + "area": 0.000440551910399929, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115371987, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 14.1568084, + 52.4087429 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "ClarissaWAM", + "uid": "13745921", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-25T21:16:48Z", + "reviewed_features": [], + "create": 1, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115371526, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "answer": 5, + "imagery": "osm", + "language": "en", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.16366, + 49.6172427 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "whatismoss", + "uid": "8427311", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-25T18:54:28Z", + "reviewed_features": [], + "create": 0, + "modify": 20, + "delete": 0, + "area": 0.000316806016319993, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115368572, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 31, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1551789, + 50.7509053 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "whatismoss", + "uid": "8427311", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-25T16:49:05Z", + "reviewed_features": [], + "create": 0, + "modify": 92, + "delete": 0, + "area": 0.000514109295999903, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115365860, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 285, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1619254999999997, + 50.7443318 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "chris-ren", + "uid": "697953", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-25T16:35:33Z", + "reviewed_features": [], + "create": 1, + "modify": 7, + "delete": 0, + "area": 0.00414073945919954, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115365501, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "answer": 5, + "imagery": "osm", + "language": "fr", + "add-image": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.5757846, + 47.42670615 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "chris-ren", + "uid": "697953", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-25T16:30:21Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115365357, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "language": "fr", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.5254179, + 47.3396845 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "sebkur", + "uid": "22917", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-25T13:52:14Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115360983, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 14.6286925, + 51.7431111 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "sebkur", + "uid": "22917", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-25T12:50:06Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115359493, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 14.6307019, + 51.742906 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Michael 3", + "uid": "13922389", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-25T11:47:32Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115357919, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.2362547, + 52.7961969 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-25T09:09:29Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115354401, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "answer": 6, + "imagery": "osm", + "language": "nl", + "change_within_25m": 6 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.8357021, + 41.5925663 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-25T08:58:30Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115354209, + "host": "mapcomplete.osm.be", + "theme": "aed", + "answer": 4, + "imagery": "osm", + "language": "nl", + "add-image": 1, + "change_within_25m": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.8404278, + 41.5941748 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-25T08:48:44Z", + "reviewed_features": [], + "create": 2, + "modify": 2, + "delete": 0, + "area": 0.00000278413420000313, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115354036, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "answer": 2, + "imagery": "CartoDB.Voyager", + "language": "nl", + "add-image": 2, + "change_over_5000m": 2, + "change_within_25m": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.8372871000000002, + 41.59676775 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "chris-ren", + "uid": "697953", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-25T08:09:41Z", + "reviewed_features": [], + "create": 1, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115353415, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "answer": 5, + "imagery": "osm", + "language": "en", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.5238085, + 47.428494 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "bponkishore", + "uid": "14062769", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-24T17:16:51Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.0695802296159983, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115342756, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 2, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 77.6498937, + 8.259154800000001 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Moisès", + "uid": "12884230", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-24T15:46:26Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 9.63199999966577e-11, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115340330, + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "trees", + "imagery": "osm", + "language": "en", + "move:node/9364014890": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.20978885, + 41.541512600000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #campersite", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-24T13:38:29Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 2.86939400001372e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115336696, + "host": "mapcomplete.osm.be", + "theme": "campersite", + "answer": 9, + "imagery": "osm", + "language": "nl", + "add-image": 2, + "change_within_25m": 6, + "change_within_50m": 2, + "change_within_100m": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2787979, + 41.5986513 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "bponkishore", + "uid": "14062769", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-24T12:47:44Z", + "reviewed_features": [], + "create": 0, + "modify": 57, + "delete": 0, + "area": 0.0165042111236996, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115335124, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 109, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 80.22361225, + 13.0179494 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + }, + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-8853143435", + "osm_id": 8853143435, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8853187263", + "osm_id": 8853187263, + "reasons": [ + 43 + ], + "version": 4, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8853176479", + "osm_id": 8853176479, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8853109708", + "osm_id": 8853109708, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8853143437", + "osm_id": 8853143437, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8853109707", + "osm_id": 8853109707, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8853109702", + "osm_id": 8853109702, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "PabloDíaz", + "uid": "14309824", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete1.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-24T08:59:11Z", + "reviewed_features": [], + "create": 0, + "modify": 15, + "delete": 0, + "area": 0.00000327156839999523, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115326275, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "answer": 17, + "imagery": "HDM_HOT", + "language": "ca", + "add-image": 8 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2375508, + 41.46611805 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Arickx", + "uid": "9282195", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #Composthoekjes", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-23T21:27:43Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115313460, + "host": "mapcomplete.osm.be", + "theme": "composthoekjes", + "answer": 2, + "imagery": "osm", + "language": "nl", + "change_over_5000m": 1, + "change_within_25m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.235192, + 51.2103063 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-10", + "comment": "Adding data with #MapComplete for theme #postboxes", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-23T19:00:18Z", + "reviewed_features": [], + "create": 0, + "modify": 0, + "delete": 1, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115310002, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "postboxes", + "imagery": "CartoDB.Voyager", + "deletion": 1, + "language": "en", + "change_within_500m": 1, + "deletion:node/1603226230": "disused" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2150101, + 51.2155688 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-9", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-23T13:28:59Z", + "reviewed_features": [], + "create": 34, + "modify": 85, + "delete": 3, + "area": 9.52658559999191e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115298834, + "host": "pietervdvn.github.io", + "move": 93, + "path": "mc/develop/", + "theme": "grb", + "import": 1, + "imagery": "AGIVFlandersGRB", + "language": "nl", + "conflation": 20, + "change_over_5000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4776487, + 51.027484900000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 91, + "name": "Motorway/trunk geometry modified" + } + ], + "tags": [], + "features": [ + { + "url": "way-102457948", + "name": "Anna Salai (Mount Road)", + "osm_id": 102457948, + "reasons": [ + 91 + ], + "version": 9, + "primary_tags": { + "highway": "trunk" + } + } + ], + "user": "bponkishore", + "uid": "14062769", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-23T11:39:38Z", + "reviewed_features": [], + "create": 0, + "modify": 75, + "delete": 0, + "area": 0.00582735380715918, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115294562, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 184, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 80.25937895, + 13.060308 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-23T10:06:36Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115290470, + "host": "mapcomplete.osm.be", + "theme": "aed", + "answer": 4, + "imagery": "osm", + "language": "nl", + "add-image": 1, + "change_over_5000m": 1, + "change_within_25m": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1471063, + 41.9707682 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-23T09:41:20Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115289364, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "answer": 4, + "imagery": "osm", + "language": "nl", + "add-image": 1, + "change_over_5000m": 1, + "change_within_25m": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1430623, + 41.9716975 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-23T08:52:07Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115287407, + "host": "mapcomplete.osm.be", + "theme": "aed", + "answer": 3, + "imagery": "osm", + "language": "nl", + "add-image": 1, + "change_within_25m": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.0887882, + 41.9778827 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "bponkishore", + "uid": "14062769", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-23T08:49:43Z", + "reviewed_features": [], + "create": 0, + "modify": 8, + "delete": 0, + "area": 0.0000237549714700171, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115287307, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 22, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 80.24210095, + 13.053151549999999 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-23T08:31:12Z", + "reviewed_features": [], + "create": 1, + "modify": 4, + "delete": 0, + "area": 0.00000679446404998686, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115286627, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "answer": 3, + "imagery": "CartoDB.Voyager", + "language": "nl", + "add-image": 2, + "change_over_5000m": 1, + "change_within_25m": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.09066265, + 41.97762555 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-23T08:29:23Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 0.00000419762249998188, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115286554, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "answer": 15, + "imagery": "osm", + "language": "nl", + "add-image": 2, + "change_within_25m": 17 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.09062605, + 41.977316200000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "francians", + "uid": "9006927", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-23T06:00:32Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.0000132291698999807, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115281610, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 1, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.543097100000001, + 44.38112525 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-9", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-23T02:09:07Z", + "reviewed_features": [], + "create": 162, + "modify": 28, + "delete": 40, + "area": 0.0000010486593700026, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115277502, + "host": "127.0.0.1:1234", + "move": 35, + "theme": "grb", + "import": 22, + "imagery": "AGIVFlandersGRB", + "language": "nl", + "conflation": 10, + "change_over_5000m": 22 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.09873685, + 51.065267250000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-22T23:03:14Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115275144, + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "cyclosm", + "language": "en", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.2401089, + -39.8232653 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "francians", + "uid": "9006927", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-22T20:37:13Z", + "reviewed_features": [], + "create": 0, + "modify": 12, + "delete": 0, + "area": 0.0000825824016000231, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115271670, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 14, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.5384242, + 44.382216299999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "sebkur", + "uid": "22917", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-22T13:29:34Z", + "reviewed_features": [], + "create": 6, + "modify": 3, + "delete": 0, + "area": 0.0000145983046000297, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115256236, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 14.639277700000001, + 51.744469699999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-22T13:16:30Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115255765, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "answer": 1, + "imagery": "osm", + "language": "nl", + "change_over_5000m": 1, + "change_within_25m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2760364, + 42.2890803 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "bponkishore", + "uid": "14062769", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-22T10:14:26Z", + "reviewed_features": [], + "create": 0, + "modify": 11, + "delete": 0, + "area": 0.0461699612927603, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115247011, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 16, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 79.2660212, + 10.86966945 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-22T09:10:24Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115243413, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 6, + "imagery": "CartoDB.Voyager", + "language": "nl", + "change_over_5000m": 1, + "change_within_25m": 6 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.0781151, + 42.5270775 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Tim Couwelier", + "uid": "7246683", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-22T07:31:44Z", + "reviewed_features": [], + "create": 311, + "modify": 221, + "delete": 0, + "area": 0.0000877346489599907, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115239186, + "host": "mapcomplete.osm.be", + "move": 169, + "theme": "grb", + "import": 39, + "imagery": "osm", + "language": "nl", + "conflation": 70 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1078504999999996, + 50.966104 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "bponkishore", + "uid": "14062769", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-22T07:27:43Z", + "reviewed_features": [], + "create": 0, + "modify": 27, + "delete": 0, + "area": 0.870963111391499, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115239005, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 33, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 79.18809519999999, + 11.19922645 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-8", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-21T23:15:26Z", + "reviewed_features": [], + "create": 98, + "modify": 64, + "delete": 0, + "area": 0.00000591457594997315, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115228819, + "host": "127.0.0.1:1234", + "move": 53, + "theme": "grb", + "answer": 3, + "import": 7, + "imagery": "AGIV", + "language": "en", + "conflation": 22, + "change_over_5000m": 10 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.14305565, + 51.01165035 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "koebilee", + "uid": "538582", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-21T21:46:27Z", + "reviewed_features": [], + "create": 2, + "modify": 6, + "delete": 0, + "area": 8.78083999933126e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115226904, + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "aed", + "answer": 7, + "imagery": "swisstopo_swissimage", + "language": "de", + "move:node/9356644189": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.6422089500000006, + 46.3115117 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-21T19:28:08Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 1.4231999998678e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115222993, + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "osm", + "language": "en", + "add-image": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.2278505, + -39.83362795 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Robin van der Linde", + "uid": "5093765", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-21T16:12:31Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115216938, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "change_over_5000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.5562805, + 53.0189696 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Tim Couwelier", + "uid": "7246683", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-21T15:12:46Z", + "reviewed_features": [], + "create": 427, + "modify": 193, + "delete": 0, + "area": 0.000515763326300099, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115214557, + "host": "mapcomplete.osm.be", + "move": 115, + "theme": "grb", + "import": 77, + "imagery": "osm", + "language": "nl", + "conflation": 46 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.09277885, + 50.9710227 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Tim Couwelier", + "uid": "7246683", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-21T15:07:30Z", + "reviewed_features": [], + "create": 181, + "modify": 117, + "delete": 0, + "area": 0.0000108078139200151, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115214380, + "host": "mapcomplete.osm.be", + "move": 95, + "theme": "grb", + "import": 22, + "imagery": "osm", + "language": "nl", + "conflation": 42 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1077928999999997, + 50.9685239 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "landscapemapper", + "uid": "220206", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #pingpong", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-21T13:23:52Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115210315, + "host": "mapcomplete.osm.be", + "theme": "pingpong", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.693608, + 47.2161791 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-21T13:06:13Z", + "reviewed_features": [], + "create": 7, + "modify": 0, + "delete": 0, + "area": 4.11781000040723e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115209594, + "host": "mapcomplete.osm.be", + "theme": "grb", + "import": 1, + "imagery": "AGIV", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.87233745, + 50.76025945 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Tim Couwelier", + "uid": "7246683", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-21T12:22:11Z", + "reviewed_features": [], + "create": 260, + "modify": 103, + "delete": 0, + "area": 0.0000283443856300338, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115207937, + "host": "mapcomplete.osm.be", + "move": 78, + "theme": "grb", + "import": 14, + "imagery": "osm", + "language": "nl", + "conflation": 22 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.13927315, + 50.917654150000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-21T11:58:28Z", + "reviewed_features": [], + "create": 14, + "modify": 37, + "delete": 0, + "area": 0.0000026976315600045, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115206824, + "host": "mapcomplete.osm.be", + "move": 35, + "theme": "grb", + "imagery": "AGIVFlandersGRB", + "language": "nl", + "conflation": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4863368999999995, + 51.037231750000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-8", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-21T11:41:55Z", + "reviewed_features": [], + "create": 0, + "modify": 16, + "delete": 0, + "area": 0.00000547530186000244, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115205980, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "etymology", + "answer": 22, + "imagery": "osm", + "language": "nl", + "change_over_5000m": 22 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4726941, + 51.037608750000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Tim Couwelier", + "uid": "7246683", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-21T10:40:41Z", + "reviewed_features": [], + "create": 404, + "modify": 641, + "delete": 0, + "area": 0.0775934234689485, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115203113, + "host": "mapcomplete.osm.be", + "move": 522, + "theme": "grb", + "import": 40, + "imagery": "osm", + "language": "nl", + "conflation": 226 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.39684605, + 50.90379795 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "francians", + "uid": "9006927", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-21T06:08:56Z", + "reviewed_features": [], + "create": 0, + "modify": 15, + "delete": 0, + "area": 0.0000408003655500367, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115191464, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 18, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.53494615, + 44.38038435 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "francians", + "uid": "9006927", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-20T20:47:44Z", + "reviewed_features": [], + "create": 0, + "modify": 8, + "delete": 0, + "area": 0.0000279699532000081, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115181170, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 9, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.5377238, + 44.383272 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "bponkishore", + "uid": "14062769", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-20T16:19:03Z", + "reviewed_features": [], + "create": 0, + "modify": 10, + "delete": 0, + "area": 0.00183103467912001, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115173185, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 12, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 78.07914, + 9.8945045 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "sebkur", + "uid": "22917", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-20T15:21:16Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115170960, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 14.6381227, + 51.7454734 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "JannikK", + "uid": "10114379", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-20T11:32:27Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.00000239856878000336, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115161944, + "host": "mapcomplete.osm.be", + "theme": "food", + "answer": 4, + "imagery": "osm", + "language": "en", + "change_within_500m": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 10.005212700000001, + 53.49737685 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "bponkishore", + "uid": "14062769", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-20T11:27:32Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.0000121335276999915, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115161754, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 2, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 79.4937184, + 11.61568295 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Maarten O", + "uid": "13326535", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #aed_brugge", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-20T10:36:01Z", + "reviewed_features": [], + "create": 0, + "modify": 6, + "delete": 0, + "area": 0.00616071954890001, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115159362, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "HDM_HOT", + "language": "nl", + "add-image": 11, + "change_over_5000m": 10, + "change_within_500m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2071301500000002, + 51.2535671 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "DJ Frans Zeus", + "uid": "14670148", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-19T23:50:34Z", + "reviewed_features": [], + "create": 3, + "modify": 14, + "delete": 0, + "area": 1.97873100023525e-8, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115142549, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "answer": 22, + "imagery": "AGIVFlandersGRB", + "language": "en", + "change_over_5000m": 3, + "change_within_25m": 13, + "change_within_50m": 9 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2216309499999998, + 51.18819825 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "taxi301", + "uid": "657596", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-19T22:56:06Z", + "reviewed_features": [], + "create": 1, + "modify": 8, + "delete": 0, + "area": 3.9611260000226e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115141856, + "host": "mapcomplete.osm.be", + "theme": "trees", + "answer": 12, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 15.62637565, + 54.1546701 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "taxi301", + "uid": "657596", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #street_lighting", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-19T21:44:06Z", + "reviewed_features": [], + "create": 3, + "modify": 16, + "delete": 0, + "area": 0.0000425462935300082, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115140412, + "host": "mapcomplete.osm.be", + "theme": "street_lighting", + "answer": 25, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 15.596164349999999, + 54.16679965 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "francians", + "uid": "9006927", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-19T19:56:11Z", + "reviewed_features": [], + "create": 0, + "modify": 19, + "delete": 0, + "area": 0.000105185438050006, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115137973, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 25, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.543022049999999, + 44.385188549999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #artwork", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-19T19:22:20Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115137129, + "host": "mapcomplete.osm.be", + "theme": "artwork", + "imagery": "osm", + "language": "nl", + "add-image": 1, + "change_within_25m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2251203, + 51.2147858 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-9351149735", + "osm_id": 9351149735, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812673684", + "osm_id": 8812673684, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812673640", + "osm_id": 8812673640, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812896456", + "osm_id": 8812896456, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812673683", + "osm_id": 8812673683, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812896453", + "osm_id": 8812896453, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812654358", + "osm_id": 8812654358, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812654405", + "osm_id": 8812654405, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812654407", + "osm_id": 8812654407, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812896435", + "osm_id": 8812896435, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812896428", + "osm_id": 8812896428, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812896432", + "osm_id": 8812896432, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812896442", + "osm_id": 8812896442, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812896423", + "osm_id": 8812896423, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812896422", + "osm_id": 8812896422, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812630483", + "osm_id": 8812630483, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812654402", + "osm_id": 8812654402, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812654406", + "osm_id": 8812654406, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812956534", + "osm_id": 8812956534, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812896426", + "osm_id": 8812896426, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812896425", + "osm_id": 8812896425, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812654366", + "osm_id": 8812654366, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812896455", + "osm_id": 8812896455, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812896454", + "osm_id": 8812896454, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812896441", + "osm_id": 8812896441, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812896433", + "osm_id": 8812896433, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812673639", + "osm_id": 8812673639, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812654401", + "osm_id": 8812654401, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812896418", + "osm_id": 8812896418, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812956533", + "osm_id": 8812956533, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812896419", + "osm_id": 8812896419, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812654403", + "osm_id": 8812654403, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812654400", + "osm_id": 8812654400, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812896452", + "osm_id": 8812896452, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812896434", + "osm_id": 8812896434, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812896431", + "osm_id": 8812896431, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812896424", + "osm_id": 8812896424, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812896443", + "osm_id": 8812896443, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812654360", + "osm_id": 8812654360, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812896421", + "osm_id": 8812896421, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812654362", + "osm_id": 8812654362, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812654388", + "osm_id": 8812654388, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812654408", + "osm_id": 8812654408, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812799875", + "osm_id": 8812799875, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812654365", + "osm_id": 8812654365, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812654404", + "osm_id": 8812654404, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812920845", + "osm_id": 8812920845, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812799877", + "osm_id": 8812799877, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812799874", + "osm_id": 8812799874, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812799914", + "osm_id": 8812799914, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812799915", + "osm_id": 8812799915, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-9351171847", + "osm_id": 9351171847, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-9351171846", + "osm_id": 9351171846, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812896407", + "osm_id": 8812896407, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812896390", + "osm_id": 8812896390, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812896388", + "osm_id": 8812896388, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812896375", + "osm_id": 8812896375, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812799916", + "osm_id": 8812799916, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812799911", + "osm_id": 8812799911, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812654399", + "osm_id": 8812654399, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812920847", + "osm_id": 8812920847, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812920848", + "osm_id": 8812920848, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812896389", + "osm_id": 8812896389, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812896382", + "osm_id": 8812896382, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812799872", + "osm_id": 8812799872, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812799912", + "osm_id": 8812799912, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812896398", + "osm_id": 8812896398, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812896385", + "osm_id": 8812896385, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812896406", + "osm_id": 8812896406, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812896405", + "osm_id": 8812896405, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812896373", + "osm_id": 8812896373, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812799866", + "osm_id": 8812799866, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812896317", + "osm_id": 8812896317, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812799913", + "osm_id": 8812799913, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812896391", + "osm_id": 8812896391, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812896358", + "osm_id": 8812896358, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812896396", + "osm_id": 8812896396, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812896357", + "osm_id": 8812896357, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812654395", + "osm_id": 8812654395, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812956570", + "osm_id": 8812956570, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812956568", + "osm_id": 8812956568, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812956569", + "osm_id": 8812956569, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812920912", + "osm_id": 8812920912, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812920911", + "osm_id": 8812920911, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812920846", + "osm_id": 8812920846, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812799906", + "osm_id": 8812799906, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812799905", + "osm_id": 8812799905, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812799898", + "osm_id": 8812799898, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812920914", + "osm_id": 8812920914, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812920909", + "osm_id": 8812920909, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812654368", + "osm_id": 8812654368, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812920913", + "osm_id": 8812920913, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812920915", + "osm_id": 8812920915, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812956567", + "osm_id": 8812956567, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "Jose Luis Infante", + "uid": "126203", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete1.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-19T19:18:19Z", + "reviewed_features": [], + "create": 8, + "modify": 97, + "delete": 0, + "area": 0.0000121140379400015, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115137023, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "answer": 97, + "imagery": "EsriWorldImageryClarity", + "language": "ca", + "change_over_5000m": 3, + "change_within_25m": 8, + "change_within_50m": 3, + "change_within_100m": 33, + "change_within_500m": 10 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2378786, + 41.431313849999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-8", + "comment": "Adding data with #MapComplete for theme #missing_streets Mechanical edit: if a single CRAB-address is in the building, has the same housenumber and the same name as a nearby street, then addr:street is added if missing. ", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-19T18:18:07Z", + "reviewed_features": [], + "create": 0, + "modify": 98, + "delete": 0, + "area": 0.00536977851713997, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115135141, + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 98, + "language": "nl", + "change_over_5000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.0966203, + 50.88402035 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-8", + "comment": "Adding data with #MapComplete for theme #missing_streets Mechanical edit: if a single CRAB-address is in the building, has the same housenumber and the same name as a nearby street, then addr:street is added if missing. ", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-19T18:09:20Z", + "reviewed_features": [], + "create": 0, + "modify": 30, + "delete": 0, + "area": 0.00967753889369986, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115134880, + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 30, + "language": "nl", + "change_over_5000m": 30 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.09245765, + 50.9781713 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-8", + "comment": "Adding data with #MapComplete for theme #missing_streets Mechanical edit: if a single CRAB-address is in the building, has the same housenumber and the same name as a nearby street, then addr:street is added if missing. ", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-19T17:55:17Z", + "reviewed_features": [], + "create": 0, + "modify": 70, + "delete": 0, + "area": 0.00204568193351992, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115134486, + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 140, + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.076835600000001, + 50.77990585 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-8", + "comment": "Adding data with #MapComplete for theme #missing_streets Mechanical edit: if a single CRAB-address is in the building, has the same housenumber and the same name as a nearby street, then addr:street is added if missing. ", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-19T17:52:20Z", + "reviewed_features": [], + "create": 0, + "modify": 127, + "delete": 0, + "area": 0.00402414824516002, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115134385, + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 137, + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.07706285, + 51.0557161 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-8", + "comment": "Adding data with #MapComplete for theme #missing_streets Mechanical edit: if a single CRAB-address is in the building, has the same housenumber and the same name as a nearby street, then addr:street is added if missing. ", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-19T17:52:01Z", + "reviewed_features": [], + "create": 0, + "modify": 32, + "delete": 0, + "area": 0.000411399187120026, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115134377, + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 33, + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.072041199999999, + 51.1896762 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-8", + "comment": "Adding data with #MapComplete for theme #missing_streets Mechanical edit: if a single CRAB-address is in the building, has the same housenumber and the same name as a nearby street, then addr:street is added if missing. ", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-19T17:44:03Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 1.43817599999244e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115134119, + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 1, + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.0692205999999995, + 51.229325200000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-8", + "comment": "Adding data with #MapComplete for theme #missing_streets Mechanical edit: if a single CRAB-address is in the building, has the same housenumber and the same name as a nearby street, then addr:street is added if missing. ", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-19T17:42:33Z", + "reviewed_features": [], + "create": 0, + "modify": 38, + "delete": 0, + "area": 0.000217398446080028, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115134083, + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 82, + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.056386, + 50.741288100000006 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-8", + "comment": "Adding data with #MapComplete for theme #missing_streets Mechanical edit: if a single CRAB-address is in the building, has the same housenumber and the same name as a nearby street, then addr:street is added if missing. ", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-19T15:35:34Z", + "reviewed_features": [], + "create": 0, + "modify": 102, + "delete": 0, + "area": 0.00516172983600002, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115130254, + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 103, + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.05535225, + 50.881675 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 4, + "name": "mass modification" + } + ], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-8", + "comment": "Adding data with #MapComplete for theme #missing_streets Mechanical edit: if a single CRAB-address is in the building, has the same housenumber and the same name as a nearby street, then addr:street is added if missing. ", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-19T15:33:05Z", + "reviewed_features": [], + "create": 0, + "modify": 1477, + "delete": 0, + "area": 0.000612297529559943, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115130173, + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 2169, + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.05535085, + 51.1510051 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-8", + "comment": "Adding data with #MapComplete for theme #missing_streets Mechanical edit: if a single CRAB-address is in the building, has the same housenumber and the same name as a nearby street, then addr:street is added if missing. ", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-19T15:31:54Z", + "reviewed_features": [], + "create": 0, + "modify": 115, + "delete": 0, + "area": 0.000208794304979972, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115130103, + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 683, + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.056055799999999, + 51.16979595 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 4, + "name": "mass modification" + } + ], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-8", + "comment": "Adding data with #MapComplete for theme #missing_streets Mechanical edit: if a single CRAB-address is in the building, has the same housenumber and the same name as a nearby street, then addr:street is added if missing. ", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-19T15:26:49Z", + "reviewed_features": [], + "create": 0, + "modify": 520, + "delete": 0, + "area": 0.0106184303015697, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115129914, + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 998, + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.03271185, + 50.95015785 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 4, + "name": "mass modification" + } + ], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-8", + "comment": "Adding data with #MapComplete for theme #missing_streets Mechanical edit: if a single CRAB-address is in the building, has the same housenumber and the same name as a nearby street, then addr:street is added if missing. ", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-19T15:25:55Z", + "reviewed_features": [], + "create": 0, + "modify": 426, + "delete": 0, + "area": 0.00199921795019995, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115129864, + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 1152, + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.0333419, + 51.1960075 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-8", + "comment": "Adding data with #MapComplete for theme #missing_streets Mechanical edit: if a single CRAB-address is in the building, has the same housenumber and the same name as a nearby street, then addr:street is added if missing. ", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-19T15:25:48Z", + "reviewed_features": [], + "create": 0, + "modify": 64, + "delete": 0, + "area": 0.0100713580061402, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115129859, + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 326, + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.0113003, + 50.93909445 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 4, + "name": "mass modification" + } + ], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-8", + "comment": "Adding data with #MapComplete for theme #missing_streets Mechanical edit: if a single CRAB-address is in the building, has the same housenumber and the same name as a nearby street, then addr:street is added if missing. ", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-19T15:25:36Z", + "reviewed_features": [], + "create": 0, + "modify": 315, + "delete": 0, + "area": 0.000470582836560063, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115129850, + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 320, + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.0113003, + 50.7214431 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-8", + "comment": "Adding data with #MapComplete for theme #missing_streets Mechanical edit: if a single CRAB-address is in the building, has the same housenumber and the same name as a nearby street, then addr:street is added if missing. ", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-19T14:39:12Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.000114303968460017, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115128208, + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 121, + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.0074617, + 51.02047085 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 4, + "name": "mass modification" + } + ], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-8", + "comment": "Adding data with #MapComplete for theme #missing_streets Mechanical edit: if a single CRAB-address is in the building, has the same housenumber and the same name as a nearby street, then addr:street is added if missing. ", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-19T14:29:54Z", + "reviewed_features": [], + "create": 0, + "modify": 289, + "delete": 0, + "area": 0.000567303246030035, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115127935, + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 509, + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.01136495, + 51.15163135 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-8", + "comment": "Adding data with #MapComplete for theme #missing_streets Mechanical edit: if a single CRAB-address is in the building, has the same housenumber and the same name as a nearby street, then addr:street is added if missing. ", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-19T14:24:46Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.0000113171995999957, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115127772, + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 55, + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.9894198999999997, + 51.0208131 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-8", + "comment": "Adding data with #MapComplete for theme #missing_streets Mechanical edit: if a single CRAB-address is in the building, has the same housenumber and the same name as a nearby street, then addr:street is added if missing. ", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-19T14:20:17Z", + "reviewed_features": [], + "create": 0, + "modify": 52, + "delete": 0, + "area": 0.00645647482919994, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115127657, + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 114, + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.99314665, + 50.926404500000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-19T14:17:51Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115127587, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "answer": 8, + "imagery": "osm", + "language": "nl", + "change_within_25m": 7, + "change_within_100m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.0482153, + 42.5519041 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "milenasonneveld", + "uid": "8177639", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #climbing", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-19T13:57:10Z", + "reviewed_features": [], + "create": 2, + "modify": 7, + "delete": 0, + "area": 0.000115664969779882, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115126967, + "host": "mapcomplete.osm.be", + "theme": "climbing", + "answer": 3, + "imagery": "CartoDB.VoyagerNoLabels", + "language": "en", + "add-image": 5, + "change_over_5000m": 2, + "change_within_50m": 2, + "change_within_100m": 4, + "change_within_500m": 1, + "change_within_1000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.313724349999999, + 50.881769399999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-8", + "comment": "Adding data with #MapComplete for theme #missing_streets Mechanical edit: if a single CRAB-address is in the building, has the same housenumber and the same name as a nearby street, then addr:street is added if missing. ", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-19T13:47:50Z", + "reviewed_features": [], + "create": 0, + "modify": 13, + "delete": 0, + "area": 0.0247047926299201, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115126671, + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 19, + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.94611245, + 51.0017509 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-8", + "comment": "Adding data with #MapComplete for theme #missing_streets Mechanical edit: if a single CRAB-address is in the building, has the same housenumber and the same name as a nearby street, then addr:street is added if missing. ", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-19T13:34:24Z", + "reviewed_features": [], + "create": 0, + "modify": 37, + "delete": 0, + "area": 0.0316752553179294, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115126282, + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 39, + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.8309207499999998, + 51.02388435 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-8", + "comment": "Adding data with #MapComplete for theme #missing_streets Mechanical edit: if a single CRAB-address is in the building, has the same housenumber and the same name as a nearby street, then addr:street is added if missing. ", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-19T13:24:59Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 2.28939500001562e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115125961, + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 37, + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7238989, + 51.03324615 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-8", + "comment": "Adding data with #MapComplete for theme #missing_streets Mechanical edit: if a single CRAB-address is in the building, has the same housenumber and the same name as a nearby street, then addr:street is added if missing. ", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-19T13:24:53Z", + "reviewed_features": [], + "create": 0, + "modify": 12, + "delete": 0, + "area": 0.000186014649259994, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115125958, + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 35, + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.72549075, + 51.0481458 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-8", + "comment": "Adding data with #MapComplete for theme #missing_streets Mechanical edit: if a single CRAB-address is in the building, has the same housenumber and the same name as a nearby street, then addr:street is added if missing. ", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-19T13:23:08Z", + "reviewed_features": [], + "create": 0, + "modify": 163, + "delete": 0, + "area": 0.0418745345391596, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115125910, + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 331, + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.74388765, + 50.9863243 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-8", + "comment": "Adding data with #MapComplete for theme #missing_streets Mechanical edit: if a single CRAB-address is in the building, has the same housenumber and the same name as a nearby street, then addr:street is added if missing. ", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-19T13:15:19Z", + "reviewed_features": [], + "create": 0, + "modify": 44, + "delete": 0, + "area": 0.0199388102091297, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115125653, + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 48, + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.67785335, + 50.930803350000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-19T10:17:17Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115120491, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "answer": 5, + "imagery": "osm", + "language": "nl", + "change_over_5000m": 1, + "change_within_25m": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.0227972, + 42.5473611 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-19T10:15:20Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115120444, + "host": "mapcomplete.osm.be", + "theme": "aed", + "answer": 4, + "imagery": "osm", + "language": "nl", + "add-image": 1, + "change_over_5000m": 1, + "change_within_25m": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.022976, + 42.547202 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "bponkishore", + "uid": "14062769", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-19T09:33:48Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.000146485060339987, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115119368, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 2, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 77.69413135, + 8.728518900000001 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-8", + "comment": "Adding data with #MapComplete for theme #missing_streets Mechanical edit: if a single CRAB-address is in the building, has the same housenumber and the same name as a nearby street, then addr:street is added if missing. ", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-19T01:11:59Z", + "reviewed_features": [], + "create": 0, + "modify": 12, + "delete": 0, + "area": 0.00977634736769982, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115113341, + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 12, + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.6084390500000003, + 50.955058 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-8", + "comment": "Adding data with #MapComplete for theme #missing_streets Mechanical edit: if a single CRAB-address is in the building, has the same housenumber and the same name as a nearby street, then addr:street is added if missing. ", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-19T00:28:53Z", + "reviewed_features": [], + "create": 0, + "modify": 176, + "delete": 0, + "area": 0.0809680902322608, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115112863, + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 238, + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.4962941499999998, + 50.9948142 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-8", + "comment": "Adding data with #MapComplete for theme #missing_streets Mechanical edit: if a single CRAB-address is in the building, has the same housenumber and the same name as a nearby street, then addr:street is added if missing. ", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-19T00:15:06Z", + "reviewed_features": [], + "create": 0, + "modify": 13, + "delete": 0, + "area": 0.00271505351831998, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115112710, + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 14, + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.39704555, + 50.9063546 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-8", + "comment": "Adding data with #MapComplete for theme #missing_streets Mechanical edit: if a single CRAB-address is in the building, has the same housenumber and the same name as a nearby street, then addr:street is added if missing. ", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-19T00:13:42Z", + "reviewed_features": [], + "create": 0, + "modify": 48, + "delete": 0, + "area": 0.000101299239999971, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115112694, + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 49, + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3705561, + 50.85813235 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-8", + "comment": "Adding data with #MapComplete for theme #missing_streets Mechanical edit: if a single CRAB-address is in the building, has the same housenumber and the same name as a nearby street, then addr:street is added if missing. ", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-19T00:13:42Z", + "reviewed_features": [], + "create": 0, + "modify": 19, + "delete": 0, + "area": 0.00019623101589009, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115112693, + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 21, + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.37193725, + 50.909577049999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-8", + "comment": "Adding data with #MapComplete for theme #missing_streets Mechanical edit: if a single CRAB-address is in the building, has the same housenumber and the same name as a nearby street, then addr:street is added if missing. ", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-19T00:11:10Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 4.31744999999187e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115112656, + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 50, + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3783145, + 50.86094835 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-8", + "comment": "Adding data with #MapComplete for theme #missing_streets Mechanical edit: if a single CRAB-address is in the building, has the same housenumber and the same name as a nearby street, then addr:street is added if missing. ", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-19T00:04:09Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 5.44961900010158e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115112587, + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 34, + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3276382499999997, + 50.851804349999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-8", + "comment": "Adding data with #MapComplete for theme #missing_streets Mechanical edit: if a single CRAB-address is in the building, has the same housenumber and the same name as a nearby street, then addr:street is added if missing. ", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-19T00:02:05Z", + "reviewed_features": [], + "create": 0, + "modify": 167, + "delete": 0, + "area": 0.0230804430227, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115112561, + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 349, + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3542658, + 51.073802549999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 4, + "name": "mass modification" + } + ], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-8", + "comment": "Adding data with #MapComplete for theme #missing_streets Mechanical edit: if a single CRAB-address is in the building, has the same housenumber and the same name as a nearby street, then addr:street is added if missing. ", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-19T00:00:31Z", + "reviewed_features": [], + "create": 0, + "modify": 341, + "delete": 0, + "area": 0.000852555628240051, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115112552, + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 395, + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3298948, + 50.8824307 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Muokkaaja", + "uid": "494482", + "editor": "MapComplete 0.13.0-alpha-8", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-18T21:29:07Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 3.61560979956926e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115109624, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "cyclofix", + "answer": 4, + "imagery": "CartoDB.Voyager", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 24.8856797, + 60.26230075 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "francians", + "uid": "9006927", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-18T20:20:58Z", + "reviewed_features": [], + "create": 0, + "modify": 6, + "delete": 0, + "area": 0.0000203695700499793, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115108008, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 8, + "imagery": "osm", + "language": "en", + "change_within_5000m": 8 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.54179325, + 44.38814875 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-9349382800", + "osm_id": 9349382800, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "tourism": "map" + } + } + ], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-8", + "comment": "Adding data with #MapComplete for theme #maps", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-18T20:13:52Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115107812, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "maps", + "imagery": "osm", + "language": "en", + "add-image": 1, + "change_over_5000m": 1, + "change_within_5000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3343452, + 50.8353629 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "bponkishore", + "uid": "14062769", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-18T19:20:58Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.229943296983474, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115106646, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 3, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 79.66680015, + 11.2566755 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-18T18:56:24Z", + "reviewed_features": [], + "create": 2, + "modify": 4, + "delete": 0, + "area": 0.00297176940967953, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115106101, + "host": "mapcomplete.osm.be", + "theme": "trees", + "answer": 7, + "imagery": "AGIV", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.4228078, + 50.7910295 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Robin van der Linde", + "uid": "5093765", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-18T17:18:34Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115103568, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "change_over_5000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.4544248, + 53.2306006 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "bponkishore", + "uid": "14062769", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-18T16:56:20Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.00153871843119007, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115102913, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 7, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 78.13084415, + 8.82533365 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Frans_Napaters", + "uid": "3574538", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-18T15:47:22Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115100932, + "host": "mapcomplete.osm.be", + "theme": "aed", + "answer": 2, + "imagery": "osm", + "language": "en", + "change_within_500m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.9162873, + 51.1057835 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "bponkishore", + "uid": "14062769", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-18T15:44:11Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.000204297345159809, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115100836, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 3, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 79.50242130000001, + 11.61282945 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "bponkishore", + "uid": "14062769", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-18T15:24:08Z", + "reviewed_features": [], + "create": 0, + "modify": 17, + "delete": 0, + "area": 0.00067220943536005, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115100099, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 24, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 79.49726534999999, + 11.6146933 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "sebkur", + "uid": "22917", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-18T15:14:23Z", + "reviewed_features": [], + "create": 3, + "modify": 3, + "delete": 0, + "area": 0.0000283842157200328, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115099830, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 14.635882299999999, + 51.741542100000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Frans_Napaters", + "uid": "3574538", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-18T14:41:04Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115098739, + "host": "mapcomplete.osm.be", + "theme": "aed", + "answer": 2, + "imagery": "osm", + "language": "en", + "change_within_25m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.9162873, + 51.1057835 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "bponkishore", + "uid": "14062769", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-18T14:08:56Z", + "reviewed_features": [], + "create": 0, + "modify": 59, + "delete": 0, + "area": 0.00219949353200984, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115097598, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 98, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 79.50761685, + 11.61259845 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Cmap99", + "uid": "13524250", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-18T13:11:50Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115095784, + "host": "mapcomplete.osm.be", + "theme": "aed", + "answer": 3, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -9.0597638, + 53.2758628 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "JoeG", + "uid": "73276", + "editor": "MapComplete 0.13.0-alpha-8", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-18T01:37:23Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115077361, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "toilets", + "answer": 4, + "imagery": "osm", + "language": "en", + "add-image": 1, + "change_within_25m": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 149.025668, + -35.320061 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 4, + "name": "mass modification" + } + ], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-8", + "comment": "Adding data with #MapComplete for theme #missing_streets Mechanical edit: if a single CRAB-address is in the building, has the same housenumber and the same name as a nearby street, then addr:street is added if missing. ", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-17T23:26:27Z", + "reviewed_features": [], + "create": 0, + "modify": 375, + "delete": 0, + "area": 0.0242709523681601, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115075383, + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 795, + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3192024, + 51.0847387 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-17T22:31:00Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115074314, + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "osm", + "language": "en", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 151.2164827, + -33.8636398 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "kewl", + "uid": "317259", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-17T19:14:59Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115069080, + "host": "mapcomplete.osm.be", + "theme": "benches", + "answer": 2, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.0738619, + 49.5913384 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-3946989138", + "osm_id": 3946989138, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946992602", + "osm_id": 3946992602, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946989093", + "osm_id": 3946989093, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946993689", + "osm_id": 3946993689, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946987374", + "osm_id": 3946987374, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946987415", + "osm_id": 3946987415, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-9347169225", + "osm_id": 9347169225, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946987236", + "osm_id": 3946987236, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946987285", + "osm_id": 3946987285, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946987560", + "osm_id": 3946987560, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946987450", + "osm_id": 3946987450, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946987271", + "osm_id": 3946987271, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8745426045", + "osm_id": 8745426045, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-9347179105", + "osm_id": 9347179105, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946989129", + "osm_id": 3946989129, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946987358", + "osm_id": 3946987358, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946987214", + "osm_id": 3946987214, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8745426046", + "osm_id": 8745426046, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946987648", + "osm_id": 3946987648, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812630517", + "osm_id": 8812630517, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-9347292798", + "osm_id": 9347292798, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-9347272516", + "osm_id": 9347272516, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-9347295359", + "osm_id": 9347295359, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-9347292087", + "osm_id": 9347292087, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "Jose Luis Infante", + "uid": "126203", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete1.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-17T18:52:47Z", + "reviewed_features": [], + "create": 8, + "modify": 46, + "delete": 0, + "area": 0.0000180187924000348, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115068458, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "answer": 19, + "imagery": "HDM_HOT", + "language": "ca", + "add-image": 27, + "change_over_5000m": 8, + "change_within_25m": 46 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2304483, + 41.4342027 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-9347147825", + "name": "Vélothèque Ixelles - Fietsbieb Elsene", + "osm_id": 9347147825, + "reasons": [ + 43 + ], + "version": 4, + "primary_tags": { + "amenity": "bicycle_library" + } + } + ], + "user": "Jhowie_Nitnek", + "uid": "10209781", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #bicyclelib", + "comments_count": 4, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-17T18:31:42Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115067636, + "host": "mapcomplete.osm.be", + "theme": "bicyclelib", + "answer": 3, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3869755, + 50.8224716 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-8", + "comment": "Adding data with #MapComplete for theme #missing_streets Mechanical edit: if a single CRAB-address is in the building, has the same housenumber and the same name as a nearby street, then addr:street is added if missing. ", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-17T18:28:50Z", + "reviewed_features": [], + "create": 0, + "modify": 101, + "delete": 0, + "area": 0.01910475317565, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115067548, + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 189, + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2753133500000002, + 50.96921165 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-8", + "comment": "Adding data with #MapComplete for theme #missing_streets Mechanical edit: if a single CRAB-address is in the building, has the same housenumber and the same name as a nearby street, then addr:street is added if missing. ", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-17T18:10:19Z", + "reviewed_features": [], + "create": 0, + "modify": 60, + "delete": 0, + "area": 0.01258505415812, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115066926, + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 87, + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.24292375, + 51.0626282 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-8", + "comment": "Adding data with #MapComplete for theme #missing_streets Mechanical edit: if a single CRAB-address is in the building, has the same housenumber and the same name as a nearby street, then addr:street is added if missing. ", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-17T18:02:05Z", + "reviewed_features": [], + "create": 0, + "modify": 7, + "delete": 0, + "area": 0.0000450440908200066, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115066632, + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 7, + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2224196000000003, + 50.88101675 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-8", + "comment": "Adding data with #MapComplete for theme #missing_streets Mechanical edit: if a single CRAB-address is in the building, has the same housenumber and the same name as a nearby street, then addr:street is added if missing. ", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-17T17:59:29Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 0.000100600180449946, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115066513, + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 6, + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.22220785, + 51.02357465 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-8", + "comment": "Adding data with #MapComplete for theme #missing_streets Mechanical edit: if a single CRAB-address is in the building, has the same housenumber and the same name as a nearby street, then addr:street is added if missing. ", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-17T17:59:20Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 4.69740600004096e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115066501, + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 1, + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.23004515, + 51.029804799999994 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-8", + "comment": "Adding data with #MapComplete for theme #missing_streets Mechanical edit: if a single CRAB-address is in the building, has the same housenumber and the same name as a nearby street, then addr:street is added if missing. ", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-17T17:56:43Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 3.27175920000126e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115066382, + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 1, + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.21506865, + 51.1945161 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-8", + "comment": "Adding data with #MapComplete for theme #missing_streets Mechanical edit: if a single CRAB-address is in the building, has the same housenumber and the same name as a nearby street, then addr:street is added if missing. ", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-17T17:54:09Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 4.53367800000758e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115066269, + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 1, + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.19497815, + 51.2723481 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-8", + "comment": "Adding data with #MapComplete for theme #missing_streets Mechanical edit: if a single CRAB-address is in the building, has the same housenumber and the same name as a nearby street, then addr:street is added if missing. ", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-17T17:53:26Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 2.09356199997039e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115066235, + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 1, + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1918658, + 50.79036035 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-8", + "comment": "Adding data with #MapComplete for theme #missing_streets Mechanical edit: if a single CRAB-address is in the building, has the same housenumber and the same name as a nearby street, then addr:street is added if missing. ", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-17T17:51:11Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 9.28657000009259e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115066138, + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 1, + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.18868265, + 50.9084495 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-8", + "comment": "Adding data with #MapComplete for theme #missing_streets Mechanical edit: if a single CRAB-address is in the building, has the same housenumber and the same name as a nearby street, then addr:street is added if missing. ", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-17T17:50:29Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 4.04494099992638e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115066115, + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 1, + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.18851995, + 50.93103455 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-8", + "comment": "Adding data with #MapComplete for theme #missing_streets Mechanical edit: if a single CRAB-address is in the building, has the same housenumber and the same name as a nearby street, then addr:street is added if missing. ", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-17T17:49:30Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 5.3026280999831e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115066055, + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 5, + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.20279475, + 51.00275085 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-8", + "comment": "Adding data with #MapComplete for theme #missing_streets Mechanical edit: if a single CRAB-address is in the building, has the same housenumber and the same name as a nearby street, then addr:street is added if missing. ", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-17T17:12:15Z", + "reviewed_features": [], + "create": 0, + "modify": 9, + "delete": 0, + "area": 0.00000231993125000583, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115064642, + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 9, + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.19916135, + 51.294097550000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-8", + "comment": "Adding data with #MapComplete for theme #missing_streets Mechanical edit: if a single CRAB-address is in the building, has the same housenumber and the same name as a nearby street, then addr:street is added if missing. ", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-17T17:09:28Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 7.68955000009553e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115064553, + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 1, + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1761646, + 50.83030315 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-8", + "comment": "Adding data with #MapComplete for theme #missing_streets Mechanical edit: if a single CRAB-address is in the building, has the same housenumber and the same name as a nearby street, then addr:street is added if missing. ", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-17T17:08:45Z", + "reviewed_features": [], + "create": 0, + "modify": 8, + "delete": 0, + "area": 0.0000150553581599657, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115064528, + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 8, + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.17748525, + 50.865633700000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-8", + "comment": "Adding data with #MapComplete for theme #missing_streets Mechanical edit: if a single CRAB-address is in the building, has the same housenumber and the same name as a nearby street, then addr:street is added if missing. ", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-17T16:29:48Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 3.7852520000713e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115063280, + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 1, + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1851971, + 51.29024925 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-8", + "comment": "Adding data with #MapComplete for theme #missing_streets Mechanical edit: if a single CRAB-address is in the building, has the same housenumber and the same name as a nearby street, then addr:street is added if missing. ", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-17T16:13:37Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 2.41077200006619e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115062744, + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 1, + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.13940395, + 50.9494039 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-8", + "comment": "Adding data with #MapComplete for theme #missing_streets Mechanical edit: if a single CRAB-address is in the building, has the same housenumber and the same name as a nearby street, then addr:street is added if missing. ", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-17T16:12:50Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 3.03143729999662e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115062715, + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 2, + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.12268875, + 50.993835450000006 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-8", + "comment": "Adding data with #MapComplete for theme #missing_streets Mechanical edit: if a single CRAB-address is in the building, has the same housenumber and the same name as a nearby street, then addr:street is added if missing. ", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-17T16:03:57Z", + "reviewed_features": [], + "create": 0, + "modify": 7, + "delete": 0, + "area": 3.54818880000719e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115062402, + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 29, + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1179101, + 50.9291386 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-8", + "comment": "Adding data with #MapComplete for theme #missing_streets Mechanical edit: if a single CRAB-address is in the building, has the same housenumber and the same name as a nearby street, then addr:street is added if missing. ", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-17T16:03:44Z", + "reviewed_features": [], + "create": 0, + "modify": 17, + "delete": 0, + "area": 0.00000751631345998208, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115062396, + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 22, + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.10230425, + 51.0654076 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-8", + "comment": "Adding data with #MapComplete for theme #missing_streets Mechanical edit: if a single CRAB-address is in the building, has the same housenumber and the same name as a nearby street, then addr:street is added if missing. ", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-17T16:03:19Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 6.13485599999224e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115062377, + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 5, + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1123287, + 51.07313765000001 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-8", + "comment": "Adding data with #MapComplete for theme #missing_streets Mechanical edit: if a single CRAB-address is in the building, has the same housenumber and the same name as a nearby street, then addr:street is added if missing. ", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-17T16:02:56Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.0000181921229599969, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115062361, + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 4, + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1144381, + 51.119091850000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "matissevdberg", + "uid": "12928471", + "editor": "MapComplete 0.13.0-alpha-8", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-17T12:51:53Z", + "reviewed_features": [], + "create": 15, + "modify": 19, + "delete": 0, + "area": 0.000225206688119998, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115055797, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "surveillance", + "answer": 30, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.404730600000001, + 51.2138039 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + }, + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-8852917068", + "osm_id": 8852917068, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8853176484", + "osm_id": 8853176484, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8852917049", + "osm_id": 8852917049, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8852917050", + "osm_id": 8852917050, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "PabloDíaz", + "uid": "14309824", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete1.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-16T18:13:51Z", + "reviewed_features": [], + "create": 0, + "modify": 6, + "delete": 0, + "area": 0.00000789243839999017, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115020070, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "answer": 6, + "imagery": "HDM_HOT", + "language": "ca", + "add-image": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.24074075, + 41.4663065 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-16T16:52:48Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115017408, + "host": "mapcomplete.osm.be", + "theme": "aed", + "answer": 7, + "imagery": "osm", + "language": "nl", + "change_over_5000m": 1, + "change_within_25m": 7 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.8403185, + 42.5333722 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-16T15:51:25Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115015263, + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "osm", + "language": "en", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.9627955, + -32.7785095 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Sukkoria", + "uid": "3083013", + "editor": "MapComplete 0.2.2a", + "comment": "Adding data with #MapComplete for theme #climbing", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-15T19:14:56Z", + "reviewed_features": [], + "create": 0, + "modify": 11, + "delete": 0, + "area": 0.00060032117735995, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114976586, + "theme": "climbing", + "language": "en", + "theme-creator": "Christian Neumann " + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.3419936999999997, + 48.8863634 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-15T15:23:15Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 4.33992799985447e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114969039, + "host": "mapcomplete.osm.be", + "theme": "benches", + "answer": 4, + "imagery": "osm", + "language": "en", + "add-image": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7897204999999996, + 51.027699 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-15T15:19:22Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114968885, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 1, + "imagery": "osm", + "language": "en", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.885412, + 51.0086988 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #cyclestreets", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-15T15:04:24Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.0000097286421599979, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114968357, + "host": "mapcomplete.osm.be", + "theme": "cyclestreets", + "imagery": "osm", + "language": "en", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.93153515, + 51.0162539 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jcn706", + "uid": "351940", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #campersite", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-14T23:21:39Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114942699, + "host": "mapcomplete.osm.be", + "theme": "campersite", + "answer": 8, + "imagery": "osm", + "language": "fr", + "change_within_100m": 8 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 10.420775, + 43.7214807 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-14T21:36:26Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114940487, + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "osm", + "language": "en", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.2548747, + -39.8056354 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thibault Rommel", + "uid": "5846458", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/seppesantens/MapComplete-Themes/main/VerkeerdeBordenDatabank/VerkeerdeBordenDatabank.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-14T21:05:56Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114939766, + "host": "mapcomplete.osm.be", + "theme": "gh://seppesantens/mapcomplete-themes/main/verkeerdebordendatabank/verkeerdebordendatabank.json", + "answer": 1, + "imagery": "Stamen.TonerLite", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1734978, + 50.9023391 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-7", + "comment": "Adding data with #MapComplete for theme #artwork", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-14T16:49:34Z", + "reviewed_features": [], + "create": 0, + "modify": 0, + "delete": 1, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114931965, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "artwork", + "imagery": "AGIVFlandersGRB", + "deletion": 1, + "language": "en", + "change_within_500m": 1, + "deletion:node/9337505903": "duplicate" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2251042, + 51.2147858 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Karpax", + "uid": "14633101", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #fritures", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-14T14:15:32Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114926545, + "host": "mapcomplete.osm.be", + "theme": "fritures", + "answer": 7, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4251353, + 51.2581617 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-7", + "comment": "Adding data with #MapComplete for theme #artwork", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-14T13:36:01Z", + "reviewed_features": [], + "create": 2, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114925097, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "artwork", + "answer": 1, + "imagery": "osm", + "language": "en", + "change_over_5000m": 2, + "change_within_25m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.22511225, + 51.2147858 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-14T09:50:55Z", + "reviewed_features": [], + "create": 2, + "modify": 0, + "delete": 0, + "area": 1.67949599995872e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114915854, + "host": "mapcomplete.osm.be", + "theme": "benches", + "answer": 1, + "imagery": "UrbISOrtho", + "language": "en", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3787008499999995, + 50.8437446 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-14T08:28:56Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114912428, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "answer": 2, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3782034, + 50.6784338 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "sebkur", + "uid": "22917", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-14T07:45:56Z", + "reviewed_features": [], + "create": 5, + "modify": 9, + "delete": 0, + "area": 6.89766689998107e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114910791, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 14.32362325, + 51.74771895 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Rembrandt De Vlaeminck", + "uid": "504998", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #ghostbikes", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-13T21:03:27Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114897962, + "host": "mapcomplete.osm.be", + "theme": "ghostbikes", + "answer": 1, + "imagery": "CartoDB.Positron", + "language": "en", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.1634639, + 51.1860972 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-7", + "comment": "Adding data with #MapComplete for theme #missing_streets Mechanical edit: if a single CRAB-address is in the building, has the same housenumber and the same name as a nearby street, then addr:street is added if missing. ", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-13T18:36:28Z", + "reviewed_features": [], + "create": 0, + "modify": 38, + "delete": 0, + "area": 0.000017938025869982, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114893856, + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 38, + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.01402135, + 51.16710285 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-7", + "comment": "Adding data with #MapComplete for theme #missing_streets Mechanical edit: if a single CRAB-address is in the building, has the same housenumber and the same name as a nearby street, then addr:street is added if missing. ", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-13T18:34:11Z", + "reviewed_features": [], + "create": 0, + "modify": 9, + "delete": 0, + "area": 0.0000199080984999984, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114893804, + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 9, + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.00817915, + 51.1742603 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-7", + "comment": "Adding data with #MapComplete for theme #missing_streets Mechanical edit: if a single CRAB-address is in the building, has the same housenumber and the same name as a nearby street, then addr:street is added if missing. ", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-13T18:33:55Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 4.78230400001004e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114893801, + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 1, + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.0100784999999997, + 51.0199994 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 4, + "name": "mass modification" + } + ], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-7", + "comment": "Adding data with #MapComplete for theme #missing_streets Mechanical edit: if a single CRAB-address is in the building, has the same housenumber and the same name as a nearby street, then addr:street is added if missing. ", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-13T18:28:28Z", + "reviewed_features": [], + "create": 0, + "modify": 323, + "delete": 0, + "area": 0.000161126412600033, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114893654, + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 323, + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.9967327, + 51.184949599999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-7", + "comment": "Adding data with #MapComplete for theme #missing_streets Mechanical edit: if a single CRAB-address is in the building, has the same housenumber and the same name as a nearby street, then addr:street is added if missing. ", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-13T18:27:20Z", + "reviewed_features": [], + "create": 0, + "modify": 13, + "delete": 0, + "area": 0.00000195340340999694, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114893624, + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 13, + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.00345935, + 51.24994975 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-7", + "comment": "Adding data with #MapComplete for theme #missing_streets Mechanical edit: if a single CRAB-address is in the building, has the same housenumber and the same name as a nearby street, then addr:street is added if missing. ", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-13T18:23:27Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 1.70453299993175e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114893493, + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 1, + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.9705210500000003, + 51.00569085 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-7", + "comment": "Adding data with #MapComplete for theme #missing_streets Mechanical edit: if a single CRAB-address is in the building, has the same housenumber and the same name as a nearby street, then addr:street is added if missing. ", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-13T18:22:08Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 3.88019199995179e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114893450, + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 19, + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.9708588000000002, + 51.071485300000006 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-7", + "comment": "Adding data with #MapComplete for theme #missing_streets Mechanical edit: if a single CRAB-address is in the building, has the same housenumber and the same name as a nearby street, then addr:street is added if missing. ", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-13T18:21:59Z", + "reviewed_features": [], + "create": 0, + "modify": 18, + "delete": 0, + "area": 0.0000229376440999865, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114893443, + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 18, + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.9780860000000002, + 51.09288895 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-7", + "comment": "Adding data with #MapComplete for theme #missing_streets Mechanical edit: if a single CRAB-address is in the building, has the same housenumber and the same name as a nearby street, then addr:street is added if missing. ", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-13T18:20:26Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.0000293229284399542, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114893393, + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 3, + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.9819525000000002, + 51.18176055 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-7", + "comment": "Adding data with #MapComplete for theme #missing_streets Mechanical edit: if a single CRAB-address is in the building, has the same housenumber and the same name as a nearby street, then addr:street is added if missing. ", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-13T18:19:18Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 4.89501999994005e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114893354, + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 3, + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.9815411, + 51.25154835 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-7", + "comment": "Adding data with #MapComplete for theme #missing_streets Mechanical edit: if a single CRAB-address is in the building, has the same housenumber and the same name as a nearby street, then addr:street is added if missing. ", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-13T17:55:59Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 1.53619420000176e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114892696, + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 1, + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.9640174, + 51.06922515 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-7", + "comment": "Adding data with #MapComplete for theme #missing_streets Mechanical edit: if a single CRAB-address is in the building, has the same housenumber and the same name as a nearby street, then addr:street is added if missing. ", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-13T17:55:06Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 3.43022999998447e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114892661, + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 1, + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.9465487, + 50.84658625 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-7", + "comment": "Adding data with #MapComplete for theme #missing_streets Mechanical edit: if a single CRAB-address is in the building, has the same housenumber and the same name as a nearby street, then addr:street is added if missing. ", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-13T17:52:31Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 9.52597799993242e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114892587, + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 1, + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.9630999, + 51.05453455 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-7", + "comment": "Adding data with #MapComplete for theme #missing_streets Mechanical edit: if a single CRAB-address is in the building, has the same housenumber and the same name as a nearby street, then addr:street is added if missing. ", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-13T17:51:11Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.000276405521769881, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114892548, + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 5, + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.95754405, + 51.21367995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-7", + "comment": "Adding data with #MapComplete for theme #missing_streets Mechanical edit: if a single CRAB-address is in the building, has the same housenumber and the same name as a nearby street, then addr:street is added if missing. ", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-13T17:50:42Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.000129234243420018, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114892533, + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 2, + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.95515055, + 51.2239014 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-7", + "comment": "Adding data with #MapComplete for theme #missing_streets Mechanical edit: if a single CRAB-address is in the building, has the same housenumber and the same name as a nearby street, then addr:street is added if missing. ", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-13T17:45:27Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 3.09868000001463e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114892374, + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 1, + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.9443435, + 51.0649976 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-7", + "comment": "Adding data with #MapComplete for theme #missing_streets Mechanical edit: if a single CRAB-address is in the building, has the same housenumber and the same name as a nearby street, then addr:street is added if missing. ", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-13T17:42:49Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.00000727663653999986, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114892271, + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 7, + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.9406412, + 51.238218149999994 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-7", + "comment": "Adding data with #MapComplete for theme #missing_streets Mechanical edit: if a single CRAB-address is in the building, has the same housenumber and the same name as a nearby street, then addr:street is added if missing. ", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-13T17:42:32Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 2.40359770003467e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114892258, + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 4, + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.91929955, + 51.23450575 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-7", + "comment": "Adding data with #MapComplete for theme #missing_streets Mechanical edit: if a single CRAB-address is in the building, has the same housenumber and the same name as a nearby street, then addr:street is added if missing. ", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-13T17:32:18Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 2.11045999997011e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114891907, + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 1, + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.9117993999999996, + 50.9688639 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-7", + "comment": "Adding data with #MapComplete for theme #missing_streets Mechanical edit: if a single CRAB-address is in the building, has the same housenumber and the same name as a nearby street, then addr:street is added if missing. ", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-13T17:31:24Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 1.97147800002945e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114891875, + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 1, + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.90520405, + 51.0257216 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-7", + "comment": "Adding data with #MapComplete for theme #missing_streets Mechanical edit: if a single CRAB-address is in the building, has the same housenumber and the same name as a nearby street, then addr:street is added if missing. ", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-13T17:29:58Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 7.17050619994959e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114891829, + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 2, + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.911013, + 51.09343485 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-7", + "comment": "Adding data with #MapComplete for theme #missing_streets Mechanical edit: if a single CRAB-address is in the building, has the same housenumber and the same name as a nearby street, then addr:street is added if missing. ", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-13T17:18:25Z", + "reviewed_features": [], + "create": 0, + "modify": 112, + "delete": 0, + "area": 0.0000220217978500077, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114891462, + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 112, + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.91920525, + 51.23212875 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-7", + "comment": "Adding data with #MapComplete for theme #missing_streets Mechanical edit: if a single CRAB-address is in the building, has the same housenumber and the same name as a nearby street, then addr:street is added if missing. ", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-13T17:18:00Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 3.73854700009793e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114891452, + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 1, + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.89622715, + 50.76805695 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-7", + "comment": "Adding data with #MapComplete for theme #missing_streets Mechanical edit: if a single CRAB-address is in the building, has the same housenumber and the same name as a nearby street, then addr:street is added if missing. ", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-13T17:16:08Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 7.41888000003189e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114891395, + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 2, + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.8913313, + 50.8108484 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "M!dgard", + "uid": "763799", + "editor": "MapComplete 0.2.2a", + "comment": "Adding data with #MapComplete for theme #climbing", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-13T17:01:43Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114890982, + "theme": "climbing", + "language": "en", + "theme-creator": "Christian Neumann " + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2431303, + 51.2060932 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-7", + "comment": "Adding data with #MapComplete for theme #missing_streets Mechanical edit: if a single CRAB-address is in the building, has the same housenumber and the same name as a nearby street, then addr:street is added if missing. ", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-13T16:55:17Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 3.79830500009055e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114890770, + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 1, + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.87568375, + 50.800540850000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-7", + "comment": "Adding data with #MapComplete for theme #missing_streets Mechanical edit: if a single CRAB-address is in the building, has the same housenumber and the same name as a nearby street, then addr:street is added if missing. ", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-13T16:54:25Z", + "reviewed_features": [], + "create": 0, + "modify": 7, + "delete": 0, + "area": 0.00000335268695999711, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114890740, + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 9, + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.8572490000000004, + 50.8184889 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-7", + "comment": "Adding data with #MapComplete for theme #missing_streets Mechanical edit: if a single CRAB-address is in the building, has the same housenumber and the same name as a nearby street, then addr:street is added if missing. ", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-13T16:53:47Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 4.87546000021258e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114890722, + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 1, + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.8645708, + 50.8388177 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-7", + "comment": "Adding data with #MapComplete for theme #missing_streets Mechanical edit: if a single CRAB-address is in the building, has the same housenumber and the same name as a nearby street, then addr:street is added if missing. ", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-13T16:52:56Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.00286897231819, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114890702, + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 3, + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.8813233499999997, + 50.95817545 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-7", + "comment": "Adding data with #MapComplete for theme #missing_streets Mechanical edit: if a single CRAB-address is in the building, has the same housenumber and the same name as a nearby street, then addr:street is added if missing. ", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-13T16:52:22Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 2.76888599989359e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114890683, + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 1, + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.87571745, + 50.9928032 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-7", + "comment": "Adding data with #MapComplete for theme #missing_streets Mechanical edit: if a single CRAB-address is in the building, has the same housenumber and the same name as a nearby street, then addr:street is added if missing. ", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-13T16:51:40Z", + "reviewed_features": [], + "create": 0, + "modify": 47, + "delete": 0, + "area": 0.0000147505350500388, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114890659, + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 47, + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.86218165, + 51.03283395 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-7", + "comment": "Adding data with #MapComplete for theme #missing_streets Mechanical edit: if a single CRAB-address is in the building, has the same housenumber and the same name as a nearby street, then addr:street is added if missing. ", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-13T16:51:11Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 2.87933519998867e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114890643, + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 4, + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.8792063, + 51.08003225 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-7", + "comment": "Adding data with #MapComplete for theme #missing_streets Mechanical edit: if a single CRAB-address is in the building, has the same housenumber and the same name as a nearby street, then addr:street is added if missing. ", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-13T16:49:51Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 3.66478200001177e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114890597, + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 1, + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.8616642, + 51.17661955 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-7", + "comment": "Adding data with #MapComplete for theme #missing_streets Mechanical edit: if a single CRAB-address is in the building, has the same housenumber and the same name as a nearby street, then addr:street is added if missing. ", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-13T16:45:56Z", + "reviewed_features": [], + "create": 0, + "modify": 11, + "delete": 0, + "area": 0.0000048034667999974, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114890458, + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 17, + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.8567302, + 50.818562799999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-7", + "comment": "Adding data with #MapComplete for theme #missing_streets Mechanical edit: if a single CRAB-address is in the building, has the same housenumber and the same name as a nearby street, then addr:street is added if missing. ", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-13T16:45:49Z", + "reviewed_features": [], + "create": 0, + "modify": 6, + "delete": 0, + "area": 0.00000116140463999928, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114890456, + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 6, + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.8572112499999998, + 50.8194558 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-7", + "comment": "Adding data with #MapComplete for theme #missing_streets Mechanical edit: if a single CRAB-address is in the building, has the same housenumber and the same name as a nearby street, then addr:street is added if missing. ", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-13T16:45:21Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 1.6406359999456e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114890447, + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 1, + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.8460392, + 50.85187225 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-7", + "comment": "Adding data with #MapComplete for theme #missing_streets Mechanical edit: if a single CRAB-address is in the building, has the same housenumber and the same name as a nearby street, then addr:street is added if missing. ", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-13T16:42:18Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 9.88110759995744e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114890379, + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 2, + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.8376634000000003, + 51.03532875 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-7", + "comment": "Adding data with #MapComplete for theme #missing_streets Mechanical edit: if a single CRAB-address is in the building, has the same housenumber and the same name as a nearby street, then addr:street is added if missing. ", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-13T16:40:21Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 5.72487500006984e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114890314, + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 1, + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.84753195, + 51.18296735 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-7", + "comment": "Adding data with #MapComplete for theme #missing_streets Mechanical edit: if a single CRAB-address is in the building, has the same housenumber and the same name as a nearby street, then addr:street is added if missing. ", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-13T16:39:19Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.0000130162179000189, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114890282, + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 4, + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.8331345, + 51.03524415 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-7", + "comment": "Adding data with #MapComplete for theme #missing_streets Mechanical edit: if a single CRAB-address is in the building, has the same housenumber and the same name as a nearby street, then addr:street is added if missing. ", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-13T16:36:44Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 2.3478899999992e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114890206, + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 1, + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.8284273, + 50.74514855 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-7", + "comment": "Adding data with #MapComplete for theme #missing_streets Mechanical edit: if a single CRAB-address is in the building, has the same housenumber and the same name as a nearby street, then addr:street is added if missing. ", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-13T16:35:21Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 9.14542199982881e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114890164, + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 1, + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.81989305, + 50.858666 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-7", + "comment": "Adding data with #MapComplete for theme #missing_streets Mechanical edit: if a single CRAB-address is in the building, has the same housenumber and the same name as a nearby street, then addr:street is added if missing. ", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-13T16:35:02Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 6.19997399999009e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114890152, + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 1, + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.821523, + 50.86247445 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-7", + "comment": "Adding data with #MapComplete for theme #missing_streets Mechanical edit: if a single CRAB-address is in the building, has the same housenumber and the same name as a nearby street, then addr:street is added if missing. ", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-13T16:31:22Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 1.3169155999905e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114890033, + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 1, + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.8077337, + 51.182448550000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-7", + "comment": "Adding data with #MapComplete for theme #missing_streets Mechanical edit: if a single CRAB-address is in the building, has the same housenumber and the same name as a nearby street, then addr:street is added if missing. ", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-13T16:21:27Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 5.01511499999024e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114889712, + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 1, + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.77407235, + 50.85792405 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-7", + "comment": "Adding data with #MapComplete for theme #missing_streets Mechanical edit: if a single CRAB-address is in the building, has the same housenumber and the same name as a nearby street, then addr:street is added if missing. ", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-13T16:14:40Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.0000266860034800029, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114889498, + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 2, + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.7544646, + 50.794692100000006 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-7", + "comment": "Adding data with #MapComplete for theme #missing_streets Mechanical edit: if a single CRAB-address is in the building, has the same housenumber and the same name as a nearby street, then addr:street is added if missing. ", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-13T16:10:53Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 1.92659599989518e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114889360, + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 1, + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.7653527999999996, + 50.9972973 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-7", + "comment": "Adding data with #MapComplete for theme #missing_streets Mechanical edit: if a single CRAB-address is in the building, has the same housenumber and the same name as a nearby street, then addr:street is added if missing. ", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-13T16:03:57Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 3.18518199995418e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114889145, + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 1, + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.7357876, + 50.967083450000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-7", + "comment": "Adding data with #MapComplete for theme #missing_streets Mechanical edit: if a single CRAB-address is in the building, has the same housenumber and the same name as a nearby street, then addr:street is added if missing. ", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-13T16:01:31Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 5.86679200002233e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114889054, + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 1, + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.733403, + 51.1459675 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-7", + "comment": "Adding data with #MapComplete for theme #missing_streets Mechanical edit: if a single CRAB-address is in the building, has the same housenumber and the same name as a nearby street, then addr:street is added if missing. ", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-13T15:58:53Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 2.98079400004521e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114888949, + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 1, + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.72190695, + 50.894937999999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-7", + "comment": "Adding data with #MapComplete for theme #missing_streets Mechanical edit: if a single CRAB-address is in the building, has the same housenumber and the same name as a nearby street, then addr:street is added if missing. ", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-13T15:54:58Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 0.00000190184664998861, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114888813, + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 5, + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.70592935, + 51.14366085 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-7", + "comment": "Adding data with #MapComplete for theme #missing_streets Mechanical edit: if a single CRAB-address is in the building, has the same housenumber and the same name as a nearby street, then addr:street is added if missing. ", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-13T15:42:46Z", + "reviewed_features": [], + "create": 0, + "modify": 10, + "delete": 0, + "area": 6.68560019998806e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114888383, + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 10, + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.7014017, + 51.10040015 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-7", + "comment": "Adding data with #MapComplete for theme #missing_streets Mechanical edit: if a single CRAB-address is in the building, has the same housenumber and the same name as a nearby street, then addr:street is added if missing. ", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-13T15:00:54Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 5.73403000008142e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114887134, + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 1, + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.60935465, + 51.110371400000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-13T14:44:42Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114886637, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "add-image": 1, + "change_over_5000m": 1, + "change_within_25m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.9032769, + 42.5265924 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.13.0-alpha-6", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-13T13:30:35Z", + "reviewed_features": [], + "create": 69, + "modify": 0, + "delete": 0, + "area": 0.00000136798365000321, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114884146, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "grb", + "import": 9, + "imagery": "AGIVFlandersGRB", + "language": "nl", + "change_over_5000m": 9 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.39744955, + 50.79217665 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-6", + "comment": "Adding data with #MapComplete for theme #missing_streets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-13T12:49:30Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 5.95225800004563e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114882795, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "missing_streets", + "answer": 1, + "imagery": "osm", + "language": "nl", + "change_over_5000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.0487266, + 50.98323665 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-13T10:13:13Z", + "reviewed_features": [], + "create": 5, + "modify": 14, + "delete": 0, + "area": 0.00008054628386999, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114876730, + "host": "mapcomplete.osm.be", + "theme": "benches", + "answer": 23, + "imagery": "AGIV", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.29704665, + 50.86105915 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-6", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-13T02:19:24Z", + "reviewed_features": [], + "create": 483, + "modify": 179, + "delete": 0, + "area": 0.00001171097092001, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114864189, + "host": "pietervdvn.github.io", + "move": 150, + "path": "mc/develop/", + "theme": "grb", + "answer": 1, + "import": 60, + "imagery": "AGIV", + "language": "nl", + "conflation": 58, + "change_over_5000m": 61 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.8556622, + 50.95504185 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-6", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-13T02:09:45Z", + "reviewed_features": [], + "create": 0, + "modify": 12, + "delete": 0, + "area": 0.00000149668284000585, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114864085, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "grb", + "answer": 12, + "imagery": "AGIV", + "language": "nl", + "change_over_5000m": 12 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.85438645, + 50.954291999999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-6", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-13T02:03:25Z", + "reviewed_features": [], + "create": 380, + "modify": 0, + "delete": 0, + "area": 0.00000363397984001126, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114864021, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "grb", + "answer": 1, + "import": 51, + "imagery": "osm", + "language": "nl", + "change_over_5000m": 52 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.8545119, + 50.9544504 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-6", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-13T02:03:14Z", + "reviewed_features": [], + "create": 83, + "modify": 5, + "delete": 0, + "area": 9.84166510000557e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114864018, + "host": "pietervdvn.github.io", + "move": 4, + "path": "mc/develop/", + "theme": "grb", + "import": 10, + "imagery": "osm", + "language": "nl", + "conflation": 2, + "change_over_5000m": 10 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.8552227500000003, + 50.95415505 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 4, + "name": "mass modification" + } + ], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-7", + "comment": "Adding data with #MapComplete for theme #missing_streets Mechanical edit: if a single CRAB-address is in the building, has the same housenumber and the same name as a nearby street, then addr:street is added if missing.", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-13T01:02:35Z", + "reviewed_features": [], + "create": 0, + "modify": 208, + "delete": 0, + "area": 0.0000887451407400591, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114863330, + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 208, + "language": "nl", + "change_over_5000m": 208 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4520755, + 50.863002550000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #artwork", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-12T19:48:58Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114857522, + "host": "mapcomplete.osm.be", + "theme": "artwork", + "imagery": "osm", + "language": "nl", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.4100791, + 51.1714215 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #nature", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-12T19:12:23Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.00000918610892998763, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114856487, + "host": "mapcomplete.osm.be", + "theme": "nature", + "answer": 4, + "imagery": "osm", + "language": "nl", + "add-image": 2, + "change_over_5000m": 6 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.40056595, + 51.17098695 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Dyrmann", + "uid": "51901", + "editor": "MapComplete 0.13.0-alpha-6", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-12T15:58:38Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114851028, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "charging_stations", + "answer": 3, + "imagery": "CartoDB.Voyager", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 10.1920735, + 56.171876 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-12T14:09:25Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114847633, + "host": "mapcomplete.osm.be", + "theme": "aed", + "answer": 4, + "imagery": "osm", + "language": "en", + "add-image": 1, + "change_within_25m": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1353362, + 43.9823406 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 4, + "name": "mass modification" + } + ], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-6", + "comment": "Adding data with #MapComplete for theme #missing_streets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-12T01:45:58Z", + "reviewed_features": [], + "create": 0, + "modify": 321, + "delete": 0, + "area": 0.00185980248371986, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114834669, + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 372, + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2447529500000005, + 50.804990200000006 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Wim L", + "uid": "223681", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-11T23:14:44Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114833158, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "change_over_5000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -122.2893615, + 47.684808 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "InsertUser", + "uid": "89098", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-11T18:03:44Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114826322, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "answer": 1, + "imagery": "HDM_HOT", + "language": "en", + "change_over_5000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -78.6969191, + 26.5175064 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-6", + "comment": "Adding data with #MapComplete for theme #entrances", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-11T15:52:16Z", + "reviewed_features": [], + "create": 5, + "modify": 3, + "delete": 0, + "area": 0.000119056918960018, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114822385, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "entrances", + "answer": 5, + "imagery": "osm", + "language": "en", + "change_within_25m": 9 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3213312999999998, + 50.9938269 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-6", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-11T15:50:37Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 6.84569600016655e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114822347, + "host": "pietervdvn.github.io", + "move": 1, + "path": "mc/develop/", + "theme": "cyclofix", + "answer": 1, + "imagery": "CartoDB.Voyager", + "language": "en", + "change_within_25m": 2, + "move:node/7896638970": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3128835, + 50.99736815 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-6", + "comment": "Adding data with #MapComplete for theme #openwindpowermap", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-11T14:51:39Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114820618, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "openwindpowermap", + "imagery": "AGIV", + "language": "en", + "add-image": 1, + "change_over_5000m": 1, + "change_within_100m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3350238, + 51.0235409 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-6", + "comment": "Adding data with #MapComplete for theme #waste_basket", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-11T13:55:34Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114818891, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "waste_basket", + "answer": 1, + "imagery": "osm", + "language": "en", + "change_over_5000m": 1, + "change_within_25m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3287689, + 51.0763461 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-6", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-11T12:42:23Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114816694, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "food", + "answer": 1, + "imagery": "osm", + "language": "en", + "change_over_5000m": 1, + "change_within_50m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.233462, + 51.1778524 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-11T11:42:25Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114814883, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "answer": 4, + "imagery": "CartoDB.Voyager", + "language": "en", + "add-image": 1, + "change_within_25m": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.9930374, + 47.6965847 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "habi", + "uid": "15671", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-11T09:45:43Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114811413, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "answer": 2, + "imagery": "CartoDB.Voyager", + "language": "en", + "change_within_1000m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.4171556, + 46.9289084 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "quelgir", + "uid": "13293058", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-11T09:17:57Z", + "reviewed_features": [], + "create": 0, + "modify": 14, + "delete": 0, + "area": 0.000322427206400074, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114810692, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 24, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.8110996999999998, + 42.239292500000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "user4816003805", + "uid": "4186070", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-11T03:35:37Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114805192, + "host": "mapcomplete.osm.be", + "theme": "food", + "answer": 4, + "imagery": "osm", + "language": "en", + "change_within_25m": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -122.4118363, + 37.7889234 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-6", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-11T01:23:42Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 0.00000177136537999288, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114803817, + "host": "127.0.0.1:1234", + "theme": "grb", + "answer": 5, + "imagery": "AGIVFlandersGRB", + "language": "en", + "change_within_5000m": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2156905, + 51.205270049999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-11T01:00:18Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114803562, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 5, + "imagery": "AGIV", + "language": "en", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2963517, + 50.8532713 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-11T00:57:40Z", + "reviewed_features": [], + "create": 1, + "modify": 5, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114803527, + "host": "mapcomplete.osm.be", + "theme": "benches", + "answer": 6, + "imagery": "UrbISOrtho", + "language": "en", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2966011, + 50.8531917 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-10T23:22:26Z", + "reviewed_features": [], + "create": 3, + "modify": 10, + "delete": 0, + "area": 1.36673200010553e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114802084, + "host": "mapcomplete.osm.be", + "theme": "benches", + "answer": 14, + "imagery": "UrbISOrtho", + "language": "en", + "add-image": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.29378745, + 50.8695673 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "yopaseopor", + "uid": "500572", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #https://osm-catalan.github.io/osmllengcat/src/json/osmllengcat.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-10T21:19:23Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 2.0322518000054e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114799387, + "host": "mapcomplete.osm.be", + "theme": "https://osm-catalan.github.io/osmllengcat/src/json/osmllengcat.json", + "answer": 1, + "imagery": "osm", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.7209758, + 41.22000935 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-9328103323", + "name": "Black Box Boulder Shop", + "osm_id": 9328103323, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "shop": "climbing_gear" + } + } + ], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-5", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-10T20:05:20Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114797546, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "shops", + "answer": 2, + "imagery": "osm", + "language": "en", + "add-image": 1, + "change_over_5000m": 1, + "change_within_100m": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2450733, + 50.8151191 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-5", + "comment": "Adding data with #MapComplete for theme #climbing", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-10T20:00:45Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114797432, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "climbing", + "answer": 7, + "imagery": "osm", + "language": "en", + "change_within_100m": 7 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2449211, + 50.8151578 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-5", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-10T19:59:00Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114797398, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "bookcases", + "answer": 5, + "imagery": "osm", + "language": "en", + "add-image": 1, + "change_over_5000m": 1, + "change_within_100m": 6 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2450035, + 50.8151903 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.13.0-alpha-5", + "comment": "Adding data with #MapComplete for theme #fritures", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-10T19:45:58Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 2.06777799993273e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114797118, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "fritures", + "answer": 4, + "imagery": "osm", + "language": "en", + "change_over_5000m": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.6083343, + 50.18854425 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-10T18:14:58Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114794621, + "host": "mapcomplete.osm.be", + "theme": "food", + "imagery": "osm", + "language": "en", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3836126, + 50.8493697 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-5", + "comment": "Adding data with #MapComplete for theme #entrances", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-10T18:13:08Z", + "reviewed_features": [], + "create": 3, + "modify": 4, + "delete": 0, + "area": 3.97567999998898e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114794566, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "entrances", + "answer": 5, + "imagery": "osm", + "language": "en", + "change_within_25m": 2, + "change_within_50m": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2643748, + 50.8248173 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-5", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-10T17:50:26Z", + "reviewed_features": [], + "create": 2, + "modify": 0, + "delete": 0, + "area": 1.33433299999017e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114793785, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "food", + "answer": 2, + "imagery": "osm", + "language": "en", + "change_over_5000m": 2, + "change_within_25m": 1, + "change_within_50m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2646681500000003, + 50.825251449999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #artwork", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-10T17:07:32Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114792447, + "host": "mapcomplete.osm.be", + "theme": "artwork", + "answer": 1, + "imagery": "osm", + "language": "nl", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3630019, + 50.8508295 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-10T17:02:07Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 2.24540100010369e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114792295, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "nl", + "add-image": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.375542749999999, + 50.84853605 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-10T16:55:11Z", + "reviewed_features": [], + "create": 0, + "modify": 6, + "delete": 0, + "area": 3.34110799987775e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114792106, + "host": "mapcomplete.osm.be", + "theme": "food", + "answer": 4, + "imagery": "osm", + "language": "nl", + "add-image": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3759613, + 50.84849105 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-10T16:53:12Z", + "reviewed_features": [], + "create": 2, + "modify": 5, + "delete": 0, + "area": 0.0000112091685000042, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114792047, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 9, + "imagery": "osm", + "language": "nl", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3756607, + 50.856450949999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.12.12", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-10T12:32:52Z", + "reviewed_features": [], + "create": 2, + "modify": 0, + "delete": 0, + "area": 5.19306479995537e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114783965, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "answer": 2, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.377451000000001, + 50.678606349999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "WinstonSmith", + "uid": "36030", + "editor": "MapComplete 0.12.12", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-10T12:14:40Z", + "reviewed_features": [], + "create": 2, + "modify": 0, + "delete": 0, + "area": 0.00520072098230995, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114783308, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 10, + "imagery": "CartoDB.Voyager", + "language": "en", + "change_over_5000m": 2, + "change_within_25m": 10 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 10.83032395, + 44.57368045 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Albin Gasparetto", + "uid": "1227542", + "editor": "MapComplete 0.12.12", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-10T09:23:37Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114776379, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "answer": 3, + "imagery": "osm", + "language": "en", + "change_over_5000m": 1, + "change_within_25m": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.6066459, + 42.9660936 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Tim Couwelier", + "uid": "7246683", + "editor": "MapComplete 0.13.0-alpha-4", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-10T08:08:50Z", + "reviewed_features": [], + "create": 788, + "modify": 194, + "delete": 0, + "area": 0.0000653223552800196, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114773708, + "host": "pietervdvn.github.io", + "move": 153, + "path": "mc/develop/", + "theme": "grb", + "answer": 1, + "import": 94, + "imagery": "AGIVFlandersGRB", + "language": "nl", + "conflation": 54 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3033237, + 50.955348099999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-4", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-10T02:19:37Z", + "reviewed_features": [], + "create": 33, + "modify": 7, + "delete": 0, + "area": 0.023482399627838, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114765605, + "host": "127.0.0.1:1234", + "move": 6, + "theme": "grb", + "import": 5, + "imagery": "AGIV", + "language": "en", + "conflation": 2, + "change_over_5000m": 2, + "change_within_500m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.4159606, + 51.1874824 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "francians", + "uid": "9006927", + "editor": "MapComplete 0.12.12", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-09T20:16:21Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.0000116689406400011, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114758399, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 6, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.5489657, + 44.392623650000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jcn706", + "uid": "351940", + "editor": "MapComplete 0.12.12", + "comment": "Adding data with #MapComplete for theme #campersite", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-09T17:04:24Z", + "reviewed_features": [], + "create": 0, + "modify": 7, + "delete": 0, + "area": 5.04623540002071e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114752467, + "host": "mapcomplete.osm.be", + "theme": "campersite", + "answer": 3, + "imagery": "osm", + "language": "en", + "add-image": 6, + "change_within_50m": 9 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.62672805, + 40.8727344 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Tim Couwelier", + "uid": "7246683", + "editor": "MapComplete 0.13.0-alpha-4", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-09T12:58:52Z", + "reviewed_features": [], + "create": 379, + "modify": 0, + "delete": 0, + "area": 0.00000897473543998938, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114743466, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "grb", + "import": 37, + "imagery": "AGIVFlandersGRB", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.30435575, + 50.9482262 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "francians", + "uid": "9006927", + "editor": "MapComplete 0.12.12", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-09T06:11:58Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.00000234430581000958, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114727215, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 2, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.55230205, + 44.39510285 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "user4816003805", + "uid": "4186070", + "editor": "MapComplete 0.12.12", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-09T04:09:02Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114724239, + "host": "mapcomplete.osm.be", + "theme": "food", + "answer": 3, + "imagery": "osm", + "language": "en", + "change_within_25m": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -122.41323514999999, + 37.7863082 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "user4816003805", + "uid": "4186070", + "editor": "MapComplete 0.12.12", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-09T03:37:23Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114723630, + "host": "mapcomplete.osm.be", + "theme": "shops", + "answer": 1, + "imagery": "osm", + "language": "en", + "change_over_5000m": 1, + "change_within_25m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -122.4145335, + 37.7864382 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "user4816003805", + "uid": "4186070", + "editor": "MapComplete 0.12.12", + "comment": "Adding data with #MapComplete for theme #waste_basket", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-08T23:31:55Z", + "reviewed_features": [], + "create": 4, + "modify": 0, + "delete": 0, + "area": 6.77655000004623e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114720848, + "host": "mapcomplete.osm.be", + "move": 2, + "theme": "waste_basket", + "answer": 3, + "imagery": "osm", + "language": "en", + "move:node/-1": "improve_accuracy", + "move:node/-2": "improve_accuracy", + "change_over_5000m": 4, + "change_within_25m": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -122.4045166, + 37.78955165 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "user4816003805", + "uid": "4186070", + "editor": "MapComplete 0.12.12", + "comment": "Adding data with #MapComplete for theme #waste_basket", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-08T22:40:51Z", + "reviewed_features": [], + "create": 5, + "modify": 2, + "delete": 0, + "area": 0.00000306336059997102, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114719850, + "host": "mapcomplete.osm.be", + "move": 2, + "theme": "waste_basket", + "answer": 5, + "imagery": "osm", + "language": "en", + "move:node/-2": "improve_accuracy", + "change_over_5000m": 5, + "change_within_25m": 6, + "change_within_100m": 1, + "move:node/9322304462": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -122.40596875, + 37.7886019 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-3", + "comment": "Adding data with #MapComplete for theme #entrances", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-08T22:08:19Z", + "reviewed_features": [], + "create": 2, + "modify": 6, + "delete": 0, + "area": 1.88307699998538e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114719105, + "host": "127.0.0.1:1234", + "theme": "entrances", + "answer": 5, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.21642895, + 51.1967543 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "francians", + "uid": "9006927", + "editor": "MapComplete 0.12.12", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-08T19:31:04Z", + "reviewed_features": [], + "create": 0, + "modify": 38, + "delete": 0, + "area": 0.000675503872680044, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114714783, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 52, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.54487215, + 44.384804200000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "bollyboll", + "uid": "12120321", + "editor": "MapComplete 0.12.12", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-08T18:57:23Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114713914, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "imagery": "HDM_HOT", + "language": "en", + "change_over_5000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.7964639, + 48.0102409 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Stinus_Clasius", + "uid": "1086503", + "editor": "MapComplete 0.13.0-alpha-3", + "comment": "Adding data with #MapComplete for theme #https://gist.githubusercontent.com/joostschouppe/fbf0ae3c5bc1046da65c024075addef0/raw/5f7c3524f5456e00b233148a902c98242b9ff5ed/theme_aed_spar.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-08T16:20:21Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114709693, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "https://gist.githubusercontent.com/joostschouppe/fbf0ae3c5bc1046da65c024075addef0/raw/5f7c3524f5456e00b233148a902c98242b9ff5ed/theme_aed_spar.json", + "answer": 1, + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.684883, + 51.1538155 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.13.0-alpha-3", + "comment": "Adding data with #MapComplete for theme #https://gist.githubusercontent.com/joostschouppe/fbf0ae3c5bc1046da65c024075addef0/raw/5f7c3524f5456e00b233148a902c98242b9ff5ed/theme_aed_spar.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-08T15:05:44Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114707253, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "https://gist.githubusercontent.com/joostschouppe/fbf0ae3c5bc1046da65c024075addef0/raw/5f7c3524f5456e00b233148a902c98242b9ff5ed/theme_aed_spar.json", + "answer": 3, + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3267373, + 50.7349897 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-3", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-08T14:26:22Z", + "reviewed_features": [], + "create": 23, + "modify": 24, + "delete": 0, + "area": 0.00000349362368000549, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114705804, + "host": "pietervdvn.github.io", + "move": 21, + "path": "mc/develop/", + "theme": "grb", + "import": 3, + "imagery": "osm", + "language": "en", + "conflation": 6, + "change_over_5000m": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.4608213, + 51.088403549999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "francians", + "uid": "9006927", + "editor": "MapComplete 0.12.12", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-08T12:34:10Z", + "reviewed_features": [], + "create": 0, + "modify": 52, + "delete": 0, + "area": 0.0000656424186000528, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114701458, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 74, + "imagery": "osm", + "language": "en", + "change_over_5000m": 8, + "change_within_5000m": 45 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.5506205, + 44.3914574 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "yopaseopor", + "uid": "500572", + "editor": "MapComplete 0.12.12", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/yopaseopor/mcquests/master/restaurants.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-08T12:28:53Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.00282943491635993, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114701243, + "host": "mapcomplete.osm.be", + "theme": "gh://yopaseopor/mcquests/master/restaurants.json", + "answer": 3, + "imagery": "osm", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.50888995, + 41.193620100000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-3", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-08T12:19:07Z", + "reviewed_features": [], + "create": 49, + "modify": 116, + "delete": 0, + "area": 0.00000283605322000357, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114700843, + "host": "pietervdvn.github.io", + "move": 98, + "path": "mc/develop/", + "theme": "grb", + "answer": 2, + "import": 7, + "imagery": "AGIVFlandersGRB", + "language": "nl", + "conflation": 32, + "change_within_50m": 2, + "change_within_100m": 5, + "change_within_500m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.4642079, + 51.088233450000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-3", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-08T11:44:10Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114699400, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "cyclofix", + "answer": 3, + "imagery": "CartoDB.Voyager", + "language": "en", + "add-image": 1, + "change_within_25m": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7257129, + 51.040663 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "bollyboll", + "uid": "12120321", + "editor": "MapComplete 0.12.12", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-08T07:10:18Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114688415, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "imagery": "HDM_HOT", + "language": "en", + "change_over_5000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.8051636, + 47.991241 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "francians", + "uid": "9006927", + "editor": "MapComplete 0.12.12", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-08T07:02:44Z", + "reviewed_features": [], + "create": 0, + "modify": 13, + "delete": 0, + "area": 0.000193245979400004, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114688133, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 21, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.540016400000001, + 44.395032799999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "user4816003805", + "uid": "4186070", + "editor": "MapComplete 0.12.12", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-07T23:07:23Z", + "reviewed_features": [], + "create": 4, + "modify": 3, + "delete": 0, + "area": 1.52320299999007e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114679656, + "host": "mapcomplete.osm.be", + "theme": "food", + "answer": 8, + "imagery": "osm", + "language": "en", + "change_over_5000m": 4, + "change_within_25m": 2, + "change_within_50m": 6 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -122.40617710000001, + 37.78447855 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "bollyboll", + "uid": "12120321", + "editor": "MapComplete 0.12.12", + "comment": "Adding data with #MapComplete for theme #waste_basket", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-07T19:04:38Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114673318, + "host": "mapcomplete.osm.be", + "theme": "waste_basket", + "answer": 2, + "imagery": "osm", + "language": "en", + "change_over_5000m": 1, + "change_within_25m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.7886385, + 48.0092351 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-2", + "comment": "Adding data with #MapComplete for theme #postal_codes", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-07T15:43:09Z", + "reviewed_features": [], + "create": 0, + "modify": 13, + "delete": 0, + "area": 0.200009252435851, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114666146, + "host": "127.0.0.1:1234", + "theme": "postal_codes", + "answer": 16, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.2580924499999995, + 50.54429625 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Mitch85302", + "uid": "14030677", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-07T13:42:44Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114661934, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 14.499177, + 51.8618958 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Stinus_Clasius", + "uid": "1086503", + "editor": "MapComplete 0.13.0-alpha-2", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-07T11:05:43Z", + "reviewed_features": [], + "create": 146, + "modify": 2, + "delete": 0, + "area": 0.00000170062310000475, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114655773, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "grb", + "import": 20, + "imagery": "AGIVFlandersGRB", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.9935139, + 50.77362505 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Erin76", + "uid": "8982454", + "editor": "MapComplete 0.12.12", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-07T10:41:45Z", + "reviewed_features": [], + "create": 0, + "modify": 17, + "delete": 0, + "area": 0.000551886104799865, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114654575, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 31, + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2404711500000003, + 50.8905183 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "gtaro", + "uid": "2973154", + "editor": "MapComplete 0.12.12", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-07T08:27:20Z", + "reviewed_features": [], + "create": 2, + "modify": 4, + "delete": 0, + "area": 0.00000723092739000582, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114648896, + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "hailhydrant", + "answer": 4, + "imagery": "HDM_HOT", + "language": "fr", + "move:node/9233019525": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.03390845, + 49.01936885 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "gtaro", + "uid": "2973154", + "editor": "MapComplete 0.12.12", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-07T08:27:20Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114648895, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "answer": 1, + "imagery": "HDM_HOT", + "language": "fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0399435, + 49.0242565 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "bollyboll", + "uid": "12120321", + "editor": "MapComplete 0.12.12", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-07T07:35:48Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114647202, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "answer": 1, + "imagery": "HDM_HOT", + "language": "en", + "change_over_5000m": 1, + "change_within_25m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.7924795, + 48.0040149 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "francians", + "uid": "9006927", + "editor": "MapComplete 0.12.12", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-07T06:02:38Z", + "reviewed_features": [], + "create": 0, + "modify": 7, + "delete": 0, + "area": 0.0000529679967599977, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114644262, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 11, + "imagery": "osm", + "language": "en", + "change_within_5000m": 11 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.5487328, + 44.393436 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.13.0-alpha-1", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-06T17:42:20Z", + "reviewed_features": [], + "create": 2, + "modify": 16, + "delete": 0, + "area": 0.00000910121617997985, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114628069, + "host": "pietervdvn.github.io", + "move": 12, + "path": "mc/develop/", + "theme": "grb", + "answer": 1, + "imagery": "AGIVFlandersGRB", + "language": "en", + "conflation": 6 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.4516546000000004, + 51.09826005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Tim Couwelier", + "uid": "7246683", + "editor": "MapComplete 0.13.0-alpha-1", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-06T15:10:02Z", + "reviewed_features": [], + "create": 560, + "modify": 14, + "delete": 0, + "area": 0.0000109207087599996, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114622793, + "host": "pietervdvn.github.io", + "move": 5, + "path": "mc/develop/", + "theme": "grb", + "import": 68, + "imagery": "AGIVFlandersGRB", + "language": "nl", + "conflation": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3049486, + 50.949857 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.12.12", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-06T13:15:33Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114618802, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 4, + "imagery": "CartoDB.Voyager", + "language": "en", + "change_over_5000m": 1, + "change_within_25m": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.1234206, + 50.0803254 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Tim Couwelier", + "uid": "7246683", + "editor": "MapComplete 0.13.0-alpha-1", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-06T13:09:38Z", + "reviewed_features": [], + "create": 288, + "modify": 6, + "delete": 0, + "area": 0.0000202199914800291, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114618588, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "grb", + "import": 39, + "imagery": "AGIVFlandersGRB", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.302429, + 50.9526557 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.12.12", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-06T13:01:23Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114618358, + "host": "mapcomplete.osm.be", + "theme": "aed", + "answer": 6, + "imagery": "osm", + "language": "en", + "change_over_5000m": 1, + "change_within_25m": 6 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.1234347, + 50.0803731 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Tim Couwelier", + "uid": "7246683", + "editor": "MapComplete 0.13.0-alpha", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-06T12:43:10Z", + "reviewed_features": [], + "create": 660, + "modify": 27, + "delete": 0, + "area": 0.000324264687119882, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114617692, + "host": "pietervdvn.github.io", + "move": 8, + "path": "mc/develop/", + "theme": "grb", + "answer": 1, + "import": 90, + "imagery": "AGIVFlandersGRB", + "language": "nl", + "conflation": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2901815, + 50.947999249999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.12.12", + "comment": "Adding data with #MapComplete for theme #campersite", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-06T12:36:11Z", + "reviewed_features": [], + "create": 0, + "modify": 6, + "delete": 0, + "area": 2.86111350000478e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114617475, + "host": "mapcomplete.osm.be", + "theme": "campersite", + "answer": 6, + "imagery": "osm", + "language": "en", + "add-image": 4, + "change_within_500m": 10 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.16365205, + 50.008690650000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Tim Couwelier", + "uid": "7246683", + "editor": "MapComplete 0.13.0-alpha", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-06T12:13:02Z", + "reviewed_features": [], + "create": 179, + "modify": 259, + "delete": 0, + "area": 0.00689458711859977, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114616724, + "host": "pietervdvn.github.io", + "move": 235, + "path": "mc/develop/", + "theme": "grb", + "answer": 3, + "import": 19, + "imagery": "AGIVFlandersGRB", + "language": "nl", + "conflation": 72 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2013338, + 50.954802599999994 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Stinus_Clasius", + "uid": "1086503", + "editor": "MapComplete 0.13.0-alpha", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-06T12:11:10Z", + "reviewed_features": [], + "create": 53, + "modify": 19, + "delete": 0, + "area": 0.0951544407651794, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114616649, + "host": "pietervdvn.github.io", + "move": 16, + "path": "mc/develop/", + "theme": "grb", + "import": 5, + "imagery": "osm", + "language": "en", + "conflation": 6 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.8705374, + 50.96773885 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Stinus_Clasius", + "uid": "1086503", + "editor": "MapComplete 0.13.0-alpha", + "comment": "Adding data with #MapComplete for theme #entrances", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-06T11:22:52Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114614741, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "entrances", + "answer": 1, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.0399, + 50.8752695 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-06T11:13:54Z", + "reviewed_features": [], + "create": 392, + "modify": 45, + "delete": 0, + "area": 0.0000135377499899705, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114614393, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "grb", + "import": 73, + "imagery": "AGIVFlandersGRB", + "language": "en", + "change_over_5000m": 22 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.61406525, + 51.15668805 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-06T11:12:43Z", + "reviewed_features": [], + "create": 48, + "modify": 0, + "delete": 0, + "area": 2.66445499998795e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114614354, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "grb", + "import": 10, + "imagery": "AGIVFlandersGRB", + "language": "en", + "change_over_5000m": 10 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.6156198, + 51.15523685 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Erin76", + "uid": "8982454", + "editor": "MapComplete 0.12.12", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-06T10:22:05Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 0.000052629609440057, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114612439, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 6, + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2370777000000004, + 50.8891232 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.12.12", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-06T08:56:04Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114609219, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "answer": 6, + "imagery": "osm", + "language": "en", + "change_over_5000m": 1, + "change_within_25m": 6 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.7266788, + 49.8358542 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "bollyboll", + "uid": "12120321", + "editor": "MapComplete 0.12.12", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-06T07:38:06Z", + "reviewed_features": [], + "create": 10, + "modify": 0, + "delete": 0, + "area": 0.000185232875899944, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114606422, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "answer": 3, + "imagery": "HDM_HOT", + "language": "en", + "change_over_5000m": 10, + "change_within_25m": 1, + "change_within_50m": 1, + "change_within_100m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.80950615, + 48.018314700000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-06T01:42:54Z", + "reviewed_features": [], + "create": 319, + "modify": 213, + "delete": 0, + "area": 0.00000985261466999628, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114599635, + "host": "127.0.0.1:1234", + "move": 88, + "theme": "grb", + "answer": 1, + "import": 58, + "imagery": "osm", + "language": "nl", + "conflation": 28 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.24783355, + 50.837065249999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-06T01:08:34Z", + "reviewed_features": [], + "create": 169, + "modify": 156, + "delete": 0, + "area": 0.00000309088618000064, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114599169, + "host": "127.0.0.1:1234", + "move": 136, + "theme": "grb", + "answer": 3, + "import": 18, + "imagery": "AGIVFlandersGRB", + "language": "nl", + "conflation": 30 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2459167, + 50.83720434999999 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "PlayzinhoAgro", + "uid": "10460642", + "editor": "MapComplete 0.12.12", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-05T23:16:34Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.000336879919900044, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114597644, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "answer": 6, + "imagery": "HDM_HOT", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -42.822135349999996, + -5.094613300000001 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "PlayzinhoAgro", + "uid": "10460642", + "editor": "MapComplete 0.12.12", + "comment": "Adding data with #MapComplete for theme #street_lighting", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-05T23:11:10Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 0.000757466822670131, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114597538, + "host": "mapcomplete.osm.be", + "theme": "street_lighting", + "answer": 5, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -42.82075935, + -5.09428325 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "CoyKoi", + "uid": "3757297", + "editor": "MapComplete 0.12.12", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-05T23:10:25Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.000016833735390008, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114597502, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 9, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 175.14599845, + -36.84398315 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "PlayzinhoAgro", + "uid": "10460642", + "editor": "MapComplete 0.12.12", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-05T23:06:33Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.0000139993997400014, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114597432, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 6, + "imagery": "CartoDB.Voyager", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -42.807735300000004, + -5.086107050000001 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-05T22:01:55Z", + "reviewed_features": [], + "create": 16, + "modify": 84, + "delete": 0, + "area": 0.00000120281996999916, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114596214, + "host": "127.0.0.1:1234", + "move": 69, + "theme": "grb", + "answer": 12, + "import": 2, + "imagery": "AGIV", + "language": "nl", + "conflation": 22 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.24370265, + 50.83731325 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-05T19:56:52Z", + "reviewed_features": [], + "create": 99, + "modify": 6, + "delete": 0, + "area": 0.00000743410639998839, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114593204, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "grb", + "import": 12, + "imagery": "AGIVFlandersGRB", + "language": "nl", + "change_over_5000m": 12 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.6155095, + 51.156072550000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-05T17:56:33Z", + "reviewed_features": [], + "create": 196, + "modify": 0, + "delete": 0, + "area": 7.90746169997521e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114589925, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "grb", + "import": 24, + "imagery": "osm", + "language": "nl", + "change_over_5000m": 24 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.61678675, + 51.15803285 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-05T17:51:49Z", + "reviewed_features": [], + "create": 87, + "modify": 1, + "delete": 0, + "area": 9.07566420004756e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114589804, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "grb", + "import": 15, + "imagery": "AGIV", + "language": "nl", + "change_over_5000m": 15 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.6161193999999997, + 51.15743105 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-05T17:48:22Z", + "reviewed_features": [], + "create": 187, + "modify": 0, + "delete": 0, + "area": 7.85558129997716e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114589695, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "grb", + "import": 28, + "imagery": "AGIV", + "language": "nl", + "change_over_5000m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.61605025, + 51.15733305 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-05T17:46:31Z", + "reviewed_features": [], + "create": 103, + "modify": 0, + "delete": 0, + "area": 3.93078420000171e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114589631, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "grb", + "import": 12, + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.6160033, + 51.156672349999994 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.12.12", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-05T14:10:04Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114583434, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "answer": 2, + "imagery": "HDM_HOT", + "language": "en", + "change_over_5000m": 1, + "change_within_25m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.7284616, + 49.8351664 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-05T12:54:27Z", + "reviewed_features": [], + "create": 3, + "modify": 23, + "delete": 0, + "area": 1.21993390002413e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114581092, + "host": "pietervdvn.github.io", + "move": 16, + "path": "mc/develop/", + "theme": "grb", + "answer": 4, + "import": 1, + "imagery": "AGIV", + "language": "nl", + "conflation": 4, + "change_over_5000m": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.24383875, + 50.83723315 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.12.12", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-05T12:41:31Z", + "reviewed_features": [], + "create": 2, + "modify": 6, + "delete": 0, + "area": 0.00000270546564000509, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114580691, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "answer": 12, + "imagery": "osm", + "language": "nl", + "change_over_5000m": 2, + "change_within_50m": 6, + "change_within_500m": 6 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.7281362, + 49.83476485 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.12.12", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-05T03:57:06Z", + "reviewed_features": [], + "create": 185, + "modify": 208, + "delete": 0, + "area": 0.00978357990271988, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114571409, + "host": "127.0.0.1:1234", + "move": 170, + "theme": "grb", + "answer": 29, + "import": 30, + "imagery": "osm", + "language": "en", + "conflation": 46 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.23242385, + 51.0236647 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.12.12", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-05T03:23:34Z", + "reviewed_features": [], + "create": 1, + "modify": 7, + "delete": 0, + "area": 3.07638000003993e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114571099, + "host": "127.0.0.1:1234", + "theme": "grb", + "import": 1, + "imagery": "AGIVFlandersGRB", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2441605, + 50.8380716 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.12.12", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-05T03:15:00Z", + "reviewed_features": [], + "create": 52, + "modify": 72, + "delete": 0, + "area": 0.00000179656311999424, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114571030, + "host": "127.0.0.1:1234", + "move": 65, + "theme": "grb", + "answer": 2, + "import": 8, + "imagery": "AGIVFlandersGRB", + "language": "en", + "conflation": 18 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.24455465, + 50.8379028 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.12.12", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-05T02:37:45Z", + "reviewed_features": [], + "create": 4, + "modify": 39, + "delete": 0, + "area": 4.78107399997627e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114570730, + "host": "127.0.0.1:1234", + "move": 30, + "theme": "grb", + "answer": 6, + "import": 1, + "imagery": "AGIVFlandersGRB", + "language": "en", + "conflation": 6 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.24489295, + 50.838181500000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.12.12", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-05T02:33:41Z", + "reviewed_features": [], + "create": 11, + "modify": 41, + "delete": 0, + "area": 3.30828689995914e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114570678, + "host": "127.0.0.1:1234", + "move": 37, + "theme": "grb", + "answer": 2, + "import": 1, + "imagery": "AGIVFlandersGRB", + "language": "en", + "conflation": 12 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.24506765, + 50.83826435 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.12.12", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-05T01:35:50Z", + "reviewed_features": [], + "create": 82, + "modify": 89, + "delete": 0, + "area": 0.00000157885000000431, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114570109, + "host": "mapcomplete.osm.be", + "move": 60, + "theme": "grb", + "answer": 9, + "import": 15, + "imagery": "AGIV", + "language": "en", + "conflation": 22, + "change_over_5000m": 6 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.24650895, + 50.8384264 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-8744186807", + "osm_id": 8744186807, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8744186805", + "osm_id": 8744186805, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8744186796", + "osm_id": 8744186796, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "Jose Luis Infante", + "uid": "126203", + "editor": "MapComplete 0.12.12", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete1.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-04T22:00:58Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 6.42896549995575e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114567284, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "answer": 4, + "imagery": "HDM_HOT", + "language": "ca", + "change_within_25m": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.24476075, + 41.44886885 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-8791267410", + "osm_id": 8791267410, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8791267413", + "osm_id": 8791267413, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8791267393", + "osm_id": 8791267393, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-9311167057", + "osm_id": 9311167057, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8791267401", + "osm_id": 8791267401, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8791267396", + "osm_id": 8791267396, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8791267395", + "osm_id": 8791267395, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8791267408", + "osm_id": 8791267408, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-9311209498", + "osm_id": 9311209498, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "Jose Luis Infante", + "uid": "126203", + "editor": "MapComplete 0.12.12", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete1.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-04T20:25:08Z", + "reviewed_features": [], + "create": 9, + "modify": 9, + "delete": 0, + "area": 0.00000916885760000565, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114565529, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "answer": 9, + "imagery": "HDM_HOT", + "language": "ca", + "change_over_5000m": 9, + "change_within_25m": 8, + "change_within_50m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2565849, + 41.4525321 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "bollyboll", + "uid": "12120321", + "editor": "MapComplete 0.12.12", + "comment": "Adding data with #MapComplete for theme #street_lighting", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-04T19:20:52Z", + "reviewed_features": [], + "create": 1, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114564109, + "host": "mapcomplete.osm.be", + "theme": "street_lighting", + "answer": 6, + "imagery": "osm", + "language": "en", + "change_over_5000m": 1, + "change_within_25m": 6 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.7927515, + 48.0078687 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.12.12", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-04T19:14:34Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114563930, + "host": "mapcomplete.osm.be", + "theme": "shops", + "answer": 1, + "imagery": "osm", + "language": "en", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3898746, + 50.8527969 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.12.12", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-04T19:13:09Z", + "reviewed_features": [], + "create": 2, + "modify": 4, + "delete": 0, + "area": 0.000198082731120034, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114563899, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 11, + "imagery": "UrbISOrtho2020", + "language": "en", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3814375000000005, + 50.84700315 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "bollyboll", + "uid": "12120321", + "editor": "MapComplete 0.12.12", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-04T18:59:14Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114563581, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "answer": 1, + "imagery": "CartoDB.Voyager", + "language": "de", + "change_over_5000m": 1, + "change_within_25m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.7914468, + 48.0044671 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "bollyboll", + "uid": "12120321", + "editor": "MapComplete 0.12.12", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-04T18:38:46Z", + "reviewed_features": [], + "create": 11, + "modify": 0, + "delete": 0, + "area": 0.0000372201370199966, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114563116, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "answer": 5, + "imagery": "HDM_HOT", + "language": "de", + "change_over_5000m": 11, + "change_within_25m": 4, + "change_within_100m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.79155545, + 48.005734 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "flo2154", + "uid": "348648", + "editor": "MapComplete 0.12.12", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-04T15:58:33Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114559225, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "benches", + "answer": 5, + "imagery": "osm", + "language": "de", + "change_over_5000m": 1, + "change_within_5000m": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.7766008, + 48.1080849 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.12.12", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-04T15:35:28Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114558562, + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "osm", + "language": "en", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.2301221, + -39.8378588 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "hke2912", + "uid": "5154951", + "editor": "MapComplete 0.12.12", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-04T14:26:25Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114556655, + "host": "mapcomplete.osm.be", + "theme": "benches", + "answer": 2, + "imagery": "osm", + "language": "de", + "change_within_25m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.629975, + 51.7364493 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.12.12", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-04T08:35:35Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114547321, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "answer": 3, + "imagery": "CartoDB.Voyager", + "language": "nl", + "add-image": 2, + "change_within_500m": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.7296998, + 49.8311215 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.12.12", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-04T08:19:16Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114547035, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "answer": 1, + "imagery": "osm", + "language": "nl", + "add-image": 1, + "change_over_5000m": 1, + "change_within_25m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.7347611, + 49.8305193 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Koenraad Van Coppenolle", + "uid": "12352906", + "editor": "MapComplete 0.12.12", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-03T16:52:56Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114529779, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "answer": 1, + "imagery": "AGIV", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.8224959, + 50.8990666 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Andrea Musuruane", + "uid": "90379", + "editor": "MapComplete 0.12.12", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-03T16:45:42Z", + "reviewed_features": [], + "create": 0, + "modify": 33, + "delete": 0, + "area": 0.000178493931200008, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114529543, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 47, + "imagery": "osm", + "language": "it" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.170325550000001, + 45.3733242 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.12.12", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-03T15:53:02Z", + "reviewed_features": [], + "create": 2, + "modify": 7, + "delete": 0, + "area": 1.53446799999211e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114528127, + "host": "mapcomplete.osm.be", + "theme": "grb", + "answer": 6, + "import": 1, + "imagery": "AGIVFlandersGRB", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2226447, + 51.2086672 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.12.12", + "comment": "Adding data with #MapComplete for theme #climbing", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-03T15:50:32Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 1.7033320000519e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114528068, + "host": "mapcomplete.osm.be", + "theme": "climbing", + "imagery": "osm", + "language": "en", + "add-image": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.2457737, + -39.8194881 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "ClarissaWAM", + "uid": "13745921", + "editor": "MapComplete 0.12.12", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-03T14:41:19Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114525895, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.9654689, + 49.8263631 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.12.12", + "comment": "Adding data with #MapComplete for theme #cyclestreets", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-03T10:21:03Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 6.70414919998373e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114516792, + "host": "mapcomplete.osm.be", + "theme": "cyclestreets", + "answer": 1, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.9120534, + 51.17487425 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "bollyboll", + "uid": "12120321", + "editor": "MapComplete 0.12.12", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-03T06:28:32Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114508786, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "imagery": "HDM_HOT", + "language": "de", + "change_over_5000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.7932305, + 48.0078749 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Michael 3", + "uid": "13922389", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-03T04:25:18Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114505852, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.2520815, + 52.7917037 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.12.11", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-02T21:55:14Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114499674, + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "osm", + "language": "en", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.2353924, + -39.8389723 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.12.11", + "comment": "Adding data with #MapComplete for theme #cyclestreets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-02T13:25:52Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 9.36367140005233e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114483581, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "split": 2, + "theme": "cyclestreets", + "answer": 1, + "imagery": "osm", + "language": "nl", + "change_within_25m": 2, + "change_within_50m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.34325365, + 50.8290162 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.12.11", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-02T13:20:30Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114483428, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "cyclofix", + "answer": 1, + "imagery": "CartoDB.Voyager", + "language": "nl", + "add-image": 2, + "change_over_5000m": 1, + "change_within_25m": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3411392, + 50.8323467 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joseph83", + "uid": "10732704", + "editor": "MapComplete 0.12.11", + "comment": "Adding data with #MapComplete for theme #street_lighting", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-02T13:13:33Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 0.0000655664076400472, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114483211, + "host": "mapcomplete.osm.be", + "theme": "street_lighting", + "answer": 5, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.5290307, + 43.2537958 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "LySioS", + "uid": "11579673", + "editor": "MapComplete 0.12.11", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-02T12:43:14Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114482337, + "host": "mapcomplete.osm.be", + "theme": "aed", + "answer": 2, + "imagery": "osm", + "language": "fr", + "change_over_5000m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.9538082, + 42.6545431 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.12.11", + "comment": "Adding data with #MapComplete for theme #grb_fixme", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-02T12:15:48Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 1.27665960000494e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114481412, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "grb_fixme", + "answer": 4, + "imagery": "AGIVFlandersGRB", + "language": "nl", + "change_within_5000m": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2369145, + 51.21588935 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.12.11", + "comment": "Adding data with #MapComplete for theme #grb_fixme", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-02T01:23:13Z", + "reviewed_features": [], + "create": 4, + "modify": 41, + "delete": 0, + "area": 0.000666623233079885, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114463627, + "host": "127.0.0.1:1234", + "theme": "grb_fixme", + "answer": 44, + "import": 4, + "imagery": "AGIVFlandersGRB", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2221417, + 51.210684549999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joeybab3", + "uid": "8783843", + "editor": "MapComplete 0.12.11", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-01T23:46:40Z", + "reviewed_features": [], + "create": 2, + "modify": 3, + "delete": 0, + "area": 1.89494999998936e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114462319, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "answer": 9, + "imagery": "osm", + "language": "en", + "add-image": 1, + "change_over_5000m": 2, + "change_within_25m": 10 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -122.03179975, + 36.9780299 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "blacx", + "uid": "327111", + "editor": "MapComplete 0.12.11", + "comment": "Adding data with #MapComplete for theme #street_lighting", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-01T23:15:25Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.00000888592680001402, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114461816, + "host": "mapcomplete.osm.be", + "theme": "street_lighting", + "answer": 2, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.82651425, + 41.5461393 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "yopaseopor", + "uid": "500572", + "editor": "MapComplete 0.12.11", + "comment": "Adding data with #MapComplete for theme #comerciosantiguos", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-01T23:09:22Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114461685, + "host": "mapcomplete.osm.be", + "theme": "comerciosantiguos", + "answer": 3, + "imagery": "osm", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.7248595, + 41.2205668 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.12.11", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-01T22:39:29Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 7.71930000024495e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114460999, + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "osm", + "language": "en", + "add-image": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.23188135000001, + -39.842557 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "LFFMH", + "uid": "14449743", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-01T18:53:33Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114454431, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.9837611, + 52.0271205 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "juliabyby", + "uid": "14553395", + "editor": "MapComplete 0.12.11", + "comment": "Adding data with #MapComplete for theme #waste_basket", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-01T17:28:58Z", + "reviewed_features": [], + "create": 2, + "modify": 1, + "delete": 0, + "area": 0.00000273976640000606, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114451924, + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "waste_basket", + "answer": 2, + "imagery": "osm", + "language": "en", + "change_over_5000m": 2, + "change_within_25m": 3, + "move:node/9300915863": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -122.4081257, + 37.795591099999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jessbeutler", + "uid": "3243541", + "editor": "MapComplete 0.12.11", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-01T16:24:32Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114449961, + "host": "mapcomplete.osm.be", + "theme": "shops", + "answer": 1, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -85.6478932, + 42.9278164 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jessbeutler", + "uid": "3243541", + "editor": "MapComplete 0.12.11", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-01T16:23:09Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114449912, + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "USDA-NAIP", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -85.6668726, + 42.9635931 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "matissevdberg", + "uid": "12928471", + "editor": "MapComplete 0.12.11", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-12-01T11:40:25Z", + "reviewed_features": [], + "create": 4, + "modify": 5, + "delete": 0, + "area": 0.0000693771778700411, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114440486, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "surveillance", + "answer": 12, + "imagery": "AGIV", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.40876035, + 51.22095565 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "bollyboll", + "uid": "12120321", + "editor": "MapComplete 0.12.11", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-01T09:05:31Z", + "reviewed_features": [], + "create": 3, + "modify": 0, + "delete": 0, + "area": 0.00000152448638000179, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114434814, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "answer": 2, + "imagery": "HDM_HOT", + "language": "de", + "change_over_5000m": 3, + "change_within_25m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.7951281, + 48.00073955 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "bollyboll", + "uid": "12120321", + "editor": "MapComplete 0.12.11", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-01T07:16:35Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114431043, + "host": "mapcomplete.osm.be", + "theme": "benches", + "answer": 6, + "imagery": "osm", + "language": "de", + "change_over_5000m": 1, + "change_within_25m": 6 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.8232444, + 47.9817318 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "bollyboll", + "uid": "12120321", + "editor": "MapComplete 0.12.11", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-01T06:37:11Z", + "reviewed_features": [], + "create": 6, + "modify": 1, + "delete": 0, + "area": 0.00291220836621019, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114429834, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "answer": 3, + "imagery": "HDM_HOT", + "language": "de", + "change_over_5000m": 6, + "change_within_25m": 2, + "change_within_100m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.81258385, + 47.97665005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.12.11", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/yopaseopor/osmlitmap/master/src/json/lit.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-12-01T00:18:07Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 114422931, + "host": "mapcomplete.osm.be", + "theme": "gh://yopaseopor/osmlitmap/master/src/json/lit.json", + "imagery": "osm", + "language": "ca", + "change_over_5000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2250237, + 51.2064498 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.5.4c", + "comment": "Adding data with #MapComplete for theme #nature", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-02-28T22:20:20Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.000176047813790056, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100158849, + "host": "mapcomplete.osm.be", + "theme": "nature", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.35413045, + 51.129450750000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.5.4c", + "comment": "Adding data with #MapComplete for theme #allotments", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-02-28T22:11:41Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 1.11915000000177e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100158594, + "host": "mapcomplete.osm.be", + "theme": "allotments", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2199102, + 51.18215035 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "steven lauwers", + "uid": "6799245", + "editor": "MapComplete 0.5.2b", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/osmbe/play/master/mapcomplete/geveltuinen/geveltuinen.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-02-28T21:46:40Z", + "reviewed_features": [], + "create": 4, + "modify": 19, + "delete": 0, + "area": 0.00100828205598038, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100157822, + "host": "pietervdvn.github.io", + "theme": "geveltuintjes", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.5108385, + 51.02711875 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.5.4c", + "comment": "Adding data with #MapComplete for theme #allotments", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-02-28T19:47:30Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 8.11020200005403e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100153982, + "host": "mapcomplete.osm.be", + "theme": "allotments", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.34535365, + 50.8756156 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.5.4c", + "comment": "Adding data with #MapComplete for theme #allotments", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-02-28T19:43:43Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 8.11020200005403e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100153839, + "host": "mapcomplete.osm.be", + "theme": "allotments", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.34535365, + 50.8756156 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Craecker2", + "uid": "11233815", + "editor": "MapComplete 0.5.4c", + "comment": "Adding data with #MapComplete for theme #ghostbikes", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-02-28T19:15:56Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100152747, + "host": "mapcomplete.osm.be", + "theme": "ghostbikes", + "imagery": "CartoDB.Positron", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 10.2197793, + 50.0550399 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Craecker2", + "uid": "11233815", + "editor": "MapComplete 0.5.4c", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-02-28T19:14:18Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 1.64829000001523e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100152683, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 10.16562955, + 50.05992995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "okilimu", + "uid": "212111", + "editor": "MapComplete 0.5.4c", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-02-28T18:39:14Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.00000836591552998737, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100151338, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "de", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.300674149999999, + 48.73751395 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.5.4c", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-02-28T17:53:21Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 3.0745800003011e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100149067, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.13701785, + 51.2912237 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "okilimu", + "uid": "212111", + "editor": "MapComplete 0.5.4a", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-02-28T15:12:15Z", + "reviewed_features": [], + "create": 0, + "modify": 6, + "delete": 0, + "area": 0.00429167076000054, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100141367, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.24298235, + 48.7546082 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "cyton", + "uid": "11146797", + "editor": "MapComplete 0.5.4a", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-02-28T14:46:10Z", + "reviewed_features": [], + "create": 0, + "modify": 14, + "delete": 0, + "area": 0.00000830647124998096, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100140075, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.289573449999999, + 52.633128049999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "straynic", + "uid": "718977", + "editor": "MapComplete 0.5.4a", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-02-28T08:25:32Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100126368, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.1522336, + 45.1799458 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "straynic", + "uid": "718977", + "editor": "MapComplete 0.5.4a", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-02-28T08:20:05Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100126236, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.1884112, + 45.1594003 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #ghostbikes", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-02-27T22:04:42Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100117757, + "host": "pietervdvn.github.io", + "theme": "ghostbikes", + "imagery": "CartoDB.Positron", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3460637, + 50.8181966 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-02-27T21:56:35Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100117566, + "host": "pietervdvn.github.io", + "theme": "trees", + "imagery": "CyclOSM", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.6661284, + -33.4410426 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-02-27T21:27:49Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100116843, + "host": "pietervdvn.github.io", + "theme": "trees", + "imagery": "CyclOSM", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.6662356, + -33.4405524 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "steven lauwers", + "uid": "6799245", + "editor": "MapComplete 0.5.2b", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/osmbe/play/master/mapcomplete/geveltuinen/geveltuinen.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-02-27T21:12:26Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100116383, + "host": "pietervdvn.github.io", + "theme": "geveltuintjes", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.5483264, + 51.0209132 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.5.3", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-02-27T19:48:02Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100113908, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2324803, + 51.1870806 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "sjokomoeske", + "uid": "10187049", + "editor": "MapComplete 0.5.3", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-02-27T16:06:37Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100104366, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.10732, + 51.0191728 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "hke2912", + "uid": "5154951", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-02-27T15:59:03Z", + "reviewed_features": [], + "create": 2, + "modify": 8, + "delete": 0, + "area": 5.24644499996208e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100104020, + "host": "pietervdvn.github.io", + "theme": "benches", + "imagery": "osm", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.962680349999999, + 51.51007905 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-02-27T15:57:42Z", + "reviewed_features": [], + "create": 0, + "modify": 6, + "delete": 0, + "area": 3.78586799994919e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100103957, + "host": "pietervdvn.github.io", + "theme": "trees", + "imagery": "CyclOSM", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.66719255, + -33.440229200000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Commodoortje", + "uid": "1771198", + "editor": "MapComplete 0.5.3", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-02-27T15:17:01Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100102164, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.3120827, + 52.0952965 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "CordeB", + "uid": "5794153", + "editor": "MapComplete 0.5.3", + "comment": "Adding data with #MapComplete for theme #benchesandpicnictables", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-02-27T15:03:00Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100101616, + "host": "mapcomplete.osm.be", + "theme": "benchesandpicnictables", + "imagery": "osm", + "language": "en", + "theme-creator": "Peter Elderson" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.0831776, + 53.0514086 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "ralley", + "uid": "670820", + "editor": "MapComplete 0.5.3", + "comment": "Adding data with #MapComplete for theme #climbing", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-02-27T03:23:05Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100081609, + "host": "mapcomplete.osm.be", + "theme": "climbing", + "imagery": "osm", + "language": "en", + "theme-creator": "Christian Neumann " + }, + "geometry": { + "type": "Point", + "coordinates": [ + 174.6376345, + -36.9080008 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "alibama", + "uid": "11038799", + "editor": "MapComplete 0.5.3", + "comment": "Adding data with #MapComplete for theme #artworks", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-02-26T22:30:53Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100077413, + "host": "mapcomplete.osm.be", + "theme": "artworks", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -78.4966095, + 38.0292344 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "alibama", + "uid": "11038799", + "editor": "MapComplete 0.5.3", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-02-26T22:04:08Z", + "reviewed_features": [], + "create": 2, + "modify": 2, + "delete": 0, + "area": 3.70552500002698e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100076620, + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "osm", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -78.49641105, + 38.029513949999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "DIY", + "uid": "208508", + "editor": "MapComplete 0.5.2c", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-02-26T21:04:06Z", + "reviewed_features": [], + "create": 1, + "modify": 6, + "delete": 0, + "area": 0.00000150074946000177, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100074776, + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "AGIV", + "language": "nl", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.7462493, + 50.882086150000006 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "vincentxavier", + "uid": "15739", + "editor": "MapComplete 0.5.3", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-02-26T20:40:26Z", + "reviewed_features": [], + "create": 3, + "modify": 5, + "delete": 0, + "area": 0.0000123628079300023, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100073938, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "language": "fr", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.31179995, + 48.902481050000006 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "karmickoala", + "uid": "12749531", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-02-26T18:55:31Z", + "reviewed_features": [], + "create": 2, + "modify": 4, + "delete": 0, + "area": 0.0000158577922800136, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100070322, + "host": "pietervdvn.github.io", + "theme": "trees", + "imagery": "osm", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.95752195, + -19.8671501 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Rienux", + "uid": "11911273", + "editor": "MapComplete 0.5.3", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-02-26T18:24:59Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100069116, + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "osm", + "language": "nl", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2785507, + 51.0602815 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "hke2912", + "uid": "5154951", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-02-26T15:45:21Z", + "reviewed_features": [], + "create": 12, + "modify": 48, + "delete": 0, + "area": 5.87969920002523e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100060787, + "host": "pietervdvn.github.io", + "theme": "benches", + "imagery": "osm", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.5904223, + 51.96621175 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "DIY", + "uid": "208508", + "editor": "MapComplete 0.5.2c", + "comment": "Adding data with #MapComplete for theme #fritures", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-02-26T14:51:01Z", + "reviewed_features": [], + "create": 1, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100058257, + "host": "mapcomplete.osm.be", + "theme": "fritures", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.7541618, + 50.8881994 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "hke2912", + "uid": "5154951", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-02-26T14:42:23Z", + "reviewed_features": [], + "create": 1, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100057814, + "host": "pietervdvn.github.io", + "theme": "benches", + "imagery": "osm", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.5933867, + 51.9655788 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "CordeB", + "uid": "5794153", + "editor": "MapComplete 0.5.2c", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-02-26T14:40:21Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100057703, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.0831776, + 53.0514086 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Lokaal bestuur Olen", + "uid": "12279833", + "editor": "MapComplete 0.5.2c", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-02-26T13:43:42Z", + "reviewed_features": [], + "create": 4, + "modify": 2, + "delete": 0, + "area": 0.00276088737120019, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100054794, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.8889407, + 51.1636509 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Koenraad Van Coppenolle", + "uid": "12352906", + "editor": "MapComplete 0.5.2c", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-02-26T13:26:42Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100053936, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.8420487, + 50.8816233 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Lokaal bestuur Olen", + "uid": "12279833", + "editor": "MapComplete 0.5.2c", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 5, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-02-26T13:18:46Z", + "reviewed_features": [], + "create": 3, + "modify": 0, + "delete": 0, + "area": 0.00122052129849002, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100053568, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.88064465, + 51.15442585 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + }, + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-8461197945", + "name": "August Veeck", + "osm_id": 8461197945, + "reasons": [ + 43 + ], + "version": 4, + "primary_tags": { + "shop": "jewels and gems" + } + } + ], + "user": "Melanie Veeck", + "uid": "12741541", + "editor": "MapComplete 0.5.2c", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-02-26T13:11:51Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100053202, + "host": "mapcomplete.osm.be", + "theme": "shops", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.3277199, + 49.7047654 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Koenraad Van Coppenolle", + "uid": "12352906", + "editor": "MapComplete 0.5.2c", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-02-26T13:04:50Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100052822, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.8415804, + 50.8810941 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "gemeente Oostrozebeke", + "uid": "3986953", + "editor": "MapComplete 0.5.2c", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-02-26T13:02:01Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100052686, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3337069, + 50.9213363 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "gis3700", + "uid": "8370509", + "editor": "MapComplete 0.5.2c", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-02-26T12:55:59Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100052329, + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "osm", + "language": "nl", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.4676368, + 50.7789634 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Melanie Veeck", + "uid": "12741541", + "editor": "MapComplete 0.5.2c", + "comment": "Adding data with #MapComplete for theme #fritures", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-02-26T12:31:13Z", + "reviewed_features": [], + "create": 1, + "modify": 5, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100050884, + "host": "mapcomplete.osm.be", + "theme": "fritures", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.6862591, + 50.9186731 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "radnaj", + "uid": "13135", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-02-26T09:06:25Z", + "reviewed_features": [], + "create": 1, + "modify": 5, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100035223, + "host": "pietervdvn.github.io", + "theme": "surveillance", + "imagery": "Stadia.AlidadeSmoothDark", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.6619207, + 40.5548316 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "rsmb", + "uid": "2195609", + "editor": "MapComplete 0.5.2c", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-02-25T21:40:25Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100005066, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "EsriWorldImagery", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -122.3093423, + 47.5717359 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "rsmb", + "uid": "2195609", + "editor": "MapComplete 0.5.2c", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-02-25T21:38:14Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100005004, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -122.31036425, + 47.5737862 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "rsmb", + "uid": "2195609", + "editor": "MapComplete 0.5.2c", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-02-25T21:33:01Z", + "reviewed_features": [], + "create": 1, + "modify": 23, + "delete": 0, + "area": 0.00302529364156041, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100004851, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -122.30627595, + 47.604153100000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-02-25T19:57:23Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100001332, + "host": "pietervdvn.github.io", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.9871108, + -34.592627 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "ljanssens", + "uid": "959076", + "editor": "MapComplete 0.5.2c", + "comment": "Adding data with #MapComplete for theme #fritures", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-02-25T18:05:40Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 99995841, + "host": "mapcomplete.osm.be", + "theme": "fritures", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.5834972, + 51.128417 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-8458401093", + "osm_id": 8458401093, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "tourism": "map" + } + } + ], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.5.2c", + "comment": "Adding data with #MapComplete for theme #maps", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-02-25T16:27:30Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 99990530, + "host": "mapcomplete.osm.be", + "theme": "maps", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2663029, + 50.6493925 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Nuytinck", + "uid": "3719237", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-02-25T12:18:23Z", + "reviewed_features": [], + "create": 1, + "modify": 6, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 99976196, + "host": "pietervdvn.github.io", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.1585628, + 51.1181747 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.5.2c", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-02-25T10:08:56Z", + "reviewed_features": [], + "create": 0, + "modify": 7, + "delete": 0, + "area": 0.000290707691849989, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 99966566, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2611535499999995, + 50.76968855 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "anderld", + "uid": "285718", + "editor": "MapComplete 0.2.2a", + "comment": "Adding data with #MapComplete for theme #climbing", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-02-25T07:11:37Z", + "reviewed_features": [], + "create": 0, + "modify": 6, + "delete": 0, + "area": 0.0169143535240801, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 99953165, + "theme": "climbing", + "language": "de", + "theme-creator": "Christian Neumann " + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3779478, + 50.5894761 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.5.2b", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-02-25T01:32:28Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.000194501577760007, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 99936680, + "host": "192.168.1.191:1234", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7114187999999997, + 51.04952395 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "WinstonSmith", + "uid": "36030", + "editor": "MapComplete 0.5.2a", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-02-24T18:24:56Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 99924541, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.3311382, + 44.5064686 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "WinstonSmith", + "uid": "36030", + "editor": "MapComplete 0.5.2a", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-02-24T15:07:59Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 99914037, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.2987561, + 44.4912213 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "WinstonSmith", + "uid": "36030", + "editor": "MapComplete 0.5.2a", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-02-24T13:52:28Z", + "reviewed_features": [], + "create": 8, + "modify": 0, + "delete": 0, + "area": 0.00250441375132003, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 99910020, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.3372532, + 44.51279605 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "micheltz", + "uid": "10155250", + "editor": "MapComplete 0.5.2a", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-02-23T21:06:33Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 99855005, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.7989668, + 51.2352485 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "StanislasGueniffey687163843", + "uid": "11495987", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #fritures", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-02-23T14:42:35Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 99835912, + "host": "pietervdvn.github.io", + "theme": "fritures", + "imagery": "osm", + "language": "fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3876739, + 50.814662 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "tiger10", + "uid": "155318", + "editor": "MapComplete 0.2.2a", + "comment": "Adding data with #MapComplete for theme #climbing", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-02-23T13:45:39Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 99832025, + "theme": "climbing", + "language": "de", + "theme-creator": "Christian Neumann " + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.0417253, + 48.5106315 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.5.2a", + "comment": "Adding data with #MapComplete for theme #buurtnatuur", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-02-23T11:14:35Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 5.30863300002763e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 99820220, + "host": "mapcomplete.osm.be", + "theme": "buurtnatuur", + "imagery": "osm", + "language": "nl", + "theme-creator": "Pieter Vander Vennet" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.70464575, + 51.0505651 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Wim L", + "uid": "223681", + "editor": "MapComplete 0.5.2a", + "comment": "Adding data with #MapComplete for theme #personal", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-02-23T01:01:09Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 99779479, + "host": "mapcomplete.osm.be", + "theme": "personal", + "imagery": "Stamen.Watercolor", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -122.35579405, + 47.6522841 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Seaviator", + "uid": "9649188", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-02-22T23:27:07Z", + "reviewed_features": [], + "create": 1, + "modify": 6, + "delete": 0, + "area": 1.19482680004023e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 99778046, + "host": "pietervdvn.github.io", + "theme": "surveillance", + "imagery": "Stadia.AlidadeSmoothDark", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -89.39523095, + 43.0759022 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "steven lauwers", + "uid": "6799245", + "editor": "MapComplete 0.5.0-rc5", + "comment": "Adding data with #MapComplete for theme #climbing", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-02-22T20:55:00Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 99771721, + "host": "pietervdvn.github.io", + "theme": "climbing", + "imagery": "osm", + "language": "nl", + "theme-creator": "Christian Neumann " + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4931266, + 51.0240137 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Peter Elderson", + "uid": "7103674", + "editor": "MapComplete 0.5.2a", + "comment": "Adding data with #MapComplete for theme #benchesandpicnictables", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-02-22T20:23:51Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 99770205, + "host": "mapcomplete.osm.be", + "theme": "benchesandpicnictables", + "imagery": "osm", + "language": "nl", + "theme-creator": "Peter Elderson" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.6100709, + 51.9644565 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.5.2a", + "comment": "Adding data with #MapComplete for theme #geveltuintjes", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-02-22T19:29:18Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 99767714, + "host": "mapcomplete.osm.be", + "theme": "geveltuintjes", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.5483264, + 51.0209132 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-02-22T19:02:28Z", + "reviewed_features": [], + "create": 0, + "modify": 14, + "delete": 0, + "area": 0.0000759466232999634, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 99766646, + "host": "pietervdvn.github.io", + "theme": "trees", + "imagery": "CyclOSM", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.57429225, + -33.5943984 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.5.2a", + "comment": "Adding data with #MapComplete for theme #geveltuintjes", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-02-22T18:12:40Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 99764594, + "host": "mapcomplete.osm.be", + "theme": "geveltuintjes", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4784087, + 51.0338428 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "alibama", + "uid": "11038799", + "editor": "MapComplete 0.5.2a", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-02-22T16:46:14Z", + "reviewed_features": [], + "create": 1, + "modify": 6, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 99760617, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -78.4683707, + 38.0246363 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "WinstonSmith", + "uid": "36030", + "editor": "MapComplete 0.5.2a", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-02-22T16:22:56Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 99759346, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.3459252, + 44.5016229 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "MAGONA", + "uid": "3087858", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-02-22T15:46:33Z", + "reviewed_features": [], + "create": 1, + "modify": 7, + "delete": 0, + "area": 1.60037789999195e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 99757412, + "host": "pietervdvn.github.io", + "theme": "trees", + "imagery": "CyclOSM", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.76828005, + -33.485767949999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "fpiette", + "uid": "11779834", + "editor": "MapComplete 0.5.2", + "comment": "Adding data with #MapComplete for theme #nature", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-02-22T10:50:22Z", + "reviewed_features": [], + "create": 0, + "modify": 8, + "delete": 0, + "area": 0.000196723797519908, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 99738539, + "host": "mapcomplete.osm.be", + "theme": "nature", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.612652450000001, + 50.603597199999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "fpiette", + "uid": "11779834", + "editor": "MapComplete 0.5.2", + "comment": "Adding data with #MapComplete for theme #artworks", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-02-22T10:21:02Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 99736106, + "host": "mapcomplete.osm.be", + "theme": "artworks", + "imagery": "osm", + "language": "fr", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.6039661, + 50.5217799 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "mfbehrens99", + "uid": "9645335", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-02-22T08:23:56Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 1.84212000029126e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 99726454, + "host": "pietervdvn.github.io", + "theme": "benches", + "imagery": "osm", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.2322798, + 50.00430595 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 42, + "name": "Invalid tag modification" + } + ], + "tags": [], + "features": [ + { + "url": "node-4488407036", + "osm_id": 4488407036, + "reasons": [ + 42 + ], + "version": 2, + "primary_tags": { + "leisure": "picnic_table" + } + }, + { + "url": "node-1951606094", + "osm_id": 1951606094, + "reasons": [ + 42 + ], + "version": 3, + "primary_tags": { + "leisure": "picnic_table" + } + } + ], + "user": "Peter Elderson", + "uid": "7103674", + "editor": "MapComplete 0.5.2", + "comment": "Adding data with #MapComplete for theme #benchesandpicnictables", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-02-22T07:36:38Z", + "reviewed_features": [], + "create": 5, + "modify": 11, + "delete": 0, + "area": 0.000857070695969931, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 99723129, + "host": "mapcomplete.osm.be", + "theme": "benchesandpicnictables", + "imagery": "osm", + "language": "nl", + "theme-creator": "Peter Elderson" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.9100392500000005, + 52.07708505 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Nuytinck", + "uid": "3719237", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-02-21T20:31:31Z", + "reviewed_features": [], + "create": 1, + "modify": 7, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 99697887, + "host": "pietervdvn.github.io", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4834706, + 51.1263994 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.5.2", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-02-21T11:36:46Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 99676146, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "nl", + "theme-creator": "MapComplete" + }, "geometry": { "type": "Point", "coordinates": [ 3.2198444, - 51.2156981 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.991137050000001, - 51.11845515 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.9708566, - 51.1064667 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.4311547000000004, - 51.1658704 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.08878435, - 51.1606889 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 14.6348378, - 51.7458095 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.9708566, - 51.1064667 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.40456, - 51.0092742 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.36441, - 51.0112133 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.3657538, - 51.011274 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.1237487, - 52.0895507 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.05569865, - 51.54434015 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 14.57885235, - 50.873474900000005 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 14.5792066, - 50.8739059 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 14.57881725, - 50.8739517 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.0309161, - 47.2420926 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 121.0537792, - 14.6195668 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.0155506, - 5.4114159 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 121.0791002, - 14.60638045 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 121.0605946, - 14.645733 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 14.81667355, - 50.822522 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 8.999719299999999, - 48.50172935 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 8.99704815, - 48.5017436 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.2197613, - 51.2156729 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.2197613, - 51.2156729 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.2198634, - 51.2156948 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.2198634, - 51.2156948 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.069903, - 51.481657 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.7728561, - 41.6312769 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.7766709, - 41.6295739 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 8.90049385, - 48.64037055 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 8.89848995, - 48.65066695 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 9.8463855, - 53.47689795 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 13.4507341, - 52.5077952 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.4588175, - 39.4645176 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -21.879822949999998, - 64.1013077 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.4855334, - 48.8051415 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.277398, - 54.0719806 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 9.0417856, - 48.52397 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 8.9958313, - 48.5015779 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 30.3302832, - 59.9978502 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.08019385, - 50.867304950000005 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.09289030000000001, - 50.8633373 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.108866, - 50.85069795 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 11.565169000000001, - 48.1485605 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.21545525, - 51.2155731 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.92814155, - 51.222086899999994 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -122.371635, - 47.6815637 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -58.714550450000004, - -34.65670725 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -58.528916100000004, - -34.639056100000005 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.2217294, - 51.212738 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.2120516, - 51.191464 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -74.2995597, - 40.0142938 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -74.20531445, - 39.96593065 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.9196087, - 51.2342711 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -58.446025950000006, - -34.62018615 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -58.4450562, - -34.6196799 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -58.4450281, - -34.61978835 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -58.4183453, - -34.6090322 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.7964383, - 41.6151806 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -58.41518215, - -34.6089661 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2210216, - 41.4353475 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2209787, - 41.4353262 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2208569, - 41.4352656 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2220951500000004, - 41.43658475 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.22194065, - 41.439651850000004 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.22290265, - 41.44264445 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2223795, - 41.4444085 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.7356439, - 51.041662 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.2208054, - 51.2103751 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 8.9965305, - 48.5015504 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 9.0562325, - 48.5231717 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.7356439, - 51.041662 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 9.020796, - 48.5069801 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 8.9965474, - 48.5003073 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 8.9958313, - 48.5015779 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.9180685000000004, - 51.23305165 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.91824105, - 51.23410265 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.9168272, - 51.2339232 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.91690365, - 51.23390985 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.2194673, - 51.2131627 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.9192117, - 51.2342658 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -58.7866643, - -34.6514154 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.9195952, - 51.2343802 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.1987433, - 52.0670819 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 20.4317797, - 44.8152335 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.5527011, - 50.9974593 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 121.5557197, - 13.9643939 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -58.7869848, - -34.65140915 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -58.78760715, - -34.6511131 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 11.3531842, - 44.531113 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.1213796, - 52.0759235 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 16.3041186, - 48.1610421 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -58.4546041, - -34.624 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 43.8774472, - 56.2496226 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.1124561, - 51.1812325 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.1242227, - 52.0818547 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.4505599, - 51.1920798 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.5613755000000005, - 53.01928155 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.5513386, - 50.9966912 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.5478141, - 50.9985093 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.4902217, - 51.2035762 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.7284127, - 51.0665171 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.4900500999999995, - 51.20521825 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.0110496, - 50.7870724 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.0179933, - 51.388831 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.0157416, - 51.3917567 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.076896, - 51.3233979 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.29691635, - 41.52784295 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 9.28685895, - 49.1515518 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.55485315, - 53.00925565 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 11.0073312, - 49.4024851 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2307251499999996, - 41.4471759 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.5801438, - 52.9886576 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 11.78172875, - 48.28012525 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.22837165, - 41.447435 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -79.5328617, - 43.1849863 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 9.909097, - 53.6636667 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.1465075, - 48.9024177 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.90634585, - 51.2285138 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.7728481, - 41.62657735 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.79378125, - 41.6189837 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.8030329, - 41.6200017 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.8628420000000006, - 50.876602000000005 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.8779343, - 50.8749435 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.5999967, - 47.5721039 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.89922325, - 50.4682765 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -7.6953024, - 41.27305465 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -7.7915753, - 41.27653235 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -7.685330649999999, - 41.2703645 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -58.7889388, - -34.6506381 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -58.788963, - -34.650659 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -58.7891185, - -34.6502794 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.7852913, - 41.62378270000001 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.2193819, - 51.1822834 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.23443045, - 41.4444905 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -58.7872839, - -34.651193 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.9760206, - 52.337871 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.1366315, - 50.6942047 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 16.335479499999998, - 48.18749435 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.5583594, - 47.4644831 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.2207792, - 51.2168779 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.139312, - 50.691505750000005 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.062176, - 51.37753885 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.1252835, - 52.0836943 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.2212935, - 51.2159086 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.788639, - 51.2645906 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -58.78826425, - -34.65089705 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.219882, - 51.2157065 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.2198712, - 51.2156981 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.2198766, - 51.215702300000004 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.89922325, - 50.4682765 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2299869, - 41.45025205 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.7721260999999995, - 41.62756895 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.3253657, - 51.1093114 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.277056, - 53.4048886 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -93.65124155000001, - 41.73699005 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.22277385, - -39.8375372 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.44867665, - 51.0920828 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.7721500500000005, - 41.628206 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.2120516, - 51.191464 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.224388, - 50.7138962 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.7727844, - 41.6283179 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.122183, - 52.0788916 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -58.64857445, - -34.6542519 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.1110544, - 52.0827213 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -93.65283, - 41.73333975 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.9232631, - 43.301894000000004 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 8.9253875, - 52.28589785 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 8.93549225, - 52.309405600000005 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.2601325, - 50.7373676 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.769360450000001, - 51.491284 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.9560343499999995, - 51.12547465 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 13.720773099999999, - 51.6261887 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 13.5652936, - 51.9702387 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 14.1588903, - 52.4506053 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -70.60310665, - -33.42403535 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 13.759464000000001, - 52.841807900000006 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 9.91956, - 52.5122283 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -58.64232525, - -34.6528931 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.2327525, - 51.212346 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.57080245, - 48.704203 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 13.729089349999999, - 52.8351156 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 13.72531815, - 52.83822055 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.46224065, - 50.7820216 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -70.60310665, - -33.42403535 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 8.9917127, - 48.4984367 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 11.2557221, - 43.7859072 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 12.878176, - 52.3875656 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 8.3338032, - 47.8180013 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 13.7243377, - 51.054969650000004 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 12.8615811, - 52.3855979 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.69334155, - 37.74212075 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.5215607, - 41.6305262 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.459437, - 51.3650876 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 13.5893767, - 51.97243505 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.2678505, - 50.74381 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.5124488, - 47.4452066 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.5133567, - 47.4451131 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 13.98134645, - 51.8424031 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.1118555, - 50.7995312 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.69371985, - 37.74372465 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.5231646, - 41.630438 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.46834945, - 50.781139 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.0077223, - 51.4381799 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.0096636, - 51.4387791 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.889961899999999, - 51.0560962 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.9888208, - 51.1638865 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.69638995, - 37.7405462 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.9074104, - 51.091554 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.271279, - 51.057879 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.88993545, - 51.0560938 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.993748650000001, - 51.16077895 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 13.7670876, - 51.425540299999994 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 11.2706164, - 44.5230379 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 13.38232895, - 51.584776000000005 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.2686778, - 51.0605068 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.5179344, - 45.5046634 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.2202923, - 50.748141 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.7171638, - 48.688034 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.1348382, - 50.6751023 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -122.04712710000001, - 37.2517689 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.5653507, - 45.4788934 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.5743172, - 50.976084 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.45619635, - 53.8526971 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 13.6819299, - 51.677429 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.7218111, - 37.7355389 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 14.6932501, - 51.6456486 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.3964877, - 50.97587475 - ] - } - }, - null, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.4345096, - 41.6106455 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.56856895, - 45.479045049999996 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -58.57005985, - -34.63639885 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.69372375, - 51.04165345 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.4259574, - 51.2126193 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 8.9907228, - 48.4981911 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.21066735, - 41.54675125 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -58.6562667, - -34.65279285 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 14.6365021, - 52.015425 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 14.6721768, - 51.9473461 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.2297336, - 50.8954102 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 14.71425, - 51.9491832 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 121.5593499, - 13.9636129 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.7108772, - 50.6550157 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.5583292, - 50.7859898 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.55157865, - 41.6085038 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -70.59771455, - -33.57078305 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.8954485, - 51.017616399999994 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -79.038426, - -2.8624529 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 14.44426325, - 51.89308835 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 12.8539609, - 52.1657929 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.0585135, - 51.5434224 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 14.32839855, - 52.028535000000005 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.3344568, - 39.462694400000004 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 14.3282899, - 52.032626199999996 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 12.3545962, - 45.4323164 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -58.64416895, - -34.6523526 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 14.3042502, - 51.799496 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 12.33029595, - 45.430868849999996 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.6013579, - 51.1525427 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 14.757716949999999, - 51.4659751 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 12.32879105, - 45.43156775 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -5.8329, - 37.27243035 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -5.8865992, - 37.32530345 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.5912685, - 45.517507699999996 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 14.033919749999999, - 51.689032049999994 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 14.17389845, - 52.446407449999995 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -58.7290773, - -34.6641159 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.5584142, - 50.7860886 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.5925962, - 44.3287832 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 11.4257015, - 44.4611836 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.13413085, - 51.0958509 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.60153015, - 50.80909725 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 12.3267343, - 45.4409673 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 14.68704295, - 51.65444975 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 14.35299485, - 52.0318069 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 9.1767718, - 48.5005919 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 9.2033242, - 48.538803349999995 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -58.40994, - -34.6088596 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -58.474153, - -34.630172349999995 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 13.48438245, - 52.15649725 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.46031215, - 51.090332950000004 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 12.33534655, - 45.4352451 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.29951655, - 50.804868150000004 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -70.62637885000001, - -33.44296315 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.5579423, - 45.5058439 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.70650585, - 37.59645845 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.5888947, - 45.50064255 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 13.447373200000001, - 52.287961100000004 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.5844597, - 45.524499 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 13.4266904, - 52.1859955 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -58.6943833, - -34.65136995 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.2342144, - 56.060981999999996 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.1172445, - 51.2118257 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.1167349, - 51.2119877 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.4638884, - 50.8436071 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.6915036, - 41.612191 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 10.422055400000001, - 46.45909115 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 10.4209475, - 46.4592242 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.9078375, - 44.5248764 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -72.77841075, - 45.450346100000004 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.5527882, - 45.4987638 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.2212061, - 56.0637904 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.56589220000001, - 45.4974016 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.2249916, - 51.2104043 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.2250398, - 51.2104409 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 10.42641755, - 46.45719425 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.0076153, - 51.1226982 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.5646386, - 42.5236249 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.2978821, - 39.8384492 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 13.7719685, - 52.84832845 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.5357657, - 50.8133871 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.2209394, - 51.216821 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.2206618, - 51.2165633 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.2208005999999996, - 51.21669215 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.1579392, - 53.7129136 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.9914404999999995, - 51.15763025 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.5620355, - 42.5230351 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.2356747, - 50.7318342 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.7381868, - 42.406185 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 0.738211, - 42.4061771 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -74.6654114, - 5.4540737 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -74.6654114, - 5.4540737 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.3471302, - 50.8637621 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.2965525, - 50.85296485 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.4836664, - 50.8971684 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.3741829, - 50.8670757 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 13.37313685, - 52.6427729 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.39533825, - 39.6588001 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.2154662, - 51.2179199 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.09618115, - 51.2999619 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.2991480499999999, - 39.818940999999995 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.326811, - 39.74076255 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 13.3895412, - 52.6930158 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.3864760500000002, - 39.7193125 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.3838432, - 39.7148562 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.1438842, - 51.1712649 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.4395395, - 39.7218031 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.95473985, - 51.3276478 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.8236820500000004, - 50.812700750000005 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.3935227, - 50.9254313 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.3422469, - 50.8520859 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.37447785, - 39.8139357 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.7120102, - 44.6178122 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -58.43950945, - -34.61845065 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -58.49058535, - -34.632881299999994 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -58.575007150000005, - -34.63906185 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.37271245, - 50.93925095 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 13.382147849999999, - 52.648663400000004 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -58.5624732, - -34.64235495 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 13.3811806, - 52.645970750000004 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -58.6268878, - -34.650370499999994 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.38244245, - 50.932639699999996 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.5124964, - 51.1358371 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 13.2344698, - 52.3196097 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.2839305, - 39.8491353 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 11.7898196, - 53.1297759 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.21076705, - 50.93996715 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 11.77356935, - 53.122519 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.1856617, - 50.9228428 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.3724459, - 50.8688436 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.37526645, - 50.87820095 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.378507450000001, - 50.88828855 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.1164035, - 52.0920784 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.21457025, - 51.20033705 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.3974308, - 51.0411647 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.2679291500000005, - 51.1543496 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.236200350000001, - 50.737634150000005 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 11.40384975, - 49.2066477 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.7248091, - 51.0463223 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -2.4758828, - 51.4308656 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.2356076, - -39.8240754 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.2205409, - -39.84486135 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.2378767, - -39.8236297 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 13.2348293, - 52.7751278 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.2658925, - 50.7519019 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.6262706, - 51.19895565 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -6.9332483499999995, - 37.2793399 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 8.795037, - 45.8565394 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 13.49928915, - 52.06398625 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.36706415, - 50.83381895 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 13.3860505, - 52.1656603 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -78.68980640000001, - 26.539927050000003 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 13.41402765, - 52.18858725 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -75.5026871, - 5.0664182 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.98581025, - 51.16184715 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.9308002, - 51.09047675 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.5630858, - 38.5227377 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.4143206, - 50.9979201 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.0363926, - 39.8640242 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 13.2288932, - 52.7606098 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 13.501007, - 52.0465533 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.0998557, - 50.5541406 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 13.2440419, - 52.78187165 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 13.4181288, - 52.1891303 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 13.50590965, - 52.04679955 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 8.99805385, - 48.49949345 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 13.5365349, - 52.291653 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 12.8553236, - 52.1696745 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 12.8553236, - 52.1696745 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 13.7251042, - 51.0269592 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.3305722, - 50.9304482 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -58.717462, - -34.655660499999996 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 13.3782117, - 52.643748 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -74.22499619999999, - 39.9702002 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 12.8543204, - 52.1685311 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.2974781, - 49.5207528 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -97.1550427, - 49.7674708 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.1750542, - 50.8107011 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -58.45181125, - -34.621799949999996 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -58.57463165, - -34.638976400000004 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 8.5020497, - 53.055716 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 13.3741941, - 52.6357059 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.3926121, - 50.926136299999996 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.24321665, - 41.4402457 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2420277, - 41.440289500000006 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -97.1550427, - 49.7674708 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 13.406043749999998, - 52.49700545 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.235782, - 50.7350492 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 8.998016, - 48.501502 - ] - } - }, - { - "type": "Feature", + 51.2156765 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "hke2912", + "uid": "5154951", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-02-21T10:52:44Z", + "reviewed_features": [], + "create": 5, + "modify": 21, + "delete": 0, + "area": 1.92834420000552e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 99675091, + "host": "pietervdvn.github.io", + "theme": "benches", + "imagery": "osm", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.9784675, + 51.45215465 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "hke2912", + "uid": "5154951", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-02-21T10:04:40Z", + "reviewed_features": [], + "create": 5, + "modify": 20, + "delete": 0, + "area": 0.00000633763242001317, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 99673436, + "host": "pietervdvn.github.io", + "theme": "benches", + "imagery": "osm", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.98123295, + 51.450460500000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Wim L", + "uid": "223681", + "editor": "MapComplete 0.5.0c", + "comment": "Adding data with #MapComplete for theme #artworks", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-02-21T01:52:13Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 99665427, + "host": "mapcomplete.osm.be", + "theme": "artworks", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -122.35004635, + 47.6504853 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Peter Elderson", + "uid": "7103674", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #wandelknooppunten", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-02-20T18:54:17Z", + "reviewed_features": [], + "create": 0, + "modify": 51, + "delete": 0, + "area": 0.00347447391719969, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 99656265, + "host": "mapcomplete.osm.be", + "theme": "wandelknooppunten", + "imagery": "osm", + "language": "nl", + "theme-creator": "Peter Elderson" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.912490200000001, + 52.077004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "milenasonneveld", + "uid": "8177639", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #klimbomen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-02-20T14:38:29Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 99644899, + "host": "pietervdvn.github.io", + "theme": "klimbomen", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4122499, + 50.9198635 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.5.0-rc2", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-02-20T01:12:14Z", + "reviewed_features": [], + "create": 1, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 99622784, + "host": "pietervdvn.github.io", + "theme": "cyclofix", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7043881, + 51.0527373 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "steven lauwers", + "uid": "6799245", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #geveltuintjes", + "comments_count": 2, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-02-19T20:05:16Z", + "reviewed_features": [], + "create": 1, + "modify": 6, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 99615501, + "host": "mapcomplete.osm.be", + "theme": "geveltuintjes", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.5483264, + 51.0209132 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "rfa31", + "uid": "1963468", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-02-19T19:56:14Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 99615186, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "NSW_LPI_Imagery", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 151.1473668, + -33.877031 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-8438616231", + "osm_id": 8438616231, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "tourism": "map" + } + } + ], + "user": "hke2912", + "uid": "5154951", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #maps", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-02-19T16:16:31Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 99606292, + "host": "pietervdvn.github.io", + "theme": "maps", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.9437802, + 51.4145483 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #geveltuintjes", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-02-19T16:16:11Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 99606276, + "host": "mapcomplete.osm.be", + "theme": "geveltuintjes", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4861886, + 51.0302155 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #nature", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-02-19T14:42:10Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 4.03171999982104e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 99601546, + "host": "mapcomplete.osm.be", + "theme": "nature", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.9678074, + 51.19856835 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-02-19T13:53:53Z", + "reviewed_features": [], + "create": 1, + "modify": 6, + "delete": 0, + "area": 0.00444619947470036, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 99599094, + "host": "pietervdvn.github.io", + "theme": "charging_stations", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.260727599999999, + 50.77372025 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-02-19T13:50:37Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.0000165706130800022, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 99598899, + "host": "pietervdvn.github.io", + "theme": "charging_stations", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.44946665, + 51.088295 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-02-19T09:00:23Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 0.00000288020294000058, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 99578370, + "host": "pietervdvn.github.io", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.4481166500000002, + 51.085109700000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "n1kn0k", + "uid": "867701", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-02-19T06:56:54Z", + "reviewed_features": [], + "create": 3, + "modify": 18, + "delete": 0, + "area": 11.6317125683349, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 99569813, + "host": "pietervdvn.github.io", + "theme": "cyclofix", + "imagery": "Mapbox", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 122.52171455000001, + 12.42032665 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #artworks", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-02-19T05:34:52Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 99563927, + "host": "pietervdvn.github.io", + "theme": "artworks", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.5916481, + -33.6048667 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #nature", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-02-19T01:10:08Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 99554379, + "host": "mapcomplete.osm.be", + "theme": "nature", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.6809309, + 51.0533349 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-02-18T20:52:12Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 99548215, + "host": "pietervdvn.github.io", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.1169699, + 51.1853225 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Nuytinck", + "uid": "3719237", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-02-18T13:18:21Z", + "reviewed_features": [], + "create": 1, + "modify": 8, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 99527340, + "host": "pietervdvn.github.io", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.0784276, + 50.9282274 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "CartoKees", + "uid": "927112", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-02-18T13:16:57Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 99527268, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "Actueel_ortho25_WMS", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.718829, + 51.9723273 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-02-17T17:05:43Z", + "reviewed_features": [], + "create": 0, + "modify": 6, + "delete": 0, + "area": 1.09913490003717e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 99467653, + "host": "pietervdvn.github.io", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.77061235, + -33.484625550000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-02-17T16:43:02Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 99466463, + "host": "mapcomplete.osm.be", + "theme": "shops", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.730679, + 51.0570573 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-02-17T13:52:59Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 99457652, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CyclOSM", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3189133, + 50.7844049 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "hke2912", + "uid": "5154951", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #artworks", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-02-16T18:56:54Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 99400869, + "host": "pietervdvn.github.io", + "theme": "artworks", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.9783645, + 51.4469767 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "hke2912", + "uid": "5154951", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-02-16T18:55:03Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 99400802, + "host": "pietervdvn.github.io", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.9776831, + 51.4467987 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "hke2912", + "uid": "5154951", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-02-16T18:42:18Z", + "reviewed_features": [], + "create": 1, + "modify": 8, + "delete": 0, + "area": 0.0000100451538600093, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 99400332, + "host": "pietervdvn.github.io", + "theme": "toilets", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.9754290999999995, + 51.448456750000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-02-16T18:15:26Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 99399352, + "host": "pietervdvn.github.io", + "theme": "trees", + "imagery": "CyclOSM", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.7685697, + -33.4852773 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Nuytinck", + "uid": "3719237", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-02-16T18:04:39Z", + "reviewed_features": [], + "create": 1, + "modify": 6, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 99398917, + "host": "pietervdvn.github.io", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.6361571, + 50.8671482 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "MAGONA", + "uid": "3087858", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-02-16T18:02:52Z", + "reviewed_features": [], + "create": 5, + "modify": 16, + "delete": 0, + "area": 6.45117500010796e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 99398824, + "host": "pietervdvn.github.io", + "theme": "trees", + "imagery": "osm", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.76847465, + -33.48529165 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "hke2912", + "uid": "5154951", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-02-16T18:02:10Z", + "reviewed_features": [], + "create": 10, + "modify": 50, + "delete": 0, + "area": 0.000012911669999997, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 99398790, + "host": "pietervdvn.github.io", + "theme": "benches", + "imagery": "osm", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.980164, + 51.4515591 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-02-16T13:26:43Z", + "reviewed_features": [], + "create": 2, + "modify": 1, + "delete": 0, + "area": 1.54710000005867e-10, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 99385395, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.6776237500000004, + 51.05316075 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #nature", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-02-16T13:01:22Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 99383785, + "host": "mapcomplete.osm.be", + "theme": "nature", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.6923423, + 51.0522571 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #benchesandpicnictables", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-02-16T12:53:45Z", + "reviewed_features": [], + "create": 5, + "modify": 0, + "delete": 0, + "area": 0.0000388253424200023, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 99383257, + "host": "mapcomplete.osm.be", + "theme": "benchesandpicnictables", + "imagery": "osm", + "language": "en", + "theme-creator": "Peter Elderson" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.6873641499999996, + 51.051935099999994 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + }, + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-8428431653", + "osm_id": 8428431653, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "tourism": "map" + } + } + ], + "user": "hke2912", + "uid": "5154951", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #maps", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-02-16T10:12:23Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 99369933, + "host": "pietervdvn.github.io", + "theme": "maps", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.8836749, + 51.3929233 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-02-16T04:02:06Z", + "reviewed_features": [], + "create": 2, + "modify": 9, + "delete": 0, + "area": 1.15657800001288e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 99342577, + "host": "pietervdvn.github.io", + "theme": "trees", + "imagery": "osm", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.76856685, + -33.4855934 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "MAGONA", + "uid": "3087858", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-02-16T03:56:45Z", + "reviewed_features": [], + "create": 5, + "modify": 15, + "delete": 0, + "area": 9.26386800009272e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 99342326, + "host": "pietervdvn.github.io", + "theme": "trees", + "imagery": "osm", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.76843740000001, + -33.4854654 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 42, + "name": "Invalid tag modification" + } + ], + "tags": [], + "features": [ + { + "url": "node-6040165027", + "osm_id": 6040165027, + "reasons": [ + 42 + ], + "version": 3, + "primary_tags": { + "leisure": "picnic_table" + } + } + ], + "user": "Peter Elderson", + "uid": "7103674", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #benchesandpicnictables", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-02-15T21:49:19Z", + "reviewed_features": [], + "create": 18, + "modify": 24, + "delete": 0, + "area": 0.000616612296299855, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 99333909, + "host": "mapcomplete.osm.be", + "theme": "benchesandpicnictables", + "imagery": "osm", + "language": "nl", + "theme-creator": "Peter Elderson" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.6295405, + 52.06749415 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Peter Elderson", + "uid": "7103674", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #wandelknooppunten", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-02-15T21:19:46Z", + "reviewed_features": [], + "create": 0, + "modify": 26, + "delete": 0, + "area": 0.00221424700800009, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 99333011, + "host": "mapcomplete.osm.be", + "theme": "wandelknooppunten", + "imagery": "osm", + "language": "nl", + "theme-creator": "Peter Elderson" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.6331904999999995, + 52.06488425 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-02-15T15:54:56Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 99320724, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.5003356, + 50.8024306 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-02-15T14:31:10Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 99316602, + "host": "pietervdvn.github.io", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.331597, + -27.3667738 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "ielham", + "uid": "462218", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #1roadAlllanes", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-02-13T21:35:05Z", + "reviewed_features": [], + "create": 0, + "modify": 6, + "delete": 0, + "area": 0.0000545504767499748, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 99231088, + "host": "mapcomplete.osm.be", + "theme": "1roadalllanes", + "imagery": "osm", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -6.9320182500000005, + 37.268227350000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "yopaseopor", + "uid": "500572", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #1roadAlllanes", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-02-12T23:45:20Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.0000139070528799998, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 99199529, + "host": "mapcomplete.osm.be", + "theme": "1roadalllanes", + "imagery": "EsriWorldImageryClarity", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.020231, + 41.3118936 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Sharwin_F", + "uid": "147555", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #crossingtime", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-02-12T23:17:50Z", + "reviewed_features": [], + "create": 0, + "modify": 71, + "delete": 0, + "area": 0.0000199985392000304, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 99199139, + "host": "mapcomplete.osm.be", + "theme": "crossingtime", + "imagery": "osm", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.1802422999999997, + 41.4315176 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Sharwin_F", + "uid": "147555", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #restaurants", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-02-12T23:04:57Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 99198918, + "host": "mapcomplete.osm.be", + "theme": "restaurants", + "imagery": "osm", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.1783346, + 41.4315121 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Sharwin_F", + "uid": "147555", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #wherethesidewalkshavenoname", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-02-12T22:55:19Z", + "reviewed_features": [], + "create": 0, + "modify": 6, + "delete": 0, + "area": 0.00000103633530000091, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 99198737, + "host": "mapcomplete.osm.be", + "theme": "wherethesidewalkshavenoname", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.1799567, + 41.43060495 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "CordeB", + "uid": "5794153", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #wandelknooppunten", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-02-12T08:47:21Z", + "reviewed_features": [], + "create": 0, + "modify": 9, + "delete": 0, + "area": 0.000290643998239945, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 99160858, + "host": "mapcomplete.osm.be", + "theme": "wandelknooppunten", + "imagery": "osm", + "language": "en", + "theme-creator": "Peter Elderson" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.94941795, + 53.081298000000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #artworks", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-02-12T03:27:26Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 99142059, + "host": "pietervdvn.github.io", + "theme": "artworks", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -71.6323415, + -33.0487834 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #artworks", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-02-11T19:05:19Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 99129884, + "host": "pietervdvn.github.io", + "theme": "artworks", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -71.6298409, + -33.044419 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "eginhard", + "uid": "12637224", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-02-11T15:36:38Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 99117277, + "host": "pietervdvn.github.io", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.1549186, + 46.3511896 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Stinus_Clasius", + "uid": "1086503", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #vaccination_centres", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-02-10T20:14:44Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 99062508, + "host": "mapcomplete.osm.be", + "theme": "vaccination_centres", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.7511256, + 51.1837616 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-02-10T20:10:38Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 99062399, + "host": "pietervdvn.github.io", + "theme": "trees", + "imagery": "CyclOSM", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.5700547, + -33.5921539 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "alejandroscf", + "uid": "31829", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #wherethesidewalkshavenoname", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-02-09T22:46:06Z", + "reviewed_features": [], + "create": 0, + "modify": 6, + "delete": 0, + "area": 0.000211943643599981, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 99003014, + "host": "mapcomplete.osm.be", + "theme": "wherethesidewalkshavenoname", + "imagery": "osm", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.8705054999999999, + 41.6339055 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-02-09T16:08:30Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 98988313, + "host": "pietervdvn.github.io", + "theme": "trees", + "imagery": "osm", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.5705244, + -33.591813 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-02-09T15:10:19Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 98985394, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2936882, + 50.7900105 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #picnictable", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-02-09T14:30:27Z", + "reviewed_features": [], + "create": 3, + "modify": 0, + "delete": 0, + "area": 0.00000422537075999923, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 98983488, + "host": "mapcomplete.osm.be", + "theme": "picnictable", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.6912024, + 51.06882145 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Stinus_Clasius", + "uid": "1086503", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #vaccination_centres", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-02-08T14:12:15Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0.00527111560527986, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 98915231, + "host": "mapcomplete.osm.be", + "theme": "vaccination_centres", + "imagery": "AGIV", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.94485965, + 51.3509725 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Stinus_Clasius", + "uid": "1086503", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #vaccination_centres", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-02-08T12:33:10Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000107040395999183, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 98910316, + "host": "mapcomplete.osm.be", + "theme": "vaccination_centres", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.96971445, + 51.4021099 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Koen Rijnsent", + "uid": "4569696", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-02-08T12:00:24Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 0.00000917299718999792, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 98908195, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.124745450000001, + 52.07666125 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Koen Rijnsent", + "uid": "4569696", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-02-08T11:59:39Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 98908156, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.1254283, + 52.0800196 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Stinus_Clasius", + "uid": "1086503", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #vaccination_centres", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-02-08T08:00:43Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.00000107040395999183, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 98890818, + "host": "mapcomplete.osm.be", + "theme": "vaccination_centres", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.96971445, + 51.4021099 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-02-08T01:26:46Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 98870697, + "host": "pietervdvn.github.io", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.6703281, + -33.4378348 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-02-08T00:57:40Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 2.43294000030679e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 98870223, + "host": "pietervdvn.github.io", + "theme": "trees", + "imagery": "osm", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.66508205, + -33.4413164 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "habi", + "uid": "15671", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-02-07T17:20:31Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 98858480, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.4155033, + 46.9354862 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Koen Rijnsent", + "uid": "4569696", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-02-07T16:00:08Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 98855499, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.1240626, + 52.0733029 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "flo2154", + "uid": "348648", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-02-06T22:55:53Z", + "reviewed_features": [], + "create": 2, + "modify": 3, + "delete": 0, + "area": 7.61108739997702e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 98833004, + "host": "pietervdvn.github.io", + "theme": "benches", + "imagery": "EsriWorldImagery", + "language": "de", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.78176805, + 48.0965631 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "yopaseopor", + "uid": "500572", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #wherethesidewalkshavenoname", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-02-06T18:09:13Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 0.00000555813657000362, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 98824212, + "host": "mapcomplete.osm.be", + "theme": "wherethesidewalkshavenoname", + "imagery": "osm", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.1590598500000002, + 41.43716725 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "mtaborda", + "uid": "358284", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #containeronvas", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-02-06T17:39:00Z", + "reviewed_features": [], + "create": 3, + "modify": 4, + "delete": 0, + "area": 7.6068360001144e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 98823177, + "host": "pietervdvn.github.io", + "theme": "containeronvas", + "imagery": "osm", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -6.0178028, + 38.2408024 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "nlehuby", + "uid": "1424448", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-02-06T11:09:02Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 98808335, + "host": "pietervdvn.github.io", + "theme": "aed", + "imagery": "osm", + "language": "fr", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.1850213, + 48.9201129 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "nlehuby", + "uid": "1424448", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-02-06T11:08:37Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 98808325, + "host": "pietervdvn.github.io", + "theme": "aed", + "imagery": "osm", + "language": "fr", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.1850213, + 48.9201129 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Peter Elderson", + "uid": "7103674", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #benchesandpicnictables", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-02-05T15:41:55Z", + "reviewed_features": [], + "create": 6, + "modify": 7, + "delete": 0, + "area": 0.000110502598029977, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 98777544, + "host": "mapcomplete.osm.be", + "theme": "benchesandpicnictables", + "imagery": "osm", + "language": "nl", + "theme-creator": "Peter Elderson" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.63421855, + 51.96134585 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Peter Elderson", + "uid": "7103674", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #wandelknooppunten", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-02-05T14:49:51Z", + "reviewed_features": [], + "create": 0, + "modify": 16, + "delete": 0, + "area": 0.00054876905765006, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 98775172, + "host": "mapcomplete.osm.be", + "theme": "wandelknooppunten", + "imagery": "osm", + "language": "nl", + "theme-creator": "Peter Elderson" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.630075550000001, + 51.96047885 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-02-05T14:32:34Z", + "reviewed_features": [], + "create": 3, + "modify": 1, + "delete": 0, + "area": 0.0000060126651699992, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 98774403, + "host": "pietervdvn.github.io", + "theme": "trees", + "imagery": "EsriWorldImageryClarity", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.24551165, + -39.81183395 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Peter Elderson", + "uid": "7103674", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #benchesandpicnictables", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-02-05T13:11:08Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 98770620, + "host": "mapcomplete.osm.be", + "theme": "benchesandpicnictables", + "imagery": "osm", + "language": "nl", + "theme-creator": "Peter Elderson" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.6314213, + 51.9586447 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Nienke_Meeuwissen", + "uid": "10628914", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-02-05T10:01:12Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 98758800, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.2644413, + 51.9566396 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-02-05T05:16:41Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 98740296, + "host": "pietervdvn.github.io", + "theme": "trees", + "imagery": "EsriWorldImageryClarity", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.666665, + -33.4405009 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-02-04T20:32:42Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 1.21592550000783e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 98726086, + "host": "pietervdvn.github.io", + "theme": "trees", + "imagery": "osm", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.66548725, + -33.44066745000001 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-02-04T20:20:30Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 98725717, + "host": "pietervdvn.github.io", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.6649823, + -33.44123 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #paden", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-02-04T15:27:17Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 9.37899469997084e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 98713865, + "host": "mapcomplete.osm.be", + "theme": "paden", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.23337505, + 50.71058015 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-02-04T13:53:55Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 98709530, + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "AGIV", + "language": "nl", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4937944, + 50.8055185 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "habi", + "uid": "15671", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-02-04T12:20:46Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 98705104, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.419711, + 46.932459 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "GOwin", + "uid": "1041828", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-02-04T01:50:03Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 98672493, + "host": "pietervdvn.github.io", + "theme": "cyclofix", + "imagery": "CyclOSM", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 123.9427891, + 10.3279113 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #vaccination_centres", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-02-04T00:16:39Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 98670888, + "host": "mapcomplete.osm.be", + "theme": "vaccination_centres", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.212412, + 51.1812564 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #personal", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-02-03T20:20:41Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 98665284, + "host": "mapcomplete.osm.be", + "theme": "personal", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2198417, + 51.2156931 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Kathelijne", + "uid": "6761922", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-02-03T19:21:28Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 98663251, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2243352, + 51.2043211 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Kathelijne", + "uid": "6761922", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-02-03T19:19:13Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 2.72532959999903e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 98663183, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2250906500000003, + 51.2052578 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Kathelijne", + "uid": "6761922", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-02-03T19:18:57Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 98663172, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2244503, + 51.2051514 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Peter Elderson", + "uid": "7103674", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #benchesandpicnictables", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-02-03T17:50:20Z", + "reviewed_features": [], + "create": 15, + "modify": 21, + "delete": 0, + "area": 0.000539486049600016, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 98659703, + "host": "mapcomplete.osm.be", + "theme": "benchesandpicnictables", + "imagery": "osm", + "language": "nl", + "theme-creator": "Peter Elderson" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.54923275, + 51.993055 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Peter Elderson", + "uid": "7103674", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #benchesandpicnictables", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-02-03T16:48:51Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 98656940, + "host": "mapcomplete.osm.be", + "theme": "benchesandpicnictables", + "imagery": "osm", + "language": "nl", + "theme-creator": "Peter Elderson" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.5480679, + 51.9716756 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Peter Elderson", + "uid": "7103674", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #wandelknooppunten", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-02-03T16:12:07Z", + "reviewed_features": [], + "create": 0, + "modify": 13, + "delete": 0, + "area": 0.000508466779260014, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 98655231, + "host": "mapcomplete.osm.be", + "theme": "wandelknooppunten", + "imagery": "osm", + "language": "nl", + "theme-creator": "Peter Elderson" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.55018145, + 51.9939315 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Nuytinck", + "uid": "3719237", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-02-03T12:29:31Z", + "reviewed_features": [], + "create": 1, + "modify": 7, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 98644606, + "host": "pietervdvn.github.io", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.6375207, + 50.9306339 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Nicolas Janssoone", + "uid": "12598029", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #fritures", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-02-03T11:14:55Z", + "reviewed_features": [], + "create": 1, + "modify": 10, + "delete": 0, + "area": 0.0000614205883999674, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 98640403, + "host": "pietervdvn.github.io", + "theme": "fritures", + "imagery": "osm", + "language": "fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.7848262999999998, + 50.288463899999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #nature", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-02-03T09:31:13Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 98634108, + "host": "mapcomplete.osm.be", + "theme": "nature", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.8717445, + 50.3763515 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Peter Elderson", + "uid": "7103674", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #wandelknooppunten", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-02-03T09:05:48Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.0000764933703599962, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 98632402, + "host": "mapcomplete.osm.be", + "theme": "wandelknooppunten", + "imagery": "osm", + "language": "nl", + "theme-creator": "Peter Elderson" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.54659575, + 51.9802843 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-02-03T08:48:37Z", + "reviewed_features": [], + "create": 1, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 98631263, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.8759797, + 50.393442 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "NimdaBE", + "uid": "657676", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #vaccination_centres", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-02-03T07:25:00Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 98626175, + "host": "pietervdvn.github.io", + "theme": "vaccination_centres", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.063949, + 50.9178564 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Jorieke V", + "uid": "378610", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-02-02T22:00:09Z", + "reviewed_features": [], + "create": 2, + "modify": 8, + "delete": 0, + "area": 1.43007700714898, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 98603682, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.39102705, + 51.41294605 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "schoschi", + "uid": "231006", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #openinghourscovid19", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-02-02T17:25:24Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 98592602, + "host": "pietervdvn.github.io", + "theme": "openinghourscovid19", + "imagery": "osm", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.8458316, + 47.9957557 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Nuytinck", + "uid": "3719237", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-02-02T10:24:47Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 98569828, + "host": "pietervdvn.github.io", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.8655851, + 50.4656655 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-02-02T10:08:21Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 98568686, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.7434571, + 50.4684935 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Filipvdl", + "uid": "1930844", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-02-02T09:36:41Z", + "reviewed_features": [], + "create": 1, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 98566470, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.6952149, + 51.0429887 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Filipvdl", + "uid": "1930844", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-02-02T09:27:24Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0.00072945196542005, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 98565848, + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "osm", + "language": "nl", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.72338, + 51.074132750000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #wiki-User-joost_schouppe-geveltuintjes", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-02-02T08:00:32Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000243032740999708, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 98559761, + "host": "mapcomplete.osm.be", + "theme": "geveltuintjes", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.23295315, + 51.19848565 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #campersite", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-02-01T19:28:13Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000249845138000658, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 98530962, + "host": "mapcomplete.osm.be", + "theme": "campersite", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.9621834, + 43.09315325 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Nuytinck", + "uid": "3719237", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-02-01T18:45:43Z", + "reviewed_features": [], + "create": 4, + "modify": 24, + "delete": 0, + "area": 0.0417926529722997, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 98529536, + "host": "pietervdvn.github.io", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.5935324499999997, + 51.0801166 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Koen Rijnsent", + "uid": "4569696", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-02-01T15:00:21Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 98519285, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.1249256, + 52.0723886 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #nature", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-02-01T14:54:29Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 98519021, + "host": "mapcomplete.osm.be", + "theme": "nature", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.6856499, + 50.4803465 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Koen Rijnsent", + "uid": "4569696", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #artworks", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-02-01T14:21:27Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 98517414, + "host": "mapcomplete.osm.be", + "theme": "artworks", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.1289433, + 52.0751935 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Frans_Napaters", + "uid": "3574538", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-02-01T12:53:51Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 98512905, + "host": "pietervdvn.github.io", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.9011496, + 51.0901087 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Stinus_Clasius", + "uid": "1086503", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-02-01T10:24:09Z", + "reviewed_features": [], + "create": 1, + "modify": 5, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 98502118, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.7549933, + 51.1682088 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.6.4a", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-31T23:01:55Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 4.28969199977257e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102082219, + "host": "pietervdvn.github.io", + "theme": "trees", + "imagery": "osm", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.23100955000001, + -39.8449823 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "WinstonSmith", + "uid": "36030", + "editor": "MapComplete 0.6.4", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-03-31T22:23:15Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102081437, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.3452181, + 44.4918527 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.6.4a", + "comment": "Adding data with #MapComplete for theme #speelplekken", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-31T17:17:48Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 2.10184219999421e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102070461, + "host": "pietervdvn.github.io", + "theme": "speelplekken", + "imagery": "CartoDB.Positron", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.47904395, + 51.1638611 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "WinstonSmith", + "uid": "36030", + "editor": "MapComplete 0.6.4", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-03-31T15:45:47Z", + "reviewed_features": [], + "create": 2, + "modify": 10, + "delete": 0, + "area": 0.000461537299639935, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102066153, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.3429674, + 44.49055415 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "WinstonSmith", + "uid": "36030", + "editor": "MapComplete 0.6.4", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-03-31T15:41:05Z", + "reviewed_features": [], + "create": 3, + "modify": 10, + "delete": 0, + "area": 0.000488881904280066, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102065964, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.3430292, + 44.4900047 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.6.4", + "comment": "Adding data with #MapComplete for theme #fietsstraten", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-03-31T14:20:18Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 2.11753039999661e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102061652, + "host": "mapcomplete.osm.be", + "theme": "fietsstraten", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.237850249999999, + 50.7356509 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-8578720479", + "name": "Op Wielekes Muide-Meulestede", + "osm_id": 8578720479, + "reasons": [ + 43 + ], + "version": 6, + "primary_tags": { + "amenity": "bicycle_library" + } + }, + { + "url": "node-8578970267", + "name": "Op Wielekes Muide-Buurtloods", + "osm_id": 8578970267, + "reasons": [ + 43 + ], + "version": 6, + "primary_tags": { + "amenity": "bicycle_library" + } + }, + { + "url": "node-8578716211", + "name": "Op Wielekes Brugse Poort", + "osm_id": 8578716211, + "reasons": [ + 43 + ], + "version": 5, + "primary_tags": { + "amenity": "bicycle_library" + } + } + ], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.6.4", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-03-31T13:30:20Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 0.00216787297286009, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102059060, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.722367, + 51.06025905 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + }, + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-8578982212", + "name": "Op Wielekes Heilig Hart", + "osm_id": 8578982212, + "reasons": [ + 43 + ], + "version": 5, + "primary_tags": { + "amenity": "bicycle_library" + } + }, + { + "url": "node-8578989106", + "name": "Op Wielekes Ledeberg", + "osm_id": 8578989106, + "reasons": [ + 43 + ], + "version": 5, + "primary_tags": { + "amenity": "bicycle_library" + } + }, + { + "url": "node-8578970267", + "name": "Op Wielekes Muide-Buurtloods", + "osm_id": 8578970267, + "reasons": [ + 43 + ], + "version": 5, + "primary_tags": { + "amenity": "bicycle_library" + } + } + ], + "user": "Eva Fietsambassade", + "uid": "12967061", + "editor": "MapComplete 0.6.4", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-31T11:46:57Z", + "reviewed_features": [], + "create": 4, + "modify": 21, + "delete": 0, + "area": 0.00320180883804028, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102053164, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7259104499999998, + 51.0442976 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "WinstonSmith", + "uid": "36030", + "editor": "MapComplete 0.6.4", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-03-31T11:26:23Z", + "reviewed_features": [], + "create": 8, + "modify": 11, + "delete": 0, + "area": 0.0000584013824799643, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102051867, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.333306, + 44.4993477 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "WinstonSmith", + "uid": "36030", + "editor": "MapComplete 0.6.4", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-03-31T11:12:41Z", + "reviewed_features": [], + "create": 3, + "modify": 5, + "delete": 0, + "area": 0.0000272391111300007, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102050957, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.33470305, + 44.50277775 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "WinstonSmith", + "uid": "36030", + "editor": "MapComplete 0.6.4", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-03-31T11:12:01Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102050912, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.3382193, + 44.5048172 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "yopaseopor", + "uid": "500572", + "editor": "MapComplete 0.6.4", + "comment": "Adding data with #MapComplete for theme #localrevision", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-31T10:59:12Z", + "reviewed_features": [], + "create": 0, + "modify": 33, + "delete": 0, + "area": 0.00000671053630000524, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102049993, + "host": "pietervdvn.github.io", + "theme": "localrevision", + "imagery": "osm", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.72181375, + 41.220075800000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Maarten Vrebos", + "uid": "2359612", + "editor": "MapComplete 0.6.4", + "comment": "Adding data with #MapComplete for theme #fietsstraten", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-31T10:58:50Z", + "reviewed_features": [], + "create": 0, + "modify": 6, + "delete": 0, + "area": 0.0000907470661500307, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102049972, + "host": "mapcomplete.osm.be", + "theme": "fietsstraten", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.45347285, + 51.18067835 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.6.4", + "comment": "Adding data with #MapComplete for theme #fitness_station", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-03-31T10:37:50Z", + "reviewed_features": [], + "create": 5, + "modify": 14, + "delete": 0, + "area": 0.0000463990202499652, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102048412, + "host": "mapcomplete.osm.be", + "theme": "fitness_station", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.68603245, + 51.04304185 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + }, + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-8578720479", + "osm_id": 8578720479, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "amenity": "bicycle_library" + } + }, + { + "url": "node-8578716211", + "name": "Op Wielekes Brugse Poort", + "osm_id": 8578716211, + "reasons": [ + 43 + ], + "version": 4, + "primary_tags": { + "amenity": "bicycle_library" + } + } + ], + "user": "Eva Fietsambassade", + "uid": "12967061", + "editor": "MapComplete 0.6.4", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-31T10:11:48Z", + "reviewed_features": [], + "create": 3, + "modify": 8, + "delete": 0, + "area": 0.000689002046790121, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102046524, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.71299535, + 51.07116415 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Kinjkajh", + "uid": "12107222", + "editor": "MapComplete 0.6.4", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-03-30T20:11:28Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.000026075676419979, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102007350, + "host": "pietervdvn.github.io", + "theme": "surveillance", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.88819725, + 51.0026768 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "WinstonSmith", + "uid": "36030", + "editor": "MapComplete 0.6.3b", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-03-30T15:40:31Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101996119, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.310816, + 44.4956116 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "WinstonSmith", + "uid": "36030", + "editor": "MapComplete 0.6.3b", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-03-30T15:29:35Z", + "reviewed_features": [], + "create": 25, + "modify": 30, + "delete": 0, + "area": 0.000363361021730053, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101995576, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.31224255, + 44.49972205 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-8574926839", + "name": "SELIM - Banco de Bicicletas", + "osm_id": 8574926839, + "reasons": [ + 43 + ], + "version": 7, + "primary_tags": { + "amenity": "bicycle_library" + } + } + ], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.6.3b", + "comment": "Adding data with #MapComplete for theme #bicyclelib", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-03-30T14:43:19Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101993159, + "host": "mapcomplete.osm.be", + "theme": "bicyclelib", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -9.1330343, + 38.7351593 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "R Felix", + "uid": "11207593", + "editor": "MapComplete 0.6.3a", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-30T11:40:48Z", + "reviewed_features": [], + "create": 0, + "modify": 8, + "delete": 0, + "area": 0.0000211367961999858, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101981953, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -9.13839015, + 38.7223661 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + }, + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-8574926839", + "name": "SELIM - Banco de Bicicletas", + "osm_id": 8574926839, + "reasons": [ + 43 + ], + "version": 6, + "primary_tags": { + "amenity": "bicycle_library" + } + } + ], + "user": "R Felix", + "uid": "11207593", + "editor": "MapComplete 0.6.3a", + "comment": "Adding data with #MapComplete for theme #bicyclelib", + "comments_count": 1, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-30T11:33:05Z", + "reviewed_features": [], + "create": 1, + "modify": 5, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101981404, + "host": "mapcomplete.osm.be", + "theme": "bicyclelib", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -9.1330343, + 38.7351593 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Koen Rijnsent", + "uid": "4569696", + "editor": "MapComplete 0.6.3a", + "comment": "Adding data with #MapComplete for theme #personal", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-30T09:51:57Z", + "reviewed_features": [], + "create": 9, + "modify": 23, + "delete": 0, + "area": 0.000225127012139887, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101973779, + "host": "mapcomplete.osm.be", + "theme": "personal", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.1372851, + 52.08506655 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Kinjkajh", + "uid": "12107222", + "editor": "MapComplete 0.6.4", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-29T22:31:56Z", + "reviewed_features": [], + "create": 5, + "modify": 14, + "delete": 0, + "area": 0.0113287583699996, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101942872, + "host": "pietervdvn.github.io", + "theme": "surveillance", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.9689054500000003, + 50.9751826 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "WinstonSmith", + "uid": "36030", + "editor": "MapComplete 0.6.3a", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-03-29T17:00:43Z", + "reviewed_features": [], + "create": 21, + "modify": 27, + "delete": 0, + "area": 0.000157813111599962, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101930669, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.3536417, + 44.5388807 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Fauranië", + "uid": "12949754", + "editor": "MapComplete 0.6.3a", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-29T13:03:34Z", + "reviewed_features": [], + "create": 5, + "modify": 8, + "delete": 0, + "area": 5.19124879999881e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101919443, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.0958256, + 50.99626495 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Fauranië", + "uid": "12949754", + "editor": "MapComplete 0.6.3a", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-29T12:43:02Z", + "reviewed_features": [], + "create": 2, + "modify": 4, + "delete": 0, + "area": 0.0000125341343999999, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101918321, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.09523855, + 50.995809300000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Wim L", + "uid": "223681", + "editor": "MapComplete 0.6.3", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-03-28T23:41:29Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101892733, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -122.37163425, + 47.6802721 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.6.3", + "comment": "Adding data with #MapComplete for theme #fietsstraten", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-28T23:26:57Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 1.69652520004581e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101892444, + "host": "pietervdvn.github.io", + "theme": "fietsstraten", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.1760177, + 51.01786285 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "MxxCon", + "uid": "384667", + "editor": "MapComplete 0.6.3", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-03-28T23:18:40Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.000335868545820107, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101892297, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.94073589999999, + 40.58705475 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Michel Stuyts", + "uid": "62284", + "editor": "MapComplete 0.6.3", + "comment": "Adding data with #MapComplete for theme #nature", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-28T22:55:25Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.0000221216707799775, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101891909, + "host": "mapcomplete.osm.be", + "theme": "nature", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.46093245, + 51.1793589 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "tastrax", + "uid": "712752", + "editor": "MapComplete 0.6.2", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-28T21:30:18Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101890254, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 148.0752161, + -42.1237047 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.6.3", + "comment": "Adding data with #MapComplete for theme #fietsstraten", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-28T21:16:30Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 7.77196549999459e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101889954, + "host": "pietervdvn.github.io", + "theme": "fietsstraten", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.15613075, + 51.01908525 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Sharwin_F", + "uid": "147555", + "editor": "MapComplete 0.6.2", + "comment": "Adding data with #MapComplete for theme #wherethesidewalkshavenoname", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-28T21:09:58Z", + "reviewed_features": [], + "create": 0, + "modify": 98, + "delete": 0, + "area": 0.0000918317736599929, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101889823, + "host": "mapcomplete.osm.be", + "theme": "wherethesidewalkshavenoname", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.1795777000000003, + 41.43358645 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Jakka", + "uid": "2403313", + "editor": "MapComplete 0.6.2", + "comment": "Adding data with #MapComplete for theme #ghostbikes", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-28T18:27:58Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101885043, + "host": "mapcomplete.osm.be", + "theme": "ghostbikes", + "imagery": "CartoDB.Positron", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.163357, + 51.1860935 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Devolved", + "uid": "663717", + "editor": "MapComplete 0.6.2", + "comment": "Adding data with #MapComplete for theme #campersite", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-03-28T18:25:29Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.00000293467339999062, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101884979, + "host": "mapcomplete.osm.be", + "theme": "campersite", + "imagery": "osm", + "language": "en", + "theme-creator": "joost schouppe" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -118.7131072, + 34.09303185 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "bbigras", + "uid": "7226", + "editor": "MapComplete 0.6.2", + "comment": "Adding data with #MapComplete for theme #artworks", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-28T16:34:25Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101881241, + "host": "mapcomplete.osm.be", + "theme": "artworks", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.6572492, + 45.5734327 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dkf2010", + "uid": "685599", + "editor": "MapComplete 0.6.2", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-28T16:12:39Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 1.68714999994805e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101880355, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.9091482, + 53.60843175 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "grouper", + "uid": "369983", + "editor": "MapComplete 0.6.2", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-28T15:37:59Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101879051, + "host": "mapcomplete.osm.be", + "theme": "shops", + "imagery": "EsriWorldImagery", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -80.2696517, + 27.1695582 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "sjokomoeske", + "uid": "10187049", + "editor": "MapComplete 0.6.2", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-03-28T15:25:26Z", + "reviewed_features": [], + "create": 4, + "modify": 5, + "delete": 0, + "area": 1.81583220002028e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101878531, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.126649649999999, + 51.0239939 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "WinstonSmith", + "uid": "36030", + "editor": "MapComplete 0.6.2", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-03-28T14:41:40Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.00109529919594016, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101876634, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.196214600000001, + 45.45284085 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "schoka", + "uid": "818053", + "editor": "MapComplete 0.6.2", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-28T13:23:49Z", + "reviewed_features": [], + "create": 0, + "modify": 11, + "delete": 0, + "area": 0.000283911770250118, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101873402, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "de", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 12.15159525, + 48.559054849999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "WinstonSmith", + "uid": "36030", + "editor": "MapComplete 0.6.2", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-03-28T13:16:21Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101873159, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.1102693, + 45.4307345 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "JackGilmore", + "uid": "11412261", + "editor": "MapComplete 0.6.2", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-28T12:54:24Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101872302, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.9139572, + 56.1184677 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "ptjamp", + "uid": "12828211", + "editor": "MapComplete 0.6.3", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-28T12:35:14Z", + "reviewed_features": [], + "create": 3, + "modify": 4, + "delete": 0, + "area": 0.0000730267852499537, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101871590, + "host": "pietervdvn.github.io", + "theme": "surveillance", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.96018855, + 51.21921105 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.6.2", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-03-28T12:18:38Z", + "reviewed_features": [], + "create": 3, + "modify": 9, + "delete": 0, + "area": 1.45321019999903e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101870926, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.22379395, + 51.2099135 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.6.2", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-03-28T12:16:01Z", + "reviewed_features": [], + "create": 0, + "modify": 12, + "delete": 0, + "area": 0.000463036517680166, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101870809, + "host": "mapcomplete.osm.be", + "theme": "grb", + "imagery": "AGIVFlandersGRB", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2070707, + 51.2057659 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Jez Nicholson", + "uid": "7329", + "editor": "MapComplete 0.6.2", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-28T11:16:12Z", + "reviewed_features": [], + "create": 0, + "modify": 25, + "delete": 0, + "area": 0.00000321843779998359, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101868814, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.13932645, + 50.8420987 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "ptjamp", + "uid": "12828211", + "editor": "MapComplete 0.6.3", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-28T09:15:16Z", + "reviewed_features": [], + "create": 39, + "modify": 67, + "delete": 0, + "area": 0.000604927090949943, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101865315, + "host": "pietervdvn.github.io", + "theme": "surveillance", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.92375535, + 51.22478025 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.6.3", + "comment": "Adding data with #MapComplete for theme #artworks", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-27T19:57:29Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101852349, + "host": "pietervdvn.github.io", + "theme": "artworks", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.6707891, + -33.435642 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "klimaanvzw", + "uid": "6799245", + "editor": "MapComplete 0.6.2", + "comment": "Adding data with #MapComplete for theme #facadegardens", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-27T16:25:48Z", + "reviewed_features": [], + "create": 1, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101844159, + "host": "mapcomplete.osm.be", + "theme": "facadegardens", + "imagery": "osm", + "language": "nl", + "theme-creator": "joost schouppe; stla" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.473981, + 51.0323917 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "BS97n", + "uid": "2386081", + "editor": "MapComplete 0.6.2", + "comment": "Adding data with #MapComplete for theme #personal", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-03-27T15:22:54Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 6.94943819998806e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101841292, + "host": "mapcomplete.osm.be", + "theme": "personal", + "imagery": "osm", + "language": "de", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.211270150000001, + 51.511902000000006 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "BS97n", + "uid": "2386081", + "editor": "MapComplete 0.6.2", + "comment": "Adding data with #MapComplete for theme #personal", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-03-27T11:55:35Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.00015031671254999, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101834425, + "host": "mapcomplete.osm.be", + "theme": "personal", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.34247735, + 51.47048595 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Koen Rijnsent", + "uid": "4569696", + "editor": "MapComplete 0.6.2", + "comment": "Adding data with #MapComplete for theme #personal", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-03-27T11:24:03Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101833538, + "host": "mapcomplete.osm.be", + "theme": "personal", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.1234536, + 52.0823233 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.6.3", + "comment": "Adding data with #MapComplete for theme #fietsstraten", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-27T09:10:34Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 7.20729839999396e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101829358, + "host": "pietervdvn.github.io", + "theme": "fietsstraten", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.1308647999999994, + 50.998833 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Koen Rijnsent", + "uid": "4569696", + "editor": "MapComplete 0.6.2", + "comment": "Adding data with #MapComplete for theme #personal", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-27T08:58:17Z", + "reviewed_features": [], + "create": 5, + "modify": 9, + "delete": 0, + "area": 1.53201279999393e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101829031, + "host": "mapcomplete.osm.be", + "theme": "personal", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.115708850000001, + 52.09265499999999 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Stinus_Clasius", + "uid": "1086503", + "editor": "MapComplete 0.6.2", + "comment": "Adding data with #MapComplete for theme #sport_pitches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-26T21:38:25Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.00000103546350001022, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101818728, + "host": "mapcomplete.osm.be", + "theme": "sport_pitches", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.68893315, + 51.163898 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "jayjay420", + "uid": "12932140", + "editor": "MapComplete 0.6.2", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-26T19:19:28Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101813152, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3853565, + 51.1826524 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-8564837988", + "osm_id": 8564837988, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "tourism": "map" + } + } + ], + "user": "BS97n", + "uid": "2386081", + "editor": "MapComplete 0.6.2", + "comment": "Adding data with #MapComplete for theme #maps", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-03-26T16:48:43Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0.00124414500731986, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101805447, + "host": "mapcomplete.osm.be", + "theme": "maps", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.272129250000001, + 51.4820573 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Peter Elderson", + "uid": "7103674", + "editor": "MapComplete 0.6.2", + "comment": "Adding data with #MapComplete for theme #stolpersteine", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-03-26T16:48:08Z", + "reviewed_features": [], + "create": 1, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101805410, + "host": "mapcomplete.osm.be", + "theme": "stolpersteine", + "imagery": "osm", + "language": "en", + "theme-creator": "Peter Elderson" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4892502, + 51.9009947 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.6.2", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-03-26T14:55:52Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101799330, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7208301, + 51.0541539 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.6.2", + "comment": "Adding data with #MapComplete for theme #artworks", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-03-26T13:35:26Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101795137, + "host": "mapcomplete.osm.be", + "theme": "artworks", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7219512, + 51.0594005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.6.2", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-03-26T13:15:34Z", + "reviewed_features": [], + "create": 2, + "modify": 4, + "delete": 0, + "area": 9.75252000026907e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101794174, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7285763, + 51.05652275 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.6.2", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-03-26T13:06:33Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101793666, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7197948, + 51.0466304 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "adrigrillo", + "uid": "8553087", + "editor": "MapComplete 0.6.2", + "comment": "Adding data with #MapComplete for theme #1roadAlllanes", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-26T12:35:11Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.00000758595419999425, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101792066, + "host": "mapcomplete.osm.be", + "theme": "1roadalllanes", + "imagery": "osm", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.8326445, + 40.343163950000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Koen Rijnsent", + "uid": "4569696", + "editor": "MapComplete 0.6.2", + "comment": "Adding data with #MapComplete for theme #personal", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-26T11:05:20Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.0000109834659900034, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101785908, + "host": "mapcomplete.osm.be", + "theme": "personal", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.12564165, + 52.07643485 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "PeeWee32", + "uid": "353766", + "editor": "MapComplete 0.6.2", + "comment": "Adding data with #MapComplete for theme #benchesandpicnictables", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-26T10:57:07Z", + "reviewed_features": [], + "create": 1, + "modify": 5, + "delete": 0, + "area": 0.000643437310979984, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101785278, + "host": "mapcomplete.osm.be", + "theme": "benchesandpicnictables", + "imagery": "osm", + "language": "en", + "theme-creator": "Peter Elderson" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.3815402, + 52.114142150000006 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Koen Rijnsent", + "uid": "4569696", + "editor": "MapComplete 0.6.2", + "comment": "Adding data with #MapComplete for theme #personal", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-26T09:43:49Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101780104, + "host": "mapcomplete.osm.be", + "theme": "personal", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.127792, + 52.0844943 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Erin76", + "uid": "8982454", + "editor": "MapComplete 0.6.2", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-26T08:57:57Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101776584, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.8825673, + 51.0015189 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Kinjkajh", + "uid": "12107222", + "editor": "MapComplete 0.6.3", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-26T08:40:08Z", + "reviewed_features": [], + "create": 7, + "modify": 21, + "delete": 0, + "area": 0.000214072264999992, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101775201, + "host": "pietervdvn.github.io", + "theme": "surveillance", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.8802570999999997, + 51.0059073 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "matissevdberg", + "uid": "12928471", + "editor": "MapComplete 0.6.3", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-26T08:01:57Z", + "reviewed_features": [], + "create": 11, + "modify": 31, + "delete": 0, + "area": 0.000410032655679863, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101772453, + "host": "pietervdvn.github.io", + "theme": "surveillance", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4184579, + 51.0117709 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": "GOwin", + "reasons": [], + "tags": [], + "features": [], + "user": "n1kn0k", + "uid": "867701", + "editor": "MapComplete 0.6.2", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-26T02:11:50Z", + "reviewed_features": [], + "create": 1, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": false, + "checked": true, + "check_date": "2021-03-31T08:35:11.939748Z", + "id": 101751716, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "Mapbox", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 123.9419389, + 10.328426 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Peter Elderson", + "uid": "7103674", + "editor": "MapComplete 0.6.0", + "comment": "Adding data with #MapComplete for theme #HailHydrant", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-03-25T19:31:14Z", + "reviewed_features": [], + "create": 0, + "modify": 8, + "delete": 0, + "area": 0.0124425949989198, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101741727, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "imagery": "HDM_HOT", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.6656229499999995, + 52.0207697 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "PeeWee32", + "uid": "353766", + "editor": "MapComplete 0.6.0", + "comment": "Adding data with #MapComplete for theme #benchesandpicnictables", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-25T06:09:37Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101690921, + "host": "mapcomplete.osm.be", + "theme": "benchesandpicnictables", + "imagery": "osm", + "language": "en", + "theme-creator": "Peter Elderson" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.3953575, + 52.1045726 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "PeeWee32", + "uid": "353766", + "editor": "MapComplete 0.6.0", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-25T05:48:14Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101689560, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.3775823, + 52.1116123 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.6.0", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-03-24T22:13:40Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101676357, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7139395, + 51.0418714 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.6.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-03-24T21:57:30Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101675962, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7197948, + 51.0466304 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Túllio", + "uid": "1206082", + "editor": "MapComplete 0.6.1", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-03-24T20:45:39Z", + "reviewed_features": [], + "create": 1, + "modify": 6, + "delete": 0, + "area": 0.0000510315243100416, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101673428, + "host": "pietervdvn.github.io", + "theme": "trees", + "imagery": "CyclOSM", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -49.26973085, + -16.60013685 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "steven lauwers", + "uid": "6799245", + "editor": "MapComplete 0.6.0a-unlocked", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/osmbe/play/master/mapcomplete/geveltuinen/geveltuinen.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-24T19:22:29Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101670098, + "host": "pietervdvn.github.io", + "theme": "geveltuintjes", + "imagery": "osm", + "language": "nl", + "theme-creator": "joost schouppe; stla" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4784087, + 51.0338428 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.6.1", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-24T18:28:29Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 6.01108000031619e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101668002, + "host": "pietervdvn.github.io", + "theme": "trees", + "imagery": "CyclOSM", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.66624475, + -33.440266699999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.6.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-03-24T18:02:59Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101666752, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7232309, + 51.0422215 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "BS97n", + "uid": "2386081", + "editor": "MapComplete 0.6.1", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-24T17:24:56Z", + "reviewed_features": [], + "create": 0, + "modify": 9, + "delete": 0, + "area": 0.00899156275874988, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101664459, + "host": "pietervdvn.github.io", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "de", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.2631580499999995, + 51.50908565 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "WinstonSmith", + "uid": "36030", + "editor": "MapComplete 0.6.0", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-03-24T16:55:03Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101662824, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.3313426, + 44.5151128 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "WinstonSmith", + "uid": "36030", + "editor": "MapComplete 0.6.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-03-24T16:53:20Z", + "reviewed_features": [], + "create": 8, + "modify": 9, + "delete": 0, + "area": 0.0000482288473600107, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101662737, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.3356062, + 44.517966 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "BS97n", + "uid": "2386081", + "editor": "MapComplete 0.6.1", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-24T15:45:52Z", + "reviewed_features": [], + "create": 2, + "modify": 49, + "delete": 0, + "area": 0.0000313566326700071, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101659153, + "host": "pietervdvn.github.io", + "theme": "trees", + "imagery": "nrw_dtm_wms", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.21842755, + 51.485547049999994 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "BS97n", + "uid": "2386081", + "editor": "MapComplete 0.6.1", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-24T15:24:33Z", + "reviewed_features": [], + "create": 0, + "modify": 11, + "delete": 0, + "area": 0.0000372391762999671, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101658081, + "host": "pietervdvn.github.io", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "de", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.2188914, + 51.48180605 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.6.0", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-03-24T15:14:41Z", + "reviewed_features": [], + "create": 1, + "modify": 6, + "delete": 0, + "area": 0.00000375462120001069, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101657473, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.23447, + 50.7330014 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.6.0", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-03-24T14:21:58Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101653974, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2165796, + 51.1966576 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.6.0a", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-23T21:26:11Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101599503, + "host": "pietervdvn.github.io", + "theme": "trees", + "imagery": "CyclOSM", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.6656069, + -33.4402674 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.6.0a", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-23T20:32:08Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 3.12884870000893e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101597611, + "host": "pietervdvn.github.io", + "theme": "trees", + "imagery": "CyclOSM", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.66695304999999, + -33.440989450000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "steven lauwers", + "uid": "6799245", + "editor": "MapComplete 0.6.0a-unlocked", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/osmbe/play/master/mapcomplete/geveltuinen/geveltuinen.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-23T20:01:49Z", + "reviewed_features": [], + "create": 0, + "modify": 7, + "delete": 0, + "area": 0.000980473531760373, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101596541, + "host": "pietervdvn.github.io", + "theme": "geveltuintjes", + "imagery": "osm", + "language": "nl", + "theme-creator": "joost schouppe; stla" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.5108385, + 51.026933299999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "WinstonSmith", + "uid": "36030", + "editor": "MapComplete 0.6.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-03-23T19:35:30Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101595539, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.3460846, + 44.4968805 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.6.0a", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-23T18:34:10Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 4.1322779999945e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101593442, + "host": "pietervdvn.github.io", + "theme": "trees", + "imagery": "CyclOSM", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.6655717, + -33.440496100000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "GOwin", + "uid": "1041828", + "editor": "MapComplete 0.6.0", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-23T11:31:36Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.0000164057029499718, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101570350, + "host": "pietervdvn.github.io", + "theme": "hailhydrant", + "imagery": "HDM_HOT", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 123.94311354999999, + 10.32842665 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "frank vanhyfte", + "uid": "1026732", + "editor": "MapComplete 0.6.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-23T11:18:52Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 8.91894000048929e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101569443, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.68050505, + 51.0730919 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.6.0", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-03-23T10:30:30Z", + "reviewed_features": [], + "create": 0, + "modify": 12, + "delete": 0, + "area": 0.0000287492839400146, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101565776, + "host": "mapcomplete.osm.be", + "theme": "grb", + "imagery": "AGIVFlandersGRB", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2264808499999997, + 51.218427899999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.6.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-03-23T09:07:32Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101559560, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.3628355, + 50.9308665 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Peter Elderson", + "uid": "7103674", + "editor": "MapComplete 0.6.0", + "comment": "Adding data with #MapComplete for theme #benchesandpicnictables", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-03-23T07:50:46Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 6.88917699991294e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101554176, + "host": "mapcomplete.osm.be", + "theme": "benchesandpicnictables", + "imagery": "osm", + "language": "nl", + "theme-creator": "Peter Elderson" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.12660875, + 52.056700649999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.6.0", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-03-22T13:25:51Z", + "reviewed_features": [], + "create": 0, + "modify": 11, + "delete": 0, + "area": 0.0000851525188799603, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101508098, + "host": "mapcomplete.osm.be", + "theme": "grb", + "imagery": "AGIVFlandersGRB", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2268238, + 51.2090664 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Jakka", + "uid": "2403313", + "editor": "MapComplete 0.6.0", + "comment": "Adding data with #MapComplete for theme #campersite", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-22T12:54:50Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101506285, + "host": "pietervdvn.github.io", + "theme": "campersite", + "imagery": "osm", + "language": "en", + "theme-creator": "joost schouppe" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1165435, + 50.7941926 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Nuytinck", + "uid": "3719237", + "editor": "MapComplete 0.6.0", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-22T09:18:24Z", + "reviewed_features": [], + "create": 1, + "modify": 5, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101488654, + "host": "pietervdvn.github.io", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.0017191, + 51.0972734 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.6.0", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-22T01:30:21Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101462703, + "host": "pietervdvn.github.io", + "theme": "trees", + "imagery": "CyclOSM", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.6665444, + -33.4402128 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.5.15", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-03-22T01:14:13Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.00000156341405000424, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101462501, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.6964697500000003, + 51.05501175 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.5.14", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-21T22:34:28Z", + "reviewed_features": [], + "create": 0, + "modify": 6, + "delete": 0, + "area": 1.92484599994863e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101459868, + "host": "pietervdvn.github.io", + "theme": "trees", + "imagery": "CyclOSM", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.6657956, + -33.44041345 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.5.15", + "comment": "Adding data with #MapComplete for theme #nature", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-03-21T19:57:55Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.000339179132160143, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101455414, + "host": "mapcomplete.osm.be", + "theme": "nature", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1589093, + 51.3234098 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.6.0", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-21T17:18:19Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.00000848231955999079, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101449724, + "host": "pietervdvn.github.io", + "theme": "grb", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.21142225, + 51.2136497 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.5.15", + "comment": "Adding data with #MapComplete for theme #artworks", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-03-21T15:13:34Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101443809, + "host": "mapcomplete.osm.be", + "theme": "artworks", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2413718, + 51.2033866 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.5.15", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-03-21T13:06:07Z", + "reviewed_features": [], + "create": 0, + "modify": 20, + "delete": 0, + "area": 0.0000157727611999898, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101438434, + "host": "mapcomplete.osm.be", + "theme": "grb", + "imagery": "AGIVFlandersGRB", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2214650999999996, + 51.216511999999994 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Nuytinck", + "uid": "3719237", + "editor": "MapComplete 0.5.14", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-20T19:58:14Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101416023, + "host": "pietervdvn.github.io", + "theme": "bookcases", + "imagery": "AGIV10cm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.0084192, + 51.0455108 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.5.14", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-03-20T16:03:23Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101393058, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2301736, + 51.2136117 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "steven lauwers", + "uid": "6799245", + "editor": "MapComplete 0.5.14", + "comment": "Adding data with #MapComplete for theme #geveltuintjes", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-20T15:57:36Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101392787, + "host": "mapcomplete.osm.be", + "theme": "geveltuintjes", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.5483264, + 51.0209132 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.5.14", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-03-20T15:51:11Z", + "reviewed_features": [], + "create": 2, + "modify": 2, + "delete": 0, + "area": 1.80499000011188e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101392509, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.24357795, + 51.21016885 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "WinstonSmith", + "uid": "36030", + "editor": "MapComplete 0.5.14", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-03-20T15:31:50Z", + "reviewed_features": [], + "create": 3, + "modify": 3, + "delete": 0, + "area": 0.00000324807600001315, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101391692, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.2896052, + 44.5163488 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "LySioS", + "uid": "11579673", + "editor": "MapComplete 0.5.14", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-03-20T14:42:16Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.000192424060159853, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101389783, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "fr", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.9269886, + 42.685478599999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "WinstonSmith", + "uid": "36030", + "editor": "MapComplete 0.5.14", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-03-20T11:03:03Z", + "reviewed_features": [], + "create": 4, + "modify": 7, + "delete": 0, + "area": 0.00000283719652999949, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101382253, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.340170449999999, + 44.496238950000006 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.5.14", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-20T05:48:36Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101375598, + "host": "pietervdvn.github.io", + "theme": "trees", + "imagery": "EsriWorldImageryClarity", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.6649128, + -33.4397615 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "MojoMax", + "uid": "12883471", + "editor": "MapComplete 0.5.14", + "comment": "Adding data with #MapComplete for theme #campersite", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-19T19:22:03Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101348816, + "host": "mapcomplete.osm.be", + "theme": "campersite", + "imagery": "osm", + "language": "en", + "theme-creator": "joost schouppe" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -7.1488974, + 37.3021427 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "steven lauwers", + "uid": "6799245", + "editor": "MapComplete 0.5.5-unlocked", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/osmbe/play/master/mapcomplete/geveltuinen/geveltuinen.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-19T12:35:40Z", + "reviewed_features": [], + "create": 0, + "modify": 7, + "delete": 0, + "area": 0.0000443547377000435, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101330064, + "host": "pietervdvn.github.io", + "theme": "geveltuintjes", + "imagery": "osm", + "language": "nl", + "theme-creator": "joost schouppe" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4802631, + 51.03197145 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "tyr_asd", + "uid": "115612", + "editor": "MapComplete 0.5.14", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-19T09:30:23Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101314914, + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "osm", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.2492109, + 46.4635196 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "tyr_asd", + "uid": "115612", + "editor": "MapComplete 0.5.14", + "comment": "Adding data with #MapComplete for theme #campersite", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-19T09:00:07Z", + "reviewed_features": [], + "create": 0, + "modify": 7, + "delete": 0, + "area": 7.70876353974193, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101312750, + "host": "mapcomplete.osm.be", + "theme": "campersite", + "imagery": "osm", + "language": "en", + "theme-creator": "joost schouppe" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.976179949999999, + 47.91576445 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.5.14", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-19T03:54:04Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101294518, + "host": "pietervdvn.github.io", + "theme": "trees", + "imagery": "CyclOSM", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.6660433, + -33.4407233 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.5.14", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-19T03:48:51Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101294343, + "host": "pietervdvn.github.io", + "theme": "trees", + "imagery": "CyclOSM", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.6666115, + -33.4410701 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.5.14", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-19T00:21:00Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101290552, + "host": "pietervdvn.github.io", + "theme": "trees", + "imagery": "EsriWorldImagery", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.5606231, + -33.5923823 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "sjokomoeske", + "uid": "10187049", + "editor": "MapComplete 0.5.14", + "comment": "Adding data with #MapComplete for theme #campersite", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-03-18T21:05:26Z", + "reviewed_features": [], + "create": 2, + "modify": 3, + "delete": 0, + "area": 0.00127138722432022, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101285518, + "host": "mapcomplete.osm.be", + "theme": "campersite", + "imagery": "osm", + "language": "en", + "theme-creator": "joost schouppe" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.243217700000001, + 51.0670852 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "steven lauwers", + "uid": "6799245", + "editor": "MapComplete 0.5.5-unlocked", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/osmbe/play/master/mapcomplete/geveltuinen/geveltuinen.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-18T20:31:01Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101284366, + "host": "pietervdvn.github.io", + "theme": "geveltuintjes", + "imagery": "osm", + "language": "nl", + "theme-creator": "joost schouppe" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4733506, + 51.0203947 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.5.14", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-18T13:31:39Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 5.03030929991721e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101263817, + "host": "pietervdvn.github.io", + "theme": "trees", + "imagery": "CyclOSM", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.56981865, + -33.592443349999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Koen Rijnsent", + "uid": "4569696", + "editor": "MapComplete 0.5.14", + "comment": "Adding data with #MapComplete for theme #personal", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-03-18T09:14:09Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101243945, + "host": "mapcomplete.osm.be", + "theme": "personal", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.1524921, + 52.0273061 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.5.14", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-18T05:05:07Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 8.05999999724389e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101226298, + "host": "pietervdvn.github.io", + "theme": "trees", + "imagery": "EsriWorldImageryClarity", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.56948514999999, + -33.5930872 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Necessarycoot72", + "uid": "10882995", + "editor": "MapComplete 0.5.14", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-18T01:52:45Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 4.52199999583916e-11, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101219521, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -72.4816568, + 43.29756645 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.5.14", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-03-17T22:48:56Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101216733, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7089318, + 51.0506301 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "GettyYetty21", + "uid": "12869632", + "editor": "MapComplete 0.5.14", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-17T20:44:50Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101213106, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "imagery": "CartoDB.Voyager", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -90.0541458, + 29.9774995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "WinstonSmith", + "uid": "36030", + "editor": "MapComplete 0.5.14", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-03-17T15:06:26Z", + "reviewed_features": [], + "create": 10, + "modify": 18, + "delete": 0, + "area": 0.0000357316394099915, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101198354, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.32365545, + 44.512713149999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.5.14", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-17T13:27:10Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101192583, + "host": "pietervdvn.github.io", + "theme": "trees", + "imagery": "EsriWorldImageryClarity", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.666804, + -33.4402386 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Jakka", + "uid": "2403313", + "editor": "MapComplete 0.5.12", + "comment": "Adding data with #MapComplete for theme #campersite", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-03-17T09:59:38Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101178103, + "host": "mapcomplete.osm.be", + "theme": "campersite", + "imagery": "osm", + "language": "en", + "theme-creator": "joost schouppe" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1165435, + 50.7941926 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "sjokomoeske", + "uid": "10187049", + "editor": "MapComplete 0.5.12", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-03-17T09:50:45Z", + "reviewed_features": [], + "create": 8, + "modify": 17, + "delete": 0, + "area": 0.0000945018982800122, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101177425, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2128207, + 51.0556986 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Overmja", + "uid": "11334578", + "editor": "MapComplete 0.5.12", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-17T09:48:19Z", + "reviewed_features": [], + "create": 55, + "modify": 82, + "delete": 0, + "area": 0.00323991005819992, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101177218, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "AGIV", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.60811895, + 50.9562043 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "sjokomoeske", + "uid": "10187049", + "editor": "MapComplete 0.5.12", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-03-17T08:37:29Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101171670, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2008889, + 51.0566202 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "sjokomoeske", + "uid": "10187049", + "editor": "MapComplete 0.5.12", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-03-17T07:32:01Z", + "reviewed_features": [], + "create": 24, + "modify": 46, + "delete": 0, + "area": 0.000282281801270036, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101166909, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.19744225, + 51.05136925 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jemily1", + "uid": "11155676", + "editor": "MapComplete 0.5.14", + "comment": "Adding data with #MapComplete for theme #crossingtime", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-03-16T23:01:16Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.000500687336379981, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101147703, + "host": "pietervdvn.github.io", + "theme": "crossingtime", + "imagery": "osm", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.4834303, + 38.36955365 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Sharwin_F", + "uid": "147555", + "editor": "MapComplete 0.5.12", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-16T20:09:13Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101142626, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.1781891, + 41.4326157 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "OPerivar", + "uid": "51324", + "editor": "MapComplete 0.5.12", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-16T20:04:48Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101142493, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 10.544343, + 52.9864598 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Sharwin_F", + "uid": "147555", + "editor": "MapComplete 0.5.12", + "comment": "Adding data with #MapComplete for theme #wherethesidewalkshavenoname", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-16T20:01:39Z", + "reviewed_features": [], + "create": 0, + "modify": 9, + "delete": 0, + "area": 0.00000301774724998642, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101142390, + "host": "mapcomplete.osm.be", + "theme": "wherethesidewalkshavenoname", + "imagery": "osm", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.17913625, + 41.43186095 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Stinus_Clasius", + "uid": "1086503", + "editor": "MapComplete 0.5.12", + "comment": "Adding data with #MapComplete for theme #artworks", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-16T20:01:38Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101142389, + "host": "mapcomplete.osm.be", + "theme": "artworks", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.9818392, + 51.3173752 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Nuytinck", + "uid": "3719237", + "editor": "MapComplete 0.5.14", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-16T19:44:13Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101141686, + "host": "pietervdvn.github.io", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.5569267, + 51.1851613 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "bryceco", + "uid": "624323", + "editor": "MapComplete 0.5.12", + "comment": "Adding data with #MapComplete for theme #personal", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-03-16T17:30:42Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 1.90223200000731e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101136189, + "host": "mapcomplete.osm.be", + "theme": "personal", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -122.21284295000001, + 47.6795755 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "WinstonSmith", + "uid": "36030", + "editor": "MapComplete 0.5.12", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-03-16T17:20:15Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101135663, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.3164676, + 44.506155 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Koen Rijnsent", + "uid": "4569696", + "editor": "MapComplete 0.5.12", + "comment": "Adding data with #MapComplete for theme #personal", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-03-16T14:22:56Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101127309, + "host": "mapcomplete.osm.be", + "theme": "personal", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.1365871, + 52.0626422 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.5.12", + "comment": "Adding data with #MapComplete for theme #speelplekken", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-03-16T13:50:14Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.0000178810650800202, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101125548, + "host": "mapcomplete.osm.be", + "theme": "speelplekken", + "imagery": "CartoDB.Positron", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.43328855, + 51.1656861 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.5.12", + "comment": "Adding data with #MapComplete for theme #sport_pitches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-03-16T12:50:12Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0.00000816834899999988, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101122448, + "host": "mapcomplete.osm.be", + "theme": "sport_pitches", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7036862, + 51.05718505 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.5.12", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-16T06:45:24Z", + "reviewed_features": [], + "create": 3, + "modify": 3, + "delete": 0, + "area": 3.963477600089e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101095488, + "host": "pietervdvn.github.io", + "theme": "trees", + "imagery": "EsriWorldImageryClarity", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.66710950000001, + -33.4395362 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.5.12", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-16T02:35:46Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 2.48324999957839e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101082113, + "host": "pietervdvn.github.io", + "theme": "trees", + "imagery": "CyclOSM", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.66820335, + -33.43917225 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.5.12", + "comment": "Adding data with #MapComplete for theme #campersite", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-03-15T18:31:26Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 8.10745300004477e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101069649, + "host": "mapcomplete.osm.be", + "theme": "campersite", + "imagery": "osm", + "language": "en", + "theme-creator": "joost schouppe" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.55219895, + 44.3052706 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.5.5-unlocked", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/osmbe/play/master/mapcomplete/geveltuinen/geveltuinen.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-03-15T18:14:08Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101068744, + "host": "pietervdvn.github.io", + "theme": "geveltuintjes", + "imagery": "osm", + "language": "nl", + "theme-creator": "joost schouppe" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4776314, + 51.0320371 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "WinstonSmith", + "uid": "36030", + "editor": "MapComplete 0.5.9", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-15T15:35:19Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.00000280876459996775, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101061414, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.3385643, + 44.5058257 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Nuytinck", + "uid": "3719237", + "editor": "MapComplete 0.5.10", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-15T08:46:15Z", + "reviewed_features": [], + "create": 2, + "modify": 4, + "delete": 0, + "area": 0.00000162359852000073, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101035070, + "host": "pietervdvn.github.io", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.9340209, + 50.883268150000006 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Technopolice_newBiE", + "uid": "12219485", + "editor": "MapComplete 0.5.5-unlocked", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 3, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-15T00:35:23Z", + "reviewed_features": [], + "create": 68, + "modify": 36, + "delete": 0, + "area": 0.0000222767179600149, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101012269, + "host": "pietervdvn.github.io", + "theme": "surveillance", + "imagery": "Stadia.AlidadeSmoothDark", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3379058, + 50.8331733 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.5.9", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-03-14T18:56:59Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 101003973, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2829442, + 50.7023665 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "whturner", + "uid": "3667103", + "editor": "MapComplete 0.5.9", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-14T15:18:00Z", + "reviewed_features": [], + "create": 4, + "modify": 8, + "delete": 0, + "area": 0.00000210708520000632, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100993948, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.015015999999999, + 50.890615600000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.5.10", + "comment": "Adding data with #MapComplete for theme #speelplekken", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-03-14T15:02:20Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 1.62618720000647e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100993328, + "host": "pietervdvn.github.io", + "theme": "speelplekken", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2182265, + 51.2187983 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "WinstonSmith", + "uid": "36030", + "editor": "MapComplete 0.5.9", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-03-14T14:48:38Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100992716, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.1174573, + 45.4932035 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Koen Rijnsent", + "uid": "4569696", + "editor": "MapComplete 0.5.9", + "comment": "Adding data with #MapComplete for theme #artworks", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-14T10:43:42Z", + "reviewed_features": [], + "create": 2, + "modify": 4, + "delete": 0, + "area": 0.00000341774120000285, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100983734, + "host": "mapcomplete.osm.be", + "theme": "artworks", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.1320768, + 52.08401 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.5.10", + "comment": "Adding data with #MapComplete for theme #speelplekken", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-14T01:32:20Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 4.26800799994738e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100975031, + "host": "127.0.0.1:1234", + "theme": "speelplekken", + "imagery": "AGIV10cm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3764752, + 51.1887924 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.5.9", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-13T15:48:42Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100958601, + "host": "127.0.0.1:1234", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7288407, + 51.0483444 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.5.9", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 2, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-03-13T12:33:27Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100951681, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2896939, + 50.7282592 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "velosophe", + "uid": "477861", + "editor": "MapComplete 0.5.9", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-12T16:29:09Z", + "reviewed_features": [], + "create": 1, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100920070, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7089667, + 51.0339914 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "velosophe", + "uid": "477861", + "editor": "MapComplete 0.5.9", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-12T16:21:10Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100919638, + "host": "mapcomplete.osm.be", + "theme": "shops", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7040289, + 51.0406965 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "CordeB", + "uid": "5794153", + "editor": "MapComplete 0.5.6", + "comment": "Adding data with #MapComplete for theme #wandelknooppunten", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-03-12T09:42:24Z", + "reviewed_features": [], + "create": 0, + "modify": 6, + "delete": 0, + "area": 0.0000122744897599938, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100896599, + "host": "mapcomplete.osm.be", + "theme": "wandelknooppunten", + "imagery": "osm", + "language": "nl", + "theme-creator": "Peter Elderson" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.08200655, + 53.0501675 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "MAGONA", + "uid": "3087858", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-11T21:42:56Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100865857, + "host": "pietervdvn.github.io", + "theme": "trees", + "imagery": "CyclOSM", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.6653146, + -33.4405225 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "MAGONA", + "uid": "3087858", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-11T20:36:45Z", + "reviewed_features": [], + "create": 9, + "modify": 37, + "delete": 0, + "area": 7.45613669997234e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100863722, + "host": "pietervdvn.github.io", + "theme": "trees", + "imagery": "CyclOSM", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.66601005, + -33.44084985 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "WinstonSmith", + "uid": "36030", + "editor": "MapComplete 0.5.6", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-03-11T12:25:08Z", + "reviewed_features": [], + "create": 9, + "modify": 16, + "delete": 0, + "area": 4.03462090002061e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100842093, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.33608835, + 44.52161945 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.5.6", + "comment": "Adding data with #MapComplete for theme #buurtnatuur", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-03-11T11:12:14Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 3.05137780002534e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100837457, + "host": "mapcomplete.osm.be", + "theme": "buurtnatuur", + "imagery": "osm", + "language": "nl", + "theme-creator": "Pieter Vander Vennet" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2166172, + 51.213796349999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "whturner", + "uid": "3667103", + "editor": "MapComplete 0.5.6", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-11T11:03:57Z", + "reviewed_features": [], + "create": 3, + "modify": 4, + "delete": 0, + "area": 3.44285999989094e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100836888, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.01534855, + 50.8911562 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Koen Rijnsent", + "uid": "4569696", + "editor": "MapComplete 0.5.6", + "comment": "Adding data with #MapComplete for theme #artworks", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-03-11T10:43:25Z", + "reviewed_features": [], + "create": 1, + "modify": 5, + "delete": 0, + "area": 7.28544960007158e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100835527, + "host": "mapcomplete.osm.be", + "theme": "artworks", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.12534365, + 52.0751711 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Koen Rijnsent", + "uid": "4569696", + "editor": "MapComplete 0.5.6", + "comment": "Adding data with #MapComplete for theme #artworks", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-03-11T10:32:31Z", + "reviewed_features": [], + "create": 1, + "modify": 5, + "delete": 0, + "area": 0.00000542918248000137, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100834775, + "host": "mapcomplete.osm.be", + "theme": "artworks", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.1237834, + 52.077176 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Koen Rijnsent", + "uid": "4569696", + "editor": "MapComplete 0.5.6", + "comment": "Adding data with #MapComplete for theme #artworks", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-03-11T10:23:18Z", + "reviewed_features": [], + "create": 2, + "modify": 2, + "delete": 0, + "area": 8.06293019999391e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100834132, + "host": "mapcomplete.osm.be", + "theme": "artworks", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.12364815, + 52.0812872 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "steven lauwers", + "uid": "6799245", + "editor": "MapComplete 0.5.5-unlocked", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/osmbe/play/master/mapcomplete/geveltuinen/geveltuinen.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-10T21:32:01Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100802530, + "host": "pietervdvn.github.io", + "theme": "geveltuintjes", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4784087, + 51.0338428 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "steven lauwers", + "uid": "6799245", + "editor": "MapComplete 0.5.5-unlocked", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/osmbe/play/master/mapcomplete/geveltuinen/geveltuinen.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-10T21:12:38Z", + "reviewed_features": [], + "create": 1, + "modify": 8, + "delete": 0, + "area": 0.0000498387859199988, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100801897, + "host": "pietervdvn.github.io", + "theme": "geveltuintjes", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.475491, + 51.0262159 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "steven lauwers", + "uid": "6799245", + "editor": "MapComplete 0.5.5-unlocked", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/osmbe/play/master/mapcomplete/geveltuinen/geveltuinen.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-10T19:25:40Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100797468, + "host": "pietervdvn.github.io", + "theme": "geveltuintjes", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4784087, + 51.0338428 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Alexmol", + "uid": "347293", + "editor": "MapComplete 0.5.6", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-10T18:06:09Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100794576, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -7.9977143, + 37.097959 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "WinstonSmith", + "uid": "36030", + "editor": "MapComplete 0.5.6", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-03-10T16:16:53Z", + "reviewed_features": [], + "create": 11, + "modify": 14, + "delete": 0, + "area": 0.000582387576800101, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100789874, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.328988599999999, + 44.512492949999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Alexmol", + "uid": "347293", + "editor": "MapComplete 0.5.6", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-10T08:52:52Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100763657, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -8.1790775, + 37.2334741 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-10T05:15:56Z", + "reviewed_features": [], + "create": 0, + "modify": 10, + "delete": 0, + "area": 4.89886160002107e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100748361, + "host": "pietervdvn.github.io", + "theme": "trees", + "imagery": "CyclOSM", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.66584835, + -33.4402704 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Alexmol", + "uid": "347293", + "editor": "MapComplete 0.5.6", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-09T20:34:53Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.00985802334047926, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100732356, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -7.7009194, + 37.1252454 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "WinstonSmith", + "uid": "36030", + "editor": "MapComplete 0.5.6", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-03-09T17:07:48Z", + "reviewed_features": [], + "create": 38, + "modify": 51, + "delete": 0, + "area": 0.0000898177993199541, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100724260, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.3579385, + 44.510412849999994 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "whturner", + "uid": "3667103", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-09T15:33:24Z", + "reviewed_features": [], + "create": 4, + "modify": 12, + "delete": 0, + "area": 1.66896409999921e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100719899, + "host": "pietervdvn.github.io", + "theme": "benches", + "imagery": "osm", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.0149703500000005, + 50.89125935 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "WinstonSmith", + "uid": "36030", + "editor": "MapComplete 0.5.6", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-03-09T12:26:47Z", + "reviewed_features": [], + "create": 2, + "modify": 4, + "delete": 0, + "area": 4.30170000022433e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100710537, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.3577996, + 44.50819825 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-8499095699", + "osm_id": 8499095699, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "tourism": "map" + } + }, + { + "url": "node-8499121603", + "osm_id": 8499121603, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "tourism": "map" + } + } + ], + "user": "benetj", + "uid": "2353661", + "editor": "MapComplete 0.5.5", + "comment": "Adding data with #MapComplete for theme #maps", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-09T07:56:07Z", + "reviewed_features": [], + "create": 2, + "modify": 1, + "delete": 0, + "area": 6.5611750001198e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100688874, + "host": "mapcomplete.osm.be", + "theme": "maps", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.7806433999999998, + 39.64794675 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "benetj", + "uid": "2353661", + "editor": "MapComplete 0.5.5", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-09T07:44:15Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 0.00000523120859999823, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100687881, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "osm", + "language": "ca", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.7728815, + 39.648012 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "benetj", + "uid": "2353661", + "editor": "MapComplete 0.5.5", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-09T07:39:35Z", + "reviewed_features": [], + "create": 0, + "modify": 6, + "delete": 0, + "area": 0.0000167815897599945, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100687422, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.7744178, + 39.64887685 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "WinstonSmith", + "uid": "36030", + "editor": "MapComplete 0.5.5", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-03-08T17:56:06Z", + "reviewed_features": [], + "create": 18, + "modify": 38, + "delete": 0, + "area": 0.0000150781255999794, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100654596, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.342334300000001, + 44.5084494 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "whturner", + "uid": "3667103", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-08T15:53:19Z", + "reviewed_features": [], + "create": 3, + "modify": 9, + "delete": 0, + "area": 0.0000180776124899785, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100649005, + "host": "pietervdvn.github.io", + "theme": "benches", + "imagery": "osm", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.0111361500000005, + 50.88470185 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Koen Rijnsent", + "uid": "4569696", + "editor": "MapComplete 0.5.5", + "comment": "Adding data with #MapComplete for theme #artworks", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-03-08T11:27:41Z", + "reviewed_features": [], + "create": 2, + "modify": 4, + "delete": 0, + "area": 5.95725040000472e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100633150, + "host": "mapcomplete.osm.be", + "theme": "artworks", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.1077964, + 52.0957511 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Nuytinck", + "uid": "3719237", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-08T09:06:15Z", + "reviewed_features": [], + "create": 2, + "modify": 15, + "delete": 0, + "area": 0.138063944963523, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100621555, + "host": "pietervdvn.github.io", + "theme": "bookcases", + "imagery": "AGIV10cm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2947933, + 51.08497405 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "murghdo", + "uid": "2418845", + "editor": "MapComplete 0.5.5", + "comment": "Adding data with #MapComplete for theme #artworks", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-03-08T06:14:03Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100608902, + "host": "mapcomplete.osm.be", + "theme": "artworks", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -77.0356957, + -12.1281742 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "murghdo", + "uid": "2418845", + "editor": "MapComplete 0.5.5", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-03-08T06:04:04Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 0.0000825854985799599, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100608285, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -77.0412662, + -12.12189475 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": "joost schouppe", + "reasons": [ + { + "id": 42, + "name": "Invalid tag modification" + } + ], + "tags": [ + { + "id": 9, + "name": "Resolved" + } + ], + "features": [ + { + "url": "node-747272797", + "osm_id": 747272797, + "reasons": [ + 42 + ], + "version": 2, + "primary_tags": {} + } + ], + "user": "Peter Elderson", + "uid": "7103674", + "editor": "MapComplete 0.5.5", + "comment": "Adding data with #MapComplete for theme #benchesandpicnictables", + "comments_count": 2, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-03-07T20:17:17Z", + "reviewed_features": [], + "create": 2, + "modify": 14, + "delete": 0, + "area": 0.00225525447896014, + "is_suspect": false, + "harmful": false, + "checked": true, + "check_date": "2021-03-17T09:58:48.181432Z", + "id": 100590572, + "host": "mapcomplete.osm.be", + "theme": "benchesandpicnictables", + "imagery": "osm", + "language": "nl", + "theme-creator": "Peter Elderson" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.9569762, + 52.119684899999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Peter Elderson", + "uid": "7103674", + "editor": "MapComplete 0.5.5", + "comment": "Adding data with #MapComplete for theme #wandelknooppunten", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-03-07T20:06:42Z", + "reviewed_features": [], + "create": 0, + "modify": 67, + "delete": 0, + "area": 0.00653361095519971, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100590212, + "host": "mapcomplete.osm.be", + "theme": "wandelknooppunten", + "imagery": "osm", + "language": "nl", + "theme-creator": "Peter Elderson" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.9542906, + 52.130140600000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.5.5", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-03-07T12:55:01Z", + "reviewed_features": [], + "create": 2, + "modify": 0, + "delete": 0, + "area": 8.4268800006232e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100573127, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2100195, + 51.198730499999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-06T22:29:47Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100555952, + "host": "pietervdvn.github.io", + "theme": "trees", + "imagery": "EsriWorldImagery", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.2142827, + -39.8393394 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "velosophe", + "uid": "477861", + "editor": "MapComplete 0.5.5", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-06T21:13:02Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 3.73580999996537e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100554125, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.70717715, + 51.029522 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-06T18:35:59Z", + "reviewed_features": [], + "create": 2, + "modify": 24, + "delete": 0, + "area": 0.000685707286100095, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100549103, + "host": "pietervdvn.github.io", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.35958595, + 50.857106099999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "WinstonSmith", + "uid": "36030", + "editor": "MapComplete 0.5.5", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-03-06T15:40:14Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100541478, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.2263631, + 45.4844916 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.5.5", + "comment": "Adding data with #MapComplete for theme #nature", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-03-06T15:13:01Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.0000522458892799696, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100540347, + "host": "mapcomplete.osm.be", + "theme": "nature", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2561551, + 51.1574858 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-05T22:12:32Z", + "reviewed_features": [], + "create": 11, + "modify": 4, + "delete": 0, + "area": 16.3858112236536, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100516584, + "host": "pietervdvn.github.io", + "theme": "trees", + "imagery": "CyclOSM", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -71.94427285, + -36.640838450000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-05T20:19:03Z", + "reviewed_features": [], + "create": 7, + "modify": 2, + "delete": 0, + "area": 0.70910855487766, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100513175, + "host": "pietervdvn.github.io", + "theme": "trees", + "imagery": "EsriWorldImageryClarity", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -71.05959345, + -34.06783815 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 44, + "name": "Park added by new user" + } + ], + "tags": [], + "features": [ + { + "url": "node-8489877043", + "osm_id": 8489877043, + "reasons": [ + 44 + ], + "version": 1, + "primary_tags": { + "leisure": "nature_reserve" + } + } + ], + "user": "LePirlouit", + "uid": "369248", + "editor": "MapComplete 0.0.8f", + "comment": "Adding data with #MapComplete for theme #buurtnatuur", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-05T18:27:07Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0.00185355261080998, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100509237, + "theme": "buurtnatuur", + "theme-creator": "Pieter Vander Vennet" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.32665055, + 50.87935055 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.5.5", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-03-05T17:57:11Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100507908, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2421657, + 50.7423639 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-05T16:32:25Z", + "reviewed_features": [], + "create": 3, + "modify": 0, + "delete": 0, + "area": 1.41989000058269e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100503768, + "host": "pietervdvn.github.io", + "theme": "trees", + "imagery": "EsriWorldImageryClarity", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.66676885000001, + -33.44088895 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "straynic", + "uid": "718977", + "editor": "MapComplete 0.5.5", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-03-05T15:18:45Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100500229, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.1884112, + 45.1594003 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Nuytinck", + "uid": "3719237", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-05T09:26:52Z", + "reviewed_features": [], + "create": 1, + "modify": 7, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100478531, + "host": "pietervdvn.github.io", + "theme": "bookcases", + "imagery": "AGIV", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.9615555, + 51.0704267 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Geojuffie", + "uid": "11680114", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-04T18:44:32Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100440532, + "host": "pietervdvn.github.io", + "theme": "bookcases", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3217388, + 51.5843333 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Geojuffie", + "uid": "11680114", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #fritures", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-04T18:39:36Z", + "reviewed_features": [], + "create": 5, + "modify": 4, + "delete": 0, + "area": 0.0000273957352799976, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100440346, + "host": "pietervdvn.github.io", + "theme": "fritures", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.31624695, + 51.5836589 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Geojuffie", + "uid": "11680114", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-04T18:38:03Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100440258, + "host": "pietervdvn.github.io", + "theme": "drinking_water", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3290022, + 51.577778 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Geojuffie", + "uid": "11680114", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-04T18:23:39Z", + "reviewed_features": [], + "create": 4, + "modify": 4, + "delete": 0, + "area": 0.000473818941959872, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100439729, + "host": "pietervdvn.github.io", + "theme": "benches", + "imagery": "osm", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3292972, + 51.5774994 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-04T17:10:25Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 3.53535000085466e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100436673, + "host": "pietervdvn.github.io", + "theme": "trees", + "imagery": "CyclOSM", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.57000074999999, + -33.59225365 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Reino Baptista", + "uid": "2820801", + "editor": "MapComplete 0.5.5", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-04T16:35:40Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100435050, + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "osm", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -7.6782291, + 37.095724 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-04T14:24:03Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100428850, + "host": "pietervdvn.github.io", + "theme": "cyclofix", + "imagery": "CyclOSM", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.6666959, + -33.4410356 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Nuytinck", + "uid": "3719237", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-04T10:41:37Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100414702, + "host": "pietervdvn.github.io", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.9329197, + 50.8072454 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Wim L", + "uid": "223681", + "editor": "MapComplete 0.5.5", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-03-03T23:28:10Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100378312, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -122.37033735, + 47.6819544 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "yopaseopor", + "uid": "500572", + "editor": "MapComplete 0.5.5", + "comment": "Adding data with #MapComplete for theme #wherethesidewalkshavenoname", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-03T23:00:31Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.00000147092644999494, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100377781, + "host": "mapcomplete.osm.be", + "theme": "wherethesidewalkshavenoname", + "imagery": "osm", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.12598585, + 41.379443550000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "fx99", + "uid": "130472", + "editor": "MapComplete 0.5.5", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-03T21:13:24Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100375035, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.923514, + 48.6254402 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-03T20:54:54Z", + "reviewed_features": [], + "create": 0, + "modify": 16, + "delete": 0, + "area": 2.12803500005279e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100374476, + "host": "pietervdvn.github.io", + "theme": "trees", + "imagery": "CyclOSM", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.5712225, + -33.59082035 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Tom Ameye", + "uid": "12652421", + "editor": "MapComplete 0.5.5", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-03T19:46:00Z", + "reviewed_features": [], + "create": 1, + "modify": 30, + "delete": 0, + "area": 0.000450235096380033, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100372177, + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "osm", + "language": "nl", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.381626150000001, + 50.9309927 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "fx99", + "uid": "130472", + "editor": "MapComplete 0.5.5", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-03T19:45:56Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.0000638663019999919, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100372173, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.8996291, + 48.6604416 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "fx99", + "uid": "130472", + "editor": "MapComplete 0.5.5", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-03T19:36:03Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.000313847510279965, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100371897, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "de", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.904362299999999, + 48.622651000000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Tom Ameye", + "uid": "12652421", + "editor": "MapComplete 0.5.5", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-03T18:38:29Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.00000281795034001239, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100369859, + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "AGIV", + "language": "nl", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3761334000000005, + 50.93647335 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Tom Ameye", + "uid": "12652421", + "editor": "MapComplete 0.5.5", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-03T18:05:22Z", + "reviewed_features": [], + "create": 0, + "modify": 12, + "delete": 0, + "area": 0.000532196449199972, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100368458, + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "osm", + "language": "nl", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.38450825, + 50.928748600000006 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "karmickoala", + "uid": "12749531", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-03T14:21:18Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100357539, + "host": "pietervdvn.github.io", + "theme": "trees", + "imagery": "osm", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -43.9619181, + -19.8680519 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.5.5", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-03-03T12:44:43Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100351890, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7196875, + 51.0458851 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-03T05:54:20Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100320533, + "host": "pietervdvn.github.io", + "theme": "trees", + "imagery": "CyclOSM", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.5712297, + -33.5905869 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-02T23:51:44Z", + "reviewed_features": [], + "create": 37, + "modify": 31, + "delete": 0, + "area": 0.0000383030821400326, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100308444, + "host": "pietervdvn.github.io", + "theme": "trees", + "imagery": "EsriWorldImageryClarity", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.67022890000001, + -33.44014905 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Vucod", + "uid": "7814237", + "editor": "MapComplete 0.5.2b", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-02T20:01:38Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100302384, + "host": "pietervdvn.github.io", + "theme": "surveillance", + "imagery": "Stadia.AlidadeSmoothDark", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3555574, + 50.847501 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "WinstonSmith", + "uid": "36030", + "editor": "MapComplete 0.5.5", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-03-02T17:57:18Z", + "reviewed_features": [], + "create": 5, + "modify": 11, + "delete": 0, + "area": 4.92566159999276e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100297422, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.328579000000001, + 44.51435205 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "WinstonSmith", + "uid": "36030", + "editor": "MapComplete 0.5.5", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-03-02T16:09:50Z", + "reviewed_features": [], + "create": 3, + "modify": 7, + "delete": 0, + "area": 0.00000504408659998437, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100291986, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.35641345, + 44.5013925 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "WinstonSmith", + "uid": "36030", + "editor": "MapComplete 0.5.5", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-03-02T12:22:35Z", + "reviewed_features": [], + "create": 2, + "modify": 3, + "delete": 0, + "area": 0.0000011488671599994, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100279509, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.3491578, + 44.5004854 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.5.4c", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-03-01T23:44:26Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100234767, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7196875, + 51.0458851 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dodado", + "uid": "12742734", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-01T20:17:32Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.000123022416280005, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100228941, + "host": "pietervdvn.github.io", + "theme": "benches", + "imagery": "Metropole_Ruhr_RVR-DOP10", + "language": "de", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.2972979, + 51.469178850000006 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.5.4c", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-01T20:15:17Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100228867, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.706322, + 51.0513358 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Gmartin314", + "uid": "12760932", + "editor": "MapComplete 0.5.4c", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-01T17:40:50Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100222646, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "imagery": "EsriWorldImagery", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.1625554, + 51.5120398 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.5.4c", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-03-01T17:08:50Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100221069, + "host": "mapcomplete.osm.be", + "theme": "shops", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.714256, + 51.052328 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Solieri Luciano", + "uid": "3436247", + "editor": "MapComplete 0.5.4c", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-01T16:58:44Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100220460, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.3704151, + 44.5026081 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-01T16:27:48Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 2.03984700017755e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100218886, + "host": "pietervdvn.github.io", + "theme": "trees", + "imagery": "CyclOSM", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.66606265, + -33.44069815 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "sjokomoeske", + "uid": "10187049", + "editor": "MapComplete 0.5.4c", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-01T16:07:15Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100217759, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "AGIV10cm", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.1184193, + 51.028489 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "sjokomoeske", + "uid": "10187049", + "editor": "MapComplete 0.5.4c", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-01T13:28:23Z", + "reviewed_features": [], + "create": 2, + "modify": 3, + "delete": 0, + "area": 1.13412399996088e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100209616, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "AGIVFlandersGRB", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.11615415, + 51.023584 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Peter Elderson", + "uid": "7103674", + "editor": "MapComplete 0.5.4c", + "comment": "Adding data with #MapComplete for theme #wandelknooppunten", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-03-01T07:45:26Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100182404, + "host": "mapcomplete.osm.be", + "theme": "wandelknooppunten", + "imagery": "osm", + "language": "nl", + "theme-creator": "Peter Elderson" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3522822, + 52.1307702 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Lokaal bestuur Olen", + "uid": "12279833", + "editor": "MapComplete 0.5.4c", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 1, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-01T07:05:51Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.000884022097140003, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100178688, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.8869124, + 51.15442585 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-01T04:25:12Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 2.19848399991033e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100167174, + "host": "pietervdvn.github.io", + "theme": "trees", + "imagery": "osm", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.66618135, + -33.4409388 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-01T02:40:53Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 0.00000122173967999151, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100163727, + "host": "pietervdvn.github.io", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.66593449999999, + -33.44053265 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.4.9", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-03-01T01:43:11Z", + "reviewed_features": [], + "create": 0, + "modify": 7, + "delete": 0, + "area": 0.00000112724416000444, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 100162468, + "host": "pietervdvn.github.io", + "theme": "trees", + "imagery": "CyclOSM", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.66631659999999, + -33.4407037 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "M!dgard", + "uid": "763799", + "editor": "MapComplete 0.6.11", + "comment": "Adding data with #MapComplete for theme #fire", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-30T18:58:36Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103931344, + "host": "mapcomplete.braindeaddev.com", + "theme": "fire", + "imagery": "osm", + "language": "nl", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1559722, + 51.3128267 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Peter Elderson", + "uid": "7103674", + "editor": "MapComplete 0.7.0a", + "comment": "Adding data with #MapComplete for theme #Afvalkokers", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-30T12:35:07Z", + "reviewed_features": [], + "create": 0, + "modify": 61, + "delete": 0, + "area": 0.000193170262479891, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103913653, + "host": "mapcomplete.osm.be", + "theme": "afvalkokers", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.6153566, + 51.97151955 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Koen Rijnsent", + "uid": "4569696", + "editor": "MapComplete 0.7.0a", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-30T12:04:18Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103911612, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.6686743, + 53.1217365 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "sebkur", + "uid": "22917", + "editor": "MapComplete 0.6.11c", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-30T11:28:18Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103909231, + "host": "pietervdvn.github.io", + "theme": "shops", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 14.6423829, + 51.7475349 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Koen Rijnsent", + "uid": "4569696", + "editor": "MapComplete 0.7.0a", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-30T10:56:46Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103906814, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.6805995, + 53.0767525 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Larmax", + "uid": "8105430", + "editor": "MapComplete 0.7.0a", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-30T10:39:03Z", + "reviewed_features": [], + "create": 0, + "modify": 6, + "delete": 0, + "area": 0.000206041195749961, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103905526, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 24.64019285, + 60.14990365 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "sebkur", + "uid": "22917", + "editor": "MapComplete 0.6.11c", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-30T10:27:20Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103904671, + "host": "pietervdvn.github.io", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 14.6457168, + 51.7436771 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.7.0a", + "comment": "Adding data with #MapComplete for theme #fritures", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-30T09:34:09Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103900585, + "host": "mapcomplete.osm.be", + "theme": "fritures", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.7217118, + 50.2997137 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-2745415999", + "osm_id": 2745415999, + "reasons": [ + 43 + ], + "version": 6, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "Jose Luis Infante", + "uid": "126203", + "editor": "MapComplete 0.6.11c", + "comment": "Adding data with #MapComplete for theme #arbres_llefia", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-30T08:05:05Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103893667, + "host": "pietervdvn.github.io", + "theme": "arbres_llefia", + "imagery": "HDM_HOT", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2208848, + 41.4434507 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Peter Elderson", + "uid": "7103674", + "editor": "MapComplete 0.7.0a", + "comment": "Adding data with #MapComplete for theme #Afvalkokers", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-30T06:03:56Z", + "reviewed_features": [], + "create": 4, + "modify": 64, + "delete": 0, + "area": 0.000159324049689925, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103884702, + "host": "mapcomplete.osm.be", + "theme": "afvalkokers", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.604115050000001, + 51.96554185 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 42, + "name": "Invalid tag modification" + } + ], + "tags": [], + "features": [ + { + "url": "node-3215231020", + "osm_id": 3215231020, + "reasons": [ + 42 + ], + "version": 3, + "primary_tags": {} + } + ], + "user": "Nickrds09", + "uid": "966535", + "editor": "MapComplete 0.7.0a", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-30T04:02:17Z", + "reviewed_features": [], + "create": 1, + "modify": 5, + "delete": 0, + "area": 0.00289156397973999, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103877994, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "imagery": "Mapbox", + "language": "en", + "theme-creator": "Erwin Olario" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 121.5753042, + 13.94833535 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Nickrds09", + "uid": "966535", + "editor": "MapComplete 0.7.0a", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-30T01:04:57Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103874228, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "imagery": "HDM_HOT", + "language": "en", + "theme-creator": "Erwin Olario" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 121.5266097, + 13.9618558 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thibaultmol", + "uid": "2916921", + "editor": "MapComplete 0.6.7-unlocked", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-29T20:07:59Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103867866, + "host": "pietervdvn.github.io", + "theme": "shops", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3956956, + 51.0618712 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "lunaticstraydog", + "uid": "8577239", + "editor": "MapComplete 0.7.0a", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-29T19:05:04Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103865139, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.1383536, + 48.4387268 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Jean-Marc Liotier", + "uid": "160042", + "editor": "MapComplete 0.7.0a", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-29T16:24:55Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103857813, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.1807232, + 48.905622 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Michael Baier", + "uid": "13203884", + "editor": "MapComplete 0.6.11c", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-29T08:03:18Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103825106, + "host": "pietervdvn.github.io", + "theme": "benches", + "imagery": "osm", + "language": "de", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.7777917, + 48.1106173 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "GOwin", + "uid": "1041828", + "editor": "MapComplete 0.6.11c", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-29T00:34:45Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103805126, + "host": "pietervdvn.github.io", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 125.6132843, + 7.0810085 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thibaultmol", + "uid": "2916921", + "editor": "MapComplete 0.6.7-unlocked", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-28T20:43:41Z", + "reviewed_features": [], + "create": 0, + "modify": 10, + "delete": 0, + "area": 0.0000580317375200199, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103800844, + "host": "pietervdvn.github.io", + "theme": "shops", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3309564, + 51.0008052 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Peter Elderson", + "uid": "7103674", + "editor": "MapComplete 0.7.0a", + "comment": "Adding data with #MapComplete for theme #Afvalkokers", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-28T19:53:17Z", + "reviewed_features": [], + "create": 0, + "modify": 8, + "delete": 0, + "area": 0.0000891805844800018, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103799210, + "host": "mapcomplete.osm.be", + "theme": "afvalkokers", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.6052710999999995, + 51.964066900000006 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Albin Gasparetto", + "uid": "1227542", + "editor": "MapComplete 0.7.0a", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-28T18:45:57Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103796502, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2707072, + 48.8854112 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Peter Elderson", + "uid": "7103674", + "editor": "MapComplete 0.7.0a", + "comment": "Adding data with #MapComplete for theme #Afvalkokers", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-28T17:13:23Z", + "reviewed_features": [], + "create": 1, + "modify": 22, + "delete": 0, + "area": 0.0000582844585199724, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103792251, + "host": "mapcomplete.osm.be", + "theme": "afvalkokers", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.612473700000001, + 51.966145850000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "WinstonSmith", + "uid": "36030", + "editor": "MapComplete 0.7.0a", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-28T16:54:23Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103791227, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.3437134, + 44.4926522 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "tyr_asd", + "uid": "115612", + "editor": "MapComplete 0.7.0a", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-28T14:36:03Z", + "reviewed_features": [], + "create": 0, + "modify": 27, + "delete": 0, + "area": 0.000366338069120043, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103784297, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.6807961, + 49.4082013 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Koen Rijnsent", + "uid": "4569696", + "editor": "MapComplete 0.7.0a", + "comment": "Adding data with #MapComplete for theme #artworks", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-28T09:40:37Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 1.46418959992131e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103763467, + "host": "mapcomplete.osm.be", + "theme": "artworks", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.6853959, + 53.093366 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Koen Rijnsent", + "uid": "4569696", + "editor": "MapComplete 0.7.0a", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-28T09:14:40Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103761379, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.667859, + 53.0865434 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Globelotter", + "uid": "6141733", + "editor": "MapComplete 0.7.0a", + "comment": "Adding data with #MapComplete for theme #speelplekken", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-28T08:10:22Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 5.62456839999755e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103756614, + "host": "mapcomplete.osm.be", + "theme": "speelplekken", + "imagery": "CartoDB.Positron", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4785197, + 51.12169204999999 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Peter Elderson", + "uid": "7103674", + "editor": "MapComplete 0.7.0a", + "comment": "Adding data with #MapComplete for theme #Afvalkokers", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-28T06:03:41Z", + "reviewed_features": [], + "create": 75, + "modify": 0, + "delete": 0, + "area": 0.00296507797509979, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103747106, + "host": "mapcomplete.osm.be", + "theme": "afvalkokers", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.60077925, + 51.984085 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.7.0a", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-27T20:11:22Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103729838, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.7875312, + 51.2629135 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "velosophe", + "uid": "477861", + "editor": "MapComplete 0.7.0a", + "comment": "Adding data with #MapComplete for theme #nature", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-27T19:45:03Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.0000698386820500288, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103728876, + "host": "mapcomplete.osm.be", + "theme": "nature", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.67172295, + 51.038554250000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 42, + "name": "Invalid tag modification" + } + ], + "tags": [], + "features": [ + { + "url": "node-8576230995", + "osm_id": 8576230995, + "reasons": [ + 42 + ], + "version": 3, + "primary_tags": {} + } + ], + "user": "M!dgard", + "uid": "763799", + "editor": "MapComplete 0.6.11", + "comment": "Adding data with #MapComplete for theme #fire", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-27T19:31:16Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103728361, + "host": "mapcomplete.braindeaddev.com", + "theme": "fire", + "imagery": "osm", + "language": "nl", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.116502, + 51.2896921 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Peter Elderson", + "uid": "7103674", + "editor": "MapComplete 0.7.0a", + "comment": "Adding data with #MapComplete for theme #Afvalkokers", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-27T18:39:37Z", + "reviewed_features": [], + "create": 167, + "modify": 0, + "delete": 0, + "area": 0.00227582688775975, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103726335, + "host": "mapcomplete.osm.be", + "theme": "afvalkokers", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.63582415, + 51.9747927 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Obsi", + "uid": "21602", + "editor": "MapComplete 0.7.0a", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-27T16:16:47Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103718964, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "imagery": "HDM_HOT", + "language": "en", + "theme-creator": "Erwin Olario" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 25.1359414, + 60.2843251 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Peter Elderson", + "uid": "7103674", + "editor": "MapComplete 0.7.0a", + "comment": "Adding data with #MapComplete for theme #Afvalkokers", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-27T16:08:53Z", + "reviewed_features": [], + "create": 21, + "modify": 0, + "delete": 0, + "area": 0.0000865327225399693, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103718526, + "host": "mapcomplete.osm.be", + "theme": "afvalkokers", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.66598825, + 51.9904876 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Peter Elderson", + "uid": "7103674", + "editor": "MapComplete 0.7.0a", + "comment": "Adding data with #MapComplete for theme #Afvalkokers", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-27T16:08:53Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103718525, + "host": "mapcomplete.osm.be", + "theme": "afvalkokers", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.664737, + 51.9874499 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-3946965667", + "osm_id": 3946965667, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946965593", + "osm_id": 3946965593, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "Jose Luis Infante", + "uid": "126203", + "editor": "MapComplete 0.6.11c", + "comment": "Adding data with #MapComplete for theme #arbres_llefia", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-27T15:48:32Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 5.89087999996114e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103717492, + "host": "pietervdvn.github.io", + "theme": "arbres_llefia", + "imagery": "HDM_HOT", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2220553499999998, + 41.4406696 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "meihou", + "uid": "581277", + "editor": "MapComplete 0.7.0a", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-27T14:35:59Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 7.14479016379417, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103713935, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.23545105, + 46.65985685 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Peter Elderson", + "uid": "7103674", + "editor": "MapComplete 0.7.0a", + "comment": "Adding data with #MapComplete for theme #Afvalkokers", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-27T14:16:24Z", + "reviewed_features": [], + "create": 33, + "modify": 0, + "delete": 0, + "area": 0.0000907497364799392, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103713018, + "host": "mapcomplete.osm.be", + "theme": "afvalkokers", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.664675750000001, + 51.983955800000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.7.0a", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-27T13:35:08Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103710787, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7076497, + 51.0527377 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Peter Elderson", + "uid": "7103674", + "editor": "MapComplete 0.7.0a", + "comment": "Adding data with #MapComplete for theme #Afvalkokers", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-27T12:18:06Z", + "reviewed_features": [], + "create": 12, + "modify": 0, + "delete": 0, + "area": 0.0000180911337199889, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103706104, + "host": "mapcomplete.osm.be", + "theme": "afvalkokers", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.610163399999999, + 51.964806100000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Rico1913", + "uid": "13170820", + "editor": "MapComplete 0.7.0a", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 1, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-27T11:20:41Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103702168, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.4424327, + 51.5800064 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Will-Ink", + "uid": "13186657", + "editor": "MapComplete 0.7.0a", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-27T07:30:51Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103684185, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "fr.ign.bdortho", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.8990066, + 42.7019566 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-3947071300", + "osm_id": 3947071300, + "reasons": [ + 43 + ], + "version": 5, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8156135268", + "osm_id": 8156135268, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3947071335", + "osm_id": 3947071335, + "reasons": [ + 43 + ], + "version": 5, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3947071297", + "osm_id": 3947071297, + "reasons": [ + 43 + ], + "version": 5, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3947006834", + "osm_id": 3947006834, + "reasons": [ + 43 + ], + "version": 4, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8156135270", + "osm_id": 8156135270, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3947007005", + "osm_id": 3947007005, + "reasons": [ + 43 + ], + "version": 4, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3947007011", + "osm_id": 3947007011, + "reasons": [ + 43 + ], + "version": 4, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3947007143", + "osm_id": 3947007143, + "reasons": [ + 43 + ], + "version": 4, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3947006816", + "osm_id": 3947006816, + "reasons": [ + 43 + ], + "version": 5, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3947007384", + "osm_id": 3947007384, + "reasons": [ + 43 + ], + "version": 4, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3947007110", + "osm_id": 3947007110, + "reasons": [ + 43 + ], + "version": 4, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3947007315", + "osm_id": 3947007315, + "reasons": [ + 43 + ], + "version": 4, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946966192", + "osm_id": 3946966192, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946966169", + "osm_id": 3946966169, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3947007344", + "osm_id": 3947007344, + "reasons": [ + 43 + ], + "version": 4, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8202986695", + "osm_id": 8202986695, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3947006742", + "osm_id": 3947006742, + "reasons": [ + 43 + ], + "version": 6, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946965615", + "osm_id": 3946965615, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946965667", + "osm_id": 3946965667, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3947007055", + "osm_id": 3947007055, + "reasons": [ + 43 + ], + "version": 5, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946998686", + "osm_id": 3946998686, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946998743", + "osm_id": 3946998743, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3944731769", + "osm_id": 3944731769, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-6010958532", + "osm_id": 6010958532, + "reasons": [ + 43 + ], + "version": 5, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946998720", + "osm_id": 3946998720, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "Jose Luis Infante", + "uid": "126203", + "editor": "MapComplete 0.6.11c", + "comment": "Adding data with #MapComplete for theme #arbres_llefia", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-27T06:26:54Z", + "reviewed_features": [], + "create": 0, + "modify": 35, + "delete": 0, + "area": 0.0000383288180399955, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103678765, + "host": "pietervdvn.github.io", + "theme": "arbres_llefia", + "imagery": "HDM_HOT", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.22121365, + 41.4388982 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "GOwin", + "uid": "1041828", + "editor": "MapComplete 0.7.0a", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-27T03:08:05Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103667810, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "imagery": "HDM_HOT", + "language": "en", + "theme-creator": "Erwin Olario" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 122.5663318, + 10.6978999 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "GOwin", + "uid": "1041828", + "editor": "MapComplete 0.7.0a", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-27T02:53:02Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103667364, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 122.5676608, + 10.6979935 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Peter Elderson", + "uid": "7103674", + "editor": "MapComplete 0.7.0a", + "comment": "Adding data with #MapComplete for theme #wandelknooppunten", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-26T20:55:56Z", + "reviewed_features": [], + "create": 0, + "modify": 17, + "delete": 0, + "area": 0.00172381790175006, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103660877, + "host": "mapcomplete.osm.be", + "theme": "wandelknooppunten", + "imagery": "osm", + "language": "nl", + "theme-creator": "Peter Elderson" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.52963305, + 52.06181755 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Peter Elderson", + "uid": "7103674", + "editor": "MapComplete 0.7.0a", + "comment": "Adding data with #MapComplete for theme #benchesandpicnictables", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-26T19:11:24Z", + "reviewed_features": [], + "create": 19, + "modify": 0, + "delete": 0, + "area": 0.000769466814479946, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103657133, + "host": "mapcomplete.osm.be", + "theme": "benchesandpicnictables", + "imagery": "osm", + "language": "nl", + "theme-creator": "Peter Elderson" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.5399294999999995, + 52.060113099999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "_Mathieu_", + "uid": "53964", + "editor": "MapComplete 0.7.0a", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-26T18:29:27Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.000586047077840257, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103655718, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "fr", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2125226500000004, + 48.8769602 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "skifans", + "uid": "2800603", + "editor": "MapComplete 0.7.0a", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-26T13:13:48Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 1.07282739999468e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103640045, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.6039803, + 53.81568985 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Nuytinck", + "uid": "3719237", + "editor": "MapComplete 0.6.11c", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-26T12:29:24Z", + "reviewed_features": [], + "create": 0, + "modify": 6, + "delete": 0, + "area": 0.00155642563628982, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103637542, + "host": "pietervdvn.github.io", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.77511055, + 51.04929225 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "LySioS", + "uid": "11579673", + "editor": "MapComplete 0.7.0a", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-26T10:14:33Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103627326, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "imagery": "fr.ign.bdortho", + "language": "en", + "theme-creator": "Erwin Olario" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.9406506, + 42.6885199 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-6942691387", + "name": "Sliding Tiger", + "osm_id": 6942691387, + "reasons": [ + 43 + ], + "version": 5, + "primary_tags": { + "shop": "skate" + } + } + ], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.7.0a", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-26T10:13:57Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103627272, + "host": "mapcomplete.osm.be", + "theme": "shops", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7367263, + 51.0567966 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "tux67", + "uid": "112465", + "editor": "MapComplete 0.7.0a", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-26T08:41:00Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103619733, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.2773693, + 51.1411478 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "tux67", + "uid": "112465", + "editor": "MapComplete 0.7.0a", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-26T08:37:16Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.0000254162852099904, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103619432, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.27960755, + 51.13873235 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "GOwin", + "uid": "1041828", + "editor": "MapComplete 0.7.0a", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-26T08:22:46Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103618326, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 123.8552731, + 9.651098 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "tux67", + "uid": "112465", + "editor": "MapComplete 0.7.0a", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-26T07:46:15Z", + "reviewed_features": [], + "create": 0, + "modify": 8, + "delete": 0, + "area": 0.000392928888860044, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103615504, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.29111495, + 51.138160799999994 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thomas Citharel", + "uid": "6105237", + "editor": "MapComplete 0.7.0a", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-26T06:54:34Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 0.000154282262499938, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103611441, + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "osm", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.55113455, + 47.23013 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thomas Citharel", + "uid": "6105237", + "editor": "MapComplete 0.7.0a", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-26T06:52:54Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103611306, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "imagery": "osm", + "language": "fr", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.5353583, + 47.2348378 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Michael Nixt", + "uid": "6641970", + "editor": "MapComplete 0.7.0a", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-26T06:49:09Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 2.68921880003523e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103611007, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "imagery": "HDM_HOT", + "language": "en", + "theme-creator": "Erwin Olario" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -74.2946997, + 40.0078117 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thibaultmol", + "uid": "2916921", + "editor": "MapComplete 0.6.7-unlocked", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-26T05:55:01Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103607085, + "host": "pietervdvn.github.io", + "theme": "shops", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3127014, + 50.9999245 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "LySioS", + "uid": "11579673", + "editor": "MapComplete 0.7.0a", + "comment": "Adding data with #MapComplete for theme #sport_pitches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-25T21:28:14Z", + "reviewed_features": [], + "create": 0, + "modify": 11, + "delete": 0, + "area": 0.000456992045119921, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103592787, + "host": "mapcomplete.osm.be", + "theme": "sport_pitches", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.9391837, + 42.67761245 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Eisenspleiszer", + "uid": "1954432", + "editor": "MapComplete 0.7.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-25T18:58:34Z", + "reviewed_features": [], + "create": 3, + "modify": 5, + "delete": 0, + "area": 0.00000681795920000687, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103587980, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "de", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.6827261, + 51.0711484 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "MxxCon", + "uid": "384667", + "editor": "MapComplete 0.6.11c", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-25T17:50:09Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103585340, + "host": "pietervdvn.github.io", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.9209982, + 40.5834518 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Albin Gasparetto", + "uid": "1227542", + "editor": "MapComplete 0.7.0", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-25T17:20:10Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103584107, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2710022, + 48.8856122 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "sorcrosc", + "uid": "160229", + "editor": "MapComplete 0.7.0", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-25T17:06:55Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103583598, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 12.9228187, + 43.7338638 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Matthieu FAURE", + "uid": "6505140", + "editor": "MapComplete 0.7.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-25T16:26:15Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 0.0000148144850099932, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103582067, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.87308755, + 43.605526749999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.7.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-25T13:45:26Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103575209, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.6633976, + 50.8056975 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Kevo", + "uid": "40964", + "editor": "MapComplete 0.6.11c", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-25T13:26:49Z", + "reviewed_features": [], + "create": 0, + "modify": 6, + "delete": 0, + "area": 0.0000497309260799623, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103574380, + "host": "pietervdvn.github.io", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -79.857119, + 43.252467499999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "WinstonSmith", + "uid": "36030", + "editor": "MapComplete 0.7.0", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-25T12:40:24Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103572648, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.1892235, + 44.6373819 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "TeleTommy", + "uid": "579722", + "editor": "MapComplete 0.6.11c", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-25T11:44:46Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103570626, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.3503836, + 52.5298945 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.6.11c", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-25T11:12:32Z", + "reviewed_features": [], + "create": 1, + "modify": 4, + "delete": 0, + "area": 6.35737799999725e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103569305, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.65447915, + 50.822216 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Lizinvt", + "uid": "13164979", + "editor": "MapComplete 0.6.11c", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-25T11:03:43Z", + "reviewed_features": [], + "create": 3, + "modify": 12, + "delete": 0, + "area": 1.17110070006528e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103568967, + "host": "pietervdvn.github.io", + "theme": "benches", + "imagery": "osm", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.77156935, + 48.07982595 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "BoumTAC", + "uid": "2919291", + "editor": "MapComplete 0.6.11c", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-25T10:27:49Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.0000024813679799997, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103567684, + "host": "pietervdvn.github.io", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.4189151, + 43.65091185 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "WinstonSmith", + "uid": "36030", + "editor": "MapComplete 0.6.11c", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-25T10:05:38Z", + "reviewed_features": [], + "create": 2, + "modify": 1, + "delete": 0, + "area": 0.0000013801789599958, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103566900, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.3408582, + 44.4997321 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thibaultmol", + "uid": "2916921", + "editor": "MapComplete 0.6.7-unlocked", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-25T09:13:16Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103565210, + "host": "pietervdvn.github.io", + "theme": "shops", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3260135, + 51.000644 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thibaultmol", + "uid": "2916921", + "editor": "MapComplete 0.6.7-unlocked", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-25T07:11:21Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103561909, + "host": "pietervdvn.github.io", + "theme": "shops", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3244923, + 50.9997912 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "GOwin", + "uid": "1041828", + "editor": "MapComplete 0.6.11a", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-25T03:27:57Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103558695, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "imagery": "HDM_HOT", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 121.0828409, + 14.6596073 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Lizinvt", + "uid": "13164979", + "editor": "MapComplete 0.6.11c", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-24T18:51:15Z", + "reviewed_features": [], + "create": 3, + "modify": 15, + "delete": 0, + "area": 4.47544000015647e-8, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103549083, + "host": "pietervdvn.github.io", + "theme": "benches", + "imagery": "osm", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.7667222, + 48.112535300000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "sjokomoeske", + "uid": "10187049", + "editor": "MapComplete 0.6.11a", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 3, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-24T16:30:27Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103544375, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.1001049, + 51.0165051 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Lizinvt", + "uid": "13164979", + "editor": "MapComplete 0.6.11c", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-24T13:45:28Z", + "reviewed_features": [], + "create": 4, + "modify": 7, + "delete": 0, + "area": 0.0000200319622800068, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103537961, + "host": "pietervdvn.github.io", + "theme": "benches", + "imagery": "osm", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.765712350000001, + 48.1083301 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "PeeWee32", + "uid": "353766", + "editor": "MapComplete 0.6.11a", + "comment": "Adding data with #MapComplete for theme #benchesandpicnictables", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-24T12:25:53Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103534538, + "host": "mapcomplete.osm.be", + "theme": "benchesandpicnictables", + "imagery": "osm", + "language": "en", + "theme-creator": "Peter Elderson" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.3776462, + 52.1109647 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "lunaticstraydog", + "uid": "8577239", + "editor": "MapComplete 0.6.11a", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-24T11:34:03Z", + "reviewed_features": [], + "create": 3, + "modify": 10, + "delete": 0, + "area": 3.96168999980734e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103532232, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.19442785, + 48.493589 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Nesim", + "uid": "1386706", + "editor": "MapComplete 0.6.11a", + "comment": "Adding data with #MapComplete for theme #sport_pitches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-24T10:44:15Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 6.20073479998934e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103529906, + "host": "mapcomplete.osm.be", + "theme": "sport_pitches", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 41.13276005, + 37.8570153 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Koen Rijnsent", + "uid": "4569696", + "editor": "MapComplete 0.6.11a", + "comment": "Adding data with #MapComplete for theme #artworks", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-24T09:21:48Z", + "reviewed_features": [], + "create": 1, + "modify": 13, + "delete": 0, + "area": 0.0000324993337099901, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103525894, + "host": "mapcomplete.osm.be", + "theme": "artworks", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.12519655, + 52.087020949999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.6.11a", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-24T08:31:24Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103523507, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2903521, + 50.7295549 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Nickrds09", + "uid": "966535", + "editor": "MapComplete 0.6.11a", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-24T03:51:10Z", + "reviewed_features": [], + "create": 4, + "modify": 16, + "delete": 0, + "area": 1.19976958362198, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103512374, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "imagery": "HDM_HOT", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 121.9609121, + 13.741767549999999 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-8660380917", + "osm_id": 8660380917, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "amenity": "bicycle_wash" + } + } + ], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.6.11c", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-23T20:50:07Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103505587, + "host": "pietervdvn.github.io", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3496761, + 50.8484877 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.6.11a", + "comment": "Adding data with #MapComplete for theme #speelplekken", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-23T14:57:48Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 1.3517208000206e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103490224, + "host": "127.0.0.1:1234", + "theme": "speelplekken", + "imagery": "CartoDB.Positron", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4736377, + 51.127487099999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.6.11a", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-23T13:28:06Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103485405, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2673597, + 50.6998045 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Nickrds09", + "uid": "966535", + "editor": "MapComplete 0.6.11a", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-23T13:27:30Z", + "reviewed_features": [], + "create": 10, + "modify": 24, + "delete": 0, + "area": 0.279065994180779, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103485381, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "imagery": "HDM_HOT", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 122.06508794999999, + 13.8806443 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Nickrds09", + "uid": "966535", + "editor": "MapComplete 0.6.11", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-23T09:53:19Z", + "reviewed_features": [], + "create": 9, + "modify": 31, + "delete": 0, + "area": 0.405043122462078, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103471234, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "imagery": "HDM_HOT", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 121.98013900000001, + 13.76260375 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Nickrds09", + "uid": "966535", + "editor": "MapComplete 0.6.11", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-23T09:48:55Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103470879, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "imagery": "HDM_HOT", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 121.5592763, + 13.9654559 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Nickrds09", + "uid": "966535", + "editor": "MapComplete 0.6.11", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-23T06:05:05Z", + "reviewed_features": [], + "create": 22, + "modify": 35, + "delete": 0, + "area": 0.00300872569368029, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103454072, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "imagery": "HDM_HOT", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 121.5693514, + 13.9474464 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "n1kn0k", + "uid": "867701", + "editor": "MapComplete 0.6.11", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-23T05:11:03Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103450456, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 125.6069952, + 7.0685686 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "n1kn0k", + "uid": "867701", + "editor": "MapComplete 0.6.11", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-23T03:34:34Z", + "reviewed_features": [], + "create": 2, + "modify": 4, + "delete": 0, + "area": 3.68000001104742e-12, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103445880, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "Mapbox", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 123.94137945, + 10.3282972 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Wim L", + "uid": "223681", + "editor": "MapComplete 0.6.11", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-23T03:22:51Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103445557, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -122.27791745, + 47.7566983 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.6.11", + "comment": "Adding data with #MapComplete for theme #sport_pitches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-22T20:47:55Z", + "reviewed_features": [], + "create": 2, + "modify": 2, + "delete": 0, + "area": 2.12602000003654e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103437168, + "host": "mapcomplete.osm.be", + "theme": "sport_pitches", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.709485, + 51.05970835 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.6.11", + "comment": "Adding data with #MapComplete for theme #fietsstraten", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-22T19:32:10Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.0000053929174799905, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103433755, + "host": "pietervdvn.github.io", + "theme": "fietsstraten", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.6331276, + 51.0123862 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Mannivu", + "uid": "1950277", + "editor": "MapComplete 0.6.11", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-22T16:58:32Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 4.144000000789e-11, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103426836, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.644862199999999, + 45.496666399999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "lunaticstraydog", + "uid": "8577239", + "editor": "MapComplete 0.6.11", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-22T15:40:40Z", + "reviewed_features": [], + "create": 2, + "modify": 7, + "delete": 0, + "area": 5.10811200000936e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103423398, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.1979603, + 48.47839345 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "augxcgrwxo", + "uid": "371263", + "editor": "MapComplete 0.6.11", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 1, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-22T15:28:31Z", + "reviewed_features": [], + "create": 0, + "modify": 14, + "delete": 0, + "area": 0.000101243733580009, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103422786, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 37.61821865, + 55.7135046 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.6.11", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-22T13:21:08Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103415960, + "host": "pietervdvn.github.io", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7043881, + 51.0527373 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Albin Gasparetto", + "uid": "1227542", + "editor": "MapComplete 0.6.10", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-22T12:09:39Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103411505, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.3516804, + 48.9176894 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Bezzeke2", + "uid": "13134201", + "editor": "MapComplete 0.6.10", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-22T11:43:24Z", + "reviewed_features": [], + "create": 1, + "modify": 6, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103409605, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.8206109, + 50.9322662 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "LySioS", + "uid": "11579673", + "editor": "MapComplete 0.6.10", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-22T10:37:21Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103404533, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "imagery": "fr.ign.bdortho", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.9264483, + 42.6576455 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Nickrds09", + "uid": "966535", + "editor": "MapComplete 0.6.10", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-22T10:20:01Z", + "reviewed_features": [], + "create": 4, + "modify": 5, + "delete": 0, + "area": 0.00000402455133999788, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103403231, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "imagery": "HDM_HOT", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 121.5602278, + 13.963747349999998 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thibaultmol", + "uid": "2916921", + "editor": "MapComplete 0.6.7-unlocked", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-22T07:57:20Z", + "reviewed_features": [], + "create": 7, + "modify": 8, + "delete": 0, + "area": 0.00000529894613999749, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103391474, + "host": "pietervdvn.github.io", + "theme": "trees", + "imagery": "AGIV10cm", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3956645500000002, + 51.035928600000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thibaultmol", + "uid": "2916921", + "editor": "MapComplete 0.6.7-unlocked", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-22T07:43:53Z", + "reviewed_features": [], + "create": 0, + "modify": 7, + "delete": 0, + "area": 0.000214772534330083, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103390492, + "host": "pietervdvn.github.io", + "theme": "shops", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.40144025, + 51.04021015 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thibaultmol", + "uid": "2916921", + "editor": "MapComplete 0.6.7-unlocked", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-22T07:43:29Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103390457, + "host": "pietervdvn.github.io", + "theme": "shops", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3955539, + 51.041811 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Koen Rijnsent", + "uid": "4569696", + "editor": "MapComplete 0.6.10", + "comment": "Adding data with #MapComplete for theme #artworks", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-22T07:40:37Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103390249, + "host": "mapcomplete.osm.be", + "theme": "artworks", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.1246316, + 52.0640521 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jonesydesign", + "uid": "1802220", + "editor": "MapComplete 0.6.10", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-22T05:44:32Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103380918, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -93.2266867, + 44.9250087 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Nickrds09", + "uid": "966535", + "editor": "MapComplete 0.6.10", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-22T04:45:18Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103376804, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "imagery": "HDM_HOT", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 121.5611337, + 13.964858 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.6.9a", + "comment": "Adding data with #MapComplete for theme #speelplekken", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-22T00:51:10Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 2.09371200014009e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103368989, + "host": "127.0.0.1:1234", + "theme": "speelplekken", + "imagery": "CartoDB.Positron", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.452056499999999, + 51.16578 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "pkoby", + "uid": "999995", + "editor": "MapComplete 0.6.8b", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-21T23:04:24Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103367247, + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "osm", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -82.4353854, + 38.4095972 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "pkoby", + "uid": "999995", + "editor": "MapComplete 0.6.8b", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-21T23:02:04Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103367189, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -82.4355031, + 38.4107301 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thibaultmol", + "uid": "2916921", + "editor": "MapComplete 0.6.7-unlocked", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-21T18:34:16Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103359495, + "host": "pietervdvn.github.io", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3996981, + 51.0422216 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thibaultmol", + "uid": "2916921", + "editor": "MapComplete 0.6.7-unlocked", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-21T18:25:42Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 8.30502400006219e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103359206, + "host": "pietervdvn.github.io", + "theme": "charging_stations", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.39846125, + 51.040937400000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.6.8a", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-21T16:37:17Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103354074, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7083597, + 51.0344284 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "RudiEn", + "uid": "10472364", + "editor": "MapComplete 0.6.8a", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-21T16:25:24Z", + "reviewed_features": [], + "create": 1, + "modify": 9, + "delete": 0, + "area": 0.0000311663818800177, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103353500, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.33376155, + 60.3956242 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Peter Elderson", + "uid": "7103674", + "editor": "MapComplete 0.6.8a", + "comment": "Adding data with #MapComplete for theme #benchesandpicnictables", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-21T13:52:09Z", + "reviewed_features": [], + "create": 2, + "modify": 0, + "delete": 0, + "area": 0.00000386776096000311, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103345352, + "host": "mapcomplete.osm.be", + "theme": "benchesandpicnictables", + "imagery": "osm", + "language": "en", + "theme-creator": "Peter Elderson" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.61190895, + 51.966736499999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "GOwin", + "uid": "1041828", + "editor": "MapComplete 0.6.8a", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-21T13:18:02Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103343609, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "imagery": "HDM_HOT", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 123.9453466, + 10.326233 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "pkoby", + "uid": "999995", + "editor": "MapComplete 0.6.8a", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-21T12:38:44Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 5.04053999960899e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103341339, + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "osm", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -82.43544065, + 38.4097843 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-3947071291", + "osm_id": 3947071291, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "Jose Luis Infante", + "uid": "126203", + "editor": "MapComplete 0.6.9a", + "comment": "Adding data with #MapComplete for theme #arbres_llefia", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-21T10:24:14Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103331539, + "host": "pietervdvn.github.io", + "theme": "arbres_llefia", + "imagery": "HDM_HOT", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2201841, + 41.4424398 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "cimm", + "uid": "3921", + "editor": "MapComplete 0.6.8a", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-21T08:55:15Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103324534, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.6998021, + 50.8794035 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.6.8a", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-21T07:39:38Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 5.21519999970574e-10, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103318797, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.26013865, + 50.7373888 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Peter Elderson", + "uid": "7103674", + "editor": "MapComplete 0.6.8a", + "comment": "Adding data with #MapComplete for theme #benchesandpicnictables", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-21T06:25:03Z", + "reviewed_features": [], + "create": 9, + "modify": 7, + "delete": 0, + "area": 0.00847515906144041, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103313082, + "host": "mapcomplete.osm.be", + "theme": "benchesandpicnictables", + "imagery": "osm", + "language": "en", + "theme-creator": "Peter Elderson" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.4389646, + 51.6000302 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Peter Elderson", + "uid": "7103674", + "editor": "MapComplete 0.6.8a", + "comment": "Adding data with #MapComplete for theme #wandelknooppunten", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-21T06:19:16Z", + "reviewed_features": [], + "create": 1, + "modify": 46, + "delete": 0, + "area": 0.0147562411059001, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103312624, + "host": "mapcomplete.osm.be", + "theme": "wandelknooppunten", + "imagery": "osm", + "language": "en", + "theme-creator": "Peter Elderson" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.46051495, + 51.6131807 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.6.8", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-20T22:35:23Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.00000356402175995795, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103297645, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.377617, + 50.863287 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.6.9", + "comment": "Adding data with #MapComplete for theme #speelplekken", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-20T21:59:16Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 2.46211499997355e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103296793, + "host": "127.0.0.1:1234", + "theme": "speelplekken", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.34342565, + 51.11081085 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Peter Elderson", + "uid": "7103674", + "editor": "MapComplete 0.6.8", + "comment": "Adding data with #MapComplete for theme #benchesandpicnictables", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-20T21:08:43Z", + "reviewed_features": [], + "create": 4, + "modify": 1, + "delete": 0, + "area": 0.000269667628399887, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103295478, + "host": "mapcomplete.osm.be", + "theme": "benchesandpicnictables", + "imagery": "osm", + "language": "en", + "theme-creator": "Peter Elderson" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.2309894, + 51.562237350000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 42, + "name": "Invalid tag modification" + } + ], + "tags": [], + "features": [ + { + "url": "relation-3970676", + "osm_id": 3970676, + "reasons": [ + 42 + ], + "version": 6, + "primary_tags": {} + } + ], + "user": "Peter Elderson", + "uid": "7103674", + "editor": "MapComplete 0.6.8", + "comment": "Adding data with #MapComplete for theme #wandelknooppunten", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-20T20:35:46Z", + "reviewed_features": [], + "create": 2, + "modify": 29, + "delete": 0, + "area": 0.00338411077554092, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103294317, + "host": "mapcomplete.osm.be", + "theme": "wandelknooppunten", + "imagery": "osm", + "language": "en", + "theme-creator": "Peter Elderson" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.24147635, + 51.5658794 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.6.9", + "comment": "Adding data with #MapComplete for theme #fritures", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-20T19:19:01Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103291488, + "host": "pietervdvn.github.io", + "theme": "fritures", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.6996553, + 51.0521448 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Loshu", + "uid": "198183", + "editor": "MapComplete 0.6.8", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-20T19:07:43Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 4.89060000116434e-10, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103291002, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.59393635, + 47.4109246 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.6.9", + "comment": "Adding data with #MapComplete for theme #speelplekken", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-20T18:30:03Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 2.04431060000529e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103289583, + "host": "127.0.0.1:1234", + "theme": "speelplekken", + "imagery": "CartoDB.Positron", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.348305699999999, + 51.112392850000006 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.6.9", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-20T18:16:25Z", + "reviewed_features": [], + "create": 2, + "modify": 5, + "delete": 0, + "area": 3.08499999988366e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103289112, + "host": "pietervdvn.github.io", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.34877945, + 50.8676184 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "geometrix", + "uid": "726983", + "editor": "MapComplete 0.6.8", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-20T16:42:49Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 1.55619859997901e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103284303, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -71.41285429999999, + 42.51649165 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "habi", + "uid": "15671", + "editor": "MapComplete 0.6.8", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-20T16:04:09Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0.00000233138604000312, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103282552, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.6319973, + 46.75648255 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.6.9", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-20T15:33:36Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103281267, + "host": "pietervdvn.github.io", + "theme": "cyclofix", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2675099, + 50.7129995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Peter Elderson", + "uid": "7103674", + "editor": "MapComplete 0.6.8", + "comment": "Adding data with #MapComplete for theme #benchesandpicnictables", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-20T13:36:37Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103275319, + "host": "mapcomplete.osm.be", + "theme": "benchesandpicnictables", + "imagery": "osm", + "language": "en", + "theme-creator": "Peter Elderson" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.2930548, + 51.5605659 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Koen Rijnsent", + "uid": "4569696", + "editor": "MapComplete 0.6.8", + "comment": "Adding data with #MapComplete for theme #artworks", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-20T13:02:22Z", + "reviewed_features": [], + "create": 5, + "modify": 10, + "delete": 0, + "area": 0.0000484969809199723, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103273460, + "host": "mapcomplete.osm.be", + "theme": "artworks", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.1236589, + 52.06611545 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "guido-vh", + "uid": "12749743", + "editor": "MapComplete 0.6.8", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-20T12:54:57Z", + "reviewed_features": [], + "create": 2, + "modify": 3, + "delete": 0, + "area": 2.9967599998491e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103273018, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.2029236, + 52.01746955 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Peter Elderson", + "uid": "7103674", + "editor": "MapComplete 0.6.8", + "comment": "Adding data with #MapComplete for theme #benchesandpicnictables", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-20T12:29:30Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.0000468437978199805, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103271439, + "host": "mapcomplete.osm.be", + "theme": "benchesandpicnictables", + "imagery": "osm", + "language": "en", + "theme-creator": "Peter Elderson" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.33383325, + 51.5352116 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Peter Elderson", + "uid": "7103674", + "editor": "MapComplete 0.6.8", + "comment": "Adding data with #MapComplete for theme #wandelknooppunten", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-20T12:19:49Z", + "reviewed_features": [], + "create": 0, + "modify": 35, + "delete": 0, + "area": 0.00299584793991967, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103270749, + "host": "mapcomplete.osm.be", + "theme": "wandelknooppunten", + "imagery": "osm", + "language": "en", + "theme-creator": "Peter Elderson" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.3191073, + 51.544087399999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jospyck", + "uid": "12128135", + "editor": "MapComplete 0.6.8", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-20T12:03:53Z", + "reviewed_features": [], + "create": 1, + "modify": 7, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103269560, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2022732, + 50.9096269 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Koen Rijnsent", + "uid": "4569696", + "editor": "MapComplete 0.6.8", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-20T11:50:23Z", + "reviewed_features": [], + "create": 8, + "modify": 17, + "delete": 0, + "area": 0.000319633404920009, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103268470, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.1285244500000005, + 52.0633839 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Koen Rijnsent", + "uid": "4569696", + "editor": "MapComplete 0.6.8", + "comment": "Adding data with #MapComplete for theme #artworks", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-20T11:32:42Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 0.00000139774499999782, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103266935, + "host": "mapcomplete.osm.be", + "theme": "artworks", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.1310661500000005, + 52.0734135 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jospyck", + "uid": "12128135", + "editor": "MapComplete 0.6.8", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-20T11:24:13Z", + "reviewed_features": [], + "create": 3, + "modify": 5, + "delete": 0, + "area": 0.0000133777874999957, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103266171, + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "osm", + "language": "nl", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.19407185, + 50.9226867 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Michel Stuyts", + "uid": "62284", + "editor": "MapComplete 0.6.8", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-20T11:12:45Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103265243, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2296129, + 49.9212138 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jospyck", + "uid": "12128135", + "editor": "MapComplete 0.6.8", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-20T10:54:15Z", + "reviewed_features": [], + "create": 2, + "modify": 5, + "delete": 0, + "area": 0.000112191495000005, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103263799, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.1980299500000005, + 50.928646 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Peter Elderson", + "uid": "7103674", + "editor": "MapComplete 0.6.8", + "comment": "Adding data with #MapComplete for theme #wandelknooppunten", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-20T10:46:01Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103263170, + "host": "mapcomplete.osm.be", + "theme": "wandelknooppunten", + "imagery": "osm", + "language": "en", + "theme-creator": "Peter Elderson" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.3440142, + 51.5417397 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Peter Elderson", + "uid": "7103674", + "editor": "MapComplete 0.6.8", + "comment": "Adding data with #MapComplete for theme #benchesandpicnictables", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-20T10:23:16Z", + "reviewed_features": [], + "create": 2, + "modify": 0, + "delete": 0, + "area": 0.000341195505599984, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103261415, + "host": "mapcomplete.osm.be", + "theme": "benchesandpicnictables", + "imagery": "osm", + "language": "en", + "theme-creator": "Peter Elderson" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.36784805, + 51.5519979 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "sjokomoeske", + "uid": "10187049", + "editor": "MapComplete 0.6.8", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-20T10:07:12Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 0.000134978694999974, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103260014, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "AGIV10cm", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.19466695, + 51.0505694 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Nesim", + "uid": "1386706", + "editor": "MapComplete 0.6.8", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-19T20:57:01Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103222342, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 41.1176319, + 37.9059134 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "oscar331", + "uid": "13105112", + "editor": "MapComplete 0.6.9", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-19T20:56:13Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 6.96463999997482e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103222324, + "host": "pietervdvn.github.io", + "theme": "trees", + "imagery": "osm", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.72286005000001, + -33.4337893 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Fauranië", + "uid": "12949754", + "editor": "MapComplete 0.6.8", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-19T20:32:55Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103221632, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1118165, + 50.999427 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Fauranië", + "uid": "12949754", + "editor": "MapComplete 0.6.8", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-19T20:11:45Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103220970, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1256514, + 50.9924841 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.6.9", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-19T17:58:50Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103216363, + "host": "pietervdvn.github.io", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3918089, + 50.8457251 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Koen Rijnsent", + "uid": "4569696", + "editor": "MapComplete 0.6.8", + "comment": "Adding data with #MapComplete for theme #artworks", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-19T14:36:33Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103205616, + "host": "mapcomplete.osm.be", + "theme": "artworks", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.1251972, + 52.0803334 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ianp5a", + "uid": "3665018", + "editor": "MapComplete 0.6.8", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-19T13:53:50Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103203158, + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "osm", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.551116, + 48.1437266 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "kersentaart", + "uid": "9812520", + "editor": "MapComplete 0.6.8", + "comment": "Adding data with #MapComplete for theme #nature", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-19T12:41:16Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.000967734501789375, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103198865, + "host": "mapcomplete.osm.be", + "theme": "nature", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.64203045, + 51.064950350000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Petymag", + "uid": "323895", + "editor": "MapComplete 0.6.8", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-19T11:46:23Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103195164, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 18.7153246, + 46.3473224 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Petymag", + "uid": "323895", + "editor": "MapComplete 0.6.8", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-19T11:38:04Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103194538, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 18.5310107, + 46.2983756 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Larmax", + "uid": "8105430", + "editor": "MapComplete 0.6.8", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-19T10:31:29Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.000114287077149888, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103189465, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 24.72087295, + 60.164690050000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "ozmium", + "uid": "1755379", + "editor": "MapComplete 0.6.8", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-19T10:29:30Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103189317, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 19.0979565, + 47.559217 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ianp5a", + "uid": "3665018", + "editor": "MapComplete 0.6.8", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-19T09:08:36Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103182758, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.5143081, + 48.1391637 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "nix78", + "uid": "57470", + "editor": "MapComplete 0.6.8", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-19T08:44:05Z", + "reviewed_features": [], + "create": 7, + "modify": 11, + "delete": 0, + "area": 0.00455334018054976, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103180679, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 19.21700565, + 47.48696645 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "nix78", + "uid": "57470", + "editor": "MapComplete 0.6.8", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-19T08:22:40Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103178974, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 19.237448, + 47.4826637 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "gabriele_sani", + "uid": "7078274", + "editor": "MapComplete 0.6.8", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-19T08:20:46Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103178811, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.883755, + 44.2846558 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "kersentaart", + "uid": "9812520", + "editor": "MapComplete 0.6.8", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-19T07:33:08Z", + "reviewed_features": [], + "create": 0, + "modify": 22, + "delete": 0, + "area": 0.0110833813761602, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103175160, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.6449865, + 51.0940244 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Johnny Carlsen", + "uid": "38985", + "editor": "MapComplete 0.6.8", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-19T07:06:55Z", + "reviewed_features": [], + "create": 0, + "modify": 12, + "delete": 0, + "area": 0.00403107807199988, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103173062, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 99.1390195, + 18.7485279 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Sam Wilson", + "uid": "36235", + "editor": "MapComplete 0.6.8", + "comment": "Adding data with #MapComplete for theme #artworks", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-18T23:45:13Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103157057, + "host": "mapcomplete.osm.be", + "theme": "artworks", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 115.768089, + -32.055927 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "ShakyIsles", + "uid": "1968467", + "editor": "MapComplete 0.6.8", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-18T23:31:27Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 6.61977999954336e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103156898, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 175.2197404, + -40.46107615 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Discostu36", + "uid": "8265165", + "editor": "MapComplete 0.6.8", + "comment": "Adding data with #MapComplete for theme #artworks", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-18T20:53:00Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103153907, + "host": "mapcomplete.osm.be", + "theme": "artworks", + "imagery": "osm", + "language": "de", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 10.1239779, + 54.3264599 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Nesim", + "uid": "1386706", + "editor": "MapComplete 0.6.8", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-18T20:15:39Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.00317797638605992, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103152905, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 41.10913835, + 37.8621806 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Nesim", + "uid": "1386706", + "editor": "MapComplete 0.6.8", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-18T20:03:02Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.000119049140999968, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103152539, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 41.1293489, + 37.8943816 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "greeninsano", + "uid": "13111722", + "editor": "MapComplete 0.6.8", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-18T19:54:12Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103152292, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 25.4270774, + 57.3837463 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Nesim", + "uid": "1386706", + "editor": "MapComplete 0.6.8", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-18T19:53:16Z", + "reviewed_features": [], + "create": 0, + "modify": 6, + "delete": 0, + "area": 0.00796069173495001, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103152262, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 41.09752765, + 37.84683495 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Mex", + "uid": "54831", + "editor": "MapComplete 0.6.8", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-18T16:56:08Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 1.12640000003352e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103146450, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.8391177999999999, + 51.130258 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "NLthijs48", + "uid": "2997785", + "editor": "MapComplete 0.6.8", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-18T16:42:59Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 3.31581600007204e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103145897, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.9073992, + 52.404361949999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "goldenking05", + "uid": "11617335", + "editor": "MapComplete 0.6.8", + "comment": "Adding data with #MapComplete for theme #sport_pitches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-18T15:53:05Z", + "reviewed_features": [], + "create": 0, + "modify": 18, + "delete": 0, + "area": 0.000367336449479934, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103143869, + "host": "mapcomplete.osm.be", + "theme": "sport_pitches", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -85.17043415, + 41.0795563 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "goldenking05", + "uid": "11617335", + "editor": "MapComplete 0.6.8", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-18T15:33:16Z", + "reviewed_features": [], + "create": 0, + "modify": 13, + "delete": 0, + "area": 0.00031673534139991, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103143021, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -85.1569461, + 41.08970645 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "goldenking05", + "uid": "11617335", + "editor": "MapComplete 0.6.8", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-18T15:16:30Z", + "reviewed_features": [], + "create": 0, + "modify": 42, + "delete": 0, + "area": 0.268738891313764, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103142359, + "host": "mapcomplete.osm.be", + "theme": "shops", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -85.02470170000001, + 41.408981100000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "goldenking05", + "uid": "11617335", + "editor": "MapComplete 0.6.8", + "comment": "Adding data with #MapComplete for theme #nature", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-18T15:04:44Z", + "reviewed_features": [], + "create": 0, + "modify": 9, + "delete": 0, + "area": 0.00531850202624015, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103141835, + "host": "mapcomplete.osm.be", + "theme": "nature", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -85.21750209999999, + 41.0497343 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "goldenking05", + "uid": "11617335", + "editor": "MapComplete 0.6.8", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-18T14:15:23Z", + "reviewed_features": [], + "create": 3, + "modify": 33, + "delete": 0, + "area": 0.00130231914814981, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103139801, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -85.15871295, + 41.08753605 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "goldenking05", + "uid": "11617335", + "editor": "MapComplete 0.6.8", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-18T14:13:30Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 2.71949999831865e-10, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103139706, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -85.18066114999999, + 41.07892185 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "goldenking05", + "uid": "11617335", + "editor": "MapComplete 0.6.8", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-18T14:06:52Z", + "reviewed_features": [], + "create": 0, + "modify": 6, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103139388, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -85.1795744, + 41.088582 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "kkonrad", + "uid": "13109738", + "editor": "MapComplete 0.6.8", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-18T13:54:46Z", + "reviewed_features": [], + "create": 2, + "modify": 2, + "delete": 0, + "area": 0.00894197615134992, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103138821, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.27922425, + 48.14709545 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "art-smith", + "uid": "13106766", + "editor": "MapComplete 0.6.8", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-18T12:56:16Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103136285, + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "osm", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -81.4503622, + 39.410636 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "ConsEbt", + "uid": "313448", + "editor": "MapComplete 0.6.8", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-18T12:55:10Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103136249, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 151.2959513, + -33.7027022 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "cimm", + "uid": "3921", + "editor": "MapComplete 0.6.8", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-18T12:47:08Z", + "reviewed_features": [], + "create": 3, + "modify": 7, + "delete": 0, + "area": 7.4709575999147e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103135976, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.7030966, + 50.8789727 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "ConsEbt", + "uid": "313448", + "editor": "MapComplete 0.6.8", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-18T12:39:41Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 4.33621800030818e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103135677, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 150.3785788, + -35.555895750000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "ConsEbt", + "uid": "313448", + "editor": "MapComplete 0.6.8", + "comment": "Adding data with #MapComplete for theme #campersite", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-18T12:37:29Z", + "reviewed_features": [], + "create": 0, + "modify": 6, + "delete": 0, + "area": 0.0000206650548000155, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103135600, + "host": "mapcomplete.osm.be", + "theme": "campersite", + "imagery": "osm", + "language": "en", + "theme-creator": "joost schouppe" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 150.37994400000002, + -35.5548857 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "ConsEbt", + "uid": "313448", + "editor": "MapComplete 0.6.8", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-18T12:36:36Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103135574, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 150.3777334, + -35.5567564 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "ConsEbt", + "uid": "313448", + "editor": "MapComplete 0.6.8", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-18T12:26:34Z", + "reviewed_features": [], + "create": 1, + "modify": 6, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103135174, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 151.2814003, + -33.7044204 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "wvdp", + "uid": "436419", + "editor": "MapComplete 0.6.8", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-18T12:01:50Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 6.36459999963662e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103134334, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.25903275, + 51.8222502 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "wvdp", + "uid": "436419", + "editor": "MapComplete 0.6.8", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-18T12:00:35Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103134287, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2510968, + 51.8217336 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AE35", + "uid": "21323", + "editor": "MapComplete 0.6.8", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-18T11:37:09Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103133460, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 12.0682571, + 55.8387637 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "tobim91", + "uid": "3233303", + "editor": "MapComplete 0.6.8", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-18T11:25:39Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 0.26231692900523, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103133004, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "imagery": "osm", + "language": "de", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.44694775, + 48.831289049999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "tobim91", + "uid": "3233303", + "editor": "MapComplete 0.6.8", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-18T11:19:40Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.0000816463992599982, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103132818, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.53531555, + 48.0541955 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "cimm", + "uid": "3921", + "editor": "MapComplete 0.6.8", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-18T11:16:09Z", + "reviewed_features": [], + "create": 0, + "modify": 10, + "delete": 0, + "area": 0.000090187992719992, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103132726, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.7016007, + 50.8617558 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "norc_kroska", + "uid": "11117699", + "editor": "MapComplete 0.6.8", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-18T10:38:08Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103131542, + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "osm", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 14.5848571, + 46.0554088 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "norc_kroska", + "uid": "11117699", + "editor": "MapComplete 0.6.8", + "comment": "Adding data with #MapComplete for theme #climbing", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-18T10:34:52Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103131428, + "host": "mapcomplete.osm.be", + "theme": "climbing", + "imagery": "osm", + "language": "en", + "theme-creator": "Christian Neumann " + }, + "geometry": { + "type": "Point", + "coordinates": [ + 14.6044779, + 46.1405958 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "norc_kroska", + "uid": "11117699", + "editor": "MapComplete 0.6.8", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-18T10:32:13Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103131310, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 14.5823525, + 46.0538395 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "sw-mapper", + "uid": "13101576", + "editor": "MapComplete 0.6.8", + "comment": "Adding data with #MapComplete for theme #maps", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-18T10:28:44Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103131213, + "host": "mapcomplete.osm.be", + "theme": "maps", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.1667269, + 47.7592266 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "hfs", + "uid": "9607", + "editor": "MapComplete 0.6.8", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-18T09:53:25Z", + "reviewed_features": [], + "create": 0, + "modify": 10, + "delete": 0, + "area": 0.00428406135195021, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103130080, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.08300595, + 52.39096485 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Bertware", + "uid": "9437839", + "editor": "MapComplete 0.6.8", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-18T09:51:56Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103130019, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 18.0532542, + 59.3280479 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Jakka", + "uid": "2403313", + "editor": "MapComplete 0.6.8d", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-18T09:33:59Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103129483, + "host": "pietervdvn.github.io", + "theme": "aed", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.186226, + 50.791883 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.6.8d", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-18T07:21:13Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 6.55400899996394e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103125915, + "host": "pietervdvn.github.io", + "theme": "grb", + "imagery": "AGIVFlandersGRB", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.23062295, + 51.207059150000006 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.6.8c", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-17T17:16:25Z", + "reviewed_features": [], + "create": 3, + "modify": 3, + "delete": 0, + "area": 2.04511339995621e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103111818, + "host": "pietervdvn.github.io", + "theme": "trees", + "imagery": "Mapbox", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -80.4528252, + 22.142556550000002 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Fauranië", + "uid": "12949754", + "editor": "MapComplete 0.6.8", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-17T16:08:33Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103109636, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1127181, + 50.9586203 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Fauranië", + "uid": "12949754", + "editor": "MapComplete 0.6.8", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-17T16:06:36Z", + "reviewed_features": [], + "create": 3, + "modify": 3, + "delete": 0, + "area": 1.10451599996608e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103109566, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1129396, + 50.9586681 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Jakka", + "uid": "2403313", + "editor": "MapComplete 0.6.8c", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-17T14:34:41Z", + "reviewed_features": [], + "create": 3, + "modify": 11, + "delete": 0, + "area": 0.000274273084799911, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103105940, + "host": "pietervdvn.github.io", + "theme": "aed", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1804904, + 50.787774999999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.6.8c", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-17T14:11:11Z", + "reviewed_features": [], + "create": 0, + "modify": 18, + "delete": 0, + "area": 0.0000438474412399815, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103104998, + "host": "pietervdvn.github.io", + "theme": "grb", + "imagery": "AGIVFlandersGRB", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2196887, + 51.2116155 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thibaultmol", + "uid": "2916921", + "editor": "MapComplete 0.6.8", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/osmbe/play/master/mapcomplete/markets/markets.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-17T07:09:28Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 2.17530000002046e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103090698, + "host": "mapcomplete.osm.be", + "theme": "gh://osmbe/play/master/mapcomplete/markets/markets.json", + "imagery": "osm", + "language": "en", + "theme-creator": "joost schouppe" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.39774275, + 51.041594700000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.6.8a", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-17T05:15:43Z", + "reviewed_features": [], + "create": 0, + "modify": 7, + "delete": 0, + "area": 1.13190400006893e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103088015, + "host": "pietervdvn.github.io", + "theme": "trees", + "imagery": "osm", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -71.82477639999999, + -36.1375687 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Wim L", + "uid": "223681", + "editor": "MapComplete 0.6.8", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-17T02:17:32Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103085747, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -122.3656633, + 47.6833449 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.6.8a", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-16T23:42:30Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103084174, + "host": "pietervdvn.github.io", + "theme": "trees", + "imagery": "osm", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.9875318, + -34.5789783 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Koen Rijnsent", + "uid": "4569696", + "editor": "MapComplete 0.6.8", + "comment": "Adding data with #MapComplete for theme #artworks", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-16T15:35:58Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103069368, + "host": "mapcomplete.osm.be", + "theme": "artworks", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.1696897, + 52.0642062 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.6.8", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-16T12:27:32Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103060042, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2008889, + 51.0566202 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.6.8", + "comment": "Adding data with #MapComplete for theme #sport_pitches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-16T07:45:27Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 2.26704899999955e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103040206, + "host": "mapcomplete.osm.be", + "theme": "sport_pitches", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.4396516999999998, + 51.079451649999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Peter Elderson", + "uid": "7103674", + "editor": "MapComplete 0.6.8", + "comment": "Adding data with #MapComplete for theme #wandelknooppunten", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-16T05:39:17Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103031392, + "host": "mapcomplete.osm.be", + "theme": "wandelknooppunten", + "imagery": "osm", + "language": "nl", + "theme-creator": "Peter Elderson" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.5969482, + 51.960931 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "GOwin", + "uid": "1041828", + "editor": "MapComplete 0.6.8", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-16T01:24:39Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103022181, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 121.0801399, + 14.627217 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "GOwin", + "uid": "1041828", + "editor": "MapComplete 0.6.8a", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-16T01:21:03Z", + "reviewed_features": [], + "create": 2, + "modify": 5, + "delete": 0, + "area": 2.64575000048055e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103022129, + "host": "pietervdvn.github.io", + "theme": "hailhydrant", + "imagery": "HDM_HOT", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 121.08002834999999, + 14.62726415 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.6.8", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/osmbe/play/master/mapcomplete/markets/markets.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-15T19:43:47Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 6.61669400002303e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103014625, + "host": "mapcomplete.osm.be", + "theme": "gh://osmbe/play/master/mapcomplete/markets/markets.json", + "imagery": "osm", + "language": "en", + "theme-creator": "joost schouppe" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3732209, + 50.823650400000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.6.8", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/osmbe/play/master/mapcomplete/markets/markets.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-15T19:14:19Z", + "reviewed_features": [], + "create": 0, + "modify": 16, + "delete": 0, + "area": 0.00694221903827992, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103013551, + "host": "mapcomplete.osm.be", + "theme": "gh://osmbe/play/master/mapcomplete/markets/markets.json", + "imagery": "osm", + "language": "en", + "theme-creator": "joost schouppe" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3717702, + 50.836002500000006 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.6.8", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/osmbe/play/master/mapcomplete/markets/markets.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-15T18:56:16Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103012908, + "host": "mapcomplete.osm.be", + "theme": "gh://osmbe/play/master/mapcomplete/markets/markets.json", + "imagery": "osm", + "language": "en", + "theme-creator": "joost schouppe" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3311079, + 50.8281226 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.6.8", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/osmbe/play/master/mapcomplete/markets/markets.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-15T18:35:04Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103012164, + "host": "mapcomplete.osm.be", + "theme": "gh://osmbe/play/master/mapcomplete/markets/markets.json", + "imagery": "osm", + "language": "en", + "theme-creator": "joost schouppe" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4049165, + 51.2255603 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.6.8", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/osmbe/play/master/mapcomplete/markets/markets.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-15T15:35:48Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103004622, + "host": "mapcomplete.osm.be", + "theme": "gh://osmbe/play/master/mapcomplete/markets/markets.json", + "imagery": "osm", + "language": "en", + "theme-creator": "joost schouppe" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4178337, + 51.2250521 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "PlugInSites", + "uid": "10651792", + "editor": "MapComplete 0.6.8a", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 1, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-15T14:24:20Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103000972, + "host": "pietervdvn.github.io", + "theme": "charging_stations", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -76.8378696, + 39.1773855 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jospyck", + "uid": "12128135", + "editor": "MapComplete 0.6.8", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-15T13:56:37Z", + "reviewed_features": [], + "create": 2, + "modify": 4, + "delete": 0, + "area": 0.000133313531220044, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102999680, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.20380205, + 50.9201449 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "bvrslypp", + "uid": "6043705", + "editor": "MapComplete 0.6.8a", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-15T12:30:49Z", + "reviewed_features": [], + "create": 2, + "modify": 3, + "delete": 0, + "area": 3.12576000007887e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102995332, + "host": "pietervdvn.github.io", + "theme": "surveillance", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.581072750000001, + 51.2926095 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "GOwin", + "uid": "1041828", + "editor": "MapComplete 0.6.8", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/osmbe/play/master/mapcomplete/markets/markets.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-15T08:38:13Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000118920104000334, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102978786, + "host": "mapcomplete.osm.be", + "theme": "gh://osmbe/play/master/mapcomplete/markets/markets.json", + "imagery": "osm", + "language": "en", + "theme-creator": "joost schouppe" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 123.9414342, + 10.32766865 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.6.8", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-15T08:31:03Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102978286, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.0802326, + 50.7483334 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.6.8", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 4, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-15T08:30:06Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102978222, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.0803936, + 50.7482694 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Dieter Dewitte", + "uid": "10825393", + "editor": "MapComplete 0.6.8", + "comment": "Adding data with #MapComplete for theme #boomgaarden", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-14T15:21:59Z", + "reviewed_features": [], + "create": 11, + "modify": 10, + "delete": 0, + "area": 0.0000010292669999901, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102938986, + "host": "mapcomplete.osm.be", + "theme": "boomgaarden", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.18619965, + 50.8029491 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "WinstonSmith", + "uid": "36030", + "editor": "MapComplete 0.6.8", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-14T15:21:27Z", + "reviewed_features": [], + "create": 2, + "modify": 2, + "delete": 0, + "area": 1.12607999981963e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102938966, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.111650699999998, + 44.8915116 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "WinstonSmith", + "uid": "36030", + "editor": "MapComplete 0.6.8", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-14T15:20:22Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102938911, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.1117, + 44.8914119 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-8629358073", + "osm_id": 8629358073, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "tourism": "map" + } + }, + { + "url": "node-8629367363", + "osm_id": 8629367363, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "tourism": "map" + } + }, + { + "url": "node-8629415207", + "osm_id": 8629415207, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "tourism": "map" + } + }, + { + "url": "node-8629400389", + "osm_id": 8629400389, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "tourism": "map" + } + }, + { + "url": "node-8629547854", + "osm_id": 8629547854, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "tourism": "map" + } + } + ], + "user": "WinstonSmith", + "uid": "36030", + "editor": "MapComplete 0.6.8", + "comment": "Adding data with #MapComplete for theme #maps", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-14T13:59:19Z", + "reviewed_features": [], + "create": 7, + "modify": 0, + "delete": 0, + "area": 0.00420776010656995, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102935084, + "host": "mapcomplete.osm.be", + "theme": "maps", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.12801045, + 44.82816575 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "WinstonSmith", + "uid": "36030", + "editor": "MapComplete 0.6.8", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-14T13:58:46Z", + "reviewed_features": [], + "create": 2, + "modify": 2, + "delete": 0, + "area": 0.0000171875714199933, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102935052, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.1440383, + 44.77670835 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "WinstonSmith", + "uid": "36030", + "editor": "MapComplete 0.6.8", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-14T13:57:46Z", + "reviewed_features": [], + "create": 4, + "modify": 6, + "delete": 0, + "area": 0.0000213572437499836, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102935009, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.144091249999999, + 44.776653749999994 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "WinstonSmith", + "uid": "36030", + "editor": "MapComplete 0.6.8", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-14T10:56:33Z", + "reviewed_features": [], + "create": 5, + "modify": 6, + "delete": 0, + "area": 0.00387908651595003, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102924646, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.208219750000001, + 44.62089455 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-8628812676", + "osm_id": 8628812676, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "tourism": "map" + } + }, + { + "url": "node-8628820575", + "osm_id": 8628820575, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "tourism": "map" + } + }, + { + "url": "node-8628800102", + "osm_id": 8628800102, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "tourism": "map" + } + }, + { + "url": "node-8628881151", + "osm_id": 8628881151, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "tourism": "map" + } + }, + { + "url": "node-8629040331", + "osm_id": 8629040331, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "tourism": "map" + } + }, + { + "url": "node-8628993373", + "osm_id": 8628993373, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "tourism": "map" + } + }, + { + "url": "node-8629017392", + "osm_id": 8629017392, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "tourism": "map" + } + } + ], + "user": "WinstonSmith", + "uid": "36030", + "editor": "MapComplete 0.6.8", + "comment": "Adding data with #MapComplete for theme #maps", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-14T10:54:22Z", + "reviewed_features": [], + "create": 7, + "modify": 0, + "delete": 0, + "area": 0.00389536925175034, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102924500, + "host": "mapcomplete.osm.be", + "theme": "maps", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.20821665, + 44.62065385 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "WinstonSmith", + "uid": "36030", + "editor": "MapComplete 0.6.8", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-14T10:40:17Z", + "reviewed_features": [], + "create": 5, + "modify": 5, + "delete": 0, + "area": 0.00474099585593994, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102923547, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.210166699999998, + 44.615996249999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "klimaanvzw", + "uid": "6799245", + "editor": "MapComplete 0.6.8", + "comment": "Adding data with #MapComplete for theme #facadegardens", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-14T09:21:03Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102917633, + "host": "mapcomplete.osm.be", + "theme": "facadegardens", + "imagery": "osm", + "language": "en", + "theme-creator": "joost schouppe; stla" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4807181, + 51.0244802 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "klimaanvzw", + "uid": "6799245", + "editor": "MapComplete 0.6.8", + "comment": "Adding data with #MapComplete for theme #facadegardens", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-14T09:17:25Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102917347, + "host": "mapcomplete.osm.be", + "theme": "facadegardens", + "imagery": "osm", + "language": "en", + "theme-creator": "joost schouppe; stla" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4807181, + 51.0244802 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.6.8", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-13T18:43:19Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102883707, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.9145579, + 50.5179022 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.6.8", + "comment": "Adding data with #MapComplete for theme #fritures", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-13T18:11:05Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102882576, + "host": "mapcomplete.osm.be", + "theme": "fritures", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.9145799, + 50.5181073 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.6.8", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-13T14:22:08Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 2.86247639998338e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102871643, + "host": "mapcomplete.osm.be", + "theme": "shops", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.8697363, + 50.3727392 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Jakub Trojan", + "uid": "273212", + "editor": "MapComplete 0.6.8", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-13T12:32:34Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102866363, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 17.4726391, + 49.0704289 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.6.8a", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-13T05:41:16Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102842331, + "host": "pietervdvn.github.io", + "theme": "trees", + "imagery": "osm", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.2244466, + -39.8271305 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "GOwin", + "uid": "1041828", + "editor": "MapComplete 0.6.8a", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-13T03:06:41Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.0000128341503999887, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102837072, + "host": "pietervdvn.github.io", + "theme": "hailhydrant", + "imagery": "HDM_HOT", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 123.94531219999999, + 10.3293194 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.6.8a", + "comment": "Adding data with #MapComplete for theme #artworks", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-12T16:21:52Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102816405, + "host": "pietervdvn.github.io", + "theme": "artworks", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.7322572, + -33.4072292 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "rjvdboon", + "uid": "614203", + "editor": "MapComplete 0.6.8", + "comment": "Adding data with #MapComplete for theme #wandelknooppunten", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-12T15:26:38Z", + "reviewed_features": [], + "create": 2, + "modify": 5, + "delete": 0, + "area": 2.83709999998727e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102813868, + "host": "mapcomplete.osm.be", + "theme": "wandelknooppunten", + "imagery": "osm", + "language": "nl", + "theme-creator": "Peter Elderson" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.78439705, + 52.2290127 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Peter Elderson", + "uid": "7103674", + "editor": "MapComplete 0.6.8", + "comment": "Adding data with #MapComplete for theme #wandelknooppunten", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-12T13:15:23Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102806889, + "host": "mapcomplete.osm.be", + "theme": "wandelknooppunten", + "imagery": "osm", + "language": "en", + "theme-creator": "Peter Elderson" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.6100038, + 51.9647292 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "WinstonSmith", + "uid": "36030", + "editor": "MapComplete 0.6.8", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-12T13:12:13Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102806691, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.3425459, + 44.5032332 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "rjvdboon", + "uid": "614203", + "editor": "MapComplete 0.6.8", + "comment": "Adding data with #MapComplete for theme #wandelknooppunten", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-12T11:52:16Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0.000129264218010035, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102801419, + "host": "mapcomplete.osm.be", + "theme": "wandelknooppunten", + "imagery": "osm", + "language": "nl", + "theme-creator": "Peter Elderson" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.7373068499999995, + 52.220523549999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Fauranië", + "uid": "12949754", + "editor": "MapComplete 0.6.8", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-12T11:31:02Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102799932, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3456652, + 50.8350219 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Fauranië", + "uid": "12949754", + "editor": "MapComplete 0.6.8", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-12T11:21:27Z", + "reviewed_features": [], + "create": 5, + "modify": 5, + "delete": 0, + "area": 0.000011292288549996, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102799192, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.09525235, + 50.99594035 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Kr_gr", + "uid": "13059466", + "editor": "MapComplete 0.0.8f", + "comment": "Adding data with #MapComplete for theme #buurtnatuur", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-12T07:58:25Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.00024624256169003, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102783422, + "theme": "buurtnatuur", + "theme-creator": "Pieter Vander Vennet" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.794268150000001, + 50.97436585 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.6.8", + "comment": "Adding data with #MapComplete for theme #HailHydrant", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-11T23:12:42Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.00105261379236004, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102759468, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "imagery": "HDM_HOT", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.21656295, + 51.244409000000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.6.8-rc1", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-11T21:11:01Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 3.08224840002404e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102757073, + "host": "pietervdvn.github.io", + "theme": "grb", + "imagery": "AGIVFlandersGRB", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.209079, + 51.1925388 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "rjvdboon", + "uid": "614203", + "editor": "MapComplete 0.6.6c", + "comment": "Adding data with #MapComplete for theme #wandelknooppunten", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-11T20:24:39Z", + "reviewed_features": [], + "create": 2, + "modify": 4, + "delete": 0, + "area": 0.0000402589690199862, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102755841, + "host": "mapcomplete.osm.be", + "theme": "wandelknooppunten", + "imagery": "osm", + "language": "nl", + "theme-creator": "Peter Elderson" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.7275342, + 52.22449535 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "bvrslypp", + "uid": "6043705", + "editor": "MapComplete 0.6.8", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-11T19:40:55Z", + "reviewed_features": [], + "create": 5, + "modify": 9, + "delete": 0, + "area": 0.00000299028571999828, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102754248, + "host": "pietervdvn.github.io", + "theme": "surveillance", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7296015000000002, + 51.0508134 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "bvrslypp", + "uid": "6043705", + "editor": "MapComplete 0.6.8", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-11T18:29:29Z", + "reviewed_features": [], + "create": 2, + "modify": 4, + "delete": 0, + "area": 0.0000154772265599918, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102751407, + "host": "pietervdvn.github.io", + "theme": "surveillance", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7055742, + 51.0558532 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Peter Elderson", + "uid": "7103674", + "editor": "MapComplete 0.6.6c", + "comment": "Adding data with #MapComplete for theme #wandelknooppunten", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-11T18:08:10Z", + "reviewed_features": [], + "create": 3, + "modify": 6, + "delete": 0, + "area": 0.0000095997302800027, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102750676, + "host": "mapcomplete.osm.be", + "theme": "wandelknooppunten", + "imagery": "osm", + "language": "en", + "theme-creator": "Peter Elderson" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.7337853, + 52.225321 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.6.6c", + "comment": "Adding data with #MapComplete for theme #personal", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-11T17:52:27Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102750134, + "host": "mapcomplete.osm.be", + "theme": "personal", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.6043096, + 50.8529614 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.6.6c", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-11T14:04:25Z", + "reviewed_features": [], + "create": 1, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102740799, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.198081, + 51.201627 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-8617584052", + "name": "Fietsbieb Brugge", + "osm_id": 8617584052, + "reasons": [ + 43 + ], + "version": 6, + "primary_tags": { + "amenity": "bicycle_library" + } + } + ], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.6.6c", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-11T13:33:35Z", + "reviewed_features": [], + "create": 1, + "modify": 5, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102739472, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1973138, + 51.2008153 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.6.6c", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-11T12:57:02Z", + "reviewed_features": [], + "create": 0, + "modify": 33, + "delete": 0, + "area": 0.000236533479660046, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102737684, + "host": "mapcomplete.osm.be", + "theme": "grb", + "imagery": "AGIVFlandersGRB", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.20798675, + 51.2062196 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "fietsersbond aarschot", + "uid": "13040125", + "editor": "MapComplete 0.6.6c", + "comment": "Adding data with #MapComplete for theme #fietsstraten", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-10T18:30:12Z", + "reviewed_features": [], + "create": 0, + "modify": 36, + "delete": 0, + "area": 0.0000682200686699867, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102710972, + "host": "mapcomplete.osm.be", + "theme": "fietsstraten", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.83656535, + 50.98734195 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "rjvdboon", + "uid": "614203", + "editor": "MapComplete 0.6.6c", + "comment": "Adding data with #MapComplete for theme #wandelknooppunten", + "comments_count": 5, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-10T17:51:13Z", + "reviewed_features": [], + "create": 3, + "modify": 0, + "delete": 0, + "area": 2.64600000024765e-11, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102709715, + "host": "mapcomplete.osm.be", + "theme": "wandelknooppunten", + "imagery": "osm", + "language": "nl", + "theme-creator": "Peter Elderson" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.722986499999999, + 52.22228135 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "fietsersbond aarschot", + "uid": "13040125", + "editor": "MapComplete 0.6.6c", + "comment": "Adding data with #MapComplete for theme #fietsstraten", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-10T15:21:12Z", + "reviewed_features": [], + "create": 0, + "modify": 21, + "delete": 0, + "area": 0.0000574085058799997, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102703590, + "host": "mapcomplete.osm.be", + "theme": "fietsstraten", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.83650355, + 50.9865121 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "WinstonSmith", + "uid": "36030", + "editor": "MapComplete 0.6.6c", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-10T14:14:00Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0.00000343149632000415, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102700597, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.345097299999999, + 44.5107983 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "boute002", + "uid": "2140799", + "editor": "MapComplete 0.6.6c", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-09T20:29:49Z", + "reviewed_features": [], + "create": 3, + "modify": 3, + "delete": 0, + "area": 2.89759199998603e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102669411, + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "osm", + "language": "nl", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4073440999999995, + 51.9211641 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "boute002", + "uid": "2140799", + "editor": "MapComplete 0.6.6c", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-09T20:22:41Z", + "reviewed_features": [], + "create": 3, + "modify": 10, + "delete": 0, + "area": 3.51893700000598e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102669097, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.40757975, + 51.921111749999994 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "boute002", + "uid": "2140799", + "editor": "MapComplete 0.6.6c", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-09T20:19:34Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102668943, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "imagery": "CartoDB.Voyager", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4081759, + 51.9212422 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "boute002", + "uid": "2140799", + "editor": "MapComplete 0.6.6c", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-09T19:41:12Z", + "reviewed_features": [], + "create": 2, + "modify": 2, + "delete": 0, + "area": 0.00277469429639999, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102667263, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4486801, + 51.904408399999994 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "cserpell", + "uid": "1714449", + "editor": "MapComplete 0.6.6c", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-09T19:17:36Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102666164, + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "osm", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -71.441575, + -33.0500485 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "whturner", + "uid": "3667103", + "editor": "MapComplete 0.6.6c", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-09T17:38:15Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102661524, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.0046157, + 50.8964051 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "WinstonSmith", + "uid": "36030", + "editor": "MapComplete 0.6.6c", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-09T17:18:14Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102660494, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.3425459, + 44.5032332 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "WinstonSmith", + "uid": "36030", + "editor": "MapComplete 0.6.6c", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-09T16:53:36Z", + "reviewed_features": [], + "create": 10, + "modify": 14, + "delete": 0, + "area": 0.0000644296816800379, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102659150, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.33836805, + 44.4989622 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "fietsersbond aarschot", + "uid": "13040125", + "editor": "MapComplete 0.6.6c", + "comment": "Adding data with #MapComplete for theme #fietsstraten", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-09T16:08:31Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.0000156678900599872, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102656676, + "host": "mapcomplete.osm.be", + "theme": "fietsstraten", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.8360416, + 50.986051450000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Erin76", + "uid": "8982454", + "editor": "MapComplete 0.6.6c", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-09T07:59:15Z", + "reviewed_features": [], + "create": 2, + "modify": 3, + "delete": 0, + "area": 0.0000521634127499633, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102620070, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.23805335, + 50.885279749999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "n1kn0k", + "uid": "867701", + "editor": "MapComplete 0.6.6c", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-09T02:32:23Z", + "reviewed_features": [], + "create": 1, + "modify": 6, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102597132, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 123.9404717, + 10.3292374 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "n1kn0k", + "uid": "867701", + "editor": "MapComplete 0.6.6c", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-09T01:23:26Z", + "reviewed_features": [], + "create": 6, + "modify": 17, + "delete": 0, + "area": 0.0034476627226505, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102595572, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "EsriWorldImagery", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 123.92198594999999, + 10.33818525 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "boute002", + "uid": "2140799", + "editor": "MapComplete 0.6.6b", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-08T20:43:40Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102589454, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "imagery": "CartoDB.Voyager", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4077894, + 51.9209483 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dkf2010", + "uid": "685599", + "editor": "MapComplete 0.6.6b", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-08T20:17:11Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 1.27890000011825e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102588517, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.90769755, + 53.609603 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Edlocks", + "uid": "7336654", + "editor": "MapComplete 0.6.6", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-08T20:01:11Z", + "reviewed_features": [], + "create": 1, + "modify": 9, + "delete": 0, + "area": 0.0000222179345499587, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102587984, + "host": "pietervdvn.github.io", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.39999115, + 50.82557315 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "bvrslypp", + "uid": "6043705", + "editor": "MapComplete 0.6.6", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-08T16:12:24Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102577817, + "host": "pietervdvn.github.io", + "theme": "surveillance", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7475748, + 51.0455389 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.6.6b", + "comment": "Adding data with #MapComplete for theme #nature", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-08T15:28:16Z", + "reviewed_features": [], + "create": 2, + "modify": 5, + "delete": 0, + "area": 1.26744900030859e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102575704, + "host": "mapcomplete.osm.be", + "theme": "nature", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.35240855, + 51.30594765 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.6.6b", + "comment": "Adding data with #MapComplete for theme #personal", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-08T15:13:20Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 5.58688000040053e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102574932, + "host": "mapcomplete.osm.be", + "theme": "personal", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.26724155, + 50.6997463 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "sjokomoeske", + "uid": "10187049", + "editor": "MapComplete 0.6.6b", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-08T13:20:07Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102567817, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.1102168, + 51.0214354 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 42, + "name": "Invalid tag modification" + } + ], + "tags": [], + "features": [ + { + "url": "way-551382276", + "osm_id": 551382276, + "reasons": [ + 42 + ], + "version": 5, + "primary_tags": { + "leisure": "bird_hide" + } + } + ], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.6.6b", + "comment": "Adding data with #MapComplete for theme #nature", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-08T13:17:18Z", + "reviewed_features": [], + "create": 1, + "modify": 4, + "delete": 0, + "area": 0.000307111979019999, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102567651, + "host": "mapcomplete.osm.be", + "theme": "nature", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2311538, + 51.33597315 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "sjokomoeske", + "uid": "10187049", + "editor": "MapComplete 0.6.6b", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-08T13:08:41Z", + "reviewed_features": [], + "create": 3, + "modify": 4, + "delete": 0, + "area": 7.14516800002654e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102567179, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.11034435, + 51.0214572 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "bvrslypp", + "uid": "6043705", + "editor": "MapComplete 0.6.6", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-08T11:15:26Z", + "reviewed_features": [], + "create": 2, + "modify": 3, + "delete": 0, + "area": 0.000015550438239997, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102558508, + "host": "pietervdvn.github.io", + "theme": "surveillance", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7489742, + 51.0413653 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "ttt1234", + "uid": "13021769", + "editor": "MapComplete 0.6.6", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-08T11:12:00Z", + "reviewed_features": [], + "create": 3, + "modify": 6, + "delete": 0, + "area": 4.48306920001406e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102558206, + "host": "pietervdvn.github.io", + "theme": "surveillance", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7517157, + 51.04478105 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Koen Rijnsent", + "uid": "4569696", + "editor": "MapComplete 0.6.6b", + "comment": "Adding data with #MapComplete for theme #personal", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-08T10:36:04Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.00000305142551999958, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102555125, + "host": "mapcomplete.osm.be", + "theme": "personal", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.1139212, + 52.08138995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Koen Rijnsent", + "uid": "4569696", + "editor": "MapComplete 0.6.6b", + "comment": "Adding data with #MapComplete for theme #personal", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-08T07:31:37Z", + "reviewed_features": [], + "create": 7, + "modify": 12, + "delete": 0, + "area": 0.0000409976802599987, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102535749, + "host": "mapcomplete.osm.be", + "theme": "personal", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.112507900000001, + 52.081776649999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": "Pieter Vander Vennet", + "reasons": [], + "tags": [], + "features": [], + "user": "Erin76", + "uid": "8982454", + "editor": "MapComplete 0.6.4b", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-08T06:47:42Z", + "reviewed_features": [], + "create": 0, + "modify": 13, + "delete": 0, + "area": 0.00188264112461994, + "is_suspect": false, + "harmful": false, + "checked": true, + "check_date": "2021-04-08T08:25:12.264507Z", + "id": 102530987, + "host": "mapcomplete.braindeaddev.com", + "theme": "playgrounds", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.87194575, + 51.0002284 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Wim L", + "uid": "223681", + "editor": "MapComplete 0.6.6b", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-07T23:27:35Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102510085, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -122.3684554, + 47.6796484 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.6.6a", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-07T16:23:39Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102496039, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.1436508, + 51.1713439 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.6.6a", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-07T15:24:15Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.00000103863856001017, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102493349, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.4510942, + 51.0964328 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.6.6a", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-07T15:22:23Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.000485754363339964, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102493261, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.44279065, + 51.095555700000006 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.6.6a", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-07T15:15:27Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102492943, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.4468089, + 51.090752 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dkf2010", + "uid": "685599", + "editor": "MapComplete 0.6.6a", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-07T14:00:06Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0.00000666116304000712, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102488784, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.9201219, + 53.6188554 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "bvrslypp", + "uid": "6043705", + "editor": "MapComplete 0.6.6a", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-07T13:02:34Z", + "reviewed_features": [], + "create": 1, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102485188, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7507582, + 51.0442895 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "ttt1234", + "uid": "13021769", + "editor": "MapComplete 0.6.6", + "comment": "Adding data with #MapComplete for theme #fritures", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-07T12:28:19Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102482959, + "host": "pietervdvn.github.io", + "theme": "fritures", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.8628745, + 51.1327033 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "ttt1234", + "uid": "13021769", + "editor": "MapComplete 0.6.6", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-07T12:23:13Z", + "reviewed_features": [], + "create": 10, + "modify": 31, + "delete": 0, + "area": 0.00000115233440000871, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102482612, + "host": "pietervdvn.github.io", + "theme": "surveillance", + "imagery": "AGIV", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7513375, + 51.0446731 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.6.6a", + "comment": "Adding data with #MapComplete for theme #artworks", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-07T11:00:55Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102476144, + "host": "mapcomplete.osm.be", + "theme": "artworks", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.1440102, + 51.1724743 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.6.6a", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-07T10:37:48Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102474193, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "AGIV10cm", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.716965, + 51.0341386 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.6.6a", + "comment": "Adding data with #MapComplete for theme #personal", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-07T08:26:30Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102461994, + "host": "mapcomplete.osm.be", + "theme": "personal", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.8239271, + 50.7374363 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.6.6a", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-07T07:58:07Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102459404, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2362217, + 50.735992 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "BS97n", + "uid": "2386081", + "editor": "MapComplete 0.6.4d", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-06T16:55:38Z", + "reviewed_features": [], + "create": 2, + "modify": 2, + "delete": 0, + "area": 3.01671699994085e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102422572, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "de", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.25500125, + 51.44798445 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-8598664388", + "osm_id": 8598664388, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "fossil" + } + } + ], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.6.4c", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/osmbe/play/master/mapcomplete/urban_fossils/urban_fossils.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-06T10:21:55Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102398005, + "host": "mapcomplete.osm.be", + "theme": "gh://osmbe/play/master/mapcomplete/urban_fossils/urban_fossils.json", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2200536, + 51.2157723 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.6.5c", + "comment": "Adding data with #MapComplete for theme #artworks", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-05T22:04:04Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102358828, + "host": "pietervdvn.github.io", + "theme": "artworks", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.7324476, + -33.407209 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "SuSanne Grittner", + "uid": "13007801", + "editor": "MapComplete 0.6.5c", + "comment": "Adding data with #MapComplete for theme #ghostbikes", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-05T21:33:52Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102358109, + "host": "pietervdvn.github.io", + "theme": "ghostbikes", + "imagery": "osm", + "language": "de", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.2995993, + 52.5213147 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Technopolice_newBiE", + "uid": "12219485", + "editor": "MapComplete 0.6.4-unlocked", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-05T20:19:19Z", + "reviewed_features": [], + "create": 92, + "modify": 139, + "delete": 0, + "area": 0.0000572588815199876, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102356016, + "host": "pietervdvn.github.io", + "theme": "surveillance", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3460678, + 50.841520700000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-8596316025", + "osm_id": 8596316025, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "fossil" + } + } + ], + "user": "dmlu", + "uid": "5229804", + "editor": "MapComplete 0.6.4c", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/osmbe/play/master/mapcomplete/urban_fossils/urban_fossils.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-05T20:04:52Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102355554, + "host": "mapcomplete.osm.be", + "theme": "gh://osmbe/play/master/mapcomplete/urban_fossils/urban_fossils.json", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.1900152, + 45.4656144 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "M!dgard", + "uid": "763799", + "editor": "MapComplete 0.6.4b", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-05T18:31:25Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.0000740294734399144, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102352301, + "host": "mapcomplete.braindeaddev.com", + "theme": "aed", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1366728999999998, + 51.315722550000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.6.4b", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-05T18:11:39Z", + "reviewed_features": [], + "create": 0, + "modify": 8, + "delete": 0, + "area": 2.93583779998462e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102351482, + "host": "mapcomplete.osm.be", + "theme": "grb", + "imagery": "AGIVFlandersGRB", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.21724295, + 51.2120107 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.6.5", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-05T17:36:55Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102350088, + "host": "pietervdvn.github.io", + "theme": "cyclofix", + "imagery": "AGIV10cm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.9933496, + 51.163066 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.6.5", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-05T17:35:17Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 2.36999999404562e-11, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102350006, + "host": "pietervdvn.github.io", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.9933259, + 51.16306575 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Peter Elderson", + "uid": "7103674", + "editor": "MapComplete 0.6.4b", + "comment": "Adding data with #MapComplete for theme #stolpersteine", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-05T16:15:45Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102346405, + "host": "mapcomplete.osm.be", + "theme": "stolpersteine", + "imagery": "osm", + "language": "en", + "theme-creator": "Peter Elderson" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4892502, + 51.9009947 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "antonbundle", + "uid": "1734201", + "editor": "MapComplete 0.6.4b", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-05T15:25:01Z", + "reviewed_features": [], + "create": 1, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102343955, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.8856546, + 50.6829334 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Michel Stuyts", + "uid": "62284", + "editor": "MapComplete 0.6.4b", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-05T15:19:39Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102343682, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.5303126, + 50.6037899 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "WinstonSmith", + "uid": "36030", + "editor": "MapComplete 0.6.4b", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-05T14:01:01Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102339517, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.1757848, + 45.4635752 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Michel Stuyts", + "uid": "62284", + "editor": "MapComplete 0.6.4b", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-05T13:33:24Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102337939, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.554868, + 50.5942339 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Fauranië", + "uid": "12949754", + "editor": "MapComplete 0.6.4b", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-05T12:19:06Z", + "reviewed_features": [], + "create": 2, + "modify": 2, + "delete": 0, + "area": 0.0000019705574699962, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102333160, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1301413499999997, + 50.95133615 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Fauranië", + "uid": "12949754", + "editor": "MapComplete 0.6.4b", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-05T12:04:09Z", + "reviewed_features": [], + "create": 2, + "modify": 2, + "delete": 0, + "area": 0.00043761148256, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102331957, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "imagery": "AGIV10cm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1053365, + 50.9870572 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Fauranië", + "uid": "12949754", + "editor": "MapComplete 0.6.4b", + "comment": "Adding data with #MapComplete for theme #basketswings", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-05T11:58:49Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102331552, + "host": "mapcomplete.osm.be", + "theme": "basketswings", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.0929177, + 50.9946582 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Fauranië", + "uid": "12949754", + "editor": "MapComplete 0.6.4b", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-05T11:08:22Z", + "reviewed_features": [], + "create": 2, + "modify": 2, + "delete": 0, + "area": 9.21647999987422e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102327643, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.0964235, + 50.997031699999994 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Fauranië", + "uid": "12949754", + "editor": "MapComplete 0.6.4b", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-05T11:06:58Z", + "reviewed_features": [], + "create": 3, + "modify": 3, + "delete": 0, + "area": 0.000316486065719986, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102327546, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.0980845500000003, + 50.987492 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "lunaticstraydog", + "uid": "8577239", + "editor": "MapComplete 0.6.4b", + "comment": "Adding data with #MapComplete for theme #climbing", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-05T08:07:09Z", + "reviewed_features": [], + "create": 1, + "modify": 9, + "delete": 0, + "area": 0.00198010120559976, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102312791, + "host": "mapcomplete.osm.be", + "theme": "climbing", + "imagery": "osm", + "language": "en", + "theme-creator": "Christian Neumann " + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2028713, + 48.5011147 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Tim Couwelier", + "uid": "7246683", + "editor": "MapComplete 0.6.5", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-05T06:26:33Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102305143, + "host": "pietervdvn.github.io", + "theme": "aed", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1183711, + 50.9641453 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "M!dgard", + "uid": "763799", + "editor": "MapComplete 0.6.4b", + "comment": "Adding data with #MapComplete for theme #fire", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-04T18:10:12Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102282803, + "host": "mapcomplete.braindeaddev.com", + "theme": "fire", + "imagery": "HDM_HOT", + "language": "nl", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1319752, + 51.2838332 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Nuytinck", + "uid": "3719237", + "editor": "MapComplete 0.6.5", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-04T17:52:35Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102282189, + "host": "pietervdvn.github.io", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.5935479, + 51.1852562 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dkf2010", + "uid": "685599", + "editor": "MapComplete 0.6.4b", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-04T16:19:13Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102278803, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 10.1698273, + 52.9012462 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Fauranië", + "uid": "12949754", + "editor": "MapComplete 0.6.4b", + "comment": "Adding data with #MapComplete for theme #ghostbikes", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-04T14:22:27Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102273824, + "host": "mapcomplete.osm.be", + "theme": "ghostbikes", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1167767, + 50.9928367 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Fauranië", + "uid": "12949754", + "editor": "MapComplete 0.6.4b", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-04T14:18:45Z", + "reviewed_features": [], + "create": 2, + "modify": 2, + "delete": 0, + "area": 0.00000219466239999485, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102273630, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "AGIV10cm", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.0957344, + 50.996829000000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "WinstonSmith", + "uid": "36030", + "editor": "MapComplete 0.6.4b", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-04T13:39:52Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102271836, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.2014294, + 45.3565504 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.6.4b", + "comment": "Adding data with #MapComplete for theme #fritures", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-04T13:28:55Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102271360, + "host": "mapcomplete.osm.be", + "theme": "fritures", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.224726, + 51.2021413 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Peter Elderson", + "uid": "7103674", + "editor": "MapComplete 0.6.4b", + "comment": "Adding data with #MapComplete for theme #wandelknooppunten", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-04T11:12:24Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102266136, + "host": "mapcomplete.osm.be", + "theme": "wandelknooppunten", + "imagery": "osm", + "language": "en", + "theme-creator": "Peter Elderson" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.5965995, + 51.9497286 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "JuanjoMC", + "uid": "9414587", + "editor": "MapComplete 0.6.4b", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-04T10:58:57Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.00000795311238000712, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102265697, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.358930900000001, + 50.89988295 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "M!dgard", + "uid": "763799", + "editor": "MapComplete 0.6.4b", + "comment": "Adding data with #MapComplete for theme #fire", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-04T10:38:42Z", + "reviewed_features": [], + "create": 2, + "modify": 4, + "delete": 0, + "area": 1.6735661000243e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102265111, + "host": "mapcomplete.braindeaddev.com", + "theme": "fire", + "imagery": "HDM_HOT", + "language": "nl", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.13103445, + 51.31298645 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.6.5", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-04T05:14:01Z", + "reviewed_features": [], + "create": 1, + "modify": 6, + "delete": 0, + "area": 0.0000749783209399803, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102257369, + "host": "pietervdvn.github.io", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3671199000000005, + 50.87177965 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "GOwin", + "uid": "1041828", + "editor": "MapComplete 0.6.4a", + "comment": "Adding data with #MapComplete for theme #HailHydrant", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-04T01:17:09Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.00000974178379998733, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102255313, + "host": "pietervdvn.github.io", + "theme": "hailhydrant", + "imagery": "HDM_HOT", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 123.95219565, + 10.3396154 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Nuytinck", + "uid": "3719237", + "editor": "MapComplete 0.6.4a", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-03T19:17:44Z", + "reviewed_features": [], + "create": 1, + "modify": 5, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102248624, + "host": "pietervdvn.github.io", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3422572, + 51.2470648 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "WinstonSmith", + "uid": "36030", + "editor": "MapComplete 0.6.4b", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-03T16:14:39Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 0.000019608709119999, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102242966, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.260155300000001, + 45.4676949 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 96, + "name": "Feature with very long name" + } + ], + "tags": [], + "features": [ + { + "url": "node-8590039107", + "name": "Frans Grünwald;Else Ada Grünwald-Frankenberg;Leonard David Grünwald;Jetty Cecile Grünwald;Cäcilie Frankenberg-Wolf", + "osm_id": 8590039107, + "reasons": [ + 96 + ], + "version": 4, + "primary_tags": { + "historic": "memorial" + } + }, + { + "url": "node-5872864559", + "name": "Elias den Hartog;Rebecca Annegien den Hartog-Lermer;Cornelia den Hartog;Engeltje den Hartog;Jacob Aron den Hartog;Aron den Hartog", + "osm_id": 5872864559, + "reasons": [ + 96 + ], + "version": 5, + "primary_tags": { + "historic": "memorial" + } + }, + { + "url": "node-5872305429", + "name": "Leon Salomon Kannewasser;Maartje Salomon Kannewasser;Aron Salomon Kannewasser;Jacomina Kannewasser-Oudkerk", + "osm_id": 5872305429, + "reasons": [ + 96 + ], + "version": 4, + "primary_tags": { + "historic": "memorial" + } + }, + { + "url": "node-8590319083", + "name": "Elisabeth Polak-Polak;Hartog Philip Benedictus;Jacob Benedictus;Judith Benedictus;Mathilda Benedictus;Roosje Benedictus", + "osm_id": 8590319083, + "reasons": [ + 96 + ], + "version": 4, + "primary_tags": { + "historic": "memorial" + } + } + ], + "user": "Peter Elderson", + "uid": "7103674", + "editor": "MapComplete 0.6.4b", + "comment": "Adding data with #MapComplete for theme #stolpersteine", + "comments_count": 3, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-03T16:03:50Z", + "reviewed_features": [], + "create": 37, + "modify": 142, + "delete": 0, + "area": 0.00199748567824005, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102242557, + "host": "mapcomplete.osm.be", + "theme": "stolpersteine", + "imagery": "osm", + "language": "en", + "theme-creator": "Peter Elderson" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.7358061, + 52.6201108 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 45, + "name": "Profanity tag" + }, + { + "id": 96, + "name": "Feature with very long name" + } + ], + "tags": [], + "features": [ + { + "url": "node-8589489988", + "name": "Elisabeth Polak-Polak;Hartog Philip Benedictus;Jacob Benedictus;Judith Benedictus;Mathilda Benedictus;Roosje Benedictus", + "osm_id": 8589489988, + "reasons": [ + 96 + ], + "version": 6, + "primary_tags": { + "historic": "memorial" + } + }, + { + "url": "node-5871326494", + "name": "Salomon Prins;Vrouwtje Prins;Rosette van Praag;Helena Bouman", + "osm_id": 5871326494, + "reasons": [ + 45 + ], + "version": 5, + "primary_tags": { + "historic": "memorial" + } + }, + { + "url": "node-5872333350", + "name": "Mozes de Jongh;Berendina de Jongh-le Grand;Abraham de Jongh;Sara de Jongh;Henriëtte de Jongh", + "osm_id": 5872333350, + "reasons": [ + 96 + ], + "version": 5, + "primary_tags": { + "historic": "memorial" + } + } + ], + "user": "Peter Elderson", + "uid": "7103674", + "editor": "MapComplete 0.6.4b", + "comment": "Adding data with #MapComplete for theme #stolpersteine", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-03T13:14:58Z", + "reviewed_features": [], + "create": 6, + "modify": 61, + "delete": 0, + "area": 0.000149134171410073, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102235750, + "host": "mapcomplete.osm.be", + "theme": "stolpersteine", + "imagery": "osm", + "language": "en", + "theme-creator": "Peter Elderson" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.743646249999999, + 52.62733815 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "hke2912", + "uid": "5154951", + "editor": "MapComplete 0.6.4a", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-03T13:06:47Z", + "reviewed_features": [], + "create": 4, + "modify": 9, + "delete": 0, + "area": 7.12959999999188e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102235445, + "host": "pietervdvn.github.io", + "theme": "benches", + "imagery": "osm", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.3872587, + 49.884646399999994 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "GOwin", + "uid": "1041828", + "editor": "MapComplete 0.6.4a", + "comment": "Adding data with #MapComplete for theme #HailHydrant", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-03T13:00:14Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102235227, + "host": "pietervdvn.github.io", + "theme": "hailhydrant", + "imagery": "HDM_HOT", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 121.0669408, + 14.572291 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jhuanjho", + "uid": "1008854", + "editor": "MapComplete 0.6.4b", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-03T10:16:22Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 5.72259859999328e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102229797, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.99613195, + 43.2900836 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dkf2010", + "uid": "685599", + "editor": "MapComplete 0.6.4b", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-03T09:20:09Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 1.25730160006425e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102227975, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.904452599999999, + 53.6078371 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dkf2010", + "uid": "685599", + "editor": "MapComplete 0.6.4b", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-03T09:12:43Z", + "reviewed_features": [], + "create": 0, + "modify": 6, + "delete": 0, + "area": 1.34693000003511e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102227748, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.91479025, + 53.60877845 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Koen Rijnsent", + "uid": "4569696", + "editor": "MapComplete 0.6.4b", + "comment": "Adding data with #MapComplete for theme #personal", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-03T08:22:22Z", + "reviewed_features": [], + "create": 8, + "modify": 28, + "delete": 0, + "area": 0.000108613618960026, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102226307, + "host": "mapcomplete.osm.be", + "theme": "personal", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.1235607, + 52.08536065 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 42, + "name": "Invalid tag modification" + } + ], + "tags": [], + "features": [ + { + "url": "node-6501420012", + "osm_id": 6501420012, + "reasons": [ + 42 + ], + "version": 2, + "primary_tags": {} + } + ], + "user": "GOwin", + "uid": "1041828", + "editor": "MapComplete 0.6.4a", + "comment": "Adding data with #MapComplete for theme #HailHydrant", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-03T07:57:19Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.0000166388026999852, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102225592, + "host": "pietervdvn.github.io", + "theme": "hailhydrant", + "imagery": "HDM_HOT", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 121.06255065, + 14.5743747 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 45, + "name": "Profanity tag" + } + ], + "tags": [], + "features": [ + { + "url": "node-8588979324", + "name": "Isaak Prins;Rosette Prins-Vlessing;Aron Prins", + "osm_id": 8588979324, + "reasons": [ + 45 + ], + "version": 4, + "primary_tags": { + "historic": "memorial" + } + } + ], + "user": "Peter Elderson", + "uid": "7103674", + "editor": "MapComplete 0.6.4b", + "comment": "Adding data with #MapComplete for theme #stolpersteine", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-03T07:48:21Z", + "reviewed_features": [], + "create": 2, + "modify": 20, + "delete": 0, + "area": 0.0014236754067201, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102225336, + "host": "mapcomplete.osm.be", + "theme": "stolpersteine", + "imagery": "osm", + "language": "en", + "theme-creator": "Peter Elderson" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.7328329, + 52.6163104 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "GOwin", + "uid": "1041828", + "editor": "MapComplete 0.6.4a", + "comment": "Adding data with #MapComplete for theme #HailHydrant", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-03T07:40:52Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102225188, + "host": "pietervdvn.github.io", + "theme": "hailhydrant", + "imagery": "HDM_HOT", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 121.0669408, + 14.572291 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Kinjkajh", + "uid": "12107222", + "editor": "MapComplete 0.6.4a", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-03T07:30:39Z", + "reviewed_features": [], + "create": 4, + "modify": 17, + "delete": 0, + "area": 0.000209281634719918, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102225012, + "host": "pietervdvn.github.io", + "theme": "surveillance", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.8708919, + 51.01655315 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.6.4a", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-03T01:46:10Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102220748, + "host": "pietervdvn.github.io", + "theme": "trees", + "imagery": "CyclOSM", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.7674406, + -33.4874239 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "MAGONA", + "uid": "3087858", + "editor": "MapComplete 0.6.4a", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-03T01:44:06Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102220729, + "host": "pietervdvn.github.io", + "theme": "trees", + "imagery": "osmfr", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.7674406, + -33.4874239 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "MAGONA", + "uid": "3087858", + "editor": "MapComplete 0.6.4a", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-03T01:37:50Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102220671, + "host": "pietervdvn.github.io", + "theme": "trees", + "imagery": "osm", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.7674595, + -33.4874413 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.6.4a", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-02T18:47:27Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102211506, + "host": "pietervdvn.github.io", + "theme": "cyclofix", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3780276, + 50.8603775 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "guido-vh", + "uid": "12749743", + "editor": "MapComplete 0.6.4b", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-02T17:20:14Z", + "reviewed_features": [], + "create": 4, + "modify": 4, + "delete": 0, + "area": 5.90771999985983e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102208373, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.2542579499999995, + 51.9564546 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.6.4b", + "comment": "Adding data with #MapComplete for theme #personal", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-02T16:43:40Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.000352765208000036, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102206649, + "host": "mapcomplete.osm.be", + "theme": "personal", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.8081131, + 50.724030400000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.6.4b", + "comment": "Adding data with #MapComplete for theme #basketswings", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-02T14:27:41Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102199776, + "host": "mapcomplete.osm.be", + "theme": "basketswings", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.6996004, + 51.05936 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Koen Rijnsent", + "uid": "4569696", + "editor": "MapComplete 0.6.4b", + "comment": "Adding data with #MapComplete for theme #personal", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-02T14:05:45Z", + "reviewed_features": [], + "create": 19, + "modify": 39, + "delete": 0, + "area": 0.000080013627040035, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102198663, + "host": "mapcomplete.osm.be", + "theme": "personal", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.1163223, + 52.0731162 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Fietsersbond Leuven", + "uid": "12338983", + "editor": "MapComplete 0.6.4b", + "comment": "Adding data with #MapComplete for theme #fietsstraten", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-02T13:53:47Z", + "reviewed_features": [], + "create": 0, + "modify": 6, + "delete": 0, + "area": 0.00128590361844, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102198108, + "host": "mapcomplete.osm.be", + "theme": "fietsstraten", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.71149255, + 50.8815833 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Peter Elderson", + "uid": "7103674", + "editor": "MapComplete 0.6.4b", + "comment": "Adding data with #MapComplete for theme #stolpersteine", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-02T13:52:21Z", + "reviewed_features": [], + "create": 1, + "modify": 5, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102198052, + "host": "mapcomplete.osm.be", + "theme": "stolpersteine", + "imagery": "osm", + "language": "en", + "theme-creator": "Peter Elderson" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.7105625, + 52.6003287 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "hke2912", + "uid": "5154951", + "editor": "MapComplete 0.6.4a", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-02T13:48:19Z", + "reviewed_features": [], + "create": 2, + "modify": 1, + "delete": 0, + "area": 0.00000525571153000583, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102197860, + "host": "pietervdvn.github.io", + "theme": "benches", + "imagery": "osm", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.661284950000001, + 49.93608915 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Michel Stuyts", + "uid": "62284", + "editor": "MapComplete 0.6.4b", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-02T12:47:32Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102194677, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4446054, + 51.1900344 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.6.4b", + "comment": "Adding data with #MapComplete for theme #personal", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-02T12:25:14Z", + "reviewed_features": [], + "create": 0, + "modify": 6, + "delete": 0, + "area": 7.60703999993804e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102193207, + "host": "mapcomplete.osm.be", + "theme": "personal", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.8240842, + 50.73734745 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.6.4b", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-02T12:23:21Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102193059, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.8236044, + 50.7375385 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Michel Stuyts", + "uid": "62284", + "editor": "MapComplete 0.6.4b", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-02T11:41:25Z", + "reviewed_features": [], + "create": 6, + "modify": 13, + "delete": 0, + "area": 0.00000429654795999498, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102190068, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "AGIV", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4438583000000005, + 51.18943075 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.6.4b", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-02T11:30:48Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102189327, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.8116952, + 50.7486504 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.6.4b", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-02T08:37:10Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102175932, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.804531, + 50.6994104 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "WandelenMetKinderen", + "uid": "12727758", + "editor": "MapComplete 0.6.4b", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-02T08:21:19Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 3.79990500000569e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102174721, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.2007486, + 50.986216150000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "WandelenMetKinderen", + "uid": "12727758", + "editor": "MapComplete 0.6.4b", + "comment": "Adding data with #MapComplete for theme #campersite", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-02T07:50:58Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102172588, + "host": "mapcomplete.osm.be", + "theme": "campersite", + "imagery": "osm", + "language": "en", + "theme-creator": "joost schouppe" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.268695, + 50.986261 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.6.4a", + "comment": "Adding data with #MapComplete for theme #artworks", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-01T21:50:13Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102149904, + "host": "pietervdvn.github.io", + "theme": "artworks", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.9743066, + 42.3045529 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "landscapemapper", + "uid": "220206", + "editor": "MapComplete 0.6.4b", + "comment": "Adding data with #MapComplete for theme #pingpong", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-01T19:37:32Z", + "reviewed_features": [], + "create": 3, + "modify": 0, + "delete": 0, + "area": 0.00010112235821996, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102146104, + "host": "mapcomplete.osm.be", + "theme": "pingpong", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.508066249999999, + 47.1583082 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Fietsersbond Leuven", + "uid": "12338983", + "editor": "MapComplete 0.6.4b", + "comment": "Adding data with #MapComplete for theme #fietsstraten", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-01T19:28:11Z", + "reviewed_features": [], + "create": 0, + "modify": 11, + "delete": 0, + "area": 0.000715264941099993, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102145840, + "host": "mapcomplete.osm.be", + "theme": "fietsstraten", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.722838899999999, + 50.87538325 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "WinstonSmith", + "uid": "36030", + "editor": "MapComplete 0.6.4b", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-01T17:43:41Z", + "reviewed_features": [], + "create": 4, + "modify": 5, + "delete": 0, + "area": 0.00018640842999997, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102142262, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.3336542, + 44.49516355 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "WinstonSmith", + "uid": "36030", + "editor": "MapComplete 0.6.4b", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-01T17:43:09Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0.00000161375794998794, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102142242, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.327612949999999, + 44.489386249999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "landscapemapper", + "uid": "220206", + "editor": "MapComplete 0.6.4", + "comment": "Adding data with #MapComplete for theme #pingpong", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-01T15:40:27Z", + "reviewed_features": [], + "create": 2, + "modify": 0, + "delete": 0, + "area": 0.00000539952290000532, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102137022, + "host": "mapcomplete.osm.be", + "theme": "pingpong", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.50951195, + 47.1440686 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Fietsersbond Leuven", + "uid": "12338983", + "editor": "MapComplete 0.6.4", + "comment": "Adding data with #MapComplete for theme #fietsstraten", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-01T15:21:04Z", + "reviewed_features": [], + "create": 0, + "modify": 9, + "delete": 0, + "area": 0.0000690211367999573, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102136102, + "host": "mapcomplete.osm.be", + "theme": "fietsstraten", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.7300211, + 50.8866063 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.6.4a", + "comment": "Adding data with #MapComplete for theme #fietsstraten", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-01T11:54:12Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000224087775001536, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102123964, + "host": "pietervdvn.github.io", + "theme": "fietsstraten", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.91501175, + 51.227475749999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "PeeWee32", + "uid": "353766", + "editor": "MapComplete 0.6.4", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-01T11:54:10Z", + "reviewed_features": [], + "create": 2, + "modify": 3, + "delete": 0, + "area": 0.000363588364930064, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102123961, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.46708445, + 52.33395005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "guido-vh", + "uid": "12749743", + "editor": "MapComplete 0.6.4", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-04-01T08:43:28Z", + "reviewed_features": [], + "create": 2, + "modify": 2, + "delete": 0, + "area": 5.54800000003041e-11, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102108527, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.5285835500000005, + 51.9567207 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.6.4a", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-01T03:17:06Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 0.00000578964960000298, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102086552, + "host": "pietervdvn.github.io", + "theme": "trees", + "imagery": "CyclOSM", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.2307119, + -39.84341085 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.6.4", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-04-01T02:27:51Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 102085289, + "host": "pietervdvn.github.io", + "theme": "trees", + "imagery": "CyclOSM", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.2372803, + -39.845244 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "skifans", + "uid": "2800603", + "editor": "MapComplete 0.7.4b", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-31T22:51:54Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.0360993456790307, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105646814, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.68591945, + 53.86010565 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "SNT-LJM-Cognac", + "uid": "13403395", + "editor": "MapComplete 0.7.4b", + "comment": "Adding data with #MapComplete for theme #buildings", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-31T22:32:28Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 4.75388200002124e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105646533, + "host": "mapcomplete.osm.be", + "theme": "buildings", + "imagery": "osm", + "language": "fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.3178882, + 45.701599650000006 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.7.4b", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/railway", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-31T13:43:29Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 8.76105370006996e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105627749, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/railway", + "imagery": "osm", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.594497849999996, + -34.64502795 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.7.4b", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/railway", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-31T13:08:14Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 5.06144799968454e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105626142, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/railway", + "imagery": "osm", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.7917208, + -34.649936 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Maarten O", + "uid": "13326535", + "editor": "MapComplete 0.7.4a", + "comment": "Adding data with #MapComplete for theme #aed_brugge", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-31T09:35:14Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105612563, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "HDM_HOT", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2061303, + 51.1871501 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Maarten O", + "uid": "13326535", + "editor": "MapComplete 0.7.4a", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-31T07:50:33Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105605501, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2084011, + 51.1869047 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "MarcoR", + "uid": "175882", + "editor": "MapComplete 0.7.4a", + "comment": "Adding data with #MapComplete for theme #campersite", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-31T05:44:32Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105597334, + "host": "mapcomplete.osm.be", + "theme": "campersite", + "imagery": "osm", + "language": "it", + "theme-creator": "joost schouppe" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 10.3257719, + 43.5032495 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.7.2n", + "comment": "Adding data with #MapComplete for theme #ghostbikes", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-31T03:40:06Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105592095, + "host": "pietervdvn.github.io", + "theme": "ghostbikes", + "imagery": "CartoDB.Positron", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.7310614, + -33.4677007 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Nickrds09", + "uid": "966535", + "editor": "MapComplete 0.7.4a", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-31T03:40:00Z", + "reviewed_features": [], + "create": 7, + "modify": 7, + "delete": 0, + "area": 0.0000682160367299801, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105592093, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "imagery": "HDM_HOT", + "language": "en", + "theme-creator": "Erwin Olario" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 122.09953485, + 13.92089145 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.7.4a", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/railway", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-31T00:44:14Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 8.26439999980428e-10, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105588545, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/railway", + "imagery": "osm", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.4666664, + -34.53998395 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "kudlav", + "uid": "3272933", + "editor": "MapComplete 0.7.4", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-30T18:48:44Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.0000246617365199878, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105579878, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 16.60259305, + 49.2251541 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "kudlav", + "uid": "3272933", + "editor": "MapComplete 0.7.4", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-30T18:44:13Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105579726, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 16.6172481, + 49.2177212 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "philippec", + "uid": "76884", + "editor": "MapComplete 0.7.2n", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-30T16:36:32Z", + "reviewed_features": [], + "create": 0, + "modify": 8, + "delete": 0, + "area": 0.0234074587466393, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105575306, + "host": "pietervdvn.github.io", + "theme": "aed", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.02200465, + 50.9174665 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dkf2010", + "uid": "685599", + "editor": "MapComplete 0.7.4", + "comment": "Adding data with #MapComplete for theme #sport_pitches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-30T15:35:19Z", + "reviewed_features": [], + "create": 2, + "modify": 2, + "delete": 0, + "area": 0.000121806212160024, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105573038, + "host": "mapcomplete.osm.be", + "theme": "sport_pitches", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.9549544, + 53.6245624 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dkf2010", + "uid": "685599", + "editor": "MapComplete 0.7.4", + "comment": "Adding data with #MapComplete for theme #sport_pitches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-30T14:19:09Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0.00000356571648000553, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105569986, + "host": "mapcomplete.osm.be", + "theme": "sport_pitches", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.973136499999999, + 53.631291700000006 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "alexashh", + "uid": "9054103", + "editor": "MapComplete 0.7.4", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-30T13:59:40Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105569231, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 43.8566539, + 56.2576637 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.7.4", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-30T13:37:03Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105568447, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.9517362, + 50.8464569 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.7.4", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-30T11:33:17Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105564069, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "nl", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.9468304, + 50.8470988 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Jakka", + "uid": "2403313", + "editor": "MapComplete 0.7.2n", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-30T10:11:41Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105561348, + "host": "pietervdvn.github.io", + "theme": "bookcases", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.7515642, + 50.9784145 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "philippec", + "uid": "76884", + "editor": "MapComplete 0.7.2n", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-30T10:06:43Z", + "reviewed_features": [], + "create": 5, + "modify": 12, + "delete": 0, + "area": 0.0126068645892792, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105561178, + "host": "pietervdvn.github.io", + "theme": "aed", + "imagery": "AGIVFlandersGRB", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.0210699000000005, + 50.9183135 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.7.4", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-30T09:34:02Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105560091, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.958101, + 50.8471648 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dkf2010", + "uid": "685599", + "editor": "MapComplete 0.7.4", + "comment": "Adding data with #MapComplete for theme #sport_pitches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-30T08:31:50Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105558256, + "host": "mapcomplete.osm.be", + "theme": "sport_pitches", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.9135947, + 53.6079631 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Wim L", + "uid": "223681", + "editor": "MapComplete 0.7.4", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-30T00:09:02Z", + "reviewed_features": [], + "create": 2, + "modify": 2, + "delete": 0, + "area": 0.0000839388575200038, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105551818, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -122.35904239999999, + 47.675138000000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.7.2n", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-29T20:25:10Z", + "reviewed_features": [], + "create": 1, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105547366, + "host": "pietervdvn.github.io", + "theme": "playgrounds", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.9269374, + 50.3546674 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "familiapicarol", + "uid": "593367", + "editor": "MapComplete 0.7.4", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-29T15:27:46Z", + "reviewed_features": [], + "create": 0, + "modify": 7, + "delete": 0, + "area": 0.00000245568644001263, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105538502, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "osm", + "language": "ca", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.4607644, + 42.35879065 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.7.2n", + "comment": "Adding data with #MapComplete for theme #fietsstraten", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-29T12:43:55Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000194043474000496, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105533079, + "host": "pietervdvn.github.io", + "theme": "fietsstraten", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.8827781, + 51.215784549999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "alexashh", + "uid": "9054103", + "editor": "MapComplete 0.7.4", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-29T11:47:38Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105531157, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 43.8590768, + 56.2553563 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.7.2n", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-29T10:49:44Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.000789733988890074, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105529143, + "host": "pietervdvn.github.io", + "theme": "playgrounds", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.09923075, + 51.19348925 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.7.2n", + "comment": "Adding data with #MapComplete for theme #fietsstraten", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-29T10:31:22Z", + "reviewed_features": [], + "create": 0, + "modify": 6, + "delete": 0, + "area": 0.000414838908660149, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105528545, + "host": "pietervdvn.github.io", + "theme": "fietsstraten", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.9001811, + 51.21942425 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "hke2912", + "uid": "5154951", + "editor": "MapComplete 0.7.2n", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-29T10:20:05Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105528141, + "host": "pietervdvn.github.io", + "theme": "trees", + "imagery": "osm", + "language": "nl", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.6419618, + 49.9305073 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "hke2912", + "uid": "5154951", + "editor": "MapComplete 0.7.2n", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-29T10:15:39Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105527976, + "host": "pietervdvn.github.io", + "theme": "benches", + "imagery": "osm", + "language": "de", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.6461159, + 49.9334178 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "hke2912", + "uid": "5154951", + "editor": "MapComplete 0.7.2n", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-29T10:13:26Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105527901, + "host": "pietervdvn.github.io", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "de", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.6421056, + 49.9303136 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "rayanr666", + "uid": "11372864", + "editor": "MapComplete 0.7.4", + "comment": "Adding data with #MapComplete for theme #fritures", + "comments_count": 2, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-29T09:30:12Z", + "reviewed_features": [], + "create": 10, + "modify": 10, + "delete": 0, + "area": 0.0111552753926401, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105526392, + "host": "mapcomplete.osm.be", + "theme": "fritures", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7907508, + 50.785135600000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Nuytinck", + "uid": "3719237", + "editor": "MapComplete 0.7.2n", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-29T09:22:20Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105526094, + "host": "pietervdvn.github.io", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3486896, + 51.1744232 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Albin Gasparetto", + "uid": "1227542", + "editor": "MapComplete 0.7.4", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-29T08:58:39Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105525175, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.3779956, + 48.908687 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Tim Couwelier", + "uid": "7246683", + "editor": "MapComplete 0.7.4", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-29T07:54:33Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105523172, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1191509, + 50.9693049 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "joren0081", + "uid": "8430443", + "editor": "MapComplete 0.7.4", + "comment": "Adding data with #MapComplete for theme #fritures", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-29T07:23:23Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105522221, + "host": "mapcomplete.osm.be", + "theme": "fritures", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4155276, + 51.2062991 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Hendrik_III", + "uid": "13435357", + "editor": "MapComplete 0.7.4", + "comment": "Adding data with #MapComplete for theme #fritures", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-29T05:59:02Z", + "reviewed_features": [], + "create": 3, + "modify": 7, + "delete": 0, + "area": 0.0000588646911000232, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105520167, + "host": "mapcomplete.osm.be", + "theme": "fritures", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4533185, + 51.25020945 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.7.4", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/railway", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-29T00:27:17Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105515868, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/railway", + "imagery": "osm", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.6400716, + -34.6513452 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "alexashh", + "uid": "9054103", + "editor": "MapComplete 0.7.4", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-28T22:41:48Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105514466, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 43.8592109, + 56.2416367 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.7.4", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/railway", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-28T13:43:16Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.0000119458880000552, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105495953, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/railway", + "imagery": "osm", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.6027297, + -34.645712599999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.7.4", + "comment": "Adding data with #MapComplete for theme #fietsstraten", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-28T13:39:02Z", + "reviewed_features": [], + "create": 0, + "modify": 7, + "delete": 0, + "area": 0.0000366760057000145, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105495698, + "host": "mapcomplete.osm.be", + "theme": "fietsstraten", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete, joost schouppe" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.23532355, + 50.7344225 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Koen Rijnsent", + "uid": "4569696", + "editor": "MapComplete 0.7.4", + "comment": "Adding data with #MapComplete for theme #artworks", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-28T13:33:43Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105495425, + "host": "mapcomplete.osm.be", + "theme": "artworks", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.1226049, + 52.0831865 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.7.4", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/railway", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-28T13:10:06Z", + "reviewed_features": [], + "create": 0, + "modify": 9, + "delete": 0, + "area": 0.00113673068852025, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105494205, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/railway", + "imagery": "osm", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.7551985, + -34.657894049999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "GOwin", + "uid": "1041828", + "editor": "MapComplete 0.7.3", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-28T09:20:02Z", + "reviewed_features": [], + "create": 1, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105478384, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "Mapbox", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 121.0064341, + 14.5511908 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Nuytinck", + "uid": "3719237", + "editor": "MapComplete 0.7.2n", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-28T08:08:52Z", + "reviewed_features": [], + "create": 1, + "modify": 5, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105473570, + "host": "pietervdvn.github.io", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.9881632, + 51.1787212 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.7.2n", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-28T07:21:40Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105470322, + "host": "pietervdvn.github.io", + "theme": "benches", + "imagery": "osm", + "language": "en", + "theme-creator": "Florian Edelmann" + }, "geometry": { "type": "Point", "coordinates": [ @@ -55128,3793 +198941,57619 @@ }, { "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": [ - 2.0840187, - 48.63581775 + -82.43556305000001, + 38.410135 ] } }, { "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Maarten O", + "uid": "13326535", + "editor": "MapComplete 0.7.3", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-27T20:05:14Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.0000767541159200034, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105447817, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, "geometry": { "type": "Point", "coordinates": [ - 84.9651188, - 56.4974077 + 3.2123712500000003, + 51.1917379 ] } }, { "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Maarten O", + "uid": "13326535", + "editor": "MapComplete 0.7.3", + "comment": "Adding data with #MapComplete for theme #aed_brugge", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-27T19:46:53Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 0.0000301287056000039, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105447053, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "HDM_HOT", + "language": "nl", + "theme-creator": "MapComplete" + }, "geometry": { "type": "Point", "coordinates": [ - 6.7458764, - 44.2187273 + 3.20446725, + 51.2150768 ] } }, { "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Marvin Geisler", + "uid": "13424339", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-27T16:49:44Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0.0000026637356099939, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105438725, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, "geometry": { "type": "Point", "coordinates": [ - 4.72486675, - 50.874081 + 13.819718049999999, + 51.81127015 ] } }, { "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.7.3", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/railway", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-27T14:37:36Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 5.10943999976556e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105432701, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/railway", + "imagery": "osm", + "language": "es" + }, "geometry": { "type": "Point", "coordinates": [ - 4.7267586, - 50.883813450000005 + -58.59432605, + -34.6447223 ] } }, { "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Marvin Geisler", + "uid": "13424339", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-27T13:34:43Z", + "reviewed_features": [], + "create": 3, + "modify": 3, + "delete": 0, + "area": 0.000367587024000074, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105429893, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, "geometry": { "type": "Point", "coordinates": [ - 4.7267586, - 50.8835294 + 13.806082199999999, + 51.8169858 ] } }, { "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.7.3", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/railway", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-27T13:33:24Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 0.000927233450000037, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105429835, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/railway", + "imagery": "osm", + "language": "es" + }, "geometry": { "type": "Point", "coordinates": [ - 3.7087246, - 51.07779055 + -58.6310854, + -34.6520687 ] } }, { "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.7.3", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/railway", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-27T13:22:21Z", + "reviewed_features": [], + "create": 0, + "modify": 7, + "delete": 0, + "area": 0.000365466097579998, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105429373, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/railway", + "imagery": "osm", + "language": "es" + }, "geometry": { "type": "Point", "coordinates": [ - 4.3169403, - 50.8352832 + -58.69289845, + -34.6621691 ] } }, { "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Jose Luis Infante", + "uid": "126203", + "editor": "MapComplete 0.7.3", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-27T12:20:57Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105425711, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "imagery": "HDM_HOT", + "language": "ca" + }, "geometry": { "type": "Point", "coordinates": [ - -77.10238305, - 38.8918637 + 2.2165779, + 41.4330737 ] } }, { "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-8770455435", + "osm_id": 8770455435, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8770347043", + "osm_id": 8770347043, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8770347061", + "osm_id": 8770347061, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "Jose Luis Infante", + "uid": "126203", + "editor": "MapComplete 0.7.3", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-27T11:44:33Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.00000104911685999595, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105423247, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "imagery": "HDM_HOT", + "language": "ca" + }, "geometry": { "type": "Point", "coordinates": [ - 5.39231705, - 50.925659550000006 + 2.23078415, + 41.440836399999995 ] } }, { "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-3946996065", + "osm_id": 3946996065, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946996107", + "osm_id": 3946996107, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946995645", + "osm_id": 3946995645, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946996137", + "osm_id": 3946996137, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "Jose Luis Infante", + "uid": "126203", + "editor": "MapComplete 0.7.3", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-27T11:32:55Z", + "reviewed_features": [], + "create": 0, + "modify": 9, + "delete": 0, + "area": 3.97057199995677e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105422476, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "imagery": "HDM_HOT", + "language": "ca" + }, "geometry": { "type": "Point", "coordinates": [ - 84.9845127, - 56.4635192 + 2.2219420000000003, + 41.43591605 ] } }, { "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "mozita", + "uid": "8934185", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 1, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-27T09:53:17Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105415408, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, "geometry": { "type": "Point", "coordinates": [ - 4.23323525, - 50.73766165 + 14.1477031, + 52.3448603 ] } }, { "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "paytv", + "uid": "13422838", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-27T09:07:53Z", + "reviewed_features": [], + "create": 6, + "modify": 9, + "delete": 0, + "area": 0.000126185690399969, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105410749, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, "geometry": { "type": "Point", "coordinates": [ - 84.9845127, - 56.4635192 + 13.7139912, + 52.2423022 ] } }, { "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.7.2n", + "comment": "Adding data with #MapComplete for theme #fietsstraten", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-27T08:13:17Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 0.397542050461923, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105406148, + "host": "pietervdvn.github.io", + "theme": "fietsstraten", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, "geometry": { "type": "Point", "coordinates": [ - -58.79305835, - -34.64959145 + 4.036989350000001, + 51.1393507 ] } }, { "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Maarten O", + "uid": "13326535", + "editor": "MapComplete 0.7.3", + "comment": "Adding data with #MapComplete for theme #aed_brugge", + "comments_count": 2, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-27T07:33:34Z", + "reviewed_features": [], + "create": 4, + "modify": 39, + "delete": 0, + "area": 0.00141826827872004, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105403334, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "HDM_HOT", + "language": "nl", + "theme-creator": "MapComplete" + }, "geometry": { "type": "Point", "coordinates": [ - -58.79235865, - -34.64979805 + 3.2177818, + 51.20740275 ] } }, { "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Maarten O", + "uid": "13326535", + "editor": "MapComplete 0.7.3", + "comment": "Adding data with #MapComplete for theme #aed_brugge", + "comments_count": 1, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-27T07:24:09Z", + "reviewed_features": [], + "create": 1, + "modify": 5, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105402639, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "HDM_HOT", + "language": "nl", + "theme-creator": "MapComplete" + }, "geometry": { "type": "Point", "coordinates": [ - 13.4425507, - 52.5434797 + 3.2034321, + 51.1822992 ] } }, { "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.7.2n", + "comment": "Adding data with #MapComplete for theme #ghostbikes", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-26T22:58:45Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105382757, + "host": "pietervdvn.github.io", + "theme": "ghostbikes", + "imagery": "Mapbox", + "language": "en", + "theme-creator": "MapComplete" + }, "geometry": { "type": "Point", "coordinates": [ - 153.0415517, - -27.2316365 + -70.4734044, + -33.5889291 ] } }, { "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.7.2n", + "comment": "Adding data with #MapComplete for theme #fietsstraten", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-26T22:45:31Z", + "reviewed_features": [], + "create": 0, + "modify": 11, + "delete": 0, + "area": 0.0000520888725599873, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105382527, + "host": "pietervdvn.github.io", + "theme": "fietsstraten", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, "geometry": { "type": "Point", "coordinates": [ - 20.4569453, - 44.8209414 + 5.573256600000001, + 50.9321513 ] } }, { "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dkf2010", + "uid": "685599", + "editor": "MapComplete 0.7.3", + "comment": "Adding data with #MapComplete for theme #sport_pitches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-26T20:04:38Z", + "reviewed_features": [], + "create": 1, + "modify": 22, + "delete": 0, + "area": 0.186393708881099, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105377923, + "host": "mapcomplete.osm.be", + "theme": "sport_pitches", + "imagery": "osm", + "language": "en" + }, "geometry": { "type": "Point", "coordinates": [ - 20.4569453, - 44.8209414 + 10.04383355, + 53.256570499999995 ] } }, { "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Roc BxC", + "uid": "13163796", + "editor": "MapComplete 0.7.3", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-26T17:36:29Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105372878, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "imagery": "HDM_HOT", + "language": "ca" + }, "geometry": { "type": "Point", "coordinates": [ - 20.4569453, - 44.8209414 + 2.2441183, + 41.4470779 ] } }, { "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + }, + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-8744208899", + "osm_id": 8744208899, + "reasons": [ + 43 + ], + "version": 6, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "Roc BxC", + "uid": "13163796", + "editor": "MapComplete 0.7.3", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-26T17:25:17Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105372498, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "imagery": "HDM_HOT", + "language": "ca" + }, "geometry": { "type": "Point", "coordinates": [ - 8.9955803, - 48.4988714 + 2.2440553, + 41.4471712 ] } }, { "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Roc BxC", + "uid": "13163796", + "editor": "MapComplete 0.7.3", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-26T17:19:15Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105372262, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "imagery": "HDM_HOT", + "language": "ca" + }, "geometry": { "type": "Point", "coordinates": [ - 4.427251, - 51.184372 + 2.2440553, + 41.4471712 ] } }, { "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + }, + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-8744208896", + "osm_id": 8744208896, + "reasons": [ + 43 + ], + "version": 4, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "elisenda_sn", + "uid": "13418004", + "editor": "MapComplete 0.7.3", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-26T17:12:15Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105371990, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "imagery": "HDM_HOT", + "language": "ca" + }, "geometry": { "type": "Point", "coordinates": [ - -0.2857771, - 50.8838825 + 2.2440902, + 41.4471234 ] } }, { "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Roc BxC", + "uid": "13163796", + "editor": "MapComplete 0.7.3", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-26T17:11:00Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 5.87790000019343e-9, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105371947, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "imagery": "HDM_HOT", + "language": "ca" + }, "geometry": { "type": "Point", "coordinates": [ - 4.152942, - 50.7576221 + 2.2440868, + 41.44712455 ] } }, { "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "CarmeP", + "uid": "13279572", + "editor": "MapComplete 0.7.3", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-26T17:07:24Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105371816, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "imagery": "HDM_HOT", + "language": "ca" + }, "geometry": { "type": "Point", "coordinates": [ - -0.1384507, - 50.8423129 + 2.2440287, + 41.4472179 ] } }, { "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + }, + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-8744208896", + "osm_id": 8744208896, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "elisenda_sn", + "uid": "13418004", + "editor": "MapComplete 0.7.3", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-26T17:06:57Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105371789, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "imagery": "HDM_HOT", + "language": "ca" + }, "geometry": { "type": "Point", "coordinates": [ - 84.9651188, - 56.4974077 + 2.2440902, + 41.4471234 ] } }, { "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Roc BxC", + "uid": "13163796", + "editor": "MapComplete 0.7.3", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-26T16:47:05Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105370974, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "imagery": "HDM_HOT", + "language": "ca" + }, "geometry": { "type": "Point", "coordinates": [ - 84.9507832, - 56.4744741 + 2.2436824, + 41.4478395 ] } }, { "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "flo2154", + "uid": "348648", + "editor": "MapComplete 0.7.2n", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-26T16:35:52Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105370497, + "host": "pietervdvn.github.io", + "theme": "benches", + "imagery": "osm", + "language": "de", + "theme-creator": "Florian Edelmann" + }, "geometry": { "type": "Point", "coordinates": [ - -58.4552846, - -34.62228265 + 11.7966235, + 48.1144586 ] } }, { "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.7.3", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/railway", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-26T13:19:58Z", + "reviewed_features": [], + "create": 0, + "modify": 13, + "delete": 0, + "area": 0.00565607714054903, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105360947, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/railway", + "imagery": "osm", + "language": "es" + }, "geometry": { "type": "Point", "coordinates": [ - -58.62089975, - -34.651606 + -58.62557405, + -34.65190285 ] } }, { "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Maarten O", + "uid": "13326535", + "editor": "MapComplete 0.7.3", + "comment": "Adding data with #MapComplete for theme #aed_brugge", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-26T13:19:29Z", + "reviewed_features": [], + "create": 5, + "modify": 26, + "delete": 0, + "area": 0.00051048993196005, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105360924, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "HDM_HOT", + "language": "nl", + "theme-creator": "MapComplete" + }, "geometry": { "type": "Point", "coordinates": [ - 7.59338395, - 47.5711159 + 3.19414885, + 51.2022593 ] } }, { "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Maarten O", + "uid": "13326535", + "editor": "MapComplete 0.7.3", + "comment": "Adding data with #MapComplete for theme #aed_brugge", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-26T13:13:11Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.00000217021238999722, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105360560, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "HDM_HOT", + "language": "nl", + "theme-creator": "MapComplete" + }, "geometry": { "type": "Point", "coordinates": [ - 13.3379653, - 52.5069243 + 3.1959963499999997, + 51.19238775 ] } }, { "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Maarten O", + "uid": "13326535", + "editor": "MapComplete 0.7.3", + "comment": "Adding data with #MapComplete for theme #aed_brugge", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-26T13:07:51Z", + "reviewed_features": [], + "create": 0, + "modify": 6, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105360228, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "HDM_HOT", + "language": "nl", + "theme-creator": "MapComplete" + }, "geometry": { "type": "Point", "coordinates": [ - 5.3482148, - 50.9353292 + 3.196541, + 51.1913916 ] } }, { "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "MarcoR", + "uid": "175882", + "editor": "MapComplete 0.7.3", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-26T12:09:13Z", + "reviewed_features": [], + "create": 0, + "modify": 13, + "delete": 0, + "area": 7.39284399995784e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105356597, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "en", + "theme-creator": "Florian Edelmann" + }, "geometry": { "type": "Point", "coordinates": [ - -70.75435375, - -33.49038795 + 10.3175247, + 43.5129753 ] } }, { "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Maarten O", + "uid": "13326535", + "editor": "MapComplete 0.7.3", + "comment": "Adding data with #MapComplete for theme #aed_brugge", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-26T12:07:15Z", + "reviewed_features": [], + "create": 1, + "modify": 6, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105356464, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "HDM_HOT", + "language": "nl", + "theme-creator": "MapComplete" + }, "geometry": { "type": "Point", "coordinates": [ - 4.42421605, - 51.1826637 + 3.2018441, + 51.247683 ] } }, { "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "n1kn0k", + "uid": "867701", + "editor": "MapComplete 0.7.3", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-26T04:06:28Z", + "reviewed_features": [], + "create": 3, + "modify": 3, + "delete": 0, + "area": 0.000177536739149919, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105324191, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, "geometry": { "type": "Point", "coordinates": [ - 5.4202396, - 51.2096933 + 121.01143775, + 14.60215685 ] } }, { "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.7.3", + "comment": "Adding data with #MapComplete for theme #sport_pitches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-25T22:20:11Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.0000163819133100364, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105317447, + "host": "mapcomplete.osm.be", + "theme": "sport_pitches", + "imagery": "osm", + "language": "en" + }, "geometry": { "type": "Point", "coordinates": [ - 3.2172126, - 51.21005285 + 4.37910115, + 50.86689885 ] } }, { "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thibaultmol", + "uid": "2916921", + "editor": "MapComplete 0.7.3", + "comment": "Adding data with #MapComplete for theme #images", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-25T20:05:09Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105313902, + "host": "mapcomplete.osm.be", + "theme": "images", + "imagery": "osm", + "language": "en", + "theme-creator": "Seppe Santens" + }, "geometry": { "type": "Point", "coordinates": [ - 3.1536965, - 51.1020483 + 3.402338, + 51.039901 ] } }, { "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-8744208275", + "osm_id": 8744208275, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8744208260", + "osm_id": 8744208260, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8744208270", + "osm_id": 8744208270, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8744208049", + "osm_id": 8744208049, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8744208271", + "osm_id": 8744208271, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8765851041", + "osm_id": 8765851041, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8744208267", + "osm_id": 8744208267, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8744208310", + "osm_id": 8744208310, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8744208315", + "osm_id": 8744208315, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8744208053", + "osm_id": 8744208053, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8744208304", + "osm_id": 8744208304, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8765858085", + "osm_id": 8765858085, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8744208054", + "osm_id": 8744208054, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8744208055", + "osm_id": 8744208055, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8765870929", + "osm_id": 8765870929, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8765883773", + "osm_id": 8765883773, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8744208328", + "osm_id": 8744208328, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8765857951", + "osm_id": 8765857951, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8744208290", + "osm_id": 8744208290, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8744208295", + "osm_id": 8744208295, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8765860970", + "osm_id": 8765860970, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8744208343", + "osm_id": 8744208343, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8765859423", + "osm_id": 8765859423, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8744208327", + "osm_id": 8744208327, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8744208347", + "osm_id": 8744208347, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8744208356", + "osm_id": 8744208356, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8744208357", + "osm_id": 8744208357, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8744208358", + "osm_id": 8744208358, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8765860731", + "osm_id": 8765860731, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "Jose Luis Infante", + "uid": "126203", + "editor": "MapComplete 0.7.3", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-25T18:44:53Z", + "reviewed_features": [], + "create": 14, + "modify": 44, + "delete": 0, + "area": 0.0000072869514499922, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105310901, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "imagery": "HDM_HOT", + "language": "ca" + }, "geometry": { "type": "Point", "coordinates": [ - 4.152942, - 50.7576221 + 2.25165135, + 41.44837595 ] } }, { "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-8744207825", + "osm_id": 8744207825, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8744207829", + "osm_id": 8744207829, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8744208236", + "osm_id": 8744208236, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8765777424", + "osm_id": 8765777424, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8744208253", + "osm_id": 8744208253, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8744208255", + "osm_id": 8744208255, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8744198615", + "osm_id": 8744198615, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8765766055", + "osm_id": 8765766055, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8744208258", + "osm_id": 8744208258, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8765766232", + "osm_id": 8765766232, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8765767531", + "osm_id": 8765767531, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8765762438", + "osm_id": 8765762438, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "Jose Luis Infante", + "uid": "126203", + "editor": "MapComplete 0.7.3", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-25T18:32:07Z", + "reviewed_features": [], + "create": 8, + "modify": 19, + "delete": 0, + "area": 0.00000269868384000592, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105310408, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "imagery": "HDM_HOT", + "language": "ca" + }, "geometry": { "type": "Point", "coordinates": [ - -58.47449585, - -34.6303257 + 2.2531290999999998, + 41.4505361 ] } }, { "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Tom Schneider @FFWBrück", + "uid": "13382854", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-25T17:39:13Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105308266, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, "geometry": { "type": "Point", "coordinates": [ - -58.489742899999996, - -34.63451225 + 12.7623636, + 52.1835731 ] } }, { "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Maarten O", + "uid": "13326535", + "editor": "MapComplete 0.7.3", + "comment": "Adding data with #MapComplete for theme #aed_brugge", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-25T17:18:11Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105307197, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "HDM_HOT", + "language": "nl", + "theme-creator": "MapComplete" + }, "geometry": { "type": "Point", "coordinates": [ - -58.57448815, - -34.6367232 + 3.2158218, + 51.2006089 ] } }, { "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "habi", + "uid": "15671", + "editor": "MapComplete 0.7.3", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-25T17:00:55Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105306242, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, "geometry": { "type": "Point", "coordinates": [ - 4.41870605, - 51.1910002 + 7.4683959, + 46.9334184 ] } }, { "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Alan Orth", + "uid": "10607774", + "editor": "MapComplete 0.7.3", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-25T14:32:48Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105298752, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "imagery": "osm", + "language": "en" + }, "geometry": { "type": "Point", "coordinates": [ - 18.957001650000002, - 47.550178200000005 + 23.3210091, + 42.6795374 ] } }, { "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Brandoberinspektor Erdmann", + "uid": "13364061", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-25T12:31:10Z", + "reviewed_features": [], + "create": 2, + "modify": 6, + "delete": 0, + "area": 1.9490169999989e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105292377, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, "geometry": { "type": "Point", "coordinates": [ - 1.9757313, - 48.9797998 + 13.76625915, + 52.8400339 ] } }, { "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.7.2n", + "comment": "Adding data with #MapComplete for theme #ghostbikes", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-25T11:49:15Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105289590, + "host": "pietervdvn.github.io", + "theme": "ghostbikes", + "imagery": "CartoDB.Positron", + "language": "en", + "theme-creator": "MapComplete" + }, "geometry": { "type": "Point", "coordinates": [ - 4.3318050999999995, - 51.101305800000006 + -70.4846171, + -33.5905772 ] } }, { "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Alan Orth", + "uid": "10607774", + "editor": "MapComplete 0.7.3", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-25T11:39:42Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105288905, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "imagery": "osm", + "language": "en" + }, "geometry": { "type": "Point", "coordinates": [ - 4.3910317, - 51.17238265 + 23.3616829, + 42.7037798 ] } }, { "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Maarten O", + "uid": "13326535", + "editor": "MapComplete 0.7.3", + "comment": "Adding data with #MapComplete for theme #aed_brugge", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-25T10:29:44Z", + "reviewed_features": [], + "create": 0, + "modify": 10, + "delete": 0, + "area": 0.00403718708348001, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105283711, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "HDM_HOT", + "language": "nl", + "theme-creator": "MapComplete" + }, "geometry": { "type": "Point", "coordinates": [ - 7.8927514, - 53.2878815 + 3.2324194, + 51.221882449999995 ] } }, { "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Nuytinck", + "uid": "3719237", + "editor": "MapComplete 0.7.2n", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-25T08:18:54Z", + "reviewed_features": [], + "create": 1, + "modify": 7, + "delete": 0, + "area": 0.00000435244712001284, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105273964, + "host": "pietervdvn.github.io", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, "geometry": { "type": "Point", "coordinates": [ - 4.4031345, - 51.1895697 + 3.713385, + 51.092517099999995 ] } }, { "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Maarten O", + "uid": "13326535", + "editor": "MapComplete 0.7.3", + "comment": "Adding data with #MapComplete for theme #aed_brugge", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-25T07:33:54Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105270921, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "HDM_HOT", + "language": "nl", + "theme-creator": "MapComplete" + }, "geometry": { "type": "Point", "coordinates": [ - 4.410331449999999, - 51.182998749999996 + 3.2158218, + 51.2006089 ] } }, { "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "SNT-LJM-Cognac", + "uid": "13403395", + "editor": "MapComplete 0.7.3", + "comment": "Adding data with #MapComplete for theme #sport_pitches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-25T07:31:15Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000204138719999855, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105270712, + "host": "mapcomplete.osm.be", + "theme": "sport_pitches", + "imagery": "osm", + "language": "en" + }, "geometry": { "type": "Point", "coordinates": [ - 4.4145646, - 51.188351600000004 + -0.3197247, + 45.70180405 ] } }, { "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "n1kn0k", + "uid": "867701", + "editor": "MapComplete 0.7.3", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-25T00:12:44Z", + "reviewed_features": [], + "create": 1, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105254015, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "Mapbox", + "language": "en", + "theme-creator": "MapComplete" + }, "geometry": { "type": "Point", "coordinates": [ - 5.86494685, - 45.236673100000004 + 121.0535163, + 14.7564885 ] } }, { "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "n1kn0k", + "uid": "867701", + "editor": "MapComplete 0.7.3", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-25T00:11:19Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 1.09187999983138e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105253999, + "host": "mapcomplete.osm.be", + "theme": "shops", + "imagery": "Mapbox", + "language": "en", + "theme-creator": "MapComplete" + }, "geometry": { "type": "Point", "coordinates": [ - 4.1546506, - 44.9050895 + 121.05351089999999, + 14.75653905 ] } }, { "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "ethanmad", + "uid": "13403755", + "editor": "MapComplete 0.7.3", + "comment": "Adding data with #MapComplete for theme #ghostbikes", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-24T21:30:30Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105251257, + "host": "mapcomplete.osm.be", + "theme": "ghostbikes", + "imagery": "CartoDB.Positron", + "language": "en", + "theme-creator": "MapComplete" + }, "geometry": { "type": "Point", "coordinates": [ - 4.1546506, - 44.9050895 + -122.3893261, + 37.770719 ] } }, { "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Nuytinck", + "uid": "3719237", + "editor": "MapComplete 0.7.2n", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-24T19:19:45Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105246987, + "host": "pietervdvn.github.io", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, "geometry": { "type": "Point", "coordinates": [ - 5.2487712, - 51.2018824 + 4.4352976, + 51.191794 ] } }, { "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Nuytinck", + "uid": "3719237", + "editor": "MapComplete 0.7.2n", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-24T17:52:54Z", + "reviewed_features": [], + "create": 5, + "modify": 9, + "delete": 0, + "area": 0.827927566204646, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105243384, + "host": "pietervdvn.github.io", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, "geometry": { "type": "Point", "coordinates": [ - -58.43862335, - -34.6177728 + 4.84051635, + 50.86614145 ] } }, { "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.7.3", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-24T13:31:04Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105230130, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, "geometry": { "type": "Point", "coordinates": [ - 4.41618195, - 51.19265605 + 5.2752024, + 50.7917724 ] } }, { "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "sjokomoeske", + "uid": "10187049", + "editor": "MapComplete 0.7.3", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-24T12:56:01Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105227975, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "imagery": "osm", + "language": "en" + }, "geometry": { "type": "Point", "coordinates": [ - 4.1546506, - 44.9050895 + 4.106668, + 51.0274239 ] } }, { "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Koen Rijnsent", + "uid": "4569696", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #artworks", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-24T12:17:20Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105225506, + "host": "mapcomplete.osm.be", + "theme": "artworks", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, "geometry": { "type": "Point", "coordinates": [ - 4.41369235, - 51.19081715 + 5.2023899, + 52.0686648 ] } }, { "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.7.3", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-24T12:17:04Z", + "reviewed_features": [], + "create": 3, + "modify": 4, + "delete": 0, + "area": 0.0000143528293500015, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105225482, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "imagery": "osm", + "language": "en" + }, "geometry": { "type": "Point", "coordinates": [ - 4.1546506, - 44.9050895 + 5.46774745, + 50.77929245 ] } }, { "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "OscarBrownbread", + "uid": "4637589", + "editor": "MapComplete 0.7.2n", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-24T08:29:34Z", + "reviewed_features": [], + "create": 2, + "modify": 5, + "delete": 0, + "area": 0.0000516541032300105, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105208199, + "host": "pietervdvn.github.io", + "theme": "toilets", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, "geometry": { "type": "Point", "coordinates": [ - 4.2350458, - 43.6722582 + -9.29504625, + 53.85439265 ] } }, { "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "OscarBrownbread", + "uid": "4637589", + "editor": "MapComplete 0.7.3", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-24T07:56:34Z", + "reviewed_features": [], + "create": 0, + "modify": 6, + "delete": 0, + "area": 0.000232789639739958, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105205876, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "imagery": "osm", + "language": "en" + }, "geometry": { "type": "Point", "coordinates": [ - 5.8137511, - 45.342389 + 9.9432471, + 51.53845695 ] } }, { "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "menganito", + "uid": "11199632", + "editor": "MapComplete 0.7.3", + "comment": "Adding data with #MapComplete for theme #climbing", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-24T05:17:30Z", + "reviewed_features": [], + "create": 0, + "modify": 10, + "delete": 0, + "area": 0.0000874767730300334, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105195214, + "host": "mapcomplete.osm.be", + "theme": "climbing", + "imagery": "osm", + "language": "en", + "theme-creator": "Christian Neumann " + }, "geometry": { "type": "Point", "coordinates": [ - 6.548554, - 53.0014414 + 21.25382085, + 48.72730525 ] } }, { "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "menganito", + "uid": "11199632", + "editor": "MapComplete 0.7.3", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-24T05:04:35Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105194536, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "imagery": "osm", + "language": "en" + }, "geometry": { "type": "Point", "coordinates": [ - 2.66217695, - 51.0730144 + 21.2563617, + 48.7374982 ] } }, { "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.7.2n", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-24T02:15:13Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105189586, + "host": "pietervdvn.github.io", + "theme": "trees", + "imagery": "CyclOSM", + "language": "en", + "theme-creator": "Midgard" + }, "geometry": { "type": "Point", "coordinates": [ - 27.595936950000002, - 53.9275446 + -70.7584149, + -33.4895703 ] } }, { "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "GeorgeHoneywood", + "uid": "10031443", + "editor": "MapComplete 0.7.3", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-23T16:23:28Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 0.0000012856360000038, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105175759, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, "geometry": { "type": "Point", "coordinates": [ - 14.6340836, - 51.7419502 + -0.5472319999999999, + 51.4319502 ] } }, { "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.7.3", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-23T16:10:21Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105175143, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, "geometry": { "type": "Point", "coordinates": [ - 2.6822103, - 51.1160817 + 5.614514, + 50.7909286 ] } }, { "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "MOTTE123", + "uid": "13382854", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-23T15:16:49Z", + "reviewed_features": [], + "create": 5, + "modify": 9, + "delete": 0, + "area": 0.0000959672329000387, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105171605, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, "geometry": { "type": "Point", "coordinates": [ - 2.6628005000000003, - 51.1173613 + 12.756734999999999, + 52.18132575 ] } }, { "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.7.3", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-23T13:58:49Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105166704, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "imagery": "osm", + "language": "en" + }, "geometry": { "type": "Point", "coordinates": [ - 4.8540178, - 50.4451494 + 5.6910387, + 50.8416995 ] } }, { "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "flo2154", + "uid": "348648", + "editor": "MapComplete 0.7.2n", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-23T13:35:05Z", + "reviewed_features": [], + "create": 0, + "modify": 7, + "delete": 0, + "area": 0.0000285965315999881, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105165897, + "host": "pietervdvn.github.io", + "theme": "benches", + "imagery": "osm", + "language": "de", + "theme-creator": "Florian Edelmann" + }, "geometry": { "type": "Point", "coordinates": [ - 2.2381507000000003, - 41.42974725 + 11.7887527, + 48.1039734 ] } }, { "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.7.3", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-23T12:31:06Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105163811, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "imagery": "osm", + "language": "en" + }, "geometry": { "type": "Point", "coordinates": [ - 14.6296288, - 51.743342 + 5.6746772, + 50.8518793 ] } }, { "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "NLthijs48", + "uid": "2997785", + "editor": "MapComplete 0.7.3", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-23T11:39:43Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.0000467974701600034, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105162112, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "imagery": "osm", + "language": "en" + }, "geometry": { "type": "Point", "coordinates": [ - -58.4452003, - -34.6199983 + 6.9047789999999996, + 52.4055037 ] } }, { "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.7.3", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-23T10:53:50Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105160761, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, "geometry": { "type": "Point", "coordinates": [ - -58.409932, - -34.6087404 + 5.6922644, + 50.8546733 ] } }, { "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "InsecurePeanut", + "uid": "13338897", + "editor": "MapComplete 0.7.3", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-23T09:55:18Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 2.7428399995477e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105158908, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, "geometry": { "type": "Point", "coordinates": [ - 11.3159387, - 44.4888986 + -89.59835100000001, + 44.530470449999996 ] } }, { "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "InsecurePeanut", + "uid": "13338897", + "editor": "MapComplete 0.7.3", + "comment": "Adding data with #MapComplete for theme #artworks", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-23T09:46:08Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105158635, + "host": "mapcomplete.osm.be", + "theme": "artworks", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, "geometry": { "type": "Point", "coordinates": [ - 11.264794550000001, - 44.13458775 + -89.5715612, + 44.5272569 ] } }, { "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "menganito", + "uid": "11199632", + "editor": "MapComplete 0.7.3", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-23T06:53:37Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 5.4832020000262e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105154337, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "imagery": "osm", + "language": "en" + }, "geometry": { "type": "Point", "coordinates": [ - 2.2362010000000003, - 41.43395125 + 21.92493695, + 48.749327300000004 ] } }, { "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "GOwin", + "uid": "1041828", + "editor": "MapComplete 0.7.3", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-23T06:00:34Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105153445, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CyclOSM", + "language": "en", + "theme-creator": "MapComplete" + }, "geometry": { "type": "Point", "coordinates": [ - -58.4467777, - -34.6209872 + 120.9734014, + 14.6264747 ] } }, { "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Wim L", + "uid": "223681", + "editor": "MapComplete 0.7.3", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-23T01:29:13Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105150997, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, "geometry": { "type": "Point", "coordinates": [ - -58.4860132, - -34.6337733 + -122.371635, + 47.6815637 ] } }, { "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.7.3", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-22T17:10:42Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105141050, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "imagery": "osm", + "language": "en" + }, "geometry": { "type": "Point", "coordinates": [ - -58.49277625, - -34.63494475 + 5.7080653, + 51.0016916 ] } }, { "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.7.3", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-22T17:07:06Z", + "reviewed_features": [], + "create": 2, + "modify": 3, + "delete": 0, + "area": 0.00000213906758000218, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105140957, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, "geometry": { "type": "Point", "coordinates": [ - 4.87685825, - 51.085055 + 5.70902825, + 51.002085199999996 ] } }, { "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "klimaanvzw", + "uid": "6799245", + "editor": "MapComplete 0.7.3", + "comment": "Adding data with #MapComplete for theme #facadegardens", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-22T13:00:57Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105132121, + "host": "mapcomplete.osm.be", + "theme": "facadegardens", + "imagery": "osm", + "language": "nl", + "theme-creator": "joost schouppe; stla" + }, "geometry": { "type": "Point", "coordinates": [ - -58.457001500000004, - -34.6223351 + 4.4900823, + 51.0255114 ] } }, { "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.7.3", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-22T10:35:50Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105127274, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, "geometry": { "type": "Point", "coordinates": [ - 3.7105365, - 51.07565785 + 5.325668, + 51.0851891 ] } }, { "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.7.3", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-22T08:49:57Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105123795, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "AGIV", + "language": "en", + "theme-creator": "MapComplete" + }, "geometry": { "type": "Point", "coordinates": [ - 4.6050752500000005, - 51.3875527 + 5.324901, + 51.0848623 ] } }, { "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.7.3", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-22T08:45:54Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105123659, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, "geometry": { "type": "Point", "coordinates": [ - 3.7087206, - 51.0746516 + 5.3250432, + 51.0848202 ] } }, { "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "sjokomoeske", + "uid": "10187049", + "editor": "MapComplete 0.7.3", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-22T07:30:29Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105121717, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "nl", + "theme-creator": "Florian Edelmann" + }, "geometry": { "type": "Point", "coordinates": [ - 4.56855905, - 51.301993749999994 + 4.0938607, + 51.0299026 ] } }, { "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.7.3", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-22T03:37:35Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105117154, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "en", + "theme-creator": "Florian Edelmann" + }, "geometry": { "type": "Point", "coordinates": [ - 10.160514800000001, - 59.74390755 + -58.7871767, + -34.6603102 ] } }, { "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.7.3", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-22T03:31:46Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 0.000277146809040082, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105117106, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, "geometry": { "type": "Point", "coordinates": [ - 30.7279276, - 49.7252917 + -58.790958849999996, + -34.658889099999996 ] } }, { "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Nuytinck", + "uid": "3719237", + "editor": "MapComplete 0.7.2n", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-21T20:33:44Z", + "reviewed_features": [], + "create": 3, + "modify": 14, + "delete": 0, + "area": 0.00142192726343003, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105110251, + "host": "pietervdvn.github.io", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, "geometry": { "type": "Point", "coordinates": [ - 4.3900144, - 50.870384 + 3.73894005, + 51.07994775 ] } }, { "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-3944731386", + "osm_id": 3944731386, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3944732004", + "osm_id": 3944732004, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "Jose Luis Infante", + "uid": "126203", + "editor": "MapComplete 0.7.3", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-21T20:27:43Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 3.09856779999914e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105110084, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "imagery": "HDM_HOT", + "language": "ca" + }, "geometry": { "type": "Point", "coordinates": [ - 4.3963069, + 2.2152739500000003, + 41.4346289 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-3944734362", + "osm_id": 3944734362, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3944492737", + "osm_id": 3944492737, + "reasons": [ + 43 + ], + "version": 4, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3944490919", + "osm_id": 3944490919, + "reasons": [ + 43 + ], + "version": 4, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8211364598", + "osm_id": 8211364598, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "Jose Luis Infante", + "uid": "126203", + "editor": "MapComplete 0.7.3", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-21T20:16:28Z", + "reviewed_features": [], + "create": 0, + "modify": 8, + "delete": 0, + "area": 4.92624000003089e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105109714, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "imagery": "HDM_HOT", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2135683999999998, + 41.4375731 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-3944496403", + "osm_id": 3944496403, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3944496385", + "osm_id": 3944496385, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "Jose Luis Infante", + "uid": "126203", + "editor": "MapComplete 0.7.3", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-21T20:04:38Z", + "reviewed_features": [], + "create": 0, + "modify": 9, + "delete": 0, + "area": 5.72343310002256e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105109333, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "imagery": "HDM_HOT", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.21459425, + 41.43908105 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-3944501214", + "osm_id": 3944501214, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "Jose Luis Infante", + "uid": "126203", + "editor": "MapComplete 0.7.3", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-21T19:57:06Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 6.26106000025223e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105109048, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "imagery": "HDM_HOT", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.217211, + 41.44065545 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Kale Bikkel", + "uid": "2570101", + "editor": "MapComplete 0.7.3", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-21T19:53:57Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105108934, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.6734764, + 52.1223227 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Tom Ameye", + "uid": "12652421", + "editor": "MapComplete 0.7.3", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-21T19:07:42Z", + "reviewed_features": [], + "create": 0, + "modify": 9, + "delete": 0, + "area": 0.000387052151149972, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105107153, + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "osm", + "language": "nl", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.37460995, + 50.95609045 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Boekenruilkastje Landskouter", + "uid": "13385171", + "editor": "MapComplete 0.7.2n", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 1, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-21T18:55:13Z", + "reviewed_features": [], + "create": 0, + "modify": 9, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105106698, + "host": "pietervdvn.github.io", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.8008447, + 50.9731441 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "MOTTE123", + "uid": "13382854", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-21T18:31:10Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105105662, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 12.7625809, + 52.183676 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.7.2n", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-21T16:17:37Z", + "reviewed_features": [], + "create": 1, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105100265, + "host": "pietervdvn.github.io", + "theme": "cyclofix", + "imagery": "UrbISOrtho2019", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.374147, + 50.8678918 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.7.3", + "comment": "Adding data with #MapComplete for theme #railwayarg", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-21T13:29:32Z", + "reviewed_features": [], + "create": 0, + "modify": 8, + "delete": 0, + "area": 0.000657937549239699, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105093255, + "host": "mapcomplete.osm.be", + "theme": "railwayarg", + "imagery": "osm", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.62278435, + -34.650230300000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Maarten O", + "uid": "13326535", + "editor": "MapComplete 0.7.3", + "comment": "Adding data with #MapComplete for theme #aed_brugge", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-21T13:18:06Z", + "reviewed_features": [], + "create": 1, + "modify": 5, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105092710, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "HDM_HOT", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2061303, + 51.1871501 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "MOTTE123", + "uid": "13382854", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-21T12:15:01Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105089211, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 12.7625809, + 52.183676 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Nuytinck", + "uid": "3719237", + "editor": "MapComplete 0.7.2n", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-21T10:44:24Z", + "reviewed_features": [], + "create": 2, + "modify": 26, + "delete": 0, + "area": 0.0974995391926399, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105083652, + "host": "pietervdvn.github.io", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.14727235, + 51.07386030000001 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.7.3", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-21T10:36:02Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105083136, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.2843487, + 51.2471323 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.7.3", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-21T10:16:34Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 2.54899399993906e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105081897, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.29516325, + 51.2515511 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Maarten O", + "uid": "13326535", + "editor": "MapComplete 0.7.3", + "comment": "Adding data with #MapComplete for theme #aed_brugge", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-21T07:31:21Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105070958, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "HDM_HOT", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2368134, + 51.1928043 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "wprzyb", + "uid": "1317025", + "editor": "MapComplete 0.7.3", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-21T07:19:52Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105070267, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 17.0424686, + 51.0993964 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Brandoberinspektor Erdmann", + "uid": "13364061", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-21T05:17:26Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105062544, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.8147658, + 53.1617286 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "GOwin", + "uid": "1041828", + "editor": "MapComplete 0.7.2n", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-21T05:03:08Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105061768, + "host": "pietervdvn.github.io", + "theme": "cyclofix", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 121.0171562, + 14.5568088 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.7.3", + "comment": "Adding data with #MapComplete for theme #railwayarg", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-21T00:30:11Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.0000894031305600462, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105054854, + "host": "mapcomplete.osm.be", + "theme": "railwayarg", + "imagery": "osm", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.6494128, + -34.6543642 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.7.3", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-20T18:42:45Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105046037, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.3107749, + 51.1620554 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.7.2n", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-20T18:25:47Z", + "reviewed_features": [], + "create": 0, + "modify": 13, + "delete": 0, + "area": 0.00000118738586999877, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105045474, + "host": "pietervdvn.github.io", + "theme": "trees", + "imagery": "CyclOSM", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.23143845000001, + -39.819421250000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Maarten O", + "uid": "13326535", + "editor": "MapComplete 0.7.3", + "comment": "Adding data with #MapComplete for theme #aed_brugge", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-20T17:14:52Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105042730, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "HDM_HOT", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2077396, + 51.2500368 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Leumas-69", + "uid": "10940041", + "editor": "MapComplete 0.7.3", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-20T15:04:55Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105036795, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7091491, + 51.0691059 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Brandoberinspektor Erdmann", + "uid": "13364061", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-20T14:47:48Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105036015, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.8549909, + 53.1356141 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #railwayarg", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-20T13:32:19Z", + "reviewed_features": [], + "create": 0, + "modify": 7, + "delete": 0, + "area": 0.00173052071721997, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105032317, + "host": "mapcomplete.osm.be", + "theme": "railwayarg", + "imagery": "osm", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.58407975, + -34.645720600000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Brandoberinspektor Erdmann", + "uid": "13364061", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-20T11:43:11Z", + "reviewed_features": [], + "create": 0, + "modify": 13, + "delete": 0, + "area": 0.000404082137159841, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105025981, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.853645799999999, + 53.129142200000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Maarten O", + "uid": "13326535", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #aed_brugge", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-20T10:54:04Z", + "reviewed_features": [], + "create": 3, + "modify": 25, + "delete": 0, + "area": 0.000746127454099904, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105022554, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "HDM_HOT", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.21228935, + 51.2381667 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-20T10:22:09Z", + "reviewed_features": [], + "create": 0, + "modify": 6, + "delete": 0, + "area": 0.00127313674155003, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105020219, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.255092149999999, + 50.74929295 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Brandoberinspektor Erdmann", + "uid": "13364061", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-20T09:08:15Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105014411, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "EsriWorldImagery", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.7963319, + 53.1290517 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #railwayarg", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-20T04:56:01Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 1.94947500030528e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104995459, + "host": "mapcomplete.osm.be", + "theme": "railwayarg", + "imagery": "osm", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.72981245, + -34.66411025 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #railwayarg", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-20T00:16:08Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104988367, + "host": "mapcomplete.osm.be", + "theme": "railwayarg", + "imagery": "osm", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.5969843, + -34.6450966 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "philippec", + "uid": "76884", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-19T19:31:53Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104981745, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4833377, + 51.0134216 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Nuytinck", + "uid": "3719237", + "editor": "MapComplete 0.7.2d", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-19T19:09:56Z", + "reviewed_features": [], + "create": 2, + "modify": 1, + "delete": 0, + "area": 0.000241209448280125, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104980984, + "host": "pietervdvn.github.io", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.71845875, + 51.0784364 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.7.2d", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-19T18:40:47Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 1.95786000017248e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104979847, + "host": "pietervdvn.github.io", + "theme": "trees", + "imagery": "CyclOSM", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.23125875, + -39.8190834 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Huglu96", + "uid": "722577", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-19T17:52:54Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104978018, + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "osm", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.4079707, + 52.5020373 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-3946997519", + "osm_id": 3946997519, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "Jose Luis Infante", + "uid": "126203", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-19T17:40:50Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 5.46839999936015e-10, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104977477, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "imagery": "HDM_HOT", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2240514, + 41.4417342 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-3947008063", + "osm_id": 3947008063, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3947008119", + "osm_id": 3947008119, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "Jose Luis Infante", + "uid": "126203", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-19T17:31:06Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 3.48432000015402e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104977097, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "imagery": "HDM_HOT", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2225965, + 41.4440076 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-19T15:33:43Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104972004, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.1138035, + 50.7955749 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #railwayarg", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-19T13:18:41Z", + "reviewed_features": [], + "create": 0, + "modify": 9, + "delete": 0, + "area": 0.00258745148634043, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104964940, + "host": "mapcomplete.osm.be", + "theme": "railwayarg", + "imagery": "osm", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.662437499999996, + -34.65480575 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thibaultmol", + "uid": "2916921", + "editor": "MapComplete 0.7.2n", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-19T12:56:19Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.00000113060320000243, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104963609, + "host": "pietervdvn.github.io", + "theme": "shops", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3319900000000002, + 50.9880195 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Maarten O", + "uid": "13326535", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-19T12:47:41Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104963056, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2255468, + 51.2076194 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "nireee", + "uid": "13366187", + "editor": "MapComplete 0.2.3a", + "comment": "Adding data with #MapComplete for theme #vegan", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-19T11:13:29Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104955721, + "theme": "vegan", + "language": "de", + "theme-creator": "Christian Neumann " + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.6986102, + 50.1287726 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Brandoberinspektor Erdmann", + "uid": "13364061", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-19T08:16:05Z", + "reviewed_features": [], + "create": 16, + "modify": 6, + "delete": 0, + "area": 0.00465482597519971, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104940762, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.8452518, + 53.13347455 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.7.2d", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-18T20:01:02Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104912323, + "host": "pietervdvn.github.io", + "theme": "trees", + "imagery": "CyclOSM", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.2320207, + -39.8183833 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.7.2d", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-18T16:52:17Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 5.55810000093581e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104904505, + "host": "pietervdvn.github.io", + "theme": "trees", + "imagery": "CyclOSM", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.2312281, + -39.81929845 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Stinus_Clasius", + "uid": "1086503", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #aed_brugge", + "comments_count": 1, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-18T14:29:12Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.0000241303464000051, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104897806, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "HDM_HOT", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.7446938, + 51.1793416 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #railwayarg", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-18T13:14:16Z", + "reviewed_features": [], + "create": 1, + "modify": 25, + "delete": 0, + "area": 0.00663776668980098, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104894007, + "host": "mapcomplete.osm.be", + "theme": "railwayarg", + "imagery": "osm", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.6431496, + -34.65222145 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Maarten O", + "uid": "13326535", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #aed_brugge", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-18T13:11:13Z", + "reviewed_features": [], + "create": 2, + "modify": 18, + "delete": 0, + "area": 0.000243898604200056, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104893843, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "HDM_HOT", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2519605, + 51.1968298 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-18T11:49:42Z", + "reviewed_features": [], + "create": 2, + "modify": 3, + "delete": 0, + "area": 3.50556000039021e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104888917, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "AGIV", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7315988, + 50.87381135 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-18T11:46:18Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104888664, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7344131, + 50.8700529 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Nuytinck", + "uid": "3719237", + "editor": "MapComplete 0.7.2d", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-18T08:26:34Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104873407, + "host": "pietervdvn.github.io", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.1136635, + 51.0178601 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Wim L", + "uid": "223681", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-18T04:58:21Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104859305, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -122.37015615, + 47.6948642 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #railwayarg", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-18T00:28:45Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104852510, + "host": "mapcomplete.osm.be", + "theme": "railwayarg", + "imagery": "osm", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.7267282, + -34.6645689 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "JoeG", + "uid": "73276", + "editor": "MapComplete 0.7.2d", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-17T15:25:12Z", + "reviewed_features": [], + "create": 3, + "modify": 3, + "delete": 0, + "area": 0.00000608292612006287, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104834837, + "host": "pietervdvn.github.io", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 149.06017185000002, + -35.231631 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.7.2i", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-17T15:24:38Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.00000172669751999869, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104834804, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2453575, + 50.731274799999994 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Kraan46", + "uid": "11628862", + "editor": "MapComplete 0.7.2i", + "comment": "Adding data with #MapComplete for theme #fietsstraten", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-17T15:00:06Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 4.29600000034974e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104833676, + "host": "mapcomplete.osm.be", + "theme": "fietsstraten", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4747274, + 51.0270199 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.7.2h", + "comment": "Adding data with #MapComplete for theme #aed_brugge", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-17T14:35:26Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104832489, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "HDM_HOT", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2521088, + 50.7411765 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.7.2f", + "comment": "Adding data with #MapComplete for theme #railwayarg", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-17T13:09:28Z", + "reviewed_features": [], + "create": 0, + "modify": 26, + "delete": 0, + "area": 0.00455061565647063, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104828217, + "host": "mapcomplete.osm.be", + "theme": "railwayarg", + "imagery": "osm", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.65658295, + -34.65332685 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "christophemaesmechelen", + "uid": "2961776", + "editor": "MapComplete 0.7.2f", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-17T12:17:10Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104825060, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4981589, + 51.0255454 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "LySioS", + "uid": "11579673", + "editor": "MapComplete 0.7.2f", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-17T12:09:24Z", + "reviewed_features": [], + "create": 2, + "modify": 1, + "delete": 0, + "area": 3.07530000022849e-10, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104824521, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "imagery": "HDM_HOT", + "language": "en", + "theme-creator": "Erwin Olario" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.93846925, + 42.68486875 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.7.2d", + "comment": "Adding data with #MapComplete for theme #fietsstraten", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-17T10:23:21Z", + "reviewed_features": [], + "create": 0, + "modify": 8, + "delete": 0, + "area": 0.0000125047037699949, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104817521, + "host": "pietervdvn.github.io", + "theme": "fietsstraten", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.02077345, + 50.83733555 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Maarten O", + "uid": "13326535", + "editor": "MapComplete 0.7.2f", + "comment": "Adding data with #MapComplete for theme #aed_brugge", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-17T09:23:55Z", + "reviewed_features": [], + "create": 2, + "modify": 20, + "delete": 0, + "area": 4.47345430003361e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104813054, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "HDM_HOT", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2251739500000003, + 51.20791935 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.7.2f", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-17T08:16:53Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104808321, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2335913, + 50.7345064 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Trissegers", + "uid": "13347134", + "editor": "MapComplete 0.7.2f", + "comment": "Adding data with #MapComplete for theme #facadegardens", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-17T07:21:40Z", + "reviewed_features": [], + "create": 1, + "modify": 6, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104804552, + "host": "mapcomplete.osm.be", + "theme": "facadegardens", + "imagery": "osm", + "language": "nl", + "theme-creator": "joost schouppe; stla" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.468469, + 51.0310196 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "GOwin", + "uid": "1041828", + "editor": "MapComplete 0.7.2b", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-17T02:25:46Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104790533, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "imagery": "Mapbox", + "language": "en", + "theme-creator": "Erwin Olario" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 121.0071355, + 14.7190524 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "GOwin", + "uid": "1041828", + "editor": "MapComplete 0.7.2b", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-17T01:06:26Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104789456, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "imagery": "Mapbox", + "language": "en", + "theme-creator": "Erwin Olario" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 120.9940356, + 14.7303498 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.7.2b", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-16T18:00:28Z", + "reviewed_features": [], + "create": 2, + "modify": 2, + "delete": 0, + "area": 0.00000172669751999869, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104779755, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "imagery": "AGIV10cm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2453575, + 50.731274799999994 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "sjokomoeske", + "uid": "10187049", + "editor": "MapComplete 0.7.2b", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-16T14:25:14Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104771433, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.1042263, + 51.0214067 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "velosophe", + "uid": "477861", + "editor": "MapComplete 0.7.2b", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-16T14:23:32Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104771353, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.5249457, + 50.7767051 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "sjokomoeske", + "uid": "10187049", + "editor": "MapComplete 0.7.2b", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 1, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-16T14:23:12Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104771328, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.1001049, + 51.0165051 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "velosophe", + "uid": "477861", + "editor": "MapComplete 0.7.2b", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-16T13:59:28Z", + "reviewed_features": [], + "create": 2, + "modify": 7, + "delete": 0, + "area": 4.81260000011153e-9, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104770413, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.5251066, + 50.7767484 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Koen Rijnsent", + "uid": "4569696", + "editor": "MapComplete 0.7.2b", + "comment": "Adding data with #MapComplete for theme #artworks", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-16T12:43:16Z", + "reviewed_features": [], + "create": 2, + "modify": 3, + "delete": 0, + "area": 0.00000517734557999552, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104767319, + "host": "mapcomplete.osm.be", + "theme": "artworks", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.11835755, + 52.096576 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.7.2b", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-16T12:04:44Z", + "reviewed_features": [], + "create": 1, + "modify": 4, + "delete": 0, + "area": 0.0000311507510400063, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104765820, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7363475, + 50.8773984 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "WinstonSmith", + "uid": "36030", + "editor": "MapComplete 0.7.2b", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-16T12:03:32Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104765784, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.6188464, + 45.4487601 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.7.2b", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-16T12:01:02Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104765698, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7415926, + 50.8787892 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.7.2b", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-16T11:52:57Z", + "reviewed_features": [], + "create": 3, + "modify": 6, + "delete": 0, + "area": 0.0000334736836599998, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104765380, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.735982, + 50.87727125000001 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.7.2b", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-16T11:44:56Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104765110, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7323153, 50.8748135 ] } }, { "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 10.082823699999999, - 59.75259145 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 12.1027225, - 49.6495494 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 13.03530775, - 47.81089195 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 121.0605868, - 14.5882173 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.2957055, - 52.7059387 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 152.9884387, - -27.2001138 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.56591235, - 53.00447805 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.67738615, - 45.448324799999995 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -81.5233446, - 41.1100443 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.3796182, - 50.8694293 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 13.0696051, - 47.77349665 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.3879984, - 52.1348582 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 13.4724542, - 51.1629091 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 13.78791155, - 52.83726335 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 11.6172764, - 48.6083445 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 11.629159099999999, - 48.59670575 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -0.48985795, - 38.3767919 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 7.6247168, - 43.8497082 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -58.65829945, - -34.6448309 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 84.9546981, - 56.4691525 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -122.371634, - 47.6802721 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 13.7239999, - 45.3812366 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -99.13678404999999, - 19.578663749999997 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -99.1407799, - 19.4183425 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 44.73733715, - 48.79949255 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.2797471, - 51.0601812 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 44.7508386, - 48.781368099999995 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.2786956, - 51.0602305 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 13.2362403, - 52.7961513 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2162053999999998, - 41.5381835 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 13.69530125, - 45.57343765 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 44.750645750000004, - 48.78685265 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 44.74606315, - 48.78382365 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 13.7323385, - 45.6096481 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 44.74761135, - 48.78445725 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 13.7323039, - 45.609657 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.3058445499999998, - 51.0178277 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 44.7494316, - 48.7860225 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.4503636, - 51.0929136 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.4483777, - 51.08788645 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.46107525, - 51.0952097 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -70.665468, - -33.4572197 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 38.660928, - 6.0965507500000005 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -70.5936089, - -33.5332277 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 14.6130686, - 45.8765353 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.1977097, - 51.2005778 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.2430664499999997, - 51.206751100000005 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.2321896, - 51.2045129 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.5205093, - 53.2363705 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 9.6676468, - 47.4080594 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.239645, - 51.223322 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.7394553, - 51.0539251 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -70.60341855, - -33.423708399999995 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -70.79261, - -34.2373596 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -71.366001, - -34.6404102 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -74.097054, - 40.6153451 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 8.30360815, - 46.90475015 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.3845609, - 52.1279133 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 13.9531973, - 46.2731418 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 13.9531973, - 46.2731418 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -120.6753014, - 35.2439797 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -122.2583896, - 37.8367212 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -78.6730476, - 35.779029 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.6900597, - 44.3128481 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -105.084294, - 40.453581549999996 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 14.1084606, - 46.3684662 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 14.1096324, - 46.3667337 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 114.11849459999999, - 22.36899025 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -155.064008, - 19.69584475 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.8301813, - 50.88715015 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.1947999, - 50.63098505 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.288795, - 51.3038705 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 13.6421499, - 46.3340024 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.0795702, - 51.4584493 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.5903299, - 52.2821555 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.5890925, - 52.2812482 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 8.9907015, - 48.4982609 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 8.9913257, - 48.49856345 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 8.99118215, - 48.49843975 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 8.9636555, - 50.3475965 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 8.99255035, - 48.498836749999995 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.5897075, - 50.7949768 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.5777395, - 50.803994599999996 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.6696884, - 51.5499412 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 1.31732235, - 43.588229 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 13.39957595, - 52.1619224 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.49047405, - 51.0951572 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 12.41885495, - 46.561138299999996 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.6658474500000002, - 51.54911385 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -58.61053645, - -34.64744705 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.4901089, - 51.094868 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.6138153, - 51.5031764 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.610657, - 51.4991967 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.3632418, - 50.83772005 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 12.4189789, - 46.5611344 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 114.1910599, - 22.307932100000002 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.4888558, - 51.0936721 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.6024991, - 51.4638086 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.60364305, - 51.4641186 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 114.18166635, - 22.2805317 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.3720879, - 51.3659288 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.6025419999999997, - 51.46369665 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -58.68451145, - -34.656905 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.5761544, - 51.43289025 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 114.19077275, - 22.307541999999998 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.3765176, - 51.3491502 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.5321138, - 53.2403563 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 114.1731428, - 22.2804844 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -122.37193415, - 47.68268485 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 14.7164477, - 51.6949225 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -7.847348200000001, - 37.023658499999996 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -58.5959485, - -34.6446457 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.56047135, - 53.2206259 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.2031691, - 51.2042501 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 13.4231534, - 52.4804849 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -70.688298, - -32.8254292 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 24.9122179, - 60.1895 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 11.2562975, - 44.5029373 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.5665994, - 53.01434795 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.5686684500000005, - 53.019527100000005 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 8.4072711, - 49.007261 - ] - } - }, - null, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 8.4072711, - 49.007261 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 12.1334147, - 54.0869876 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -58.7202242, - -34.6657032 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.61122855, - 52.3022347 - ] - } - }, - null, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.6020383, - 52.2972284 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.61146525, - 52.30648665 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.7404478, - 51.0363849 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.597492750000001, - 52.2989521 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -58.6667992, - -34.653112300000004 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 9.367052000000001, - 47.725641350000004 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 9.3911404, - 47.720274 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 9.3738234, - 47.723836250000005 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 9.3696436, - 47.72581625 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.6275044, - 52.3032591 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.13762665, - 51.141586849999996 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.222659, - 51.209238 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.5245171, - 52.9929022 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.222659, - 51.209238 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.29927, - 50.6150846 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.73192415, - 51.05730045 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.0479108, - 50.679290449999996 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 14.4050047, - 50.0729858 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.7444672, - 51.03556035 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.2321506, - 51.2093851 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.1564577, - 51.1262115 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.0930744, - 51.1192647 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 13.238752999999999, - 52.77832035 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.73583105, - 51.037486200000004 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.2705435, - 50.8277022 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.5571696, - 49.6103276 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -9.7881961, - 52.2435555 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.2027721, - 51.1990855 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.2034172, - 51.202141 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.2618853, - 50.7487861 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.2677808, - 50.7512502 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -4.4273669, - 41.7288688 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.2677808, - 50.7512502 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.60086675, - 52.29308145 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.6023348, - 52.2921324 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.2027721, - 51.1990855 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.6167549999999995, - 52.299521299999995 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 13.80807595, - 51.8142208 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.2354994, - 51.2104591 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.6249436500000005, - 52.30480665 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.6075547500000003, - 50.855526850000004 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.6022241, - 52.293237250000004 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.602426550000001, - 52.29154665 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.72173045, - 51.1518477 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.721552, - 51.1500222 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.6244081999999995, - 52.304216499999995 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.62427145, - 52.30416055 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -58.5981891, - -34.6451312 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.7200416, - 51.1503089 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.7200701, - 51.1503336 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.2451053, - 49.6538075 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.1805232, - 50.8088384 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.9757455, - 50.5237343 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.3898126, - 51.0926497 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 13.7047089, - 51.04757525 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.739756, - 51.0363729 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.602050650000001, - 52.2911638 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.59990555, - 52.2954017 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -58.7295339, - -34.66431995 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.09973265, - 50.493094 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.0993594, - 50.4930008 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.0997725, - 50.4935417 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.0994042, - 50.49339665 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.0994425, - 50.4933694 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -58.6757754, - -34.6524021 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.10041405, - 50.493437 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.7512498, - 51.0415541 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -71.3707655, - -34.6402119 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 13.5769486, - 51.9740711 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -70.602631, - -33.4140376 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.7092295, - 51.0253951 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.3591232, - 50.85652185 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 13.77708075, - 51.066343200000006 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.9260321, - 51.1356921 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.45765845, - 51.20943435 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 11.3588331, - 44.544683 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.607712599999999, - 52.292219900000006 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.7405763, - 51.0356476 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.6019223, - 52.2947021 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.6145472, - 52.3012908 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.4189665, - 51.2179647 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.7405658, - 51.0356252 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.60307605, - 52.2960336 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.59786555, - 52.29448035 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -122.3833071, - 47.6779674 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -58.587044899999995, - -34.643569850000006 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.1243227, - 50.4462767 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.59977005, - 52.295202599999996 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.59847985, - 52.2945455 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -58.614631450000005, - -34.64916825 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.2482383, - 51.2085151 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.2965068, - 50.865763 - ] - } - }, - null, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 114.18111, - 22.2797 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 114.1815168, - 22.2796347 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.3754393, - 50.8682106 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -99.31467995, - 38.8908991 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.599682850000001, - 52.28829195 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.60182, - 52.29399895 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 14.43700075, - 51.814196499999994 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 114.1773298, - 22.280059549999997 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 9.2373088, - 45.4181022 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 14.5123467, - 51.8756057 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.2366431, - 51.2111465 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 14.54204815, - 51.87533655 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 14.5410593, - 51.873547 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -3.7714675, - 43.4689747 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 9.22252995, - 45.49494115 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 13.7667274, - 53.130365350000005 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 14.5438787, - 51.886229400000005 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 11.336202499999999, - 44.495406 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 11.248914, - 48.1781821 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 13.83795215, - 52.8415216 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.60335595, - 52.29326665 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.6065284, - 52.2961897 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.8187253000000005, - 51.0790189 - ] - } - }, - null, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.9359699, - 49.9109289 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.6066477, - 52.2962585 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.6192972999999995, - 52.29332615 - ] - } - }, - null, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.4196289, - 51.1951284 - ] - } - }, - null, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.18857285, - 50.97444055 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2300879, - 41.4387478 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2276851, - 41.440543250000005 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 13.813769350000001, - 52.838228799999996 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.6997292, - 51.0470485 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 5.0490357, - 51.1204316 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -58.6575042, - -34.6492414 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.13693735, - 50.70193655 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.7881224, - 50.8684567 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.7412524, - 51.0369889 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -72.3982218, - -36.3902178 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.1591558500000003, - 51.2615779 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.0015773, - 51.2654787 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2268138, - 41.441957849999994 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 8.7192157, - 47.2388538 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.7388545, - 51.0367951 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -58.65075335, - -34.652568349999996 - ] - } - }, - null, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -1.4931938, - 53.8088346 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.3861078, - 43.8555804 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.4177485, - 43.8529857 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 13.71803435, - 51.0309619 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.3920824, - 50.873837 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.53420775, - 51.20706355 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -122.34281245, - 47.6102151 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -7.663269, - 37.1183458 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.73584125, - 51.03691565 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -58.7597403, - -34.6588894 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -73.2506443, - -39.8106972 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.64607215, - 51.1142841 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.5104322, - 43.8947941 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.2243449, - 51.2102969 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 13.70479125, - 51.04415735 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.3430155, - 50.865627599999996 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 13.70473285, - 51.046819 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 13.7041942, - 51.04957605 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 13.7004068, - 51.050445350000004 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 13.696893150000001, - 51.05259205 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 4.42825925, - 50.926792750000004 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.7411394500000004, - 51.038006249999995 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - -71.3707589, - -34.6402759 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.4443896, - 51.1126056 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 13.69580345, - 51.0544985 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 11.32306545, - 44.8543254 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 2.2274185500000003, - 41.439082049999996 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 6.572461499999999, - 53.0218033 - ] - } - }, - { - "type": "Feature", - "geometry": { - "type": "Point", - "coordinates": [ - 3.7412927, - 51.0361053 - ] - } - }, - { - "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Koen Rijnsent", + "uid": "4569696", + "editor": "MapComplete 0.7.2b", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-16T11:32:17Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104764684, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.1237641, + 52.0848937 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Jordi L", + "uid": "3016696", + "editor": "MapComplete 0.7.2a", + "comment": "Adding data with #MapComplete for theme #arbres_llefia", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-16T09:54:02Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 2.99207999992294e-9, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104761467, + "host": "pietervdvn.github.io", + "theme": "arbres_llefia", + "imagery": "HDM_HOT", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.221376, + 41.4389884 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Emnetis", + "uid": "3904333", + "editor": "MapComplete 0.7.2b", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-16T05:12:38Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104754445, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 113.4056023, + 23.0781105 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "lvgx", + "uid": "484826", + "editor": "MapComplete 0.7.2b", + "comment": "Adding data with #MapComplete for theme #sport_pitches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-16T01:09:28Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000126935520000077, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104752561, + "host": "mapcomplete.osm.be", + "theme": "sport_pitches", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.45296565, + 45.445305000000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.7.2a", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-15T23:04:31Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 5.04171999947101e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104751316, + "host": "pietervdvn.github.io", + "theme": "cyclofix", + "imagery": "EsriWorldImagery", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.221924, + -39.813445650000006 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.7.2a", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-15T22:26:25Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104750812, + "host": "pietervdvn.github.io", + "theme": "aed", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.765833, + 50.2997654 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.7.2a", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-15T21:58:33Z", + "reviewed_features": [], + "create": 1, + "modify": 5, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104750300, + "host": "pietervdvn.github.io", + "theme": "cyclofix", + "imagery": "AGIV10cm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.0361083, + 51.2711004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Nuytinck", + "uid": "3719237", + "editor": "MapComplete 0.7.2a", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-15T17:55:35Z", + "reviewed_features": [], + "create": 2, + "modify": 6, + "delete": 0, + "area": 0.000434144641600044, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104744199, + "host": "pietervdvn.github.io", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.8774373, + 50.9694044 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "art_m_wb", + "uid": "12876924", + "editor": "MapComplete 0.7.2b", + "comment": "Adding data with #MapComplete for theme #climbing", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-15T13:20:09Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 2.21924580000104e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104733470, + "host": "mapcomplete.osm.be", + "theme": "climbing", + "imagery": "osm", + "language": "en", + "theme-creator": "Christian Neumann " + }, + "geometry": { + "type": "Point", + "coordinates": [ + 19.52303335, + 50.5240756 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Jose Luis Infante", + "uid": "126203", + "editor": "MapComplete 0.7.2b", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-15T10:46:52Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104726944, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "imagery": "HDM_HOT", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2174305, + 41.4385019 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.7.2b", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 1, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-15T10:39:17Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104726636, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2203555, + 51.20661 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.7.2b", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 1, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-15T10:30:53Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104726156, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.235082, + 51.2096004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Jose Luis Infante", + "uid": "126203", + "editor": "MapComplete 0.7.2b", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-15T10:28:22Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 2.32703099985006e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104726005, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "imagery": "HDM_HOT", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2150213499999998, + 41.438468150000006 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Jose Luis Infante", + "uid": "126203", + "editor": "MapComplete 0.7.2b", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-15T10:22:38Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104725636, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "imagery": "HDM_HOT", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2139703, + 41.4361383 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Nuytinck", + "uid": "3719237", + "editor": "MapComplete 0.7.2a", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-15T09:32:14Z", + "reviewed_features": [], + "create": 2, + "modify": 8, + "delete": 0, + "area": 0.128066535526462, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104723348, + "host": "pietervdvn.github.io", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.5190169000000004, + 51.02368035000001 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Jordi L", + "uid": "3016696", + "editor": "MapComplete 0.7.2a", + "comment": "Adding data with #MapComplete for theme #arbres_llefia", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-15T09:25:43Z", + "reviewed_features": [], + "create": 0, + "modify": 15, + "delete": 0, + "area": 0.00000801754085001187, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104723073, + "host": "pietervdvn.github.io", + "theme": "arbres_llefia", + "imagery": "HDM_HOT", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2173656499999996, + 41.43833875 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Jose Luis Infante", + "uid": "126203", + "editor": "MapComplete 0.7.2b", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-15T08:51:10Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 2.74638000007436e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104721756, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "imagery": "HDM_HOT", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2172017, + 41.434478150000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Michael Nixt", + "uid": "6641970", + "editor": "MapComplete 0.7.2b", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-15T03:40:49Z", + "reviewed_features": [], + "create": 3, + "modify": 31, + "delete": 0, + "area": 0.0000792762710000282, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104714129, + "host": "mapcomplete.osm.be", + "theme": "shops", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -74.1442248, + 40.06020855 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "GOwin", + "uid": "1041828", + "editor": "MapComplete 0.7.0c", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-15T01:43:01Z", + "reviewed_features": [], + "create": 1, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104713106, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "Mapbox", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 121.0018167, + 14.572307 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Nuytinck", + "uid": "3719237", + "editor": "MapComplete 0.7.2a", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-14T19:30:45Z", + "reviewed_features": [], + "create": 5, + "modify": 13, + "delete": 0, + "area": 0.00108082307840002, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104704762, + "host": "pietervdvn.github.io", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7704386, + 51.086784699999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.7.2b", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/seppesantens/MapComplete-Themes/main/cyclenodenetworks/cyclenodenetworks.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-14T19:20:14Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 4.61390579997499e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104704361, + "host": "mapcomplete.osm.be", + "theme": "gh://seppesantens/mapcomplete-themes/main/cyclenodenetworks/cyclenodenetworks.json", + "imagery": "osm", + "language": "en", + "theme-creator": "L'imaginaire" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3510853000000003, + 51.12035995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.7.2b", + "comment": "Adding data with #MapComplete for theme #maps", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-14T19:16:42Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104704249, + "host": "mapcomplete.osm.be", + "theme": "maps", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2917034, + 51.1194612 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.7.2b", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-14T19:15:38Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 2.71999999777611e-11, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104704200, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2916979, + 51.1194475 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Jose Luis Infante", + "uid": "126203", + "editor": "MapComplete 0.7.2b", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-14T18:35:48Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 2.62082570001013e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104702488, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "imagery": "HDM_HOT", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2163805500000002, + 41.43967845 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.7.2a", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-14T18:17:27Z", + "reviewed_features": [], + "create": 2, + "modify": 4, + "delete": 0, + "area": 0.533609039953077, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104701749, + "host": "pietervdvn.github.io", + "theme": "cyclofix", + "imagery": "AGIV10cm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.69846715, + 51.071773699999994 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.7.2b", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-14T17:38:30Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104700044, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2129082, + 51.2048633 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "pirgrr", + "uid": "3121125", + "editor": "MapComplete 0.7.2a", + "comment": "Adding data with #MapComplete for theme #ghostbikes", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-14T16:00:50Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104695241, + "host": "pietervdvn.github.io", + "theme": "ghostbikes", + "imagery": "CartoDB.Positron", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.5928277, + 44.8376667 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "pirgrr", + "uid": "3121125", + "editor": "MapComplete 0.7.2b", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-14T15:52:45Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104694873, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.5864462, + 44.8556083 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.7.2b", + "comment": "Adding data with #MapComplete for theme #railwayarg", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-14T13:04:08Z", + "reviewed_features": [], + "create": 0, + "modify": 63, + "delete": 0, + "area": 0.00681024527324964, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104686398, + "host": "mapcomplete.osm.be", + "theme": "railwayarg", + "imagery": "osm", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.65663195, + -34.65148765 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "FennecusZerda", + "uid": "665677", + "editor": "MapComplete 0.7.2b", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-14T12:28:21Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 8.09062080004156e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104684651, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "imagery": "HDM_HOT", + "language": "en", + "theme-creator": "Erwin Olario" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 10.204661300000001, + 59.7365509 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Koen Rijnsent", + "uid": "4569696", + "editor": "MapComplete 0.7.2b", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-14T12:11:18Z", + "reviewed_features": [], + "create": 3, + "modify": 6, + "delete": 0, + "area": 0.00000395090358000759, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104683745, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.11833765, + 52.1010281 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "familiapicarol", + "uid": "593367", + "editor": "MapComplete 0.7.2b", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-14T12:03:25Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104683353, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "osm", + "language": "ca", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.823591, + 41.7275416 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Koen Rijnsent", + "uid": "4569696", + "editor": "MapComplete 0.7.2b", + "comment": "Adding data with #MapComplete for theme #artworks", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-14T09:52:26Z", + "reviewed_features": [], + "create": 2, + "modify": 4, + "delete": 0, + "area": 0.0000426296273000131, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104677661, + "host": "mapcomplete.osm.be", + "theme": "artworks", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.11099965, + 52.1085511 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "GOwin", + "uid": "1041828", + "editor": "MapComplete 0.7.2b", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-14T09:27:40Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104676697, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "imagery": "Mapbox", + "language": "en", + "theme-creator": "Erwin Olario" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 121.0345202, + 14.5668445 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.7.2b", + "comment": "Adding data with #MapComplete for theme #railwayarg", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-14T01:56:38Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 2.72580000012572e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104664124, + "host": "mapcomplete.osm.be", + "theme": "railwayarg", + "imagery": "EsriWorldImagery", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.7530451, + -34.6703418 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ivan 33", + "uid": "9186359", + "editor": "MapComplete 0.7.2a", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-13T20:16:26Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 4.13509699996356e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104657616, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "imagery": "HDM_HOT", + "language": "en", + "theme-creator": "Erwin Olario" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 30.25208455, + 53.73048105 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "FennecusZerda", + "uid": "665677", + "editor": "MapComplete 0.7.2a", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-13T19:58:58Z", + "reviewed_features": [], + "create": 0, + "modify": 8, + "delete": 0, + "area": 0.00170796197175018, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104657063, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 10.24717815, + 59.75303675 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "1212121200", + "uid": "12176526", + "editor": "MapComplete 0.7.2a", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-13T18:34:22Z", + "reviewed_features": [], + "create": 6, + "modify": 0, + "delete": 0, + "area": 0.00000230821854000452, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104654185, + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "LV_ORTOFOTO_C6", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 24.01391385, + 56.945104400000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "JannikK", + "uid": "10114379", + "editor": "MapComplete 0.7.2a", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-13T18:20:20Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 7.05435300006088e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104653601, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.90920725, + 53.66523165 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.7.2a", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/seppesantens/MapComplete-Themes/main/cyclenodenetworks/cyclenodenetworks.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-13T18:05:01Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.000834014677900043, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104652989, + "host": "mapcomplete.osm.be", + "theme": "gh://seppesantens/mapcomplete-themes/main/cyclenodenetworks/cyclenodenetworks.json", + "imagery": "osm", + "language": "en", + "theme-creator": "L'imaginaire" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.4227627500000004, + 51.1023685 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Felix Edelmann", + "uid": "2274641", + "editor": "MapComplete 0.7.2a", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-13T17:53:54Z", + "reviewed_features": [], + "create": 2, + "modify": 4, + "delete": 0, + "area": 0.000050030318969919, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104652456, + "host": "pietervdvn.github.io", + "theme": "benches", + "imagery": "osm", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.776667849999999, + 48.10687955 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "JannikK", + "uid": "10114379", + "editor": "MapComplete 0.7.2a", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-13T16:25:41Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 1.49519699999579e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104648605, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.90998645, + 53.66403065 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dkf2010", + "uid": "685599", + "editor": "MapComplete 0.7.2a", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-13T16:19:05Z", + "reviewed_features": [], + "create": 0, + "modify": 13, + "delete": 0, + "area": 1.89144599997866e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104648304, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.89911965, + 53.608688 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.7.2a", + "comment": "Adding data with #MapComplete for theme #cyclenodenetworks", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-13T15:36:50Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 3.89499619994156e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104646395, + "host": "mapcomplete.osm.be", + "theme": "cyclenodenetworks", + "imagery": "osm", + "language": "en", + "theme-creator": "Seppe Santens" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.4458708500000004, + 51.092950099999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Felix Edelmann", + "uid": "2274641", + "editor": "MapComplete 0.7.2a", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-13T15:16:30Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104645437, + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "osm", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.7705245, + 48.1048285 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.7.2a", + "comment": "Adding data with #MapComplete for theme #railwayarg", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-13T13:18:31Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 3.05049200017463e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104639757, + "host": "mapcomplete.osm.be", + "theme": "railwayarg", + "imagery": "osm", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.7922004, + -34.64985275 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "FennecusZerda", + "uid": "665677", + "editor": "MapComplete 0.7.2a", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-13T12:28:18Z", + "reviewed_features": [], + "create": 0, + "modify": 23, + "delete": 0, + "area": 0.0592368489595782, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104637130, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.92746095, + 59.7159054 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "coalins", + "uid": "13318098", + "editor": "MapComplete 0.7.2", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-13T10:12:54Z", + "reviewed_features": [], + "create": 2, + "modify": 5, + "delete": 0, + "area": 2.60725704031522, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104627844, + "host": "pietervdvn.github.io", + "theme": "aed", + "imagery": "osm", + "language": "fr", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.6307239000000004, + 44.17029475 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.7.2", + "comment": "Adding data with #MapComplete for theme #railwayarg", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-13T01:46:23Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 2.65305000027636e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104602765, + "host": "mapcomplete.osm.be", + "theme": "railwayarg", + "imagery": "osm", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.73429595, + -34.66356725 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.7.2", + "comment": "Adding data with #MapComplete for theme #railwayarg", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-13T00:03:08Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104601380, + "host": "mapcomplete.osm.be", + "theme": "railwayarg", + "imagery": "EsriWorldImagery", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.5657576, + -34.6405413 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "lalolan", + "uid": "11113526", + "editor": "MapComplete 0.7.2", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-12T23:16:28Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104600714, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "imagery": "HDM_HOT", + "language": "en", + "theme-creator": "Erwin Olario" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -8.6113777, + 41.1460496 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "lalolan", + "uid": "11113526", + "editor": "MapComplete 0.7.2", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-12T23:14:15Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 0.0000157583756900196, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104600674, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -8.612524350000001, + 41.14066355 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.7.2", + "comment": "Adding data with #MapComplete for theme #sport_pitches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-12T20:16:51Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000159178613999576, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104596179, + "host": "mapcomplete.osm.be", + "theme": "sport_pitches", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.43869195, + 51.0801872 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.7.2", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-12T18:55:25Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104593203, + "host": "pietervdvn.github.io", + "theme": "trees", + "imagery": "CyclOSM", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -71.2708725, + -32.983775 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.7.2", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-12T18:41:09Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104592637, + "host": "pietervdvn.github.io", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7019879, + 51.0584335 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "hke2912", + "uid": "5154951", + "editor": "MapComplete 0.7.2", + "comment": "Adding data with #MapComplete for theme #infoboard", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-12T18:29:18Z", + "reviewed_features": [], + "create": 0, + "modify": 60, + "delete": 0, + "area": 0.00655563572640037, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104592091, + "host": "pietervdvn.github.io", + "theme": "infoboard", + "imagery": "osm", + "language": "de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.0380195, + 51.457571099999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.7.1-rc1", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-12T17:01:27Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104586934, + "host": "pietervdvn.github.io", + "theme": "trees", + "imagery": "CyclOSM", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -71.2706328, + -32.9839877 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Lizinvt", + "uid": "13164979", + "editor": "MapComplete 0.7.1-rc1", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-12T15:18:12Z", + "reviewed_features": [], + "create": 7, + "modify": 10, + "delete": 0, + "area": 0.00000384245136000285, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104582639, + "host": "pietervdvn.github.io", + "theme": "benches", + "imagery": "osm", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.767740100000001, + 48.113208650000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Lizinvt", + "uid": "13164979", + "editor": "MapComplete 0.7.1-rc1", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-12T15:13:24Z", + "reviewed_features": [], + "create": 14, + "modify": 15, + "delete": 0, + "area": 9.09811250006411e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104582393, + "host": "pietervdvn.github.io", + "theme": "benches", + "imagery": "osm", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.76746245, + 48.11476485 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.7.0c", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-12T15:03:50Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 0.0000110316870000061, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104581895, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.9931475, + 50.8290779 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "hke2912", + "uid": "5154951", + "editor": "MapComplete 0.7.1-rc1", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-12T13:38:03Z", + "reviewed_features": [], + "create": 1, + "modify": 6, + "delete": 0, + "area": 0.0000026661900599964, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104577870, + "host": "pietervdvn.github.io", + "theme": "benches", + "imagery": "osm", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.07470975, + 51.4148192 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.7.0c", + "comment": "Adding data with #MapComplete for theme #railwayarg", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-12T13:26:16Z", + "reviewed_features": [], + "create": 0, + "modify": 12, + "delete": 0, + "area": 0.00338596775867982, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104577362, + "host": "mapcomplete.osm.be", + "theme": "railwayarg", + "imagery": "osm", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.633130949999995, + -34.6531933 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Jason Olshefsky", + "uid": "107979", + "editor": "MapComplete 0.7.0c", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-12T13:13:17Z", + "reviewed_features": [], + "create": 2, + "modify": 2, + "delete": 0, + "area": 2.95637399980937e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104576707, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "imagery": "HDM_HOT", + "language": "en", + "theme-creator": "Erwin Olario" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -77.6209281, + 43.11637895 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "GOwin", + "uid": "1041828", + "editor": "MapComplete 0.7.0c", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-12T08:44:14Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104558350, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "osmfr", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 121.0388835, + 14.6079696 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "GOwin", + "uid": "1041828", + "editor": "MapComplete 0.7.0c", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-12T06:59:05Z", + "reviewed_features": [], + "create": 2, + "modify": 2, + "delete": 0, + "area": 0.00000654444680001034, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104551517, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "imagery": "Mapbox", + "language": "en", + "theme-creator": "Erwin Olario" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 120.58377300000001, + 14.13368525 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "GOwin", + "uid": "1041828", + "editor": "MapComplete 0.7.0c", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-12T06:51:27Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104550986, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "imagery": "Mapbox", + "language": "en", + "theme-creator": "Erwin Olario" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 120.5912738, + 14.1325571 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "treestryder", + "uid": "159516", + "editor": "MapComplete 0.7.0c", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-12T05:37:13Z", + "reviewed_features": [], + "create": 0, + "modify": 8, + "delete": 0, + "area": 0.000896512216320031, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104546473, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -84.54920870000001, + 42.7354279 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.7.0c", + "comment": "Adding data with #MapComplete for theme #railwayarg", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-11T23:51:18Z", + "reviewed_features": [], + "create": 0, + "modify": 12, + "delete": 0, + "area": 0.00164296950467951, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104538496, + "host": "mapcomplete.osm.be", + "theme": "railwayarg", + "imagery": "EsriWorldImagery", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.568991999999994, + -34.6431586 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "PHolzwarth", + "uid": "117365", + "editor": "MapComplete 0.7.0c", + "comment": "Adding data with #MapComplete for theme #ghostbikes", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-11T17:44:55Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104527766, + "host": "mapcomplete.osm.be", + "theme": "ghostbikes", + "imagery": "CartoDB.Positron", + "language": "de", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.9373163, + 48.4837389 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Globelotter", + "uid": "6141733", + "editor": "MapComplete 0.7.0c", + "comment": "Adding data with #MapComplete for theme #speelplekken", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-11T17:16:11Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104526734, + "host": "mapcomplete.osm.be", + "theme": "speelplekken", + "imagery": "CartoDB.Positron", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4501882, + 51.1738214 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Peter Elderson", + "uid": "7103674", + "editor": "MapComplete 0.7.0c", + "comment": "Adding data with #MapComplete for theme #wandelknooppunten", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-11T15:48:27Z", + "reviewed_features": [], + "create": 0, + "modify": 61, + "delete": 0, + "area": 0.00954903828479985, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104522364, + "host": "mapcomplete.osm.be", + "theme": "wandelknooppunten", + "imagery": "osm", + "language": "nl", + "theme-creator": "Peter Elderson" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.1213388, + 51.518561399999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Peter Elderson", + "uid": "7103674", + "editor": "MapComplete 0.7.0c", + "comment": "Adding data with #MapComplete for theme #wandelknooppunten", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-11T14:30:12Z", + "reviewed_features": [], + "create": 0, + "modify": 9, + "delete": 0, + "area": 0.000227250519029999, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104518647, + "host": "mapcomplete.osm.be", + "theme": "wandelknooppunten", + "imagery": "osm", + "language": "nl", + "theme-creator": "Peter Elderson" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.072036349999999, + 51.48815095 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Nuytinck", + "uid": "3719237", + "editor": "MapComplete 0.7.1-rc1", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-11T13:26:38Z", + "reviewed_features": [], + "create": 4, + "modify": 8, + "delete": 0, + "area": 0.00101606045673006, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104515780, + "host": "pietervdvn.github.io", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.76689865, + 51.00651235 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.7.0c", + "comment": "Adding data with #MapComplete for theme #railwayarg", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-11T13:12:00Z", + "reviewed_features": [], + "create": 1, + "modify": 4, + "delete": 0, + "area": 2.27640000001181e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104515024, + "host": "mapcomplete.osm.be", + "theme": "railwayarg", + "imagery": "osm", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.7917543, + -34.64996855 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Jose Luis Infante", + "uid": "126203", + "editor": "MapComplete 0.7.0c", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-11T11:20:02Z", + "reviewed_features": [], + "create": 4, + "modify": 13, + "delete": 0, + "area": 0.00000332487050000623, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104508863, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "imagery": "HDM_HOT", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.1941562, + 41.415860949999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Peter Elderson", + "uid": "7103674", + "editor": "MapComplete 0.7.0c", + "comment": "Adding data with #MapComplete for theme #wandelknooppunten", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-11T11:07:58Z", + "reviewed_features": [], + "create": 0, + "modify": 71, + "delete": 0, + "area": 0.098939680445122, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104508109, + "host": "mapcomplete.osm.be", + "theme": "wandelknooppunten", + "imagery": "osm", + "language": "nl", + "theme-creator": "Peter Elderson" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.276447, + 51.387630900000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "GOwin", + "uid": "1041828", + "editor": "MapComplete 0.7.0c", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-11T10:52:00Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104507010, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "Mapbox", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 121.0592133, + 14.7358283 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Peter Elderson", + "uid": "7103674", + "editor": "MapComplete 0.7.0c", + "comment": "Adding data with #MapComplete for theme #wandelknooppunten", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-11T09:33:32Z", + "reviewed_features": [], + "create": 0, + "modify": 18, + "delete": 0, + "area": 0.00256551186345057, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104501788, + "host": "mapcomplete.osm.be", + "theme": "wandelknooppunten", + "imagery": "osm", + "language": "nl", + "theme-creator": "Peter Elderson" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.53862785, + 51.30497205 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Nuytinck", + "uid": "3719237", + "editor": "MapComplete 0.7.1-rc1", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-11T08:34:18Z", + "reviewed_features": [], + "create": 4, + "modify": 10, + "delete": 0, + "area": 0.000761700387420269, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104497856, + "host": "pietervdvn.github.io", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.73253795, + 51.046897200000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Peter Elderson", + "uid": "7103674", + "editor": "MapComplete 0.7.0c", + "comment": "Adding data with #MapComplete for theme #wandelknooppunten", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-11T08:07:05Z", + "reviewed_features": [], + "create": 0, + "modify": 15, + "delete": 0, + "area": 0.00145321778605998, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104496134, + "host": "mapcomplete.osm.be", + "theme": "wandelknooppunten", + "imagery": "osm", + "language": "nl", + "theme-creator": "Peter Elderson" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.524248699999999, + 51.33767885 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Peter Elderson", + "uid": "7103674", + "editor": "MapComplete 0.7.0c", + "comment": "Adding data with #MapComplete for theme #benchesandpicnictables", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-11T05:27:55Z", + "reviewed_features": [], + "create": 22, + "modify": 2, + "delete": 0, + "area": 0.126046920920882, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104486192, + "host": "mapcomplete.osm.be", + "theme": "benchesandpicnictables", + "imagery": "osm", + "language": "nl", + "theme-creator": "Peter Elderson" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.3291065, + 51.42827975 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Nickrds09", + "uid": "966535", + "editor": "MapComplete 0.7.0c", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-11T03:40:28Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 0.00000260292045000656, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104481256, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "imagery": "HDM_HOT", + "language": "en", + "theme-creator": "Erwin Olario" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 121.53007235, + 13.964517050000001 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.7.0c", + "comment": "Adding data with #MapComplete for theme #railwayarg", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-11T00:11:36Z", + "reviewed_features": [], + "create": 3, + "modify": 13, + "delete": 0, + "area": 0.00433506589542041, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104477735, + "host": "mapcomplete.osm.be", + "theme": "railwayarg", + "imagery": "EsriWorldImagery", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.64622055, + -34.6512051 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "laurent-38", + "uid": "3909835", + "editor": "MapComplete 0.7.0c", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-10T22:38:51Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104476330, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.154912, + 45.6122344 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.7.1c", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-10T21:32:55Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104474953, + "host": "127.0.0.1:1234", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2198332, + 51.215705 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "OSMWeekly", + "uid": "8610118", + "editor": "MapComplete 0.7.0c", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-10T20:31:19Z", + "reviewed_features": [], + "create": 2, + "modify": 3, + "delete": 0, + "area": 1.93492900000202e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104473387, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "imagery": "HDM_HOT", + "language": "en", + "theme-creator": "Erwin Olario" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -77.78820765, + 42.2565572 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "OSMWeekly", + "uid": "8610118", + "editor": "MapComplete 0.7.0c", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-10T20:29:47Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104473335, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -77.788479, + 42.2567096 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Marek-M", + "uid": "598860", + "editor": "MapComplete 0.7.0c", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-10T20:09:11Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104472684, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 18.4968553, + 54.464641 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.7.1c", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-10T18:33:55Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104469520, + "host": "127.0.0.1:1234", + "theme": "drinking_water", + "imagery": "CartoDB.Voyager", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2259732, + 51.2116402 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.7.0c", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-10T18:06:44Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104468481, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2259732, + 51.2116402 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.7.1c", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-10T17:15:34Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 9.45802739998738e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104466370, + "host": "pietervdvn.github.io", + "theme": "grb", + "imagery": "AGIVFlandersGRB", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2320207, + 51.20471125 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "art_m_wb", + "uid": "12876924", + "editor": "MapComplete 0.7.0c", + "comment": "Adding data with #MapComplete for theme #climbing", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-10T14:17:34Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.00000511359803999122, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104458078, + "host": "mapcomplete.osm.be", + "theme": "climbing", + "imagery": "osm", + "language": "en", + "theme-creator": "Christian Neumann " + }, + "geometry": { + "type": "Point", + "coordinates": [ + 19.3897633, + 50.669220800000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.7.0c", + "comment": "Adding data with #MapComplete for theme #railwayarg", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-10T13:16:04Z", + "reviewed_features": [], + "create": 0, + "modify": 39, + "delete": 0, + "area": 0.00447981987648967, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104454897, + "host": "mapcomplete.osm.be", + "theme": "railwayarg", + "imagery": "osm", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.65694965, + -34.65330095 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "goldenking05", + "uid": "11617335", + "editor": "MapComplete 0.7.0c", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-10T13:05:19Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.00926067326812094, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104454337, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "imagery": "HDM_HOT", + "language": "en", + "theme-creator": "Erwin Olario" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -85.15683315, + 40.9864849 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "gptm", + "uid": "2873411", + "editor": "MapComplete 0.7.0c", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-10T12:26:28Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104451926, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "imagery": "AGIV10cm", + "language": "en", + "theme-creator": "Erwin Olario" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.0796346, + 50.9344553 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.7.0c", + "comment": "Adding data with #MapComplete for theme #campersite", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-10T11:34:54Z", + "reviewed_features": [], + "create": 0, + "modify": 6, + "delete": 0, + "area": 2.38561374141807, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104448218, + "host": "mapcomplete.osm.be", + "theme": "campersite", + "imagery": "osm", + "language": "en", + "theme-creator": "joost schouppe" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.8660219, + 43.651728250000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Marcin Sołoguba", + "uid": "6559812", + "editor": "MapComplete 0.7.0c", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-10T11:19:05Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104447014, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "imagery": "HDM_HOT", + "language": "en", + "theme-creator": "Erwin Olario" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 23.2262608, + 53.1678182 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "sebkur", + "uid": "22917", + "editor": "MapComplete 0.7.0c", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-10T08:34:04Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104434320, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "en", + "theme-creator": "Erwin Olario" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.8549909, + 53.1356141 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "mozita", + "uid": "8934185", + "editor": "MapComplete 0.7.0c", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-10T06:05:27Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104424404, + "host": "waldbrand-app.de", + "theme": "hailhydrant", + "imagery": "HDM_HOT", + "language": "en", + "theme-creator": "Erwin Olario" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.5852344, + 52.6791026 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Mikel Ortega", + "uid": "151106", + "editor": "MapComplete 0.7.0c", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-09T20:40:32Z", + "reviewed_features": [], + "create": 3, + "modify": 7, + "delete": 0, + "area": 3.13950000007853e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104410838, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "EsriWorldImagery", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.9039446, + 43.32459235 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "MaraLS", + "uid": "42613", + "editor": "MapComplete 0.7.0c", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-09T17:55:51Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104405796, + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "osm", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.7459706, + 48.1192639 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "WinstonSmith", + "uid": "36030", + "editor": "MapComplete 0.7.0c", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-09T17:10:38Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104404430, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 10.8004411, + 45.1618381 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.7.1b", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-09T16:40:03Z", + "reviewed_features": [], + "create": 2, + "modify": 1, + "delete": 0, + "area": 1.34904000000791e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104403405, + "host": "127.0.0.1:1234", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.220041, + 51.21575955 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "David Crochet", + "uid": "50624", + "editor": "MapComplete 0.7.0c", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-09T16:21:23Z", + "reviewed_features": [], + "create": 0, + "modify": 9, + "delete": 0, + "area": 0.0000471072066399558, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104402711, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "imagery": "HDM_HOT", + "language": "en", + "theme-creator": "Erwin Olario" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.37773829999999997, + 49.1845414 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Erin76", + "uid": "8982454", + "editor": "MapComplete 0.7.0c", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-09T16:09:32Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104402358, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.8872236, + 51.0093569 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jared", + "uid": "3887", + "editor": "MapComplete 0.7.0c", + "comment": "Adding data with #MapComplete for theme #sport_pitches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-09T16:05:40Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 9.46868940013134e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104402223, + "host": "mapcomplete.osm.be", + "theme": "sport_pitches", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -72.306483, + 43.71324155 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.7.0c", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-09T12:43:32Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104395169, + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "osm", + "language": "nl", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2682475, + 51.1566463 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dcs", + "uid": "236412", + "editor": "MapComplete 0.7.0c", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-09T11:53:57Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104393563, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "imagery": "HDM_HOT", + "language": "en", + "theme-creator": "Erwin Olario" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -86.7749105, + 39.2895893 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dcs", + "uid": "236412", + "editor": "MapComplete 0.7.0c", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-09T11:39:10Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104393090, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -86.8697199, + 39.2103621 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dcs", + "uid": "236412", + "editor": "MapComplete 0.7.0c", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-09T11:37:09Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104393035, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -86.7622867, + 39.2846994 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "WinstonSmith", + "uid": "36030", + "editor": "MapComplete 0.7.0c", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-09T10:45:09Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104391660, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 10.6935299, + 45.4364119 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.7.1b", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-09T09:57:35Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104390359, + "host": "pietervdvn.github.io", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.220067, + 51.2157567 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Nickrds09", + "uid": "966535", + "editor": "MapComplete 0.7.0c", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-09T03:28:26Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 2.59624739998659e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104383378, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "imagery": "HDM_HOT", + "language": "en", + "theme-creator": "Erwin Olario" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 121.52641295000001, + 13.963484399999999 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "GOwin", + "uid": "1041828", + "editor": "MapComplete 0.7.0c", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-09T02:17:06Z", + "reviewed_features": [], + "create": 7, + "modify": 8, + "delete": 0, + "area": 0.00012154687428001, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104382849, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "imagery": "Mapbox", + "language": "en", + "theme-creator": "Erwin Olario" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 121.0495587, + 14.55443325 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "WinstonSmith", + "uid": "36030", + "editor": "MapComplete 0.7.0c", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-08T15:36:17Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104369957, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.2859606, + 44.4990997 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "sjokomoeske", + "uid": "10187049", + "editor": "MapComplete 0.7.0c", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-08T15:16:01Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104369288, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.1136635, + 51.0178601 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "sjokomoeske", + "uid": "10187049", + "editor": "MapComplete 0.7.0c", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-08T15:04:58Z", + "reviewed_features": [], + "create": 2, + "modify": 2, + "delete": 0, + "area": 0.00000461262977000638, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104368933, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.11020745, + 51.01776305 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "nyctea", + "uid": "8656991", + "editor": "MapComplete 0.7.0a", + "comment": "Adding data with #MapComplete for theme #fritures", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-08T13:32:31Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104365650, + "host": "mapcomplete.braindeaddev.com", + "theme": "fritures", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7097807, + 51.0375149 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Koenraad Van Coppenolle", + "uid": "12352906", + "editor": "MapComplete 0.7.0c", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-08T08:58:48Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104355582, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.8420487, + 50.8816233 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Koen Rijnsent", + "uid": "4569696", + "editor": "MapComplete 0.7.0c", + "comment": "Adding data with #MapComplete for theme #artworks", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-08T08:13:16Z", + "reviewed_features": [], + "create": 7, + "modify": 13, + "delete": 0, + "area": 0.00000397414228000236, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104354080, + "host": "mapcomplete.osm.be", + "theme": "artworks", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.1170282, + 52.096787750000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.7.0c", + "comment": "Adding data with #MapComplete for theme #railwayarg", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-08T00:14:13Z", + "reviewed_features": [], + "create": 3, + "modify": 30, + "delete": 0, + "area": 0.00871533981770017, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104345309, + "host": "mapcomplete.osm.be", + "theme": "railwayarg", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.60225185, + -34.6472755 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "sjokomoeske", + "uid": "10187049", + "editor": "MapComplete 0.7.0c", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-07T16:12:17Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104329987, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.0956148, + 51.027961 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.7.0c", + "comment": "Adding data with #MapComplete for theme #railwayarg", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-07T14:40:01Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 6.77909999756847e-10, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104325174, + "host": "mapcomplete.osm.be", + "theme": "railwayarg", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.49182545, + -34.54722945 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "art_m_wb", + "uid": "12876924", + "editor": "MapComplete 0.7.0c", + "comment": "Adding data with #MapComplete for theme #climbing", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-07T07:16:56Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104296439, + "host": "mapcomplete.osm.be", + "theme": "climbing", + "imagery": "osm", + "language": "en", + "theme-creator": "Christian Neumann " + }, + "geometry": { + "type": "Point", + "coordinates": [ + 16.144859, + 50.3474723 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "GOwin", + "uid": "1041828", + "editor": "MapComplete 0.7.0c", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-07T04:25:15Z", + "reviewed_features": [], + "create": 2, + "modify": 2, + "delete": 0, + "area": 0.00000516114599998662, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104285378, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "imagery": "HDM_HOT", + "language": "en", + "theme-creator": "Erwin Olario" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 121.0555447, + 14.6240254 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.7.0c", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-07T01:33:00Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104280247, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "imagery": "HDM_HOT", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7041112, + 51.052696 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.7.0c", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-07T01:23:13Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104280055, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "imagery": "HDM_HOT", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7045624, + 51.0527661 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.7.0c", + "comment": "Adding data with #MapComplete for theme #railwayarg", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-06T23:57:22Z", + "reviewed_features": [], + "create": 5, + "modify": 34, + "delete": 0, + "area": 0.00651875013344104, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104278464, + "host": "mapcomplete.osm.be", + "theme": "railwayarg", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.6455025, + -34.6527314 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "art_m_wb", + "uid": "12876924", + "editor": "MapComplete 0.7.0c", + "comment": "Adding data with #MapComplete for theme #climbing", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-06T20:43:26Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 3.48838469999256e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104274050, + "host": "mapcomplete.osm.be", + "theme": "climbing", + "imagery": "osm", + "language": "en", + "theme-creator": "Christian Neumann " + }, + "geometry": { + "type": "Point", + "coordinates": [ + 15.610203349999999, + 51.12703915 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "landscapemapper", + "uid": "220206", + "editor": "MapComplete 0.7.0c", + "comment": "Adding data with #MapComplete for theme #pingpong", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-06T20:30:18Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104273585, + "host": "mapcomplete.osm.be", + "theme": "pingpong", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.881065, + 46.2899434 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dkf2010", + "uid": "685599", + "editor": "MapComplete 0.7.0c", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-06T20:04:52Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 2.28207360000264e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104272719, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.9051662, + 53.608371399999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Globelotter", + "uid": "6141733", + "editor": "MapComplete 0.7.0c", + "comment": "Adding data with #MapComplete for theme #speelplekken", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-06T15:56:21Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.000523227690509952, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104263517, + "host": "mapcomplete.osm.be", + "theme": "speelplekken", + "imagery": "CartoDB.Positron", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4596047500000005, + 51.13965455 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.7.0c", + "comment": "Adding data with #MapComplete for theme #railwayarg", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-06T13:45:33Z", + "reviewed_features": [], + "create": 2, + "modify": 8, + "delete": 0, + "area": 1.84864679999715e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104257325, + "host": "mapcomplete.osm.be", + "theme": "railwayarg", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.55756735, + -34.639685400000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Gillonde", + "uid": "1965001", + "editor": "MapComplete 0.7.0c", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-06T13:20:51Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104256048, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.006488, + 52.1035974 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thibaultmol", + "uid": "2916921", + "editor": "MapComplete 0.6.7-unlocked", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-06T12:41:42Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104253724, + "host": "pietervdvn.github.io", + "theme": "shops", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3259754, + 50.9959771 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Larmax", + "uid": "8105430", + "editor": "MapComplete 0.7.0c", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-06T08:13:28Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104233157, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 24.7403955, + 60.160001 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "LySioS", + "uid": "11579673", + "editor": "MapComplete 0.7.0c", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-06T07:08:42Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104228418, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "imagery": "HDM_HOT", + "language": "en", + "theme-creator": "Erwin Olario" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.9413681, + 42.6852421 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "GOwin", + "uid": "1041828", + "editor": "MapComplete 0.7.0c", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-06T03:32:23Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104216445, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "imagery": "Mapbox", + "language": "en", + "theme-creator": "Erwin Olario" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 121.0188074, + 14.6546927 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.7.0c", + "comment": "Adding data with #MapComplete for theme #railwayarg", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-06T00:30:18Z", + "reviewed_features": [], + "create": 2, + "modify": 5, + "delete": 0, + "area": 0.00000295339426998673, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104212562, + "host": "mapcomplete.osm.be", + "theme": "railwayarg", + "imagery": "EsriWorldImagery", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.73221545, + -34.66389115 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.7.0c", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-05T22:44:46Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0.00000423983388001802, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104210379, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.7851824, + -34.6513911 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Michael Nixt", + "uid": "6641970", + "editor": "MapComplete 0.7.0c", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-05T20:36:05Z", + "reviewed_features": [], + "create": 1, + "modify": 14, + "delete": 0, + "area": 0.0000434059718399561, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104206928, + "host": "mapcomplete.osm.be", + "theme": "shops", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -74.07524185, + 39.9373766 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Michael Nixt", + "uid": "6641970", + "editor": "MapComplete 0.7.0c", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-05T20:34:52Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 8.19804000054977e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104206891, + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "osm", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -74.0759429, + 39.9378049 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "familiapicarol", + "uid": "593367", + "editor": "MapComplete 0.7.0c", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-05T18:52:01Z", + "reviewed_features": [], + "create": 2, + "modify": 7, + "delete": 0, + "area": 0.11259111286773, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104203072, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "osm", + "language": "ca", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.8556325500000002, + 42.08456045 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-3947008463", + "osm_id": 3947008463, + "reasons": [ + 43 + ], + "version": 4, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3947008578", + "osm_id": 3947008578, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3947070933", + "osm_id": 3947070933, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8327515258", + "osm_id": 8327515258, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8702003591", + "osm_id": 8702003591, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3947070927", + "osm_id": 3947070927, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3947070932", + "osm_id": 3947070932, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8701996043", + "osm_id": 8701996043, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3944503747", + "osm_id": 3944503747, + "reasons": [ + 43 + ], + "version": 4, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3944504276", + "osm_id": 3944504276, + "reasons": [ + 43 + ], + "version": 4, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3947068928", + "osm_id": 3947068928, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8701994195", + "osm_id": 8701994195, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3947070942", + "osm_id": 3947070942, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3944500631", + "osm_id": 3944500631, + "reasons": [ + 43 + ], + "version": 5, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3947071258", + "osm_id": 3947071258, + "reasons": [ + 43 + ], + "version": 4, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3944493484", + "osm_id": 3944493484, + "reasons": [ + 43 + ], + "version": 5, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3944499361", + "osm_id": 3944499361, + "reasons": [ + 43 + ], + "version": 6, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3947070948", + "osm_id": 3947070948, + "reasons": [ + 43 + ], + "version": 4, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "Jose Luis Infante", + "uid": "126203", + "editor": "MapComplete 0.6.11c", + "comment": "Adding data with #MapComplete for theme #arbres_llefia", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-05T14:43:36Z", + "reviewed_features": [], + "create": 5, + "modify": 28, + "delete": 0, + "area": 0.0000543223456599874, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104191631, + "host": "pietervdvn.github.io", + "theme": "arbres_llefia", + "imagery": "HDM_HOT", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.21788375, + 41.441146 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.7.0c", + "comment": "Adding data with #MapComplete for theme #railwayarg", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-05T13:34:45Z", + "reviewed_features": [], + "create": 1, + "modify": 67, + "delete": 0, + "area": 0.00566578340899988, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104188466, + "host": "mapcomplete.osm.be", + "theme": "railwayarg", + "imagery": "osm", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.5826525, + -34.6273904 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.7.0c", + "comment": "Adding data with #MapComplete for theme #railwayarg", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-05T13:13:38Z", + "reviewed_features": [], + "create": 1, + "modify": 43, + "delete": 0, + "area": 0.0018906987607195, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104187522, + "host": "mapcomplete.osm.be", + "theme": "railwayarg", + "imagery": "osm", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.7045993, + -34.658935549999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Discostu36", + "uid": "8265165", + "editor": "MapComplete 0.6.11c", + "comment": "Adding data with #MapComplete for theme #artworks", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-05T09:52:57Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104175591, + "host": "pietervdvn.github.io", + "theme": "artworks", + "imagery": "osm", + "language": "de", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 10.1351653, + 54.3256607 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.6.11c", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-05T04:45:33Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104156628, + "host": "pietervdvn.github.io", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.2560088, + -39.8161799 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "GOwin", + "uid": "1041828", + "editor": "MapComplete 0.7.0c", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-05T04:08:02Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104154788, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "imagery": "Mapbox", + "language": "en", + "theme-creator": "Erwin Olario" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 123.8959752, + 10.3078378 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.7.0c", + "comment": "Adding data with #MapComplete for theme #railwayarg", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-05T03:43:09Z", + "reviewed_features": [], + "create": 0, + "modify": 6, + "delete": 0, + "area": 0.00010602932522, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104153784, + "host": "mapcomplete.osm.be", + "theme": "railwayarg", + "imagery": "osm", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.778126900000004, + -34.65372755 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Nesim", + "uid": "1386706", + "editor": "MapComplete 0.7.0c", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-05T03:32:52Z", + "reviewed_features": [], + "create": 0, + "modify": 12, + "delete": 0, + "area": 0.00897791762664999, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104153485, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "imagery": "HDM_HOT", + "language": "en", + "theme-creator": "Erwin Olario" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 41.10015485, + 37.84436925 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "GOwin", + "uid": "1041828", + "editor": "MapComplete 0.7.0c", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-05T02:20:52Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104151893, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "imagery": "Mapbox", + "language": "en", + "theme-creator": "Erwin Olario" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 123.8980177, + 10.305034 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.7.0c", + "comment": "Adding data with #MapComplete for theme #viewpoints", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-04T21:44:17Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.0000375247208000645, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104147363, + "host": "mapcomplete.osm.be", + "theme": "viewpoints", + "imagery": "osm", + "language": "en", + "theme-creator": "Seppe Santens" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2991582, + 51.1105638 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-8696762328", + "osm_id": 8696762328, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8699019504", + "osm_id": 8699019504, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8699036763", + "osm_id": 8699036763, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8696762333", + "osm_id": 8696762333, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8696762358", + "osm_id": 8696762358, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8696762339", + "osm_id": 8696762339, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3944730886", + "osm_id": 3944730886, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3944730901", + "osm_id": 3944730901, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8696758703", + "osm_id": 8696758703, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8699035085", + "osm_id": 8699035085, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8696762348", + "osm_id": 8696762348, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3944729117", + "osm_id": 3944729117, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8696758686", + "osm_id": 8696758686, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8696758681", + "osm_id": 8696758681, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8699088591", + "osm_id": 8699088591, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8696758678", + "osm_id": 8696758678, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8696758676", + "osm_id": 8696758676, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8699049466", + "osm_id": 8699049466, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3944731034", + "osm_id": 3944731034, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3944731303", + "osm_id": 3944731303, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8696762367", + "osm_id": 8696762367, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8696758680", + "osm_id": 8696758680, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8696762376", + "osm_id": 8696762376, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8696762372", + "osm_id": 8696762372, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3944731402", + "osm_id": 3944731402, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8696762366", + "osm_id": 8696762366, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8696762370", + "osm_id": 8696762370, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3944729138", + "osm_id": 3944729138, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3944729107", + "osm_id": 3944729107, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8696758673", + "osm_id": 8696758673, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8696762381", + "osm_id": 8696762381, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8696762388", + "osm_id": 8696762388, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8696758659", + "osm_id": 8696758659, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8696758674", + "osm_id": 8696758674, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8696762386", + "osm_id": 8696762386, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8699123528", + "osm_id": 8699123528, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8696758653", + "osm_id": 8696758653, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8696762416", + "osm_id": 8696762416, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8696758670", + "osm_id": 8696758670, + "reasons": [ + 43 + ], + "version": 4, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8696762407", + "osm_id": 8696762407, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3944729153", + "osm_id": 3944729153, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3944731381", + "osm_id": 3944731381, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3944731273", + "osm_id": 3944731273, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946987557", + "osm_id": 3946987557, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946987398", + "osm_id": 3946987398, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946987601", + "osm_id": 3946987601, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946987237", + "osm_id": 3946987237, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946987570", + "osm_id": 3946987570, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946987630", + "osm_id": 3946987630, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8696762463", + "osm_id": 8696762463, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946987375", + "osm_id": 3946987375, + "reasons": [ + 43 + ], + "version": 4, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946987582", + "osm_id": 3946987582, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946987438", + "osm_id": 3946987438, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8696762462", + "osm_id": 8696762462, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8696762433", + "osm_id": 8696762433, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8696762447", + "osm_id": 8696762447, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8696762448", + "osm_id": 8696762448, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3944731427", + "osm_id": 3944731427, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8696762436", + "osm_id": 8696762436, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946987314", + "osm_id": 3946987314, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3944730961", + "osm_id": 3944730961, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3944731052", + "osm_id": 3944731052, + "reasons": [ + 43 + ], + "version": 4, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "Jose Luis Infante", + "uid": "126203", + "editor": "MapComplete 0.6.11c", + "comment": "Adding data with #MapComplete for theme #arbres_llefia", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-04T17:43:17Z", + "reviewed_features": [], + "create": 26, + "modify": 120, + "delete": 0, + "area": 0.0000158922657599935, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104139265, + "host": "pietervdvn.github.io", + "theme": "arbres_llefia", + "imagery": "HDM_HOT", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2195097, + 41.4331789 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.7.0c", + "comment": "Adding data with #MapComplete for theme #railwayarg", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-04T12:58:24Z", + "reviewed_features": [], + "create": 7, + "modify": 57, + "delete": 0, + "area": 0.00687913206770883, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104126031, + "host": "mapcomplete.osm.be", + "theme": "railwayarg", + "imagery": "EsriWorldImagery", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.66135815, + -34.65304625 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "GOwin", + "uid": "1041828", + "editor": "MapComplete 0.7.0a", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-04T11:37:14Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104120947, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "imagery": "Mapbox", + "language": "en", + "theme-creator": "Erwin Olario" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 123.9034492, + 10.293082 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "meihou", + "uid": "581277", + "editor": "MapComplete 0.7.0c", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-04T09:52:57Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 1.52267279999746e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104112998, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.80683305, + 49.4253923 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "GOwin", + "uid": "1041828", + "editor": "MapComplete 0.7.0a", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-04T09:37:51Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104111803, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "imagery": "EsriWorldImageryClarity", + "language": "en", + "theme-creator": "Erwin Olario" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 123.8954294, + 10.2950032 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "GOwin", + "uid": "1041828", + "editor": "MapComplete 0.7.0a", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-04T04:23:55Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104089998, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "imagery": "Mapbox", + "language": "en", + "theme-creator": "Erwin Olario" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 123.9019094, + 10.2979115 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.7.0c", + "comment": "Adding data with #MapComplete for theme #railwayarg", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-03T23:59:24Z", + "reviewed_features": [], + "create": 1, + "modify": 13, + "delete": 0, + "area": 0.000341412432839728, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104083460, + "host": "mapcomplete.osm.be", + "theme": "railwayarg", + "imagery": "EsriWorldImagery", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.5591645, + -34.641718 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thibaultmol", + "uid": "2916921", + "editor": "MapComplete 0.6.7-unlocked", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-03T20:03:23Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104078157, + "host": "pietervdvn.github.io", + "theme": "shops", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3282392, + 50.9950974 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Lizinvt", + "uid": "13164979", + "editor": "MapComplete 0.6.11c", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-03T18:51:24Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104075504, + "host": "pietervdvn.github.io", + "theme": "benches", + "imagery": "osm", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.7664052, + 48.1051001 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.7.0a", + "comment": "Adding data with #MapComplete for theme #railwayarg", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-03T13:25:47Z", + "reviewed_features": [], + "create": 6, + "modify": 69, + "delete": 0, + "area": 0.0400697216642791, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104060228, + "host": "mapcomplete.osm.be", + "theme": "railwayarg", + "imagery": "osm", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.6272041, + -34.602365 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Michael Baier", + "uid": "13203884", + "editor": "MapComplete 0.6.11c", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-03T11:41:35Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104053396, + "host": "pietervdvn.github.io", + "theme": "benches", + "imagery": "osm", + "language": "de", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.7777917, + 48.1106173 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "guido-vh", + "uid": "12749743", + "editor": "MapComplete 0.7.0a", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-03T11:25:51Z", + "reviewed_features": [], + "create": 4, + "modify": 7, + "delete": 0, + "area": 0.0000390062558400138, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104052303, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.27718205, + 51.9809647 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "GOwin", + "uid": "1041828", + "editor": "MapComplete 0.7.0a", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-03T03:37:48Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104019987, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "imagery": "Mapbox", + "language": "en", + "theme-creator": "Erwin Olario" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 123.9114166, + 10.3126037 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-3947007403", + "osm_id": 3947007403, + "reasons": [ + 43 + ], + "version": 4, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3947073124", + "osm_id": 3947073124, + "reasons": [ + 43 + ], + "version": 4, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8327515256", + "osm_id": 8327515256, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3947007575", + "osm_id": 3947007575, + "reasons": [ + 43 + ], + "version": 5, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3448322522", + "osm_id": 3448322522, + "reasons": [ + 43 + ], + "version": 5, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3453962740", + "osm_id": 3453962740, + "reasons": [ + 43 + ], + "version": 6, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3947073345", + "osm_id": 3947073345, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3947072414", + "osm_id": 3947072414, + "reasons": [ + 43 + ], + "version": 4, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3947074417", + "osm_id": 3947074417, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3947073865", + "osm_id": 3947073865, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3947007431", + "osm_id": 3947007431, + "reasons": [ + 43 + ], + "version": 5, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3947074959", + "osm_id": 3947074959, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3947071272", + "osm_id": 3947071272, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3947074699", + "osm_id": 3947074699, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3947071763", + "osm_id": 3947071763, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3947073599", + "osm_id": 3947073599, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3947071338", + "osm_id": 3947071338, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3947071284", + "osm_id": 3947071284, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3947072100", + "osm_id": 3947072100, + "reasons": [ + 43 + ], + "version": 4, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3947072121", + "osm_id": 3947072121, + "reasons": [ + 43 + ], + "version": 4, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3947070896", + "osm_id": 3947070896, + "reasons": [ + 43 + ], + "version": 5, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3947071307", + "osm_id": 3947071307, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946966354", + "osm_id": 3946966354, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946966576", + "osm_id": 3946966576, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3947072066", + "osm_id": 3947072066, + "reasons": [ + 43 + ], + "version": 4, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8245829986", + "osm_id": 8245829986, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3944503108", + "osm_id": 3944503108, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3947073904", + "osm_id": 3947073904, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946965156", + "osm_id": 3946965156, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946965031", + "osm_id": 3946965031, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946965080", + "osm_id": 3946965080, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3944497984", + "osm_id": 3944497984, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3944495535", + "osm_id": 3944495535, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946965294", + "osm_id": 3946965294, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946965452", + "osm_id": 3946965452, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3947006286", + "osm_id": 3947006286, + "reasons": [ + 43 + ], + "version": 6, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8561873442", + "osm_id": 8561873442, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946963458", + "osm_id": 3946963458, + "reasons": [ + 43 + ], + "version": 4, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8561873436", + "osm_id": 8561873436, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3944498001", + "osm_id": 3944498001, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8561873430", + "osm_id": 8561873430, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946962913", + "osm_id": 3946962913, + "reasons": [ + 43 + ], + "version": 4, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8245829984", + "osm_id": 8245829984, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946962139", + "osm_id": 3946962139, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3944493468", + "osm_id": 3944493468, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8561873435", + "osm_id": 8561873435, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946963489", + "osm_id": 3946963489, + "reasons": [ + 43 + ], + "version": 4, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3944492684", + "osm_id": 3944492684, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8173421666", + "osm_id": 8173421666, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3944733331", + "osm_id": 3944733331, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3944734368", + "osm_id": 3944734368, + "reasons": [ + 43 + ], + "version": 4, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946962234", + "osm_id": 3946962234, + "reasons": [ + 43 + ], + "version": 4, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3944733753", + "osm_id": 3944733753, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "Jose Luis Infante", + "uid": "126203", + "editor": "MapComplete 0.6.11c", + "comment": "Adding data with #MapComplete for theme #arbres_llefia", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-02T18:29:49Z", + "reviewed_features": [], + "create": 0, + "modify": 63, + "delete": 0, + "area": 0.000016143469959991, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104007776, + "host": "pietervdvn.github.io", + "theme": "arbres_llefia", + "imagery": "HDM_HOT", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2204143, + 41.440472 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "flo2154", + "uid": "348648", + "editor": "MapComplete 0.6.11c", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-02T15:35:08Z", + "reviewed_features": [], + "create": 2, + "modify": 18, + "delete": 0, + "area": 0.0000539267489399301, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 104000793, + "host": "pietervdvn.github.io", + "theme": "benches", + "imagery": "osm", + "language": "de", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.8063272, + 48.10575575 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "guido-vh", + "uid": "12749743", + "editor": "MapComplete 0.7.0a", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-02T13:43:43Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103995755, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.23042, + 51.9621928 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-3947073349", + "osm_id": 3947073349, + "reasons": [ + 43 + ], + "version": 4, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3441737825", + "osm_id": 3441737825, + "reasons": [ + 43 + ], + "version": 7, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3947073257", + "osm_id": 3947073257, + "reasons": [ + 43 + ], + "version": 5, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-6066258258", + "osm_id": 6066258258, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "Jose Luis Infante", + "uid": "126203", + "editor": "MapComplete 0.6.11c", + "comment": "Adding data with #MapComplete for theme #arbres_llefia", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-02T13:40:43Z", + "reviewed_features": [], + "create": 0, + "modify": 7, + "delete": 0, + "area": 0.0000042443610000056, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103995633, + "host": "pietervdvn.github.io", + "theme": "arbres_llefia", + "imagery": "HDM_HOT", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2187200000000002, + 41.4428286 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "guido-vh", + "uid": "12749743", + "editor": "MapComplete 0.7.0a", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-02T12:23:58Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103992573, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.23042, + 51.9621928 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "GOwin", + "uid": "1041828", + "editor": "MapComplete 0.7.0a", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-02T11:10:43Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103989669, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "imagery": "Mapbox", + "language": "en", + "theme-creator": "Erwin Olario" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 123.8872808, + 10.2965048 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Michael Baier", + "uid": "13203884", + "editor": "MapComplete 0.6.11c", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-02T10:40:20Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103988585, + "host": "pietervdvn.github.io", + "theme": "benches", + "imagery": "osm", + "language": "de", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.7777917, + 48.1106173 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Peter Elderson", + "uid": "7103674", + "editor": "MapComplete 0.7.0a", + "comment": "Adding data with #MapComplete for theme #Afvalkokers", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-02T10:12:49Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103987605, + "host": "mapcomplete.osm.be", + "theme": "afvalkokers", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.6706588, + 51.9843105 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Peter Elderson", + "uid": "7103674", + "editor": "MapComplete 0.7.0a", + "comment": "Adding data with #MapComplete for theme #Afvalkokers", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-02T10:09:55Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 2.98204910000728e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103987479, + "host": "mapcomplete.osm.be", + "theme": "afvalkokers", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.67008075, + 51.98169805 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "GOwin", + "uid": "1041828", + "editor": "MapComplete 0.7.0a", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-02T05:38:22Z", + "reviewed_features": [], + "create": 2, + "modify": 3, + "delete": 0, + "area": 5.74769999892468e-10, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103980048, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "imagery": "Mapbox", + "language": "en", + "theme-creator": "Erwin Olario" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 123.88120695, + 10.29909565 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "GOwin", + "uid": "1041828", + "editor": "MapComplete 0.7.0a", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-02T02:50:25Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 5.91013999977144e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103978229, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "imagery": "HDM_HOT", + "language": "en", + "theme-creator": "Erwin Olario" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 123.8891895, + 10.310557249999999 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Wim L", + "uid": "223681", + "editor": "MapComplete 0.7.0a", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-02T01:18:41Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103977483, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -122.366381, + 47.6851819 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "andralves", + "uid": "12438683", + "editor": "MapComplete 0.7.0a", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-01T23:26:34Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103976357, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "imagery": "Mapbox", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -6.6169446, + 41.423333 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Wim L", + "uid": "223681", + "editor": "MapComplete 0.7.0a", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-01T21:50:23Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 3.88335410003579e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103975090, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -122.37256805, + 47.68166775 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "landscapemapper", + "uid": "220206", + "editor": "MapComplete 0.7.0a", + "comment": "Adding data with #MapComplete for theme #pingpong", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-01T20:43:02Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103973538, + "host": "mapcomplete.osm.be", + "theme": "pingpong", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.1075186, + 47.1630492 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.7.0a", + "comment": "Adding data with #MapComplete for theme #campersite", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-01T19:23:56Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 1.53329599994662e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103971314, + "host": "mapcomplete.osm.be", + "theme": "campersite", + "imagery": "osm", + "language": "en", + "theme-creator": "joost schouppe" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.37094715, + 51.0996413 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.6.11c", + "comment": "Adding data with #MapComplete for theme #fietsstraten", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-01T18:21:28Z", + "reviewed_features": [], + "create": 0, + "modify": 8, + "delete": 0, + "area": 0.000248981201639955, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103969136, + "host": "pietervdvn.github.io", + "theme": "fietsstraten", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.3983913, + 51.02951505 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.7.0a", + "comment": "Adding data with #MapComplete for theme #fritures", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-01T17:30:05Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103967153, + "host": "mapcomplete.osm.be", + "theme": "fritures", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3892071, + 50.9775205 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "sjokomoeske", + "uid": "10187049", + "editor": "MapComplete 0.7.0a", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-01T15:46:56Z", + "reviewed_features": [], + "create": 2, + "modify": 2, + "delete": 0, + "area": 0.000530983048960017, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103962843, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "imagery": "AGIV", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.1106110000000005, + 51.0320236 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thibaultmol", + "uid": "2916921", + "editor": "MapComplete 0.6.7-unlocked", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-01T12:41:21Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103955246, + "host": "pietervdvn.github.io", + "theme": "shops", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3306748, + 50.9963862 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "GOwin", + "uid": "1041828", + "editor": "MapComplete 0.7.0a", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-01T12:27:08Z", + "reviewed_features": [], + "create": 2, + "modify": 2, + "delete": 0, + "area": 2.17750000014066e-10, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103954692, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "Mapbox", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 121.04459055, + 14.55266605 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Peter Elderson", + "uid": "7103674", + "editor": "MapComplete 0.7.0a", + "comment": "Adding data with #MapComplete for theme #Afvalkokers", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-01T12:19:43Z", + "reviewed_features": [], + "create": 0, + "modify": 52, + "delete": 0, + "area": 0.000206513324969938, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103954376, + "host": "mapcomplete.osm.be", + "theme": "afvalkokers", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.667157250000001, + 51.98629615 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Lizinvt", + "uid": "13164979", + "editor": "MapComplete 0.6.11c", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-01T12:10:56Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103954078, + "host": "pietervdvn.github.io", + "theme": "benches", + "imagery": "osm", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.8355383, + 48.0713649 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "hke2912", + "uid": "5154951", + "editor": "MapComplete 0.6.11c", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-01T08:40:55Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103947055, + "host": "pietervdvn.github.io", + "theme": "cyclofix", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.5989388, + 51.929751 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Peter Elderson", + "uid": "7103674", + "editor": "MapComplete 0.7.0a", + "comment": "Adding data with #MapComplete for theme #Afvalkokers", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-01T08:19:53Z", + "reviewed_features": [], + "create": 0, + "modify": 10, + "delete": 0, + "area": 0.0000694166572000048, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103946394, + "host": "mapcomplete.osm.be", + "theme": "afvalkokers", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.6134907, + 51.9609535 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "GOwin", + "uid": "1041828", + "editor": "MapComplete 0.7.0a", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-05-01T07:39:41Z", + "reviewed_features": [], + "create": 4, + "modify": 4, + "delete": 0, + "area": 0.224890266789529, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103945261, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "imagery": "HDM_HOT", + "language": "en", + "theme-creator": "Erwin Olario" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 120.82017015, + 14.38436445 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.7.0a", + "comment": "Adding data with #MapComplete for theme #railwayarg", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-05-01T05:54:42Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 103942970, + "host": "mapcomplete.osm.be", + "theme": "railwayarg", + "imagery": "EsriWorldImagery", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.7633237, + -34.657805 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.8.2", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-30T19:59:04Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107226511, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3795404, + 50.8534846 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Stefano1703", + "uid": "13675370", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-30T19:38:09Z", + "reviewed_features": [], + "create": 14, + "modify": 0, + "delete": 0, + "area": 0.00164236872281991, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107225716, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 12.609601000000001, + 52.003398950000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Nuytinck", + "uid": "3719237", + "editor": "MapComplete 0.8.2", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-30T19:13:02Z", + "reviewed_features": [], + "create": 2, + "modify": 2, + "delete": 0, + "area": 0.1340086633907, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107224814, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.7908486, + 51.08049485 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "WinstonSmith", + "uid": "36030", + "editor": "MapComplete 0.8.1", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-30T18:10:37Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107222570, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.3495708, + 44.5274979 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-7182608604", + "osm_id": 7182608604, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-7182608597", + "osm_id": 7182608597, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8880765404", + "osm_id": 8880765404, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8880761681", + "osm_id": 8880761681, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-7182608605", + "osm_id": 7182608605, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-7182608599", + "osm_id": 7182608599, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8818343374", + "osm_id": 8818343374, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-7182608607", + "osm_id": 7182608607, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-7182608606", + "osm_id": 7182608606, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8818343371", + "osm_id": 8818343371, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8818364825", + "osm_id": 8818364825, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8880733500", + "osm_id": 8880733500, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-7182608603", + "osm_id": 7182608603, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8818343399", + "osm_id": 8818343399, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8818356211", + "osm_id": 8818356211, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-7182608602", + "osm_id": 7182608602, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8880796678", + "osm_id": 8880796678, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8880804524", + "osm_id": 8880804524, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8818343427", + "osm_id": 8818343427, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8880812358", + "osm_id": 8880812358, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8880766651", + "osm_id": 8880766651, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8818343434", + "osm_id": 8818343434, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8818343431", + "osm_id": 8818343431, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8818343397", + "osm_id": 8818343397, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8880819059", + "osm_id": 8880819059, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8818326993", + "osm_id": 8818326993, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8875753812", + "osm_id": 8875753812, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8875753811", + "osm_id": 8875753811, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8818327043", + "osm_id": 8818327043, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8818326999", + "osm_id": 8818326999, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8875753816", + "osm_id": 8875753816, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8875901415", + "osm_id": 8875901415, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8880806352", + "osm_id": 8880806352, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8875901425", + "osm_id": 8875901425, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8875901430", + "osm_id": 8875901430, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8818327092", + "osm_id": 8818327092, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8818327054", + "osm_id": 8818327054, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8880868181", + "osm_id": 8880868181, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8875901431", + "osm_id": 8875901431, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8875901383", + "osm_id": 8875901383, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8875901380", + "osm_id": 8875901380, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8875901379", + "osm_id": 8875901379, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8875901393", + "osm_id": 8875901393, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8875901381", + "osm_id": 8875901381, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8875901435", + "osm_id": 8875901435, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8875901385", + "osm_id": 8875901385, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8875901390", + "osm_id": 8875901390, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8875901402", + "osm_id": 8875901402, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8875901382", + "osm_id": 8875901382, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8880071651", + "osm_id": 8880071651, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8875901395", + "osm_id": 8875901395, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8880071647", + "osm_id": 8880071647, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8875901384", + "osm_id": 8875901384, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8880920290", + "osm_id": 8880920290, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8880071663", + "osm_id": 8880071663, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8880913364", + "osm_id": 8880913364, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8880932770", + "osm_id": 8880932770, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8880071694", + "osm_id": 8880071694, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8880940033", + "osm_id": 8880940033, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8880071697", + "osm_id": 8880071697, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8880071722", + "osm_id": 8880071722, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8880071650", + "osm_id": 8880071650, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8875901354", + "osm_id": 8875901354, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8880071732", + "osm_id": 8880071732, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8880071738", + "osm_id": 8880071738, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8875901378", + "osm_id": 8875901378, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8880071730", + "osm_id": 8880071730, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8875901357", + "osm_id": 8875901357, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8880071696", + "osm_id": 8880071696, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8875901361", + "osm_id": 8875901361, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8875901362", + "osm_id": 8875901362, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8875901369", + "osm_id": 8875901369, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8875901366", + "osm_id": 8875901366, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8875901364", + "osm_id": 8875901364, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8875901360", + "osm_id": 8875901360, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8875901359", + "osm_id": 8875901359, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8880071691", + "osm_id": 8880071691, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8875901363", + "osm_id": 8875901363, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8875753728", + "osm_id": 8875753728, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8875901356", + "osm_id": 8875901356, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8875753727", + "osm_id": 8875753727, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8875753719", + "osm_id": 8875753719, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8875901358", + "osm_id": 8875901358, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8875901365", + "osm_id": 8875901365, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8880971787", + "osm_id": 8880971787, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8875761845", + "osm_id": 8875761845, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8875753746", + "osm_id": 8875753746, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8875901331", + "osm_id": 8875901331, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8880071729", + "osm_id": 8880071729, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8875901328", + "osm_id": 8875901328, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8875901340", + "osm_id": 8875901340, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8875901338", + "osm_id": 8875901338, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8875901336", + "osm_id": 8875901336, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8875901333", + "osm_id": 8875901333, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8875901343", + "osm_id": 8875901343, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8875901342", + "osm_id": 8875901342, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8875901339", + "osm_id": 8875901339, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8881018665", + "osm_id": 8881018665, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8880071773", + "osm_id": 8880071773, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8880071775", + "osm_id": 8880071775, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8880071741", + "osm_id": 8880071741, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8881024346", + "osm_id": 8881024346, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8880071772", + "osm_id": 8880071772, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8880071768", + "osm_id": 8880071768, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8880071745", + "osm_id": 8880071745, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8875901344", + "osm_id": 8875901344, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8875901337", + "osm_id": 8875901337, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8880071747", + "osm_id": 8880071747, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8880071774", + "osm_id": 8880071774, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8880071769", + "osm_id": 8880071769, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8880071766", + "osm_id": 8880071766, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8880071744", + "osm_id": 8880071744, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8881026375", + "osm_id": 8881026375, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8880071743", + "osm_id": 8880071743, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8880071767", + "osm_id": 8880071767, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8881019467", + "osm_id": 8881019467, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8880071761", + "osm_id": 8880071761, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8880071759", + "osm_id": 8880071759, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8880071755", + "osm_id": 8880071755, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8880071764", + "osm_id": 8880071764, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8880071756", + "osm_id": 8880071756, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8880071753", + "osm_id": 8880071753, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "Jose Luis Infante", + "uid": "126203", + "editor": "MapComplete 0.8.1", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete1.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-30T18:03:48Z", + "reviewed_features": [], + "create": 57, + "modify": 155, + "delete": 0, + "area": 0.0000552284396899659, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107222299, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "imagery": "HDM_HOT", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.22171375, + 41.45695365 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Ymairesse", + "uid": "13325952", + "editor": "MapComplete 0.8.2", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-30T17:42:34Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107221479, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "fr", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3982776, + 50.8243429 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "AngelG", + "uid": "667203", + "editor": "MapComplete 0.8.1", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-30T17:14:20Z", + "reviewed_features": [], + "create": 0, + "modify": 69, + "delete": 0, + "area": 0.000216837754530026, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107220326, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "imagery": "HDM_HOT", + "language": "en", + "theme-creator": "Erwin Olario" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.77773075, + 41.62106125 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "MD JAHEER", + "uid": "6830974", + "editor": "MapComplete 0.8.1", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-30T14:30:24Z", + "reviewed_features": [], + "create": 2, + "modify": 2, + "delete": 0, + "area": 0.0000220598188199367, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107212429, + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "Mapbox", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 81.66232, + 18.38939245 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.8.1", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/seppesantens/MapComplete-Themes/main/OpenWindPowerMap/OpenWindPowerMap.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-30T12:17:19Z", + "reviewed_features": [], + "create": 0, + "modify": 10, + "delete": 0, + "area": 0.0000467424262199896, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107205684, + "host": "mapcomplete.osm.be", + "theme": "gh://seppesantens/mapcomplete-themes/main/openwindpowermap/openwindpowermap.json", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "Seppe Santens" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.8167856000000002, + 50.98108245 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "ralley", + "uid": "670820", + "editor": "MapComplete 0.8.2", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-30T01:49:12Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107175505, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "aed", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 174.7101614, + -36.8704582 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "elfronto", + "uid": "113505", + "editor": "MapComplete 0.8.1", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-29T22:42:01Z", + "reviewed_features": [], + "create": 0, + "modify": 76, + "delete": 0, + "area": 0.0000168909390399816, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107173275, + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "osm", + "language": "fr", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.3871468, + 48.707442900000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Rober castro", + "uid": "13601244", + "editor": "MapComplete 0.8.1", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-29T19:45:35Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107167852, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "imagery": "PNOA-Spain-TMS", + "language": "en", + "theme-creator": "Erwin Olario" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.7759992, + 41.6278924 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.8.1", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-29T19:12:05Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 0.239600881833118, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107166629, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.0965746, + 50.97009545 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.8.1", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-29T17:55:37Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107163685, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "imagery": "HDM_HOT", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3552986, + 50.8481911 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Rober castro", + "uid": "13601244", + "editor": "MapComplete 0.8.1", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-29T17:00:35Z", + "reviewed_features": [], + "create": 0, + "modify": 13, + "delete": 0, + "area": 0.0000414872440599941, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107160947, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "imagery": "PNOA-Spain-TMS", + "language": "en", + "theme-creator": "Erwin Olario" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.776543650000001, + 41.6248751 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "SDimona", + "uid": "718675", + "editor": "MapComplete 0.8.1", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-29T14:13:35Z", + "reviewed_features": [], + "create": 0, + "modify": 9, + "delete": 0, + "area": 0.000428752990110042, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107153340, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "de", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.31585175, + 50.13701275 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "pi11", + "uid": "12066190", + "editor": "MapComplete 0.8.1", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-29T13:29:50Z", + "reviewed_features": [], + "create": 0, + "modify": 11, + "delete": 0, + "area": 0.00167524025458991, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107151395, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.565281649999999, + 51.270291150000006 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "juliazet", + "uid": "12333071", + "editor": "MapComplete 0.8.1", + "comment": "Adding data with #MapComplete for theme #waterpumps", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-29T11:59:32Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107146857, + "host": "mapcomplete.osm.be", + "theme": "waterpumps", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.4610474, + 52.5168006 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "RudiEn", + "uid": "10472364", + "editor": "MapComplete 0.8.1", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-29T10:42:15Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107141636, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.3433171, + 60.3948088 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "thomas132", + "uid": "9643191", + "editor": "MapComplete 0.8.1", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-29T01:41:51Z", + "reviewed_features": [], + "create": 8, + "modify": 7, + "delete": 0, + "area": 0.0000286955255600134, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107115215, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "imagery": "HDM_HOT", + "language": "en", + "theme-creator": "Erwin Olario" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -93.65300395, + 41.7347538 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "P Kanzler", + "uid": "6173912", + "editor": "MapComplete 0.8.1", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-28T20:59:45Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107110641, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.0191421, + 49.4062913 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "P Kanzler", + "uid": "6173912", + "editor": "MapComplete 0.8.1", + "comment": "Adding data with #MapComplete for theme #artworks", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-28T20:45:20Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107110151, + "host": "mapcomplete.osm.be", + "theme": "artworks", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.0132982, + 49.4097763 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Rober castro", + "uid": "13601244", + "editor": "MapComplete 0.8.1", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-28T17:31:03Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107102352, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "imagery": "PNOA-Spain-TMS", + "language": "en", + "theme-creator": "Erwin Olario" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.7821286, + 41.622697 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "toeklk", + "uid": "219908", + "editor": "MapComplete 0.0.8f", + "comment": "Adding data with #MapComplete for theme #buurtnatuur", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-28T17:23:40Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.0000160897471999752, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107102022, + "theme": "buurtnatuur", + "theme-creator": "Pieter Vander Vennet" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.721686399999999, + 50.8657805 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "AngelG", + "uid": "667203", + "editor": "MapComplete 0.8.2", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-28T15:29:11Z", + "reviewed_features": [], + "create": 0, + "modify": 13, + "delete": 0, + "area": 0.000157514989260066, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107096772, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "hailhydrant", + "imagery": "HDM_HOT", + "language": "en", + "theme-creator": "Erwin Olario" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.7897045, + 41.618785450000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.8.1", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-28T14:00:40Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107092269, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.7469949, + 50.7976986 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.8.1", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-28T13:44:16Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107091444, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.804531, + 50.6994104 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Koen Rijnsent", + "uid": "4569696", + "editor": "MapComplete 0.8.1", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-28T12:37:19Z", + "reviewed_features": [], + "create": 2, + "modify": 2, + "delete": 0, + "area": 0.00000259939745999193, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107088207, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.12246765, + 52.0725717 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.8.1", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-28T11:30:27Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107083996, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.7457193, + 50.7978641 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Albin Gasparetto", + "uid": "1227542", + "editor": "MapComplete 0.8.1", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-28T10:02:51Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107078002, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.6214948, + 43.105798 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "daveemtb", + "uid": "19799", + "editor": "MapComplete 0.8.1", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-28T08:50:22Z", + "reviewed_features": [], + "create": 4, + "modify": 17, + "delete": 0, + "area": 0.0216607764216999, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107073450, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.76547185, + 50.997573 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.8.2", + "comment": "Adding data with #MapComplete for theme #fietsstraten", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-28T07:41:07Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.00000234863280000123, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107069393, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "fietsstraten", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3984036, + 50.8776843 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "AngelG", + "uid": "667203", + "editor": "MapComplete 0.8.1", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-28T04:07:59Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 3.81485929996431e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107057978, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "imagery": "HDM_HOT", + "language": "en", + "theme-creator": "Erwin Olario" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.79573605, + 41.61802005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "toeklk", + "uid": "219908", + "editor": "MapComplete 0.0.8f", + "comment": "Adding data with #MapComplete for theme #buurtnatuur", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-27T20:55:40Z", + "reviewed_features": [], + "create": 0, + "modify": 11, + "delete": 0, + "area": 0.000791465386139899, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107051089, + "theme": "buurtnatuur", + "theme-creator": "Pieter Vander Vennet" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.7591382, + 50.867187650000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-8811448723", + "osm_id": 8811448723, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8811448722", + "osm_id": 8811448722, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8811448724", + "osm_id": 8811448724, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8870271765", + "osm_id": 8870271765, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807936429", + "osm_id": 8807936429, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8811448706", + "osm_id": 8811448706, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8811448726", + "osm_id": 8811448726, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8822726720", + "osm_id": 8822726720, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8822726723", + "osm_id": 8822726723, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8870217504", + "osm_id": 8870217504, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807936389", + "osm_id": 8807936389, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807936391", + "osm_id": 8807936391, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8870249747", + "osm_id": 8870249747, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8870292669", + "osm_id": 8870292669, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807922193", + "osm_id": 8807922193, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8811448721", + "osm_id": 8811448721, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807936341", + "osm_id": 8807936341, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807922172", + "osm_id": 8807922172, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807922165", + "osm_id": 8807922165, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807936422", + "osm_id": 8807936422, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807936374", + "osm_id": 8807936374, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8811448725", + "osm_id": 8811448725, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807878144", + "osm_id": 8807878144, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807936331", + "osm_id": 8807936331, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807878190", + "osm_id": 8807878190, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8870340002", + "osm_id": 8870340002, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807878189", + "osm_id": 8807878189, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807898547", + "osm_id": 8807898547, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8822716163", + "osm_id": 8822716163, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8822716159", + "osm_id": 8822716159, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807878185", + "osm_id": 8807878185, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8870340100", + "osm_id": 8870340100, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8870321981", + "osm_id": 8870321981, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8822735970", + "osm_id": 8822735970, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8822735971", + "osm_id": 8822735971, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8822716165", + "osm_id": 8822716165, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8870348109", + "osm_id": 8870348109, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8822735974", + "osm_id": 8822735974, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8822716161", + "osm_id": 8822716161, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807878207", + "osm_id": 8807878207, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8870345691", + "osm_id": 8870345691, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8822716160", + "osm_id": 8822716160, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807898558", + "osm_id": 8807898558, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8822716164", + "osm_id": 8822716164, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807878204", + "osm_id": 8807878204, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807898554", + "osm_id": 8807898554, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8822726618", + "osm_id": 8822726618, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8822735969", + "osm_id": 8822735969, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8822736020", + "osm_id": 8822736020, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807898598", + "osm_id": 8807898598, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807922194", + "osm_id": 8807922194, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8822736021", + "osm_id": 8822736021, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807898596", + "osm_id": 8807898596, + "reasons": [ + 43 + ], + "version": 4, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807872983", + "osm_id": 8807872983, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "Jose Luis Infante", + "uid": "126203", + "editor": "MapComplete 0.8.1", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete1.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-27T19:01:55Z", + "reviewed_features": [], + "create": 15, + "modify": 57, + "delete": 0, + "area": 0.0000337058266600001, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107048155, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "imagery": "HDM_HOT", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2396728, + 41.445234549999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "brianh", + "uid": "19612", + "editor": "MapComplete 0.8.1", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-27T16:09:24Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107042682, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -6.2089359, + 53.2957435 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "brianh", + "uid": "19612", + "editor": "MapComplete 0.8.1", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-27T14:08:44Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107038209, + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "osm", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -6.2178975, + 53.2956951 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.8.1", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-27T13:47:35Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107037475, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "imagery": "AGIV10cm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.0620822, + 51.077856 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.8.1", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-27T13:45:38Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107037393, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "AGIV10cm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.0619696, + 51.0778931 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.8.1", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-27T12:50:26Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107035399, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.0502295, + 51.0771769 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.8.1", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-27T12:33:15Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107034753, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.0618511, + 51.0775862 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Marek-M", + "uid": "598860", + "editor": "MapComplete 0.8.1", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-27T11:22:02Z", + "reviewed_features": [], + "create": 0, + "modify": 6, + "delete": 0, + "area": 5.35502839997452e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107032250, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 18.41077345, + 54.4414818 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + }, + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-8869396149", + "osm_id": 8869396149, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8811448753", + "osm_id": 8811448753, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807878152", + "osm_id": 8807878152, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807909940", + "osm_id": 8807909940, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807909936", + "osm_id": 8807909936, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807909929", + "osm_id": 8807909929, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807909930", + "osm_id": 8807909930, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807898522", + "osm_id": 8807898522, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807910017", + "osm_id": 8807910017, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "Sandra55", + "uid": "13279584", + "editor": "MapComplete 0.8.1", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete1.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-27T08:44:00Z", + "reviewed_features": [], + "create": 2, + "modify": 15, + "delete": 0, + "area": 0.000194694247769928, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107027382, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "imagery": "HDM_HOT", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.23593435, + 41.44066755 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "OttoR", + "uid": "4123522", + "editor": "MapComplete 0.8.1", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-26T12:27:13Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107000974, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.9728638, + 52.3336624 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + }, + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-8807921831", + "osm_id": 8807921831, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807942789", + "osm_id": 8807942789, + "reasons": [ + 43 + ], + "version": 5, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "Neusgs", + "uid": "4733200", + "editor": "MapComplete 0.8.1", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete1.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-26T11:30:23Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.0000012527088000001, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106999343, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "imagery": "HDM_HOT", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2423586, + 41.4421288 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "hke2912", + "uid": "5154951", + "editor": "MapComplete 0.8.1", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-26T10:05:39Z", + "reviewed_features": [], + "create": 3, + "modify": 6, + "delete": 0, + "area": 3.2909994000133e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106996980, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "benches", + "imagery": "osm", + "language": "de", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.60826, + 51.92917365 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Rober castro", + "uid": "13601244", + "editor": "MapComplete 0.8.1", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-26T08:51:55Z", + "reviewed_features": [], + "create": 0, + "modify": 11, + "delete": 0, + "area": 0.0000408985793400183, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106994817, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "imagery": "HDM_HOT", + "language": "en", + "theme-creator": "Erwin Olario" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.79599475, + 41.6221853 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Koen Rijnsent", + "uid": "4569696", + "editor": "MapComplete 0.8.1", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-26T08:49:24Z", + "reviewed_features": [], + "create": 1, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106994743, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.108259, + 52.0950938 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Koen Rijnsent", + "uid": "4569696", + "editor": "MapComplete 0.8.1", + "comment": "Adding data with #MapComplete for theme #artworks", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-26T08:45:53Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106994630, + "host": "mapcomplete.osm.be", + "theme": "artworks", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.1078083, + 52.0960307 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Koen Rijnsent", + "uid": "4569696", + "editor": "MapComplete 0.8.1", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-26T07:25:24Z", + "reviewed_features": [], + "create": 2, + "modify": 3, + "delete": 0, + "area": 0.0000105329460999996, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106992939, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.11912845, + 52.087902 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Rober castro", + "uid": "13601244", + "editor": "MapComplete 0.8.1", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-26T07:01:36Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.00000575772551999423, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106992587, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "imagery": "HDM_HOT", + "language": "en", + "theme-creator": "Erwin Olario" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.7994719, + 41.6156986 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.8.1", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-26T06:57:23Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106992507, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1410035, + 51.0276438 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Botschfter", + "uid": "12456299", + "editor": "MapComplete 0.8.1", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-26T06:37:56Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106992154, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "hailhydrant", + "imagery": "HDM_HOT", + "language": "en", + "theme-creator": "Erwin Olario" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.0934908, + 50.4049327 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.8.1", + "comment": "Adding data with #MapComplete for theme #fritures", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-25T22:48:21Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106986341, + "host": "mapcomplete.osm.be", + "theme": "fritures", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1330481, + 51.0266148 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Rober castro", + "uid": "13601244", + "editor": "MapComplete 0.8.1", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-25T18:01:05Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.0000109635872800214, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106977731, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "imagery": "HDM_HOT", + "language": "en", + "theme-creator": "Erwin Olario" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.799350499999999, + 41.6191791 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Koen Rijnsent", + "uid": "4569696", + "editor": "MapComplete 0.8.1", + "comment": "Adding data with #MapComplete for theme #artworks", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-25T16:48:41Z", + "reviewed_features": [], + "create": 3, + "modify": 6, + "delete": 0, + "area": 2.22854279995628e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106974457, + "host": "mapcomplete.osm.be", + "theme": "artworks", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.1169738, + 52.08955555 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Frans_Napaters", + "uid": "3574538", + "editor": "MapComplete 0.8.1", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-25T15:53:39Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106971808, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.8992688, + 51.1283964 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "flo2154", + "uid": "348648", + "editor": "MapComplete 0.8.1", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-25T15:32:43Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 0.000181782328410007, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106970741, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "benches", + "imagery": "osm", + "language": "de", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.775844549999999, + 48.10832284999999 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Frans_Napaters", + "uid": "3574538", + "editor": "MapComplete 0.8.1", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-25T14:54:37Z", + "reviewed_features": [], + "create": 2, + "modify": 0, + "delete": 0, + "area": 1.24195000005578e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106969091, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "nl", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.90200385, + 51.12583105 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Koen Rijnsent", + "uid": "4569696", + "editor": "MapComplete 0.8.1", + "comment": "Adding data with #MapComplete for theme #artworks", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-25T14:50:49Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106968916, + "host": "mapcomplete.osm.be", + "theme": "artworks", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.1197919, + 52.0925035 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "RudiEn", + "uid": "10472364", + "editor": "MapComplete 0.8.1", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-25T14:39:53Z", + "reviewed_features": [], + "create": 0, + "modify": 6, + "delete": 0, + "area": 0.00000204344788000557, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106968408, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.3143855, + 60.3960622 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.8.1", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-25T14:33:42Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106968072, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.9575567, + 51.1203863 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Frans_Napaters", + "uid": "3574538", + "editor": "MapComplete 0.8.1", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-25T11:00:55Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.00021169438127993, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106956961, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.9086306, + 51.11858145 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "hke2912", + "uid": "5154951", + "editor": "MapComplete 0.8.1", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-25T08:31:13Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 4.77615919993337e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106946936, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "benches", + "imagery": "osm", + "language": "de", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.864247300000001, + 51.408950250000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.8.1", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-25T07:51:07Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106944340, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.4467402, + 51.0917122 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.8.1", + "comment": "Adding data with #MapComplete for theme #RailwaySignals", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-25T03:24:02Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106929887, + "host": "mapcomplete.osm.be", + "theme": "railwaysignals", + "imagery": "osm", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.7878928, + -34.6510406 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Driesvr", + "uid": "4757701", + "editor": "MapComplete 0.8.1", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-24T20:46:00Z", + "reviewed_features": [], + "create": 1, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106922300, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3264648, + 50.8772372 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Driesvr", + "uid": "4757701", + "editor": "MapComplete 0.8.1", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-24T20:43:05Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106922165, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3264058, + 50.8772236 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.8.1", + "comment": "Adding data with #MapComplete for theme #climbing", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-24T19:05:51Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.0000157911912000238, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106917819, + "host": "mapcomplete.osm.be", + "theme": "climbing", + "imagery": "osm", + "language": "en", + "theme-creator": "Christian Neumann " + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.53177025, + 50.4039388 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ainali", + "uid": "75514", + "editor": "MapComplete 0.8.1", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-24T18:41:04Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106916939, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.914287, + 52.3688819 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.8.1", + "comment": "Adding data with #MapComplete for theme #fritures", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-24T17:56:10Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106915283, + "host": "mapcomplete.osm.be", + "theme": "fritures", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.3320802, + 50.9341511 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Rober castro", + "uid": "13601244", + "editor": "MapComplete 0.8.1", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-24T17:38:50Z", + "reviewed_features": [], + "create": 0, + "modify": 15, + "delete": 0, + "area": 0.000122039095500032, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106914677, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "imagery": "HDM_HOT", + "language": "en", + "theme-creator": "Erwin Olario" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.8104460499999995, + 41.6136903 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.8.1", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/railway", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-24T13:23:15Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106903098, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/railway", + "imagery": "osm", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.7214746, + -34.6653664 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "söm4324", + "uid": "328638", + "editor": "MapComplete 0.8.1", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-24T13:10:19Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106902414, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "imagery": "HDM_HOT", + "language": "en", + "theme-creator": "Erwin Olario" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 10.8994036, + 48.3401015 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Nuytinck", + "uid": "3719237", + "editor": "MapComplete 0.8.0-rc2", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-24T12:14:08Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106899042, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.029673, + 50.9669615 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "WinstonSmith", + "uid": "36030", + "editor": "MapComplete 0.8.0d", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-24T11:45:35Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106897288, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.3460491, + 44.4971024 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "sejohnson", + "uid": "25398", + "editor": "MapComplete 0.8.0d", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-24T00:27:29Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106863963, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "VGIN-Imagery_WM", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -77.1497646, + 38.8830742 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "LySioS", + "uid": "11579673", + "editor": "MapComplete 0.8.0c", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-23T22:02:32Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106861737, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "language": "fr", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.9385411, + 42.6799724 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "MikelEH", + "uid": "173870", + "editor": "MapComplete 0.8.0c", + "comment": "Adding data with #MapComplete for theme #sport_pitches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-23T20:04:53Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.00000464831483999192, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106858650, + "host": "mapcomplete.osm.be", + "theme": "sport_pitches", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.0058401999999997, + 43.331150199999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "MikelEH", + "uid": "173870", + "editor": "MapComplete 0.8.0c", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-23T20:01:58Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.0000208995691100202, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106858558, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.01377555, + 43.327766749999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "RudiEn", + "uid": "10472364", + "editor": "MapComplete 0.8.0c", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-23T19:41:19Z", + "reviewed_features": [], + "create": 2, + "modify": 14, + "delete": 0, + "area": 0.000110194893480046, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106857949, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.3190333, + 60.400436 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thibault Rommel", + "uid": "5846458", + "editor": "MapComplete 0.8.0c", + "comment": "Adding data with #MapComplete for theme #fietsstraten", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-23T19:25:11Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000104297193000054, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106857350, + "host": "mapcomplete.osm.be", + "theme": "fietsstraten", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.35486515, + 50.85517525 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "juliazet", + "uid": "12333071", + "editor": "MapComplete 0.8.0c", + "comment": "Adding data with #MapComplete for theme #waterpumps", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-23T19:12:54Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.0000801754515899912, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106856805, + "host": "mapcomplete.osm.be", + "theme": "waterpumps", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.44864525, + 52.50195295 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Rober castro", + "uid": "13601244", + "editor": "MapComplete 0.8.0c", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-23T17:20:22Z", + "reviewed_features": [], + "create": 0, + "modify": 6, + "delete": 0, + "area": 0.0000277217434200356, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106852236, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "imagery": "HDM_HOT", + "language": "en", + "theme-creator": "Erwin Olario" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.81486855, + 41.617787199999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Adeh", + "uid": "13624583", + "editor": "MapComplete 0.8.0c", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-23T15:43:15Z", + "reviewed_features": [], + "create": 2, + "modify": 1, + "delete": 0, + "area": 0.000284502921200022, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106847962, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.408041, + 50.84443955 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Nickrds09", + "uid": "966535", + "editor": "MapComplete 0.8.0c", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-23T14:48:41Z", + "reviewed_features": [], + "create": 6, + "modify": 7, + "delete": 0, + "area": 0.0000291232391999902, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106845498, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "imagery": "HDM_HOT", + "language": "en", + "theme-creator": "Erwin Olario" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 121.5909852, + 14.0256778 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "rmikke", + "uid": "69607", + "editor": "MapComplete 0.8.0c", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-23T14:24:40Z", + "reviewed_features": [], + "create": 0, + "modify": 15, + "delete": 0, + "area": 0.000399841990000002, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106844386, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 21.066690700000002, + 52.237429000000006 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "CCCGGG", + "uid": "6098724", + "editor": "MapComplete 0.8.0c", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-23T13:59:53Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106843249, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 10.8745216, + 45.8710111 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "juliazet", + "uid": "12333071", + "editor": "MapComplete 0.8.0c", + "comment": "Adding data with #MapComplete for theme #waterpumps", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-23T10:22:11Z", + "reviewed_features": [], + "create": 0, + "modify": 6, + "delete": 0, + "area": 0.000212631996990021, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106830043, + "host": "mapcomplete.osm.be", + "theme": "waterpumps", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.48499025, + 52.539233249999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thibault Rommel", + "uid": "5846458", + "editor": "MapComplete 0.7.5b", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-23T09:38:28Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106827156, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2634724, + 50.8306239 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "MikelEH", + "uid": "173870", + "editor": "MapComplete 0.8.0c", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-23T06:57:48Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106816614, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.0168216, + 43.3268002 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Robert Whittaker", + "uid": "84263", + "editor": "MapComplete 0.8.0c", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-23T05:53:09Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106812639, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.7675936, + 52.4184735 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.8.0c", + "comment": "Adding data with #MapComplete for theme #RailwaySignals", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-23T04:37:11Z", + "reviewed_features": [], + "create": 3, + "modify": 0, + "delete": 0, + "area": 1.05695680002092e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106808369, + "host": "mapcomplete.osm.be", + "theme": "railwaysignals", + "imagery": "osm", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.7877295, + -34.651022100000006 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.8.0-rc2", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-22T22:53:40Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 1.86690000001795e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106801712, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "trees", + "imagery": "osm", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.75769905000001, + -33.493288899999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "thevetchlings", + "uid": "132929", + "editor": "MapComplete 0.8.0b", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-22T22:01:54Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 3.13906080000826e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106800750, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.09193035, + 50.3944184 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "SMUsamaShah", + "uid": "12480786", + "editor": "MapComplete 0.8.0b", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-22T20:34:36Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106798030, + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "osm", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.1458612, + 52.2141956 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Russ McD", + "uid": "346601", + "editor": "MapComplete 0.8.0b", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-22T18:58:46Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106794873, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.7170866, + 52.0587911 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.8.1", + "comment": "Adding data with #MapComplete for theme #climbing", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-22T17:15:47Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.0000157911912000238, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106791031, + "host": "pietervdvn.github.io", + "path": "mc/feature/units/", + "theme": "climbing", + "imagery": "osm", + "language": "en", + "theme-creator": "Christian Neumann " + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.53177025, + 50.4039388 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "lvgx", + "uid": "484826", + "editor": "MapComplete 0.8.0b", + "comment": "Adding data with #MapComplete for theme #climbing", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-22T16:11:40Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106788186, + "host": "mapcomplete.osm.be", + "theme": "climbing", + "imagery": "osm", + "language": "fr", + "theme-creator": "Christian Neumann " + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.5180982, + 45.3491915 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "frank vanhyfte", + "uid": "1026732", + "editor": "MapComplete 0.8.0b", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-22T14:30:43Z", + "reviewed_features": [], + "create": 0, + "modify": 8, + "delete": 0, + "area": 0.00171151073963992, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106783109, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7168, + 51.073654149999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Robert Whittaker", + "uid": "84263", + "editor": "MapComplete 0.8.0a", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-22T13:10:38Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.0000304214446900122, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106778953, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.75020115, + 52.41434385 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-8856648996", + "osm_id": 8856648996, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "tourism": "map" + } + }, + { + "url": "node-8856650449", + "osm_id": 8856650449, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "tourism": "map" + } + } + ], + "user": "waylink", + "uid": "12132256", + "editor": "MapComplete 0.8.0a", + "comment": "Adding data with #MapComplete for theme #maps", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-22T10:58:16Z", + "reviewed_features": [], + "create": 6, + "modify": 0, + "delete": 0, + "area": 0.00000546201809999889, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106771302, + "host": "mapcomplete.osm.be", + "theme": "maps", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.6132603000000001, + 51.18753755 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "hke2912", + "uid": "5154951", + "editor": "MapComplete 0.8.0-rc2", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-22T10:57:21Z", + "reviewed_features": [], + "create": 2, + "modify": 5, + "delete": 0, + "area": 0.00000483307123000889, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106771234, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "benches", + "imagery": "osm", + "language": "de", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.99737665, + 51.46671255 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "xxoonn", + "uid": "7364813", + "editor": "MapComplete 0.8.0a", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-22T06:11:11Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.000494097082000062, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106752218, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 28.3095468, + 48.12838435 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.8.0a", + "comment": "Adding data with #MapComplete for theme #RailwaySignals", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-22T04:20:08Z", + "reviewed_features": [], + "create": 2, + "modify": 0, + "delete": 0, + "area": 1.1577399996874e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106746369, + "host": "mapcomplete.osm.be", + "theme": "railwaysignals", + "imagery": "osm", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.787898150000004, + -34.6510947 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.8.0a", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/railway", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-22T02:39:53Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106743321, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/railway", + "imagery": "osm", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.787923, + -34.650952 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.8.0-rc2", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-21T23:16:16Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 7.00260000620986e-10, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106740533, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "trees", + "imagery": "osm", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.58024155000001, + -33.5907841 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Rober castro", + "uid": "13601244", + "editor": "MapComplete 0.8.0a", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-21T20:31:17Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 0.0000326225059199439, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106736580, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "imagery": "HDM_HOT", + "language": "en", + "theme-creator": "Erwin Olario" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.810981999999999, + 41.6180713 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Matthieu Gaillet", + "uid": "287979", + "editor": "MapComplete 0.8.0a", + "comment": "Adding data with #MapComplete for theme #windpower", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-21T19:11:25Z", + "reviewed_features": [], + "create": 0, + "modify": 17, + "delete": 0, + "area": 0.00238206411058902, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106733641, + "host": "mapcomplete.osm.be", + "theme": "windpower", + "imagery": "osm", + "language": "en", + "theme-creator": "Seppe Santens" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.08076655, + 50.29907455 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "wolfgang8741", + "uid": "307520", + "editor": "MapComplete 0.8.0a", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-21T18:16:12Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106731786, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -81.4565247, + 39.4148476 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.8.0a", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-21T18:15:42Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106731770, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3122652, + 50.7261627 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-3946964245", + "osm_id": 3946964245, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946962201", + "osm_id": 3946962201, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946962926", + "osm_id": 3946962926, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946962004", + "osm_id": 3946962004, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8706607241", + "osm_id": 8706607241, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946962243", + "osm_id": 3946962243, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946997699", + "osm_id": 3946997699, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946962247", + "osm_id": 3946962247, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8706607235", + "osm_id": 8706607235, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946962460", + "osm_id": 3946962460, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946964505", + "osm_id": 3946964505, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946962242", + "osm_id": 3946962242, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946964169", + "osm_id": 3946964169, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946962934", + "osm_id": 3946962934, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8706607188", + "osm_id": 8706607188, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8706607156", + "osm_id": 8706607156, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8706607146", + "osm_id": 8706607146, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8706607167", + "osm_id": 8706607167, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8706607169", + "osm_id": 8706607169, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8706607149", + "osm_id": 8706607149, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8706606977", + "osm_id": 8706606977, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8706607170", + "osm_id": 8706607170, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8706606973", + "osm_id": 8706606973, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8706607045", + "osm_id": 8706607045, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8854443379", + "osm_id": 8854443379, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8706607007", + "osm_id": 8706607007, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8706607063", + "osm_id": 8706607063, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8706606976", + "osm_id": 8706606976, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8706607229", + "osm_id": 8706607229, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8706606974", + "osm_id": 8706606974, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8706607222", + "osm_id": 8706607222, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8706607200", + "osm_id": 8706607200, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8706607247", + "osm_id": 8706607247, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8706607249", + "osm_id": 8706607249, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8706606984", + "osm_id": 8706606984, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8706606989", + "osm_id": 8706606989, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8854654647", + "osm_id": 8854654647, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8706606962", + "osm_id": 8706606962, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8706606969", + "osm_id": 8706606969, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8706606940", + "osm_id": 8706606940, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8706606992", + "osm_id": 8706606992, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8706606948", + "osm_id": 8706606948, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8706606941", + "osm_id": 8706606941, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8706606938", + "osm_id": 8706606938, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8706606928", + "osm_id": 8706606928, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8706607037", + "osm_id": 8706607037, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8706607020", + "osm_id": 8706607020, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8854875113", + "osm_id": 8854875113, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8854621854", + "osm_id": 8854621854, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8811623095", + "osm_id": 8811623095, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8706607085", + "osm_id": 8706607085, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8706607038", + "osm_id": 8706607038, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8854901661", + "osm_id": 8854901661, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8706607105", + "osm_id": 8706607105, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8854843829", + "osm_id": 8854843829, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8706607307", + "osm_id": 8706607307, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8706607012", + "osm_id": 8706607012, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8854985969", + "osm_id": 8854985969, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8811623089", + "osm_id": 8811623089, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8855055613", + "osm_id": 8855055613, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8770347061", + "osm_id": 8770347061, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8706607026", + "osm_id": 8706607026, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8770346837", + "osm_id": 8770346837, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8811623053", + "osm_id": 8811623053, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8811503055", + "osm_id": 8811503055, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8770346846", + "osm_id": 8770346846, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8770346847", + "osm_id": 8770346847, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8770346831", + "osm_id": 8770346831, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8811503063", + "osm_id": 8811503063, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8770346856", + "osm_id": 8770346856, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8811715696", + "osm_id": 8811715696, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8811715657", + "osm_id": 8811715657, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8811715664", + "osm_id": 8811715664, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8770346857", + "osm_id": 8770346857, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8770346849", + "osm_id": 8770346849, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8770346848", + "osm_id": 8770346848, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8811715698", + "osm_id": 8811715698, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8811715663", + "osm_id": 8811715663, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8770346736", + "osm_id": 8770346736, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "Jose Luis Infante", + "uid": "126203", + "editor": "MapComplete 0.8.0a", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete1.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-21T17:59:06Z", + "reviewed_features": [], + "create": 17, + "modify": 102, + "delete": 0, + "area": 0.0000528712960799628, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106731136, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "imagery": "HDM_HOT", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2311233, + 41.43989525 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Welshie", + "uid": "508", + "editor": "MapComplete 0.8.0a", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-21T17:21:46Z", + "reviewed_features": [], + "create": 0, + "modify": 6, + "delete": 0, + "area": 0.0000339036892899733, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106729600, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.60655155, + 51.443386149999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Welshie", + "uid": "508", + "editor": "MapComplete 0.8.0a", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-21T17:18:26Z", + "reviewed_features": [], + "create": 0, + "modify": 6, + "delete": 0, + "area": 0.0182089856449001, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106729452, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.66924345, + 51.5211231 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "AngelG", + "uid": "667203", + "editor": "MapComplete 0.8.0a", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-21T16:26:46Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0.0000782934285599601, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106727082, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "imagery": "HDM_HOT", + "language": "en", + "theme-creator": "Erwin Olario" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.8035423, + 41.61691945 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "andrewsh", + "uid": "71631", + "editor": "MapComplete 0.7.5b", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-21T11:38:17Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106712647, + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "osm", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 17.1108171, + 48.1439458 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thibault Rommel", + "uid": "5846458", + "editor": "MapComplete 0.7.5b", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-21T08:50:00Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106702422, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.395986, + 50.8565891 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.8.0-rc1", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-21T07:46:15Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106699081, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7785003, + 51.014973 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.7.5b", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/osmbe/play/master/mapcomplete/markets/markets.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-21T07:05:55Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000250641783000901, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106696782, + "host": "mapcomplete.osm.be", + "theme": "gh://osmbe/play/master/mapcomplete/markets/markets.json", + "imagery": "osm", + "language": "en", + "theme-creator": "joost schouppe" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.32852645, + 50.84211865 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.7.5a", + "comment": "Adding data with #MapComplete for theme #fritures", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-20T22:18:10Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106682441, + "host": "pietervdvn.github.io", + "theme": "fritures", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.0627553, + 51.1631967 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Steven Lauwers", + "uid": "6799245", + "editor": "MapComplete 0.7.5b", + "comment": "Adding data with #MapComplete for theme #facadegardens", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-20T19:22:58Z", + "reviewed_features": [], + "create": 1, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106678215, + "host": "mapcomplete.osm.be", + "theme": "facadegardens", + "imagery": "osm", + "language": "nl", + "theme-creator": "joost schouppe; stla" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4806838, + 51.0216314 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.7.5b", + "comment": "Adding data with #MapComplete for theme #artworks", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-20T19:07:32Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106677882, + "host": "mapcomplete.osm.be", + "theme": "artworks", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.5183164, + 50.9798866 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + }, + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-8850821987", + "osm_id": 8850821987, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "emergency": "ULB" + } + } + ], + "user": "Feuerwehr Amt Putlitz-Berge", + "uid": "13580003", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-20T16:25:55Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106672801, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.8748876, + 53.239025 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "mgeiser", + "uid": "14686", + "editor": "MapComplete 0.7.5b", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-20T14:58:52Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.0000023196603999964, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106669409, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.5239051, + 47.4146851 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "FennecusZerda", + "uid": "665677", + "editor": "MapComplete 0.7.5b", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-20T13:39:33Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106666526, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 10.2602001, + 59.7173728 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + }, + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-8849968887", + "osm_id": 8849968887, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8811758241", + "osm_id": 8811758241, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8811758196", + "osm_id": 8811758196, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8811804738", + "osm_id": 8811804738, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8811804740", + "osm_id": 8811804740, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8811804739", + "osm_id": 8811804739, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "JBadalona", + "uid": "13507795", + "editor": "MapComplete 0.7.5b", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete1.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-20T09:54:14Z", + "reviewed_features": [], + "create": 3, + "modify": 10, + "delete": 0, + "area": 0.0000195215545800037, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106659240, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "imagery": "HDM_HOT", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.23742605, + 41.4390898 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.7.5b", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-20T09:48:59Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106659065, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3604404, + 50.8424905 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "claravds", + "uid": "13593555", + "editor": "MapComplete 0.7.5b", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-20T08:27:21Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106656754, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7592565, + 51.0445581 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "skyfredo", + "uid": "3500358", + "editor": "MapComplete 0.7.5a", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-19T20:08:51Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106645256, + "host": "pietervdvn.github.io", + "theme": "aed", + "imagery": "osm", + "language": "fr", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.6474642, + 46.686447 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.7.5b", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-19T19:09:42Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106643640, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4349977, + 50.7657692 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.7.5b", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-19T17:58:52Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106641633, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3852293, + 50.7594359 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.7.5b", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-19T17:40:16Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 6.47064000000968e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106641056, + "host": "mapcomplete.osm.be", + "theme": "shops", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2130821999999997, + 51.216153 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Ymairesse", + "uid": "13325952", + "editor": "MapComplete 0.7.5a", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-19T16:39:18Z", + "reviewed_features": [], + "create": 2, + "modify": 10, + "delete": 0, + "area": 0.000762909842640194, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106639119, + "host": "pietervdvn.github.io", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "fr", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4077103, + 50.8185517 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "CordeB", + "uid": "5794153", + "editor": "MapComplete 0.7.5b", + "comment": "Adding data with #MapComplete for theme #wandelknooppunten", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-19T13:52:31Z", + "reviewed_features": [], + "create": 0, + "modify": 7, + "delete": 0, + "area": 0.000670129384199925, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106633095, + "host": "mapcomplete.osm.be", + "theme": "wandelknooppunten", + "imagery": "osm", + "language": "nl", + "theme-creator": "Peter Elderson" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.07447395, + 53.0870862 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + }, + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-8811758224", + "osm_id": 8811758224, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8811804871", + "osm_id": 8811804871, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8811758208", + "osm_id": 8811758208, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8811758231", + "osm_id": 8811758231, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8811758230", + "osm_id": 8811758230, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8811758217", + "osm_id": 8811758217, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8811758207", + "osm_id": 8811758207, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8811758212", + "osm_id": 8811758212, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8811758220", + "osm_id": 8811758220, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "JBadalona", + "uid": "13507795", + "editor": "MapComplete 0.7.5b", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete1.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-19T11:52:16Z", + "reviewed_features": [], + "create": 0, + "modify": 11, + "delete": 0, + "area": 3.53421959998595e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106629351, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "imagery": "HDM_HOT", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2356328, + 41.4392396 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + }, + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-8811797532", + "osm_id": 8811797532, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8811804724", + "osm_id": 8811804724, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8811797576", + "osm_id": 8811797576, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8811797533", + "osm_id": 8811797533, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8811804749", + "osm_id": 8811804749, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8811797549", + "osm_id": 8811797549, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8811797529", + "osm_id": 8811797529, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8811804853", + "osm_id": 8811804853, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "JBadalona", + "uid": "13507795", + "editor": "MapComplete 0.7.5b", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete1.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-19T10:06:02Z", + "reviewed_features": [], + "create": 0, + "modify": 12, + "delete": 0, + "area": 0.0000054754888000019, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106625656, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "imagery": "HDM_HOT", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2386850000000003, + 41.437396250000006 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Nuytinck", + "uid": "3719237", + "editor": "MapComplete 0.7.5a", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-19T08:52:39Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106622963, + "host": "pietervdvn.github.io", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.2572879, + 50.8426534 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AlexeyTyur", + "uid": "10509852", + "editor": "MapComplete 0.7.5b", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-19T02:19:40Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106614434, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -112.07274125, + 33.4625901 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "gnuntoo", + "uid": "1843426", + "editor": "MapComplete 0.7.5a", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-18T20:39:34Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106608684, + "host": "pietervdvn.github.io", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -149.79409629999998, + 61.1872781 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Olli1220", + "uid": "13415916", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-18T19:00:18Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106605042, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 14.6645755, + 52.1846388 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.7.5b", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-18T18:49:09Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 9.34557799997547e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106604643, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.4279213, + 51.10014875 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.7.5b", + "comment": "Adding data with #MapComplete for theme #climbing", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-18T15:06:12Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106595402, + "host": "mapcomplete.osm.be", + "theme": "climbing", + "imagery": "osm", + "language": "en", + "theme-creator": "Christian Neumann " + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.4665137, + 50.3579165 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "flo2154", + "uid": "348648", + "editor": "MapComplete 0.7.5a", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-18T14:54:15Z", + "reviewed_features": [], + "create": 1, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106594930, + "host": "pietervdvn.github.io", + "theme": "benches", + "imagery": "osm", + "language": "de", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.7814314, + 48.1086634 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Maarten O", + "uid": "13326535", + "editor": "MapComplete 0.7.5b", + "comment": "Adding data with #MapComplete for theme #aed_brugge", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-18T10:51:41Z", + "reviewed_features": [], + "create": 1, + "modify": 7, + "delete": 0, + "area": 0.0044699717605397, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106583466, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "HDM_HOT", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2440671500000002, + 51.216379 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Erin76", + "uid": "8982454", + "editor": "MapComplete 0.7.5b", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-18T08:33:17Z", + "reviewed_features": [], + "create": 0, + "modify": 10, + "delete": 0, + "area": 0.00202452675519969, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106575401, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.8662103, + 50.9958733 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Maarten O", + "uid": "13326535", + "editor": "MapComplete 0.7.5b", + "comment": "Adding data with #MapComplete for theme #aed_brugge", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-18T08:24:01Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106574955, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "HDM_HOT", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1816176, + 51.1931976 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Erin76", + "uid": "8982454", + "editor": "MapComplete 0.7.5b", + "comment": "Adding data with #MapComplete for theme #windpower", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-18T07:21:51Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.00000631299317998147, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106571251, + "host": "mapcomplete.osm.be", + "theme": "windpower", + "imagery": "osm", + "language": "en", + "theme-creator": "Seppe Santens" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.8063254, + 50.99397785 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.7.5a", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-18T05:15:28Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106564027, + "host": "pietervdvn.github.io", + "theme": "trees", + "imagery": "CyclOSM", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.7588237, + -33.4944575 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Lukas Podzhog", + "uid": "11428111", + "editor": "MapComplete 0.7.5b", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-17T22:32:56Z", + "reviewed_features": [], + "create": 12, + "modify": 41, + "delete": 0, + "area": 0.000114787326159999, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106554571, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3689763500000005, + 50.8509216 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "alazeo", + "uid": "8657522", + "editor": "MapComplete 0.7.5b", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-17T18:54:50Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106547773, + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "AGIV", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7240504, + 51.0537634 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Lukas Podzhog", + "uid": "11428111", + "editor": "MapComplete 0.7.5b", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-17T16:48:09Z", + "reviewed_features": [], + "create": 0, + "modify": 8, + "delete": 0, + "area": 0.000259797344000018, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106542885, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4469925, + 50.843114 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Maarten O", + "uid": "13326535", + "editor": "MapComplete 0.7.5b", + "comment": "Adding data with #MapComplete for theme #aed_brugge", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-17T14:18:31Z", + "reviewed_features": [], + "create": 2, + "modify": 5, + "delete": 0, + "area": 0.000265828811080018, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106535621, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "HDM_HOT", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2048985, + 51.3199888 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + }, + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-8744208677", + "osm_id": 8744208677, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8744208630", + "osm_id": 8744208630, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "montse ma", + "uid": "13553228", + "editor": "MapComplete 0.7.5b", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete1.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-17T13:44:49Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 4.07268950000778e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106533915, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "imagery": "HDM_HOT", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.24871825, + 41.452016150000006 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.7.5b", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-17T13:34:44Z", + "reviewed_features": [], + "create": 1, + "modify": 7, + "delete": 0, + "area": 0.0000810656870399676, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106533490, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.6308613, + -34.6501123 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + }, + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-8841805569", + "osm_id": 8841805569, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "JBadalona", + "uid": "13507795", + "editor": "MapComplete 0.7.5b", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete1.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-17T11:50:10Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106527618, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "imagery": "HDM_HOT", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.23495, + 41.4405327 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Matthieu Gaillet", + "uid": "287979", + "editor": "MapComplete 0.7.5b", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/seppesantens/MapComplete-Themes/main/OpenWindPowerMap/OpenWindPowerMap.json", + "comments_count": 3, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-17T10:05:45Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 0.0636084589693203, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106520703, + "host": "mapcomplete.osm.be", + "theme": "gh://seppesantens/mapcomplete-themes/main/openwindpowermap/openwindpowermap.json", + "imagery": "SPW_ORTHO_LAST", + "language": "en", + "theme-creator": "Seppe Santens" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.016924400000001, + 50.3442427 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Erin76", + "uid": "8982454", + "editor": "MapComplete 0.7.5b", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/seppesantens/MapComplete-Themes/main/OpenWindPowerMap/OpenWindPowerMap.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-17T08:58:24Z", + "reviewed_features": [], + "create": 0, + "modify": 20, + "delete": 0, + "area": 0.00646570500815011, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106516180, + "host": "mapcomplete.osm.be", + "theme": "gh://seppesantens/mapcomplete-themes/main/openwindpowermap/openwindpowermap.json", + "imagery": "osm", + "language": "en", + "theme-creator": "Seppe Santens" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.62373295, + 51.197543350000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Feuerwehr Amt Putlitz-Berge", + "uid": "13580003", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-17T08:56:29Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106516051, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 12.0327356, + 53.2451823 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Maarten O", + "uid": "13326535", + "editor": "MapComplete 0.7.5b", + "comment": "Adding data with #MapComplete for theme #aed_brugge", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-17T08:39:28Z", + "reviewed_features": [], + "create": 10, + "modify": 40, + "delete": 0, + "area": 0.00430452029760043, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106514955, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "HDM_HOT", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2306443, + 51.2089972 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Maarten O", + "uid": "13326535", + "editor": "MapComplete 0.7.5b", + "comment": "Adding data with #MapComplete for theme #aed_brugge", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-17T07:22:32Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106509898, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "HDM_HOT", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1810248, + 51.1975359 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "ChristianA", + "uid": "429903", + "editor": "MapComplete 0.7.5b", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-17T06:17:58Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 5.30233679998538e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106505668, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 16.3636667, + 58.67330685 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.7.5a", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-17T03:19:33Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 4.71416399979953e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106496650, + "host": "pietervdvn.github.io", + "theme": "trees", + "imagery": "CyclOSM", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.73707425, + -33.5164379 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "waylink", + "uid": "12132256", + "editor": "MapComplete 0.7.5b", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-16T22:49:06Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 5.6473600001571e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106492683, + "host": "mapcomplete.osm.be", + "theme": "shops", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.61555725, + 51.1860527 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.7.5b", + "comment": "Adding data with #MapComplete for theme #skateparks", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-16T19:37:02Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106487346, + "host": "mapcomplete.osm.be", + "theme": "skateparks", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1982204, + 51.1872852 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-8812977059", + "osm_id": 8812977059, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8839766352", + "osm_id": 8839766352, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812977060", + "osm_id": 8812977060, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8839754061", + "osm_id": 8839754061, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8813001023", + "osm_id": 8813001023, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812977074", + "osm_id": 8812977074, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8813001046", + "osm_id": 8813001046, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8813001022", + "osm_id": 8813001022, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8770455199", + "osm_id": 8770455199, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8813001045", + "osm_id": 8813001045, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8770455195", + "osm_id": 8770455195, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8770455231", + "osm_id": 8770455231, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8839810276", + "osm_id": 8839810276, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8813001038", + "osm_id": 8813001038, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8813001097", + "osm_id": 8813001097, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8813001099", + "osm_id": 8813001099, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8813001037", + "osm_id": 8813001037, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8839775584", + "osm_id": 8839775584, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8839795993", + "osm_id": 8839795993, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8770455162", + "osm_id": 8770455162, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8770455163", + "osm_id": 8770455163, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8770455239", + "osm_id": 8770455239, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8770455299", + "osm_id": 8770455299, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8770455186", + "osm_id": 8770455186, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8770455197", + "osm_id": 8770455197, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8770455300", + "osm_id": 8770455300, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8770455296", + "osm_id": 8770455296, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8770455313", + "osm_id": 8770455313, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8839858770", + "osm_id": 8839858770, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8813001119", + "osm_id": 8813001119, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8813001108", + "osm_id": 8813001108, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8813001104", + "osm_id": 8813001104, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8770455295", + "osm_id": 8770455295, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8770455312", + "osm_id": 8770455312, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8770455314", + "osm_id": 8770455314, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8813001117", + "osm_id": 8813001117, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8839859503", + "osm_id": 8839859503, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8770455226", + "osm_id": 8770455226, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8839888057", + "osm_id": 8839888057, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8770455225", + "osm_id": 8770455225, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8839887166", + "osm_id": 8839887166, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8813001120", + "osm_id": 8813001120, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-7221184063", + "osm_id": 7221184063, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-7221184068", + "osm_id": 7221184068, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8813015858", + "osm_id": 8813015858, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-7221184073", + "osm_id": 7221184073, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8813001111", + "osm_id": 8813001111, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8839873143", + "osm_id": 8839873143, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-7221184072", + "osm_id": 7221184072, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812977065", + "osm_id": 8812977065, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8813015859", + "osm_id": 8813015859, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812977063", + "osm_id": 8812977063, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812977053", + "osm_id": 8812977053, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8818558656", + "osm_id": 8818558656, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8818558764", + "osm_id": 8818558764, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8818558651", + "osm_id": 8818558651, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8818558652", + "osm_id": 8818558652, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8818558765", + "osm_id": 8818558765, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8839926043", + "osm_id": 8839926043, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8818542890", + "osm_id": 8818542890, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8818446069", + "osm_id": 8818446069, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8839959178", + "osm_id": 8839959178, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8818542870", + "osm_id": 8818542870, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8818542865", + "osm_id": 8818542865, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8818542860", + "osm_id": 8818542860, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8818542863", + "osm_id": 8818542863, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8818542864", + "osm_id": 8818542864, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8818446070", + "osm_id": 8818446070, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8818511903", + "osm_id": 8818511903, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8818446044", + "osm_id": 8818446044, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "Jose Luis Infante", + "uid": "126203", + "editor": "MapComplete 0.7.5b", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete1.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-16T18:14:23Z", + "reviewed_features": [], + "create": 25, + "modify": 83, + "delete": 0, + "area": 0.0000294387985500018, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106484165, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "imagery": "HDM_HOT", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.22210595, + 41.45090255 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "A_Giese", + "uid": "13575554", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-16T17:59:10Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106483648, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.7827296, + 53.1345328 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "gnuntoo", + "uid": "1843426", + "editor": "MapComplete 0.7.5a", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-16T17:33:28Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106482783, + "host": "pietervdvn.github.io", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -149.72364305000002, + 61.2029519 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Globelotter", + "uid": "6141733", + "editor": "MapComplete 0.7.5b", + "comment": "Adding data with #MapComplete for theme #speelplekken", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-16T14:05:29Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000393717997999459, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106473431, + "host": "mapcomplete.osm.be", + "theme": "speelplekken", + "imagery": "CartoDB.Positron", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.5164848, + 51.130294649999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.7.5b", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/railway", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-16T13:42:39Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106472157, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/railway", + "imagery": "osm", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.5988948, + -34.6451119 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Maarten O", + "uid": "13326535", + "editor": "MapComplete 0.7.5b", + "comment": "Adding data with #MapComplete for theme #aed_brugge", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-16T12:28:35Z", + "reviewed_features": [], + "create": 1, + "modify": 8, + "delete": 0, + "area": 0.000611350483549981, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106467529, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "HDM_HOT", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.22363235, + 51.30519845 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "LySioS", + "uid": "11579673", + "editor": "MapComplete 0.7.5b", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-16T12:28:00Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106467492, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "osm", + "language": "fr", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.9357654, + 42.6803247 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Etdonc", + "uid": "13573147", + "editor": "MapComplete 0.7.5b", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-16T10:54:26Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106460720, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3331087, + 50.8765703 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Wim L", + "uid": "223681", + "editor": "MapComplete 0.7.5b", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-16T01:58:18Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106428757, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -122.36437325, + 47.6833503 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Wim L", + "uid": "223681", + "editor": "MapComplete 0.7.5b", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-16T00:18:17Z", + "reviewed_features": [], + "create": 2, + "modify": 3, + "delete": 0, + "area": 3.98276699991533e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106427529, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -122.34921865, + 47.683291600000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "waylink", + "uid": "12132256", + "editor": "MapComplete 0.7.5b", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-15T20:43:47Z", + "reviewed_features": [], + "create": 1, + "modify": 7, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106423177, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.6155697, + 51.1854563 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-8744209672", + "osm_id": 8744209672, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8744209663", + "osm_id": 8744209663, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8744209682", + "osm_id": 8744209682, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8744209684", + "osm_id": 8744209684, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8744209674", + "osm_id": 8744209674, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8744209675", + "osm_id": 8744209675, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8744209680", + "osm_id": 8744209680, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8744209652", + "osm_id": 8744209652, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8836746573", + "osm_id": 8836746573, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8744209485", + "osm_id": 8744209485, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807595813", + "osm_id": 8807595813, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807595812", + "osm_id": 8807595812, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807652528", + "osm_id": 8807652528, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8836732649", + "osm_id": 8836732649, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807595809", + "osm_id": 8807595809, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8836769897", + "osm_id": 8836769897, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807652417", + "osm_id": 8807652417, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807652536", + "osm_id": 8807652536, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807652533", + "osm_id": 8807652533, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8744209607", + "osm_id": 8744209607, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807595810", + "osm_id": 8807595810, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8836771220", + "osm_id": 8836771220, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8744209578", + "osm_id": 8744209578, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807595816", + "osm_id": 8807595816, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8836748723", + "osm_id": 8836748723, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807595805", + "osm_id": 8807595805, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807595794", + "osm_id": 8807595794, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807595774", + "osm_id": 8807595774, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807595775", + "osm_id": 8807595775, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807657467", + "osm_id": 8807657467, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807595808", + "osm_id": 8807595808, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8744209673", + "osm_id": 8744209673, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807657493", + "osm_id": 8807657493, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807595776", + "osm_id": 8807595776, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807665527", + "osm_id": 8807665527, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8836769678", + "osm_id": 8836769678, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807595779", + "osm_id": 8807595779, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807665567", + "osm_id": 8807665567, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807652472", + "osm_id": 8807652472, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807665522", + "osm_id": 8807665522, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807652464", + "osm_id": 8807652464, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8836760785", + "osm_id": 8836760785, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807665632", + "osm_id": 8807665632, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807665580", + "osm_id": 8807665580, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807657451", + "osm_id": 8807657451, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807665611", + "osm_id": 8807665611, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807665640", + "osm_id": 8807665640, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807665625", + "osm_id": 8807665625, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807665589", + "osm_id": 8807665589, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807665624", + "osm_id": 8807665624, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807665553", + "osm_id": 8807665553, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807652465", + "osm_id": 8807652465, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8836810564", + "osm_id": 8836810564, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807665622", + "osm_id": 8807665622, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807665584", + "osm_id": 8807665584, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8836817054", + "osm_id": 8836817054, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8836790876", + "osm_id": 8836790876, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807665585", + "osm_id": 8807665585, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8836783173", + "osm_id": 8836783173, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807665643", + "osm_id": 8807665643, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807665581", + "osm_id": 8807665581, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807665634", + "osm_id": 8807665634, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807665591", + "osm_id": 8807665591, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807665582", + "osm_id": 8807665582, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807665588", + "osm_id": 8807665588, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807652418", + "osm_id": 8807652418, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8836820132", + "osm_id": 8836820132, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807665596", + "osm_id": 8807665596, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807665612", + "osm_id": 8807665612, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807595777", + "osm_id": 8807595777, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807665626", + "osm_id": 8807665626, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807652448", + "osm_id": 8807652448, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807652445", + "osm_id": 8807652445, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807665649", + "osm_id": 8807665649, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807652447", + "osm_id": 8807652447, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807652441", + "osm_id": 8807652441, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8836817374", + "osm_id": 8836817374, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812650446", + "osm_id": 8812650446, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807652442", + "osm_id": 8807652442, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8836838073", + "osm_id": 8836838073, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812650494", + "osm_id": 8812650494, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807665618", + "osm_id": 8807665618, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812650428", + "osm_id": 8812650428, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8836828608", + "osm_id": 8836828608, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812650438", + "osm_id": 8812650438, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807652434", + "osm_id": 8807652434, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8836834897", + "osm_id": 8836834897, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812650451", + "osm_id": 8812650451, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812650455", + "osm_id": 8812650455, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812650457", + "osm_id": 8812650457, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812650453", + "osm_id": 8812650453, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8811758186", + "osm_id": 8811758186, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8811758185", + "osm_id": 8811758185, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8811431605", + "osm_id": 8811431605, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "Jose Luis Infante", + "uid": "126203", + "editor": "MapComplete 0.7.5b", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete1.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-15T18:47:07Z", + "reviewed_features": [], + "create": 18, + "modify": 87, + "delete": 0, + "area": 0.000106573120910057, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106419096, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "imagery": "HDM_HOT", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.24250505, + 41.44191085 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.8.0", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-15T14:03:56Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106406539, + "host": "192.168.88.253:1234", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2245804, + 51.215657 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Maarten O", + "uid": "13326535", + "editor": "MapComplete 0.7.5b", + "comment": "Adding data with #MapComplete for theme #aed_brugge", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-15T11:31:56Z", + "reviewed_features": [], + "create": 4, + "modify": 31, + "delete": 0, + "area": 0.00103065142663995, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106397570, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "HDM_HOT", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1937398000000004, + 51.33658905 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.7.5b", + "comment": "Adding data with #MapComplete for theme #fietsstraten", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-15T11:21:35Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.0172293330474014, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106396842, + "host": "mapcomplete.osm.be", + "theme": "fietsstraten", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete, joost schouppe" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.0414097, + 50.9205177 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "beardhatcode", + "uid": "5439560", + "editor": "MapComplete 0.7.5b", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-15T09:55:20Z", + "reviewed_features": [], + "create": 0, + "modify": 8, + "delete": 0, + "area": 6.26364089996515e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106390470, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.68579225, + 50.87367895 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "beardhatcode", + "uid": "5439560", + "editor": "MapComplete 0.7.5b", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-15T09:17:41Z", + "reviewed_features": [], + "create": 3, + "modify": 5, + "delete": 0, + "area": 1.58960319998113e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106387614, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.6634291, + 50.8672283 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Maarten O", + "uid": "13326535", + "editor": "MapComplete 0.7.5b", + "comment": "Adding data with #MapComplete for theme #aed_brugge", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-15T09:09:29Z", + "reviewed_features": [], + "create": 4, + "modify": 13, + "delete": 0, + "area": 0.00000132264351998633, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106386975, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "HDM_HOT", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2404108999999996, + 51.210834750000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "beardhatcode", + "uid": "5439560", + "editor": "MapComplete 0.7.5b", + "comment": "Adding data with #MapComplete for theme #sport_pitches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-15T08:52:56Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 8.08012170001285e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106385826, + "host": "mapcomplete.osm.be", + "theme": "sport_pitches", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.66315185, + 50.86702405 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Maarten O", + "uid": "13326535", + "editor": "MapComplete 0.7.5b", + "comment": "Adding data with #MapComplete for theme #aed_brugge", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-15T07:38:39Z", + "reviewed_features": [], + "create": 3, + "modify": 14, + "delete": 0, + "area": 0.000407656466320098, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106380928, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "HDM_HOT", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.20948705, + 51.1967086 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "gnuntoo", + "uid": "1843426", + "editor": "MapComplete 0.7.5b", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-14T22:24:39Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106360002, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -149.75799404999998, + 61.2061611 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "gnuntoo", + "uid": "1843426", + "editor": "MapComplete 0.7.5a", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-14T20:53:26Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106357695, + "host": "pietervdvn.github.io", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -149.7236431, + 61.2029519 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "GrietVH", + "uid": "13560807", + "editor": "MapComplete 0.7.5b", + "comment": "Adding data with #MapComplete for theme #facadegardens", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-14T19:35:51Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106355182, + "host": "mapcomplete.osm.be", + "theme": "facadegardens", + "imagery": "osm", + "language": "nl", + "theme-creator": "joost schouppe; stla" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4830905, + 51.0398257 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-3946962877", + "osm_id": 3946962877, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8833127483", + "osm_id": 8833127483, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946964983", + "osm_id": 3946964983, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946965070", + "osm_id": 3946965070, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946962237", + "osm_id": 3946962237, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946964944", + "osm_id": 3946964944, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8706606922", + "osm_id": 8706606922, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946964925", + "osm_id": 3946964925, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8811637940", + "osm_id": 8811637940, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8811637956", + "osm_id": 8811637956, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946964985", + "osm_id": 3946964985, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8811623059", + "osm_id": 8811623059, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8833236126", + "osm_id": 8833236126, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8811637945", + "osm_id": 8811637945, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8811637958", + "osm_id": 8811637958, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8811637939", + "osm_id": 8811637939, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8811623053", + "osm_id": 8811623053, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8811715680", + "osm_id": 8811715680, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8811637944", + "osm_id": 8811637944, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946965060", + "osm_id": 3946965060, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8811715684", + "osm_id": 8811715684, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8811637875", + "osm_id": 8811637875, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8811637900", + "osm_id": 8811637900, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8811503022", + "osm_id": 8811503022, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8811503018", + "osm_id": 8811503018, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8706607068", + "osm_id": 8706607068, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8811637941", + "osm_id": 8811637941, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8811448673", + "osm_id": 8811448673, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8833279391", + "osm_id": 8833279391, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8811448703", + "osm_id": 8811448703, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8833285186", + "osm_id": 8833285186, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8811448702", + "osm_id": 8811448702, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8833249623", + "osm_id": 8833249623, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8811623072", + "osm_id": 8811623072, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8811448669", + "osm_id": 8811448669, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8833293662", + "osm_id": 8833293662, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8811448692", + "osm_id": 8811448692, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8811448701", + "osm_id": 8811448701, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8811448663", + "osm_id": 8811448663, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8811448700", + "osm_id": 8811448700, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8811431583", + "osm_id": 8811431583, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8811448734", + "osm_id": 8811448734, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8811448674", + "osm_id": 8811448674, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8811637882", + "osm_id": 8811637882, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8811448735", + "osm_id": 8811448735, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807942852", + "osm_id": 8807942852, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8811431589", + "osm_id": 8811431589, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8811431591", + "osm_id": 8811431591, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807942882", + "osm_id": 8807942882, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807942807", + "osm_id": 8807942807, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8833300761", + "osm_id": 8833300761, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8811431590", + "osm_id": 8811431590, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807942883", + "osm_id": 8807942883, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807942884", + "osm_id": 8807942884, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807942809", + "osm_id": 8807942809, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807942805", + "osm_id": 8807942805, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8811448730", + "osm_id": 8811448730, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807942885", + "osm_id": 8807942885, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8811431584", + "osm_id": 8811431584, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8811431588", + "osm_id": 8811431588, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807942849", + "osm_id": 8807942849, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807942910", + "osm_id": 8807942910, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807942888", + "osm_id": 8807942888, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807942854", + "osm_id": 8807942854, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807942855", + "osm_id": 8807942855, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807942951", + "osm_id": 8807942951, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807942948", + "osm_id": 8807942948, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807942944", + "osm_id": 8807942944, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807942922", + "osm_id": 8807942922, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807942938", + "osm_id": 8807942938, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807942804", + "osm_id": 8807942804, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807921897", + "osm_id": 8807921897, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807942950", + "osm_id": 8807942950, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807942924", + "osm_id": 8807942924, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807942905", + "osm_id": 8807942905, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807942886", + "osm_id": 8807942886, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807921881", + "osm_id": 8807921881, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807942887", + "osm_id": 8807942887, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807942837", + "osm_id": 8807942837, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807942942", + "osm_id": 8807942942, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807942941", + "osm_id": 8807942941, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807891010", + "osm_id": 8807891010, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807921837", + "osm_id": 8807921837, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807870600", + "osm_id": 8807870600, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807921895", + "osm_id": 8807921895, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8744209136", + "osm_id": 8744209136, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8744209158", + "osm_id": 8744209158, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807942907", + "osm_id": 8807942907, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8744209160", + "osm_id": 8744209160, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807870601", + "osm_id": 8807870601, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8744209135", + "osm_id": 8744209135, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8744208879", + "osm_id": 8744208879, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8744209159", + "osm_id": 8744209159, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8744209146", + "osm_id": 8744209146, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8744209148", + "osm_id": 8744209148, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807921762", + "osm_id": 8807921762, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8744208881", + "osm_id": 8744208881, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8796786712", + "osm_id": 8796786712, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "Jose Luis Infante", + "uid": "126203", + "editor": "MapComplete 0.7.5b", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete1.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-14T18:15:37Z", + "reviewed_features": [], + "create": 16, + "modify": 99, + "delete": 0, + "area": 0.000195342278760016, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106352086, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "imagery": "HDM_HOT", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.23578025, + 41.4432731 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "WinstonSmith", + "uid": "36030", + "editor": "MapComplete 0.7.5b", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-14T17:13:28Z", + "reviewed_features": [], + "create": 3, + "modify": 8, + "delete": 0, + "area": 5.56663840002724e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106349807, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.359883700000001, + 44.497995700000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + }, + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-8811431538", + "osm_id": 8811431538, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "JBadalona", + "uid": "13507795", + "editor": "MapComplete 0.7.5b", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete1.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-14T16:00:19Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.000002033021080004, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106346957, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "imagery": "HDM_HOT", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2398496000000003, + 41.44005855 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Maarten O", + "uid": "13326535", + "editor": "MapComplete 0.7.5b", + "comment": "Adding data with #MapComplete for theme #aed_brugge", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-14T14:32:43Z", + "reviewed_features": [], + "create": 8, + "modify": 34, + "delete": 0, + "area": 0.0058730880600001, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106343083, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "HDM_HOT", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2401533999999996, + 51.2314305 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.7.5b", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-14T13:59:46Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106341586, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2199034, + 51.2157079 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.7.5b", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/railway", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-14T13:32:09Z", + "reviewed_features": [], + "create": 0, + "modify": 9, + "delete": 0, + "area": 0.00459789261036064, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106340240, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/railway", + "imagery": "osm", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.61445435, + -34.652380300000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "sebkur", + "uid": "22917", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-14T12:49:30Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106338046, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 14.6320188, + 51.7466482 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "JBadalona", + "uid": "13507795", + "editor": "MapComplete 0.7.5b", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete1.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-14T11:45:38Z", + "reviewed_features": [], + "create": 7, + "modify": 8, + "delete": 0, + "area": 8.8923088000464e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106334094, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "imagery": "HDM_HOT", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.23988455, + 41.439640499999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + }, + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-8831834734", + "osm_id": 8831834734, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8744207969", + "osm_id": 8744207969, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "montse ma", + "uid": "13553228", + "editor": "MapComplete 0.7.5b", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete1.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-14T11:42:42Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 0.00000336052287000709, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106333893, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "imagery": "HDM_HOT", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.25119265, + 41.45159155 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Maarten O", + "uid": "13326535", + "editor": "MapComplete 0.7.5b", + "comment": "Adding data with #MapComplete for theme #aed_brugge", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-14T11:08:06Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106331264, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "HDM_HOT", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2119413, + 51.2161752 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + }, + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-8811431663", + "osm_id": 8811431663, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8811431665", + "osm_id": 8811431665, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8811431645", + "osm_id": 8811431645, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8811431644", + "osm_id": 8811431644, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807960807", + "osm_id": 8807960807, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "JBadalona", + "uid": "13507795", + "editor": "MapComplete 0.7.5b", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete1.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-14T09:48:08Z", + "reviewed_features": [], + "create": 0, + "modify": 8, + "delete": 0, + "area": 8.8548075000067e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106325499, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "imagery": "HDM_HOT", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.24206565, + 41.43956195 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "nicolambo", + "uid": "12403569", + "editor": "MapComplete 0.7.5b", + "comment": "Adding data with #MapComplete for theme #facadegardens", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-13T21:43:02Z", + "reviewed_features": [], + "create": 1, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106298509, + "host": "mapcomplete.osm.be", + "theme": "facadegardens", + "imagery": "osm", + "language": "nl", + "theme-creator": "joost schouppe; stla" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.474571, + 51.0331244 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.7.5a", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-13T20:36:54Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 1.033151499986e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106296949, + "host": "pietervdvn.github.io", + "theme": "trees", + "imagery": "osmfr", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.57533355, + -33.60786365 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + }, + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-8829810955", + "osm_id": 8829810955, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "montse ma", + "uid": "13553228", + "editor": "MapComplete 0.7.5b", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete1.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-13T16:40:52Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106289865, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "imagery": "HDM_HOT", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2516957, + 41.4516107 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "WinstonSmith", + "uid": "36030", + "editor": "MapComplete 0.7.5b", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-13T16:30:11Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106289501, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 12.9455588, + 41.5384073 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Nickrds09", + "uid": "966535", + "editor": "MapComplete 0.7.5b", + "comment": "Adding data with #MapComplete for theme #streetlamps", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-13T02:14:14Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 2.83202399988106e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106269713, + "host": "mapcomplete.osm.be", + "theme": "streetlamps", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 121.5593782, + 13.9631211 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.7.5a", + "comment": "Adding data with #MapComplete for theme #fietsstraten", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-12T20:56:44Z", + "reviewed_features": [], + "create": 0, + "modify": 6, + "delete": 0, + "area": 0.00101939491107993, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106265939, + "host": "pietervdvn.github.io", + "theme": "fietsstraten", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.5446573, + 51.015526699999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-3944732524", + "osm_id": 3944732524, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3944732743", + "osm_id": 3944732743, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3944732925", + "osm_id": 3944732925, + "reasons": [ + 43 + ], + "version": 4, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3944732874", + "osm_id": 3944732874, + "reasons": [ + 43 + ], + "version": 4, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "Jose Luis Infante", + "uid": "126203", + "editor": "MapComplete 0.7.5b", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete1.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-12T18:35:02Z", + "reviewed_features": [], + "create": 0, + "modify": 6, + "delete": 0, + "area": 1.89613070000915e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106262532, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "imagery": "HDM_HOT", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.21991605, + 41.43618465 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "FlawOfAverages", + "uid": "4988361", + "editor": "MapComplete 0.7.5b", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-12T16:50:58Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106259611, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.1252923, + 57.52189 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "FlawOfAverages", + "uid": "4988361", + "editor": "MapComplete 0.7.5b", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-12T16:30:41Z", + "reviewed_features": [], + "create": 0, + "modify": 19, + "delete": 0, + "area": 0.00159983407547989, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106258920, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.1217972, + 57.158449700000006 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "hke2912", + "uid": "5154951", + "editor": "MapComplete 0.7.5a", + "comment": "Adding data with #MapComplete for theme #infotafel", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-12T10:42:27Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106248402, + "host": "pietervdvn.github.io", + "theme": "infotafel", + "imagery": "osm", + "language": "de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.9772384, + 51.450567 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-3944733307", + "osm_id": 3944733307, + "reasons": [ + 43 + ], + "version": 7, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "Jose Luis Infante", + "uid": "126203", + "editor": "MapComplete 0.7.5b", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete1.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-12T10:19:31Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106247654, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "imagery": "HDM_HOT", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2181348, + 41.4369497 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Koen Rijnsent", + "uid": "4569696", + "editor": "MapComplete 0.7.5b", + "comment": "Adding data with #MapComplete for theme #artworks", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-12T08:40:09Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106244653, + "host": "mapcomplete.osm.be", + "theme": "artworks", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.1200299, + 52.0889095 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Brandoberinspektor Erdmann", + "uid": "13364061", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-11T19:00:27Z", + "reviewed_features": [], + "create": 6, + "modify": 4, + "delete": 0, + "area": 0.00489549907988024, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106229310, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.8176342, + 53.15545185 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Kalepom", + "uid": "392288", + "editor": "MapComplete 0.7.5b", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-11T16:41:23Z", + "reviewed_features": [], + "create": 0, + "modify": 12, + "delete": 0, + "area": 9.43616200009493e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106225224, + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "osm", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.5354039, + 47.22013895 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Maarten O", + "uid": "13326535", + "editor": "MapComplete 0.7.5b", + "comment": "Adding data with #MapComplete for theme #aed_brugge", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-11T13:49:49Z", + "reviewed_features": [], + "create": 1, + "modify": 11, + "delete": 0, + "area": 0.0000672114655999949, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106218338, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "HDM_HOT", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2224668999999997, + 51.1817236 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Maarten O", + "uid": "13326535", + "editor": "MapComplete 0.7.5b", + "comment": "Adding data with #MapComplete for theme #aed_brugge", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-11T13:47:05Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106218210, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "HDM_HOT", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2177214, + 51.1852644 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Maarten O", + "uid": "13326535", + "editor": "MapComplete 0.7.5b", + "comment": "Adding data with #MapComplete for theme #aed_brugge", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-11T10:11:57Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106206655, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "HDM_HOT", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2093006, + 51.2504045 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Maarten O", + "uid": "13326535", + "editor": "MapComplete 0.7.5b", + "comment": "Adding data with #MapComplete for theme #aed_brugge", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-11T10:05:54Z", + "reviewed_features": [], + "create": 1, + "modify": 6, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106206319, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "HDM_HOT", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2093006, + 51.2504045 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Maarten O", + "uid": "13326535", + "editor": "MapComplete 0.7.5b", + "comment": "Adding data with #MapComplete for theme #aed_brugge", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-11T08:18:25Z", + "reviewed_features": [], + "create": 2, + "modify": 13, + "delete": 0, + "area": 0.0000209571895800057, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106199557, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "Mapbox", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2193945, + 51.20038115 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Maarten O", + "uid": "13326535", + "editor": "MapComplete 0.7.5b", + "comment": "Adding data with #MapComplete for theme #aed_brugge", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-11T08:14:58Z", + "reviewed_features": [], + "create": 1, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106199356, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "Mapbox", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2207564, + 51.1968115 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Maarten O", + "uid": "13326535", + "editor": "MapComplete 0.7.5b", + "comment": "Adding data with #MapComplete for theme #aed_brugge", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-10T19:36:15Z", + "reviewed_features": [], + "create": 1, + "modify": 6, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106174805, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "HDM_HOT", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2256675, + 51.2009292 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.7.5a", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-10T14:47:33Z", + "reviewed_features": [], + "create": 1, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106162717, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2358518, + 50.7362727 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.7.5a", + "comment": "Adding data with #MapComplete for theme #fietsstraten", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-10T13:48:05Z", + "reviewed_features": [], + "create": 0, + "modify": 6, + "delete": 0, + "area": 0.0799440740714425, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106160156, + "host": "mapcomplete.osm.be", + "theme": "fietsstraten", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete, joost schouppe" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.5288760999999997, + 51.1046504 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.7.5a", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/railway", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-10T13:24:23Z", + "reviewed_features": [], + "create": 1, + "modify": 21, + "delete": 0, + "area": 0.00252049350432013, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106159036, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/railway", + "imagery": "EsriWorldImagery", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.66589385, + -34.6542771 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "sebkur", + "uid": "22917", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-10T12:54:01Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106157565, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 14.4111477, + 51.667655 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Maarten O", + "uid": "13326535", + "editor": "MapComplete 0.7.5a", + "comment": "Adding data with #MapComplete for theme #aed_brugge", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-10T12:05:20Z", + "reviewed_features": [], + "create": 5, + "modify": 29, + "delete": 0, + "area": 0.000189944582519961, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106155038, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "HDM_HOT", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2198309, + 51.210788050000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.7.5a", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-10T09:57:58Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106146705, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2837828, + 50.7132916 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Maarten O", + "uid": "13326535", + "editor": "MapComplete 0.7.5a", + "comment": "Adding data with #MapComplete for theme #aed_brugge", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-10T07:13:30Z", + "reviewed_features": [], + "create": 1, + "modify": 9, + "delete": 0, + "area": 0.000187980272219982, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106135263, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "HDM_HOT", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2165451000000003, + 51.201877550000006 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "guido-vh", + "uid": "12749743", + "editor": "MapComplete 0.7.5a", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-09T18:42:28Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106112177, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.2524009, + 51.956147 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.7.5a", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/railway", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-09T14:22:32Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 6.77909999756847e-10, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106101463, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/railway", + "imagery": "osm", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.49182545, + -34.54722945 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "guido-vh", + "uid": "12749743", + "editor": "MapComplete 0.7.5a", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-09T12:58:34Z", + "reviewed_features": [], + "create": 8, + "modify": 16, + "delete": 0, + "area": 0.00132695962624003, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106097152, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.1598628, + 51.953407299999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "WinstonSmith", + "uid": "36030", + "editor": "MapComplete 0.7.5a", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-09T11:53:27Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106093301, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.3497738, + 44.5030433 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.7.5a", + "comment": "Adding data with #MapComplete for theme #fietsstraten", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-09T11:22:41Z", + "reviewed_features": [], + "create": 0, + "modify": 16, + "delete": 0, + "area": 0.0496157636274295, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106091074, + "host": "mapcomplete.osm.be", + "theme": "fietsstraten", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete, joost schouppe" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.06109805, + 51.03158645 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.7.5a", + "comment": "Adding data with #MapComplete for theme #fietsstraten", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-09T06:32:55Z", + "reviewed_features": [], + "create": 0, + "modify": 13, + "delete": 0, + "area": 0.00408401316960023, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106072658, + "host": "mapcomplete.osm.be", + "theme": "fietsstraten", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete, joost schouppe" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.7997411999999997, + 51.1744513 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Lawchen", + "uid": "553964", + "editor": "MapComplete 0.7.5a", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-09T05:47:29Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106070096, + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "osm", + "language": "zh_Hant", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 121.5420542, + 24.9968233 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.7.5a", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-08T22:08:54Z", + "reviewed_features": [], + "create": 3, + "modify": 4, + "delete": 0, + "area": 0.00000163167569999259, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106058676, + "host": "pietervdvn.github.io", + "theme": "trees", + "imagery": "Mapbox", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.75982205, + -33.4864679 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.7.5a", + "comment": "Adding data with #MapComplete for theme #ghostbikes", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-08T22:02:10Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106058511, + "host": "pietervdvn.github.io", + "theme": "ghostbikes", + "imagery": "CartoDB.Positron", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.6642932, + -33.5369547 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "mareksch", + "uid": "12935906", + "editor": "MapComplete 0.7.5a", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-08T19:50:36Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106054883, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "imagery": "HDM_HOT", + "language": "en", + "theme-creator": "Erwin Olario" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 16.6944958, + 49.2065668 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + }, + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-8811797611", + "osm_id": 8811797611, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "JBadalona", + "uid": "13507795", + "editor": "MapComplete 0.7.5a", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete1.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-08T19:43:19Z", + "reviewed_features": [], + "create": 2, + "modify": 3, + "delete": 0, + "area": 1.22457750003222e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106054597, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "imagery": "HDM_HOT", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.23953945, + 41.43921375 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.7.5a", + "comment": "Adding data with #MapComplete for theme #fietsstraten", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-08T19:31:41Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 0.000367118790999931, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106054181, + "host": "mapcomplete.osm.be", + "theme": "fietsstraten", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete, joost schouppe" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.659544, + 51.112606850000006 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "sebkur", + "uid": "22917", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-08T18:03:20Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106051121, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 14.6425298, + 51.7474555 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.7.5a", + "comment": "Adding data with #MapComplete for theme #fietsstraten", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-08T17:49:50Z", + "reviewed_features": [], + "create": 0, + "modify": 9, + "delete": 0, + "area": 0.0000139499830199941, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106050573, + "host": "pietervdvn.github.io", + "theme": "fietsstraten", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.8635547, + 51.033286450000006 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.7.5a", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-08T16:49:56Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106047941, + "host": "pietervdvn.github.io", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2198846, + 51.2157082 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.7.5a", + "comment": "Adding data with #MapComplete for theme #fietsstraten", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-08T15:59:55Z", + "reviewed_features": [], + "create": 0, + "modify": 26, + "delete": 0, + "area": 0.0000344295267000236, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106045737, + "host": "pietervdvn.github.io", + "theme": "fietsstraten", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.8604228000000003, + 51.03445105 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "flo2154", + "uid": "348648", + "editor": "MapComplete 0.7.5", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-08T15:17:10Z", + "reviewed_features": [], + "create": 2, + "modify": 8, + "delete": 0, + "area": 0.0000112135430499913, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106043773, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "de", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.78210735, + 48.10966005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.7.5", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-08T15:11:04Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106043486, + "host": "pietervdvn.github.io", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2198712, + 51.2157065 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Peter Elderson", + "uid": "7103674", + "editor": "MapComplete 0.7.5", + "comment": "Adding data with #MapComplete for theme #wandelknooppunten", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-08T14:31:55Z", + "reviewed_features": [], + "create": 0, + "modify": 23, + "delete": 0, + "area": 0.00223185254137998, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106041609, + "host": "mapcomplete.osm.be", + "theme": "wandelknooppunten", + "imagery": "osm", + "language": "nl", + "theme-creator": "Peter Elderson" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.21332315, + 51.357829100000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.7.5", + "comment": "Adding data with #MapComplete for theme #fietsstraten", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-08T13:58:11Z", + "reviewed_features": [], + "create": 0, + "modify": 12, + "delete": 0, + "area": 0.0648750359569194, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106040090, + "host": "mapcomplete.osm.be", + "theme": "fietsstraten", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete, joost schouppe" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.0196522999999997, + 50.91703675 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.7.5", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/railway", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-08T13:40:31Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106039166, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/railway", + "imagery": "osm", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.598192, + -34.645163 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Peter Elderson", + "uid": "7103674", + "editor": "MapComplete 0.7.5", + "comment": "Adding data with #MapComplete for theme #wandelknooppunten", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-08T13:37:12Z", + "reviewed_features": [], + "create": 1, + "modify": 22, + "delete": 0, + "area": 0.00750502886369999, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106039020, + "host": "mapcomplete.osm.be", + "theme": "wandelknooppunten", + "imagery": "osm", + "language": "en", + "theme-creator": "Peter Elderson" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.26063735, + 51.314180699999994 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "hke2912", + "uid": "5154951", + "editor": "MapComplete 0.7.5", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-08T12:38:39Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106035974, + "host": "pietervdvn.github.io", + "theme": "benches", + "imagery": "osm", + "language": "de", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.9140444, + 52.5125487 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "hke2912", + "uid": "5154951", + "editor": "MapComplete 0.7.5", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-08T12:31:51Z", + "reviewed_features": [], + "create": 6, + "modify": 9, + "delete": 0, + "area": 0.00000960950448002223, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106035531, + "host": "pietervdvn.github.io", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "de", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.9142402, + 52.5115096 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + }, + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-8811431673", + "osm_id": 8811431673, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8811431677", + "osm_id": 8811431677, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8811431674", + "osm_id": 8811431674, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "JBadalona", + "uid": "13507795", + "editor": "MapComplete 0.7.5", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete1.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-08T11:44:45Z", + "reviewed_features": [], + "create": 0, + "modify": 6, + "delete": 0, + "area": 3.76399999998925e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106032433, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "imagery": "HDM_HOT", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2402151, + 41.44001605 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Maarten O", + "uid": "13326535", + "editor": "MapComplete 0.7.5", + "comment": "Adding data with #MapComplete for theme #aed_brugge", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-08T11:32:19Z", + "reviewed_features": [], + "create": 3, + "modify": 15, + "delete": 0, + "area": 0.00041935779439995, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106031602, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "HDM_HOT", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1991914, + 51.1968607 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.7.5", + "comment": "Adding data with #MapComplete for theme #fietsstraten", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-08T11:27:51Z", + "reviewed_features": [], + "create": 0, + "modify": 25, + "delete": 0, + "area": 0.0153657695491605, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106031262, + "host": "mapcomplete.osm.be", + "theme": "fietsstraten", + "imagery": "CyclOSM", + "language": "nl", + "theme-creator": "MapComplete, joost schouppe" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.600244849999999, + 51.1025837 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Peter Elderson", + "uid": "7103674", + "editor": "MapComplete 0.7.5", + "comment": "Adding data with #MapComplete for theme #wandelknooppunten", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-08T11:24:28Z", + "reviewed_features": [], + "create": 2, + "modify": 69, + "delete": 0, + "area": 0.0125468875634399, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106031010, + "host": "mapcomplete.osm.be", + "theme": "wandelknooppunten", + "imagery": "osm", + "language": "en", + "theme-creator": "Peter Elderson" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.30232, + 51.3011769 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "pkoby", + "uid": "999995", + "editor": "MapComplete 0.7.5", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-08T11:00:17Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 2.81667999853649e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106029375, + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "osm", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -82.4353391, + 38.40942545 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + }, + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-8807921806", + "osm_id": 8807921806, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807925058", + "osm_id": 8807925058, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807921809", + "osm_id": 8807921809, + "reasons": [ + 43 + ], + "version": 4, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807921811", + "osm_id": 8807921811, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807925051", + "osm_id": 8807925051, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807921810", + "osm_id": 8807921810, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "Neusgs", + "uid": "4733200", + "editor": "MapComplete 0.7.5", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete1.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-08T09:42:07Z", + "reviewed_features": [], + "create": 0, + "modify": 11, + "delete": 0, + "area": 0.00000220783871999981, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106024174, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "imagery": "HDM_HOT", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2423232, + 41.4427319 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "4b696d", + "uid": "1420318", + "editor": "MapComplete 0.7.5", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-08T09:35:18Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 0.00000388517472001227, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106023713, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.733525, + 51.028718 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "4b696d", + "uid": "1420318", + "editor": "MapComplete 0.7.5", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-08T09:30:19Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.0000421068199999815, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106023369, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.73361425, + 51.025560600000006 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Nickrds09", + "uid": "966535", + "editor": "MapComplete 0.7.5", + "comment": "Adding data with #MapComplete for theme #streetlamps", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-08T09:05:27Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106021684, + "host": "mapcomplete.osm.be", + "theme": "streetlamps", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 121.5617332, + 13.9642587 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Nickrds09", + "uid": "966535", + "editor": "MapComplete 0.7.5", + "comment": "Adding data with #MapComplete for theme #streetlamps", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-08T08:41:21Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 1.60022399999422e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106020085, + "host": "mapcomplete.osm.be", + "theme": "streetlamps", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 121.5627184, + 13.964552300000001 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Maarten O", + "uid": "13326535", + "editor": "MapComplete 0.7.5", + "comment": "Adding data with #MapComplete for theme #aed_brugge", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-08T08:08:29Z", + "reviewed_features": [], + "create": 4, + "modify": 17, + "delete": 0, + "area": 0.000165989698199995, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106018086, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "HDM_HOT", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2195606, + 51.194798950000006 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.7.5", + "comment": "Adding data with #MapComplete for theme #fietsstraten", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-08T07:45:40Z", + "reviewed_features": [], + "create": 0, + "modify": 30, + "delete": 0, + "area": 0.519445340454995, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106016740, + "host": "mapcomplete.osm.be", + "theme": "fietsstraten", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete, joost schouppe" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.970667949999999, + 50.965588499999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 42, + "name": "Invalid tag modification" + } + ], + "tags": [], + "features": [ + { + "url": "relation-5583904", + "osm_id": 5583904, + "reasons": [ + 42 + ], + "version": 6, + "primary_tags": {} + } + ], + "user": "Peter Elderson", + "uid": "7103674", + "editor": "MapComplete 0.7.5", + "comment": "Adding data with #MapComplete for theme #wandelknooppunten", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-08T07:02:13Z", + "reviewed_features": [], + "create": 3, + "modify": 37, + "delete": 0, + "area": 0.00160111532728003, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106013851, + "host": "mapcomplete.osm.be", + "theme": "wandelknooppunten", + "imagery": "osm", + "language": "en", + "theme-creator": "Peter Elderson" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.4203578, + 51.2797844 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "sebkur", + "uid": "22917", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 1, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-08T05:10:23Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106006559, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 14.6330753, + 51.7437815 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.7.5", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/railway", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-08T01:36:40Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 106000128, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/railway", + "imagery": "osm", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.8656073, + -34.3709202 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.7.5", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/railway", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-08T00:49:17Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 3.68682719998656e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105999548, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/railway", + "imagery": "osm", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.643626100000006, + -34.652601149999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "NoiramK", + "uid": "4149326", + "editor": "MapComplete 0.7.5", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-07T23:46:56Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 3.57419999826466e-10, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105998691, + "host": "pietervdvn.github.io", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 18.9856387, + 69.64829945 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + }, + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-8807960748", + "osm_id": 8807960748, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "JBadalona", + "uid": "13507795", + "editor": "MapComplete 0.7.5", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete1.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-07T14:30:37Z", + "reviewed_features": [], + "create": 2, + "modify": 3, + "delete": 0, + "area": 3.43518999994191e-8, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105978830, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "imagery": "HDM_HOT", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.24270295, + 41.4410455 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + }, + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-8807930802", + "osm_id": 8807930802, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807930780", + "osm_id": 8807930780, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807930782", + "osm_id": 8807930782, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8744209326", + "osm_id": 8744209326, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8744209325", + "osm_id": 8744209325, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "JBadalona", + "uid": "13507795", + "editor": "MapComplete 0.7.5", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete1.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-07T14:19:23Z", + "reviewed_features": [], + "create": 1, + "modify": 8, + "delete": 0, + "area": 0.0000222860601600019, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105978238, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "imagery": "HDM_HOT", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2444271000000002, + 41.4427731 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + }, + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-8744209410", + "osm_id": 8744209410, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8744209403", + "osm_id": 8744209403, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8744209413", + "osm_id": 8744209413, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8744209405", + "osm_id": 8744209405, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8744209407", + "osm_id": 8744209407, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8744209360", + "osm_id": 8744209360, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8744209409", + "osm_id": 8744209409, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8744209362", + "osm_id": 8744209362, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8744209392", + "osm_id": 8744209392, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "JBadalona", + "uid": "13507795", + "editor": "MapComplete 0.7.5", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete1.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-07T14:09:06Z", + "reviewed_features": [], + "create": 2, + "modify": 14, + "delete": 0, + "area": 0.00000139107443999805, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105977655, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "imagery": "HDM_HOT", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2475017, + 41.44585205 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + }, + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-8744209365", + "osm_id": 8744209365, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8744209402", + "osm_id": 8744209402, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8744209375", + "osm_id": 8744209375, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "JBadalona", + "uid": "13507795", + "editor": "MapComplete 0.7.5", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete1.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-07T14:03:39Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 6.30314999998862e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105977341, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "imagery": "HDM_HOT", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2473639, + 41.4457751 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.7.5", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/railway", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-07T13:40:23Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105976109, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/railway", + "imagery": "osm", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.5963626, + -34.6450242 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "JBadalona", + "uid": "13507795", + "editor": "MapComplete 0.7.5", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete1.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-07T13:34:44Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105975823, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "imagery": "HDM_HOT", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.246541, + 41.4449598 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + }, + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-8807925122", + "osm_id": 8807925122, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807925127", + "osm_id": 8807925127, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8744209343", + "osm_id": 8744209343, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807925133", + "osm_id": 8807925133, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807942789", + "osm_id": 8807942789, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807925128", + "osm_id": 8807925128, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "JBadalona", + "uid": "13507795", + "editor": "MapComplete 0.7.5", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete1.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-07T13:22:07Z", + "reviewed_features": [], + "create": 1, + "modify": 11, + "delete": 0, + "area": 0.0000149088693599894, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105975143, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "imagery": "HDM_HOT", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2447127, + 41.4432125 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + }, + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-8811431712", + "osm_id": 8811431712, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8811431706", + "osm_id": 8811431706, + "reasons": [ + 43 + ], + "version": 7, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807960820", + "osm_id": 8807960820, + "reasons": [ + 43 + ], + "version": 4, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8811431703", + "osm_id": 8811431703, + "reasons": [ + 43 + ], + "version": 4, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8811742010", + "osm_id": 8811742010, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8811431711", + "osm_id": 8811431711, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8811431707", + "osm_id": 8811431707, + "reasons": [ + 43 + ], + "version": 4, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807960834", + "osm_id": 8807960834, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "JBadalona", + "uid": "13507795", + "editor": "MapComplete 0.7.5", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete1.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-07T12:57:40Z", + "reviewed_features": [], + "create": 1, + "modify": 14, + "delete": 0, + "area": 0.00000298222154999232, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105973903, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "imagery": "HDM_HOT", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.24159955, + 41.44022445 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + }, + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-8811431705", + "osm_id": 8811431705, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8811431704", + "osm_id": 8811431704, + "reasons": [ + 43 + ], + "version": 5, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8811431702", + "osm_id": 8811431702, + "reasons": [ + 43 + ], + "version": 4, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "JBadalona", + "uid": "13507795", + "editor": "MapComplete 0.7.5", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete1.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-07T12:50:15Z", + "reviewed_features": [], + "create": 0, + "modify": 15, + "delete": 0, + "area": 4.13643399999516e-8, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105973481, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "imagery": "HDM_HOT", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.24075985, + 41.439421 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.7.5", + "comment": "Adding data with #MapComplete for theme #fietsstraten", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-07T11:22:00Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.00000844307103998409, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105967734, + "host": "pietervdvn.github.io", + "theme": "fietsstraten", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.8979314, + 51.2443251 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Maarten O", + "uid": "13326535", + "editor": "MapComplete 0.7.5", + "comment": "Adding data with #MapComplete for theme #aed_brugge", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-07T11:05:38Z", + "reviewed_features": [], + "create": 5, + "modify": 29, + "delete": 0, + "area": 0.000358049561760125, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105966634, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "HDM_HOT", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2180064, + 51.2115635 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Supaplex", + "uid": "274857", + "editor": "MapComplete 0.7.5", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-07T09:53:54Z", + "reviewed_features": [], + "create": 1, + "modify": 5, + "delete": 0, + "area": 0.000161193489599945, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105961584, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 121.5348307, + 25.016046 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Supaplex", + "uid": "274857", + "editor": "MapComplete 0.7.5", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-07T09:41:04Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 3.9392751999824e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105960694, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 121.53882379999999, + 25.0042755 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Nuytinck", + "uid": "3719237", + "editor": "MapComplete 0.7.5", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-07T09:04:38Z", + "reviewed_features": [], + "create": 2, + "modify": 4, + "delete": 0, + "area": 0.0291171079525006, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105958093, + "host": "pietervdvn.github.io", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.82498285, + 51.1112813 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "JBadalona", + "uid": "13507795", + "editor": "MapComplete 0.7.5", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete1.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-07T08:59:26Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105957714, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "imagery": "HDM_HOT", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2409078, + 41.4395575 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + }, + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-8811043327", + "osm_id": 8811043327, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8811076019", + "osm_id": 8811076019, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "JBadalona", + "uid": "13507795", + "editor": "MapComplete 0.7.5", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete1.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-07T08:51:53Z", + "reviewed_features": [], + "create": 4, + "modify": 5, + "delete": 0, + "area": 4.6589399998865e-8, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105957149, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "imagery": "HDM_HOT", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.24044115, + 41.4390991 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + }, + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-3947007276", + "osm_id": 3947007276, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3947007284", + "osm_id": 3947007284, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "dapiam", + "uid": "13507845", + "editor": "MapComplete 0.7.5", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete1.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-07T08:37:35Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.0000677257237800493, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105956109, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "imagery": "HDM_HOT", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2214031, + 41.44005755 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + }, + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-8811018324", + "osm_id": 8811018324, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8811017870", + "osm_id": 8811017870, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8811031299", + "osm_id": 8811031299, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8811033191", + "osm_id": 8811033191, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "JBadalona", + "uid": "13507795", + "editor": "MapComplete 0.7.5", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete1.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-07T08:32:58Z", + "reviewed_features": [], + "create": 11, + "modify": 14, + "delete": 0, + "area": 2.64636120001984e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105955772, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "imagery": "HDM_HOT", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.24095945, + 41.4388925 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "mozita", + "uid": "8934185", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-07T08:15:04Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105954534, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.9653397, + 52.3725338 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "CroKimba", + "uid": "354984", + "editor": "MapComplete 0.7.5", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-07T07:32:55Z", + "reviewed_features": [], + "create": 1, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105951675, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 16.4357159, + 43.508435 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "CroKimba", + "uid": "354984", + "editor": "MapComplete 0.7.5", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-07T07:28:19Z", + "reviewed_features": [], + "create": 0, + "modify": 14, + "delete": 0, + "area": 7.99413999974617e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105951340, + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "osm", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 16.459122049999998, + 43.504516499999994 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Maarten O", + "uid": "13326535", + "editor": "MapComplete 0.7.5", + "comment": "Adding data with #MapComplete for theme #aed_brugge", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-07T07:10:56Z", + "reviewed_features": [], + "create": 1, + "modify": 5, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105950164, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "HDM_HOT", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2002831, + 51.1905568 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Nickrds09", + "uid": "966535", + "editor": "MapComplete 0.7.5", + "comment": "Adding data with #MapComplete for theme #streetlamps", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-07T05:15:52Z", + "reviewed_features": [], + "create": 1, + "modify": 17, + "delete": 0, + "area": 0.00000790507003998906, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105943292, + "host": "mapcomplete.osm.be", + "theme": "streetlamps", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 121.5602915, + 13.96404145 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.7.5", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-07T02:13:51Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.00209534957724953, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105937496, + "host": "pietervdvn.github.io", + "theme": "trees", + "imagery": "osm", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.52045785, + -33.57646745 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Nickrds09", + "uid": "966535", + "editor": "MapComplete 0.7.5", + "comment": "Adding data with #MapComplete for theme #streetlamps", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-07T01:09:44Z", + "reviewed_features": [], + "create": 12, + "modify": 39, + "delete": 0, + "area": 0.00000939122600004095, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105936609, + "host": "mapcomplete.osm.be", + "theme": "streetlamps", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 121.55977060000001, + 13.963536999999999 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.7.5", + "comment": "Adding data with #MapComplete for theme #fietsstraten", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-06T19:54:47Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.00000381812291999691, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105931217, + "host": "mapcomplete.osm.be", + "theme": "fietsstraten", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete, joost schouppe" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.25437095, + 50.7427329 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.7.5", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-06T17:38:07Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105926906, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2955177, + 50.7100694 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Nickrds09", + "uid": "966535", + "editor": "MapComplete 0.7.5", + "comment": "Adding data with #MapComplete for theme #streetlamps", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-06T14:36:09Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105919595, + "host": "mapcomplete.osm.be", + "theme": "streetlamps", + "imagery": "Mapbox", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 121.5628028, + 13.9645049 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Nickrds09", + "uid": "966535", + "editor": "MapComplete 0.7.5", + "comment": "Adding data with #MapComplete for theme #streetlamps", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-06T11:44:28Z", + "reviewed_features": [], + "create": 11, + "modify": 30, + "delete": 0, + "area": 0.0000036352090900038, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105913606, + "host": "mapcomplete.osm.be", + "theme": "streetlamps", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 121.55997805, + 13.96351355 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Nickrds09", + "uid": "966535", + "editor": "MapComplete 0.7.5", + "comment": "Adding data with #MapComplete for theme #streetlamps", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-06T11:39:21Z", + "reviewed_features": [], + "create": 7, + "modify": 15, + "delete": 0, + "area": 5.99149150001178e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105913448, + "host": "mapcomplete.osm.be", + "theme": "streetlamps", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 121.55918835, + 13.96252165 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Nickrds09", + "uid": "966535", + "editor": "MapComplete 0.7.5", + "comment": "Adding data with #MapComplete for theme #streetlamps", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-06T11:35:32Z", + "reviewed_features": [], + "create": 5, + "modify": 13, + "delete": 0, + "area": 5.10130900001811e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105913334, + "host": "mapcomplete.osm.be", + "theme": "streetlamps", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 121.55882105, + 13.963075700000001 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Nickrds09", + "uid": "966535", + "editor": "MapComplete 0.7.5", + "comment": "Adding data with #MapComplete for theme #streetlamps", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-06T10:54:40Z", + "reviewed_features": [], + "create": 44, + "modify": 79, + "delete": 0, + "area": 0.0000107127050699845, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105912076, + "host": "mapcomplete.osm.be", + "theme": "streetlamps", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 121.56047235, + 13.96380055 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "schoka", + "uid": "818053", + "editor": "MapComplete 0.7.5", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-06T10:43:38Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.0000783575572000138, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105911702, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 12.16815515, + 48.57143069999999 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Nickrds09", + "uid": "966535", + "editor": "MapComplete 0.7.5", + "comment": "Adding data with #MapComplete for theme #streetlamps", + "comments_count": 3, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-06T10:32:34Z", + "reviewed_features": [], + "create": 10, + "modify": 20, + "delete": 0, + "area": 0.00000469388458003469, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105911320, + "host": "mapcomplete.osm.be", + "theme": "streetlamps", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 121.56123410000001, + 13.96411745 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "schoka", + "uid": "818053", + "editor": "MapComplete 0.7.5", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-06T10:31:43Z", + "reviewed_features": [], + "create": 7, + "modify": 6, + "delete": 0, + "area": 0.00311376975552001, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105911293, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "osm", + "language": "de", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 12.14531465, + 48.5831383 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Nickrds09", + "uid": "966535", + "editor": "MapComplete 0.7.5", + "comment": "Adding data with #MapComplete for theme #streetlights", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-06T09:39:29Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 4.94026800011263e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105909453, + "host": "mapcomplete.osm.be", + "theme": "streetlights", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 121.56038095, + 13.9630335 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Nickrds09", + "uid": "966535", + "editor": "MapComplete 0.7.5", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-06T09:20:36Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105908867, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "imagery": "HDM_HOT", + "language": "en", + "theme-creator": "Erwin Olario" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 121.5613266, + 13.9652043 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ambush", + "uid": "9731", + "editor": "MapComplete 0.7.5", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-06T09:10:43Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105908527, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 15.4411152, + 47.0465848 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Wim L", + "uid": "223681", + "editor": "MapComplete 0.7.5", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-06T00:49:01Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 0.0000194335286099669, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105901100, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -122.35923034999999, + 47.66017115 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.7.5", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-05T22:22:59Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.245886507470602, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105899520, + "host": "pietervdvn.github.io", + "theme": "benches", + "imagery": "osm", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.69861065, + 51.0226315 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Brandoberinspektor Erdmann", + "uid": "13364061", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-05T17:53:01Z", + "reviewed_features": [], + "create": 1, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105892449, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.7295088, + 52.8390529 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "elliotsjoqvist", + "uid": "12786426", + "editor": "MapComplete 0.7.5", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-05T15:19:24Z", + "reviewed_features": [], + "create": 0, + "modify": 44, + "delete": 0, + "area": 0.00000208394672000221, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105886639, + "host": "mapcomplete.osm.be", + "theme": "shops", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.933488700000002, + 58.3496403 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + }, + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-8786303536", + "osm_id": 8786303536, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "Maribelens", + "uid": "13480216", + "editor": "MapComplete 0.7.5", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete1.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-05T14:08:21Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105883927, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "imagery": "HDM_HOT", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.230196, + 41.4503282 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + }, + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-8744208619", + "osm_id": 8744208619, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8744208617", + "osm_id": 8744208617, + "reasons": [ + 43 + ], + "version": 4, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "ccasado", + "uid": "1071888", + "editor": "MapComplete 0.7.5", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete1.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-05T11:30:33Z", + "reviewed_features": [], + "create": 0, + "modify": 7, + "delete": 0, + "area": 1.36125500000906e-8, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105878208, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "imagery": "HDM_HOT", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.24914995, + 41.45277285 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "WinstonSmith", + "uid": "36030", + "editor": "MapComplete 0.7.5", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-05T09:13:31Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105873635, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.5890863, + 45.515874 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + }, + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-8786303537", + "osm_id": 8786303537, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "Maribelens", + "uid": "13480216", + "editor": "MapComplete 0.7.5", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete1.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-04T21:42:38Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105861949, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "imagery": "HDM_HOT", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2302382, + 41.4503545 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + }, + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-8786303539", + "osm_id": 8786303539, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "Maribelens", + "uid": "13480216", + "editor": "MapComplete 0.7.5", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete1.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-04T21:26:44Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105861451, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "imagery": "HDM_HOT", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2302936, + 41.4503862 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-3944732052", + "osm_id": 3944732052, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946995081", + "osm_id": 3946995081, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946995625", + "osm_id": 3946995625, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3944732331", + "osm_id": 3944732331, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3944731959", + "osm_id": 3944731959, + "reasons": [ + 43 + ], + "version": 4, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3944732123", + "osm_id": 3944732123, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946995106", + "osm_id": 3946995106, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-6010958536", + "osm_id": 6010958536, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3944732108", + "osm_id": 3944732108, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3944732114", + "osm_id": 3944732114, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "Jose Luis Infante", + "uid": "126203", + "editor": "MapComplete 0.7.5", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete1.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-04T19:38:48Z", + "reviewed_features": [], + "create": 0, + "modify": 13, + "delete": 0, + "area": 0.0000032519779600142, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105857810, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "imagery": "HDM_HOT", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2198333, + 41.4352922 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-3946962245", + "osm_id": 3946962245, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946964488", + "osm_id": 3946964488, + "reasons": [ + 43 + ], + "version": 4, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946962942", + "osm_id": 3946962942, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946964509", + "osm_id": 3946964509, + "reasons": [ + 43 + ], + "version": 4, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946964180", + "osm_id": 3946964180, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946964197", + "osm_id": 3946964197, + "reasons": [ + 43 + ], + "version": 5, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946964520", + "osm_id": 3946964520, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946964188", + "osm_id": 3946964188, + "reasons": [ + 43 + ], + "version": 5, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946964217", + "osm_id": 3946964217, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946963461", + "osm_id": 3946963461, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "Jose Luis Infante", + "uid": "126203", + "editor": "MapComplete 0.7.5", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete1.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-04T18:11:12Z", + "reviewed_features": [], + "create": 0, + "modify": 14, + "delete": 0, + "area": 0.0000027133940699941, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105854608, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "imagery": "HDM_HOT", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.22370635, + 41.438410250000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + }, + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-8781004538", + "osm_id": 8781004538, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8781004534", + "osm_id": 8781004534, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "ccasado", + "uid": "1071888", + "editor": "MapComplete 0.7.5", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete1.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-04T17:47:03Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 2.30649119999822e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105853706, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "imagery": "HDM_HOT", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2486658999999998, + 41.454603649999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + }, + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-8744209175", + "osm_id": 8744209175, + "reasons": [ + 43 + ], + "version": 4, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8744209180", + "osm_id": 8744209180, + "reasons": [ + 43 + ], + "version": 4, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8744209179", + "osm_id": 8744209179, + "reasons": [ + 43 + ], + "version": 4, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8744208520", + "osm_id": 8744208520, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8744209171", + "osm_id": 8744209171, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "Montse Ventura Cabús", + "uid": "13480180", + "editor": "MapComplete 0.7.5", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete1.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-04T17:45:25Z", + "reviewed_features": [], + "create": 0, + "modify": 13, + "delete": 0, + "area": 2.68021890001014e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105853623, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "imagery": "HDM_HOT", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.24777735, + 41.44702155 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + }, + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-8783848051", + "osm_id": 8783848051, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8783848050", + "osm_id": 8783848050, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "CarmeP", + "uid": "13279572", + "editor": "MapComplete 0.7.5", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete1.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-04T17:44:12Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 1.43016000006537e-9, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105853585, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "imagery": "HDM_HOT", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2465580999999997, + 41.4522395 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-3944496053", + "osm_id": 3944496053, + "reasons": [ + 43 + ], + "version": 4, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3944496438", + "osm_id": 3944496438, + "reasons": [ + 43 + ], + "version": 5, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3944496924", + "osm_id": 3944496924, + "reasons": [ + 43 + ], + "version": 6, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3944497288", + "osm_id": 3944497288, + "reasons": [ + 43 + ], + "version": 5, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3944499441", + "osm_id": 3944499441, + "reasons": [ + 43 + ], + "version": 6, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3944498874", + "osm_id": 3944498874, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3944494229", + "osm_id": 3944494229, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "Jose Luis Infante", + "uid": "126203", + "editor": "MapComplete 0.7.5", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete1.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-04T17:38:49Z", + "reviewed_features": [], + "create": 0, + "modify": 10, + "delete": 0, + "area": 0.00000530507736001426, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105853357, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "imagery": "HDM_HOT", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2176522, + 41.4390691 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + }, + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-8804866774", + "osm_id": 8804866774, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8780992991", + "osm_id": 8780992991, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8780992996", + "osm_id": 8780992996, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8780992992", + "osm_id": 8780992992, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8781004535", + "osm_id": 8781004535, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8781004534", + "osm_id": 8781004534, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8780992995", + "osm_id": 8780992995, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8781004553", + "osm_id": 8781004553, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8781004536", + "osm_id": 8781004536, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "ccasado", + "uid": "1071888", + "editor": "MapComplete 0.7.5", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete1.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-04T17:32:20Z", + "reviewed_features": [], + "create": 1, + "modify": 24, + "delete": 0, + "area": 9.62408179998287e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105853089, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "imagery": "HDM_HOT", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.24879765, + 41.4542158 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-3944734002", + "osm_id": 3944734002, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "Jose Luis Infante", + "uid": "126203", + "editor": "MapComplete 0.7.5", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete1.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-04T17:29:00Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105852959, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "imagery": "HDM_HOT", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2179836, + 41.4372123 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-3944492752", + "osm_id": 3944492752, + "reasons": [ + 43 + ], + "version": 4, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3944490879", + "osm_id": 3944490879, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3944734105", + "osm_id": 3944734105, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "Jose Luis Infante", + "uid": "126203", + "editor": "MapComplete 0.7.5", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete1.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-04T17:22:23Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 4.59920999996822e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105852637, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "imagery": "HDM_HOT", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2187725499999997, + 41.4376102 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + }, + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-8786303540", + "osm_id": 8786303540, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8786303547", + "osm_id": 8786303547, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8786303541", + "osm_id": 8786303541, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "Maribelens", + "uid": "13480216", + "editor": "MapComplete 0.7.5", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete1.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-04T17:19:03Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 4.37361599997679e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105852480, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "imagery": "HDM_HOT", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2306509500000002, + 41.4507038 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + }, + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-8779678766", + "osm_id": 8779678766, + "reasons": [ + 43 + ], + "version": 4, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8780993005", + "osm_id": 8780993005, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8780993002", + "osm_id": 8780993002, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8780992999", + "osm_id": 8780992999, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8804848185", + "osm_id": 8804848185, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8779678772", + "osm_id": 8779678772, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8779678767", + "osm_id": 8779678767, + "reasons": [ + 43 + ], + "version": 4, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8780993008", + "osm_id": 8780993008, + "reasons": [ + 43 + ], + "version": 4, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8780993006", + "osm_id": 8780993006, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8780993007", + "osm_id": 8780993007, + "reasons": [ + 43 + ], + "version": 4, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8780993001", + "osm_id": 8780993001, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "ccasado", + "uid": "1071888", + "editor": "MapComplete 0.7.5", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete1.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-04T17:17:50Z", + "reviewed_features": [], + "create": 1, + "modify": 28, + "delete": 0, + "area": 4.8570192000152e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105852380, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "imagery": "HDM_HOT", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2494715000000003, + 41.4536754 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + }, + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-8786431228", + "osm_id": 8786431228, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8786431219", + "osm_id": 8786431219, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8786431311", + "osm_id": 8786431311, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "Sandra55", + "uid": "13279584", + "editor": "MapComplete 0.7.5", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete1.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-04T17:12:31Z", + "reviewed_features": [], + "create": 0, + "modify": 12, + "delete": 0, + "area": 0.00000383907000000273, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105852106, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "imagery": "HDM_HOT", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2476216, + 41.4594091 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + }, + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-8744208295", + "osm_id": 8744208295, + "reasons": [ + 43 + ], + "version": 4, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8744208304", + "osm_id": 8744208304, + "reasons": [ + 43 + ], + "version": 4, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8744208310", + "osm_id": 8744208310, + "reasons": [ + 43 + ], + "version": 4, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8744208315", + "osm_id": 8744208315, + "reasons": [ + 43 + ], + "version": 4, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8765858085", + "osm_id": 8765858085, + "reasons": [ + 43 + ], + "version": 4, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8744208328", + "osm_id": 8744208328, + "reasons": [ + 43 + ], + "version": 5, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8744208358", + "osm_id": 8744208358, + "reasons": [ + 43 + ], + "version": 4, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8744208330", + "osm_id": 8744208330, + "reasons": [ + 43 + ], + "version": 4, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8744208343", + "osm_id": 8744208343, + "reasons": [ + 43 + ], + "version": 4, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8744208327", + "osm_id": 8744208327, + "reasons": [ + 43 + ], + "version": 5, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8765860731", + "osm_id": 8765860731, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8744208347", + "osm_id": 8744208347, + "reasons": [ + 43 + ], + "version": 4, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8744208356", + "osm_id": 8744208356, + "reasons": [ + 43 + ], + "version": 4, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8744208513", + "osm_id": 8744208513, + "reasons": [ + 43 + ], + "version": 4, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8744208514", + "osm_id": 8744208514, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "Montse Ventura Cabús", + "uid": "13480180", + "editor": "MapComplete 0.7.5", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete1.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-04T17:04:25Z", + "reviewed_features": [], + "create": 0, + "modify": 22, + "delete": 0, + "area": 0.00000736886076000044, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105851717, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "imagery": "HDM_HOT", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2500889500000003, + 41.447811599999994 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + }, + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-8784031928", + "osm_id": 8784031928, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8784031919", + "osm_id": 8784031919, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8784031929", + "osm_id": 8784031929, + "reasons": [ + 43 + ], + "version": 4, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8784030313", + "osm_id": 8784030313, + "reasons": [ + 43 + ], + "version": 4, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8804809526", + "osm_id": 8804809526, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8784030259", + "osm_id": 8784030259, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8784030236", + "osm_id": 8784030236, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "Maribelens", + "uid": "13480216", + "editor": "MapComplete 0.7.5", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete1.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-04T16:56:04Z", + "reviewed_features": [], + "create": 1, + "modify": 14, + "delete": 0, + "area": 6.10051200000688e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105851287, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "imagery": "HDM_HOT", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.232189, + 41.4516205 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + }, + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-8779678698", + "osm_id": 8779678698, + "reasons": [ + 43 + ], + "version": 6, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "Roc BxC", + "uid": "13163796", + "editor": "MapComplete 0.7.5", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete1.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-04T16:46:57Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105850827, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "imagery": "HDM_HOT", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2514325, + 41.4549361 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + }, + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-8779678724", + "osm_id": 8779678724, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8779678725", + "osm_id": 8779678725, + "reasons": [ + 43 + ], + "version": 4, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8779678721", + "osm_id": 8779678721, + "reasons": [ + 43 + ], + "version": 4, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8779678735", + "osm_id": 8779678735, + "reasons": [ + 43 + ], + "version": 4, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "ccasado", + "uid": "1071888", + "editor": "MapComplete 0.7.5", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete1.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-04T16:40:10Z", + "reviewed_features": [], + "create": 0, + "modify": 10, + "delete": 0, + "area": 1.85592229996277e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105850512, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "imagery": "HDM_HOT", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.25078025, + 41.45437605 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + }, + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-8784031949", + "osm_id": 8784031949, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8784031950", + "osm_id": 8784031950, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8784031951", + "osm_id": 8784031951, + "reasons": [ + 43 + ], + "version": 5, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8784031948", + "osm_id": 8784031948, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "Maribelens", + "uid": "13480216", + "editor": "MapComplete 0.7.5", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete1.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-04T16:38:18Z", + "reviewed_features": [], + "create": 0, + "modify": 8, + "delete": 0, + "area": 2.22443999964978e-9, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105850423, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "imagery": "HDM_HOT", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2312985000000003, + 41.4526692 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + }, + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-8783848162", + "osm_id": 8783848162, + "reasons": [ + 43 + ], + "version": 4, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "Soco27", + "uid": "13476703", + "editor": "MapComplete 0.7.5", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete1.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-04T16:36:31Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105850341, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "imagery": "HDM_HOT", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2443126, + 41.4515501 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + }, + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-3944733307", + "osm_id": 3944733307, + "reasons": [ + 43 + ], + "version": 6, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8804773624", + "osm_id": 8804773624, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3944495535", + "osm_id": 3944495535, + "reasons": [ + 43 + ], + "version": 4, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "Jordi L", + "uid": "3016696", + "editor": "MapComplete 0.7.5", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete1.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-04T16:30:36Z", + "reviewed_features": [], + "create": 1, + "modify": 4, + "delete": 0, + "area": 0.00000432727334001196, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105850116, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "imagery": "HDM_HOT", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.21933575, + 41.4377469 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + }, + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-8786410418", + "osm_id": 8786410418, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8786387414", + "osm_id": 8786387414, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8786431248", + "osm_id": 8786431248, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8786440892", + "osm_id": 8786440892, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8786440891", + "osm_id": 8786440891, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "Sandra55", + "uid": "13279584", + "editor": "MapComplete 0.7.5", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete1.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-04T16:29:51Z", + "reviewed_features": [], + "create": 0, + "modify": 13, + "delete": 0, + "area": 5.78154939995549e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105850081, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "imagery": "HDM_HOT", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2480501999999998, + 41.46028165 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + }, + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-8792543513", + "osm_id": 8792543513, + "reasons": [ + 43 + ], + "version": 4, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8779678711", + "osm_id": 8779678711, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8779678737", + "osm_id": 8779678737, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8779678698", + "osm_id": 8779678698, + "reasons": [ + 43 + ], + "version": 5, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "ccasado", + "uid": "1071888", + "editor": "MapComplete 0.7.4b", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete1.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-04T16:28:50Z", + "reviewed_features": [], + "create": 0, + "modify": 12, + "delete": 0, + "area": 6.73842260000334e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105850018, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "imagery": "HDM_HOT", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.25123315, + 41.455169 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + }, + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-8784031951", + "osm_id": 8784031951, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "Maribelens", + "uid": "13480216", + "editor": "MapComplete 0.7.5", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete1.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-04T16:26:48Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105849917, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "imagery": "HDM_HOT", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2312484, + 41.4526581 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + }, + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-8781025441", + "osm_id": 8781025441, + "reasons": [ + 43 + ], + "version": 6, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8781025445", + "osm_id": 8781025445, + "reasons": [ + 43 + ], + "version": 4, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8781025446", + "osm_id": 8781025446, + "reasons": [ + 43 + ], + "version": 5, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8781025443", + "osm_id": 8781025443, + "reasons": [ + 43 + ], + "version": 4, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8783808168", + "osm_id": 8783808168, + "reasons": [ + 43 + ], + "version": 4, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8796772065", + "osm_id": 8796772065, + "reasons": [ + 43 + ], + "version": 4, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8796772100", + "osm_id": 8796772100, + "reasons": [ + 43 + ], + "version": 4, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8796772094", + "osm_id": 8796772094, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8796772081", + "osm_id": 8796772081, + "reasons": [ + 43 + ], + "version": 4, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8796772121", + "osm_id": 8796772121, + "reasons": [ + 43 + ], + "version": 4, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8796772139", + "osm_id": 8796772139, + "reasons": [ + 43 + ], + "version": 4, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8796772104", + "osm_id": 8796772104, + "reasons": [ + 43 + ], + "version": 4, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8796772125", + "osm_id": 8796772125, + "reasons": [ + 43 + ], + "version": 5, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8783808165", + "osm_id": 8783808165, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8783808179", + "osm_id": 8783808179, + "reasons": [ + 43 + ], + "version": 5, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8783808157", + "osm_id": 8783808157, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8783878059", + "osm_id": 8783878059, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8783829171", + "osm_id": 8783829171, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8783878058", + "osm_id": 8783878058, + "reasons": [ + 43 + ], + "version": 4, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "CarmeP", + "uid": "13279572", + "editor": "MapComplete 0.7.5", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete1.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-04T16:25:08Z", + "reviewed_features": [], + "create": 0, + "modify": 45, + "delete": 0, + "area": 0.00000971668169999854, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105849844, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "imagery": "HDM_HOT", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.24433535, + 41.4523864 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + }, + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-8786410418", + "osm_id": 8786410418, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8786410420", + "osm_id": 8786410420, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "Sandra55", + "uid": "13279584", + "editor": "MapComplete 0.7.5", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete1.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-04T16:22:02Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 2.74311000014993e-9, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105849719, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "imagery": "HDM_HOT", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2475410499999997, + 41.46062555 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "paytv", + "uid": "13422838", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-04T15:34:58Z", + "reviewed_features": [], + "create": 3, + "modify": 3, + "delete": 0, + "area": 0.000476437036259993, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105847791, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.7062946, + 52.24507525 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.7.4b", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/railway", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-04T13:27:05Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 0.0101944578186296, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105842201, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/railway", + "imagery": "osm", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.54542575, + -34.60790505 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.7.4b", + "comment": "Adding data with #MapComplete for theme #fietsstraten", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-03T20:35:38Z", + "reviewed_features": [], + "create": 0, + "modify": 12, + "delete": 0, + "area": 0.000670354534800022, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105799996, + "host": "mapcomplete.osm.be", + "theme": "fietsstraten", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete, joost schouppe" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.1585389, + 50.8222133 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.7.4b", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-03T16:00:47Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105789049, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.4480757, + 51.0935406 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.7.4b", + "comment": "Adding data with #MapComplete for theme #fritures", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-03T15:23:47Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105787489, + "host": "mapcomplete.osm.be", + "theme": "fritures", + "imagery": "AGIVFlandersGRB", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.9932969, + 50.8345362 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Maarten O", + "uid": "13326535", + "editor": "MapComplete 0.7.4b", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-03T14:13:10Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105784078, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2143784, + 51.1908391 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Maarten O", + "uid": "13326535", + "editor": "MapComplete 0.7.4b", + "comment": "Adding data with #MapComplete for theme #aed_brugge", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-03T12:46:32Z", + "reviewed_features": [], + "create": 3, + "modify": 18, + "delete": 0, + "area": 0.00000303374031999787, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105779816, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "HDM_HOT", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.21504745, + 51.191972699999994 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Siel Createlli", + "uid": "13457794", + "editor": "MapComplete 0.7.4b", + "comment": "Adding data with #MapComplete for theme #speelplekken", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-03T11:43:56Z", + "reviewed_features": [], + "create": 0, + "modify": 57, + "delete": 0, + "area": 0.0108217165363204, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105776011, + "host": "mapcomplete.osm.be", + "theme": "speelplekken", + "imagery": "CartoDB.Positron", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.45276285, + 51.154340700000006 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Globelotter", + "uid": "6141733", + "editor": "MapComplete 0.7.4b", + "comment": "Adding data with #MapComplete for theme #speelplekken", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-03T10:10:44Z", + "reviewed_features": [], + "create": 4, + "modify": 6, + "delete": 0, + "area": 0.00190928363734017, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105770108, + "host": "mapcomplete.osm.be", + "theme": "speelplekken", + "imagery": "CartoDB.Positron", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.48941035, + 51.150408999999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.7.4b", + "comment": "Adding data with #MapComplete for theme #fietsstraten", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-03T09:07:18Z", + "reviewed_features": [], + "create": 0, + "modify": 6, + "delete": 0, + "area": 0.0000132778386400377, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105766002, + "host": "pietervdvn.github.io", + "theme": "fietsstraten", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.91692415, + 51.228060400000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Globelotter", + "uid": "6141733", + "editor": "MapComplete 0.7.4b", + "comment": "Adding data with #MapComplete for theme #speelplekken", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-03T08:47:20Z", + "reviewed_features": [], + "create": 0, + "modify": 7, + "delete": 0, + "area": 0.0000529488515399935, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105764692, + "host": "mapcomplete.osm.be", + "theme": "speelplekken", + "imagery": "CartoDB.Positron", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.444729000000001, + 51.14208035 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + }, + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-8781025433", + "osm_id": 8781025433, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8781025441", + "osm_id": 8781025441, + "reasons": [ + 43 + ], + "version": 4, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8781025445", + "osm_id": 8781025445, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8781025443", + "osm_id": 8781025443, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8781025446", + "osm_id": 8781025446, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "Soco27", + "uid": "13476703", + "editor": "MapComplete 0.7.4b", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-03T08:35:45Z", + "reviewed_features": [], + "create": 2, + "modify": 11, + "delete": 0, + "area": 6.04364279995272e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105763889, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "imagery": "HDM_HOT", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.24546005, + 41.4510151 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Gaby_", + "uid": "13471983", + "editor": "MapComplete 0.7.4b", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-03T08:10:57Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105762389, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "imagery": "HDM_HOT", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2450291, + 41.4506645 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "miurahr", + "uid": "21118", + "editor": "MapComplete 0.7.4b", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-03T00:40:47Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105745344, + "host": "pietervdvn.github.io", + "theme": "toilets", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 139.7362366, + 35.7696039 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Daniel Chiarello", + "uid": "6903200", + "editor": "MapComplete 0.7.4b", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-02T22:34:00Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105743538, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -52.6268828, + -27.0704663 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + }, + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-8781025441", + "osm_id": 8781025441, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "Gaby_", + "uid": "13471983", + "editor": "MapComplete 0.7.4b", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-02T19:40:31Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105738229, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "imagery": "HDM_HOT", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2457176, + 41.4511451 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Robin van der Linde", + "uid": "5093765", + "editor": "MapComplete 0.7.4b", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-02T18:34:24Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105735385, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.5610879, + 53.0193794 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Daniel Chiarello", + "uid": "6903200", + "editor": "MapComplete 0.7.4b", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-02T17:12:47Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105732069, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -52.6249731, + -27.0701085 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Daniel Chiarello", + "uid": "6903200", + "editor": "MapComplete 0.7.4b", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-02T17:03:02Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105731710, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "imagery": "HDM_HOT", + "language": "en", + "theme-creator": "Erwin Olario" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -52.6276368, + -27.0701627 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.7.4b", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/railway", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-02T13:41:43Z", + "reviewed_features": [], + "create": 0, + "modify": 10, + "delete": 0, + "area": 0.00000785112700001794, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105723896, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/railway", + "imagery": "osm", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.6085099, + -34.6463926 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.7.4b", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/railway", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-02T13:40:21Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105723828, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/railway", + "imagery": "osm", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.5972709, + -34.6450947 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Maarten O", + "uid": "13326535", + "editor": "MapComplete 0.7.4b", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-02T13:39:48Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.0017133079766401, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105723801, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2111755, + 51.2295459 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Koen Rijnsent", + "uid": "4569696", + "editor": "MapComplete 0.7.4b", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-02T08:59:55Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105714421, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.1533463, + 52.0844293 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Nuytinck", + "uid": "3719237", + "editor": "MapComplete 0.7.4b", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-02T07:27:47Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105711334, + "host": "pietervdvn.github.io", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.5359346, + 51.3830698 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.7.4b", + "comment": "Adding data with #MapComplete for theme #ghostbikes", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-02T02:27:58Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105704959, + "host": "pietervdvn.github.io", + "theme": "ghostbikes", + "imagery": "CartoDB.Positron", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.4846171, + -33.5905772 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.7.4b", + "comment": "Adding data with #MapComplete for theme #fietsstraten", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-01T18:46:32Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.00000224087775001536, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105694177, + "host": "pietervdvn.github.io", + "theme": "fietsstraten", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.91501175, + 51.227475749999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "WinstonSmith", + "uid": "36030", + "editor": "MapComplete 0.7.4b", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-01T18:31:27Z", + "reviewed_features": [], + "create": 2, + "modify": 2, + "delete": 0, + "area": 1.73754300001031e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105693580, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.362229, + 44.49929495 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.7.4b", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/railway", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-01T13:17:43Z", + "reviewed_features": [], + "create": 0, + "modify": 14, + "delete": 0, + "area": 0.000643416582690142, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105680393, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/railway", + "imagery": "osm", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.62100145, + -34.65041535 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.7.4b", + "comment": "Adding data with #MapComplete for theme #fietsstraten", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-01T11:52:03Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 5.05303679993956e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105676236, + "host": "pietervdvn.github.io", + "theme": "fietsstraten", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.9116600999999998, + 51.2221714 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Maarten O", + "uid": "13326535", + "editor": "MapComplete 0.7.4b", + "comment": "Adding data with #MapComplete for theme #aed_brugge", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-01T11:10:08Z", + "reviewed_features": [], + "create": 2, + "modify": 14, + "delete": 0, + "area": 0.00101532961786003, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105673859, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "HDM_HOT", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1942644, + 51.22335055 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Nos_Fi", + "uid": "526289", + "editor": "MapComplete 0.7.4b", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-01T09:46:15Z", + "reviewed_features": [], + "create": 2, + "modify": 6, + "delete": 0, + "area": 0.0028947820174098, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105669136, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.60473225, + 48.28955485 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "SNT-LJM-Cognac", + "uid": "13403395", + "editor": "MapComplete 0.7.4b", + "comment": "Adding data with #MapComplete for theme #buildings", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-01T06:49:08Z", + "reviewed_features": [], + "create": 0, + "modify": 9, + "delete": 0, + "area": 0.0000199322045999924, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105658938, + "host": "mapcomplete.osm.be", + "theme": "buildings", + "imagery": "osm", + "language": "fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.31623695, + 45.699021 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "SNT-LJM-Cognac", + "uid": "13403395", + "editor": "MapComplete 0.7.4b", + "comment": "Adding data with #MapComplete for theme #buildings", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-06-01T06:39:04Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.00000103599691999119, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105658372, + "host": "mapcomplete.osm.be", + "theme": "buildings", + "imagery": "osm", + "language": "fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.3137291, + 45.69814345 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "SNT-LJM-Cognac", + "uid": "13403395", + "editor": "MapComplete 0.7.4b", + "comment": "Adding data with #MapComplete for theme #buildings", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-06-01T06:34:48Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 3.67152999996021e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 105658173, + "host": "mapcomplete.osm.be", + "theme": "buildings", + "imagery": "osm", + "language": "fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.31351865, + 45.69947915 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "InsertUser", + "uid": "89098", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-31T22:54:59Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108959257, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "imagery": "Mapbox", + "language": "en", + "theme-creator": "Erwin Olario" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -78.7003344, + 26.5404793 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "BREC10", + "uid": "13615286", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #climbing", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-31T20:44:13Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 5.21274000002955e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108956863, + "host": "mapcomplete.osm.be", + "theme": "climbing", + "imagery": "osm", + "language": "en", + "theme-creator": "Christian Neumann " + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.4666412, + 44.415974 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "H4N5-antw", + "uid": "10846743", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 1, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-31T18:38:58Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108953733, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "AGIV", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2439621, + 51.095523 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Koen Rijnsent", + "uid": "4569696", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #artworks", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-31T10:21:23Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0.000644199335340262, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108928737, + "host": "mapcomplete.osm.be", + "theme": "artworks", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.17462375, + 52.089487399999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Frans_Napaters", + "uid": "3574538", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-31T08:57:54Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 4.55954909999983e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108921995, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.910993250000001, + 51.07083325 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Peter Elderson", + "uid": "7103674", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #wandelknooppunten", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-31T06:21:20Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108917989, + "host": "mapcomplete.osm.be", + "theme": "wandelknooppunten", + "imagery": "osm", + "language": "nl", + "theme-creator": "Peter Elderson" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.6962306, + 52.1436707 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Vincent Bombaerts", + "uid": "98569", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #fietsstraten", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-31T00:27:21Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.00000140702490000867, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108913793, + "host": "mapcomplete.osm.be", + "theme": "fietsstraten", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.60044785, + 50.665459999999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/railway", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-30T23:34:12Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 7.98380000088437e-10, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108913244, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/railway", + "imagery": "osm", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.468474900000004, + -34.53542445 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "habi", + "uid": "15671", + "editor": "MapComplete 0.9.0-rc0", + "comment": "Adding data with #MapComplete for theme #campersite", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-30T20:49:28Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000287492712000414, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108910248, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "campersite", + "imagery": "osm", + "language": "en", + "theme-creator": "joost schouppe" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.473457, + 47.02391135 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "norc_kroska", + "uid": "11117699", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-30T18:00:42Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108904991, + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "osm", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 14.5063587, + 46.0541681 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #campersite", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-30T17:18:11Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108903379, + "host": "mapcomplete.osm.be", + "theme": "campersite", + "imagery": "osm", + "language": "en", + "theme-creator": "joost schouppe" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.042544, + 44.0834712 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Dieter Dewitte", + "uid": "10825393", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #boomgaarden", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-30T16:12:02Z", + "reviewed_features": [], + "create": 7, + "modify": 22, + "delete": 0, + "area": 8.6367609997985e-8, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108900714, + "host": "mapcomplete.osm.be", + "theme": "boomgaarden", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.18588895, + 50.801121949999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #campersite", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-30T15:43:08Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108899480, + "host": "mapcomplete.osm.be", + "theme": "campersite", + "imagery": "osm", + "language": "en", + "theme-creator": "joost schouppe" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.042544, + 44.0834712 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-30T15:39:47Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108899343, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.0426022, + 44.0833241 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-30T13:14:36Z", + "reviewed_features": [], + "create": 3, + "modify": 2, + "delete": 0, + "area": 0.00541374476319135, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108893407, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/signals", + "imagery": "EsriWorldImagery", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.65521725, + -34.65204885 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.8.5-rc2", + "comment": "Adding data with #MapComplete for theme #campersite", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-30T11:25:53Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 9.01801599999458e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108887082, + "host": "pietervdvn.github.io", + "path": "mc/feature/road-splitting/", + "theme": "campersite", + "imagery": "osm", + "language": "en", + "theme-creator": "joost schouppe" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.0426329, + 44.0837248 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-30T00:06:15Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108850883, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/signals", + "imagery": "EsriWorldImagery", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.4452137, + -34.6198902 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "habi", + "uid": "15671", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-29T21:19:35Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 9.85139999959974e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108847389, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.4166591, + 46.936766500000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "crasu", + "uid": "31544", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-29T21:01:05Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108846702, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.6629114, + 54.0071391 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-3946991490", + "osm_id": 3946991490, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946992018", + "osm_id": 3946992018, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946991548", + "osm_id": 3946991548, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946992622", + "osm_id": 3946992622, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946992653", + "osm_id": 3946992653, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946992557", + "osm_id": 3946992557, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946993170", + "osm_id": 3946993170, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946992650", + "osm_id": 3946992650, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946992017", + "osm_id": 3946992017, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946991975", + "osm_id": 3946991975, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946993216", + "osm_id": 3946993216, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8960981176", + "osm_id": 8960981176, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946991459", + "osm_id": 3946991459, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946994208", + "osm_id": 3946994208, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "Jose Luis Infante", + "uid": "126203", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete1.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-29T20:46:24Z", + "reviewed_features": [], + "create": 2, + "modify": 18, + "delete": 0, + "area": 0.00000355878169998301, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108846162, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "imagery": "HDM_HOT", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.22556645, + 41.4350166 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-3946992581", + "osm_id": 3946992581, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946991555", + "osm_id": 3946991555, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946992646", + "osm_id": 3946992646, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946992647", + "osm_id": 3946992647, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946992564", + "osm_id": 3946992564, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "Jose Luis Infante", + "uid": "126203", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete1.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-29T20:40:53Z", + "reviewed_features": [], + "create": 0, + "modify": 11, + "delete": 0, + "area": 1.58376599998346e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108845967, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "imagery": "HDM_HOT", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2241797, + 41.43492355 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-3946990803", + "osm_id": 3946990803, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946987626", + "osm_id": 3946987626, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946987917", + "osm_id": 3946987917, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946991998", + "osm_id": 3946991998, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946987858", + "osm_id": 3946987858, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946987286", + "osm_id": 3946987286, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946987880", + "osm_id": 3946987880, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946987215", + "osm_id": 3946987215, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946991475", + "osm_id": 3946991475, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8745426165", + "osm_id": 8745426165, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8745426167", + "osm_id": 8745426167, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946987587", + "osm_id": 3946987587, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946987448", + "osm_id": 3946987448, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8745426182", + "osm_id": 8745426182, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8745380294", + "osm_id": 8745380294, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8745380293", + "osm_id": 8745380293, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8745426164", + "osm_id": 8745426164, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8745426162", + "osm_id": 8745426162, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8745380276", + "osm_id": 8745380276, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8745425852", + "osm_id": 8745425852, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8745380255", + "osm_id": 8745380255, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8745426166", + "osm_id": 8745426166, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8745380258", + "osm_id": 8745380258, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8960887643", + "osm_id": 8960887643, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8745380301", + "osm_id": 8745380301, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8960896543", + "osm_id": 8960896543, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8745380263", + "osm_id": 8745380263, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8745380303", + "osm_id": 8745380303, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8960904828", + "osm_id": 8960904828, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8745380256", + "osm_id": 8745380256, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8960900043", + "osm_id": 8960900043, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8960868066", + "osm_id": 8960868066, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8960906265", + "osm_id": 8960906265, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8960884722", + "osm_id": 8960884722, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8960906266", + "osm_id": 8960906266, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8960902706", + "osm_id": 8960902706, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8960884721", + "osm_id": 8960884721, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8745380304", + "osm_id": 8745380304, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8745380302", + "osm_id": 8745380302, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8960896542", + "osm_id": 8960896542, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8960904829", + "osm_id": 8960904829, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8745380257", + "osm_id": 8745380257, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946987369", + "osm_id": 3946987369, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946987211", + "osm_id": 3946987211, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946987325", + "osm_id": 3946987325, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8960919116", + "osm_id": 8960919116, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8960908055", + "osm_id": 8960908055, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8960901792", + "osm_id": 8960901792, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946987391", + "osm_id": 3946987391, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8960904868", + "osm_id": 8960904868, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946987248", + "osm_id": 3946987248, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8745425831", + "osm_id": 8745425831, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946987887", + "osm_id": 3946987887, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946989107", + "osm_id": 3946989107, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8960923824", + "osm_id": 8960923824, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946989736", + "osm_id": 3946989736, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946990325", + "osm_id": 3946990325, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946989750", + "osm_id": 3946989750, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946991555", + "osm_id": 3946991555, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946990783", + "osm_id": 3946990783, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8960923823", + "osm_id": 8960923823, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946991553", + "osm_id": 3946991553, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946991494", + "osm_id": 3946991494, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "Jose Luis Infante", + "uid": "126203", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete1.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-29T19:30:28Z", + "reviewed_features": [], + "create": 21, + "modify": 78, + "delete": 0, + "area": 0.00000962404233000736, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108843616, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "imagery": "HDM_HOT", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.22267645, + 41.43331525 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "PeterPNoster", + "uid": "13841292", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-29T18:02:45Z", + "reviewed_features": [], + "create": 2, + "modify": 0, + "delete": 0, + "area": 0.103796184809791, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108840568, + "host": "mapcomplete.osm.be", + "theme": "shops", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.15879035, + 47.167780949999994 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ronx Ronquillo", + "uid": "401767", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-29T16:48:33Z", + "reviewed_features": [], + "create": 1, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108837580, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 121.116178, + 14.5786877 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.9.0-rc0", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-29T15:19:51Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108834111, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.5895507, + 51.0933052 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Claudia De Pus", + "uid": "10236139", + "editor": "MapComplete 0.9.0-rc0", + "comment": "Adding data with #MapComplete for theme #cycle_infra", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-29T14:35:14Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108832023, + "host": "pietervdvn.github.io", + "path": "mc/project/cycle-infra/", + "theme": "cycle_infra", + "imagery": "CartoDB.Voyager", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7047731, + 51.075759 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-29T13:14:52Z", + "reviewed_features": [], + "create": 9, + "modify": 5, + "delete": 0, + "area": 0.00576679636259861, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108828280, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/signals", + "imagery": "EsriWorldImagery", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.6760433, + -34.653726649999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Inti Valderas Caro", + "uid": "13839810", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-29T13:08:39Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 0.0000111718840799523, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108827981, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "nl", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.20041275, + 51.1929068 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Robin van der Linde", + "uid": "5093765", + "editor": "MapComplete 0.9.0-rc0", + "comment": "Adding data with #MapComplete for theme #cycle_infra", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-29T12:58:27Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108827539, + "host": "pietervdvn.github.io", + "path": "mc/project/cycle-infra/", + "theme": "cycle_infra", + "imagery": "CartoDB.Voyager", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.5695252, + 53.017952 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.9.0-rc0", + "comment": "Adding data with #MapComplete for theme #cycle_infra", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-29T12:45:42Z", + "reviewed_features": [], + "create": 0, + "modify": 7, + "delete": 0, + "area": 0.000216130716899894, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108826890, + "host": "pietervdvn.github.io", + "path": "mc/project/cycle-infra/", + "theme": "cycle_infra", + "imagery": "CartoDB.Voyager", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.4480540499999996, + 51.0979195 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Claudia De Pus", + "uid": "10236139", + "editor": "MapComplete 0.9.0-rc0", + "comment": "Adding data with #MapComplete for theme #cycle_infra", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-29T12:41:13Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.000012897071600014, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108826680, + "host": "pietervdvn.github.io", + "path": "mc/project/cycle-infra/", + "theme": "cycle_infra", + "imagery": "CartoDB.Voyager", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7046642, + 51.075796600000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Claudia De Pus", + "uid": "10236139", + "editor": "MapComplete 0.9.0-rc0", + "comment": "Adding data with #MapComplete for theme #cycle_infra", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-29T10:19:33Z", + "reviewed_features": [], + "create": 0, + "modify": 8, + "delete": 0, + "area": 0.000165466148080007, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108815732, + "host": "pietervdvn.github.io", + "path": "mc/project/cycle-infra/", + "theme": "cycle_infra", + "imagery": "CartoDB.Voyager", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7055238, + 51.0729996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Dieter Dewitte", + "uid": "10825393", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #boomgaarden", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-29T08:56:15Z", + "reviewed_features": [], + "create": 3, + "modify": 2, + "delete": 0, + "area": 4.40366000018867e-9, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108808636, + "host": "mapcomplete.osm.be", + "theme": "boomgaarden", + "imagery": "AGIV10cm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.262407, + 51.01584835 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-8578989106", + "name": "Op Wielekes Ledeberg", + "osm_id": 8578989106, + "reasons": [ + 43 + ], + "version": 9, + "primary_tags": { + "amenity": "bicycle_library" + } + } + ], + "user": "lebeno", + "uid": "1710114", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #bicyclelib", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-28T20:15:21Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108778702, + "host": "mapcomplete.osm.be", + "theme": "bicyclelib", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7456124, + 51.036743 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "WardBeyens", + "uid": "10343215", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-28T19:59:19Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108778207, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "nl", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.0808656, + 51.3281815 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "lebeno", + "uid": "1710114", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-28T19:44:03Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108777669, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7403728, + 51.0339897 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "lebeno", + "uid": "1710114", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-28T19:38:21Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108777466, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7423387, + 51.0350406 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "lebeno", + "uid": "1710114", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #fritures", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-28T19:11:51Z", + "reviewed_features": [], + "create": 1, + "modify": 5, + "delete": 0, + "area": 0.00000546318445999518, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108776638, + "host": "mapcomplete.osm.be", + "theme": "fritures", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.74268875, + 51.034529500000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "DanielMe", + "uid": "249390", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-28T16:15:35Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108769204, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.9774026, + 50.6589766 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Koen Rijnsent", + "uid": "4569696", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-28T15:51:28Z", + "reviewed_features": [], + "create": 3, + "modify": 4, + "delete": 0, + "area": 0.000087390719000054, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108768073, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.2374986, + 52.09015905 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "lebeno", + "uid": "1710114", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #artworks", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-28T15:23:27Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.00000943035012000178, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108766854, + "host": "mapcomplete.osm.be", + "theme": "artworks", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7467693, + 51.03942015 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 1, + "name": "suspect_word" + }, + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "LiamSimons", + "uid": "13702983", + "editor": "MapComplete 0.8.4", + "comment": "Deleting a point with #MapComplete for theme #bookcases: testing point", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-28T14:31:38Z", + "reviewed_features": [], + "create": 0, + "modify": 0, + "delete": 1, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108764539, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "deletion": "yes", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.5533368, + 50.991728 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "LiamSimons", + "uid": "13702983", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-28T14:31:07Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108764519, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.5533368, + 50.991728 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "LiamSimons", + "uid": "13702983", + "editor": "MapComplete 0.9.0-rc0", + "comment": "Adding data with #MapComplete for theme #natuurpunt", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-28T14:28:03Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108764380, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "natuurpunt", + "imagery": "CartoDB.Positron", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2311794, + 51.2202459 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 1, + "name": "suspect_word" + }, + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "LiamSimons", + "uid": "13702983", + "editor": "MapComplete 0.8.4", + "comment": "Deleting a point with #MapComplete for theme #bookcases: testing point", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-28T14:22:50Z", + "reviewed_features": [], + "create": 0, + "modify": 0, + "delete": 1, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108764179, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "deletion": "yes", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.5498526, + 50.9909412 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "LiamSimons", + "uid": "13702983", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-28T14:22:17Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108764159, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.5498526, + 50.9909412 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "LiamSimons", + "uid": "13702983", + "editor": "MapComplete 0.9.0-rc0", + "comment": "Adding data with #MapComplete for theme #natuurpunt", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-28T14:08:55Z", + "reviewed_features": [], + "create": 14, + "modify": 0, + "delete": 0, + "area": 0.0000169223839199883, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108763605, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "natuurpunt", + "imagery": "CartoDB.Positron", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2278937, + 51.22052895 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "lebeno", + "uid": "1710114", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #artworks", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-28T14:02:31Z", + "reviewed_features": [], + "create": 1, + "modify": 4, + "delete": 0, + "area": 0.00013189841721002, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108763331, + "host": "mapcomplete.osm.be", + "theme": "artworks", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.74700715, + 51.03143235 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-28T13:13:47Z", + "reviewed_features": [], + "create": 13, + "modify": 2, + "delete": 0, + "area": 0.00642378940574079, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108760889, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/signals", + "imagery": "EsriWorldImagery", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.6539211, + -34.652989649999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.9.0-rc0", + "comment": "Adding data with #MapComplete for theme #cycle_infra", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-28T13:05:44Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 4.5538394999814e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108760468, + "host": "127.0.0.1:1234", + "theme": "cycle_infra", + "imagery": "CartoDB.Voyager", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.21895025, + 51.21512235 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 1, + "name": "suspect_word" + }, + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Karelle Keters", + "uid": "13702831", + "editor": "MapComplete 0.8.4", + "comment": "Deleting a point with #MapComplete for theme #bookcases: testing point", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-28T13:03:18Z", + "reviewed_features": [], + "create": 0, + "modify": 0, + "delete": 1, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108760335, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "deletion": "yes", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4391632, + 50.8767193 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Karelle Keters", + "uid": "13702831", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-28T13:03:00Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108760312, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4391632, + 50.8767193 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "tjum", + "uid": "79281", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-28T11:59:07Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108756674, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "language": "de", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.1100631, + 48.5490101 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.9.0-rc0", + "comment": "Adding data with #MapComplete for theme #cycle_infra", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-28T11:23:04Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 0.0000100136953599954, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108753434, + "host": "localhost:1234", + "theme": "cycle_infra", + "imagery": "CartoDB.Voyager", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2196855, + 51.21544095 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "tjum", + "uid": "79281", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-28T11:19:21Z", + "reviewed_features": [], + "create": 1, + "modify": 5, + "delete": 0, + "area": 0.0172101889580405, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108753077, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "language": "de", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.0333881, + 48.52091525 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Karelle Keters", + "uid": "13702831", + "editor": "MapComplete 0.9.0-rc0", + "comment": "Adding data with #MapComplete for theme #natuurpunt", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-28T11:17:35Z", + "reviewed_features": [], + "create": 4, + "modify": 0, + "delete": 0, + "area": 0.00000240686907999761, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108752910, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "natuurpunt", + "imagery": "CartoDB.Positron", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.64105585, + 50.9963688 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.8.5-rc2", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-28T09:30:32Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108742931, + "host": "pietervdvn.github.io", + "path": "mc/feature/road-splitting/", + "theme": "aed", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.6428985, + 44.8982967 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.8.5-rc2", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-28T08:54:26Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108739795, + "host": "pietervdvn.github.io", + "path": "mc/feature/road-splitting/", + "theme": "toilets", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.633988, + 44.8940661 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Karelle Keters", + "uid": "13702831", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-28T08:15:32Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108736493, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2537717, + 51.2182316 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Willhelm_Mueller", + "uid": "308224", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-28T06:06:43Z", + "reviewed_features": [], + "create": 0, + "modify": 7, + "delete": 0, + "area": 3.12078189233559, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108725681, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.96258015, + 51.9584416 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "lebeno", + "uid": "1710114", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #openwindpowermap", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-27T21:07:27Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108709342, + "host": "mapcomplete.osm.be", + "theme": "openwindpowermap", + "imagery": "CartoDB.Voyager", + "language": "nl", + "theme-creator": "Seppe Santens" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2216745, + 51.3042444 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "lebeno", + "uid": "1710114", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #openwindpowermap", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-27T20:55:05Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.00000335142853999643, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108708871, + "host": "mapcomplete.osm.be", + "theme": "openwindpowermap", + "imagery": "CartoDB.Voyager", + "language": "nl", + "theme-creator": "Seppe Santens" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2208458, + 51.305255450000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "lebeno", + "uid": "1710114", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #openwindpowermap", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-27T20:54:09Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.00000333680870000324, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108708826, + "host": "mapcomplete.osm.be", + "theme": "openwindpowermap", + "imagery": "CartoDB.Voyager", + "language": "nl", + "theme-creator": "Seppe Santens" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2191934, + 51.30727925 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "lebeno", + "uid": "1710114", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #openwindpowermap", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-27T20:49:39Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 0.00000334606080000285, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108708640, + "host": "mapcomplete.osm.be", + "theme": "openwindpowermap", + "imagery": "CartoDB.Voyager", + "language": "nl", + "theme-creator": "Seppe Santens" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.21754245, + 51.3093032 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "ClarissaWAM", + "uid": "13745921", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-27T19:30:50Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108706282, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.1194974, + 49.6696867 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "lebeno", + "uid": "1710114", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #artworks", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-27T18:07:43Z", + "reviewed_features": [], + "create": 2, + "modify": 8, + "delete": 0, + "area": 5.34209299997959e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108703673, + "host": "mapcomplete.osm.be", + "theme": "artworks", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7456029500000003, + 51.0370814 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "lebeno", + "uid": "1710114", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-27T18:00:55Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.00000165866688000461, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108703402, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7439911, + 51.037078199999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "lebeno", + "uid": "1710114", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-27T17:46:29Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108702879, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7454008, + 51.0368833 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "lebeno", + "uid": "1710114", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-27T17:39:18Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108702612, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7454953, + 51.0373494 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-27T17:15:29Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 7.94692799996937e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108701765, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.44542635, + 51.1396407 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-27T13:19:29Z", + "reviewed_features": [], + "create": 5, + "modify": 1, + "delete": 0, + "area": 0.00506554391943092, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108691847, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/signals", + "imagery": "EsriWorldImageryClarity", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.628302649999995, + -34.651587649999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Frans_Napaters", + "uid": "3574538", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-27T12:51:25Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 6.19165170007364e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108690606, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.97222045, + 51.12304215 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Willhelm_Mueller", + "uid": "308224", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-27T10:29:53Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108680475, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 10.5425827, + 52.2556346 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Willhelm_Mueller", + "uid": "308224", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-27T10:26:12Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108680212, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 10.530704, + 52.2579515 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "C-SIm", + "uid": "5032262", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #climbing", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-27T10:02:53Z", + "reviewed_features": [], + "create": 1, + "modify": 7, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108678356, + "host": "mapcomplete.osm.be", + "theme": "climbing", + "imagery": "osm", + "language": "en", + "theme-creator": "Christian Neumann " + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.5205818, + 42.5275233 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "dasFF", + "uid": "6695709", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-27T09:38:11Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 8.34600000006654e-10, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108676310, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.3581119, + 48.6451984 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Koen Rijnsent", + "uid": "4569696", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #artworks", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-27T08:17:47Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108670320, + "host": "mapcomplete.osm.be", + "theme": "artworks", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.1197442, + 52.0889652 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-27T03:48:48Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108652577, + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "osm", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -72.6167449, + -38.7327441 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "pi11", + "uid": "12066190", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #fietsstraten", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-26T23:46:34Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 8.27540700003382e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108649257, + "host": "mapcomplete.osm.be", + "theme": "fietsstraten", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.53041715, + 51.22723685 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "pkoby", + "uid": "999995", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-26T23:24:50Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108648942, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -76.6160533, + 39.3244445 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "mikelmaron", + "uid": "999", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-26T19:26:27Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108642981, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "imagery": "Mapbox", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -76.9843903, + 38.9417097 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "mikelmaron", + "uid": "999", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #ghostbikes", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-26T19:24:34Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108642896, + "host": "mapcomplete.osm.be", + "theme": "ghostbikes", + "imagery": "CartoDB.Positron", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -76.9929744, + 38.9352868 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.8.5-rc2", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-26T14:37:07Z", + "reviewed_features": [], + "create": 2, + "modify": 9, + "delete": 0, + "area": 6.53659999968115e-10, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108631066, + "host": "127.0.0.1:1234", + "theme": "cyclofix", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.98198105, + 50.957867300000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.8.3f", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/railway", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-26T14:30:46Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 2.376389999707e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108630792, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/railway", + "imagery": "osm", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.66789665, + -34.66014615 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.8.5-rc1", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-26T14:10:39Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108629843, + "host": "pietervdvn.github.io", + "path": "mc/feature/road-splitting/", + "theme": "benches", + "imagery": "osm", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.9202898, + 45.5651718 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-26T13:20:01Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108627710, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/signals", + "imagery": "Mapbox", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.717643, + -34.6661333 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.8.5-rc1", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-26T13:09:23Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108627214, + "host": "pietervdvn.github.io", + "path": "mc/feature/road-splitting/", + "theme": "aed", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.9226714, + 45.5651055 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.8.5-rc1", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-26T13:06:29Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108627066, + "host": "pietervdvn.github.io", + "path": "mc/feature/road-splitting/", + "theme": "toilets", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.9228191, + 45.5646536 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.8.5-rc1", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-26T09:21:08Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108609516, + "host": "127.0.0.1:1234", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1992957, + 51.2504341 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.8.4-rc3", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-25T21:00:39Z", + "reviewed_features": [], + "create": 3, + "modify": 7, + "delete": 0, + "area": 0.0228814089827609, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108580733, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "trees", + "imagery": "Mapbox", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.6724676, + -33.54374985 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "ralley", + "uid": "670820", + "editor": "MapComplete 0.8.4-rc3", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-25T20:00:04Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108579166, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "aed", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 174.7104652, + -36.8697646 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.8.4-rc3", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-25T19:09:26Z", + "reviewed_features": [], + "create": 0, + "modify": 7, + "delete": 0, + "area": 1.31313600006904e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108577675, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "trees", + "imagery": "osm", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.7731406, + -33.488473850000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.8.5-rc1", + "comment": "Adding data with #MapComplete for theme #campersite", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-25T12:04:15Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108562739, + "host": "pietervdvn.github.io", + "path": "mc/feature/road-splitting/", + "theme": "campersite", + "imagery": "osm", + "language": "en", + "theme-creator": "joost schouppe" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.5352854, + 46.2692277 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.8.5-rc1", + "comment": "Adding data with #MapComplete for theme #campersite", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-25T12:03:46Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 4.22799998504021e-10, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108562725, + "host": "pietervdvn.github.io", + "path": "mc/feature/road-splitting/", + "theme": "campersite", + "imagery": "osm", + "language": "en", + "theme-creator": "joost schouppe" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.5351344000000005, + 46.2692284 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Frans_Napaters", + "uid": "3574538", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-25T10:00:57Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 6.19165170007364e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108558900, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.97222045, + 51.12304215 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "beardhatcode", + "uid": "5439560", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #sport_pitches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-25T08:49:23Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000108979809000292, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108556779, + "host": "mapcomplete.osm.be", + "theme": "sport_pitches", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.62736645, + 50.86434745 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "alexander_mart", + "uid": "458554", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-25T01:34:03Z", + "reviewed_features": [], + "create": 0, + "modify": 7, + "delete": 0, + "area": 0.0010830285095402, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108550458, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 84.96379145, + 56.4727002 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Moisès", + "uid": "12884230", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-24T16:23:01Z", + "reviewed_features": [], + "create": 0, + "modify": 7, + "delete": 0, + "area": 0.00171027374740006, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108538629, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2355926999999998, + 41.543791299999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-24T16:12:00Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 1.01425399996098e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108538300, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.95734685, + 48.0559873 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.8.5-rc1", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-24T13:25:05Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108532499, + "host": "pietervdvn.github.io", + "path": "mc/feature/road-splitting/", + "theme": "aed", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.504129, + 49.5927947 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.8.5-rc1", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-24T13:24:00Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108532464, + "host": "pietervdvn.github.io", + "path": "mc/feature/road-splitting/", + "theme": "toilets", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.5040458, + 49.5927651 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.8.5-rc1", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-24T13:10:03Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108532058, + "host": "pietervdvn.github.io", + "path": "mc/feature/road-splitting/", + "theme": "charging_stations", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.5034987, + 49.5928573 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.8.5-rc1", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-24T13:05:46Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108531914, + "host": "pietervdvn.github.io", + "path": "mc/feature/road-splitting/", + "theme": "charging_stations", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.5034987, + 49.5928573 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "hke2912", + "uid": "5154951", + "editor": "MapComplete 0.8.4-rc3", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-24T07:53:45Z", + "reviewed_features": [], + "create": 2, + "modify": 1, + "delete": 0, + "area": 3.27179999967618e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108522608, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "benches", + "imagery": "osm", + "language": "de", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.6309916, + 51.957496 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-24T00:34:32Z", + "reviewed_features": [], + "create": 3, + "modify": 5, + "delete": 0, + "area": 0.000421774771140168, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108516737, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/signals", + "imagery": "EsriWorldImageryClarity", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.77106055, + -34.655521300000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "JackNUMBER", + "uid": "4846986", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-23T18:31:18Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108508414, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.069506, + 48.8824157 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.8.5-rc1", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-23T17:23:30Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108505875, + "host": "pietervdvn.github.io", + "path": "mc/feature/road-splitting/", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.8838655, + 50.7742916 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.8.5-rc1", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-23T17:23:21Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108505869, + "host": "pietervdvn.github.io", + "path": "mc/feature/road-splitting/", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.8838655, + 50.7742916 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.8.5-rc1", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-23T17:22:23Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108505836, + "host": "pietervdvn.github.io", + "path": "mc/feature/road-splitting/", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.8838655, + 50.7742916 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.8.5-rc1", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-23T17:20:57Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108505791, + "host": "pietervdvn.github.io", + "path": "mc/feature/road-splitting/", + "theme": "charging_stations", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.8836831, + 50.7740032 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.8.5-rc1", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-23T17:20:41Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108505781, + "host": "pietervdvn.github.io", + "path": "mc/feature/road-splitting/", + "theme": "charging_stations", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.8836831, + 50.7740032 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.8.5-rc1", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-23T17:20:08Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108505761, + "host": "pietervdvn.github.io", + "path": "mc/feature/road-splitting/", + "theme": "charging_stations", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.8836831, + 50.7740032 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Moisès", + "uid": "12884230", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-23T14:54:46Z", + "reviewed_features": [], + "create": 2, + "modify": 2, + "delete": 0, + "area": 0.0000431810450999976, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108499953, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2833604999999997, + 41.596085450000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Moisès", + "uid": "12884230", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-23T14:49:32Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.0000286198648199722, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108499761, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.21537925, + 41.544907699999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "ClarissaWAM", + "uid": "13745921", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-23T14:47:41Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108499693, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.0629672, + 49.567449 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "matissevdberg", + "uid": "12928471", + "editor": "MapComplete 0.8.4-rc3", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-23T14:04:55Z", + "reviewed_features": [], + "create": 7, + "modify": 10, + "delete": 0, + "area": 0.0923656979816407, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108498025, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "surveillance", + "imagery": "AGIV", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.84967595, + 50.9675912 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.8.4-rc3", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-23T13:58:35Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108497725, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/signals", + "imagery": "osm", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.5296926, + -34.6390782 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.8.3f", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-23T13:04:27Z", + "reviewed_features": [], + "create": 10, + "modify": 18, + "delete": 0, + "area": 0.00626756999880104, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108495359, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/signals", + "imagery": "EsriWorldImagery", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.6633149, + -34.65173885 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "hazelnut2", + "uid": "433041", + "editor": "MapComplete 0.8.3f", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-23T12:25:04Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108493319, + "host": "mapcomplete.osm.be", + "theme": "shops", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 16.5872921, + 43.1389492 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "White_Rabbit", + "uid": "604999", + "editor": "MapComplete 0.2.2a", + "comment": "Adding data with #MapComplete for theme #climbing", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-23T10:04:25Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 3.29168800002199e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108483772, + "theme": "climbing", + "language": "en", + "theme-creator": "Christian Neumann " + }, + "geometry": { + "type": "Point", + "coordinates": [ + 10.3283045, + 45.516046700000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "treemap", + "uid": "926359", + "editor": "MapComplete 0.8.4-rc3", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-23T05:39:14Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0.00000629172780000359, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108463738, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.5663713, + 45.47880995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "thomas132", + "uid": "9643191", + "editor": "MapComplete 0.8.3f", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-23T02:41:08Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108456169, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "imagery": "HDM_HOT", + "language": "en", + "theme-creator": "Erwin Olario" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -93.5570759, + 41.6753625 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.8.3f", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-22T23:56:36Z", + "reviewed_features": [], + "create": 4, + "modify": 4, + "delete": 0, + "area": 0.00498066478784022, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108454283, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/signals", + "imagery": "osm", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.6548431, + -34.648801199999994 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.8.4-rc3", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-22T15:15:25Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 2.81514999998824e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108436582, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "playgrounds", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.3072549, + 51.23067575 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.8.4-rc3", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-22T14:43:46Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.0000834172533999958, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108435131, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "benches", + "imagery": "osm", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.3063540499999995, + 51.2423047 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "PicoPlex", + "uid": "13702329", + "editor": "MapComplete 0.8.4/bike-infra", + "comment": "Adding data with #MapComplete for theme #cycle_infra", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-22T14:10:38Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000647996531997118, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108433663, + "host": "pietervdvn.github.io", + "path": "mc/project/cycle-infra/", + "theme": "cycle_infra", + "imagery": "CartoDB.Positron", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.24493, + 51.213230949999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.8.3f", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-22T13:03:50Z", + "reviewed_features": [], + "create": 7, + "modify": 11, + "delete": 0, + "area": 0.00644143685014108, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108430716, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/signals", + "imagery": "osm", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.66412755, + -34.6525143 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Moisès", + "uid": "12884230", + "editor": "MapComplete 0.8.3f", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-22T12:20:24Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 0.533161182943247, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108428293, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.82105535, + 41.34369865 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.8.4/bike-infra", + "comment": "Adding data with #MapComplete for theme #cycle_infra", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-22T09:38:18Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108416991, + "host": "pietervdvn.github.io", + "path": "mc/project/cycle-infra/", + "theme": "cycle_infra", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2099896, + 51.2189471 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.8.3f", + "comment": "Adding data with #MapComplete for theme #artworks", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-22T09:23:49Z", + "reviewed_features": [], + "create": 2, + "modify": 6, + "delete": 0, + "area": 1.37082000002157e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108415854, + "host": "mapcomplete.osm.be", + "theme": "artworks", + "imagery": "AGIV10cm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.365448, + 51.00100155 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Fizzie41", + "uid": "461130", + "editor": "MapComplete 0.8.3f", + "comment": "Adding data with #MapComplete for theme #campersite", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-22T05:13:25Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.0000412833206198478, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108397905, + "host": "mapcomplete.osm.be", + "theme": "campersite", + "imagery": "osm", + "language": "en", + "theme-creator": "joost schouppe" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 152.78021595, + -28.197958800000002 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.8.3f", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-22T00:12:33Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108390804, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/signals", + "imagery": "EsriWorldImageryClarity", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.7910967, + -34.6501798 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.8.3f", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-22T00:12:26Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108390802, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/signals", + "imagery": "EsriWorldImageryClarity", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.5935962, + -34.6448995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.8.3f", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-22T00:11:13Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108390788, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/signals", + "imagery": "EsriWorldImageryClarity", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.5935962, + -34.6448995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.8.3f", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-21T22:24:07Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108389294, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/signals", + "imagery": "EsriWorldImageryClarity", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.7880751, + -34.6505571 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.8.3f", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-21T21:51:13Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108388301, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "AGIV10cm", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.3089677, + 51.2343257 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.8.3f", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-21T21:49:19Z", + "reviewed_features": [], + "create": 1, + "modify": 6, + "delete": 0, + "area": 8.44838899993966e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108388258, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/signals", + "imagery": "EsriWorldImageryClarity", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.78787265, + -34.65047105 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.8.3f", + "comment": "Adding data with #MapComplete for theme #nature", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-21T18:34:10Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108381433, + "host": "mapcomplete.osm.be", + "theme": "nature", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2436999, + 50.5964984 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "kschimney", + "uid": "676950", + "editor": "MapComplete 0.8.3f", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-21T18:09:29Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108380604, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "de", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.0528616, + 52.2680928 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.8.4-rc3", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-21T13:44:38Z", + "reviewed_features": [], + "create": 2, + "modify": 3, + "delete": 0, + "area": 1.32047999982601e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108369264, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "trees", + "imagery": "Mapbox", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -71.3701939, + -34.634742700000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.8.3f", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-21T13:21:20Z", + "reviewed_features": [], + "create": 13, + "modify": 21, + "delete": 0, + "area": 0.00416521351223975, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108368191, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/signals", + "imagery": "EsriWorldImageryClarity", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.6060913, + -34.651439800000006 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.8.3f", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-21T13:14:25Z", + "reviewed_features": [], + "create": 4, + "modify": 6, + "delete": 0, + "area": 0.000366451561170048, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108367822, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/signals", + "imagery": "EsriWorldImageryClarity", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.75169235, + -34.65975415 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dbrgn", + "uid": "317694", + "editor": "MapComplete 0.8.3f", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-21T10:35:04Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108359961, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.8227697, + 47.2275413 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "ralley", + "uid": "670820", + "editor": "MapComplete 0.8.4-rc3", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-21T07:16:47Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108351111, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "aed", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 174.5874281, + -36.0949011 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.8.3f", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-21T03:45:48Z", + "reviewed_features": [], + "create": 6, + "modify": 4, + "delete": 0, + "area": 2.53535999994821e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108345017, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/signals", + "imagery": "osm", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.7880269, + -34.650549299999994 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.8.4-rc3", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-21T03:45:31Z", + "reviewed_features": [], + "create": 5, + "modify": 12, + "delete": 0, + "area": 9.67058999999111e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108345010, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "trees", + "imagery": "CyclOSM", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -71.368774, + -34.63359135 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.8.3f", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-21T00:10:02Z", + "reviewed_features": [], + "create": 4, + "modify": 3, + "delete": 0, + "area": 0.00386566315499994, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108342671, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/signals", + "imagery": "EsriWorldImageryClarity", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.69185155, + -34.654613 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.8.3f", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-21T00:07:41Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108342662, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/signals", + "imagery": "EsriWorldImageryClarity", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.5657603, + -34.6407465 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.8.3f", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-20T20:11:15Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 5.52783399994883e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108337961, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.0203997000000005, + 51.18336675 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.8.3f", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-20T20:09:09Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108337894, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.0205408, + 51.1834753 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.8.3f", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-20T19:54:08Z", + "reviewed_features": [], + "create": 0, + "modify": 7, + "delete": 0, + "area": 0.0000278604949199947, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108337404, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.00173385, + 51.1658759 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Michael Monschau", + "uid": "6801918", + "editor": "MapComplete 0.8.3f", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-20T19:34:13Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108336700, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "imagery": "osm", + "language": "de", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.591224, + 50.3595479 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Michael Monschau", + "uid": "6801918", + "editor": "MapComplete 0.8.3f", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-20T19:24:21Z", + "reviewed_features": [], + "create": 0, + "modify": 13, + "delete": 0, + "area": 0.000616985960260121, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108336297, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.57653435, + 50.353613100000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.8.3f", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-20T13:11:37Z", + "reviewed_features": [], + "create": 18, + "modify": 22, + "delete": 0, + "area": 0.00681199149450069, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108321249, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/signals", + "imagery": "EsriWorldImageryClarity", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.653345099999996, + -34.652850650000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.8.4/bike-infra", + "comment": "Adding data with #MapComplete for theme #cycle_infra", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-20T08:08:11Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.0000194057600400171, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108298931, + "host": "pietervdvn.github.io", + "path": "mc/project/cycle-infra/", + "theme": "cycle_infra", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2261438, + 51.2207042 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "JanCrea", + "uid": "3358532", + "editor": "MapComplete 0.8.3f", + "comment": "Adding data with #MapComplete for theme #speelplekken_temp", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-20T06:50:04Z", + "reviewed_features": [], + "create": 0, + "modify": 11, + "delete": 0, + "area": 0.00724530187625957, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108293269, + "host": "mapcomplete.osm.be", + "theme": "speelplekken_temp", + "imagery": "CartoDB.Positron", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.479119799999999, + 51.14972285 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.8.3f", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-20T00:45:03Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108279039, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/signals", + "imagery": "EsriWorldImageryClarity", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.7887698, + -34.650802 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ruben Van de Velde", + "uid": "2676725", + "editor": "MapComplete 0.8.4-rc3", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-19T18:04:14Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108269386, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "hailhydrant", + "imagery": "HDM_HOT", + "language": "en", + "theme-creator": "Erwin Olario" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7248091, + 51.0463223 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "CarmeP", + "uid": "13279572", + "editor": "MapComplete 0.8.3f", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete1.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-19T16:08:22Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108264053, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "imagery": "HDM_HOT", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2444888, + 41.4527621 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "dasFF", + "uid": "6695709", + "editor": "MapComplete 0.8.3f", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-19T15:21:37Z", + "reviewed_features": [], + "create": 2, + "modify": 3, + "delete": 0, + "area": 0.000327171077760041, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108261778, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.37269375, + 48.6594726 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "dasFF", + "uid": "6695709", + "editor": "MapComplete 0.8.3f", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-19T15:12:27Z", + "reviewed_features": [], + "create": 1, + "modify": 10, + "delete": 0, + "area": 0.00298218531455991, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108261301, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "de", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.403545099999999, + 48.6474566 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "dasFF", + "uid": "6695709", + "editor": "MapComplete 0.8.3f", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-19T14:56:22Z", + "reviewed_features": [], + "create": 3, + "modify": 6, + "delete": 0, + "area": 0.000354792748679977, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108260504, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.36969635, + 48.643115699999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.8.3f", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-19T13:47:48Z", + "reviewed_features": [], + "create": 3, + "modify": 4, + "delete": 0, + "area": 0.00000435307425003243, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108257302, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/signals", + "imagery": "EsriWorldImageryClarity", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.55607215, + -34.63999235 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.8.3f", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-19T13:47:29Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108257280, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/signals", + "imagery": "EsriWorldImageryClarity", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.5773514, + -34.6425593 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Nickrds09", + "uid": "966535", + "editor": "MapComplete 0.8.3f", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-19T13:31:27Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108256380, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "imagery": "HDM_HOT", + "language": "en", + "theme-creator": "Erwin Olario" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 121.592998, + 14.0253039 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.8.3f", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-19T13:20:05Z", + "reviewed_features": [], + "create": 5, + "modify": 8, + "delete": 0, + "area": 0.0040078130853001, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108255793, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/signals", + "imagery": "EsriWorldImageryClarity", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.6643133, + -34.65404685 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.8.3f", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-19T12:28:14Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108252933, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "imagery": "HDM_HOT", + "language": "en", + "theme-creator": "Erwin Olario" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.4033236, + 51.1453697 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Robin van der Linde", + "uid": "5093765", + "editor": "MapComplete 0.8.4/bike-infra", + "comment": "Adding data with #MapComplete for theme #cycle_infra", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-19T10:27:54Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 1.5060869999901e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108242726, + "host": "pietervdvn.github.io", + "path": "mc/project/cycle-infra/", + "theme": "cycle_infra", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.57336795, + 53.02736564999999 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Nos_Fi", + "uid": "526289", + "editor": "MapComplete 0.8.3f", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-19T10:13:02Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108241385, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.9470255, + 56.9688806 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.8.3f", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-19T09:08:45Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108235828, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.6281972, + 52.9422425 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.8.3f", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-19T08:53:58Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108234620, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.6276608, + 52.9441933 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "fx99", + "uid": "130472", + "editor": "MapComplete 0.8.3f", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-19T08:30:30Z", + "reviewed_features": [], + "create": 0, + "modify": 13, + "delete": 0, + "area": 0.00177002120105995, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108232811, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "de", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.887518499999999, + 48.61831045 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.8.3f", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-19T04:34:38Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108216139, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/signals", + "imagery": "EsriWorldImageryClarity", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.5302183, + -34.6390572 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.8.3f", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/railway", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-19T00:01:10Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108210956, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/railway", + "imagery": "osm", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.6555399, + -34.4580123 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "CJam25", + "uid": "11605632", + "editor": "MapComplete 0.8.3f", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-18T16:28:39Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108199285, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 10.1830368, + 47.2578633 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dónal", + "uid": "574926", + "editor": "MapComplete 0.8.3e", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/seppesantens/MapComplete-Themes/main/OpenLighthouseMap/OpenLighthouseMap.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-18T16:07:18Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 8.49524999992415e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108198429, + "host": "mapcomplete.osm.be", + "theme": "gh://seppesantens/mapcomplete-themes/main/openlighthousemap/openlighthousemap.json", + "imagery": "Stamen.TonerLite", + "language": "en", + "theme-creator": "Seppe Santens" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -8.25466665, + 51.79303815 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "clever", + "uid": "342037", + "editor": "MapComplete 0.8.3e", + "comment": "Adding data with #MapComplete for theme #personal", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-18T15:54:17Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 3.93087999936631e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108197990, + "host": "mapcomplete.osm.be", + "theme": "personal", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -66.3764379, + 48.065903399999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.8.3e", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-18T11:16:58Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108188557, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.837549, + 52.4468179 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.8.3e", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-18T11:15:04Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108188508, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.8361274, + 52.4474947 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "CJam25", + "uid": "11605632", + "editor": "MapComplete 0.8.3e", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-18T10:30:25Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108187047, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 10.1754642, + 47.26041 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "CJam25", + "uid": "11605632", + "editor": "MapComplete 0.8.3e", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-18T10:27:10Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108186945, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 10.1830368, + 47.2578633 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Koen Rijnsent", + "uid": "4569696", + "editor": "MapComplete 0.8.3e", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-18T09:30:58Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108185095, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.1290193, + 52.0854267 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "sebkur", + "uid": "22917", + "editor": "MapComplete 0.8.3e", + "comment": "Adding data with #MapComplete for theme #cyclenodes", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-18T09:11:09Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108184506, + "host": "mapcomplete.mobanisto.de", + "theme": "cyclenodes", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 14.6194635, + 51.7501632 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Koen Rijnsent", + "uid": "4569696", + "editor": "MapComplete 0.8.3e", + "comment": "Adding data with #MapComplete for theme #artworks", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-18T08:54:10Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108184012, + "host": "mapcomplete.osm.be", + "theme": "artworks", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.1265906, + 52.0909803 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "sebkur", + "uid": "22917", + "editor": "MapComplete 0.8.3e", + "comment": "Adding data with #MapComplete for theme #cyclenodes", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-18T06:30:15Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.000165062692620008, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108180260, + "host": "mapcomplete.mobanisto.de", + "theme": "cyclenodes", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 14.600713200000001, + 51.78430925000001 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "InsertUser", + "uid": "89098", + "editor": "MapComplete 0.8.3e", + "comment": "Adding data with #MapComplete for theme #benchesandpicnictables", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-17T22:32:56Z", + "reviewed_features": [], + "create": 2, + "modify": 0, + "delete": 0, + "area": 0.00000240531911999337, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108175423, + "host": "mapcomplete.osm.be", + "theme": "benchesandpicnictables", + "imagery": "osm", + "language": "en", + "theme-creator": "Peter Elderson" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -78.67418269999999, + 26.538453 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Moisès", + "uid": "12884230", + "editor": "MapComplete 0.8.3e", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-17T14:12:29Z", + "reviewed_features": [], + "create": 0, + "modify": 15, + "delete": 0, + "area": 0.0021942965223598, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108161942, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2342372, + 41.556681850000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Moisès", + "uid": "12884230", + "editor": "MapComplete 0.8.3e", + "comment": "Adding data with #MapComplete for theme #climbing", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-17T13:23:12Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108160119, + "host": "mapcomplete.osm.be", + "theme": "climbing", + "imagery": "osm", + "language": "en", + "theme-creator": "Christian Neumann " + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2080541, + 41.8045116 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Felix Edelmann", + "uid": "2274641", + "editor": "MapComplete 0.8.4-rc3", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-17T11:30:58Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108156178, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "benches", + "imagery": "osm", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.8218416, + 48.1952926 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Brandoberinspektor Erdmann", + "uid": "13364061", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-17T10:00:38Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108153380, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "EsriWorldImagery", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.7766221, + 52.851453 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.8.3e", + "comment": "Adding data with #MapComplete for theme #campersite", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-17T09:06:38Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108151544, + "host": "mapcomplete.osm.be", + "theme": "campersite", + "imagery": "osm", + "language": "en", + "theme-creator": "joost schouppe" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.1325849, + 52.0110929 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Moisès", + "uid": "12884230", + "editor": "MapComplete 0.8.3e", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-17T08:46:35Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 3.31881599999959e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108150893, + "host": "mapcomplete.osm.be", + "theme": "shops", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2092133, + 41.5408444 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.8.3e", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-17T07:26:44Z", + "reviewed_features": [], + "create": 2, + "modify": 3, + "delete": 0, + "area": 1.74369000001215e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108148756, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.194163400000001, + 51.998345150000006 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Sorbus2", + "uid": "3754896", + "editor": "MapComplete 0.8.3e", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-16T20:00:13Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108136748, + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "EsriWorldImagery", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.3684587, + 53.1441682 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Andrii'Chillik'Korda", + "uid": "883107", + "editor": "MapComplete 0.8.3e", + "comment": "Adding data with #MapComplete for theme #sport_pitches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-16T13:59:35Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 1.27077089999419e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108122622, + "host": "mapcomplete.osm.be", + "theme": "sport_pitches", + "imagery": "osm", + "language": "ru" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 33.16033375, + 47.68635585 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.8.3e", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-16T13:17:16Z", + "reviewed_features": [], + "create": 2, + "modify": 5, + "delete": 0, + "area": 1.13322000006175e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108120813, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.02238265, + 52.0249272 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.8.3e", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-16T13:10:22Z", + "reviewed_features": [], + "create": 13, + "modify": 16, + "delete": 0, + "area": 0.00662243232689882, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108120510, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/signals", + "imagery": "EsriWorldImagery", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.6617686, + -34.65209835 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "PeeWee32", + "uid": "353766", + "editor": "MapComplete 0.8.3e", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-16T11:38:30Z", + "reviewed_features": [], + "create": 2, + "modify": 2, + "delete": 0, + "area": 0.000444957839220038, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108114751, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.39535925, + 52.114477300000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.8.3e", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-16T10:33:46Z", + "reviewed_features": [], + "create": 2, + "modify": 1, + "delete": 0, + "area": 9.61959400002455e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108109786, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.5495777, + 51.20743125 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.8.3e", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-16T10:30:15Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108109522, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.5495039, + 51.2072901 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Erin76", + "uid": "8982454", + "editor": "MapComplete 0.8.3e", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-16T09:53:15Z", + "reviewed_features": [], + "create": 3, + "modify": 3, + "delete": 0, + "area": 0.000350171759079984, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108106716, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.8789959, + 50.9949351 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Erin76", + "uid": "8982454", + "editor": "MapComplete 0.8.3e", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-16T09:52:41Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108106660, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.8647842, + 50.9992925 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ltrlg", + "uid": "5035134", + "editor": "MapComplete 0.8.3e", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-16T08:22:45Z", + "reviewed_features": [], + "create": 0, + "modify": 16, + "delete": 0, + "area": 0.00336837587274002, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108100227, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "osm", + "language": "fr", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.5710134, + 47.47768965 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Wim L", + "uid": "223681", + "editor": "MapComplete 0.8.3e", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-16T03:46:19Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108081595, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -122.38201140000001, + 47.8124236 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.8.3e", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-16T00:31:40Z", + "reviewed_features": [], + "create": 3, + "modify": 3, + "delete": 0, + "area": 0.000737534453200086, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108078217, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/signals", + "imagery": "EsriWorldImageryClarity", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.757661600000006, + -34.6578412 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "clever", + "uid": "342037", + "editor": "MapComplete 0.8.3e", + "comment": "Adding data with #MapComplete for theme #personal", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-15T23:47:24Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108077506, + "host": "mapcomplete.osm.be", + "theme": "personal", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -66.3923603, + 48.0658702 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Futur3r", + "uid": "12121621", + "editor": "MapComplete 0.8.3e", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-15T22:04:00Z", + "reviewed_features": [], + "create": 0, + "modify": 6, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108075710, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "fr", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.1111803, + 45.9067356 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "clever", + "uid": "342037", + "editor": "MapComplete 0.8.3e", + "comment": "Adding data with #MapComplete for theme #personal", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-15T21:11:56Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.000248870646850011, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108074316, + "host": "mapcomplete.osm.be", + "theme": "personal", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -66.36960075, + 48.062547550000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "clever", + "uid": "342037", + "editor": "MapComplete 0.8.3e", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-15T21:03:23Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108074108, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -66.3758779, + 48.06631 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "clever", + "uid": "342037", + "editor": "MapComplete 0.8.3e", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-15T20:59:20Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.0000373635485600302, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108073998, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -66.3579502, + 48.057223 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "clever", + "uid": "342037", + "editor": "MapComplete 0.8.3e", + "comment": "Adding data with #MapComplete for theme #campersite", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-15T20:49:54Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000243789834998433, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108073645, + "host": "mapcomplete.osm.be", + "theme": "campersite", + "imagery": "osm", + "language": "en", + "theme-creator": "joost schouppe" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -66.35260665, + 48.05984875 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "clever", + "uid": "342037", + "editor": "MapComplete 0.8.3e", + "comment": "Adding data with #MapComplete for theme #campersite", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-15T20:49:29Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000243789834998433, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108073623, + "host": "mapcomplete.osm.be", + "theme": "campersite", + "imagery": "osm", + "language": "en", + "theme-creator": "joost schouppe" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -66.35260665, + 48.05984875 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "clever", + "uid": "342037", + "editor": "MapComplete 0.8.3e", + "comment": "Adding data with #MapComplete for theme #campersite", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-15T20:45:35Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.00000243789834998433, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108073474, + "host": "mapcomplete.osm.be", + "theme": "campersite", + "imagery": "osm", + "language": "en", + "theme-creator": "joost schouppe" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -66.35260665, + 48.05984875 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Moisès", + "uid": "12884230", + "editor": "MapComplete 0.8.3e", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-15T19:41:12Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108070696, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.213278, + 41.5388879 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Moisès", + "uid": "12884230", + "editor": "MapComplete 0.8.3e", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-15T19:14:20Z", + "reviewed_features": [], + "create": 1, + "modify": 7, + "delete": 0, + "area": 5.7940064000126e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108069647, + "host": "mapcomplete.osm.be", + "theme": "shops", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2116168, + 41.536439 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-8917864614", + "osm_id": 8917864614, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8917864919", + "osm_id": 8917864919, + "reasons": [ + 43 + ], + "version": 4, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8917864930", + "osm_id": 8917864930, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8917864936", + "osm_id": 8917864936, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8917864932", + "osm_id": 8917864932, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8917864925", + "osm_id": 8917864925, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8917864929", + "osm_id": 8917864929, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8917864954", + "osm_id": 8917864954, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8917864931", + "osm_id": 8917864931, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8917864955", + "osm_id": 8917864955, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8917864963", + "osm_id": 8917864963, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8917864964", + "osm_id": 8917864964, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8917864981", + "osm_id": 8917864981, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8917864980", + "osm_id": 8917864980, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8917864967", + "osm_id": 8917864967, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8923221736", + "osm_id": 8923221736, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8917854039", + "osm_id": 8917854039, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8917854020", + "osm_id": 8917854020, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8917864953", + "osm_id": 8917864953, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8917864965", + "osm_id": 8917864965, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8917841299", + "osm_id": 8917841299, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8917841302", + "osm_id": 8917841302, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8917841303", + "osm_id": 8917841303, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8917854055", + "osm_id": 8917854055, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8917864952", + "osm_id": 8917864952, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8917841306", + "osm_id": 8917841306, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8917841307", + "osm_id": 8917841307, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8917841301", + "osm_id": 8917841301, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8917841312", + "osm_id": 8917841312, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8923270763", + "osm_id": 8923270763, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8917854090", + "osm_id": 8917854090, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8917854081", + "osm_id": 8917854081, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8917854042", + "osm_id": 8917854042, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8917841305", + "osm_id": 8917841305, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8917841308", + "osm_id": 8917841308, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8917841300", + "osm_id": 8917841300, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8917854084", + "osm_id": 8917854084, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8917854074", + "osm_id": 8917854074, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8917841218", + "osm_id": 8917841218, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8917841239", + "osm_id": 8917841239, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8917841309", + "osm_id": 8917841309, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8917854072", + "osm_id": 8917854072, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8917854066", + "osm_id": 8917854066, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8917841298", + "osm_id": 8917841298, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8917841311", + "osm_id": 8917841311, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8917841313", + "osm_id": 8917841313, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8917841324", + "osm_id": 8917841324, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8917841323", + "osm_id": 8917841323, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8917841326", + "osm_id": 8917841326, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8818480493", + "osm_id": 8818480493, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8917841325", + "osm_id": 8917841325, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8917841322", + "osm_id": 8917841322, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8917841349", + "osm_id": 8917841349, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8917854061", + "osm_id": 8917854061, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "Jose Luis Infante", + "uid": "126203", + "editor": "MapComplete 0.8.3e", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete1.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-15T19:11:10Z", + "reviewed_features": [], + "create": 2, + "modify": 64, + "delete": 0, + "area": 0.000049937219099996, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108069548, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "imagery": "HDM_HOT", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2264390499999998, + 41.4573673 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Moisès", + "uid": "12884230", + "editor": "MapComplete 0.8.3e", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-15T19:09:49Z", + "reviewed_features": [], + "create": 0, + "modify": 6, + "delete": 0, + "area": 0.00000147240520000099, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108069513, + "host": "mapcomplete.osm.be", + "theme": "shops", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2108323, + 41.5372516 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Moisès", + "uid": "12884230", + "editor": "MapComplete 0.8.3e", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-15T19:08:30Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108069477, + "host": "mapcomplete.osm.be", + "theme": "shops", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.21127, + 41.5385792 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-8880071791", + "osm_id": 8880071791, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8880071786", + "osm_id": 8880071786, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "Jose Luis Infante", + "uid": "126203", + "editor": "MapComplete 0.8.3e", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete1.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-15T19:07:55Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 3.09792660000817e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108069450, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "imagery": "HDM_HOT", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.22470155, + 41.4593975 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-8875901324", + "osm_id": 8875901324, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "Jose Luis Infante", + "uid": "126203", + "editor": "MapComplete 0.8.3e", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete1.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-15T19:06:48Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108069436, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "imagery": "EsriWorldImageryClarity", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2240657, + 41.4588307 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Moisès", + "uid": "12884230", + "editor": "MapComplete 0.8.3e", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-15T19:00:17Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.0000172837993199884, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108069344, + "host": "mapcomplete.osm.be", + "theme": "shops", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.20948345, + 41.5409978 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Moisès", + "uid": "12884230", + "editor": "MapComplete 0.8.3e", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-15T19:00:17Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108069342, + "host": "mapcomplete.osm.be", + "theme": "shops", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.207518, + 41.5435661 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-8875753785", + "osm_id": 8875753785, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8875901326", + "osm_id": 8875901326, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8875901322", + "osm_id": 8875901322, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "Jose Luis Infante", + "uid": "126203", + "editor": "MapComplete 0.8.3e", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete1.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-15T19:00:02Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.00000158375502000502, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108069328, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "imagery": "HDM_HOT", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.22323085, + 41.458096999999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-8923250880", + "osm_id": 8923250880, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "Jose Luis Infante", + "uid": "126203", + "editor": "MapComplete 0.8.3e", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete1.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-15T18:54:05Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108069302, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "imagery": "HDM_HOT", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2217541, + 41.4567621 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.8.3e", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-15T13:15:45Z", + "reviewed_features": [], + "create": 5, + "modify": 7, + "delete": 0, + "area": 0.00446692557604952, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108055158, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/signals", + "imagery": "EsriWorldImageryClarity", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.64597775, + -34.64964075 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Nuytinck", + "uid": "3719237", + "editor": "MapComplete 0.8.4-rc3", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-15T10:55:44Z", + "reviewed_features": [], + "create": 2, + "modify": 4, + "delete": 0, + "area": 0.504380501584115, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108044245, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "bookcases", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.44067755, + 50.764060549999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.8.3e", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-15T00:11:18Z", + "reviewed_features": [], + "create": 2, + "modify": 2, + "delete": 0, + "area": 0.000510195288960339, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108005513, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/signals", + "imagery": "EsriWorldImageryClarity", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.7321082, + -34.6616791 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.8.3e", + "comment": "Adding data with #MapComplete for theme #RailwaySignalsARG", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-14T22:10:38Z", + "reviewed_features": [], + "create": 2, + "modify": 1, + "delete": 0, + "area": 5.79150000388124e-10, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108003508, + "host": "mapcomplete.osm.be", + "theme": "railwaysignalsarg", + "imagery": "EsriWorldImageryClarity", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.52819325, + -34.63900975 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ygramul", + "uid": "1230818", + "editor": "MapComplete 0.8.3e", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-14T17:32:07Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107994642, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.9940647, + 48.5014852 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.8.3e", + "comment": "Adding data with #MapComplete for theme #RailwaySignalsARG", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-14T13:13:02Z", + "reviewed_features": [], + "create": 18, + "modify": 20, + "delete": 0, + "area": 0.00586639018095078, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107982711, + "host": "mapcomplete.osm.be", + "theme": "railwaysignalsarg", + "imagery": "EsriWorldImageryClarity", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.64884975, + -34.653103349999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Brandoberinspektor Erdmann", + "uid": "13364061", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-14T13:05:10Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107982302, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "EsriWorldImagery", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.7682121, + 52.8421823 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ltrlg", + "uid": "5035134", + "editor": "MapComplete 0.8.3e", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-14T12:24:24Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107980055, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "osm", + "language": "fr", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.5417852, + 47.450397 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "GOwin", + "uid": "1041828", + "editor": "MapComplete 0.8.3e", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-14T11:35:39Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107976415, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 121.0629178, + 14.6475876 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "maze2p0", + "uid": "2817015", + "editor": "MapComplete 0.8.3e", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-14T09:25:54Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.0000221323050399895, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107965514, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.66548525, + 49.4155586 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Robin van der Linde", + "uid": "5093765", + "editor": "MapComplete 0.8.3e", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-14T07:09:19Z", + "reviewed_features": [], + "create": 0, + "modify": 6, + "delete": 0, + "area": 0.0000030559985800025, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107955142, + "host": "pietervdvn.github.io", + "path": "mc/master/", + "theme": "benches", + "imagery": "osm", + "language": "nl", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.56148415, + 53.0172139 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.8.3e", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-14T06:16:13Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 9.3576600001346e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107951099, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.4490648999999998, + 51.09201645 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.8.3e", + "comment": "Adding data with #MapComplete for theme #RailwaySignalsARG", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-14T00:10:46Z", + "reviewed_features": [], + "create": 6, + "modify": 6, + "delete": 0, + "area": 0.00395359726761067, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107937707, + "host": "mapcomplete.osm.be", + "theme": "railwaysignalsarg", + "imagery": "EsriWorldImageryClarity", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.689340349999995, + -34.65437685 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.8.3e", + "comment": "Adding data with #MapComplete for theme #RailwaySignalsARG", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-14T00:10:45Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107937706, + "host": "mapcomplete.osm.be", + "theme": "railwaysignalsarg", + "imagery": "EsriWorldImageryClarity", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.5674018, + -34.6408447 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.8.3e", + "comment": "Adding data with #MapComplete for theme #RailwaySignalsARG", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-14T00:08:19Z", + "reviewed_features": [], + "create": 2, + "modify": 3, + "delete": 0, + "area": 3.69359999884552e-10, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107937683, + "host": "mapcomplete.osm.be", + "theme": "railwaysignalsarg", + "imagery": "EsriWorldImageryClarity", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.5673964, + -34.640861799999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.8.3e", + "comment": "Adding data with #MapComplete for theme #RailwaySignalsARG", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-14T00:08:16Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107937680, + "host": "mapcomplete.osm.be", + "theme": "railwaysignalsarg", + "imagery": "EsriWorldImageryClarity", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.5497877, + -34.6397402 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.8.3e", + "comment": "Adding data with #MapComplete for theme #RailwaySignalsARG", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-14T00:07:40Z", + "reviewed_features": [], + "create": 2, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107937669, + "host": "mapcomplete.osm.be", + "theme": "railwaysignalsarg", + "imagery": "EsriWorldImageryClarity", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.5497877, + -34.6397104 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "trolleway", + "uid": "397326", + "editor": "MapComplete 0.8.3e", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-14T00:05:35Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.0000555300270799818, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107937641, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 38.23359185, + 55.5566521 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "trolleway", + "uid": "397326", + "editor": "MapComplete 0.8.3e", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-14T00:00:38Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107937565, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 37.7109274, + 55.8018651 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.8.3e", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-13T23:30:47Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107937146, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "imagery": "Mapbox", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 15.0769222, + 50.7779514 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.8.3e", + "comment": "Adding data with #MapComplete for theme #artworks", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-13T21:34:01Z", + "reviewed_features": [], + "create": 1, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107934811, + "host": "mapcomplete.osm.be", + "theme": "artworks", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 15.0595318, + 50.7697147 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "profemo", + "uid": "12232061", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 1, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-13T21:04:35Z", + "reviewed_features": [], + "create": 4, + "modify": 6, + "delete": 0, + "area": 0.00080840842928992, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107934101, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.180553450000001, + 52.23052595 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.8.4-rc3", + "comment": "Adding data with #MapComplete for theme #artworks", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-13T19:27:13Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107930960, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "artworks", + "imagery": "EsriWorldImagery", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 15.0556925, + 50.7733671 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "WinstonSmith", + "uid": "36030", + "editor": "MapComplete 0.8.3e", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-13T19:26:36Z", + "reviewed_features": [], + "create": 2, + "modify": 2, + "delete": 0, + "area": 0.0000264744511900043, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107930934, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.37481995, + 44.49866815 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.8.3e", + "comment": "Adding data with #MapComplete for theme #RailwaySignalsARG", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-13T13:35:05Z", + "reviewed_features": [], + "create": 3, + "modify": 10, + "delete": 0, + "area": 0.00154856945053954, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107913936, + "host": "mapcomplete.osm.be", + "theme": "railwaysignalsarg", + "imagery": "EsriWorldImageryClarity", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.5854356, + -34.64572665 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.8.3e", + "comment": "Adding data with #MapComplete for theme #RailwaySignalsARG", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-13T12:09:46Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 4.96727550003341e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107908727, + "host": "mapcomplete.osm.be", + "theme": "railwaysignalsarg", + "imagery": "EsriWorldImageryClarity", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.789410849999996, + -34.65037395 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Nuytinck", + "uid": "3719237", + "editor": "MapComplete 0.8.4-rc2", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-13T11:17:56Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107904564, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "bookcases", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7078171, + 51.0520396 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.8.3e", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-13T08:32:46Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 1.14493909999203e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107891229, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.24247395, + 50.73778735 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Yeti in a Box", + "uid": "9411521", + "editor": "MapComplete 0.8.3e", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-13T07:13:25Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107884831, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.1102142, + 57.1578867 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.8.4-rc2", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-13T05:04:31Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 1.26357600018784e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107874799, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "trees", + "imagery": "CyclOSM", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.66658749999999, + -33.440852250000006 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.8.3e", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-13T02:25:31Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 4.66640199998775e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107868386, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 15.0610946, + 50.77482845 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.8.4-rc2", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-13T01:45:07Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107867779, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "cyclofix", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 15.0012555, + 50.7356145 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.8.3e", + "comment": "Adding data with #MapComplete for theme #RailwaySignalsARG", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-12T23:55:24Z", + "reviewed_features": [], + "create": 3, + "modify": 5, + "delete": 0, + "area": 0.00291577481028032, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107866381, + "host": "mapcomplete.osm.be", + "theme": "railwaysignalsarg", + "imagery": "EsriWorldImageryClarity", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.6590944, + -34.6446411 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.8.3e", + "comment": "Adding data with #MapComplete for theme #artworks", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-12T22:17:50Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107864456, + "host": "mapcomplete.osm.be", + "theme": "artworks", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 15.0599096, + 50.7745699 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Frederik Bové", + "uid": "9895600", + "editor": "MapComplete 0.8.3e", + "comment": "Adding data with #MapComplete for theme #speelplekken", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-12T21:00:54Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000146039010999907, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107862428, + "host": "mapcomplete.osm.be", + "theme": "speelplekken", + "imagery": "CartoDB.Positron", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.46821575, + 51.14545065 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.8.4-rc1", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-12T18:58:40Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107858287, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "cyclofix", + "imagery": "EsriWorldImagery", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 15.0579905, + 50.7696993 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.8.4-rc1", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-12T18:58:29Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107858279, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "cyclofix", + "imagery": "EsriWorldImagery", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 15.0567831, + 50.7710809 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.8.4-rc1", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-12T18:58:29Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107858278, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "cyclofix", + "imagery": "EsriWorldImagery", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 15.0567831, + 50.7710809 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "sebkur", + "uid": "22917", + "editor": "MapComplete 0.8.3e", + "comment": "Adding data with #MapComplete for theme #cyclenodes", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-12T18:33:20Z", + "reviewed_features": [], + "create": 3, + "modify": 4, + "delete": 0, + "area": 0.000259093989000139, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107857284, + "host": "mapcomplete.mobanisto.de", + "theme": "cyclenodes", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 14.6491539, + 51.722251650000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "ClarissaWAM", + "uid": "13745921", + "editor": "MapComplete 0.8.3e", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-12T17:01:57Z", + "reviewed_features": [], + "create": 23, + "modify": 51, + "delete": 0, + "area": 0.193035429340983, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107853376, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.206401, + 49.70821565 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "sebkur", + "uid": "22917", + "editor": "MapComplete 0.8.3e", + "comment": "Adding data with #MapComplete for theme #cyclenodes", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-12T16:51:35Z", + "reviewed_features": [], + "create": 8, + "modify": 11, + "delete": 0, + "area": 0.0000993684082299833, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107852873, + "host": "mapcomplete.mobanisto.de", + "theme": "cyclenodes", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 14.64501375, + 51.741143949999994 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "ClarissaWAM", + "uid": "13745921", + "editor": "MapComplete 0.8.3e", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-12T16:50:27Z", + "reviewed_features": [], + "create": 1, + "modify": 6, + "delete": 0, + "area": 0.0154956753896392, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107852821, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.94825415, + 49.9165269 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "matissevdberg", + "uid": "12928471", + "editor": "MapComplete 0.8.4-rc1", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-12T16:37:12Z", + "reviewed_features": [], + "create": 2, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107852154, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "surveillance", + "imagery": "AGIV", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2426351, + 50.7384463 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "matissevdberg", + "uid": "12928471", + "editor": "MapComplete 0.8.4-rc1", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-12T16:36:58Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107852136, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "surveillance", + "imagery": "AGIV", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3343592, + 51.0111175 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "matissevdberg", + "uid": "12928471", + "editor": "MapComplete 0.8.4-rc1", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-12T16:36:45Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107852122, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "surveillance", + "imagery": "AGIV", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3343592, + 51.0111175 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "matissevdberg", + "uid": "12928471", + "editor": "MapComplete 0.8.4-rc1", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-12T16:36:27Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107852108, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "surveillance", + "imagery": "AGIV", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3343592, + 51.0111175 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "matissevdberg", + "uid": "12928471", + "editor": "MapComplete 0.8.4-rc1", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-12T16:35:55Z", + "reviewed_features": [], + "create": 2, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107852081, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "surveillance", + "imagery": "AGIV", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3343592, + 51.0111175 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "matissevdberg", + "uid": "12928471", + "editor": "MapComplete 0.8.4-rc1", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-12T16:35:37Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107852061, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "surveillance", + "imagery": "AGIV", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3401609, + 51.0127806 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "matissevdberg", + "uid": "12928471", + "editor": "MapComplete 0.8.4-rc1", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-12T16:35:21Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107852036, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "surveillance", + "imagery": "AGIV", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3401609, + 51.0127806 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "matissevdberg", + "uid": "12928471", + "editor": "MapComplete 0.8.4-rc1", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-12T16:35:08Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107852022, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "surveillance", + "imagery": "AGIV", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3401609, + 51.0127806 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "matissevdberg", + "uid": "12928471", + "editor": "MapComplete 0.8.4-rc1", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-12T16:34:54Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107852005, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "surveillance", + "imagery": "AGIV", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3401609, + 51.0127806 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "matissevdberg", + "uid": "12928471", + "editor": "MapComplete 0.8.4-rc1", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-12T16:34:22Z", + "reviewed_features": [], + "create": 2, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107851987, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "surveillance", + "imagery": "AGIV", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3401609, + 51.0127806 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "matissevdberg", + "uid": "12928471", + "editor": "MapComplete 0.8.4-rc1", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-12T16:33:59Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107851972, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "surveillance", + "imagery": "AGIV", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3401977, + 51.0127793 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "matissevdberg", + "uid": "12928471", + "editor": "MapComplete 0.8.4-rc1", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-12T16:31:23Z", + "reviewed_features": [], + "create": 4, + "modify": 1, + "delete": 0, + "area": 0.00060868161360047, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107851858, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "surveillance", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4107613, + 51.0149358 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "matissevdberg", + "uid": "12928471", + "editor": "MapComplete 0.8.4-rc1", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-12T16:31:19Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107851853, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "surveillance", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4806194, + 51.0166452 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "matissevdberg", + "uid": "12928471", + "editor": "MapComplete 0.8.4-rc1", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-12T16:31:02Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107851839, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "surveillance", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4806194, + 51.0166452 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "matissevdberg", + "uid": "12928471", + "editor": "MapComplete 0.8.4-rc1", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-12T16:31:02Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107851838, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "surveillance", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4806194, + 51.0166452 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.8.3e", + "comment": "Adding data with #MapComplete for theme #RailwaySignalsARG", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-12T13:09:34Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107841738, + "host": "mapcomplete.osm.be", + "theme": "railwaysignalsarg", + "imagery": "EsriWorldImageryClarity", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.7910578, + -34.650065 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 1, + "name": "suspect_word" + }, + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "PicoPlex", + "uid": "13702329", + "editor": "MapComplete 0.8.3e", + "comment": "Deleting a point with #MapComplete for theme #bookcases: testing point", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-12T12:37:58Z", + "reviewed_features": [], + "create": 0, + "modify": 0, + "delete": 1, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107840048, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "deletion": "yes", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4891864, + 51.2049038 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "PicoPlex", + "uid": "13702329", + "editor": "MapComplete 0.8.3e", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-12T12:36:59Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107840002, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4891864, + 51.2049038 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Frans_Napaters", + "uid": "3574538", + "editor": "MapComplete 0.8.3e", + "comment": "Adding data with #MapComplete for theme #personal", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-12T09:23:25Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 0.000418879043979992, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107826441, + "host": "mapcomplete.osm.be", + "theme": "personal", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.8842757500000005, + 51.1196966 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Frans_Napaters", + "uid": "3574538", + "editor": "MapComplete 0.8.3e", + "comment": "Adding data with #MapComplete for theme #personal", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-12T08:02:33Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107820621, + "host": "mapcomplete.osm.be", + "theme": "personal", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.9019891, + 51.12581 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.8.4-rc1", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-11T21:56:11Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107799153, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "benches", + "imagery": "osm", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2183929, + 51.2185418 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-3947006592", + "osm_id": 3947006592, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "Jose Luis Infante", + "uid": "126203", + "editor": "MapComplete 0.8.3e", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete1.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-11T21:36:19Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107798754, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "imagery": "HDM_HOT", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2248947, + 41.4422966 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Lukas233", + "uid": "13740435", + "editor": "MapComplete 0.8.3e", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-11T19:32:27Z", + "reviewed_features": [], + "create": 1, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107795579, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "imagery": "HDM_HOT", + "language": "en", + "theme-creator": "Erwin Olario" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 10.8882263, + 50.1890977 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-3946966195", + "osm_id": 3946966195, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946965753", + "osm_id": 3946965753, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946965611", + "osm_id": 3946965611, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946965683", + "osm_id": 3946965683, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "Jose Luis Infante", + "uid": "126203", + "editor": "MapComplete 0.8.3e", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete1.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-11T19:14:12Z", + "reviewed_features": [], + "create": 0, + "modify": 7, + "delete": 0, + "area": 3.05926000002194e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107795005, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "imagery": "HDM_HOT", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2250746, + 41.4408405 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "un1matr1x", + "uid": "9133122", + "editor": "MapComplete 0.8.3e", + "comment": "Adding data with #MapComplete for theme #sport_pitches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-11T15:55:28Z", + "reviewed_features": [], + "create": 0, + "modify": 11, + "delete": 0, + "area": 0.000275372006980042, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107788249, + "host": "mapcomplete.osm.be", + "theme": "sport_pitches", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 10.24175065, + 53.5500643 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "WinstonSmith", + "uid": "36030", + "editor": "MapComplete 0.8.3e", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-11T15:21:59Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107786968, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.2737703, + 45.4693406 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "matissevdberg", + "uid": "12928471", + "editor": "MapComplete 0.8.4-rc1", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-11T13:53:12Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107783653, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "surveillance", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.3262046, + 50.9300686 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "matissevdberg", + "uid": "12928471", + "editor": "MapComplete 0.8.4-rc1", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-11T13:52:54Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107783637, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "surveillance", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.3262046, + 50.9300686 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "matissevdberg", + "uid": "12928471", + "editor": "MapComplete 0.8.4-rc1", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-11T13:52:38Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107783626, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "surveillance", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.3262046, + 50.9300686 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "matissevdberg", + "uid": "12928471", + "editor": "MapComplete 0.8.4-rc1", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-11T13:51:37Z", + "reviewed_features": [], + "create": 2, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107783580, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "surveillance", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.3262046, + 50.9300686 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "matissevdberg", + "uid": "12928471", + "editor": "MapComplete 0.8.4-rc1", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-11T13:51:26Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107783563, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "surveillance", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.3266203, + 50.930143 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "matissevdberg", + "uid": "12928471", + "editor": "MapComplete 0.8.4-rc1", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-11T13:51:15Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107783553, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "surveillance", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.3266203, + 50.930143 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "matissevdberg", + "uid": "12928471", + "editor": "MapComplete 0.8.4-rc1", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-11T13:50:54Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107783539, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "surveillance", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.3266203, + 50.930143 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "matissevdberg", + "uid": "12928471", + "editor": "MapComplete 0.8.4-rc1", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-11T13:50:42Z", + "reviewed_features": [], + "create": 2, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107783530, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "surveillance", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.3266203, + 50.930143 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "matissevdberg", + "uid": "12928471", + "editor": "MapComplete 0.8.4-rc1", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-11T13:50:23Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107783515, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "surveillance", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.3270119, + 50.9300872 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "matissevdberg", + "uid": "12928471", + "editor": "MapComplete 0.8.4-rc1", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-11T13:50:13Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107783506, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "surveillance", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.3270119, + 50.9300872 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "matissevdberg", + "uid": "12928471", + "editor": "MapComplete 0.8.4-rc1", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-11T13:49:40Z", + "reviewed_features": [], + "create": 2, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107783483, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "surveillance", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.3270119, + 50.9300872 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "matissevdberg", + "uid": "12928471", + "editor": "MapComplete 0.8.4-rc1", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-11T13:49:30Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107783476, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "surveillance", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.3266767, + 50.930006 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "matissevdberg", + "uid": "12928471", + "editor": "MapComplete 0.8.4-rc1", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-11T13:47:25Z", + "reviewed_features": [], + "create": 2, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107783380, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "surveillance", + "imagery": "AGIV", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.3266767, + 50.930006 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "matissevdberg", + "uid": "12928471", + "editor": "MapComplete 0.8.4-rc1", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-11T13:47:14Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107783374, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "surveillance", + "imagery": "AGIV", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3779639, + 51.0125987 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "matissevdberg", + "uid": "12928471", + "editor": "MapComplete 0.8.4-rc1", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-11T13:46:43Z", + "reviewed_features": [], + "create": 2, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107783359, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "surveillance", + "imagery": "AGIV", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3779639, + 51.0125987 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "matissevdberg", + "uid": "12928471", + "editor": "MapComplete 0.8.4-rc1", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-11T13:44:46Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107783283, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "surveillance", + "imagery": "AGIV", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3779565, + 51.0125692 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "matissevdberg", + "uid": "12928471", + "editor": "MapComplete 0.8.4-rc1", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-11T13:44:30Z", + "reviewed_features": [], + "create": 2, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107783269, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "surveillance", + "imagery": "AGIV", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3779565, + 51.0125692 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "matissevdberg", + "uid": "12928471", + "editor": "MapComplete 0.8.4-rc1", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-11T13:39:09Z", + "reviewed_features": [], + "create": 2, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107783046, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "surveillance", + "imagery": "AGIV", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.377978, + 51.0126105 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "matissevdberg", + "uid": "12928471", + "editor": "MapComplete 0.8.4-rc1", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-11T13:39:00Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107783036, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "surveillance", + "imagery": "AGIV", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4367378, + 51.0385184 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "matissevdberg", + "uid": "12928471", + "editor": "MapComplete 0.8.4-rc1", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-11T13:38:54Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107783030, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "surveillance", + "imagery": "AGIV", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4367378, + 51.0385184 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "matissevdberg", + "uid": "12928471", + "editor": "MapComplete 0.8.4-rc1", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-11T13:38:30Z", + "reviewed_features": [], + "create": 2, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107783007, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "surveillance", + "imagery": "AGIV", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4367378, + 51.0385184 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "matissevdberg", + "uid": "12928471", + "editor": "MapComplete 0.8.4-rc1", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-11T13:38:12Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107782992, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "surveillance", + "imagery": "AGIV", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4367713, + 51.0385019 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "matissevdberg", + "uid": "12928471", + "editor": "MapComplete 0.8.4-rc1", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-11T13:38:03Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107782985, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "surveillance", + "imagery": "AGIV", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4367713, + 51.0385019 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "matissevdberg", + "uid": "12928471", + "editor": "MapComplete 0.8.4-rc1", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-11T13:37:44Z", + "reviewed_features": [], + "create": 2, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107782974, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "surveillance", + "imagery": "AGIV", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4367713, + 51.0385019 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "matissevdberg", + "uid": "12928471", + "editor": "MapComplete 0.8.4-rc1", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-11T13:37:33Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107782964, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "surveillance", + "imagery": "AGIV", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4367264, + 51.0385066 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "matissevdberg", + "uid": "12928471", + "editor": "MapComplete 0.8.4-rc1", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-11T13:37:17Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107782949, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "surveillance", + "imagery": "AGIV", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4367264, + 51.0385066 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "matissevdberg", + "uid": "12928471", + "editor": "MapComplete 0.8.4-rc1", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-11T13:36:30Z", + "reviewed_features": [], + "create": 2, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107782926, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "surveillance", + "imagery": "AGIV", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4367264, + 51.0385066 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "matissevdberg", + "uid": "12928471", + "editor": "MapComplete 0.8.4-rc1", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-11T13:35:26Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107782878, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "surveillance", + "imagery": "AGIV", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4367693, + 51.0385285 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "matissevdberg", + "uid": "12928471", + "editor": "MapComplete 0.8.4-rc1", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-11T13:35:26Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107782877, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "surveillance", + "imagery": "AGIV", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4367693, + 51.0385285 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "sebkur", + "uid": "22917", + "editor": "MapComplete 0.8.3e", + "comment": "Adding data with #MapComplete for theme #cyclenodes", + "comments_count": 3, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-11T12:43:12Z", + "reviewed_features": [], + "create": 10, + "modify": 14, + "delete": 0, + "area": 0.00121822959496963, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107780917, + "host": "mapcomplete.mobanisto.de", + "theme": "cyclenodes", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 14.59387065, + 51.73184345 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Koen Rijnsent", + "uid": "4569696", + "editor": "MapComplete 0.8.3e", + "comment": "Adding data with #MapComplete for theme #artworks", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-11T12:01:39Z", + "reviewed_features": [], + "create": 1, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107779257, + "host": "mapcomplete.osm.be", + "theme": "artworks", + "imagery": "EsriWorldImageryClarity", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.1025686, + 52.0690786 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "houtari", + "uid": "2186388", + "editor": "MapComplete 0.8.3e", + "comment": "Adding data with #MapComplete for theme #sport_pitches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-11T11:55:02Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.000548198538899992, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107779011, + "host": "mapcomplete.osm.be", + "theme": "sport_pitches", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 29.499676450000003, + 64.12339180000001 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "houtari", + "uid": "2186388", + "editor": "MapComplete 0.8.3e", + "comment": "Adding data with #MapComplete for theme #artworks", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-11T11:44:04Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.000030124864769923, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107778610, + "host": "mapcomplete.osm.be", + "theme": "artworks", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 29.512679650000003, + 64.12769225 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "houtari", + "uid": "2186388", + "editor": "MapComplete 0.8.3e", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-11T11:28:38Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.000636185054880831, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107778187, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 29.5491793, + 64.1120751 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "crasu", + "uid": "31544", + "editor": "MapComplete 0.8.3e", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-11T05:31:03Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107768284, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.7677469, + 50.9369172 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "crasu", + "uid": "31544", + "editor": "MapComplete 0.8.3e", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-11T05:27:02Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107768238, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.7415319, + 50.9594129 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "crasu", + "uid": "31544", + "editor": "MapComplete 0.8.3e", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-11T05:26:35Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 8.00950000032508e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107768233, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.79669275, + 50.9164394 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "crasu", + "uid": "31544", + "editor": "MapComplete 0.8.3e", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-11T05:26:08Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 8.00950000032508e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107768230, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.79669275, + 50.9164394 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "crasu", + "uid": "31544", + "editor": "MapComplete 0.8.3e", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-11T05:26:01Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 3.08425600017173e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107768226, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.7966038, + 50.9164247 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-8910287412", + "osm_id": 8910287412, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8744186773", + "osm_id": 8744186773, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8744208755", + "osm_id": 8744208755, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8783808154", + "osm_id": 8783808154, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8744208749", + "osm_id": 8744208749, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8744208706", + "osm_id": 8744208706, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8744208668", + "osm_id": 8744208668, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8783808149", + "osm_id": 8783808149, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8744208657", + "osm_id": 8744208657, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8744208597", + "osm_id": 8744208597, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8744207973", + "osm_id": 8744207973, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8910361094", + "osm_id": 8910361094, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8791423088", + "osm_id": 8791423088, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8791597164", + "osm_id": 8791597164, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8791597177", + "osm_id": 8791597177, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "Jose Luis Infante", + "uid": "126203", + "editor": "MapComplete 0.8.3e", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete1.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-10T19:18:09Z", + "reviewed_features": [], + "create": 20, + "modify": 32, + "delete": 0, + "area": 0.0000327528558000425, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107759779, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "imagery": "EsriWorldImageryClarity", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2494066999999998, + 41.452191150000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.8.3e", + "comment": "Adding data with #MapComplete for theme #ghostbikes", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-10T18:41:14Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107758733, + "host": "mapcomplete.osm.be", + "theme": "ghostbikes", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.1164367, + 49.4359709 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dónal", + "uid": "574926", + "editor": "MapComplete 0.8.3e", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-10T17:57:08Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 2.10469380003353e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107757533, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -8.532622499999999, + 51.98053625 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-10T15:36:40Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107752830, + "host": "127.0.0.1:1234", + "theme": "charging_stations", + "imagery": "CartoDB.Voyager", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2074467, + 51.2144965 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "matissevdberg", + "uid": "12928471", + "editor": "MapComplete 0.8.3d", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-10T13:58:31Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107749131, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "surveillance", + "imagery": "osmfr", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.240745, + 50.7341532 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.8.3d", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-10T13:17:30Z", + "reviewed_features": [], + "create": 2, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107747529, + "host": "127.0.0.1:1234", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2198444, + 51.2156981 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.8.3e", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-10T12:59:39Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.000972524643210039, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107746904, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.991137050000001, + 51.11845515 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.8.3e", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-10T12:55:30Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107746775, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.9708566, + 51.1064667 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "pi11", + "uid": "12066190", + "editor": "MapComplete 0.8.3e", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-10T12:14:46Z", + "reviewed_features": [], + "create": 0, + "modify": 7, + "delete": 0, + "area": 0.000546523816080018, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107745354, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4311547000000004, + 51.1658704 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.8.3d", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-10T11:56:13Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.191311591815806, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107744755, + "host": "127.0.0.1:1234", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.08878435, + 51.1606889 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "sebkur", + "uid": "22917", + "editor": "MapComplete 0.8.3d", + "comment": "Adding data with #MapComplete for theme #https://matrix-client.matrix.org/_matrix/media/r0/download/matrix.org/vZjzqHFPkWoLoCNmFloJqZJr", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-10T11:36:46Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107744218, + "host": "mapcomplete.osm.be", + "theme": "https://matrix-client.matrix.org/_matrix/media/r0/download/matrix.org/vzjzqhfpkwolocnmflojqzjr", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 14.6348378, + 51.7458095 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.8.3d", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-10T11:35:33Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107744185, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.9708566, + 51.1064667 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "matissevdberg", + "uid": "12928471", + "editor": "MapComplete 0.8.3c", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-10T10:14:13Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107741782, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "surveillance", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.40456, + 51.0092742 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "matissevdberg", + "uid": "12928471", + "editor": "MapComplete 0.8.3c", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-10T10:13:26Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107741754, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "surveillance", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.36441, + 51.0112133 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "matissevdberg", + "uid": "12928471", + "editor": "MapComplete 0.8.3c", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-10T10:12:12Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107741717, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "surveillance", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3657538, + 51.011274 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Koen Rijnsent", + "uid": "4569696", + "editor": "MapComplete 0.8.3c", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-10T09:31:31Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107740381, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.1237487, + 52.0895507 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "okwithmydecay", + "uid": "10370720", + "editor": "MapComplete 0.8.3c", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-10T09:01:25Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 5.59331299978649e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107739260, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.05569865, + 51.54434015 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.8.3c", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-10T08:48:21Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 1.54591879999711e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107738922, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 14.57885235, + 50.873474900000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.8.3c", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-10T08:47:52Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 1.11047360001438e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107738907, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 14.5792066, + 50.8739059 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.8.3c", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-10T08:46:39Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 1.27919999995274e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107738867, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 14.57881725, + 50.8739517 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Lejun", + "uid": "8085973", + "editor": "MapComplete 0.8.3c", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-10T06:17:24Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107735170, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.0309161, + 47.2420926 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "GOwin", + "uid": "1041828", + "editor": "MapComplete 0.8.3c", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-10T00:46:52Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107730202, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 121.0537792, + 14.6195668 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "racky", + "uid": "1730834", + "editor": "MapComplete 0.8.3c", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-10T00:24:09Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107730044, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.0155506, + 5.4114159 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "GOwin", + "uid": "1041828", + "editor": "MapComplete 0.8.3c", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-09T23:21:21Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 1.69400000250217e-11, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107729338, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 121.0791002, + 14.60638045 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "GOwin", + "uid": "1041828", + "editor": "MapComplete 0.8.3c", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-09T23:17:58Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107729292, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 121.0605946, + 14.645733 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.8.3c", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-09T21:29:19Z", + "reviewed_features": [], + "create": 2, + "modify": 3, + "delete": 0, + "area": 0.0509880514190603, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107727020, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "cyclofix", + "imagery": "HDM_HOT", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 14.81667355, + 50.822522 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-8891145740", + "name": "der LiLA Laden", + "osm_id": 8891145740, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "shop": "books;stationery;toys" + } + } + ], + "user": "Ygramul", + "uid": "1230818", + "editor": "MapComplete 0.8.3c", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-09T19:50:22Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 5.89134000031268e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107723869, + "host": "mapcomplete.osm.be", + "theme": "shops", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.999719299999999, + 48.50172935 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ygramul", + "uid": "1230818", + "editor": "MapComplete 0.8.3c", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-09T19:48:58Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 5.80154399972832e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107723834, + "host": "mapcomplete.osm.be", + "theme": "shops", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.99704815, + 48.5017436 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 1, + "name": "suspect_word" + } + ], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.8.3d", + "comment": "Deleting a point with #MapComplete for theme #bookcases: testing point", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-09T17:55:25Z", + "reviewed_features": [], + "create": 0, + "modify": 0, + "delete": 1, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107719694, + "host": "127.0.0.1:1234", + "theme": "bookcases", + "imagery": "osm", + "deletion": "yes", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2197613, + 51.2156729 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.8.3d", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-09T17:55:18Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107719691, + "host": "127.0.0.1:1234", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2197613, + 51.2156729 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 1, + "name": "suspect_word" + } + ], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.8.3d", + "comment": "Deleting a point with #MapComplete for theme #bookcases: testing point", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-09T17:55:04Z", + "reviewed_features": [], + "create": 0, + "modify": 0, + "delete": 1, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107719684, + "host": "127.0.0.1:1234", + "theme": "bookcases", + "imagery": "osm", + "deletion": "yes", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2198634, + 51.2156948 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.8.3c", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-09T17:48:23Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107719413, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2198634, + 51.2156948 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "joeldn", + "uid": "8552670", + "editor": "MapComplete 0.8.3c", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 2, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-09T17:46:15Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107719337, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.069903, + 51.481657 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 42, + "name": "Invalid tag modification" + } + ], + "tags": [], + "features": [ + { + "url": "node-8891117931", + "name": "Agueda/ camino Zaratán", + "osm_id": 8891117931, + "reasons": [ + 42 + ], + "version": 5, + "primary_tags": {} + } + ], + "user": "AngelG", + "uid": "667203", + "editor": "MapComplete 0.8.3c", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-09T17:43:55Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107719251, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "imagery": "HDM_HOT", + "language": "en", + "theme-creator": "Erwin Olario" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.7728561, + 41.6312769 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AngelG", + "uid": "667203", + "editor": "MapComplete 0.8.3c", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-09T17:43:27Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107719236, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "imagery": "HDM_HOT", + "language": "en", + "theme-creator": "Erwin Olario" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.7766709, + 41.6295739 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "fx99", + "uid": "130472", + "editor": "MapComplete 0.8.3c", + "comment": "Adding data with #MapComplete for theme #sport_pitches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-09T17:38:32Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.0000610037826500325, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107719052, + "host": "mapcomplete.osm.be", + "theme": "sport_pitches", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.90049385, + 48.64037055 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "fx99", + "uid": "130472", + "editor": "MapComplete 0.8.3c", + "comment": "Adding data with #MapComplete for theme #sport_pitches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-09T17:35:57Z", + "reviewed_features": [], + "create": 0, + "modify": 6, + "delete": 0, + "area": 0.000108179178749976, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107718957, + "host": "mapcomplete.osm.be", + "theme": "sport_pitches", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.89848995, + 48.65066695 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "PrinzZimt", + "uid": "2927406", + "editor": "MapComplete 0.8.3c", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-09T17:11:37Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 5.55515180001948e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107717888, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.8463855, + 53.47689795 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "ofr1tz", + "uid": "3790985", + "editor": "MapComplete 0.8.3c", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-09T16:56:36Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107717289, + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "osm", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.4507341, + 52.5077952 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "XuRxO", + "uid": "13409", + "editor": "MapComplete 0.8.3c", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-09T16:52:24Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107717095, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.4588175, + 39.4645176 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Stalfur", + "uid": "149223", + "editor": "MapComplete 0.8.3c", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-09T16:47:09Z", + "reviewed_features": [], + "create": 2, + "modify": 5, + "delete": 0, + "area": 0.000023311735259843, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107716873, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -21.879822949999998, + 64.1013077 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "cquest", + "uid": "158826", + "editor": "MapComplete 0.8.3c", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-09T16:33:26Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107716217, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.4855334, + 48.8051415 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "chippy", + "uid": "3114", + "editor": "MapComplete 0.8.3c", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-09T16:10:53Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107715285, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "Mapbox", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.277398, + 54.0719806 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ygramul", + "uid": "1230818", + "editor": "MapComplete 0.8.3b", + "comment": "Adding data with #MapComplete for theme #ghostbikes", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-09T13:36:56Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107707582, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "ghostbikes", + "imagery": "CartoDB.Positron", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.0417856, + 48.52397 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ygramul", + "uid": "1230818", + "editor": "MapComplete 0.8.3b", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-09T13:07:04Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107706110, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.9958313, + 48.5015779 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "sikmir", + "uid": "373425", + "editor": "MapComplete 0.8.3c", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-09T11:54:06Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.0000017566863599977, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107701543, + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "osm", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 30.3302832, + 59.9978502 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Jez Nicholson", + "uid": "7329", + "editor": "MapComplete 0.8.3c", + "comment": "Adding data with #MapComplete for theme #sport_pitches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-09T11:26:48Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 0.0000216959120500094, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107699458, + "host": "mapcomplete.osm.be", + "theme": "sport_pitches", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.08019385, + 50.867304950000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Jez Nicholson", + "uid": "7329", + "editor": "MapComplete 0.8.3c", + "comment": "Adding data with #MapComplete for theme #sport_pitches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-09T11:22:49Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.000001673711999996, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107699135, + "host": "mapcomplete.osm.be", + "theme": "sport_pitches", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.09289030000000001, + 50.8633373 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Jez Nicholson", + "uid": "7329", + "editor": "MapComplete 0.8.3c", + "comment": "Adding data with #MapComplete for theme #sport_pitches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-09T11:12:44Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.0011869166560001, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107698362, + "host": "mapcomplete.osm.be", + "theme": "sport_pitches", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.108866, + 50.85069795 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "UJehle", + "uid": "8563072", + "editor": "MapComplete 0.8.3c", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-09T10:13:22Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.0000109178006399768, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107693811, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.565169000000001, + 48.1485605 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.8.3b", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-09T10:09:59Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 3.41220000032756e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107693578, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "benches", + "imagery": "osm", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.21545525, + 51.2155731 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Frans_Napaters", + "uid": "3574538", + "editor": "MapComplete 0.8.3c", + "comment": "Adding data with #MapComplete for theme #personal", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-09T09:29:15Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 3.28355900000553e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107690820, + "host": "mapcomplete.osm.be", + "theme": "personal", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.92814155, + 51.222086899999994 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Wim L", + "uid": "223681", + "editor": "MapComplete 0.8.3c", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-09T06:18:55Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107678120, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -122.371635, + 47.6815637 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.8.3c", + "comment": "Adding data with #MapComplete for theme #RailwaySignalsARG", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-09T00:16:49Z", + "reviewed_features": [], + "create": 4, + "modify": 4, + "delete": 0, + "area": 0.00142870013307005, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107665134, + "host": "mapcomplete.osm.be", + "theme": "railwaysignalsarg", + "imagery": "EsriWorldImagery", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.714550450000004, + -34.65670725 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.8.3a", + "comment": "Adding data with #MapComplete for theme #RailwaySignalsARG", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-09T00:05:00Z", + "reviewed_features": [], + "create": 2, + "modify": 2, + "delete": 0, + "area": 1.13929919994501e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107665005, + "host": "mapcomplete.osm.be", + "theme": "railwaysignalsarg", + "imagery": "EsriWorldImageryClarity", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.528916100000004, + -34.639056100000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.8.3c", + "comment": "Adding data with #MapComplete for theme #artworks", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-08T20:43:49Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107659989, + "host": "mapcomplete.osm.be", + "theme": "artworks", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2217294, + 51.212738 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.8.3c", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-08T20:36:34Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107659818, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "imagery": "osm", + "language": "en" + }, "geometry": { "type": "Point", "coordinates": [ @@ -58925,586 +256564,8709 @@ }, { "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": [ - 3.73638155, - 51.036820250000005 + -74.2995597, + 40.0142938 ] } }, { "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "CulingMan13", + "uid": "6641970", + "editor": "MapComplete 0.8.3c", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-08T19:36:54Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000151346060999249, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107657541, + "host": "mapcomplete.osm.be", + "theme": "shops", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, "geometry": { "type": "Point", "coordinates": [ - 4.2927924, - 50.8617505 + -74.20531445, + 39.96593065 ] } }, { "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Frans_Napaters", + "uid": "3574538", + "editor": "MapComplete 0.8.3c", + "comment": "Adding data with #MapComplete for theme #personal", + "comments_count": 1, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-08T18:49:20Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107655620, + "host": "mapcomplete.osm.be", + "theme": "personal", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, "geometry": { "type": "Point", "coordinates": [ - 3.2081858, - 51.1869804 + 2.9196087, + 51.2342711 ] } }, { "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.8.3c", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/railway", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-08T17:21:37Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 6.87775000012922e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107651887, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/railway", + "imagery": "osm", + "language": "en" + }, "geometry": { "type": "Point", "coordinates": [ - 6.5685417, - 53.010605 + -58.446025950000006, + -34.62018615 ] } }, { "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.8.3c", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/railway", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-08T17:21:33Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107651881, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/railway", + "imagery": "osm", + "language": "en" + }, "geometry": { "type": "Point", "coordinates": [ - 6.5721604, - 53.0264806 + -58.4450562, + -34.6196799 ] } }, { "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.8.3c", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/railway", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-08T17:19:35Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 5.19354000029516e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107651797, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/railway", + "imagery": "osm", + "language": "en" + }, "geometry": { "type": "Point", "coordinates": [ - 6.5571519, - 53.0002444 + -58.4450281, + -34.61978835 ] } }, { "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.8.3c", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/railway", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-08T17:19:24Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107651789, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/railway", + "imagery": "osm", + "language": "en" + }, "geometry": { "type": "Point", "coordinates": [ - 4.7796401, - 51.2028367 + -58.4183453, + -34.6090322 ] } }, { "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Rober castro", + "uid": "13601244", + "editor": "MapComplete 0.8.3c", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-08T17:18:56Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107651778, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "imagery": "osm", + "language": "en", + "theme-creator": "Erwin Olario" + }, "geometry": { "type": "Point", "coordinates": [ - 13.7264895, - 51.02642025 + -4.7964383, + 41.6151806 ] } }, { "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.8.3c", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/railway", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-08T17:17:41Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 0.00000303493649997796, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107651703, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/railway", + "imagery": "osm", + "language": "en" + }, "geometry": { "type": "Point", "coordinates": [ - 4.57686335, - 51.0315187 + -58.41518215, + -34.6089661 ] } }, { "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-3946994212", + "osm_id": 3946994212, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "Jose Luis Infante", + "uid": "126203", + "editor": "MapComplete 0.8.3c", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete1.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-08T16:17:03Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107648773, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "imagery": "EsriWorldImageryClarity", + "language": "ca" + }, "geometry": { "type": "Point", "coordinates": [ - -1.5346039, - 52.29394635 + 2.2210216, + 41.4353475 ] } }, { "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-3946994194", + "osm_id": 3946994194, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "Jose Luis Infante", + "uid": "126203", + "editor": "MapComplete 0.8.3c", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete1.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-08T16:16:23Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107648733, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "imagery": "EsriWorldImageryClarity", + "language": "ca" + }, "geometry": { "type": "Point", "coordinates": [ - 13.72945485, - 51.03407025 + 2.2209787, + 41.4353262 ] } }, { "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-3946993751", + "osm_id": 3946993751, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "Jose Luis Infante", + "uid": "126203", + "editor": "MapComplete 0.8.3c", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete1.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-08T16:12:23Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107648540, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "imagery": "EsriWorldImageryClarity", + "language": "ca" + }, "geometry": { "type": "Point", "coordinates": [ - 12.5188726, - 52.1400304 + 2.2208569, + 41.4352656 ] } }, { "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-3946999757", + "osm_id": 3946999757, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946996670", + "osm_id": 3946996670, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946997128", + "osm_id": 3946997128, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8904744682", + "osm_id": 8904744682, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "Jose Luis Infante", + "uid": "126203", + "editor": "MapComplete 0.8.3c", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete1.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-08T15:57:50Z", + "reviewed_features": [], + "create": 2, + "modify": 6, + "delete": 0, + "area": 9.11834909997489e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107647798, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "imagery": "EsriWorldImageryClarity", + "language": "ca" + }, "geometry": { "type": "Point", "coordinates": [ - 13.7613027, - 51.0490919 + 2.2220951500000004, + 41.43658475 ] } }, { "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-3946965481", + "osm_id": 3946965481, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946965459", + "osm_id": 3946965459, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946965532", + "osm_id": 3946965532, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946965500", + "osm_id": 3946965500, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946965511", + "osm_id": 3946965511, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "Jose Luis Infante", + "uid": "126203", + "editor": "MapComplete 0.8.3b", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete1.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-08T15:42:26Z", + "reviewed_features": [], + "create": 0, + "modify": 9, + "delete": 0, + "area": 0.00000267168915000379, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107647079, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "imagery": "EsriWorldImageryClarity", + "language": "ca" + }, "geometry": { "type": "Point", "coordinates": [ - 13.7846677, - 51.0498743 + 2.22194065, + 41.439651850000004 ] } }, { "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-3946966392", + "osm_id": 3946966392, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946966446", + "osm_id": 3946966446, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3947008701", + "osm_id": 3947008701, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946965646", + "osm_id": 3946965646, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946966414", + "osm_id": 3946966414, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3947008723", + "osm_id": 3947008723, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "Jose Luis Infante", + "uid": "126203", + "editor": "MapComplete 0.8.3b", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete1.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-08T15:33:57Z", + "reviewed_features": [], + "create": 0, + "modify": 6, + "delete": 0, + "area": 0.00000450219627000621, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107646670, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "imagery": "HDM_HOT", + "language": "ca" + }, "geometry": { "type": "Point", "coordinates": [ - 13.80907285, - 51.052902200000005 + 2.22290265, + 41.44264445 ] } }, { "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-3947008610", + "osm_id": 3947008610, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "Jose Luis Infante", + "uid": "126203", + "editor": "MapComplete 0.8.3b", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete1.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-08T15:33:37Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107646653, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "imagery": "HDM_HOT", + "language": "ca" + }, "geometry": { "type": "Point", "coordinates": [ - 3.7007618, - 51.0268819 + 2.2223795, + 41.4444085 ] } }, { "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ruben Van de Velde", + "uid": "2676725", + "editor": "MapComplete 0.8.3b", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-08T13:25:19Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107639693, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "hailhydrant", + "imagery": "HDM_HOT", + "language": "en", + "theme-creator": "Erwin Olario" + }, "geometry": { "type": "Point", "coordinates": [ - 13.7948526, - 51.06367425 + 3.7356439, + 51.041662 ] } }, { "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.8.3b", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-08T13:19:45Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107639372, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, "geometry": { "type": "Point", "coordinates": [ - -73.56078350000001, - 45.47967425 + 3.2208054, + 51.2103751 ] } }, { "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ygramul", + "uid": "1230818", + "editor": "MapComplete 0.8.3b", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-08T12:49:54Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107637544, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, "geometry": { "type": "Point", "coordinates": [ - 6.56660235, - 53.01175765 + 8.9965305, + 48.5015504 ] } }, { "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ygramul", + "uid": "1230818", + "editor": "MapComplete 0.8.3b", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-08T12:47:03Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 1.83133200001527e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107637369, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "imagery": "osm", + "language": "en" + }, "geometry": { "type": "Point", "coordinates": [ - 6.560969500000001, - 53.0193444 + 9.0562325, + 48.5231717 ] } }, { "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ruben Van de Velde", + "uid": "2676725", + "editor": "MapComplete 0.8.3b", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-08T11:39:12Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107631905, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "hailhydrant", + "imagery": "HDM_HOT", + "language": "en", + "theme-creator": "Erwin Olario" + }, "geometry": { "type": "Point", "coordinates": [ - 4.90264495, - 51.096994300000006 + 3.7356439, + 51.041662 ] } }, { "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ygramul", + "uid": "1230818", + "editor": "MapComplete 0.8.3b", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-08T11:27:22Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 0.0010883120992801, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107630898, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "imagery": "osm", + "language": "en" + }, "geometry": { "type": "Point", "coordinates": [ - 13.701775699999999, - 51.04657295 + 9.020796, + 48.5069801 ] } }, { "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ygramul", + "uid": "1230818", + "editor": "MapComplete 0.8.3b", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-08T11:22:07Z", + "reviewed_features": [], + "create": 0, + "modify": 6, + "delete": 0, + "area": 0.0000167403970399962, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107630486, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, "geometry": { "type": "Point", "coordinates": [ - 13.70305715, - 51.0450472 + 8.9965474, + 48.5003073 ] } }, { "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ygramul", + "uid": "1230818", + "editor": "MapComplete 0.8.3b", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-08T11:21:38Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107630455, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, "geometry": { "type": "Point", "coordinates": [ - 13.70720805, - 51.042709 + 8.9958313, + 48.5015779 ] } }, { "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Frans_Napaters", + "uid": "3574538", + "editor": "MapComplete 0.8.3b", + "comment": "Adding data with #MapComplete for theme #personal", + "comments_count": 4, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-08T10:54:27Z", + "reviewed_features": [], + "create": 2, + "modify": 2, + "delete": 0, + "area": 0.0000111980822399717, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107628222, + "host": "mapcomplete.osm.be", + "theme": "personal", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, "geometry": { "type": "Point", "coordinates": [ - 13.713532050000001, - 51.03857605 + 2.9180685000000004, + 51.23305165 ] } }, { "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Frans_Napaters", + "uid": "3574538", + "editor": "MapComplete 0.8.3b", + "comment": "Adding data with #MapComplete for theme #personal", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-08T10:47:21Z", + "reviewed_features": [], + "create": 2, + "modify": 2, + "delete": 0, + "area": 6.3344619000903e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107627625, + "host": "mapcomplete.osm.be", + "theme": "personal", + "imagery": "AGIV10cm", + "language": "en", + "theme-creator": "MapComplete" + }, "geometry": { "type": "Point", "coordinates": [ - 13.719508000000001, - 51.0342785 + 2.91824105, + 51.23410265 ] } }, { "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Frans_Napaters", + "uid": "3574538", + "editor": "MapComplete 0.8.3b", + "comment": "Adding data with #MapComplete for theme #personal", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-08T10:37:05Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107626737, + "host": "mapcomplete.osm.be", + "theme": "personal", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, "geometry": { "type": "Point", "coordinates": [ - 13.7194516, - 51.0330962 + 2.9168272, + 51.2339232 ] } }, { "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Frans_Napaters", + "uid": "3574538", + "editor": "MapComplete 0.8.3b", + "comment": "Adding data with #MapComplete for theme #personal", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-08T10:13:44Z", + "reviewed_features": [], + "create": 2, + "modify": 3, + "delete": 0, + "area": 4.08242999989958e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107624823, + "host": "mapcomplete.osm.be", + "theme": "personal", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, "geometry": { "type": "Point", "coordinates": [ - 11.2545995, - 43.7735024 + 2.91690365, + 51.23390985 ] } }, { "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.8.3a", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-08T08:24:21Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107615864, + "host": "127.0.0.1:1234", + "theme": "toilets", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, "geometry": { "type": "Point", "coordinates": [ - 13.720374450000001, - 51.0308423 + 3.2194673, + 51.2131627 ] } }, { "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Frans_Napaters", + "uid": "3574538", + "editor": "MapComplete 0.8.3a", + "comment": "Adding data with #MapComplete for theme #personal", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-08T07:55:02Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107613706, + "host": "mapcomplete.osm.be", + "theme": "personal", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, "geometry": { "type": "Point", "coordinates": [ - 4.4033423, - 51.21519065 + 2.9192117, + 51.2342658 ] } }, { "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.8.3a", + "comment": "Adding data with #MapComplete for theme #RailwaySignalsARG", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-07T22:24:03Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107591399, + "host": "mapcomplete.osm.be", + "theme": "railwaysignalsarg", + "imagery": "osm", + "language": "es" + }, "geometry": { "type": "Point", "coordinates": [ - -58.68874925, - -34.6555771 + -58.7866643, + -34.6514154 ] } }, { "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Frans_Napaters", + "uid": "3574538", + "editor": "MapComplete 0.8.3a", + "comment": "Adding data with #MapComplete for theme #personal", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-07T19:44:25Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107586930, + "host": "mapcomplete.osm.be", + "theme": "personal", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, "geometry": { "type": "Point", "coordinates": [ - 13.7255606, - 51.02716415 + 2.9195952, + 51.2343802 ] } }, { "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Koen Rijnsent", + "uid": "4569696", + "editor": "MapComplete 0.8.3a", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-07T19:20:26Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107586116, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, "geometry": { "type": "Point", "coordinates": [ - 13.71291975, - 51.038539 + 5.1987433, + 52.0670819 ] } }, { "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Flywheel Project Test 1", + "uid": "12900311", + "editor": "MapComplete 0.8.3a", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-07T17:37:16Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107581411, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "en", + "theme-creator": "Florian Edelmann" + }, "geometry": { "type": "Point", "coordinates": [ - 13.707423949999999, - 51.041862699999996 + 20.4317797, + 44.8152335 ] } }, { "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "LiamSimons", + "uid": "13702983", + "editor": "MapComplete 0.8.3a", + "comment": "Adding data with #MapComplete for theme #waste_basket", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-07T11:53:47Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107561417, + "host": "mapcomplete.osm.be", + "theme": "waste_basket", + "imagery": "osm", + "language": "en" + }, "geometry": { "type": "Point", "coordinates": [ - 11.016779249999999, - 49.44191805 + 4.5527011, + 50.9974593 ] } }, { "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Nickrds09", + "uid": "966535", + "editor": "MapComplete 0.8.3a", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-07T10:26:12Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107554704, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "imagery": "HDM_HOT", + "language": "en", + "theme-creator": "Erwin Olario" + }, "geometry": { "type": "Point", "coordinates": [ - 10.95762445, - 49.44181465 + 121.5557197, + 13.9643939 ] } }, { "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.8.3a", + "comment": "Adding data with #MapComplete for theme #RailwaySignalsARG", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-07T02:57:25Z", + "reviewed_features": [], + "create": 12, + "modify": 0, + "delete": 0, + "area": 2.44843199981842e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107527653, + "host": "mapcomplete.osm.be", + "theme": "railwaysignalsarg", + "imagery": "osm", + "language": "en" + }, "geometry": { "type": "Point", "coordinates": [ - 10.9615713, - 49.4172352 + -58.7869848, + -34.65140915 ] } }, { "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.8.3a", + "comment": "Adding data with #MapComplete for theme #RailwaySignalsARG", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-07T00:10:43Z", + "reviewed_features": [], + "create": 5, + "modify": 0, + "delete": 0, + "area": 5.14493199996391e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107525315, + "host": "mapcomplete.osm.be", + "theme": "railwaysignalsarg", + "imagery": "osm", + "language": "es" + }, "geometry": { "type": "Point", "coordinates": [ - 13.6840133, - 51.058046649999994 + -58.78760715, + -34.6511131 ] } }, { "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "WinstonSmith", + "uid": "36030", + "editor": "MapComplete 0.8.3a", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-06T19:16:37Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107517409, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, "geometry": { "type": "Point", "coordinates": [ - 13.68242145, - 51.053932450000005 + 11.3531842, + 44.531113 ] } }, { "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Koen Rijnsent", + "uid": "4569696", + "editor": "MapComplete 0.8.3a", + "comment": "Adding data with #MapComplete for theme #artworks", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-06T16:46:45Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107510508, + "host": "mapcomplete.osm.be", + "theme": "artworks", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, "geometry": { "type": "Point", "coordinates": [ - 13.685504, - 51.05625085 + 5.1213796, + 52.0759235 ] } }, { "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "znrgl", + "uid": "9486229", + "editor": "MapComplete 0.8.3", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-06T14:52:35Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107504627, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, "geometry": { "type": "Point", "coordinates": [ - 3.7245505, - 51.0572368 + 16.3041186, + 48.1610421 ] } }, { "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.8.3", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/railway", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-06T13:22:42Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107500130, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/railway", + "imagery": "osm", + "language": "es" + }, "geometry": { "type": "Point", "coordinates": [ - 13.70643085, - 51.05848425 + -58.4546041, + -34.624 ] } }, { "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "alexashh", + "uid": "9054103", + "editor": "MapComplete 0.8.3", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-06T11:25:43Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107493601, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, "geometry": { "type": "Point", "coordinates": [ - 3.7457967, - 51.0333371 + 43.8774472, + 56.2496226 ] } }, { "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.8.3-rc2", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-05T19:10:46Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107456799, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "cyclofix", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, "geometry": { "type": "Point", "coordinates": [ - 3.74598115, - 51.03209115 + 5.1124561, + 51.1812325 ] } }, { "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Koen Rijnsent", + "uid": "4569696", + "editor": "MapComplete 0.8.3-rc2", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-05T14:54:19Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107446673, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, "geometry": { "type": "Point", "coordinates": [ - 3.74534815, - 51.03399159999999 + 5.1242227, + 52.0818547 ] } }, { "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "PicoPlex", + "uid": "13702329", + "editor": "MapComplete 0.8.1", + "comment": "Adding data with #MapComplete for theme #ghostbikes", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-05T12:30:34Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107440134, + "host": "mapcomplete.osm.be", + "theme": "ghostbikes", + "imagery": "CartoDB.Positron", + "language": "nl", + "theme-creator": "MapComplete" + }, "geometry": { "type": "Point", "coordinates": [ - 3.7460294000000003, - 51.03570985 + 4.4505599, + 51.1920798 ] } }, { "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Robin van der Linde", + "uid": "5093765", + "editor": "MapComplete 0.8.1", + "comment": "Adding data with #MapComplete for theme #https://osm.rlin.eu/streetlighting.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-05T12:12:42Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 1.37471200014194e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107439210, + "host": "mapcomplete.osm.be", + "theme": "https://osm.rlin.eu/streetlighting.json", + "imagery": "osm", + "language": "nl", + "theme-creator": "RobinLinde" + }, "geometry": { "type": "Point", "coordinates": [ - 3.7377907, - 51.0501288 + 6.5613755000000005, + 53.01928155 ] } }, { "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "LiamSimons", + "uid": "13702983", + "editor": "MapComplete 0.8.1", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-05T12:01:45Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107438593, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "en", + "theme-creator": "Florian Edelmann" + }, "geometry": { "type": "Point", "coordinates": [ - 12.8507381, - 52.1688877 + 4.5513386, + 50.9966912 ] } }, { "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "LiamSimons", + "uid": "13702983", + "editor": "MapComplete 0.8.1", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-05T11:54:50Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107438158, + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "osm", + "language": "en", + "theme-creator": "Midgard" + }, "geometry": { "type": "Point", "coordinates": [ - 3.7447902500000003, - 51.0381812 + 4.5478141, + 50.9985093 ] } }, { "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "PicoPlex", + "uid": "13702329", + "editor": "MapComplete 0.8.1", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-05T11:52:36Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107438020, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "en", + "theme-creator": "Florian Edelmann" + }, "geometry": { "type": "Point", "coordinates": [ - 4.3803906, - 50.8044363 + 4.4902217, + 51.2035762 ] } }, { "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Karelle Keters", + "uid": "13702831", + "editor": "MapComplete 0.8.1", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-05T11:49:20Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107437838, + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "osm", + "language": "en", + "theme-creator": "Midgard" + }, "geometry": { "type": "Point", "coordinates": [ - 4.3807313, - 50.8044092 + 3.7284127, + 51.0665171 ] } }, { "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "PicoPlex", + "uid": "13702329", + "editor": "MapComplete 0.8.1", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-05T11:48:33Z", + "reviewed_features": [], + "create": 2, + "modify": 0, + "delete": 0, + "area": 8.08962300000598e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107437805, + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "AGIV", + "language": "en", + "theme-creator": "Midgard" + }, "geometry": { "type": "Point", "coordinates": [ - 13.8683133, - 51.14763175 + 4.4900500999999995, + 51.20521825 ] } }, { "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "HannahMDeclerck", + "uid": "13697678", + "editor": "MapComplete 0.8.1", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-05T11:18:56Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107436132, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "nl", + "theme-creator": "Florian Edelmann" + }, "geometry": { "type": "Point", "coordinates": [ - 6.0870298, - 47.2684337 + 2.0110496, + 50.7870724 ] } }, { "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "WardBeyens", + "uid": "10343215", + "editor": "MapComplete 0.8.1", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-05T11:16:42Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107436011, + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "AGIV", + "language": "en", + "theme-creator": "Midgard" + }, "geometry": { "type": "Point", "coordinates": [ - 13.867534299999999, - 51.1477238 + 5.0179933, + 51.388831 ] } }, { "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "WardBeyens", + "uid": "10343215", + "editor": "MapComplete 0.8.1", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-05T11:15:18Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107435925, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "en", + "theme-creator": "Florian Edelmann" + }, "geometry": { "type": "Point", "coordinates": [ - 37.9934373, - 48.629113 + 5.0157416, + 51.3917567 ] } }, { "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + }, + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-8894748566", + "osm_id": 8894748566, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "amenity": "bicycle_library" + } + } + ], + "user": "WardBeyens", + "uid": "10343215", + "editor": "MapComplete 0.8.1", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-05T10:30:35Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107433268, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, "geometry": { "type": "Point", "coordinates": [ - -4.8171257, - 41.5804011 + 5.076896, + 51.3233979 ] } }, { "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Moisès", + "uid": "12884230", + "editor": "MapComplete 0.8.1", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-05T09:45:49Z", + "reviewed_features": [], + "create": 0, + "modify": 48, + "delete": 0, + "area": 0.00771707087949035, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107430359, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, "geometry": { "type": "Point", "coordinates": [ - 5.5551392, - 50.7873265 + 2.29691635, + 41.52784295 ] } }, { "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Lopus", + "uid": "158949", + "editor": "MapComplete 0.8.1", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-05T09:31:42Z", + "reviewed_features": [], + "create": 1, + "modify": 6, + "delete": 0, + "area": 0.00000140958017998657, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107429499, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, "geometry": { "type": "Point", "coordinates": [ - -4.5170975, - 41.6336276 + 9.28685895, + 49.1515518 ] } }, { "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Robin van der Linde", + "uid": "5093765", + "editor": "MapComplete 0.8.1", + "comment": "Adding data with #MapComplete for theme #fietsstraten", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-05T09:16:10Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000594397021000568, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107428602, + "host": "mapcomplete.osm.be", + "theme": "fietsstraten", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.55485315, + 53.00925565 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "P Kanzler", + "uid": "6173912", + "editor": "MapComplete 0.8.1", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-05T09:11:40Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107428362, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "imagery": "HDM_HOT", + "language": "en", + "theme-creator": "Erwin Olario" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.0073312, + 49.4024851 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + }, + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-8826338002", + "osm_id": 8826338002, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8826337999", + "osm_id": 8826337999, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8826338000", + "osm_id": 8826338000, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8826317490", + "osm_id": 8826317490, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8826338003", + "osm_id": 8826338003, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8826317483", + "osm_id": 8826317483, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8826338017", + "osm_id": 8826338017, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8826317482", + "osm_id": 8826317482, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8826317491", + "osm_id": 8826317491, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8826338050", + "osm_id": 8826338050, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8826337996", + "osm_id": 8826337996, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8826317459", + "osm_id": 8826317459, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8826317492", + "osm_id": 8826317492, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8826338044", + "osm_id": 8826338044, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8826338062", + "osm_id": 8826338062, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8826338001", + "osm_id": 8826338001, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8826338043", + "osm_id": 8826338043, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8826317461", + "osm_id": 8826317461, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8826338045", + "osm_id": 8826338045, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8826338046", + "osm_id": 8826338046, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8826338047", + "osm_id": 8826338047, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "Maribelens", + "uid": "13480216", + "editor": "MapComplete 0.8.1", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete1.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-04T20:48:35Z", + "reviewed_features": [], + "create": 0, + "modify": 31, + "delete": 0, + "area": 0.00000114117990000452, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107406325, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "imagery": "HDM_HOT", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2307251499999996, + 41.4471759 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Robin van der Linde", + "uid": "5093765", + "editor": "MapComplete 0.8.1", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-04T19:25:54Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107404092, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.5801438, + 52.9886576 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "ladoga", + "uid": "827957", + "editor": "MapComplete 0.8.1", + "comment": "Adding data with #MapComplete for theme #sport_pitches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-04T17:08:50Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 9.27190549993732e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107399445, + "host": "mapcomplete.osm.be", + "theme": "sport_pitches", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.78172875, + 48.28012525 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + }, + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-8826337987", + "osm_id": 8826337987, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8826337990", + "osm_id": 8826337990, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8826337988", + "osm_id": 8826337988, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8826337986", + "osm_id": 8826337986, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "Maribelens", + "uid": "13480216", + "editor": "MapComplete 0.8.1", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete1.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-04T17:02:41Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 1.95444000008076e-8, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107399232, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "imagery": "HDM_HOT", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.22837165, + 41.447435 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Unbeatable101", + "uid": "11946368", + "editor": "MapComplete 0.8.1", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-04T16:41:35Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107398394, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -79.5328617, + 43.1849863 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "JannikK", + "uid": "10114379", + "editor": "MapComplete 0.8.1", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-04T14:42:15Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.00000356004792000347, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107393708, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.909097, + 53.6636667 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "mildis", + "uid": "9151989", + "editor": "MapComplete 0.8.1", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-04T13:55:35Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107391739, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.1465075, + 48.9024177 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.8.1", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-04T13:15:32Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 6.24400559999334e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107390271, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.90634585, + 51.2285138 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Rober castro", + "uid": "13601244", + "editor": "MapComplete 0.8.1", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-04T10:27:27Z", + "reviewed_features": [], + "create": 0, + "modify": 10, + "delete": 0, + "area": 0.0000455957077200184, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107384119, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "imagery": "osm", + "language": "en", + "theme-creator": "Erwin Olario" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.7728481, + 41.62657735 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Rober castro", + "uid": "13601244", + "editor": "MapComplete 0.8.1", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-04T08:04:04Z", + "reviewed_features": [], + "create": 0, + "modify": 10, + "delete": 0, + "area": 0.0000149266339200019, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107379203, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "imagery": "osm", + "language": "en", + "theme-creator": "Erwin Olario" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.79378125, + 41.6189837 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AngelG", + "uid": "667203", + "editor": "MapComplete 0.8.1", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-04T07:58:53Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.0000148933161600393, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107379066, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "imagery": "HDM_HOT", + "language": "en", + "theme-creator": "Erwin Olario" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.8030329, + 41.6200017 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Koenraad Van Coppenolle", + "uid": "12352906", + "editor": "MapComplete 0.8.1", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-04T07:32:37Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0.000417637589159932, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107378298, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.8628420000000006, + 50.876602000000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Koenraad Van Coppenolle", + "uid": "12352906", + "editor": "MapComplete 0.8.1", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-04T06:58:57Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107377442, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.8779343, + 50.8749435 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "koilebeit", + "uid": "10355146", + "editor": "MapComplete 0.8.1", + "comment": "Adding data with #MapComplete for theme #sport_pitches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-04T06:47:33Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107377157, + "host": "mapcomplete.osm.be", + "theme": "sport_pitches", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.5999967, + 47.5721039 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.8.1", + "comment": "Adding data with #MapComplete for theme #climbing", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-04T06:27:37Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 7.21008600001466e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107376632, + "host": "pietervdvn.github.io", + "path": "mc/feature/units/", + "theme": "climbing", + "imagery": "osm", + "language": "en", + "theme-creator": "Christian Neumann " + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.89922325, + 50.4682765 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "cregox", + "uid": "9515343", + "editor": "MapComplete 0.8.1", + "comment": "Adding data with #MapComplete for theme #personal", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-04T06:16:54Z", + "reviewed_features": [], + "create": 3, + "modify": 7, + "delete": 0, + "area": 0.000255602241419815, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107376395, + "host": "mapcomplete.osm.be", + "theme": "personal", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -7.6953024, + 41.27305465 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "cregox", + "uid": "9515343", + "editor": "MapComplete 0.8.1", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-04T05:40:19Z", + "reviewed_features": [], + "create": 5, + "modify": 8, + "delete": 0, + "area": 0.00561702952145831, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107375700, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -7.7915753, + 41.27653235 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "cregox", + "uid": "9515343", + "editor": "MapComplete 0.8.1", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-04T05:37:00Z", + "reviewed_features": [], + "create": 1, + "modify": 4, + "delete": 0, + "area": 0.0000141660518999456, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107375646, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -7.685330649999999, + 41.2703645 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.8.1", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/railway", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-04T04:02:28Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107374450, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/railway", + "imagery": "osm", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.7889388, + -34.6506381 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.8.1", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-04T03:37:33Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107374210, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.788963, + -34.650659 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.8.1", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-04T03:31:11Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107374133, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "imagery": "HDM_HOT", + "language": "en", + "theme-creator": "Erwin Olario" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.7891185, + -34.6502794 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Rober castro", + "uid": "13601244", + "editor": "MapComplete 0.8.1", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-03T21:50:56Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.00037276750335999, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107370331, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "imagery": "osm", + "language": "en", + "theme-creator": "Erwin Olario" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.7852913, + 41.62378270000001 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.8.1", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-03T19:49:47Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107367471, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.2193819, + 51.1822834 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-8811503097", + "osm_id": 8811503097, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8890893592", + "osm_id": 8890893592, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8770346799", + "osm_id": 8770346799, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8770243081", + "osm_id": 8770243081, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8770346926", + "osm_id": 8770346926, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8770346923", + "osm_id": 8770346923, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8770346925", + "osm_id": 8770346925, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8890910610", + "osm_id": 8890910610, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8770346886", + "osm_id": 8770346886, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8770346876", + "osm_id": 8770346876, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8770346866", + "osm_id": 8770346866, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8822716944", + "osm_id": 8822716944, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8890929747", + "osm_id": 8890929747, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8770243104", + "osm_id": 8770243104, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8770346875", + "osm_id": 8770346875, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8822716945", + "osm_id": 8822716945, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8891009813", + "osm_id": 8891009813, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8822661188", + "osm_id": 8822661188, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8822751934", + "osm_id": 8822751934, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8822751938", + "osm_id": 8822751938, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8822662477", + "osm_id": 8822662477, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8822661197", + "osm_id": 8822661197, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8822736096", + "osm_id": 8822736096, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8822661152", + "osm_id": 8822661152, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "Jose Luis Infante", + "uid": "126203", + "editor": "MapComplete 0.8.1", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete1.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-03T19:12:25Z", + "reviewed_features": [], + "create": 11, + "modify": 58, + "delete": 0, + "area": 0.0000145801214999807, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107366484, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "imagery": "HDM_HOT", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.23443045, + 41.4444905 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.8.1", + "comment": "Adding data with #MapComplete for theme #RailwaySignalsARG", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-03T18:03:21Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107364400, + "host": "mapcomplete.osm.be", + "theme": "railwaysignalsarg", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.7872839, + -34.651193 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "OttoR", + "uid": "4123522", + "editor": "MapComplete 0.8.1", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-03T15:14:09Z", + "reviewed_features": [], + "create": 0, + "modify": 8, + "delete": 0, + "area": 0.00000370220687998789, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107358016, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.9760206, + 52.337871 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "eiryelio", + "uid": "831652", + "editor": "MapComplete 0.8.1", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-03T15:04:53Z", + "reviewed_features": [], + "create": 1, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107357608, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1366315, + 50.6942047 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "vt100", + "uid": "15110", + "editor": "MapComplete 0.8.2", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-03T14:51:13Z", + "reviewed_features": [], + "create": 3, + "modify": 8, + "delete": 0, + "area": 0.00520382339489958, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107357033, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "surveillance", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 16.335479499999998, + 48.18749435 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ltrlg", + "uid": "5035134", + "editor": "MapComplete 0.8.1", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-03T14:51:11Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107357028, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "osm", + "language": "fr", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.5583594, + 47.4644831 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.8.2", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-03T12:38:44Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107351906, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2207792, + 51.2168779 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "eiryelio", + "uid": "831652", + "editor": "MapComplete 0.8.1", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-03T11:10:04Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.00000440007849998721, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107349092, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.139312, + 50.691505750000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "WardBeyens", + "uid": "10343215", + "editor": "MapComplete 0.0.8f", + "comment": "Adding data with #MapComplete for theme #buurtnatuur", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-03T10:40:24Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.0087058638197998, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107348158, + "theme": "buurtnatuur", + "theme-creator": "Pieter Vander Vennet" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.062176, + 51.37753885 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Koen Rijnsent", + "uid": "4569696", + "editor": "MapComplete 0.8.1", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-03T10:02:27Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107346987, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.1252835, + 52.0836943 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.8.1", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-03T09:25:13Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 1.34861999998086e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107345763, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2212935, + 51.2159086 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ben Abelshausen", + "uid": "137772", + "editor": "MapComplete 0.8.1", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-03T08:03:14Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107342913, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.788639, + 51.2645906 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.8.1", + "comment": "Adding data with #MapComplete for theme #RailwaySignalsARG", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-03T04:25:24Z", + "reviewed_features": [], + "create": 6, + "modify": 0, + "delete": 0, + "area": 6.15654490004769e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107338502, + "host": "mapcomplete.osm.be", + "theme": "railwaysignalsarg", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.78826425, + -34.65089705 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 1, + "name": "suspect_word" + } + ], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.8.2", + "comment": "Deleting a point with #MapComplete for theme #bookcases: testing point", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-03T00:23:19Z", + "reviewed_features": [], + "create": 0, + "modify": 0, + "delete": 1, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107335315, + "host": "127.0.0.1:1234", + "theme": "bookcases", + "imagery": "osm", + "deletion": "yes", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.219882, + 51.2157065 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 1, + "name": "suspect_word" + } + ], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.8.2", + "comment": "Deleting a point with #MapComplete for theme #bookcases: testing point", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-02T23:39:42Z", + "reviewed_features": [], + "create": 0, + "modify": 0, + "delete": 1, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107334758, + "host": "127.0.0.1:1234", + "theme": "bookcases", + "imagery": "osm", + "deletion": "yes", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2198712, + 51.2156981 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.8.2", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-02T23:36:42Z", + "reviewed_features": [], + "create": 2, + "modify": 0, + "delete": 0, + "area": 9.07200000633043e-11, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107334707, + "host": "127.0.0.1:1234", + "theme": "bookcases", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2198766, + 51.215702300000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.8.1", + "comment": "Adding data with #MapComplete for theme #climbing", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-02T18:29:08Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 7.21008600001466e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107326187, + "host": "mapcomplete.osm.be", + "theme": "climbing", + "imagery": "osm", + "language": "en", + "theme-creator": "Christian Neumann " + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.89922325, + 50.4682765 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + }, + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-8888309140", + "osm_id": 8888309140, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8786303533", + "osm_id": 8786303533, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8786303535", + "osm_id": 8786303535, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8786303530", + "osm_id": 8786303530, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8786303519", + "osm_id": 8786303519, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8786303532", + "osm_id": 8786303532, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8786303528", + "osm_id": 8786303528, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8786303518", + "osm_id": 8786303518, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8786303531", + "osm_id": 8786303531, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8786303529", + "osm_id": 8786303529, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "Maribelens", + "uid": "13480216", + "editor": "MapComplete 0.8.1", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete1.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-02T17:21:02Z", + "reviewed_features": [], + "create": 1, + "modify": 13, + "delete": 0, + "area": 1.08367719998336e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107323688, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "imagery": "HDM_HOT", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2299869, + 41.45025205 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + }, + { + "id": 42, + "name": "Invalid tag modification" + } + ], + "tags": [], + "features": [ + { + "url": "node-8883434240", + "name": "Águeda - Camino Zaratán", + "osm_id": 8883434240, + "reasons": [ + 42 + ], + "version": 8, + "primary_tags": {} + }, + { + "url": "node-8883499654", + "name": "Cervantes s/n", + "osm_id": 8883499654, + "reasons": [ + 42 + ], + "version": 8, + "primary_tags": {} + } + ], + "user": "AngelG", + "uid": "667203", + "editor": "MapComplete 0.8.1", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-02T15:31:13Z", + "reviewed_features": [], + "create": 3, + "modify": 25, + "delete": 0, + "area": 0.0000667591815799989, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107318880, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "imagery": "HDM_HOT", + "language": "en", + "theme-creator": "Erwin Olario" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.7721260999999995, + 41.62756895 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Nuytinck", + "uid": "3719237", + "editor": "MapComplete 0.8.2", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-02T13:10:25Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107312724, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3253657, + 51.1093114 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "KirstyWatkinson", + "uid": "8241253", + "editor": "MapComplete 0.8.1", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-02T12:53:51Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107312030, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "EsriWorldImageryClarity", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.277056, + 53.4048886 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "thomas132", + "uid": "9643191", + "editor": "MapComplete 0.8.1", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-02T01:06:16Z", + "reviewed_features": [], + "create": 3, + "modify": 3, + "delete": 0, + "area": 0.00000636998942997235, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107283786, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "imagery": "HDM_HOT", + "language": "en", + "theme-creator": "Erwin Olario" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -93.65124155000001, + 41.73699005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.8.2", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-02T00:17:21Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 5.57339999890456e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107283257, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "trees", + "imagery": "osm", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.22277385, + -39.8375372 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.8.1", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-01T20:13:33Z", + "reviewed_features": [], + "create": 0, + "modify": 7, + "delete": 0, + "area": 5.55130879996773e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107278218, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.44867665, + 51.0920828 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "AngelG", + "uid": "667203", + "editor": "MapComplete 0.8.1", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-01T20:10:59Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 0.0000549137823400304, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107278133, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "imagery": "HDM_HOT", + "language": "en", + "theme-creator": "Erwin Olario" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.7721500500000005, + 41.628206 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.8.1", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-01T19:21:52Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107276579, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2120516, + 51.191464 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.8.1", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-01T16:52:16Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107270901, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.224388, + 50.7138962 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "AngelG", + "uid": "667203", + "editor": "MapComplete 0.8.1", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-01T16:28:06Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107269915, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "imagery": "HDM_HOT", + "language": "en", + "theme-creator": "Erwin Olario" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.7727844, + 41.6283179 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Koen Rijnsent", + "uid": "4569696", + "editor": "MapComplete 0.8.1", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-01T14:26:21Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107264848, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.122183, + 52.0788916 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.8.1", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/railway", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-01T13:36:03Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.0000209260532400192, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107262666, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/railway", + "imagery": "osm", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.64857445, + -34.6542519 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Koen Rijnsent", + "uid": "4569696", + "editor": "MapComplete 0.8.1", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-07-01T07:13:19Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107243866, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.1110544, + 52.0827213 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "thomas132", + "uid": "9643191", + "editor": "MapComplete 0.8.1", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-07-01T01:48:54Z", + "reviewed_features": [], + "create": 2, + "modify": 2, + "delete": 0, + "area": 4.53748019992759e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 107233544, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "imagery": "HDM_HOT", + "language": "en", + "theme-creator": "Erwin Olario" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -93.65283, + 41.73333975 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Ninopiña10", + "uid": "11138282", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-31T16:24:00Z", + "reviewed_features": [], + "create": 5, + "modify": 5, + "delete": 0, + "area": 0.00261655112319972, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110522977, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.9232631, + 43.301894000000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Jotam", + "uid": "768145", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #campersite", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-31T08:54:17Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.0000111156142000003, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110500377, + "host": "mapcomplete.osm.be", + "theme": "campersite", + "imagery": "osm", + "language": "en", + "theme-creator": "joost schouppe" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.9253875, + 52.28589785 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Jotam", + "uid": "768145", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-31T08:44:25Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 6.3636570000304e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110499778, + "host": "mapcomplete.osm.be", + "theme": "shops", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.93549225, + 52.309405600000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "jospyck", + "uid": "12128135", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-31T08:32:06Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110499125, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "nl", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2601325, + 50.7373676 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #cyclestreets", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-30T23:49:33Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.00000125325426000595, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110483407, + "host": "mapcomplete.osm.be", + "theme": "cyclestreets", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.769360450000001, + 51.491284 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-30T23:18:29Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.00460467729224991, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110482912, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.9560343499999995, + 51.12547465 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "da-werbung", + "uid": "4923577", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-30T20:23:22Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 1.55455799999909e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110479119, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.720773099999999, + 51.6261887 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Firefighter-112", + "uid": "14014754", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-30T18:09:43Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110474449, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.5652936, + 51.9702387 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Casi1980", + "uid": "13989376", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-30T18:04:42Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110474280, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 14.1588903, + 52.4506053 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-30T15:52:31Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 4.1518100002006e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110468824, + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "osm", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.60310665, + -33.42403535 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Brandoberinspektor Erdmann", + "uid": "13364061", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-30T15:06:30Z", + "reviewed_features": [], + "create": 243, + "modify": 243, + "delete": 0, + "area": 0.00270729736535995, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110466911, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.759464000000001, + 52.841807900000006 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "hke2912", + "uid": "5154951", + "editor": "MapComplete 0.9.3", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-30T14:33:56Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110465435, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "de", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.91956, + 52.5122283 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-30T13:18:57Z", + "reviewed_features": [], + "create": 4, + "modify": 27, + "delete": 0, + "area": 0.00636399281615861, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110461689, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/signals", + "imagery": "osm", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.64232525, + -34.6528931 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.9.3", + "comment": "Deleting a point with #MapComplete for theme #bookcases: disused", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-30T13:13:18Z", + "reviewed_features": [], + "create": 0, + "modify": 0, + "delete": 1, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110461433, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "bookcases", + "imagery": "osm", + "deletion": "yes", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2327525, + 51.212346 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Koen Rijnsent", + "uid": "4569696", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-30T11:48:07Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.0841241930837222, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110457054, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.57080245, + 48.704203 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Brandoberinspektor Erdmann", + "uid": "13364061", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-30T10:05:30Z", + "reviewed_features": [], + "create": 10, + "modify": 11, + "delete": 0, + "area": 0.0000816513261799791, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110451095, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.729089349999999, + 52.8351156 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Brandoberinspektor Erdmann", + "uid": "13364061", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-30T09:43:55Z", + "reviewed_features": [], + "create": 39, + "modify": 39, + "delete": 0, + "area": 0.000283631949129992, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110449938, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.72531815, + 52.83822055 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-30T09:11:50Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.00000456938850001588, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110448225, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.46224065, + 50.7820216 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-29T21:42:55Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 4.1518100002006e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110428059, + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "osm", + "language": "fr", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.60310665, + -33.42403535 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ygramul", + "uid": "1230818", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #personal", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-29T17:02:22Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 1.04284799998241e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110420814, + "host": "mapcomplete.osm.be", + "theme": "personal", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.9917127, + 48.4984367 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Robin van der Linde", + "uid": "5093765", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-29T15:43:30Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110417964, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "imagery": "CartoDB.Voyager", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.2557221, + 43.7859072 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "andre901", + "uid": "165171", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-29T15:10:52Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110416754, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 12.878176, + 52.3875656 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Eeule", + "uid": "12479179", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-29T14:55:40Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110416126, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "de", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.3338032, + 47.8180013 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "brust84", + "uid": "1225756", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #inline_skating", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-29T13:43:48Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.0000456251291800346, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110413360, + "host": "mapcomplete.osm.be", + "theme": "inline_skating", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.7243377, + 51.054969650000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "andre901", + "uid": "165171", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-29T13:29:02Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110412870, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 12.8615811, + 52.3855979 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Manuel C Arco Martos", + "uid": "13949545", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-29T12:55:53Z", + "reviewed_features": [], + "create": 2, + "modify": 2, + "delete": 0, + "area": 0.00000612869312999588, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110411635, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.69334155, + 37.74212075 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Ninopiña10", + "uid": "11138282", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-29T11:21:51Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110408479, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.5215607, + 41.6305262 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.9.3", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 3, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-29T10:33:56Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110406920, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "aed", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.459437, + 51.3650876 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Firefighter-112", + "uid": "14014754", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-29T10:05:06Z", + "reviewed_features": [], + "create": 2, + "modify": 1, + "delete": 0, + "area": 0.000351899590560084, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110406038, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.5893767, + 51.97243505 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.8.5-rc2", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-29T09:33:43Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110404922, + "host": "pietervdvn.github.io", + "path": "mc/feature/road-splitting/", + "theme": "cyclofix", + "imagery": "AGIV10cm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2678505, + 50.74381 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ltrlg", + "uid": "5035134", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-29T09:14:22Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110404373, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "language": "fr", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.5124488, + 47.4452066 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ltrlg", + "uid": "5035134", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-29T09:05:21Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110404088, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "osm", + "language": "fr", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.5133567, + 47.4451131 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "kleenwalle", + "uid": "14014719", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-29T08:13:44Z", + "reviewed_features": [], + "create": 10, + "modify": 0, + "delete": 0, + "area": 0.000141611301279952, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110402536, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.98134645, + 51.8424031 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-29T07:47:14Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110401909, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.1118555, + 50.7995312 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Manuel C Arco Martos", + "uid": "13949545", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-29T07:06:19Z", + "reviewed_features": [], + "create": 5, + "modify": 17, + "delete": 0, + "area": 0.0000258343448500012, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110401090, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.69371985, + 37.74372465 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Ninopiña10", + "uid": "11138282", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-28T22:56:03Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110396066, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.5231646, + 41.630438 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #cyclestreets", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-28T22:14:30Z", + "reviewed_features": [], + "create": 0, + "modify": 7, + "delete": 0, + "area": 0.0000225008588999953, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110395474, + "host": "mapcomplete.osm.be", + "theme": "cyclestreets", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.46834945, + 50.781139 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "thschick", + "uid": "2753036", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #artwork", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-28T19:48:40Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110392599, + "host": "mapcomplete.osm.be", + "theme": "artwork", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.0077223, + 51.4381799 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "thschick", + "uid": "2753036", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #parkings", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-28T19:46:25Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110392546, + "host": "mapcomplete.osm.be", + "theme": "parkings", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.0096636, + 51.4387791 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Frans_Napaters", + "uid": "3574538", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-28T19:16:10Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000108268067999561, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110391900, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.889961899999999, + 51.0560962 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-28T19:04:17Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110391628, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "imagery": "CartoDB.Voyager", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.9888208, + 51.1638865 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Manuel C Arco Martos", + "uid": "13949545", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-28T17:09:52Z", + "reviewed_features": [], + "create": 1, + "modify": 5, + "delete": 0, + "area": 0.0000435118780800035, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110388360, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.69638995, + 37.7405462 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Frans_Napaters", + "uid": "3574538", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-28T16:48:18Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 9.98540400001975e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110387566, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.9074104, + 51.091554 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Rienux", + "uid": "11911273", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-28T13:57:42Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110381615, + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "AGIV", + "language": "nl", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.271279, + 51.057879 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Frans_Napaters", + "uid": "3574538", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-28T13:31:51Z", + "reviewed_features": [], + "create": 0, + "modify": 7, + "delete": 0, + "area": 0.00000114774769999374, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110380688, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.88993545, + 51.0560938 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-28T10:41:26Z", + "reviewed_features": [], + "create": 0, + "modify": 14, + "delete": 0, + "area": 0.0000985496924700761, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110375071, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.993748650000001, + 51.16077895 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Rosi93", + "uid": "14010270", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-28T10:32:36Z", + "reviewed_features": [], + "create": 5, + "modify": 6, + "delete": 0, + "area": 0.00111857064168002, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110374800, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.7670876, + 51.425540299999994 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "WinstonSmith", + "uid": "36030", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-28T10:16:18Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110374240, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.2706164, + 44.5230379 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "da-werbung", + "uid": "4923577", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-28T09:25:21Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.0000604054000599567, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110372483, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.38232895, + 51.584776000000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Rienux", + "uid": "11911273", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-28T09:16:28Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110372196, + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "AGIV", + "language": "nl", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2686778, + 51.0605068 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "treemap", + "uid": "926359", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-28T08:54:46Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110371506, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.5179344, + 45.5046634 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-9042426135", + "name": "Fietsbieb Halle", + "osm_id": 9042426135, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "amenity": "bicycle_library" + } + } + ], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-28T08:22:37Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110370542, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2202923, + 50.748141 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Koen Rijnsent", + "uid": "4569696", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-28T07:22:17Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110368630, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.7171638, + 48.688034 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "eiryelio", + "uid": "831652", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-28T04:53:14Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 0.00076583030880004, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110365638, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "imagery": "osm", + "language": "fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1348382, + 50.6751023 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Larry Gallagher", + "uid": "5492654", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-28T01:51:52Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110363347, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -122.04712710000001, + 37.2517689 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "treemap", + "uid": "926359", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-27T23:28:13Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110361908, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.5653507, + 45.4788934 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.9.3", + "comment": "Adding data with #MapComplete for theme #cycle_highways", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-27T22:18:42Z", + "reviewed_features": [], + "create": 0, + "modify": 7, + "delete": 0, + "area": 0.51204036025048, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110360732, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "cycle_highways", + "imagery": "CartoDB.Positron", + "language": "en", + "theme-creator": "L'imaginaire" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.5743172, + 50.976084 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "The_JF", + "uid": "4543415", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-27T18:22:39Z", + "reviewed_features": [], + "create": 1, + "modify": 22, + "delete": 0, + "area": 0.00178360145671998, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110354638, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.45619635, + 53.8526971 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "da-werbung", + "uid": "4923577", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-27T16:58:49Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110351802, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.6819299, + 51.677429 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + }, + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-9041075454", + "osm_id": 9041075454, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "tourism": "map" + } + } + ], + "user": "Manuel C Arco Martos", + "uid": "13949545", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #nature", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-27T14:30:08Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110345728, + "host": "mapcomplete.osm.be", + "theme": "nature", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.7218111, + 37.7355389 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Druese", + "uid": "13987920", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-27T13:04:16Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110341888, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 14.6932501, + 51.6456486 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.9.3", + "comment": "Adding data with #MapComplete for theme #cycle_highways", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-27T12:51:32Z", + "reviewed_features": [], + "create": 0, + "modify": 12, + "delete": 0, + "area": 0.810559246294722, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110341268, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "cycle_highways", + "imagery": "CartoDB.Positron", + "language": "en", + "theme-creator": "L'imaginaire" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3964877, + 50.97587475 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Ninopiña10", + "uid": "11138282", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-27T09:08:39Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110328737, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.4345096, + 41.6106455 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "treemap", + "uid": "926359", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-27T01:18:11Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0.00000655020214996501, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110311804, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.56856895, + 45.479045049999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-27T00:31:33Z", + "reviewed_features": [], + "create": 7, + "modify": 4, + "delete": 0, + "area": 0.0177401585410503, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110311324, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/signals", + "imagery": "osm", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.57005985, + -34.63639885 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.9.3", + "comment": "Adding data with #MapComplete for theme #cycle_highways", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-26T23:00:26Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 1.43679069999259e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110310132, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "cycle_highways", + "imagery": "osm", + "language": "en", + "theme-creator": "L'imaginaire" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.69372375, + 51.04165345 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.9.3", + "comment": "Adding data with #MapComplete for theme #fritures", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-26T18:08:43Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110302017, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "fritures", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4259574, + 51.2126193 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ygramul", + "uid": "1230818", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #personal", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-26T15:36:52Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 2.10140320001116e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110295287, + "host": "mapcomplete.osm.be", + "theme": "personal", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.9907228, + 48.4981911 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Moisès", + "uid": "12884230", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #parkings", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-26T14:18:58Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 0.00000681332118997564, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110291443, + "host": "mapcomplete.osm.be", + "theme": "parkings", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.21066735, + 41.54675125 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-26T13:05:37Z", + "reviewed_features": [], + "create": 4, + "modify": 19, + "delete": 0, + "area": 0.00554211604890096, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110288047, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/signals", + "imagery": "osm", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.6562667, + -34.65279285 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "PaulSembten", + "uid": "13999064", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-26T12:43:38Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110287012, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 14.6365021, + 52.015425 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Der Kalle", + "uid": "13998301", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-26T12:22:04Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110285848, + "host": "waldbrand-app.de", + "theme": "hailhydrant", + "imagery": "HDM_HOT", + "language": "en", + "theme-creator": "Erwin Olario" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 14.6721768, + 51.9473461 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "jospyck", + "uid": "12128135", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-26T11:17:36Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110281843, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2297336, + 50.8954102 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Der Kalle", + "uid": "13998301", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-26T10:30:53Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110279162, + "host": "waldbrand-app.de", + "theme": "hailhydrant", + "imagery": "HDM_HOT", + "language": "en", + "theme-creator": "Erwin Olario" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 14.71425, + 51.9491832 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Nickrds09", + "uid": "966535", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #streetlamps", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-26T10:26:16Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110278890, + "host": "mapcomplete.osm.be", + "theme": "streetlamps", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 121.5593499, + 13.9636129 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "jospyck", + "uid": "12128135", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-26T09:35:16Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110275748, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.7108772, + 50.6550157 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "jospyck", + "uid": "12128135", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-26T09:06:41Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110274106, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "imagery": "osm", + "language": "nl" + }, "geometry": { "type": "Point", "coordinates": [ @@ -59515,6 +265277,26938 @@ }, { "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Ninopiña10", + "uid": "11138282", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-26T07:20:02Z", + "reviewed_features": [], + "create": 2, + "modify": 2, + "delete": 0, + "area": 0.00252212414735991, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110268266, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.55157865, + 41.6085038 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #climbing", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-26T04:38:46Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 9.62480999917301e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110260590, + "host": "mapcomplete.osm.be", + "theme": "climbing", + "imagery": "osm", + "language": "fr", + "theme-creator": "Christian Neumann " + }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.59771455, + -33.57078305 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.9.2", + "comment": "Adding data with #MapComplete for theme #cycle_highways", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-26T00:16:05Z", + "reviewed_features": [], + "create": 0, + "modify": 9, + "delete": 0, + "area": 1.11442729006883, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110256028, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "cycle_highways", + "imagery": "CartoDB.Positron", + "language": "en", + "theme-creator": "L'imaginaire" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.8954485, + 51.017616399999994 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Villodie", + "uid": "619565", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-25T20:45:18Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110251690, + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "osm", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -79.038426, + -2.8624529 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Mitch85", + "uid": "4907923", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-25T20:08:40Z", + "reviewed_features": [], + "create": 6, + "modify": 5, + "delete": 0, + "area": 0.0000969918099699342, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110250614, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 14.44426325, + 51.89308835 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "dekoe65", + "uid": "13921921", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-25T19:40:40Z", + "reviewed_features": [], + "create": 3, + "modify": 0, + "delete": 0, + "area": 0.00000454861140000203, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110249682, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 12.8539609, + 52.1657929 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "okwithmydecay", + "uid": "10370720", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-25T16:54:43Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110243813, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0585135, + 51.5434224 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Mannsen", + "uid": "13988107", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-25T15:05:33Z", + "reviewed_features": [], + "create": 3, + "modify": 3, + "delete": 0, + "area": 0.00146001080716002, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110238612, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 14.32839855, + 52.028535000000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusOrux", + "uid": "13624541", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #nature", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-25T14:27:32Z", + "reviewed_features": [], + "create": 2, + "modify": 1, + "delete": 0, + "area": 0.00000823448400001157, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110236764, + "host": "mapcomplete.osm.be", + "theme": "nature", + "imagery": "PNOA-Spain-TMS", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.3344568, + 39.462694400000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Mannsen", + "uid": "13988107", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-25T14:04:42Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 4.75199999723572e-11, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110235467, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 14.3282899, + 52.032626199999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Robin van der Linde", + "uid": "5093765", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-25T13:44:00Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110234434, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "imagery": "CartoDB.Voyager", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 12.3545962, + 45.4323164 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-25T13:15:22Z", + "reviewed_features": [], + "create": 3, + "modify": 20, + "delete": 0, + "area": 0.00621668929465883, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110232873, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/signals", + "imagery": "osm", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.64416895, + -34.6523526 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Mike Gallert", + "uid": "13992729", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-25T11:49:23Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110227343, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 14.3042502, + 51.799496 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Robin van der Linde", + "uid": "5093765", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-25T11:10:54Z", + "reviewed_features": [], + "create": 1, + "modify": 11, + "delete": 0, + "area": 2.57379100002923e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110224603, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "nl", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 12.33029595, + 45.430868849999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.9.2", + "comment": "Adding data with #MapComplete for theme #cyclestreets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-25T10:31:26Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000397225571999192, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110222055, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "cyclestreets", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.6013579, + 51.1525427 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Druese", + "uid": "13987920", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-25T10:13:05Z", + "reviewed_features": [], + "create": 4, + "modify": 1, + "delete": 0, + "area": 0.000334047668939912, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110220790, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 14.757716949999999, + 51.4659751 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Robin van der Linde", + "uid": "5093765", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-25T09:46:16Z", + "reviewed_features": [], + "create": 0, + "modify": 6, + "delete": 0, + "area": 0.0000536453654300007, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110219133, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "imagery": "CartoDB.Voyager", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 12.32879105, + 45.43156775 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "troNpo", + "uid": "12221867", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-25T07:08:31Z", + "reviewed_features": [], + "create": 2, + "modify": 6, + "delete": 0, + "area": 0.0127349493084011, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110210088, + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "osm", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -5.8329, + 37.27243035 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Trompo", + "uid": "12221867", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-25T05:48:47Z", + "reviewed_features": [], + "create": 2, + "modify": 1, + "delete": 0, + "area": 0.00290972385540004, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110205818, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -5.8865992, + 37.32530345 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "treemap", + "uid": "926359", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-25T05:39:18Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 4.38743999994457e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110205391, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.5912685, + 45.517507699999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Christian 1102", + "uid": "13990176", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-25T03:30:28Z", + "reviewed_features": [], + "create": 4, + "modify": 4, + "delete": 0, + "area": 0.00019736205056998, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110200544, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 14.033919749999999, + 51.689032049999994 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Casi1980", + "uid": "13989376", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-24T23:49:36Z", + "reviewed_features": [], + "create": 14, + "modify": 1, + "delete": 0, + "area": 0.000482367774249923, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110197630, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 14.17389845, + 52.446407449999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-24T22:19:59Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110195980, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/signals", + "imagery": "EsriWorldImageryClarity", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.7290773, + -34.6641159 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-24T21:53:38Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110195344, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "AGIV10cm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.5584142, + 50.7860886 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Brec10", + "uid": "13615286", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-24T20:48:34Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110193404, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.5925962, + 44.3287832 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "WinstonSmith", + "uid": "36030", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-24T20:18:06Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110192320, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.4257015, + 44.4611836 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.9.2", + "comment": "Adding data with #MapComplete for theme #cycle_highways", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-24T20:12:28Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00328119071170019, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110192119, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "cycle_highways", + "imagery": "CartoDB.Positron", + "language": "en", + "theme-creator": "L'imaginaire" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.13413085, + 51.0958509 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #cyclestreets", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-24T19:23:24Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 2.58904470001526e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110190369, + "host": "mapcomplete.osm.be", + "theme": "cyclestreets", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.60153015, + 50.80909725 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Robin van der Linde", + "uid": "5093765", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-24T18:17:32Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110188312, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "imagery": "CartoDB.Voyager", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 12.3267343, + 45.4409673 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Druese", + "uid": "13987920", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-24T17:02:30Z", + "reviewed_features": [], + "create": 16, + "modify": 7, + "delete": 0, + "area": 0.00348858910527002, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110185535, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 14.68704295, + 51.65444975 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Mannsen", + "uid": "13988107", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-24T16:17:25Z", + "reviewed_features": [], + "create": 14, + "modify": 22, + "delete": 0, + "area": 0.00130026993444034, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110183455, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 14.35299485, + 52.0318069 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Dark-Star", + "uid": "93252", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-24T14:38:00Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110178344, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.1767718, + 48.5005919 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Dark-Star", + "uid": "93252", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-24T14:27:42Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.00000532432529999936, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110177856, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.2033242, + 48.538803349999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-24T14:23:34Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110177596, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/signals", + "imagery": "osm", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.40994, + -34.6088596 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/railway", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-24T14:07:30Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 0.00024570444089996, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110176789, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/railway", + "imagery": "osm", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.474153, + -34.630172349999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Stefank3355", + "uid": "13987313", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-24T13:41:37Z", + "reviewed_features": [], + "create": 2, + "modify": 1, + "delete": 0, + "area": 8.65218770001849e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110175590, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.48438245, + 52.15649725 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.9.2", + "comment": "Adding data with #MapComplete for theme #cycle_highways", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-24T11:18:16Z", + "reviewed_features": [], + "create": 0, + "modify": 7, + "delete": 0, + "area": 0.000410352950949809, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110168021, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "cycle_highways", + "imagery": "CartoDB.Positron", + "language": "en", + "theme-creator": "L'imaginaire" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.46031215, + 51.090332950000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Robin van der Linde", + "uid": "5093765", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-24T10:38:46Z", + "reviewed_features": [], + "create": 0, + "modify": 9, + "delete": 0, + "area": 0.000124862552880091, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110165364, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "imagery": "CartoDB.Voyager", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 12.33534655, + 45.4352451 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.9.2", + "comment": "Adding data with #MapComplete for theme #cycle_highways", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-24T08:35:59Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.0000526611915899724, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110157524, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "cycle_highways", + "imagery": "CartoDB.Positron", + "language": "en", + "theme-creator": "L'imaginaire" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.29951655, + 50.804868150000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #climbing", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-23T23:24:41Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 6.39972300008427e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110140295, + "host": "mapcomplete.osm.be", + "theme": "climbing", + "imagery": "osm", + "language": "fr", + "theme-creator": "Christian Neumann " + }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.62637885000001, + -33.44296315 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "treemap", + "uid": "926359", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-23T22:33:39Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110139566, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.5579423, + 45.5058439 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusOrux", + "uid": "13624541", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-23T21:09:26Z", + "reviewed_features": [], + "create": 2, + "modify": 0, + "delete": 0, + "area": 2.18870000026876e-10, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110137534, + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "osm", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.70650585, + 37.59645845 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "treemap", + "uid": "926359", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-23T20:25:50Z", + "reviewed_features": [], + "create": 1, + "modify": 11, + "delete": 0, + "area": 0.00399946484216043, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110136424, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.5888947, + 45.50064255 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "grossmachnow", + "uid": "104308", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-23T17:38:51Z", + "reviewed_features": [], + "create": 36, + "modify": 3, + "delete": 0, + "area": 0.00295665975335974, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110130304, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.447373200000001, + 52.287961100000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "treemap", + "uid": "926359", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-23T16:47:18Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.00081801864872012, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110127744, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.5844597, + 45.524499 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Feuerwehr Mellensee", + "uid": "13932183", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-23T15:35:02Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110124100, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.4266904, + 52.1859955 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-23T13:12:03Z", + "reviewed_features": [], + "create": 1, + "modify": 4, + "delete": 0, + "area": 0.00244022617158015, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110116925, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/signals", + "imagery": "EsriWorldImageryClarity", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.6943833, + -34.65136995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "GinaroZ", + "uid": "3432400", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-23T10:18:02Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.0000245160722400194, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110106301, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.2342144, + 56.060981999999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Matthias Van Woensel", + "uid": "4561597", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #nature", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-23T09:40:46Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110104018, + "host": "mapcomplete.osm.be", + "theme": "nature", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.1172445, + 51.2118257 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Matthias Van Woensel", + "uid": "4561597", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-23T09:33:19Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110103556, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "nl", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.1167349, + 51.2119877 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thibault Rommel", + "uid": "5846458", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-23T09:12:57Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110102326, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.4638884, + 50.8436071 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Ninopiña10", + "uid": "11138282", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-23T08:06:23Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110097992, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.6915036, + 41.612191 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Robin van der Linde", + "uid": "5093765", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-23T08:00:22Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 8.80234000005818e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110097643, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "Mapbox", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 10.422055400000001, + 46.45909115 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Robin van der Linde", + "uid": "5093765", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-23T07:57:07Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110097482, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "imagery": "Mapbox", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 10.4209475, + 46.4592242 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Stéphane Nicolet", + "uid": "4311211", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-23T07:38:13Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110096388, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.9078375, + 44.5248764 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "treemap", + "uid": "926359", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-23T07:20:20Z", + "reviewed_features": [], + "create": 0, + "modify": 28, + "delete": 0, + "area": 0.239347859159807, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110095302, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "fr", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -72.77841075, + 45.450346100000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 42, + "name": "Invalid tag modification" + } + ], + "tags": [], + "features": [ + { + "url": "node-4402850471", + "name": "Station de réparation de vélos", + "osm_id": 4402850471, + "reasons": [ + 42 + ], + "version": 6, + "primary_tags": { + "amenity": "bicycle_repair_station" + } + } + ], + "user": "treemap", + "uid": "926359", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-23T00:11:33Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110082522, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.5527882, + 45.4987638 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "GinaroZ", + "uid": "3432400", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-23T00:05:23Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110082444, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.2212061, + 56.0637904 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "treemap", + "uid": "926359", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-22T21:34:02Z", + "reviewed_features": [], + "create": 0, + "modify": 21, + "delete": 0, + "area": 0.00103801861883948, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110079932, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.56589220000001, + 45.4974016 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.9.1", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-22T19:16:17Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110076005, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "benches", + "imagery": "osm", + "language": "nl", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2249916, + 51.2104043 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.9.1", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-22T18:57:49Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110075290, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "drinking_water", + "imagery": "CartoDB.Voyager", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2250398, + 51.2104409 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Robin van der Linde", + "uid": "5093765", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-22T17:05:05Z", + "reviewed_features": [], + "create": 2, + "modify": 0, + "delete": 0, + "area": 0.00000174846194999421, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110071072, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "imagery": "Mapbox", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 10.42641755, + 46.45719425 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-22T15:50:57Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110067918, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.0076153, + 51.1226982 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Ritxarcontx", + "uid": "12997299", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-22T15:41:15Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110067510, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "imagery": "osm", + "language": "en", + "theme-creator": "Erwin Olario" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.5646386, + 42.5236249 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "LuisAliaguilla", + "uid": "13968083", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-22T14:36:09Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110064264, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.2978821, + 39.8384492 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Brandoberinspektor Erdmann", + "uid": "13364061", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-22T13:23:08Z", + "reviewed_features": [], + "create": 6, + "modify": 6, + "delete": 0, + "area": 0.0000108746287199792, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110061565, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "EsriWorldImagery", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.7719685, + 52.84832845 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.8.5-rc2", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-22T13:18:16Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110061355, + "host": "pietervdvn.github.io", + "path": "mc/feature/road-splitting/", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.5357657, + 50.8133871 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 1, + "name": "suspect_word" + } + ], + "tags": [], + "features": [], + "user": "Kathelijne", + "uid": "6761922", + "editor": "MapComplete 0.9.0", + "comment": "Deleting a point with #MapComplete for theme #bookcases: testing point", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-22T11:33:45Z", + "reviewed_features": [], + "create": 0, + "modify": 0, + "delete": 1, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110057356, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "deletion": "yes", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2209394, + 51.216821 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 1, + "name": "suspect_word" + } + ], + "tags": [], + "features": [], + "user": "Kathelijne", + "uid": "6761922", + "editor": "MapComplete 0.9.0", + "comment": "Deleting a point with #MapComplete for theme #bookcases: testing point", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-22T11:33:14Z", + "reviewed_features": [], + "create": 0, + "modify": 0, + "delete": 1, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110057338, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "deletion": "yes", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2206618, + 51.2165633 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Kathelijne", + "uid": "6761922", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-22T11:31:50Z", + "reviewed_features": [], + "create": 2, + "modify": 0, + "delete": 0, + "area": 7.15375200016382e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110057279, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2208005999999996, + 51.21669215 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dkf2010", + "uid": "685599", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-22T11:00:52Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110056245, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.1579392, + 53.7129136 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #campersite", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-22T10:59:44Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 6.17399999995229e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110056207, + "host": "mapcomplete.osm.be", + "theme": "campersite", + "imagery": "osm", + "language": "nl", + "theme-creator": "joost schouppe" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.9914404999999995, + 51.15763025 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Ritxarcontx", + "uid": "12997299", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-22T08:13:06Z", + "reviewed_features": [], + "create": 4, + "modify": 3, + "delete": 0, + "area": 0.0000339842224000166, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110051017, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "imagery": "osm", + "language": "en", + "theme-creator": "Erwin Olario" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.5620355, + 42.5230351 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.8.5-rc2", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-22T07:18:03Z", + "reviewed_features": [], + "create": 1, + "modify": 5, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110049566, + "host": "pietervdvn.github.io", + "path": "mc/feature/road-splitting/", + "theme": "aed", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2356747, + 50.7318342 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Javi Ruixi", + "uid": "3814937", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-22T05:01:05Z", + "reviewed_features": [], + "create": 1, + "modify": 5, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110047699, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "osm", + "language": "es", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.7381868, + 42.406185 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + }, + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-9025771307", + "osm_id": 9025771307, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "tourism": "map" + } + } + ], + "user": "Javi Ruixi", + "uid": "3814937", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #maps", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-22T04:59:47Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110047690, + "host": "mapcomplete.osm.be", + "theme": "maps", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.738211, + 42.4061771 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "afgb1977", + "uid": "10218404", + "editor": "MapComplete 0.8.5-rc2", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-22T01:41:42Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110046008, + "host": "pietervdvn.github.io", + "path": "mc/feature/road-splitting/", + "theme": "trees", + "imagery": "osm", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -74.6654114, + 5.4540737 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "afgb1977", + "uid": "10218404", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-22T00:14:36Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110045351, + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "osm", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -74.6654114, + 5.4540737 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-21T22:57:14Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110044272, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "UrbISOrtho2020", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3471302, + 50.8637621 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-21T22:05:40Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 2.86486380003676e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110043349, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2965525, + 50.85296485 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-21T21:32:49Z", + "reviewed_features": [], + "create": 1, + "modify": 7, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110042658, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "AGIV", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4836664, + 50.8971684 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-21T21:26:57Z", + "reviewed_features": [], + "create": 1, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110042555, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3741829, + 50.8670757 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "GamingFAIL", + "uid": "13918186", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-21T19:17:11Z", + "reviewed_features": [], + "create": 33, + "modify": 33, + "delete": 0, + "area": 0.000120845580200024, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110039590, + "host": "www.waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.37313685, + 52.6427729 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Manuel C Arco Martos", + "uid": "13949545", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-21T16:31:52Z", + "reviewed_features": [], + "create": 4, + "modify": 4, + "delete": 0, + "area": 0.0027866476482003, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110034768, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "imagery": "PNOA-Spain-TMS", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.39533825, + 39.6588001 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-21T16:21:46Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110034454, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2154662, + 51.2179199 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-21T13:32:07Z", + "reviewed_features": [], + "create": 2, + "modify": 4, + "delete": 0, + "area": 0.000229843673359948, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110028706, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.09618115, + 51.2999619 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "LuisAliaguilla", + "uid": "13968083", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-21T10:29:12Z", + "reviewed_features": [], + "create": 5, + "modify": 1, + "delete": 0, + "area": 0.00928753410618003, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110022345, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "imagery": "osm", + "language": "en", + "theme-creator": "Erwin Olario" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.2991480499999999, + 39.818940999999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "LuisAliaguilla", + "uid": "13968083", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-21T10:24:38Z", + "reviewed_features": [], + "create": 4, + "modify": 1, + "delete": 0, + "area": 0.0000153775783199972, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110022207, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.326811, + 39.74076255 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "GamingFAIL", + "uid": "13918186", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-21T07:09:41Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110014819, + "host": "www.waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.3895412, + 52.6930158 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Manuel C Arco Martos", + "uid": "13949545", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-20T19:43:22Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0.0000469310778200117, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110003826, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "imagery": "PNOA-Spain-TMS", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.3864760500000002, + 39.7193125 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Manuel C Arco Martos", + "uid": "13949545", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-20T18:04:00Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110000187, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "imagery": "PNOA-Spain", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.3838432, + 39.7148562 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-20T17:35:05Z", + "reviewed_features": [], + "create": 1, + "modify": 6, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109999132, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.1438842, + 51.1712649 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Manuel C Arco Martos", + "uid": "13949545", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-20T16:47:28Z", + "reviewed_features": [], + "create": 5, + "modify": 6, + "delete": 0, + "area": 0.0000825417846399906, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109997272, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "imagery": "PNOA-Spain-TMS", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.4395395, + 39.7218031 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #cyclestreets", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-20T10:19:02Z", + "reviewed_features": [], + "create": 0, + "modify": 9, + "delete": 0, + "area": 0.0000818445214799536, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109978806, + "host": "mapcomplete.osm.be", + "theme": "cyclestreets", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.95473985, + 51.3276478 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.8.5-rc2", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-20T10:10:27Z", + "reviewed_features": [], + "create": 2, + "modify": 2, + "delete": 0, + "area": 5.76486299999252e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109978281, + "host": "pietervdvn.github.io", + "path": "mc/feature/road-splitting/", + "theme": "charging_stations", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.8236820500000004, + 50.812700750000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "matissevdberg", + "uid": "12928471", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-20T08:19:40Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109972440, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "surveillance", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.3935227, + 50.9254313 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-20T01:13:48Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109958309, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "UrbISOrtho2020", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3422469, + 50.8520859 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Manuel C Arco Martos", + "uid": "13949545", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-19T18:10:34Z", + "reviewed_features": [], + "create": 4, + "modify": 8, + "delete": 0, + "area": 0.0000247188862000038, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109948012, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.37447785, + 39.8139357 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ltrlg", + "uid": "5035134", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-19T13:04:20Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109934175, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "osm", + "language": "fr", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.7120102, + 44.6178122 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/railway", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-19T11:57:19Z", + "reviewed_features": [], + "create": 2, + "modify": 10, + "delete": 0, + "area": 0.00111946835601014, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109930221, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/railway", + "imagery": "EsriWorldImageryClarity", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.43950945, + -34.61845065 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/railway", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-19T11:49:38Z", + "reviewed_features": [], + "create": 1, + "modify": 16, + "delete": 0, + "area": 0.000423586966080026, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109929700, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/railway", + "imagery": "EsriWorldImageryClarity", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.49058535, + -34.632881299999994 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-19T11:12:40Z", + "reviewed_features": [], + "create": 10, + "modify": 7, + "delete": 0, + "area": 0.0154543239327305, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109927240, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/signals", + "imagery": "EsriWorldImageryClarity", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.575007150000005, + -34.63906185 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "matissevdberg", + "uid": "12928471", + "editor": "MapComplete 0.9.0-rc3", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-19T07:48:11Z", + "reviewed_features": [], + "create": 2, + "modify": 5, + "delete": 0, + "area": 3.68100001396625e-11, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109915087, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "surveillance", + "imagery": "AGIV", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.37271245, + 50.93925095 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "GamingFAIL", + "uid": "13918186", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-19T06:09:47Z", + "reviewed_features": [], + "create": 2, + "modify": 4, + "delete": 0, + "area": 0.0000244568611800039, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109909901, + "host": "www.waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.382147849999999, + 52.648663400000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-19T00:02:21Z", + "reviewed_features": [], + "create": 9, + "modify": 0, + "delete": 0, + "area": 0.00137909150888009, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109901177, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/signals", + "imagery": "EsriWorldImageryClarity", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.5624732, + -34.64235495 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "GamingFAIL", + "uid": "13918186", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-18T15:48:16Z", + "reviewed_features": [], + "create": 37, + "modify": 38, + "delete": 0, + "area": 0.0000705237455000189, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109883660, + "host": "www.waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.3811806, + 52.645970750000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-18T13:31:21Z", + "reviewed_features": [], + "create": 3, + "modify": 2, + "delete": 0, + "area": 0.000423341871440035, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109876629, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/signals", + "imagery": "EsriWorldImageryClarity", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.6268878, + -34.650370499999994 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "matissevdberg", + "uid": "12928471", + "editor": "MapComplete 0.9.0-rc3", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-18T08:01:13Z", + "reviewed_features": [], + "create": 4, + "modify": 4, + "delete": 0, + "area": 0.000302281059419879, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109856297, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "surveillance", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.38244245, + 50.932639699999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #artworks", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-17T18:22:11Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109828109, + "host": "mapcomplete.osm.be", + "theme": "artworks", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.5124964, + 51.1358371 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Christopher", + "uid": "2956", + "editor": "MapComplete 0.9.0-rc0", + "comment": "Adding data with #MapComplete for theme #cycle_infra", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-17T18:07:02Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109827431, + "host": "pietervdvn.github.io", + "path": "mc/project/cycle-infra/", + "theme": "cycle_infra", + "imagery": "CartoDB.Voyager", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.2344698, + 52.3196097 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Manuel C Arco Martos", + "uid": "13949545", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-17T14:54:02Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109818176, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "imagery": "PNOA-Spain-TMS", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.2839305, + 39.8491353 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "st_OWF A_Giese", + "uid": "13944110", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-17T12:49:54Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109811703, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.7898196, + 53.1297759 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "jospyck", + "uid": "12128135", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-17T10:27:17Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.00000989488114993412, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109802343, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "nl", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.21076705, + 50.93996715 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "st_OWF A_Giese", + "uid": "13944110", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-17T10:21:32Z", + "reviewed_features": [], + "create": 18, + "modify": 12, + "delete": 0, + "area": 0.000963680908259989, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109801908, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.77356935, + 53.122519 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "jospyck", + "uid": "12128135", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-17T08:22:28Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109794441, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "nl", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.1856617, + 50.9228428 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-16T22:54:23Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109775936, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "UrbISOrtho2020", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3724459, + 50.8688436 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-16T22:48:12Z", + "reviewed_features": [], + "create": 1, + "modify": 5, + "delete": 0, + "area": 0.000104401271649989, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109775800, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.37526645, + 50.87820095 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-16T22:44:38Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 8.66262100012695e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109775676, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.378507450000001, + 50.88828855 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Koen Rijnsent", + "uid": "4569696", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #artworks", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-16T19:32:01Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109769322, + "host": "mapcomplete.osm.be", + "theme": "artworks", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.1164035, + 52.0920784 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.9.0-rc3", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-16T16:59:29Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.0000267541422900018, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109762842, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.21457025, + 51.20033705 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thibaultmol", + "uid": "2916921", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-16T16:16:56Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109760777, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3974308, + 51.0411647 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Nuytinck", + "uid": "3719237", + "editor": "MapComplete 0.9.0-rc3", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-16T12:07:02Z", + "reviewed_features": [], + "create": 2, + "modify": 2, + "delete": 0, + "area": 0.0526006854477003, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109748535, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "bookcases", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2679291500000005, + 51.1543496 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-16T10:10:11Z", + "reviewed_features": [], + "create": 0, + "modify": 11, + "delete": 0, + "area": 0.000103675358849966, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109741000, + "host": "mapcomplete.osm.be", + "theme": "shops", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.236200350000001, + 50.737634150000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "sonjagerhard", + "uid": "6332059", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-16T09:15:13Z", + "reviewed_features": [], + "create": 3, + "modify": 16, + "delete": 0, + "area": 0.0181698755550997, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109737824, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.40384975, + 49.2066477 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ruben Van de Velde", + "uid": "2676725", + "editor": "MapComplete 0.9.0-rc3", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-16T07:12:37Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109731040, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "hailhydrant", + "imagery": "HDM_HOT", + "language": "en", + "theme-creator": "Erwin Olario" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7248091, + 51.0463223 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "spelledwrongdotuk", + "uid": "12198029", + "editor": "MapComplete 0.9.0-rc3", + "comment": "Adding data with #MapComplete for theme #cycle_infra", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-15T20:44:07Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109715393, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "cycle_infra", + "imagery": "Mapbox", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.4758828, + 51.4308656 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-15T20:27:52Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109715034, + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "Mapbox", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.2356076, + -39.8240754 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.9.0-rc3", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-15T20:12:13Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 1.26503999990302e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109714688, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "trees", + "imagery": "CyclOSM", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.2205409, + -39.84486135 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Felipe Villarroel", + "uid": "7449001", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-15T19:32:53Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109713660, + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "Mapbox", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.2378767, + -39.8236297 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Michael 3", + "uid": "13922389", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-15T17:02:35Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109708815, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.2348293, + 52.7751278 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.8.5-rc2", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-15T16:33:23Z", + "reviewed_features": [], + "create": 2, + "modify": 6, + "delete": 0, + "area": 2.0787600011275e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109707687, + "host": "pietervdvn.github.io", + "path": "mc/feature/road-splitting/", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2658925, + 50.7519019 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #fietsstraten", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-15T15:45:56Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.0253746882300803, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109705960, + "host": "mapcomplete.osm.be", + "theme": "fietsstraten", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.6262706, + 51.19895565 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "ielham", + "uid": "462218", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #1roadAlllanes", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-15T11:45:50Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.00000705341249996666, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109698024, + "host": "mapcomplete.osm.be", + "theme": "1roadalllanes", + "imagery": "osm", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -6.9332483499999995, + 37.2793399 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Bibu04", + "uid": "13936872", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-15T10:38:57Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109695915, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.795037, + 45.8565394 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + }, + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-9007648358", + "osm_id": 9007648358, + "reasons": [ + 43 + ], + "version": 4, + "primary_tags": { + "emergency": "Löschwasserbehälter" + } + } + ], + "user": "DasDaniel419", + "uid": "13924905", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-15T08:06:01Z", + "reviewed_features": [], + "create": 4, + "modify": 3, + "delete": 0, + "area": 0.000535681101169885, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109691592, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.49928915, + 52.06398625 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Dieter Dewitte", + "uid": "10825393", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #boomgaarden", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-15T07:01:01Z", + "reviewed_features": [], + "create": 12, + "modify": 27, + "delete": 0, + "area": 0.000345719245250026, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109689884, + "host": "mapcomplete.osm.be", + "theme": "boomgaarden", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.36706415, + 50.83381895 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Semako", + "uid": "4240243", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-14T23:21:25Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109684988, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.3860505, + 52.1656603 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "InsertUser", + "uid": "89098", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #sport_pitches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-14T22:39:48Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 7.72999080008017e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109684544, + "host": "mapcomplete.osm.be", + "theme": "sport_pitches", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -78.68980640000001, + 26.539927050000003 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Feuerwehr Mellensee", + "uid": "13932183", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-14T20:33:28Z", + "reviewed_features": [], + "create": 5, + "modify": 0, + "delete": 0, + "area": 0.000499702232049922, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109682330, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.41402765, + 52.18858725 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "afgb1977", + "uid": "10218404", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-14T20:18:28Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109681987, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "imagery": "osm", + "language": "en", + "theme-creator": "Erwin Olario" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -75.5026871, + 5.0664182 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #fietsstraten", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-14T19:51:40Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 7.20578300014826e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109681368, + "host": "mapcomplete.osm.be", + "theme": "fietsstraten", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete, joost schouppe" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.98581025, + 51.16184715 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-14T19:46:56Z", + "reviewed_features": [], + "create": 2, + "modify": 2, + "delete": 0, + "area": 0.000140831673840069, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109681253, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "AGIV10cm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.9308002, + 51.09047675 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusOrux", + "uid": "13624541", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-14T19:35:23Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109681051, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "imagery": "PNOA-Spain-TMS", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.5630858, + 38.5227377 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Dieter Dewitte", + "uid": "10825393", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #boomgaarden", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-14T19:17:55Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109680715, + "host": "mapcomplete.osm.be", + "theme": "boomgaarden", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4143206, + 50.9979201 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "afgb1977", + "uid": "10218404", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-14T18:22:25Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109679404, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "imagery": "Mapbox", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.0363926, + 39.8640242 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "GamingFAIL", + "uid": "13918186", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-14T14:41:55Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109672940, + "host": "www.waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.2288932, + 52.7606098 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "DasDaniel419", + "uid": "13924905", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-14T13:36:08Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109670676, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.501007, + 52.0465533 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-14T13:35:09Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109670624, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "imagery": "CartoDB.Voyager", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.0998557, + 50.5541406 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Michael 3", + "uid": "13922389", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-14T12:35:07Z", + "reviewed_features": [], + "create": 27, + "modify": 21, + "delete": 0, + "area": 0.0000687522724000141, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109668785, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.2440419, + 52.78187165 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Feuerwehr Mellensee", + "uid": "13932183", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-14T11:27:44Z", + "reviewed_features": [], + "create": 5, + "modify": 2, + "delete": 0, + "area": 0.000112822810000002, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109666645, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.4181288, + 52.1891303 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "DasDaniel419", + "uid": "13924905", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-14T11:23:27Z", + "reviewed_features": [], + "create": 5, + "modify": 5, + "delete": 0, + "area": 0.0000432317050099869, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109666479, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.50590965, + 52.04679955 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ygramul", + "uid": "1230818", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #personal", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-14T06:08:51Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.0000298462507499718, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109656492, + "host": "mapcomplete.osm.be", + "theme": "personal", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.99805385, + 48.49949345 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "bigblock14er", + "uid": "10081017", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-13T19:53:46Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109647022, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.5365349, + 52.291653 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "dekoe65", + "uid": "13921921", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-13T16:45:21Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109640119, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 12.8553236, + 52.1696745 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "dekoe65", + "uid": "13921921", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-13T14:36:17Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109634600, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 12.8553236, + 52.1696745 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "brust84", + "uid": "1225756", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-13T11:20:16Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109624444, + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "osm", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.7251042, + 51.0269592 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "smedo", + "uid": "9002106", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-13T10:43:27Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109621983, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.3305722, + 50.9304482 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-13T09:14:55Z", + "reviewed_features": [], + "create": 3, + "modify": 0, + "delete": 0, + "area": 0.000347151844479278, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109616631, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/signals", + "imagery": "EsriWorldImageryClarity", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.717462, + -34.655660499999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "GamingFAIL", + "uid": "13918186", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-13T04:27:23Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109602112, + "host": "www.waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.3782117, + 52.643748 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "CulingMan13", + "uid": "6641970", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-13T03:35:38Z", + "reviewed_features": [], + "create": 0, + "modify": 21, + "delete": 0, + "area": 0.000600267737279937, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109600592, + "host": "mapcomplete.osm.be", + "theme": "shops", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -74.22499619999999, + 39.9702002 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "dekoe65", + "uid": "13921921", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-12T17:51:35Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109587520, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 12.8543204, + 52.1685311 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "ClarissaWAM", + "uid": "13745921", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-12T17:17:45Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109586305, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.2974781, + 49.5207528 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Andrew Orr", + "uid": "13915763", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-12T13:44:24Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109576148, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -97.1550427, + 49.7674708 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Dieter Dewitte", + "uid": "10825393", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #boomgaarden", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-12T13:12:31Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109574626, + "host": "mapcomplete.osm.be", + "theme": "boomgaarden", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1750542, + 50.8107011 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/railway", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-12T12:43:20Z", + "reviewed_features": [], + "create": 4, + "modify": 15, + "delete": 0, + "area": 0.00237062947979052, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109573146, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/railway", + "imagery": "EsriWorldImageryClarity", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.45181125, + -34.621799949999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-12T12:02:16Z", + "reviewed_features": [], + "create": 7, + "modify": 0, + "delete": 0, + "area": 0.0167216463046007, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109570905, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/signals", + "imagery": "EsriWorldImageryClarity", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.57463165, + -34.638976400000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Robin van der Linde", + "uid": "5093765", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-12T10:32:18Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109565139, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.5020497, + 53.055716 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "GamingFAIL", + "uid": "13918186", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-12T07:49:40Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109555175, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.3741941, + 52.6357059 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "matissevdberg", + "uid": "12928471", + "editor": "MapComplete 0.9.0-rc3", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-12T07:07:43Z", + "reviewed_features": [], + "create": 4, + "modify": 12, + "delete": 0, + "area": 1.63450480003879e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109552872, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "surveillance", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.3926121, + 50.926136299999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-8807930756", + "osm_id": 8807930756, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8999512100", + "osm_id": 8999512100, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807960765", + "osm_id": 8807960765, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807930755", + "osm_id": 8807930755, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807960741", + "osm_id": 8807960741, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8999500816", + "osm_id": 8999500816, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807960747", + "osm_id": 8807960747, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807960751", + "osm_id": 8807960751, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8999496408", + "osm_id": 8999496408, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807960752", + "osm_id": 8807960752, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807930737", + "osm_id": 8807930737, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807930735", + "osm_id": 8807930735, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "Jose Luis Infante", + "uid": "126203", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete1.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-11T19:39:47Z", + "reviewed_features": [], + "create": 6, + "modify": 12, + "delete": 0, + "area": 5.98835399997202e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109534553, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "imagery": "HDM_HOT", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.24321665, + 41.4402457 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-8807930776", + "osm_id": 8807930776, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807930773", + "osm_id": 8807930773, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807930788", + "osm_id": 8807930788, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807930784", + "osm_id": 8807930784, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807930779", + "osm_id": 8807930779, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807930772", + "osm_id": 8807930772, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807930767", + "osm_id": 8807930767, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8811431712", + "osm_id": 8811431712, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807930766", + "osm_id": 8807930766, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807930749", + "osm_id": 8807930749, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807930771", + "osm_id": 8807930771, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807930787", + "osm_id": 8807930787, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807930759", + "osm_id": 8807930759, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807930743", + "osm_id": 8807930743, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807930754", + "osm_id": 8807930754, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8807930747", + "osm_id": 8807930747, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "Jose Luis Infante", + "uid": "126203", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete1.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-11T19:14:16Z", + "reviewed_features": [], + "create": 2, + "modify": 23, + "delete": 0, + "area": 0.00000130594784000067, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109533772, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "imagery": "HDM_HOT", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2420277, + 41.440289500000006 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Andrew Orr", + "uid": "13915763", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-11T18:30:27Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109532162, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "EsriWorldImagery", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -97.1550427, + 49.7674708 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Huglu96", + "uid": "722577", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #sport_pitches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-11T09:12:52Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 3.6320713000369e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109505004, + "host": "mapcomplete.osm.be", + "theme": "sport_pitches", + "imagery": "osm", + "language": "fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.406043749999998, + 52.49700545 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-11T07:14:13Z", + "reviewed_features": [], + "create": 1, + "modify": 6, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109499010, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.235782, + 50.7350492 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ygramul", + "uid": "1230818", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-10T20:30:36Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109483365, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.998016, + 48.501502 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-10T19:02:58Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109480331, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.0526434, + 51.1962641 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "tykayn", + "uid": "2962129", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-10T14:44:22Z", + "reviewed_features": [], + "create": 2, + "modify": 0, + "delete": 0, + "area": 0.0000904410737999792, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109469599, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "imagery": "osm", + "language": "fr", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.0840187, + 48.63581775 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Aduchi", + "uid": "83740", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-10T14:15:57Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109468259, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "ru", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 84.9651188, + 56.4974077 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #climbing", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-10T12:46:12Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109464033, + "host": "mapcomplete.osm.be", + "theme": "climbing", + "imagery": "osm", + "language": "en", + "theme-creator": "Christian Neumann " + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.7458764, + 44.2187273 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Fietsersbond Leuven", + "uid": "12338983", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #fietsstraten", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-10T10:41:17Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.0000963410587199943, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109456292, + "host": "mapcomplete.osm.be", + "theme": "fietsstraten", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.72486675, + 50.874081 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Fietsersbond Leuven", + "uid": "12338983", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #fietsstraten", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-10T10:33:30Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.00000455601239999461, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109455777, + "host": "mapcomplete.osm.be", + "theme": "fietsstraten", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.7267586, + 50.883813450000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Fietsersbond Leuven", + "uid": "12338983", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #fietsstraten", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-10T10:30:32Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.00000257220719998645, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109455601, + "host": "mapcomplete.osm.be", + "theme": "fietsstraten", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.7267586, + 50.8835294 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Claudia De Pus", + "uid": "10236139", + "editor": "MapComplete 0.9.0-rc0", + "comment": "Adding data with #MapComplete for theme #cycle_infra", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-10T09:58:43Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 0.000013182591899973, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109453573, + "host": "pietervdvn.github.io", + "path": "mc/project/cycle-infra/", + "theme": "cycle_infra", + "imagery": "CartoDB.Voyager", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7087246, + 51.07779055 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-10T09:17:10Z", + "reviewed_features": [], + "create": 1, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109451043, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3169403, + 50.8352832 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "jfk52917", + "uid": "9559240", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-10T06:52:29Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.00185071043300015, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109443038, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -77.10238305, + 38.8918637 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "matissevdberg", + "uid": "12928471", + "editor": "MapComplete 0.9.0-rc3", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-10T06:35:16Z", + "reviewed_features": [], + "create": 4, + "modify": 14, + "delete": 0, + "area": 4.33762769999516e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109442107, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "surveillance", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.39231705, + 50.925659550000006 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Aduchi", + "uid": "83740", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-09T15:05:47Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109414938, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 84.9845127, + 56.4635192 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.8.5-rc2", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-09T14:43:15Z", + "reviewed_features": [], + "create": 2, + "modify": 8, + "delete": 0, + "area": 3.13356999990178e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109413746, + "host": "pietervdvn.github.io", + "path": "mc/feature/road-splitting/", + "theme": "cyclofix", + "imagery": "AGIV10cm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.23323525, + 50.73766165 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Aduchi", + "uid": "83740", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-09T13:01:31Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109408644, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "ru", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 84.9845127, + 56.4635192 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/railway", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-09T11:55:03Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 2.8488700000477e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109404059, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/railway", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.79305835, + -34.64959145 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-09T11:30:44Z", + "reviewed_features": [], + "create": 4, + "modify": 7, + "delete": 0, + "area": 4.73700499994706e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109402241, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/signals", + "imagery": "EsriWorldImageryClarity", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.79235865, + -34.64979805 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Robin van der Linde", + "uid": "5093765", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-09T11:01:18Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109399976, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.4425507, + 52.5434797 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "nevw", + "uid": "1293194", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-09T10:11:28Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109396091, + "host": "mapcomplete.osm.be", + "theme": "shops", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 153.0415517, + -27.2316365 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Galilej25", + "uid": "13892877", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-09T09:45:06Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109393990, + "host": "mapcomplete.osm.be", + "theme": "shops", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 20.4569453, + 44.8209414 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Galilej25", + "uid": "13892877", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-09T09:38:02Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109393464, + "host": "mapcomplete.osm.be", + "theme": "shops", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 20.4569453, + 44.8209414 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Galilej25", + "uid": "13892877", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-09T07:52:03Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109385823, + "host": "mapcomplete.osm.be", + "theme": "shops", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 20.4569453, + 44.8209414 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ygramul", + "uid": "1230818", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-09T06:13:51Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109379519, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.9955803, + 48.4988714 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "H4N5-antw", + "uid": "10846743", + "editor": "MapComplete 0.9.0-rc3", + "comment": "Adding data with #MapComplete for theme #cycle_infra", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-08T21:38:59Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109364340, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "cycle_infra", + "imagery": "CartoDB.Voyager", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.427251, + 51.184372 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "MarshMello___", + "uid": "13844594", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #campersite", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-08T19:49:56Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000336883960000871, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109360825, + "host": "mapcomplete.osm.be", + "theme": "campersite", + "imagery": "osm", + "language": "en", + "theme-creator": "joost schouppe" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.2857771, + 50.8838825 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-08T18:01:35Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109357280, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.152942, + 50.7576221 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Jez Nicholson", + "uid": "7329", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-08T16:52:02Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109354762, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.1384507, + 50.8423129 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "alexander_mart", + "uid": "458554", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-08T15:32:46Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109351604, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "ru", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 84.9651188, + 56.4974077 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "alexander_mart", + "uid": "458554", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-08T14:21:01Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109348467, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 84.9507832, + 56.4744741 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/railway", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-08T12:54:47Z", + "reviewed_features": [], + "create": 2, + "modify": 17, + "delete": 0, + "area": 0.00242863647180036, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109344961, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/railway", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.4552846, + -34.62228265 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-08T12:16:25Z", + "reviewed_features": [], + "create": 26, + "modify": 10, + "delete": 0, + "area": 0.00668714483647921, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109343473, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/signals", + "imagery": "EsriWorldImageryClarity", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.62089975, + -34.651606 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "koilebeit", + "uid": "10355146", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #sport_pitches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-08T12:14:11Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.0000261335879999877, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109343368, + "host": "mapcomplete.osm.be", + "theme": "sport_pitches", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.59338395, + 47.5711159 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Robin van der Linde", + "uid": "5093765", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-08T10:56:31Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109340605, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.3379653, + 52.5069243 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "matissevdberg", + "uid": "12928471", + "editor": "MapComplete 0.9.0-rc3", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-08T07:50:14Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109334273, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "surveillance", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.3482148, + 50.9353292 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.9.0-rc3", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-08T05:13:33Z", + "reviewed_features": [], + "create": 0, + "modify": 6, + "delete": 0, + "area": 6.50908499972019e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109331331, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "trees", + "imagery": "Mapbox", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.75435375, + -33.49038795 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "H4N5-antw", + "uid": "10846743", + "editor": "MapComplete 0.9.0-rc3", + "comment": "Adding data with #MapComplete for theme #cycle_infra", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-07T21:41:56Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 7.62170280003644e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109326660, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "cycle_infra", + "imagery": "CartoDB.Voyager", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.42421605, + 51.1826637 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-07T19:20:32Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109323074, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.4202396, + 51.2096933 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.9.0-rc1", + "comment": "Adding data with #MapComplete for theme #cycle_infra", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-07T19:14:53Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 9.96826320000582e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109322899, + "host": "127.0.0.1:1234", + "theme": "cycle_infra", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2172126, + 51.21005285 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.9.0-rc1", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-07T19:04:12Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109322556, + "host": "127.0.0.1:1234", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1536965, + 51.1020483 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-07T12:59:51Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109309764, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "AGIV", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.152942, + 50.7576221 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/railway", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-07T12:42:15Z", + "reviewed_features": [], + "create": 0, + "modify": 6, + "delete": 0, + "area": 0.00018761832983988, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109309188, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/railway", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.47449585, + -34.6303257 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/railway", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-07T12:40:29Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.00000484486250002043, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109309143, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/railway", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.489742899999996, + -34.63451225 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-07T11:59:02Z", + "reviewed_features": [], + "create": 14, + "modify": 6, + "delete": 0, + "area": 0.0180006366740815, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109307647, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/signals", + "imagery": "EsriWorldImageryClarity", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.57448815, + -34.6367232 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "H4N5-antw", + "uid": "10846743", + "editor": "MapComplete 0.9.0-rc0", + "comment": "Adding data with #MapComplete for theme #cycle_infra", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-06T20:58:39Z", + "reviewed_features": [], + "create": 0, + "modify": 30, + "delete": 0, + "area": 0.0000570039859199864, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109284325, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "cycle_infra", + "imagery": "CartoDB.Voyager", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.41870605, + 51.1910002 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "sugarbotond", + "uid": "10225780", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-06T20:44:14Z", + "reviewed_features": [], + "create": 0, + "modify": 10, + "delete": 0, + "area": 0.000276418800800076, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109283794, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "imagery": "osm", + "language": "en", + "theme-creator": "Erwin Olario" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 18.957001650000002, + 47.550178200000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "jval78", + "uid": "13885678", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-06T14:20:50Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109265918, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "language": "fr", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.9757313, + 48.9797998 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Nuytinck", + "uid": "3719237", + "editor": "MapComplete 0.9.0-rc0", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-06T12:40:44Z", + "reviewed_features": [], + "create": 10, + "modify": 15, + "delete": 0, + "area": 1.4760592113988, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109260914, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "bookcases", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3318050999999995, + 51.101305800000006 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "H4N5-antw", + "uid": "10846743", + "editor": "MapComplete 0.9.0-rc0", + "comment": "Adding data with #MapComplete for theme #cycle_infra", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-06T09:33:51Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.0000018136364399913, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109248444, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "cycle_infra", + "imagery": "CartoDB.Voyager", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3910317, + 51.17238265 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Robin van der Linde", + "uid": "5093765", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-06T08:50:14Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109245495, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.8927514, + 53.2878815 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "H4N5-antw", + "uid": "10846743", + "editor": "MapComplete 0.9.0-rc0", + "comment": "Adding data with #MapComplete for theme #cycle_infra", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-06T07:43:10Z", + "reviewed_features": [], + "create": 0, + "modify": 16, + "delete": 0, + "area": 0.00000915511723999393, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109241800, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "cycle_infra", + "imagery": "CartoDB.Voyager", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4031345, + 51.1895697 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "H4N5-antw", + "uid": "10846743", + "editor": "MapComplete 0.9.0-rc0", + "comment": "Adding data with #MapComplete for theme #cycle_infra", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-05T22:15:20Z", + "reviewed_features": [], + "create": 0, + "modify": 10, + "delete": 0, + "area": 0.0000172919504700104, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109224067, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "cycle_infra", + "imagery": "CartoDB.Voyager", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.410331449999999, + 51.182998749999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "H4N5-antw", + "uid": "10846743", + "editor": "MapComplete 0.9.0-rc0", + "comment": "Adding data with #MapComplete for theme #cycle_infra", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-05T20:14:12Z", + "reviewed_features": [], + "create": 0, + "modify": 38, + "delete": 0, + "area": 0.000100272731999986, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109220346, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "cycle_infra", + "imagery": "CartoDB.Voyager", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4145646, + 51.188351600000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "raspbeguy", + "uid": "3398417", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-05T18:20:21Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.000170385107940038, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109216339, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "language": "fr", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.86494685, + 45.236673100000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Brec10", + "uid": "13615286", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-05T18:16:32Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109216183, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.1546506, + 44.9050895 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Brec10", + "uid": "13615286", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-05T15:38:15Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109209899, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.1546506, + 44.9050895 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-05T13:24:09Z", + "reviewed_features": [], + "create": 2, + "modify": 4, + "delete": 0, + "area": 0.00956738154960018, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109204092, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.2487712, + 51.2018824 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/railway", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-05T12:18:25Z", + "reviewed_features": [], + "create": 2, + "modify": 12, + "delete": 0, + "area": 0.000923337939079886, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109200627, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/railway", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.43862335, + -34.6177728 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "H4N5-antw", + "uid": "10846743", + "editor": "MapComplete 0.9.0-rc0", + "comment": "Adding data with #MapComplete for theme #cycle_infra", + "comments_count": 7, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-05T09:38:15Z", + "reviewed_features": [], + "create": 0, + "modify": 25, + "delete": 0, + "area": 0.000163831693410007, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109190875, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "cycle_infra", + "imagery": "CartoDB.Voyager", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.41618195, + 51.19265605 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Brec10", + "uid": "13615286", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-05T07:13:05Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109182555, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.1546506, + 44.9050895 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "H4N5-antw", + "uid": "10846743", + "editor": "MapComplete 0.9.0-rc0", + "comment": "Adding data with #MapComplete for theme #cycle_infra", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-04T21:41:54Z", + "reviewed_features": [], + "create": 0, + "modify": 10, + "delete": 0, + "area": 0.000243885379429972, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109165544, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "cycle_infra", + "imagery": "CartoDB.Voyager", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.41369235, + 51.19081715 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Brec10", + "uid": "13615286", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-04T20:36:10Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109163865, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.1546506, + 44.9050895 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Brec10", + "uid": "13615286", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #personal", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-04T19:58:06Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109162810, + "host": "mapcomplete.osm.be", + "theme": "personal", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2350458, + 43.6722582 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Brec10", + "uid": "13615286", + "editor": "MapComplete 0.9.0-rc0", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-04T18:37:21Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109160449, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "drinking_water", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.8137511, + 45.342389 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Robin van der Linde", + "uid": "5093765", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-04T15:49:01Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109153910, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.548554, + 53.0014414 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.8.5-rc2", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-04T13:18:53Z", + "reviewed_features": [], + "create": 2, + "modify": 3, + "delete": 0, + "area": 2.67104799984962e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109147562, + "host": "pietervdvn.github.io", + "path": "mc/feature/road-splitting/", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.66217695, + 51.0730144 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ivan Sveshnikov", + "uid": "7627423", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-04T13:10:29Z", + "reviewed_features": [], + "create": 2, + "modify": 1, + "delete": 0, + "area": 0.00000142800839999779, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109147248, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 27.595936950000002, + 53.9275446 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "sebkur", + "uid": "22917", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-04T11:55:25Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109143500, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 14.6340836, + 51.7419502 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.8.5-rc2", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-04T11:27:16Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109142066, + "host": "pietervdvn.github.io", + "path": "mc/feature/road-splitting/", + "theme": "aed", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.6822103, + 51.1160817 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.8.5-rc2", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-04T11:23:46Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 2.65091200000523e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109141902, + "host": "pietervdvn.github.io", + "path": "mc/feature/road-splitting/", + "theme": "benches", + "imagery": "osm", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.6628005000000003, + 51.1173613 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Michel Durighello", + "uid": "373549", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-04T09:45:35Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109136266, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "fr", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.8540178, + 50.4451494 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-8812896366", + "osm_id": 8812896366, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812896367", + "osm_id": 8812896367, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812896370", + "osm_id": 8812896370, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812896369", + "osm_id": 8812896369, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812896368", + "osm_id": 8812896368, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "Jose Luis Infante", + "uid": "126203", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete1.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-04T09:31:10Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 1.95089400002228e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109135509, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "imagery": "HDM_HOT", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2381507000000003, + 41.42974725 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "sebkur", + "uid": "22917", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-04T06:11:32Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109125644, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 14.6296288, + 51.743342 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/railway", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-03T23:12:17Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109116613, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/railway", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.4452003, + -34.6199983 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-03T23:04:35Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109116513, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/signals", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.409932, + -34.6087404 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "WinstonSmith", + "uid": "36030", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-03T22:03:35Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 1.33671999999937e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109115418, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.3159387, + 44.4888986 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "WinstonSmith", + "uid": "36030", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-03T19:19:26Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.0484473125600096, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109110460, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.264794550000001, + 44.13458775 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-8812920905", + "osm_id": 8812920905, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812920906", + "osm_id": 8812920906, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812920904", + "osm_id": 8812920904, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812956585", + "osm_id": 8812956585, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812920916", + "osm_id": 8812920916, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812920907", + "osm_id": 8812920907, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812956541", + "osm_id": 8812956541, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812956540", + "osm_id": 8812956540, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812956542", + "osm_id": 8812956542, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812956531", + "osm_id": 8812956531, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812956543", + "osm_id": 8812956543, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812956537", + "osm_id": 8812956537, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812956529", + "osm_id": 8812956529, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812956544", + "osm_id": 8812956544, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812956524", + "osm_id": 8812956524, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812956530", + "osm_id": 8812956530, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812956526", + "osm_id": 8812956526, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812956522", + "osm_id": 8812956522, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812956528", + "osm_id": 8812956528, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812956539", + "osm_id": 8812956539, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812956538", + "osm_id": 8812956538, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812956532", + "osm_id": 8812956532, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812956525", + "osm_id": 8812956525, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812956520", + "osm_id": 8812956520, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812920895", + "osm_id": 8812920895, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812956523", + "osm_id": 8812956523, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812920897", + "osm_id": 8812920897, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812896327", + "osm_id": 8812896327, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812920898", + "osm_id": 8812920898, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812896325", + "osm_id": 8812896325, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812896326", + "osm_id": 8812896326, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812956545", + "osm_id": 8812956545, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812896329", + "osm_id": 8812896329, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812920860", + "osm_id": 8812920860, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812896342", + "osm_id": 8812896342, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812956519", + "osm_id": 8812956519, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8864395419", + "osm_id": 8864395419, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812956549", + "osm_id": 8812956549, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812956550", + "osm_id": 8812956550, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812920889", + "osm_id": 8812920889, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812896328", + "osm_id": 8812896328, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812956556", + "osm_id": 8812956556, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812956555", + "osm_id": 8812956555, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812956553", + "osm_id": 8812956553, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812956536", + "osm_id": 8812956536, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812896341", + "osm_id": 8812896341, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812956535", + "osm_id": 8812956535, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812896340", + "osm_id": 8812896340, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812896349", + "osm_id": 8812896349, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812896324", + "osm_id": 8812896324, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812896363", + "osm_id": 8812896363, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812956547", + "osm_id": 8812956547, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812896361", + "osm_id": 8812896361, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812896364", + "osm_id": 8812896364, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812896362", + "osm_id": 8812896362, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812956548", + "osm_id": 8812956548, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812896347", + "osm_id": 8812896347, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812896348", + "osm_id": 8812896348, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812896339", + "osm_id": 8812896339, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812956552", + "osm_id": 8812956552, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8978040251", + "osm_id": 8978040251, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812896365", + "osm_id": 8812896365, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812896338", + "osm_id": 8812896338, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8812896343", + "osm_id": 8812896343, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "Jose Luis Infante", + "uid": "126203", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete1.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-03T18:51:45Z", + "reviewed_features": [], + "create": 3, + "modify": 81, + "delete": 0, + "area": 0.0000454584425400212, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109109528, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "imagery": "HDM_HOT", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2362010000000003, + 41.43395125 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/railway", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-03T18:48:08Z", + "reviewed_features": [], + "create": 0, + "modify": 17, + "delete": 0, + "area": 0.00177764972680016, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109109424, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/railway", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.4467777, + -34.6209872 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/railway", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-03T18:48:03Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.00000648066959999511, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109109420, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/railway", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.4860132, + -34.6337733 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/railway", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-03T18:46:23Z", + "reviewed_features": [], + "create": 0, + "modify": 7, + "delete": 0, + "area": 0.00000932289214997049, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109109376, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/railway", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.49277625, + -34.63494475 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Frans_Napaters", + "uid": "3574538", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-03T18:40:26Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 8.93505020001016e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109109209, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.87685825, + 51.085055 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/railway", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-03T13:35:14Z", + "reviewed_features": [], + "create": 0, + "modify": 32, + "delete": 0, + "area": 0.00233322945335996, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109096769, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/railway", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.457001500000004, + -34.6223351 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Claudia De Pus", + "uid": "10236139", + "editor": "MapComplete 0.9.0-rc0", + "comment": "Adding data with #MapComplete for theme #cycle_infra", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-03T12:10:31Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.00000804879249999742, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109092220, + "host": "pietervdvn.github.io", + "path": "mc/project/cycle-infra/", + "theme": "cycle_infra", + "imagery": "CartoDB.Voyager", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7105365, + 51.07565785 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "OSM_paurafi", + "uid": "10180559", + "editor": "MapComplete 0.9.0-rc0", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-03T09:51:21Z", + "reviewed_features": [], + "create": 5, + "modify": 7, + "delete": 0, + "area": 2.78437199992939e-8, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109082473, + "host": "pietervdvn.github.io", + "path": "mc/project/cycle-infra/", + "theme": "trees", + "imagery": "AGIV", + "language": "nl", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.6050752500000005, + 51.3875527 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Claudia De Pus", + "uid": "10236139", + "editor": "MapComplete 0.9.0-rc0", + "comment": "Adding data with #MapComplete for theme #cycle_infra", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-03T09:38:27Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109081577, + "host": "pietervdvn.github.io", + "path": "mc/project/cycle-infra/", + "theme": "cycle_infra", + "imagery": "CartoDB.Voyager", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7087206, + 51.0746516 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "OSM_paurafi", + "uid": "10180559", + "editor": "MapComplete 0.9.0-rc0", + "comment": "Adding data with #MapComplete for theme #cycle_infra", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-03T09:34:36Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.00000163784574999551, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109081330, + "host": "pietervdvn.github.io", + "path": "mc/project/cycle-infra/", + "theme": "cycle_infra", + "imagery": "AGIV10cm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.56855905, + 51.301993749999994 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "FennecusZerda", + "uid": "665677", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-03T06:14:41Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 3.30842400008148e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109067333, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 10.160514800000001, + 59.74390755 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "student_ua", + "uid": "12104017", + "editor": "MapComplete 0.9.0-rc0", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-03T02:23:24Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.907455416257442, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109056486, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "toilets", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 30.7279276, + 49.7252917 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-02T23:08:57Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109054243, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "UrbISOrtho2019", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3900144, + 50.870384 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-02T23:04:28Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109054185, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3963069, + 50.8748135 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "FennecusZerda", + "uid": "665677", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-02T22:10:05Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 0.0068967351336607, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109053407, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 10.082823699999999, + 59.75259145 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "maggot27", + "uid": "118021", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-02T17:51:33Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109046140, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "de", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 12.1027225, + 49.6495494 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Brachyxanthia", + "uid": "10755639", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #sport_pitches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-02T16:58:20Z", + "reviewed_features": [], + "create": 0, + "modify": 31, + "delete": 0, + "area": 0.00427081942858997, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109044243, + "host": "mapcomplete.osm.be", + "theme": "sport_pitches", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.03530775, + 47.81089195 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ronx Ronquillo", + "uid": "401767", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-02T14:13:10Z", + "reviewed_features": [], + "create": 0, + "modify": 6, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109037200, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 121.0605868, + 14.5882173 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Robin van der Linde", + "uid": "5093765", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-02T11:12:57Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109026047, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.2957055, + 52.7059387 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Scottie0001", + "uid": "12732126", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-02T10:55:18Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109024703, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 152.9884387, + -27.2001138 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Robin van der Linde", + "uid": "5093765", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-02T09:33:59Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 0.000243781906130012, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109018389, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.56591235, + 53.00447805 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "chris38", + "uid": "368199", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #climbing", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-02T09:05:22Z", + "reviewed_features": [], + "create": 0, + "modify": 11, + "delete": 0, + "area": 0.0485123282192796, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 109016197, + "host": "mapcomplete.osm.be", + "theme": "climbing", + "imagery": "osm", + "language": "fr", + "theme-creator": "Christian Neumann " + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.67738615, + 45.448324799999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "alzyee", + "uid": "1219882", + "editor": "MapComplete 0.9.0-rc0", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-01T23:29:19Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.000338804304719887, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108990193, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "toilets", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -81.5233446, + 41.1100443 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-01T18:11:38Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108983488, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3796182, + 50.8694293 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Brachyxanthia", + "uid": "10755639", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #climbing", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-01T15:35:57Z", + "reviewed_features": [], + "create": 0, + "modify": 27, + "delete": 0, + "area": 0.0076157787665199, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108978595, + "host": "mapcomplete.osm.be", + "theme": "climbing", + "imagery": "osm", + "language": "de", + "theme-creator": "Christian Neumann " + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.0696051, + 47.77349665 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "PeeWee32", + "uid": "353766", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-01T12:48:28Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108972902, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.3879984, + 52.1348582 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Mondstern", + "uid": "7071866", + "editor": "MapComplete 0.9.0-rc0", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-01T11:35:11Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108970609, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "benches", + "imagery": "osm", + "language": "de", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.4724542, + 51.1629091 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Brandoberinspektor Erdmann", + "uid": "13364061", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-01T11:28:33Z", + "reviewed_features": [], + "create": 7, + "modify": 5, + "delete": 0, + "area": 0.0000860720709899176, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108970381, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.78791155, + 52.83726335 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Peda", + "uid": "13010", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-01T11:12:29Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 2.67031999997287e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108969867, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.6172764, + 48.6083445 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Peda", + "uid": "13010", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #sport_pitches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-01T11:07:25Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 1.18309500001618e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108969694, + "host": "mapcomplete.osm.be", + "theme": "sport_pitches", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.629159099999999, + 48.59670575 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jemily1", + "uid": "11155676", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #crossingtime", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-01T10:25:20Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.00000224461159996975, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108968481, + "host": "mapcomplete.osm.be", + "theme": "crossingtime", + "imagery": "osm", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.48985795, + 38.3767919 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.8.5-rc2", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-01T08:09:28Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108964821, + "host": "pietervdvn.github.io", + "path": "mc/feature/road-splitting/", + "theme": "drinking_water", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.6247168, + 43.8497082 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-08-01T05:15:47Z", + "reviewed_features": [], + "create": 0, + "modify": 6, + "delete": 0, + "area": 0.00309425166402045, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108962112, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.65829945, + -34.6448309 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "alexander_mart", + "uid": "458554", + "editor": "MapComplete 0.8.4", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-08-01T02:50:14Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0.000113183274879867, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 108961087, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 84.9546981, + 56.4691525 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Wim L", + "uid": "223681", + "editor": "MapComplete 0.9.14", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-30T19:22:35Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111932288, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -122.371634, + 47.6802721 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.9.14", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-30T16:39:08Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111926055, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.7239999, + 45.3812366 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "mapeadora", + "uid": "1437169", + "editor": "MapComplete 0.9.14", + "comment": "Adding data with #MapComplete for theme #ghostbikes", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-09-30T15:43:52Z", + "reviewed_features": [], + "create": 3, + "modify": 0, + "delete": 0, + "area": 0.0240644418553506, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111923846, + "host": "mapcomplete.osm.be", + "theme": "ghostbikes", + "imagery": "CartoDB.Positron", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -99.13678404999999, + 19.578663749999997 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "mapeadora", + "uid": "1437169", + "editor": "MapComplete 0.9.14", + "comment": "Adding data with #MapComplete for theme #hackerspaces", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-09-30T15:23:03Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111922919, + "host": "mapcomplete.osm.be", + "theme": "hackerspaces", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -99.1407799, + 19.4183425 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Крузенштерновцы", + "uid": "14183846", + "editor": "MapComplete 0.9.14", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-30T15:06:03Z", + "reviewed_features": [], + "create": 1, + "modify": 4, + "delete": 0, + "area": 9.9570499995393e-9, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111922240, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "ru", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 44.73733715, + 48.79949255 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Rienux", + "uid": "11911273", + "editor": "MapComplete 0.9.14", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-09-30T12:32:28Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111915607, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2797471, + 51.0601812 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Крузенштерновцы", + "uid": "14183846", + "editor": "MapComplete 0.9.14", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-30T12:30:27Z", + "reviewed_features": [], + "create": 2, + "modify": 9, + "delete": 0, + "area": 0.0000227305103599864, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111915525, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "ru", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 44.7508386, + 48.781368099999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Rienux", + "uid": "11911273", + "editor": "MapComplete 0.9.14", + "comment": "Adding data with #MapComplete for theme #parkings", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-09-30T12:27:01Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111915367, + "host": "mapcomplete.osm.be", + "theme": "parkings", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2786956, + 51.0602305 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Michael 3", + "uid": "13922389", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-30T12:18:16Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111914966, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.2362403, + 52.7961513 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Moisès", + "uid": "12884230", + "editor": "MapComplete 0.9.14", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-09-30T10:47:15Z", + "reviewed_features": [], + "create": 1, + "modify": 12, + "delete": 0, + "area": 0.0000306672251200178, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111910449, + "host": "mapcomplete.osm.be", + "theme": "shops", + "imagery": "osm", + "language": "ca", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2162053999999998, + 41.5381835 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.9.14", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-30T08:45:12Z", + "reviewed_features": [], + "create": 2, + "modify": 7, + "delete": 0, + "area": 0.0053645419570502, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111904781, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.69530125, + 45.57343765 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Крузенштерновцы", + "uid": "14183846", + "editor": "MapComplete 0.9.14", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-30T07:55:05Z", + "reviewed_features": [], + "create": 4, + "modify": 18, + "delete": 0, + "area": 0.0000300108561499864, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111902843, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "ru", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 44.750645750000004, + 48.78685265 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Крузенштерновцы", + "uid": "14183846", + "editor": "MapComplete 0.9.14", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-30T06:42:53Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 9.98399429998969e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111899797, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "ru", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 44.74606315, + 48.78382365 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.9.14", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-30T06:17:13Z", + "reviewed_features": [], + "create": 1, + "modify": 6, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111898754, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.7323385, + 45.6096481 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Крузенштерновцы", + "uid": "14183846", + "editor": "MapComplete 0.9.14", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-30T06:12:35Z", + "reviewed_features": [], + "create": 4, + "modify": 3, + "delete": 0, + "area": 0.00000988816490998769, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111898556, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "ru", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 44.74761135, + 48.78445725 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.10.0-alpha-4", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-29T19:49:34Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111884103, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "toerisme_vlaanderen", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.7323039, + 45.609657 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.10.0-alpha-4", + "comment": "Adding data with #MapComplete for theme #observation_towers", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-29T17:59:43Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.0361427173574415, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111879822, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "observation_towers", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3058445499999998, + 51.0178277 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Крузенштерновцы", + "uid": "14183846", + "editor": "MapComplete 0.9.14", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-09-29T17:32:50Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111878737, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "ru", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 44.7494316, + 48.7860225 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.10.0-alpha-4", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-29T16:57:33Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111877207, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "toerisme_vlaanderen", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.4503636, + 51.0929136 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.10.0-alpha-4", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-29T16:29:44Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.0000196593677399919, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111875924, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "food", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.4483777, + 51.08788645 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.9.14", + "comment": "Adding data with #MapComplete for theme #verkeerdeborden", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-09-29T15:37:40Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.0000119850265600227, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111873523, + "host": "mapcomplete.osm.be", + "theme": "verkeerdeborden", + "imagery": "Stamen.TonerLite", + "language": "nl", + "theme-creator": "Seppe Santens" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.46107525, + 51.0952097 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dintrans_g", + "uid": "237777", + "editor": "MapComplete 0.9.14", + "comment": "Adding data with #MapComplete for theme #ghostbikes", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-09-29T14:50:37Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111871547, + "host": "mapcomplete.osm.be", + "theme": "ghostbikes", + "imagery": "CartoDB.Positron", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.665468, + -33.4572197 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Joel Schwaber", + "uid": "14199687", + "editor": "MapComplete 0.9.14", + "comment": "Adding data with #MapComplete for theme #ghostbikes", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-09-29T00:57:00Z", + "reviewed_features": [], + "create": 3, + "modify": 6, + "delete": 0, + "area": 15365.8425037475, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111841662, + "host": "mapcomplete.osm.be", + "theme": "ghostbikes", + "imagery": "CartoDB.Positron", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 38.660928, + 6.0965507500000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.9.14", + "comment": "Adding data with #MapComplete for theme #ghostbikes", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-09-28T21:23:05Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111838187, + "host": "mapcomplete.osm.be", + "theme": "ghostbikes", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.5936089, + -33.5332277 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.9.14", + "comment": "Adding data with #MapComplete for theme #campersite", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-28T15:23:10Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111824465, + "host": "mapcomplete.osm.be", + "theme": "campersite", + "imagery": "osm", + "language": "en", + "theme-creator": "joost schouppe" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 14.6130686, + 45.8765353 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-6812152696", + "name": "Fietsbieb Brugge", + "osm_id": 6812152696, + "reasons": [ + 43 + ], + "version": 9, + "primary_tags": { + "amenity": "bicycle_library" + } + } + ], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.9.14", + "comment": "Adding data with #MapComplete for theme #bicyclelib", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-28T14:52:29Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111823129, + "host": "mapcomplete.osm.be", + "theme": "bicyclelib", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1977097, + 51.2005778 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.9.14", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-09-28T13:48:18Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 0.000154828272479988, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111820434, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2430664499999997, + 51.206751100000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.9.14", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-09-28T13:47:15Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 2.10246399994684e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111820388, + "host": "mapcomplete.osm.be", + "theme": "shops", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2321896, + 51.2045129 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Robin van der Linde", + "uid": "5093765", + "editor": "MapComplete 0.9.14", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-28T12:36:51Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111817437, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.5205093, + 53.2363705 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "mcliquid", + "uid": "1213571", + "editor": "MapComplete 0.9.14", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-28T08:49:20Z", + "reviewed_features": [], + "create": 0, + "modify": 25, + "delete": 0, + "area": 0.0370137745960002, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111806492, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.6676468, + 47.4080594 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Bbase", + "uid": "695813", + "editor": "MapComplete 0.9.14", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-09-28T08:25:23Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111805436, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.239645, + 51.223322 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ruben Van de Velde", + "uid": "2676725", + "editor": "MapComplete 0.10.0-alpha-3", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-09-28T07:27:32Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111802776, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "hailhydrant", + "imagery": "HDM_HOT", + "language": "en", + "theme-creator": "Erwin Olario" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7394553, + 51.0539251 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.9.14", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-09-28T02:09:41Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 5.95000000158164e-10, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111793926, + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "CyclOSM", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.60341855, + -33.423708399999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.9.14", + "comment": "Adding data with #MapComplete for theme #ghostbikes", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-09-27T18:50:12Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111783442, + "host": "mapcomplete.osm.be", + "theme": "ghostbikes", + "imagery": "CartoDB.Positron", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.79261, + -34.2373596 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.9.14", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-09-27T14:01:47Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111770813, + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "osm", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -71.366001, + -34.6404102 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Wiederholen", + "uid": "14189394", + "editor": "MapComplete 0.9.14", + "comment": "Adding data with #MapComplete for theme #ghostbikes", + "comments_count": 1, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-09-27T11:59:50Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111765464, + "host": "mapcomplete.osm.be", + "theme": "ghostbikes", + "imagery": "CartoDB.Positron", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -74.097054, + 40.6153451 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "landscapemapper", + "uid": "220206", + "editor": "MapComplete 0.9.14", + "comment": "Adding data with #MapComplete for theme #pingpong", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-09-27T10:52:44Z", + "reviewed_features": [], + "create": 2, + "modify": 0, + "delete": 0, + "area": 0.48762637252551, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111762075, + "host": "mapcomplete.osm.be", + "theme": "pingpong", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.30360815, + 46.90475015 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "PeeWee32", + "uid": "353766", + "editor": "MapComplete 0.9.14", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-27T10:14:10Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111760418, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "nl", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.3845609, + 52.1279133 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.9.14", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-27T10:13:57Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111760411, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "imagery": "CartoDB.Voyager", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.9531973, + 46.2731418 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.9.14", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-27T08:13:53Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111754902, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "imagery": "CartoDB.Voyager", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.9531973, + 46.2731418 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "brymche", + "uid": "491790", + "editor": "MapComplete 0.9.14", + "comment": "Adding data with #MapComplete for theme #ghostbikes", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-09-27T02:54:14Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111745566, + "host": "mapcomplete.osm.be", + "theme": "ghostbikes", + "imagery": "CartoDB.Positron", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -120.6753014, + 35.2439797 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "numist", + "uid": "7970679", + "editor": "MapComplete 0.9.14", + "comment": "Adding data with #MapComplete for theme #ghostbikes", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-09-27T02:08:12Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111745072, + "host": "mapcomplete.osm.be", + "theme": "ghostbikes", + "imagery": "CartoDB.Positron", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -122.2583896, + 37.8367212 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "OxfordEmma", + "uid": "14185662", + "editor": "MapComplete 0.9.14", + "comment": "Adding data with #MapComplete for theme #ghostbikes", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-09-26T22:26:23Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111742325, + "host": "mapcomplete.osm.be", + "theme": "ghostbikes", + "imagery": "CartoDB.Positron", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -78.6730476, + 35.779029 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Brec10", + "uid": "13615286", + "editor": "MapComplete 0.9.14", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-09-26T21:15:41Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111740952, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.6900597, + 44.3128481 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "bent42", + "uid": "14185362", + "editor": "MapComplete 0.9.14", + "comment": "Adding data with #MapComplete for theme #ghostbikes", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-09-26T20:42:31Z", + "reviewed_features": [], + "create": 2, + "modify": 4, + "delete": 0, + "area": 0.00510810563880336, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111740042, + "host": "mapcomplete.osm.be", + "theme": "ghostbikes", + "imagery": "CartoDB.Positron", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -105.084294, + 40.453581549999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.9.12", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-26T18:18:29Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111735178, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 14.1084606, + 46.3684662 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.9.12", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-26T16:46:52Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111731202, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 14.1096324, + 46.3667337 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Wright One", + "uid": "261189", + "editor": "MapComplete 0.9.12", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-26T13:52:43Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.00432793048654127, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111723291, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "imagery": "osm", + "language": "zh_Hant", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 114.11849459999999, + 22.36899025 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "TheAdventurer64", + "uid": "8466505", + "editor": "MapComplete 0.10.0-alpha-0", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-26T06:22:59Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 0.000065408900399966, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111708429, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "toilets", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -155.064008, + 19.69584475 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Koenraad Van Coppenolle", + "uid": "12352906", + "editor": "MapComplete 0.9.12", + "comment": "Adding data with #MapComplete for theme #cycle_infra", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-09-25T20:02:04Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.000554009143080062, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111700174, + "host": "mapcomplete.osm.be", + "theme": "cycle_infra", + "imagery": "CartoDB.Voyager", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.8301813, + 50.88715015 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "CjMalone", + "uid": "6816132", + "editor": "MapComplete 0.10.0-alpha-0", + "comment": "Adding data with #MapComplete for theme #uk_addresses", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-09-25T19:28:49Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 2.03360999992723e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111699476, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "uk_addresses", + "imagery": "osm", + "language": "en", + "theme-creator": "Pieter Vander Vennet, Rob Nickerson, Russ Garrett" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.1947999, + 50.63098505 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.10.0-alpha-0", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-25T14:26:05Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111690076, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "drinking_water", + "imagery": "CartoDB.Voyager", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.288795, + 51.3038705 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.9.12", + "comment": "Adding data with #MapComplete for theme #campersite", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-25T12:59:46Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111686997, + "host": "mapcomplete.osm.be", + "theme": "campersite", + "imagery": "osm", + "language": "en", + "theme-creator": "joost schouppe" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.6421499, + 46.3340024 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.9.12", + "comment": "Adding data with #MapComplete for theme #nature", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-25T12:40:32Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111686390, + "host": "mapcomplete.osm.be", + "theme": "nature", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.0795702, + 51.4584493 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "RobJN", + "uid": "411244", + "editor": "MapComplete 0.9.12", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-25T11:30:05Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111684215, + "host": "mapcomplete.osm.be", + "theme": "shops", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.5903299, + 52.2821555 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "RobJN", + "uid": "411244", + "editor": "MapComplete 0.9.12", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-25T11:19:26Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111683915, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.5890925, + 52.2812482 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ygramul", + "uid": "1230818", + "editor": "MapComplete 0.9.12", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-25T10:55:44Z", + "reviewed_features": [], + "create": 0, + "modify": 26, + "delete": 0, + "area": 4.86648400001139e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111683232, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.9907015, + 48.4982609 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ygramul", + "uid": "1230818", + "editor": "MapComplete 0.9.12", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-25T10:45:27Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 4.44562600002161e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111682968, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.9913257, + 48.49856345 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ygramul", + "uid": "1230818", + "editor": "MapComplete 0.9.12", + "comment": "Adding data with #MapComplete for theme #waste_basket", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-25T10:43:40Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 1.98347950001622e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111682920, + "host": "mapcomplete.osm.be", + "theme": "waste_basket", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.99118215, + 48.49843975 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "h05ch1", + "uid": "6835997", + "editor": "MapComplete 0.9.12", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-09-25T10:23:11Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111682191, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.9636555, + 50.3475965 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ygramul", + "uid": "1230818", + "editor": "MapComplete 0.9.12", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-25T10:16:48Z", + "reviewed_features": [], + "create": 0, + "modify": 11, + "delete": 0, + "area": 0.0000031717603499897, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111681971, + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "osm", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.99255035, + 48.498836749999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.9.12", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-09-24T21:35:26Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111667829, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.5897075, + 50.7949768 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.9.12", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-09-24T21:20:48Z", + "reviewed_features": [], + "create": 2, + "modify": 2, + "delete": 0, + "area": 0.00043128769431981, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111667475, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.5777395, + 50.803994599999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.9.12", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-09-24T18:27:08Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111661888, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.6696884, + 51.5499412 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "leofra31", + "uid": "8336126", + "editor": "MapComplete 0.9.12", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-24T18:20:54Z", + "reviewed_features": [], + "create": 1, + "modify": 4, + "delete": 0, + "area": 0.000011408041399994, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111661657, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "imagery": "HDM_HOT", + "language": "en", + "theme-creator": "Erwin Olario" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.31732235, + 43.588229 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Semako", + "uid": "4240243", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-09-24T18:12:57Z", + "reviewed_features": [], + "create": 0, + "modify": 28, + "delete": 0, + "area": 0.000473278357399985, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111661403, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.39957595, + 52.1619224 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.9.12", + "comment": "Adding data with #MapComplete for theme #verkeerdeborden", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-09-24T17:12:51Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.00000689595720000721, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111658787, + "host": "mapcomplete.osm.be", + "theme": "verkeerdeborden", + "imagery": "Stamen.TonerLite", + "language": "nl", + "theme-creator": "Seppe Santens" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.49047405, + 51.0951572 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.9.12", + "comment": "Adding data with #MapComplete for theme #campersite", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-24T15:30:43Z", + "reviewed_features": [], + "create": 0, + "modify": 7, + "delete": 0, + "area": 1.93361999970968e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111653531, + "host": "mapcomplete.osm.be", + "theme": "campersite", + "imagery": "osm", + "language": "en", + "theme-creator": "joost schouppe" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 12.41885495, + 46.561138299999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-9120402882", + "osm_id": 9120402882, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "amenity": "binoculars" + } + }, + { + "url": "node-9120416768", + "osm_id": 9120416768, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "amenity": "binoculars" + } + }, + { + "url": "node-9120402883", + "osm_id": 9120402883, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "amenity": "binoculars" + } + } + ], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.9.12", + "comment": "Adding data with #MapComplete for theme #personal", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-24T13:59:50Z", + "reviewed_features": [], + "create": 6, + "modify": 8, + "delete": 0, + "area": 0.0000179470749299955, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111649505, + "host": "mapcomplete.osm.be", + "theme": "personal", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.6658474500000002, + 51.54911385 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.9.12", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-24T12:55:31Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 0.000650884575509889, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111646756, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/signals", + "imagery": "EsriWorldImageryClarity", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.61053645, + -34.64744705 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.9.12", + "comment": "Adding data with #MapComplete for theme #verkeerdeborden", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-24T11:50:15Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111643984, + "host": "mapcomplete.osm.be", + "theme": "verkeerdeborden", + "imagery": "Stamen.TonerLite", + "language": "nl", + "theme-creator": "Seppe Santens" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.4901089, + 51.094868 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.9.12", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-24T11:38:20Z", + "reviewed_features": [], + "create": 1, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111643468, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "imagery": "CartoDB.Voyager", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.6138153, + 51.5031764 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.10.0-alpha-0", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-24T11:07:00Z", + "reviewed_features": [], + "create": 2, + "modify": 0, + "delete": 0, + "area": 1.19999999978036e-10, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111641876, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "drinking_water", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.610657, + 51.4991967 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "carodm", + "uid": "11564583", + "editor": "MapComplete 0.9.12", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-09-24T09:29:23Z", + "reviewed_features": [], + "create": 4, + "modify": 19, + "delete": 0, + "area": 0.00756435561130015, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111637283, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3632418, + 50.83772005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.9.12", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-24T07:56:44Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111633229, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 12.4189789, + 46.5611344 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Wright One", + "uid": "261189", + "editor": "MapComplete 0.9.12", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-09-24T06:40:51Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.00189969135276055, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111629953, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "imagery": "osm", + "language": "zh_Hant", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 114.1910599, + 22.307932100000002 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.9.12", + "comment": "Adding data with #MapComplete for theme #verkeerdeborden", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-23T19:47:10Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.0000114259334399982, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111616253, + "host": "mapcomplete.osm.be", + "theme": "verkeerdeborden", + "imagery": "Stamen.TonerLite", + "language": "nl", + "theme-creator": "Seppe Santens" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.4888558, + 51.0936721 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.10.0-alpha-0", + "comment": "Adding data with #MapComplete for theme #uk_addresses", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-23T19:44:58Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111616148, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "uk_addresses", + "imagery": "osm", + "language": "en", + "theme-creator": "Pieter Vander Vennet, Rob Nickerson, Russ Garrett" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.6024991, + 51.4638086 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.10.0-alpha-0", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-23T17:44:13Z", + "reviewed_features": [], + "create": 2, + "modify": 1, + "delete": 0, + "area": 0.00000141849799999494, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111610177, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "food", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.60364305, + 51.4641186 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Wright One", + "uid": "261189", + "editor": "MapComplete 0.10.0-alpha-0", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-09-23T15:37:52Z", + "reviewed_features": [], + "create": 0, + "modify": 8, + "delete": 0, + "area": 0.000162346352139977, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111602335, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "aed", + "imagery": "osm", + "language": "zh_Hant", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 114.18166635, + 22.2805317 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-9117338545", + "osm_id": 9117338545, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "amenity": "binoculars" + } + } + ], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.10.0-alpha-0", + "comment": "Adding data with #MapComplete for theme #personal", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-23T14:46:38Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111598470, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "personal", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3720879, + 51.3659288 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.10.0-alpha-0", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-23T13:30:01Z", + "reviewed_features": [], + "create": 2, + "modify": 0, + "delete": 0, + "area": 5.28228000011274e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111593064, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "shops", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.6025419999999997, + 51.46369665 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.9.12", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-23T13:17:23Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.00133982425584001, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111592346, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/signals", + "imagery": "osm", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.68451145, + -34.656905 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.9.12", + "comment": "Adding data with #MapComplete for theme #personal", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-23T12:34:57Z", + "reviewed_features": [], + "create": 4, + "modify": 7, + "delete": 0, + "area": 0.00360515847549995, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111590326, + "host": "mapcomplete.osm.be", + "theme": "personal", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.5761544, + 51.43289025 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Wright One", + "uid": "261189", + "editor": "MapComplete 0.10.0-alpha-0", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-09-23T11:17:47Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.00190809654048005, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111586791, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "aed", + "imagery": "osm", + "language": "zh_Hant", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 114.19077275, + 22.307541999999998 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.10.0-alpha-0", + "comment": "Adding data with #MapComplete for theme #nature", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-23T11:15:19Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111586701, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "nature", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3765176, + 51.3491502 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Robin van der Linde", + "uid": "5093765", + "editor": "MapComplete 0.9.12", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-23T08:08:36Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111578266, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.5321138, + 53.2403563 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Wright One", + "uid": "261189", + "editor": "MapComplete 0.10.0-alpha-0", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-09-23T02:43:34Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111567998, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "aed", + "imagery": "osm", + "language": "zh_Hant", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 114.1731428, + 22.2804844 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Wim L", + "uid": "223681", + "editor": "MapComplete 0.9.12", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-23T00:20:27Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.00000466655286997844, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111566313, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -122.37193415, + 47.68268485 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "sebkur", + "uid": "22917", + "editor": "MapComplete 0.8.3e", + "comment": "Adding data with #MapComplete for theme #cyclenodes", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-22T16:45:13Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111552463, + "host": "mapcomplete.mobanisto.de", + "theme": "cyclenodes", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 14.7164477, + 51.6949225 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Alexmol", + "uid": "347293", + "editor": "MapComplete 0.9.12", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-09-22T16:30:37Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 1.32495999991828e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111551829, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "imagery": "CartoDB.Voyager", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -7.847348200000001, + 37.023658499999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.9.12", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-22T13:38:10Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111544245, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/signals", + "imagery": "EsriWorldImageryClarity", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.5959485, + -34.6446457 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Robin van der Linde", + "uid": "5093765", + "editor": "MapComplete 0.9.12", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-22T11:39:45Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.000173651840619993, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111539451, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.56047135, + 53.2206259 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.9.12", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-09-22T09:38:55Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111533589, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2031691, + 51.2042501 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "tordans", + "uid": "11881", + "editor": "MapComplete 0.9.12", + "comment": "Adding data with #MapComplete for theme #cycle_infra", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-09-22T03:40:06Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.00000252929039998671, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111520288, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "cycle_infra", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.4231534, + 52.4804849 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.9.12", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-09-22T00:07:22Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111518050, + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "osm", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.688298, + -32.8254292 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Conrad Westermark", + "uid": "10290265", + "editor": "MapComplete 0.9.12", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-09-21T20:32:08Z", + "reviewed_features": [], + "create": 1, + "modify": 6, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111513975, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 24.9122179, + 60.1895 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "WinstonSmith", + "uid": "36030", + "editor": "MapComplete 0.9.12", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-21T20:09:27Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111513314, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.2562975, + 44.5029373 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Robin van der Linde", + "uid": "5093765", + "editor": "MapComplete 0.9.12", + "comment": "Adding data with #MapComplete for theme #cycle_infra", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-21T18:17:09Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 4.85225939999695e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111509175, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "cycle_infra", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.5665994, + 53.01434795 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Robin van der Linde", + "uid": "5093765", + "editor": "MapComplete 0.9.12", + "comment": "Adding data with #MapComplete for theme #cycle_infra", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-21T16:41:07Z", + "reviewed_features": [], + "create": 1, + "modify": 6, + "delete": 0, + "area": 0.00000575911374000025, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111505223, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "cycle_infra", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.5686684500000005, + 53.019527100000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Koen Rijnsent", + "uid": "4569696", + "editor": "MapComplete 0.9.12", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-21T12:34:02Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111494589, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.4072711, + 49.007261 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Koen Rijnsent", + "uid": "4569696", + "editor": "MapComplete 0.9.12", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-21T11:05:29Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111490211, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.4072711, + 49.007261 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ygramul", + "uid": "1230818", + "editor": "MapComplete 0.9.12", + "comment": "Adding data with #MapComplete for theme #personal", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-21T10:41:05Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 1.10268160001843e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111488940, + "host": "mapcomplete.osm.be", + "theme": "personal", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 12.1334147, + 54.0869876 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.9.12", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-21T00:26:38Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111470131, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/signals", + "imagery": "EsriWorldImageryClarity", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.7202242, + -34.6657032 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "TauvicR", + "uid": "9632584", + "editor": "MapComplete 0.9.12", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-20T19:00:13Z", + "reviewed_features": [], + "create": 3, + "modify": 41, + "delete": 0, + "area": 0.000680783375360008, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111463022, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.61122855, + 52.3022347 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "TauvicR", + "uid": "9632584", + "editor": "MapComplete 0.9.12", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-20T17:23:15Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 7.91999999880348e-11, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111459525, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "nl", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.6020383, + 52.2972284 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "TauvicR", + "uid": "9632584", + "editor": "MapComplete 0.9.12", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-20T15:01:56Z", + "reviewed_features": [], + "create": 0, + "modify": 11, + "delete": 0, + "area": 0.000434290526489971, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111453809, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.61146525, + 52.30648665 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "lebeno", + "uid": "1710114", + "editor": "MapComplete 0.9.12", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-20T14:47:47Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111453185, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7404478, + 51.0363849 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "TauvicR", + "uid": "9632584", + "editor": "MapComplete 0.9.12", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-20T13:21:18Z", + "reviewed_features": [], + "create": 0, + "modify": 6, + "delete": 0, + "area": 9.95430600020008e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111449737, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "nl", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.597492750000001, + 52.2989521 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.9.12", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-20T13:20:18Z", + "reviewed_features": [], + "create": 3, + "modify": 7, + "delete": 0, + "area": 0.00378095789904049, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111449699, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/signals", + "imagery": "osm", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.6667992, + -34.653112300000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "mcliquid", + "uid": "1213571", + "editor": "MapComplete 0.9.12", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-20T12:45:57Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.000409641941260097, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111448328, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "imagery": "CartoDB.Voyager", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.367052000000001, + 47.725641350000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "mcliquid", + "uid": "1213571", + "editor": "MapComplete 0.9.12", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-20T12:39:24Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111448079, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.3911404, + 47.720274 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "mcliquid", + "uid": "1213571", + "editor": "MapComplete 0.9.12", + "comment": "Adding data with #MapComplete for theme #cycle_infra", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-09-20T12:28:03Z", + "reviewed_features": [], + "create": 0, + "modify": 7, + "delete": 0, + "area": 0.000513644512800055, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111447671, + "host": "mapcomplete.osm.be", + "theme": "cycle_infra", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.3738234, + 47.723836250000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "mcliquid", + "uid": "1213571", + "editor": "MapComplete 0.9.12", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-09-20T12:15:05Z", + "reviewed_features": [], + "create": 0, + "modify": 19, + "delete": 0, + "area": 0.000460423505359863, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111447194, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.3696436, + 47.72581625 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "TauvicR", + "uid": "9632584", + "editor": "MapComplete 0.9.12", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-20T09:35:02Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111440442, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "nl", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.6275044, + 52.3032591 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "ilja_space", + "uid": "14124839", + "editor": "MapComplete 0.9.12", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-09-19T18:39:02Z", + "reviewed_features": [], + "create": 10, + "modify": 32, + "delete": 0, + "area": 0.0000174020732100224, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111420509, + "host": "mapcomplete.osm.be", + "theme": "shops", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.13762665, + 51.141586849999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.9.12", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-19T16:28:36Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111416193, + "host": "mapcomplete.osm.be", + "theme": "food", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.222659, + 51.209238 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Robin van der Linde", + "uid": "5093765", + "editor": "MapComplete 0.9.12", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-19T14:55:43Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111412568, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "charging_stations", + "imagery": "CartoDB.Voyager", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.5245171, + 52.9929022 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.9.12", + "comment": "Adding data with #MapComplete for theme #fritures", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-19T12:41:09Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111407284, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "fritures", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.222659, + 51.209238 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.9.12", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-19T11:34:16Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111404954, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "imagery": "CartoDB.Voyager", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.29927, + 50.6150846 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "lebeno", + "uid": "1710114", + "editor": "MapComplete 0.9.12", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-19T11:24:23Z", + "reviewed_features": [], + "create": 2, + "modify": 2, + "delete": 0, + "area": 1.91036409999298e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111404648, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.73192415, + 51.05730045 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "eiryelio", + "uid": "831652", + "editor": "MapComplete 0.9.12", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-09-19T11:22:16Z", + "reviewed_features": [], + "create": 2, + "modify": 8, + "delete": 0, + "area": 1.66294000004392e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111404567, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "imagery": "osm", + "language": "fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.0479108, + 50.679290449999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "yzan", + "uid": "14138680", + "editor": "MapComplete 0.9.12", + "comment": "Adding data with #MapComplete for theme #climbing", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-09-19T10:29:54Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111402618, + "host": "mapcomplete.osm.be", + "theme": "climbing", + "imagery": "osm", + "language": "en", + "theme-creator": "Christian Neumann " + }, + "geometry": { + "type": "Point", + "coordinates": [ + 14.4050047, + 50.0729858 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "lebeno", + "uid": "1710114", + "editor": "MapComplete 0.9.12", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-09-19T10:16:39Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 0.000393609143340034, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111402136, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "imagery": "CartoDB.Voyager", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7444672, + 51.03556035 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "ilja_space", + "uid": "14124839", + "editor": "MapComplete 0.9.12", + "comment": "Adding data with #MapComplete for theme #cafes_and_pubs", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-09-19T10:01:37Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111401625, + "host": "mapcomplete.osm.be", + "theme": "cafes_and_pubs", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2321506, + 51.2093851 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "ilja_space", + "uid": "14124839", + "editor": "MapComplete 0.9.12", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-09-19T09:44:07Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111400987, + "host": "mapcomplete.osm.be", + "theme": "shops", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1564577, + 51.1262115 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "ilja_space", + "uid": "14124839", + "editor": "MapComplete 0.9.12", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-09-19T09:21:17Z", + "reviewed_features": [], + "create": 0, + "modify": 7, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111400257, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.0930744, + 51.1192647 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Michael 3", + "uid": "13922389", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-19T08:43:06Z", + "reviewed_features": [], + "create": 21, + "modify": 20, + "delete": 0, + "area": 0.000035988403860022, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111398954, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.238752999999999, + 52.77832035 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "lebeno", + "uid": "1710114", + "editor": "MapComplete 0.9.12", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-09-18T22:20:19Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 2.21744199987408e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111390901, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "imagery": "CartoDB.Voyager", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.73583105, + 51.037486200000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.9.12", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-09-18T21:51:44Z", + "reviewed_features": [], + "create": 1, + "modify": 6, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111390442, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "UrbISOrtho2020", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2705435, + 50.8277022 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "ClarissaWAM", + "uid": "13745921", + "editor": "MapComplete 0.9.12", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-09-18T21:11:23Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111389713, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.5571696, + 49.6103276 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "AceMolloy", + "uid": "6111825", + "editor": "MapComplete 0.9.12", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-09-18T20:43:46Z", + "reviewed_features": [], + "create": 1, + "modify": 5, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111389141, + "host": "mapcomplete.osm.be", + "theme": "food", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -9.7881961, + 52.2435555 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.9.12", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-18T19:56:45Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111387954, + "host": "mapcomplete.osm.be", + "theme": "shops", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2027721, + 51.1990855 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.9.12", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-18T18:50:03Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111386359, + "host": "mapcomplete.osm.be", + "theme": "food", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2034172, + 51.202141 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.9.12", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-18T18:04:25Z", + "reviewed_features": [], + "create": 1, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111385266, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "imagery": "CartoDB.Voyager", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2618853, + 50.7487861 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.9.12", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-09-18T18:02:45Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111385238, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2677808, + 50.7512502 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Ninopiña10", + "uid": "11138282", + "editor": "MapComplete 0.9.12", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-18T16:55:33Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111383281, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.4273669, + 41.7288688 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.9.12", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-18T14:25:12Z", + "reviewed_features": [], + "create": 1, + "modify": 5, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111377814, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "imagery": "CartoDB.Voyager", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2677808, + 50.7512502 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "TauvicR", + "uid": "9632584", + "editor": "MapComplete 0.9.12", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-18T13:23:45Z", + "reviewed_features": [], + "create": 0, + "modify": 8, + "delete": 0, + "area": 0.00000102958774999892, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111375576, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.60086675, + 52.29308145 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "TauvicR", + "uid": "9632584", + "editor": "MapComplete 0.9.12", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-18T13:21:02Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111375481, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "nl", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.6023348, + 52.2921324 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.9.12", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-18T12:03:57Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111373023, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "shops", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2027721, + 51.1990855 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "TauvicR", + "uid": "9632584", + "editor": "MapComplete 0.9.12", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-18T10:51:23Z", + "reviewed_features": [], + "create": 0, + "modify": 13, + "delete": 0, + "area": 0.000248121610080094, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111370272, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "nl", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.6167549999999995, + 52.299521299999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Anne-Marie Hannuschke", + "uid": "14134184", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-09-18T10:37:49Z", + "reviewed_features": [], + "create": 4, + "modify": 3, + "delete": 0, + "area": 0.000576460037500006, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111369675, + "host": "www.waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.80807595, + 51.8142208 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "ilja_space", + "uid": "14124839", + "editor": "MapComplete 0.9.12", + "comment": "Adding data with #MapComplete for theme #cafes_and_pubs", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-09-18T10:03:37Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111368378, + "host": "mapcomplete.osm.be", + "theme": "cafes_and_pubs", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2354994, + 51.2104591 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "TauvicR", + "uid": "9632584", + "editor": "MapComplete 0.9.12", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-18T10:00:15Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 3.08731500004006e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111368251, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.6249436500000005, + 52.30480665 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.9.12", + "comment": "Adding data with #MapComplete for theme #cycle_infra", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-17T18:11:23Z", + "reviewed_features": [], + "create": 0, + "modify": 7, + "delete": 0, + "area": 0.0000201788004499942, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111348820, + "host": "mapcomplete.osm.be", + "theme": "cycle_infra", + "imagery": "CartoDB.Voyager", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.6075547500000003, + 50.855526850000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "TauvicR", + "uid": "9632584", + "editor": "MapComplete 0.9.12", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-17T16:59:40Z", + "reviewed_features": [], + "create": 0, + "modify": 25, + "delete": 0, + "area": 0.0000574193419800217, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111346420, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.6022241, + 52.293237250000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "TauvicR", + "uid": "9632584", + "editor": "MapComplete 0.9.12", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-17T15:55:52Z", + "reviewed_features": [], + "create": 1, + "modify": 20, + "delete": 0, + "area": 0.0000152532364100116, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111344234, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "nl", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.602426550000001, + 52.29154665 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.9.12", + "comment": "Adding data with #MapComplete for theme #sport_pitches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-17T15:23:19Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 1.42600079998995e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111342876, + "host": "mapcomplete.osm.be", + "theme": "sport_pitches", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.72173045, + 51.1518477 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.9.12", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-17T15:13:07Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111342467, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "imagery": "CartoDB.Voyager", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.721552, + 51.1500222 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "TauvicR", + "uid": "9632584", + "editor": "MapComplete 0.9.12", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-17T14:02:22Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 0.00000169926944000477, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111339749, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.6244081999999995, + 52.304216499999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "TauvicR", + "uid": "9632584", + "editor": "MapComplete 0.9.12", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-17T14:01:14Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 8.39859670001215e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111339700, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "nl", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.62427145, + 52.30416055 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.9.12", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-17T13:39:26Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111338740, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/signals", + "imagery": "EsriWorldImageryClarity", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.5981891, + -34.6451312 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.9.12", + "comment": "Adding data with #MapComplete for theme #artwork", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-17T11:49:06Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111333976, + "host": "mapcomplete.osm.be", + "theme": "artwork", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.7200416, + 51.1503089 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.9.12", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-17T11:47:48Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111333922, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.7200701, + 51.1503336 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "ClarissaWAM", + "uid": "13745921", + "editor": "MapComplete 0.9.12", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-09-17T11:34:55Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111333368, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.2451053, + 49.6538075 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Dieter Dewitte", + "uid": "10825393", + "editor": "MapComplete 0.9.12", + "comment": "Adding data with #MapComplete for theme #boomgaarden", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-17T08:33:10Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111325851, + "host": "mapcomplete.osm.be", + "theme": "boomgaarden", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1805232, + 50.8088384 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.9.12", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-17T07:15:57Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111322697, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "nl", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.9757455, + 50.5237343 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "s8evq", + "uid": "3710738", + "editor": "MapComplete 0.9.12", + "comment": "Adding data with #MapComplete for theme #verkeerdeborden", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-09-17T06:48:26Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111321516, + "host": "mapcomplete.osm.be", + "theme": "verkeerdeborden", + "imagery": "Stamen.TonerLite", + "language": "en", + "theme-creator": "Seppe Santens" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3898126, + 51.0926497 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "brust84", + "uid": "1225756", + "editor": "MapComplete 0.9.3", + "comment": "Adding data with #MapComplete for theme #inline_skating", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-17T06:30:38Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 2.6997960000077e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111320770, + "host": "timor.github.io", + "path": "mapcomplete/", + "theme": "inline_skating", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "timor" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.7047089, + 51.04757525 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "lebeno", + "uid": "1710114", + "editor": "MapComplete 0.9.12", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-17T06:03:32Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111319839, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.739756, + 51.0363729 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "TauvicR", + "uid": "9632584", + "editor": "MapComplete 0.9.12", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-17T02:31:12Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 6.45933600013677e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111314842, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.602050650000001, + 52.2911638 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "TauvicR", + "uid": "9632584", + "editor": "MapComplete 0.9.12", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-17T02:21:12Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 2.48910999975422e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111314701, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "benches", + "imagery": "osm", + "language": "nl", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.59990555, + 52.2954017 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.9.12", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-17T00:30:20Z", + "reviewed_features": [], + "create": 1, + "modify": 4, + "delete": 0, + "area": 1.86345600007665e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111313536, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/signals", + "imagery": "EsriWorldImageryClarity", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.7295339, + -34.66431995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.9.12", + "comment": "Adding data with #MapComplete for theme #parkings", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-16T14:27:44Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 9.2989299999879e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111294697, + "host": "mapcomplete.osm.be", + "theme": "parkings", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.09973265, + 50.493094 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.9.12", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-16T14:27:04Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111294660, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "nl", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.0993594, + 50.4930008 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.9.12", + "comment": "Adding data with #MapComplete for theme #cafes_and_pubs", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-16T14:26:24Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111294637, + "host": "mapcomplete.osm.be", + "theme": "cafes_and_pubs", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.0997725, + 50.4935417 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.9.12", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-16T14:23:54Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 4.1747000003868e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111294545, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.0994042, + 50.49339665 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.9.12", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-16T14:19:29Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111294320, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.0994425, + 50.4933694 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.9.12", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-16T14:19:08Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.00554429369591911, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111294300, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/signals", + "imagery": "osm", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.6757754, + -34.6524021 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.9.12", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-16T14:15:48Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 2.9151090000344e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111294140, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.10041405, + 50.493437 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Nuytinck", + "uid": "3719237", + "editor": "MapComplete 0.9.12", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-09-16T11:40:03Z", + "reviewed_features": [], + "create": 2, + "modify": 2, + "delete": 0, + "area": 0.0000122089108799861, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111286975, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "bookcases", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7512498, + 51.0415541 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.9.12", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-09-15T19:47:37Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111260346, + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "osm", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -71.3707655, + -34.6402119 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Firefighter-112", + "uid": "14014754", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-09-15T19:37:21Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111259977, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.5769486, + 51.9740711 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.9.12", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-09-15T15:20:31Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111250813, + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "osm", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.602631, + -33.4140376 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "lebeno", + "uid": "1710114", + "editor": "MapComplete 0.9.12", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-09-15T12:06:15Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111242072, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7092295, + 51.0253951 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.9.12", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-09-15T09:52:42Z", + "reviewed_features": [], + "create": 1, + "modify": 9, + "delete": 0, + "area": 0.000368517871280142, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111235562, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3591232, + 50.85652185 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "brust84", + "uid": "1225756", + "editor": "MapComplete 0.9.3", + "comment": "Adding data with #MapComplete for theme #inline_skating", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-15T06:48:25Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.00000561708768000201, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111226938, + "host": "timor.github.io", + "path": "mapcomplete/", + "theme": "inline_skating", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "timor" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.77708075, + 51.066343200000006 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.9.12", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-14T23:52:58Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111218166, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.9260321, + 51.1356921 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "DidierLmn", + "uid": "4201907", + "editor": "MapComplete 0.9.11", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-09-14T22:35:22Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 0.00000138605334999847, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111217068, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.45765845, + 51.20943435 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "WinstonSmith", + "uid": "36030", + "editor": "MapComplete 0.9.11", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-14T19:42:03Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111212256, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.3588331, + 44.544683 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "TauvicR", + "uid": "9632584", + "editor": "MapComplete 0.9.11", + "comment": "Adding data with #MapComplete for theme #personal", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-09-14T13:25:04Z", + "reviewed_features": [], + "create": 0, + "modify": 39, + "delete": 0, + "area": 0.000468470874079993, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111196945, + "host": "tauvic.github.io", + "path": "MapComplete/dist/", + "theme": "personal", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.607712599999999, + 52.292219900000006 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "lebeno", + "uid": "1710114", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-09-14T13:16:04Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111196543, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7405763, + 51.0356476 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "TauvicR", + "uid": "9632584", + "editor": "MapComplete 0.9.11", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-09-14T12:15:39Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111193678, + "host": "tauvic.github.io", + "path": "MapComplete/dist/", + "theme": "benches", + "imagery": "osm", + "language": "nl", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.6019223, + 52.2947021 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "TauvicR", + "uid": "9632584", + "editor": "MapComplete 0.9.11", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-09-14T12:11:09Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111193497, + "host": "tauvic.github.io", + "path": "MapComplete/dist/", + "theme": "toilets", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.6145472, + 52.3012908 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.9.11", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-14T11:33:03Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111191715, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "food", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4189665, + 51.2179647 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "lebeno", + "uid": "1710114", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-09-14T11:03:47Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111190227, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7405658, + 51.0356252 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "TauvicR", + "uid": "9632584", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-14T02:15:34Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.0000269712340800036, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111170420, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "nl", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.60307605, + 52.2960336 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "TauvicR", + "uid": "9632584", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-14T02:06:12Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 2.72245050001667e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111170319, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.59786555, + 52.29448035 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Wim L", + "uid": "223681", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-14T02:01:36Z", + "reviewed_features": [], + "create": 2, + "modify": 3, + "delete": 0, + "area": 0.0000119190094800368, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111170254, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -122.3833071, + 47.6779674 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-14T00:05:28Z", + "reviewed_features": [], + "create": 3, + "modify": 2, + "delete": 0, + "area": 0.0003243808275, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111168885, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/signals", + "imagery": "EsriWorldImageryClarity", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.587044899999995, + -34.643569850000006 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.9.11", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-13T20:09:50Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111163792, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "charging_stations", + "imagery": "CartoDB.Voyager", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.1243227, + 50.4462767 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "TauvicR", + "uid": "9632584", + "editor": "MapComplete 0.9.11", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-13T18:47:42Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.00000105748664000725, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111160670, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "playgrounds", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.59977005, + 52.295202599999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "TauvicR", + "uid": "9632584", + "editor": "MapComplete 0.9.11", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-13T14:06:36Z", + "reviewed_features": [], + "create": 1, + "modify": 7, + "delete": 0, + "area": 0.00000389116733999269, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111147907, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "benches", + "imagery": "osm", + "language": "nl", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.59847985, + 52.2945455 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-13T13:33:33Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 0.00122050708857021, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111146318, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/signals", + "imagery": "EsriWorldImageryClarity", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.614631450000005, + -34.64916825 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-9087844364", + "name": "E. Saunders", + "osm_id": 9087844364, + "reasons": [ + 43 + ], + "version": 4, + "primary_tags": { + "shop": "shoemaker" + } + } + ], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.9.11", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-13T12:18:06Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111142872, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "shops", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2482383, + 51.2085151 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "carodm", + "uid": "11564583", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-09-13T10:43:30Z", + "reviewed_features": [], + "create": 4, + "modify": 2, + "delete": 0, + "area": 0.000147833340000064, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111137609, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2965068, + 50.865763 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Wright One", + "uid": "261189", + "editor": "MapComplete 0.9.11", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-09-13T10:10:49Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111135802, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "toilets", + "imagery": "osm", + "language": "zh_Hant", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 114.18111, + 22.2797 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Wright One", + "uid": "261189", + "editor": "MapComplete 0.9.11", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-09-13T10:06:49Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111135600, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "aed", + "imagery": "osm", + "language": "zh_Hant", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 114.1815168, + 22.2796347 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #artwork", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-09-13T09:44:25Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111134364, + "host": "mapcomplete.osm.be", + "theme": "artwork", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3754393, + 50.8682106 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "s_SoNick", + "uid": "8082926", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #sport_pitches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-09-13T02:23:52Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.0000487171737000404, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111117005, + "host": "mapcomplete.osm.be", + "theme": "sport_pitches", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -99.31467995, + 38.8908991 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "TauvicR", + "uid": "9632584", + "editor": "MapComplete 0.9.9", + "comment": "Adding data with #MapComplete for theme #parkings", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-12T19:59:34Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 4.7848005000007e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111111029, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "parkings", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.599682850000001, + 52.28829195 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "TauvicR", + "uid": "9632584", + "editor": "MapComplete 0.9.9", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-12T19:45:05Z", + "reviewed_features": [], + "create": 0, + "modify": 6, + "delete": 0, + "area": 0.0000448694579999538, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111110599, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "benches", + "imagery": "osm", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.60182, + 52.29399895 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Mitch85", + "uid": "4907923", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-12T16:23:01Z", + "reviewed_features": [], + "create": 2, + "modify": 0, + "delete": 0, + "area": 7.06199999818348e-11, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111103404, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 14.43700075, + 51.814196499999994 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Wright One", + "uid": "261189", + "editor": "MapComplete 0.9.9", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-09-12T16:05:01Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.0000071153878000016, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111102661, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "aed", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 114.1773298, + 22.280059549999997 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "WinstonSmith", + "uid": "36030", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-12T15:03:33Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111100315, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.2373088, + 45.4181022 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Mitch85", + "uid": "4907923", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-12T14:06:26Z", + "reviewed_features": [], + "create": 27, + "modify": 16, + "delete": 0, + "area": 0.00143717660640012, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111098043, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 14.5123467, + 51.8756057 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-9084064039", + "name": "'t Spel op de wagen VZW", + "osm_id": 9084064039, + "reasons": [ + 43 + ], + "version": 5, + "primary_tags": { + "shop": "board_games" + } + } + ], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.9.9", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-12T13:56:42Z", + "reviewed_features": [], + "create": 1, + "modify": 5, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111097646, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "shops", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2366431, + 51.2111465 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Mitch85", + "uid": "4907923", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-12T13:38:32Z", + "reviewed_features": [], + "create": 9, + "modify": 6, + "delete": 0, + "area": 0.0000206407320899949, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111096899, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 14.54204815, + 51.87533655 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Mitch85", + "uid": "4907923", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-12T13:28:42Z", + "reviewed_features": [], + "create": 4, + "modify": 2, + "delete": 0, + "area": 0.00000309984012001413, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111096467, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 14.5410593, + 51.873547 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Ninopiña10", + "uid": "11138282", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-12T13:04:17Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111095368, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.7714675, + 43.4689747 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "WinstonSmith", + "uid": "36030", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-12T12:50:52Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 1.83227270000483e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111094818, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.22252995, + 45.49494115 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Brandoberinspektor Erdmann", + "uid": "13364061", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-12T12:49:54Z", + "reviewed_features": [], + "create": 7, + "modify": 2, + "delete": 0, + "area": 0.00223056118529997, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111094780, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "EsriWorldImagery", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.7667274, + 53.130365350000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Mitch85", + "uid": "4907923", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-12T12:23:15Z", + "reviewed_features": [], + "create": 9, + "modify": 3, + "delete": 0, + "area": 0.000392439769680074, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111093714, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 14.5438787, + 51.886229400000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "WinstonSmith", + "uid": "36030", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-12T11:45:09Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0.000145964397439952, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111092379, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.336202499999999, + 44.495406 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Silence37", + "uid": "12430749", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-09-12T08:16:41Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111085979, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "language": "de", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.248914, + 48.1781821 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Brandoberinspektor Erdmann", + "uid": "13364061", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-12T08:06:32Z", + "reviewed_features": [], + "create": 286, + "modify": 289, + "delete": 0, + "area": 0.00685497847117954, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111085753, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.83795215, + 52.8415216 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "TauvicR", + "uid": "9632584", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-12T07:20:14Z", + "reviewed_features": [], + "create": 0, + "modify": 10, + "delete": 0, + "area": 0.0000517564192500015, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111084753, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.60335595, + 52.29326665 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "TauvicR", + "uid": "9632584", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-12T07:03:19Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111084433, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.6065284, + 52.2961897 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Louisbe", + "uid": "14095547", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-09-11T19:59:53Z", + "reviewed_features": [], + "create": 2, + "modify": 0, + "delete": 0, + "area": 3.38639999936431e-10, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111076012, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.8187253000000005, + 51.0790189 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "ClarissaWAM", + "uid": "13745921", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-09-11T13:40:12Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111062799, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.9359699, + 49.9109289 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "TauvicR", + "uid": "9632584", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-11T08:58:09Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 6.85120400010688e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111053808, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "en", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.6066477, + 52.2962585 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "TauvicR", + "uid": "9632584", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-09-11T08:00:00Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 0.000439153371400009, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111052222, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.6192972999999995, + 52.29332615 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "H4N5-antw", + "uid": "10846743", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-10T20:07:52Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111040403, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4196289, + 51.1951284 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.9.9", + "comment": "Adding data with #MapComplete for theme #cycle_highways", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-09-10T18:14:45Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.0000168458115299605, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111036631, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "cycle_highways", + "imagery": "osm", + "language": "en", + "theme-creator": "L'imaginaire" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.18857285, + 50.97444055 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-3947006710", + "osm_id": 3947006710, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3947007267", + "osm_id": 3947007267, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3947007313", + "osm_id": 3947007313, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3947007351", + "osm_id": 3947007351, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3947007364", + "osm_id": 3947007364, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3947007428", + "osm_id": 3947007428, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3947007441", + "osm_id": 3947007441, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3947007426", + "osm_id": 3947007426, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3947007128", + "osm_id": 3947007128, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8811649288", + "osm_id": 8811649288, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8811664994", + "osm_id": 8811664994, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8811664975", + "osm_id": 8811664975, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8811664969", + "osm_id": 8811664969, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8811649314", + "osm_id": 8811649314, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8811649313", + "osm_id": 8811649313, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-9080809955", + "osm_id": 9080809955, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8811649302", + "osm_id": 8811649302, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8811649262", + "osm_id": 8811649262, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8811649307", + "osm_id": 8811649307, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8869396149", + "osm_id": 8869396149, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8745426072", + "osm_id": 8745426072, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "Jose Luis Infante", + "uid": "126203", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete1.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-10T17:03:37Z", + "reviewed_features": [], + "create": 4, + "modify": 62, + "delete": 0, + "area": 0.0000565605371199839, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111033920, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "imagery": "HDM_HOT", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2300879, + 41.4387478 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Jose Luis Infante", + "uid": "126203", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete1.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-10T16:59:37Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 3.76246000003997e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111033762, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "imagery": "HDM_HOT", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2276851, + 41.440543250000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Brandoberinspektor Erdmann", + "uid": "13364061", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-10T16:44:23Z", + "reviewed_features": [], + "create": 47, + "modify": 46, + "delete": 0, + "area": 0.000261066451900016, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111033021, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.813769350000001, + 52.838228799999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.9.9", + "comment": "Adding data with #MapComplete for theme #cycle_highways", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-09-10T16:39:40Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.0000635132937600115, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111032813, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "cycle_highways", + "imagery": "CartoDB.Positron", + "language": "en", + "theme-creator": "L'imaginaire" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.6997292, + 51.0470485 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #fritures", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-10T16:18:11Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111031895, + "host": "mapcomplete.osm.be", + "theme": "fritures", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.0490357, + 51.1204316 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-10T13:09:27Z", + "reviewed_features": [], + "create": 1, + "modify": 6, + "delete": 0, + "area": 0.0049350058336407, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111023660, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/signals", + "imagery": "osm", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.6575042, + -34.6492414 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "eiryelio", + "uid": "831652", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-09-10T12:16:59Z", + "reviewed_features": [], + "create": 3, + "modify": 4, + "delete": 0, + "area": 1.40894999961419e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111021565, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "imagery": "osm", + "language": "fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.13693735, + 50.70193655 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Koenraad Van Coppenolle", + "uid": "12352906", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-09-10T10:31:52Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111017331, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "nl", + "theme-creator": "Florian Edelmann" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.7881224, + 50.8684567 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "lebeno", + "uid": "1710114", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-09-10T06:06:43Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111005136, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7412524, + 51.0369889 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-09-10T03:19:26Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 111000887, + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "CyclOSM", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -72.3982218, + -36.3902178 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.9.7", + "comment": "Adding data with #MapComplete for theme #observation_towers", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-09T21:08:42Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.00698536033193953, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110995306, + "host": "127.0.0.1:1234", + "theme": "observation_towers", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1591558500000003, + 51.2615779 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.9.6", + "comment": "Adding data with #MapComplete for theme #observation_towers", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-09T17:56:10Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110988806, + "host": "127.0.0.1:1234", + "theme": "observation_towers", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.0015773, + 51.2654787 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-3946965585", + "osm_id": 3946965585, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946965538", + "osm_id": 3946965538, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946966195", + "osm_id": 3946966195, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946965357", + "osm_id": 3946965357, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946965267", + "osm_id": 3946965267, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946965753", + "osm_id": 3946965753, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946997496", + "osm_id": 3946997496, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946965557", + "osm_id": 3946965557, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946966234", + "osm_id": 3946966234, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3947007569", + "osm_id": 3947007569, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3947007440", + "osm_id": 3947007440, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3947007455", + "osm_id": 3947007455, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3947007396", + "osm_id": 3947007396, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3947006737", + "osm_id": 3947006737, + "reasons": [ + 43 + ], + "version": 4, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3947007695", + "osm_id": 3947007695, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3947007811", + "osm_id": 3947007811, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-9077500503", + "osm_id": 9077500503, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-9077517802", + "osm_id": 9077517802, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-9077502680", + "osm_id": 9077502680, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-9077536621", + "osm_id": 9077536621, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-9077540208", + "osm_id": 9077540208, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-9077512782", + "osm_id": 9077512782, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-9077520184", + "osm_id": 9077520184, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-9077538844", + "osm_id": 9077538844, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-9077540213", + "osm_id": 9077540213, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-9077553939", + "osm_id": 9077553939, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-9077548543", + "osm_id": 9077548543, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3947007850", + "osm_id": 3947007850, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-9077525869", + "osm_id": 9077525869, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3947008065", + "osm_id": 3947008065, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3947007365", + "osm_id": 3947007365, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3947007059", + "osm_id": 3947007059, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "Jose Luis Infante", + "uid": "126203", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete1.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-09T17:46:07Z", + "reviewed_features": [], + "create": 15, + "modify": 44, + "delete": 0, + "area": 0.0000189097615800074, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110988456, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "imagery": "HDM_HOT", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2268138, + 41.441957849999994 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "tmdq", + "uid": "8751391", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-09-09T15:43:16Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110983393, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.7192157, + 47.2388538 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "lebeno", + "uid": "1710114", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-09-09T14:43:13Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110980752, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7388545, + 51.0367951 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-09T13:12:09Z", + "reviewed_features": [], + "create": 0, + "modify": 14, + "delete": 0, + "area": 0.0060069712878296, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110976587, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/signals", + "imagery": "osm", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.65075335, + -34.652568349999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "The_JF", + "uid": "4543415", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-09-09T10:22:48Z", + "reviewed_features": [], + "create": 2, + "modify": 7, + "delete": 0, + "area": 0.0000227272082400029, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110967312, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.4931938, + 53.8088346 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Brec10", + "uid": "13615286", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-09T09:41:30Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110964829, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3861078, + 43.8555804 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Brec10", + "uid": "13615286", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-09T08:17:26Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110959933, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.4177485, + 43.8529857 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "brust84", + "uid": "1225756", + "editor": "MapComplete 0.9.3", + "comment": "Adding data with #MapComplete for theme #inline_skating", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-09T07:40:41Z", + "reviewed_features": [], + "create": 0, + "modify": 8, + "delete": 0, + "area": 0.0000692817980400051, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110957825, + "host": "timor.github.io", + "path": "mapcomplete/", + "theme": "inline_skating", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "timor" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.71803435, + 51.0309619 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-09-09T07:24:58Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110956858, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "imagery": "UrbISOrtho", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3920824, + 50.873837 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-5516568962", + "osm_id": 5516568962, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "amenity": "binoculars" + } + }, + { + "url": "node-5516568963", + "osm_id": 5516568963, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "amenity": "binoculars" + } + }, + { + "url": "node-8162217310", + "osm_id": 8162217310, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "amenity": "binoculars" + } + } + ], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.9.6", + "comment": "Adding data with #MapComplete for theme #binoculars", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-08T22:33:50Z", + "reviewed_features": [], + "create": 0, + "modify": 6, + "delete": 0, + "area": 0.114038945112611, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110940675, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "binoculars", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.53420775, + 51.20706355 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Wim L", + "uid": "223681", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-08T21:35:58Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110939442, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -122.34281245, + 47.6102151 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Alexmol", + "uid": "347293", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-09-08T20:04:35Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110936930, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -7.663269, + 37.1183458 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "lebeno", + "uid": "1710114", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-09-08T15:21:36Z", + "reviewed_features": [], + "create": 3, + "modify": 14, + "delete": 0, + "area": 9.48144810003952e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110926703, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.73584125, + 51.03691565 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-08T13:14:40Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110920216, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/signals", + "imagery": "osm", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.7597403, + -34.6588894 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-09-08T13:02:45Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110919484, + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "osm", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.2506443, + -39.8106972 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.9.6", + "comment": "Adding data with #MapComplete for theme #cycle_highways", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-09-08T11:40:37Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.2342523877911, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110914135, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "cycle_highways", + "imagery": "CartoDB.Positron", + "language": "en", + "theme-creator": "L'imaginaire" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.64607215, + 51.1142841 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Brec10", + "uid": "13615286", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-08T10:16:53Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110908896, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.5104322, + 43.8947941 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.9.6", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-08T09:43:41Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110906828, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "shops", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2243449, + 51.2102969 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "brust84", + "uid": "1225756", + "editor": "MapComplete 0.9.3", + "comment": "Adding data with #MapComplete for theme #inline_skating", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-08T08:16:03Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 3.02382449998736e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110901893, + "host": "timor.github.io", + "path": "mapcomplete/", + "theme": "inline_skating", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "timor" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.70479125, + 51.04415735 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.9.6", + "comment": "Adding data with #MapComplete for theme #cycle_highways", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-09-08T08:06:13Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00855123868103916, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110901351, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "cycle_highways", + "imagery": "CartoDB.Positron", + "language": "en", + "theme-creator": "L'imaginaire" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3430155, + 50.865627599999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "brust84", + "uid": "1225756", + "editor": "MapComplete 0.9.3", + "comment": "Adding data with #MapComplete for theme #inline_skating", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-08T08:03:01Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 0.00000193197922000019, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110901164, + "host": "timor.github.io", + "path": "mapcomplete/", + "theme": "inline_skating", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "timor" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.70473285, + 51.046819 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "brust84", + "uid": "1225756", + "editor": "MapComplete 0.9.3", + "comment": "Adding data with #MapComplete for theme #inline_skating", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-08T07:59:30Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000103193837999929, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110900957, + "host": "timor.github.io", + "path": "mapcomplete/", + "theme": "inline_skating", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "timor" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.7041942, + 51.04957605 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "brust84", + "uid": "1225756", + "editor": "MapComplete 0.9.3", + "comment": "Adding data with #MapComplete for theme #inline_skating", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-08T07:48:23Z", + "reviewed_features": [], + "create": 0, + "modify": 8, + "delete": 0, + "area": 0.0000175424576200285, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110900277, + "host": "timor.github.io", + "path": "mapcomplete/", + "theme": "inline_skating", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "timor" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.7004068, + 51.050445350000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "brust84", + "uid": "1225756", + "editor": "MapComplete 0.9.3", + "comment": "Adding data with #MapComplete for theme #inline_skating", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-08T07:37:23Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.0000244958767300381, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110899591, + "host": "timor.github.io", + "path": "mapcomplete/", + "theme": "inline_skating", + "imagery": "CyclOSM", + "language": "en", + "theme-creator": "timor" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.696893150000001, + 51.05259205 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #cyclestreets", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-09-08T00:06:22Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000313159781000457, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110883035, + "host": "mapcomplete.osm.be", + "theme": "cyclestreets", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.42825925, + 50.926792750000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "lebeno", + "uid": "1710114", + "editor": "MapComplete 0.9.5", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-09-07T21:37:46Z", + "reviewed_features": [], + "create": 0, + "modify": 6, + "delete": 0, + "area": 0.0000769701501900307, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110880524, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "charging_stations", + "imagery": "CartoDB.Voyager", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7411394500000004, + 51.038006249999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-09-07T20:31:14Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110878740, + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "Mapbox", + "language": "en", + "theme-creator": "Midgard" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -71.3707589, + -34.6402759 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.9.5", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-07T19:46:06Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110877207, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "food", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.4443896, + 51.1126056 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "brust84", + "uid": "1225756", + "editor": "MapComplete 0.9.3", + "comment": "Adding data with #MapComplete for theme #inline_skating", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-07T19:08:29Z", + "reviewed_features": [], + "create": 0, + "modify": 7, + "delete": 0, + "area": 0.000116966749959935, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110875916, + "host": "timor.github.io", + "path": "mapcomplete/", + "theme": "inline_skating", + "imagery": "CyclOSM", + "language": "en", + "theme-creator": "timor" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.69580345, + 51.0544985 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "WinstonSmith", + "uid": "36030", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-07T19:00:53Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0.0142127796557983, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110875675, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.32306545, + 44.8543254 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-3947006984", + "osm_id": 3947006984, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3947006424", + "osm_id": 3947006424, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3947006673", + "osm_id": 3947006673, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3947006284", + "osm_id": 3947006284, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946997496", + "osm_id": 3946997496, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946997546", + "osm_id": 3946997546, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946966429", + "osm_id": 3946966429, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3947006574", + "osm_id": 3947006574, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946966249", + "osm_id": 3946966249, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946965538", + "osm_id": 3946965538, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946966280", + "osm_id": 3946966280, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946966186", + "osm_id": 3946966186, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946965585", + "osm_id": 3946965585, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946965557", + "osm_id": 3946965557, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946966393", + "osm_id": 3946966393, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946966212", + "osm_id": 3946966212, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-9071410202", + "osm_id": 9071410202, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946965581", + "osm_id": 3946965581, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946965397", + "osm_id": 3946965397, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946966399", + "osm_id": 3946966399, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946965479", + "osm_id": 3946965479, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946965507", + "osm_id": 3946965507, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946965318", + "osm_id": 3946965318, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946964659", + "osm_id": 3946964659, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946965282", + "osm_id": 3946965282, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946966653", + "osm_id": 3946966653, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946965113", + "osm_id": 3946965113, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946965139", + "osm_id": 3946965139, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8770455435", + "osm_id": 8770455435, + "reasons": [ + 43 + ], + "version": 4, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946962237", + "osm_id": 3946962237, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946964925", + "osm_id": 3946964925, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946964944", + "osm_id": 3946964944, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946965060", + "osm_id": 3946965060, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946962877", + "osm_id": 3946962877, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946961992", + "osm_id": 3946961992, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-3946965070", + "osm_id": 3946965070, + "reasons": [ + 43 + ], + "version": 3, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-9071637293", + "osm_id": 9071637293, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-9071664438", + "osm_id": 9071664438, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + }, + { + "url": "node-8833127483", + "osm_id": 8833127483, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "natural": "tree_stump" + } + } + ], + "user": "Jose Luis Infante", + "uid": "126203", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #https://llefia.org/arbres/mapcomplete1.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-07T18:46:21Z", + "reviewed_features": [], + "create": 8, + "modify": 66, + "delete": 0, + "area": 0.0000393272894499888, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110875109, + "host": "mapcomplete.osm.be", + "theme": "arbres_llefia", + "imagery": "HDM_HOT", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2274185500000003, + 41.439082049999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Robin van der Linde", + "uid": "5093765", + "editor": "MapComplete 0.9.5", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-07T18:17:10Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.00000504035151999883, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110874001, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "charging_stations", + "imagery": "CartoDB.Voyager", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.572461499999999, + 53.0218033 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "lebeno", + "uid": "1710114", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-09-07T17:54:50Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110873102, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7412927, + 51.0361053 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.9.5", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-07T17:47:04Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110872782, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "charging_stations", + "imagery": "CartoDB.Voyager", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2120516, + 51.191464 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "lebeno", + "uid": "1710114", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-09-07T17:45:56Z", + "reviewed_features": [], + "create": 2, + "modify": 2, + "delete": 0, + "area": 2.82306300005717e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110872737, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.73638155, + 51.036820250000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "carodm", + "uid": "11564583", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-09-07T16:47:37Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110870231, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2927924, + 50.8617505 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-07T14:36:11Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110864432, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2081858, + 51.1869804 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Robin van der Linde", + "uid": "5093765", + "editor": "MapComplete 0.9.4", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-07T12:58:39Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.00000100356983999769, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110859989, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "charging_stations", + "imagery": "CartoDB.Voyager", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.5685417, + 53.010605 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Robin van der Linde", + "uid": "5093765", + "editor": "MapComplete 0.9.4", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-07T12:47:03Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110859395, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "toilets", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.5721604, + 53.0264806 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Robin van der Linde", + "uid": "5093765", + "editor": "MapComplete 0.9.4", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-07T12:25:34Z", + "reviewed_features": [], + "create": 0, + "modify": 19, + "delete": 0, + "area": 0.00104350498344022, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110858186, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.5571519, + 53.0002444 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.9.4", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-09-07T11:16:48Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110853884, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "cyclofix", + "imagery": "AGIV", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.7796401, + 51.2028367 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "brust84", + "uid": "1225756", + "editor": "MapComplete 0.9.3", + "comment": "Adding data with #MapComplete for theme #inline_skating", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-07T11:16:45Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 1.09588799999295e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110853877, + "host": "timor.github.io", + "path": "mapcomplete/", + "theme": "inline_skating", + "imagery": "GEOSN-DOP-RGB", + "language": "en", + "theme-creator": "timor" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.7264895, + 51.02642025 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.9.4", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-09-07T11:10:23Z", + "reviewed_features": [], + "create": 1, + "modify": 4, + "delete": 0, + "area": 0.13893897884022, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110853474, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "charging_stations", + "imagery": "CartoDB.Voyager", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.57686335, + 51.0315187 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "user_5589", + "uid": "5589", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #parkings", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-09-07T09:53:28Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 5.01703999995068e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110848487, + "host": "mapcomplete.osm.be", + "theme": "parkings", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.5346039, + 52.29394635 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "brust84", + "uid": "1225756", + "editor": "MapComplete 0.9.3", + "comment": "Adding data with #MapComplete for theme #inline_skating", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-07T09:36:42Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.0000161986067499989, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110847424, + "host": "timor.github.io", + "path": "mapcomplete/", + "theme": "inline_skating", + "imagery": "GEOSN-DOP-RGB", + "language": "en", + "theme-creator": "timor" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.72945485, + 51.03407025 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "sebkur", + "uid": "22917", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-07T09:34:55Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110847304, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 12.5188726, + 52.1400304 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "brust84", + "uid": "1225756", + "editor": "MapComplete 0.9.3", + "comment": "Adding data with #MapComplete for theme #inline_skating", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-07T09:10:05Z", + "reviewed_features": [], + "create": 0, + "modify": 11, + "delete": 0, + "area": 0.0000175388763599723, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110845596, + "host": "timor.github.io", + "path": "mapcomplete/", + "theme": "inline_skating", + "imagery": "GEOSN-DOP-RGB", + "language": "en", + "theme-creator": "timor" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.7613027, + 51.0490919 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "brust84", + "uid": "1225756", + "editor": "MapComplete 0.9.3", + "comment": "Adding data with #MapComplete for theme #inline_skating", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-07T08:48:47Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 0.000109441648799927, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110844164, + "host": "timor.github.io", + "path": "mapcomplete/", + "theme": "inline_skating", + "imagery": "osm", + "language": "en", + "theme-creator": "timor" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.7846677, + 51.0498743 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "brust84", + "uid": "1225756", + "editor": "MapComplete 0.9.3", + "comment": "Adding data with #MapComplete for theme #inline_skating", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-07T08:08:40Z", + "reviewed_features": [], + "create": 0, + "modify": 21, + "delete": 0, + "area": 0.0000345077735400053, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110841379, + "host": "timor.github.io", + "path": "mapcomplete/", + "theme": "inline_skating", + "imagery": "GEOSN-DOP-RGB", + "language": "en", + "theme-creator": "timor" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.80907285, + 51.052902200000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "lebeno", + "uid": "1710114", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-09-07T07:57:42Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110840665, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7007618, + 51.0268819 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "brust84", + "uid": "1225756", + "editor": "MapComplete 0.9.3", + "comment": "Adding data with #MapComplete for theme #inline_skating", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-07T06:57:09Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 2.50575300003781e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110836770, + "host": "timor.github.io", + "path": "mapcomplete/", + "theme": "inline_skating", + "imagery": "GEOSN-DOP-RGB", + "language": "en", + "theme-creator": "timor" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.7948526, + 51.06367425 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "treemap", + "uid": "926359", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-07T03:45:57Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.000047853760079965, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110827103, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.56078350000001, + 45.47967425 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Robin van der Linde", + "uid": "5093765", + "editor": "MapComplete 0.9.4", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-06T20:37:34Z", + "reviewed_features": [], + "create": 0, + "modify": 27, + "delete": 0, + "area": 0.00037956400574994, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110820210, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "food", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.56660235, + 53.01175765 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Robin van der Linde", + "uid": "5093765", + "editor": "MapComplete 0.9.4", + "comment": "Adding data with #MapComplete for theme #parkings", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-06T19:23:23Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 7.80152000041448e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110818057, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "parkings", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.560969500000001, + 53.0193444 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Frans_Napaters", + "uid": "3574538", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-09-06T18:56:35Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 5.69960859998512e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110817161, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.90264495, + 51.096994300000006 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "brust84", + "uid": "1225756", + "editor": "MapComplete 0.9.3", + "comment": "Adding data with #MapComplete for theme #inline_skating", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-06T16:47:15Z", + "reviewed_features": [], + "create": 0, + "modify": 7, + "delete": 0, + "area": 0.00000137018253999756, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110812835, + "host": "timor.github.io", + "path": "mapcomplete/", + "theme": "inline_skating", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "timor" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.701775699999999, + 51.04657295 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "brust84", + "uid": "1225756", + "editor": "MapComplete 0.9.3", + "comment": "Adding data with #MapComplete for theme #inline_skating", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-06T16:42:09Z", + "reviewed_features": [], + "create": 2, + "modify": 1, + "delete": 0, + "area": 0.00000257842260000314, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110812653, + "host": "timor.github.io", + "path": "mapcomplete/", + "theme": "inline_skating", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "timor" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.70305715, + 51.0450472 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "brust84", + "uid": "1225756", + "editor": "MapComplete 0.9.3", + "comment": "Adding data with #MapComplete for theme #inline_skating", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-06T16:19:32Z", + "reviewed_features": [], + "create": 2, + "modify": 26, + "delete": 0, + "area": 0.000062150671440028, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110811749, + "host": "timor.github.io", + "path": "mapcomplete/", + "theme": "inline_skating", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "timor" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.70720805, + 51.042709 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "brust84", + "uid": "1225756", + "editor": "MapComplete 0.9.3", + "comment": "Adding data with #MapComplete for theme #inline_skating", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-06T16:11:28Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000545410377000658, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110811416, + "host": "timor.github.io", + "path": "mapcomplete/", + "theme": "inline_skating", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "timor" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.713532050000001, + 51.03857605 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "brust84", + "uid": "1225756", + "editor": "MapComplete 0.9.3", + "comment": "Adding data with #MapComplete for theme #inline_skating", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-06T15:45:08Z", + "reviewed_features": [], + "create": 0, + "modify": 11, + "delete": 0, + "area": 0.0000608361991999835, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110810252, + "host": "timor.github.io", + "path": "mapcomplete/", + "theme": "inline_skating", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "timor" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.719508000000001, + 51.0342785 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "brust84", + "uid": "1225756", + "editor": "MapComplete 0.9.3", + "comment": "Adding data with #MapComplete for theme #inline_skating", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-09-06T15:38:59Z", + "reviewed_features": [], + "create": 2, + "modify": 1, + "delete": 0, + "area": 0.0000394700899999859, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110810008, + "host": "timor.github.io", + "path": "mapcomplete/", + "theme": "inline_skating", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "timor" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.7194516, + 51.0330962 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "CanadaRunner", + "uid": "1261175", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-06T15:38:18Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110809973, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.2545995, + 43.7735024 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "brust84", + "uid": "1225756", + "editor": "MapComplete 0.9.3", + "comment": "Adding data with #MapComplete for theme #inline_skating", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-06T15:09:04Z", + "reviewed_features": [], + "create": 2, + "modify": 16, + "delete": 0, + "area": 0.0000977295044399741, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110808804, + "host": "timor.github.io", + "path": "mapcomplete/", + "theme": "inline_skating", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "timor" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.720374450000001, + 51.0308423 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "matissevdberg", + "uid": "12928471", + "editor": "MapComplete 0.9.4", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-09-06T13:22:18Z", + "reviewed_features": [], + "create": 1, + "modify": 6, + "delete": 0, + "area": 0.000274893963619906, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110804202, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "surveillance", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4033423, + 51.21519065 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-06T13:12:39Z", + "reviewed_features": [], + "create": 3, + "modify": 14, + "delete": 0, + "area": 0.00398919841756018, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110803772, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/signals", + "imagery": "osm", + "language": "es" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.68874925, + -34.6555771 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "brust84", + "uid": "1225756", + "editor": "MapComplete 0.9.3", + "comment": "Adding data with #MapComplete for theme #inline_skating", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-06T09:41:11Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 5.74573999984628e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110790669, + "host": "timor.github.io", + "path": "mapcomplete/", + "theme": "inline_skating", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "timor" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.7255606, + 51.02716415 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "brust84", + "uid": "1225756", + "editor": "MapComplete 0.9.3", + "comment": "Adding data with #MapComplete for theme #inline_skating", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-06T08:21:55Z", + "reviewed_features": [], + "create": 2, + "modify": 3, + "delete": 0, + "area": 0.0000171915869999785, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110786060, + "host": "timor.github.io", + "path": "mapcomplete/", + "theme": "inline_skating", + "imagery": "osm", + "language": "en", + "theme-creator": "timor" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.71291975, + 51.038539 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "brust84", + "uid": "1225756", + "editor": "MapComplete 0.9.3", + "comment": "Adding data with #MapComplete for theme #inline_skating", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-06T08:06:48Z", + "reviewed_features": [], + "create": 0, + "modify": 12, + "delete": 0, + "area": 0.0000193119097400122, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110785141, + "host": "timor.github.io", + "path": "mapcomplete/", + "theme": "inline_skating", + "imagery": "GEOSN-DOP-RGB", + "language": "en", + "theme-creator": "timor" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.707423949999999, + 51.041862699999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Lippmann Richard", + "uid": "14059700", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-05T20:55:28Z", + "reviewed_features": [], + "create": 3, + "modify": 2, + "delete": 0, + "area": 0.00141716620311003, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110765328, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "imagery": "osm", + "language": "de", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.016779249999999, + 49.44191805 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Lippmann Richard", + "uid": "14059700", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-05T20:42:37Z", + "reviewed_features": [], + "create": 2, + "modify": 0, + "delete": 0, + "area": 2.65172999973374e-9, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110764955, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 10.95762445, + 49.44181465 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Lippmann Richard", + "uid": "14059700", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-05T20:35:17Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110764735, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "imagery": "HDM_HOT", + "language": "en", + "theme-creator": "Erwin Olario" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 10.9615713, + 49.4172352 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "brust84", + "uid": "1225756", + "editor": "MapComplete 0.9.3", + "comment": "Adding data with #MapComplete for theme #inline_skating", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-05T19:12:15Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 8.62328099998924e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110762517, + "host": "timor.github.io", + "path": "mapcomplete/", + "theme": "inline_skating", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "timor" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.6840133, + 51.058046649999994 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "brust84", + "uid": "1225756", + "editor": "MapComplete 0.9.3", + "comment": "Adding data with #MapComplete for theme #inline_skating", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-05T18:55:48Z", + "reviewed_features": [], + "create": 2, + "modify": 3, + "delete": 0, + "area": 0.00000662334669000326, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110762005, + "host": "timor.github.io", + "path": "mapcomplete/", + "theme": "inline_skating", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "timor" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.68242145, + 51.053932450000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "brust84", + "uid": "1225756", + "editor": "MapComplete 0.9.3", + "comment": "Adding data with #MapComplete for theme #inline_skating", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-05T18:28:41Z", + "reviewed_features": [], + "create": 2, + "modify": 9, + "delete": 0, + "area": 0.0000130067027600068, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110761238, + "host": "timor.github.io", + "path": "mapcomplete/", + "theme": "inline_skating", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "timor" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.685504, + 51.05625085 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.9.4", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-05T17:28:16Z", + "reviewed_features": [], + "create": 0, + "modify": 8, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110759123, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "food", + "imagery": "AGIVFlandersGRB", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7245505, + 51.0572368 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "brust84", + "uid": "1225756", + "editor": "MapComplete 0.9.3", + "comment": "Adding data with #MapComplete for theme #inline_skating", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-05T16:23:00Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.000196750987050088, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110756723, + "host": "timor.github.io", + "path": "mapcomplete/", + "theme": "inline_skating", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "timor" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.70643085, + 51.05848425 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "lebeno", + "uid": "1710114", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-09-05T15:59:20Z", + "reviewed_features": [], + "create": 3, + "modify": 8, + "delete": 0, + "area": 0.0000220068164799928, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110755864, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7457967, + 51.0333371 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "lebeno", + "uid": "1710114", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-09-05T15:39:57Z", + "reviewed_features": [], + "create": 9, + "modify": 19, + "delete": 0, + "area": 0.00000862833375001486, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110754992, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.74598115, + 51.03209115 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "lebeno", + "uid": "1710114", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-09-05T15:16:48Z", + "reviewed_features": [], + "create": 7, + "modify": 13, + "delete": 0, + "area": 0.00000908866602000282, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110753945, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.74534815, + 51.03399159999999 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "lebeno", + "uid": "1710114", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-09-05T14:49:52Z", + "reviewed_features": [], + "create": 9, + "modify": 16, + "delete": 0, + "area": 0.0000084567131999992, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110752801, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7460294000000003, + 51.03570985 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.9.4", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-05T14:44:23Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110752554, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7377907, + 51.0501288 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "dekoe65", + "uid": "13921921", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-05T14:38:43Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110752287, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 12.8507381, + 52.1688877 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "lebeno", + "uid": "1710114", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-09-05T14:16:47Z", + "reviewed_features": [], + "create": 7, + "modify": 14, + "delete": 0, + "area": 0.00000605937354000025, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110751439, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7447902500000003, + 51.0381812 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-05T13:52:30Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110750569, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3803906, + 50.8044363 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-05T12:41:33Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110748089, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3807313, + 50.8044092 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "brust84", + "uid": "1225756", + "editor": "MapComplete 0.9.3", + "comment": "Adding data with #MapComplete for theme #inline_skating", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-05T10:35:12Z", + "reviewed_features": [], + "create": 4, + "modify": 7, + "delete": 0, + "area": 0.00000886822974001026, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110743699, + "host": "timor.github.io", + "path": "mapcomplete/", + "theme": "inline_skating", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "timor" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.8683133, + 51.14763175 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Koen Rijnsent", + "uid": "4569696", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-05T10:07:13Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110742775, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.0870298, + 47.2684337 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "brust84", + "uid": "1225756", + "editor": "MapComplete 0.9.3", + "comment": "Adding data with #MapComplete for theme #inline_skating", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-05T09:46:31Z", + "reviewed_features": [], + "create": 0, + "modify": 7, + "delete": 0, + "area": 0.00000396567288000889, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110742143, + "host": "timor.github.io", + "path": "mapcomplete/", + "theme": "inline_skating", + "imagery": "CartoDB.Voyager", + "language": "en", + "theme-creator": "timor" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.867534299999999, + 51.1477238 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "skimua", + "uid": "200631", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #artwork", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-09-05T06:59:15Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110737915, + "host": "mapcomplete.osm.be", + "theme": "artwork", + "imagery": "CartoDB.VoyagerNoLabels", + "language": "ru", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 37.9934373, + 48.629113 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Rober castro", + "uid": "13601244", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-04T20:34:52Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110730420, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "imagery": "osm", + "language": "en", + "theme-creator": "Erwin Olario" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.8171257, + 41.5804011 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-09-04T20:01:43Z", + "reviewed_features": [], + "create": 1, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110729653, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "AGIV10cm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.5551392, + 50.7873265 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Ninopiña10", + "uid": "11138282", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2021-09-04T18:27:10Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110727164, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "imagery": "osm", + "language": "nl", + "theme-creator": "MapComplete" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.5170975, + 41.6336276 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-09-04T17:38:10Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110725856, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.5583292, + 50.7859898 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.9.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2021-09-04T17:35:13Z", + "reviewed_features": [], + "create": 1, + "modify": 6, + "delete": 0, + "area": 0.0803733066865325, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 110725782, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "nl", + "theme-creator": "MapComplete" + }, "geometry": { "type": "Point", "coordinates": [ @@ -59525,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": [ @@ -59535,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": [ @@ -59545,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": [ @@ -59555,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": [ @@ -59565,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": [ @@ -59575,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": [ @@ -59585,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": [ @@ -59595,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": [ @@ -59605,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": [ @@ -59615,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": [ @@ -59625,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": [ @@ -59635,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": [ @@ -59645,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": [ @@ -59655,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": [ @@ -59665,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": [ @@ -59675,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": [ @@ -59685,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": [ @@ -59695,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": [ @@ -59705,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": [ @@ -59715,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": [ @@ -59725,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": [ @@ -59735,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": [ @@ -59745,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": [ @@ -59755,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": [ @@ -59765,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": [ @@ -59775,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": [ @@ -59785,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": [ @@ -59795,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": [ @@ -59805,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": [ @@ -59815,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": [ @@ -59825,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": [ @@ -59835,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": [ @@ -59845,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": [ @@ -59855,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": [ @@ -59865,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": [ @@ -59875,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": [ @@ -59885,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": [ @@ -59895,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": [ @@ -59905,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": [ @@ -59915,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": [ @@ -59925,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": [ @@ -59935,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": [ @@ -59945,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": [ @@ -59955,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": [ @@ -59965,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": [ @@ -59975,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": [ @@ -59985,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": [ @@ -59995,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": [ @@ -60005,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": [ @@ -60015,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": [ @@ -60025,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": [ @@ -60035,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": [ @@ -60045,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": [ @@ -60055,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": [ @@ -60065,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": [ @@ -60075,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": [ @@ -60085,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": [ @@ -60095,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": [ @@ -60105,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": [ @@ -60115,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": [ @@ -60125,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": [ @@ -60132,6 +294616,33467 @@ 50.9751336 ] } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Dampee", + "uid": "2175714", + "editor": "MapComplete 0.15.1", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-31T21:33:07Z", + "reviewed_features": [], + "create": 0, + "modify": 33, + "delete": 0, + "area": 0.302340176125955, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116841128, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 44, + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7762744, + 51.0840675 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dekarl", + "uid": "5760", + "editor": "MapComplete 0.15.1", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-31T20:59:37Z", + "reviewed_features": [], + "create": 0, + "modify": 17, + "delete": 0, + "area": 0.00105564918512994, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116839950, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 25, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.62957005, + 50.11264635 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.15.1", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-31T20:55:23Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 1.5720880000753e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116839830, + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "cyclosm", + "language": "en", + "add-image": 4, + "change_within_25m": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.5702008, + -33.592247900000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thibaultmol", + "uid": "2916921", + "editor": "MapComplete 0.15.1", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-31T20:07:54Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.00000341655243999605, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116838253, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 6, + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.4060130500000003, + 51.0437088 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.15.1", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-31T20:05:56Z", + "reviewed_features": [], + "create": 0, + "modify": 17, + "delete": 0, + "area": 0.000267321901200112, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116838205, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 33, + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.8072667, + 50.8561587 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.15.1", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-31T20:00:21Z", + "reviewed_features": [], + "create": 26, + "modify": 9, + "delete": 0, + "area": 0.00000235544504000526, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116838028, + "host": "mapcomplete.osm.be", + "move": 8, + "theme": "grb", + "import": 3, + "imagery": "osm", + "language": "en", + "conflation": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.94155685, + 51.0865118 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "r0di", + "uid": "4737001", + "editor": "MapComplete 0.15.1", + "comment": "Adding data with #MapComplete for theme #observation_towers", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-31T18:40:10Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.000854707867650675, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116835279, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "observation_towers", + "answer": 2, + "imagery": "osm", + "language": "nl", + "change_over_5000m": 1, + "change_within_5000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.5775916500000005, + 51.30728795 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Albin Gasparetto", + "uid": "1227542", + "editor": "MapComplete 0.15.1", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-31T18:30:10Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116834915, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "answer": 2, + "imagery": "osm", + "language": "fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.6061148, + 42.9635577 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "r0di", + "uid": "4737001", + "editor": "MapComplete 0.15.1", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-31T18:25:51Z", + "reviewed_features": [], + "create": 0, + "modify": 18, + "delete": 0, + "area": 0.00268974535874002, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116834751, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "food", + "answer": 20, + "imagery": "osm", + "language": "nl", + "change_over_5000m": 8, + "change_within_500m": 2, + "change_within_1000m": 10 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.586551050000001, + 51.3298335 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "r0di", + "uid": "4737001", + "editor": "MapComplete 0.15.1", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-31T18:20:32Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 1, + "area": 0.00000391775579999962, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116834514, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "food", + "answer": 4, + "imagery": "osm", + "deletion": 1, + "language": "nl", + "change_within_1000m": 5, + "deletion:node/2839388468": "het is gesloten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.60917505, + 51.3113039 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "r0di", + "uid": "4737001", + "editor": "MapComplete 0.15.1", + "comment": "Adding data with #MapComplete for theme #campersite", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-31T18:02:46Z", + "reviewed_features": [], + "create": 1, + "modify": 6, + "delete": 0, + "area": 0.000516267444149891, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116833812, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "campersite", + "answer": 13, + "imagery": "osm", + "language": "nl", + "change_over_5000m": 1, + "change_within_5000m": 13 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.59615445, + 51.32447155 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "r0di", + "uid": "4737001", + "editor": "MapComplete 0.15.1", + "comment": "Adding data with #MapComplete for theme #artwork", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-31T18:00:57Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 1, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116833750, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "artwork", + "answer": 1, + "imagery": "osm", + "deletion": 1, + "language": "nl", + "change_over_5000m": 3, + "deletion:node/9463800980": "testing point" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.5510462, + 51.3447623 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "r0di", + "uid": "4737001", + "editor": "MapComplete 0.15.1", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-31T17:56:59Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116833592, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "benches", + "answer": 1, + "imagery": "osm", + "language": "nl", + "change_over_5000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.5288583, + 51.335231 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "r0di", + "uid": "4737001", + "editor": "MapComplete 0.15.1", + "comment": "Adding data with #MapComplete for theme #waste_basket", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-31T14:53:45Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116827153, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "waste_basket", + "answer": 1, + "imagery": "osm", + "language": "nl", + "change_within_25m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.8040893, + 51.5003409 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "r0di", + "uid": "4737001", + "editor": "MapComplete 0.15.1", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-31T14:53:03Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116827127, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "benches", + "answer": 2, + "imagery": "osm", + "language": "nl", + "change_within_25m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.8041537, + 51.5003604 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jay8ea", + "uid": "251482", + "editor": "MapComplete 0.15.1", + "comment": "Adding data with #MapComplete for theme #street_lighting", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-31T14:37:37Z", + "reviewed_features": [], + "create": 0, + "modify": 9, + "delete": 0, + "area": 0.0000359177414400359, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116826540, + "host": "mapcomplete.osm.be", + "theme": "street_lighting", + "answer": 9, + "imagery": "osm", + "language": "en", + "change_within_1000m": 5, + "change_within_5000m": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.263366, + 53.441007299999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "r0di", + "uid": "4737001", + "editor": "MapComplete 0.15.1", + "comment": "Adding data with #MapComplete for theme #street_lighting", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-31T13:51:52Z", + "reviewed_features": [], + "create": 2, + "modify": 2, + "delete": 0, + "area": 0.0000142517841200104, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116824801, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "split": 3, + "theme": "street_lighting", + "answer": 2, + "imagery": "osm", + "language": "nl", + "relation-fix": 1, + "change_within_25m": 3, + "change_within_100m": 1, + "change_within_500m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.7386330999999995, + 51.5129685 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Oberfuzzi", + "uid": "14794109", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-31T12:23:31Z", + "reviewed_features": [], + "create": 2, + "modify": 0, + "delete": 0, + "area": 0.000052404764060028, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116821293, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.00298455, + 52.0127729 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "r0di", + "uid": "4737001", + "editor": "MapComplete 0.15.1", + "comment": "Adding data with #MapComplete for theme #cafes_and_pubs", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-31T10:41:12Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116816749, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "cafes_and_pubs", + "answer": 2, + "imagery": "osm", + "language": "nl", + "change_over_5000m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.6791617, + 51.2988118 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.15.1", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-31T05:30:33Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116805462, + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "osm", + "language": "en", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -71.2803384, + -35.1138347 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "bponkishore", + "uid": "14062769", + "editor": "MapComplete 0.15.1", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-31T04:47:04Z", + "reviewed_features": [], + "create": 0, + "modify": 59, + "delete": 0, + "area": 0.0716206775721303, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116804502, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 76, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 80.19127465, + 12.99810655 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.15.1", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/seppesantens/mapcomplete-themes/main/walkingnodenetworks/walkingnodenetworks.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-30T22:31:12Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116798885, + "host": "mapcomplete.osm.be", + "theme": "gh://seppesantens/mapcomplete-themes/main/walkingnodenetworks/walkingnodenetworks.json", + "answer": 1, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3147602, + 51.1178506 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "confusedbuffalo", + "uid": "242345", + "editor": "MapComplete 0.15.1", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-30T22:11:07Z", + "reviewed_features": [], + "create": 0, + "modify": 187, + "delete": 0, + "area": 0.02428234594258, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116798400, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 312, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.44436785, + 54.8553503 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.15.1", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-30T21:51:09Z", + "reviewed_features": [], + "create": 67, + "modify": 163, + "delete": 2, + "area": 0.0000305241867000207, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116797900, + "host": "mapcomplete.osm.be", + "move": 144, + "theme": "grb", + "answer": 1, + "import": 7, + "imagery": "osm", + "language": "nl", + "conflation": 36 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.01855345, + 51.190309400000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Strubbl", + "uid": "536583", + "editor": "MapComplete 0.15.1", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-30T20:09:57Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116794977, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "bookcases", + "answer": 3, + "imagery": "osm", + "language": "en", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.9423304, + 48.0446517 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "nickinparadise", + "uid": "2049708", + "editor": "MapComplete 0.15.1", + "comment": "Adding data with #MapComplete for theme #cafes_and_pubs", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-30T20:08:15Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116794926, + "host": "mapcomplete.osm.be", + "theme": "cafes_and_pubs", + "answer": 1, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -85.8709538, + 11.2567941 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.15.1", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-30T19:00:27Z", + "reviewed_features": [], + "create": 5, + "modify": 3, + "delete": 0, + "area": 0.0152817128300388, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116792994, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 21, + "imagery": "osm", + "language": "en", + "add-image": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4553815, + 50.905514 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.15.1", + "comment": "Adding data with #MapComplete for theme #cyclestreets", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-30T18:19:38Z", + "reviewed_features": [], + "create": 0, + "modify": 28, + "delete": 0, + "area": 0.00166960104119988, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116791647, + "host": "mapcomplete.osm.be", + "theme": "cyclestreets", + "answer": 27, + "imagery": "osm", + "language": "en", + "add-image": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.5609383, + 50.9349965 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "r0di", + "uid": "4737001", + "editor": "MapComplete 0.15.0-rc-1", + "comment": "Adding data with #MapComplete for theme #cafes_and_pubs", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-30T17:48:56Z", + "reviewed_features": [], + "create": 0, + "modify": 8, + "delete": 0, + "area": 0.00637684746888019, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116790606, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "cafes_and_pubs", + "answer": 9, + "imagery": "osm", + "language": "nl", + "change_over_5000m": 5, + "change_within_5000m": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.5986909, + 51.31757235 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "r0di", + "uid": "4737001", + "editor": "MapComplete 0.15.0-rc-1", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-30T17:43:57Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116790432, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "hailhydrant", + "answer": 1, + "imagery": "HDM_HOT", + "language": "en", + "change_over_5000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.5439407, + 51.3515309 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "r0di", + "uid": "4737001", + "editor": "MapComplete 0.15.0-rc-1", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-30T17:32:57Z", + "reviewed_features": [], + "create": 0, + "modify": 7, + "delete": 0, + "area": 0.00226203856761992, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116790056, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "cyclofix", + "answer": 11, + "imagery": "CartoDB.Voyager", + "language": "nl", + "change_over_5000m": 5, + "change_within_1000m": 6 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.5898251000000005, + 51.33464275 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "r0di", + "uid": "4737001", + "editor": "MapComplete 0.15.0-rc-1", + "comment": "Adding data with #MapComplete for theme #cyclestreets", + "comments_count": 6, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-30T17:22:41Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 9.82111299993227e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116789721, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "cyclestreets", + "answer": 1, + "imagery": "osm", + "language": "nl", + "change_over_5000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.7302096, + 51.397992450000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "r0di", + "uid": "4737001", + "editor": "MapComplete 0.15.0-rc-1", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-30T16:43:29Z", + "reviewed_features": [], + "create": 3, + "modify": 2, + "delete": 0, + "area": 0.00583592169276009, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116788202, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "bookcases", + "answer": 4, + "imagery": "osm", + "language": "en", + "change_over_5000m": 3, + "change_within_100m": 3, + "change_within_5000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.6678992, + 51.3461246 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "whatismoss", + "uid": "8427311", + "editor": "MapComplete 0.15.0", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-30T15:21:31Z", + "reviewed_features": [], + "create": 0, + "modify": 117, + "delete": 0, + "area": 0.00150771340651005, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116784793, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 166, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.03411615, + 50.632665349999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.15.0", + "comment": "Adding data with #MapComplete for theme #test", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-30T14:15:14Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116782141, + "host": "mapcomplete.osm.be", + "theme": "test", + "answer": 1, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3704001, + 51.07371 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.15.0", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/seppesantens/mapcomplete-themes/main/walkingnodenetworks/walkingnodenetworks.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-30T14:11:07Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116781962, + "host": "mapcomplete.osm.be", + "theme": "gh://seppesantens/mapcomplete-themes/main/walkingnodenetworks/walkingnodenetworks.json", + "answer": 1, + "imagery": "osm", + "language": "en", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3715484, + 51.0730973 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "bponkishore", + "uid": "14062769", + "editor": "MapComplete 0.15.0", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-30T13:33:28Z", + "reviewed_features": [], + "create": 0, + "modify": 71, + "delete": 0, + "area": 0.0137339877607205, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116780241, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 82, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 80.22573235, + 12.996295700000001 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.15.0", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-30T13:30:56Z", + "reviewed_features": [], + "create": 0, + "modify": 6, + "delete": 0, + "area": 0.000539445246579971, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116780133, + "host": "mapcomplete.osm.be", + "theme": "benches", + "answer": 1, + "imagery": "osm", + "language": "en", + "add-image": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.36724335, + 51.0806832 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "StefDeGreef", + "uid": "1860737", + "editor": "MapComplete 0.15.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-30T13:13:19Z", + "reviewed_features": [], + "create": 1, + "modify": 6, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116779371, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 7, + "imagery": "CartoDB.Voyager", + "language": "fr", + "add-image": 2, + "change_over_5000m": 1, + "change_within_25m": 9 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4409596, + 50.8045511 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "jospyck", + "uid": "12128135", + "editor": "MapComplete 0.15.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-30T13:06:59Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 7.05640000000658e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116779137, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 2, + "imagery": "osm", + "language": "en", + "change_within_25m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3782611, + 51.087767 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Stinus_Clasius", + "uid": "1086503", + "editor": "MapComplete 0.15.0", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-30T10:08:56Z", + "reviewed_features": [], + "create": 246, + "modify": 52, + "delete": 0, + "area": 0.00141076370252995, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116772568, + "host": "mapcomplete.osm.be", + "move": 47, + "theme": "grb", + "import": 18, + "imagery": "osm", + "language": "nl", + "conflation": 10 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.80743895, + 51.160137649999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.15.0", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-30T08:36:05Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 2.40641999993362e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116769631, + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "bookcases", + "imagery": "osm", + "language": "nl", + "add-image": 2, + "change_within_25m": 1, + "change_within_50m": 2, + "move:node/9246056984": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2489615, + 50.7412799 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "bollyboll", + "uid": "12120321", + "editor": "MapComplete 0.15.0", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-30T08:12:05Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116769153, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "imagery": "osm", + "language": "de", + "change_over_5000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.7066367, + 48.0343016 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "bponkishore", + "uid": "14062769", + "editor": "MapComplete 0.15.0", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-30T07:45:24Z", + "reviewed_features": [], + "create": 0, + "modify": 37, + "delete": 0, + "area": 0.000927423012169844, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116768596, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 53, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 80.13171685, + 12.93122725 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.15.0", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-30T01:44:52Z", + "reviewed_features": [], + "create": 13, + "modify": 49, + "delete": 0, + "area": 0.00917739696472004, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116764627, + "host": "mapcomplete.osm.be", + "move": 41, + "theme": "grb", + "answer": 2, + "import": 4, + "imagery": "osm", + "language": "nl", + "conflation": 12 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.078408, + 51.158278 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "confusedbuffalo", + "uid": "242345", + "editor": "MapComplete 0.15.0", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-29T22:08:51Z", + "reviewed_features": [], + "create": 0, + "modify": 148, + "delete": 0, + "area": 0.0158762882422795, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116761076, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 197, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.62152875, + 54.828519400000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Dominic Z", + "uid": "56475", + "editor": "MapComplete 0.15.0", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-29T18:54:11Z", + "reviewed_features": [], + "create": 0, + "modify": 97, + "delete": 0, + "area": 0.00100082572523997, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116756281, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 130, + "imagery": "osm", + "language": "de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.56894195, + 48.8985458 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "confusedbuffalo", + "uid": "242345", + "editor": "MapComplete 0.15.0", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-29T18:50:44Z", + "reviewed_features": [], + "create": 0, + "modify": 56, + "delete": 0, + "area": 0.0214745386162698, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116756190, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 76, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.6196153500000001, + 54.85182775 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "eiryelio", + "uid": "831652", + "editor": "MapComplete 0.15.0", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-29T17:17:25Z", + "reviewed_features": [], + "create": 3, + "modify": 4, + "delete": 0, + "area": 0.0000567647676699667, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116753063, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "answer": 7, + "imagery": "osm", + "language": "fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.13869285, + 50.69412825 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.15.0-rc-1", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-29T16:17:30Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116750828, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "toilets", + "imagery": "osm", + "language": "en", + "add-image": 1, + "change_within_25m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2319562, + 51.21206 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-9458281311", + "osm_id": 9458281311, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "amenity": "bicycle_wash" + } + } + ], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.15.0-rc-1", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-29T15:57:26Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116749960, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "cyclofix", + "answer": 1, + "imagery": "CartoDB.Voyager", + "language": "en", + "add-image": 1, + "change_over_5000m": 1, + "change_within_25m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2430643, + 51.2055222 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "confusedbuffalo", + "uid": "242345", + "editor": "MapComplete 0.15.0", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-29T15:30:21Z", + "reviewed_features": [], + "create": 0, + "modify": 103, + "delete": 0, + "area": 0.0328009178565809, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116748790, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 134, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.59851645, + 54.854494700000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Oberfuzzi", + "uid": "14794109", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-29T10:56:41Z", + "reviewed_features": [], + "create": 5, + "modify": 4, + "delete": 0, + "area": 0.0000121697786800094, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116739093, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 12.9914712, + 52.0096516 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "confusedbuffalo", + "uid": "242345", + "editor": "MapComplete 0.15.0", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-29T10:41:57Z", + "reviewed_features": [], + "create": 0, + "modify": 161, + "delete": 0, + "area": 0.0225476762166004, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116738609, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 290, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.5986677500000002, + 54.8794021 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "LySioS", + "uid": "11579673", + "editor": "MapComplete 0.15.0", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-29T09:10:05Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116735492, + "host": "mapcomplete.osm.be", + "theme": "aed", + "answer": 5, + "imagery": "osm", + "language": "fr", + "change_over_5000m": 1, + "change_within_25m": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.9361894, + 42.691316 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.15.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-29T08:17:40Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116734074, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 3, + "imagery": "AGIVFlandersGRB", + "language": "nl", + "change_within_5000m": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2387824, + 50.7363781 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-9456801536", + "osm_id": 9456801536, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "amenity": "binoculars" + } + } + ], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.15.0", + "comment": "Adding data with #MapComplete for theme #binoculars", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-28T22:53:01Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116726369, + "host": "mapcomplete.osm.be", + "theme": "binoculars", + "imagery": "osm", + "language": "en", + "change_over_5000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.4307197, + 51.3903943 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "confusedbuffalo", + "uid": "242345", + "editor": "MapComplete 0.15.0", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-28T21:17:33Z", + "reviewed_features": [], + "create": 0, + "modify": 156, + "delete": 0, + "area": 0.00518273964818984, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116723580, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 225, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.59195535, + 54.81667415 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.15.0", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-28T21:09:06Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 4.41766800008404e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116723289, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "imagery": "osm", + "language": "en", + "add-image": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3737312, + 50.85941445 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.15.0", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-28T20:47:17Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.20233727205076, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116722525, + "host": "mapcomplete.osm.be", + "theme": "food", + "imagery": "osm", + "language": "en", + "add-image": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.670772899999999, + 51.007172049999994 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "foo_bar_lol", + "uid": "14955867", + "editor": "MapComplete 0.15.0", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-28T20:13:20Z", + "reviewed_features": [], + "create": 25, + "modify": 30, + "delete": 0, + "area": 0.000173747155200079, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116721473, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "answer": 102, + "imagery": "osm", + "language": "fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.8920704, + 42.6957615 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.15.0", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-28T20:08:28Z", + "reviewed_features": [], + "create": 0, + "modify": 10, + "delete": 0, + "area": 0.204492830610087, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116721335, + "host": "mapcomplete.osm.be", + "theme": "shops", + "answer": 2, + "imagery": "osm", + "language": "en", + "add-image": 8 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.67012115, + 51.00590755 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.15.0", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-28T20:01:30Z", + "reviewed_features": [], + "create": 148, + "modify": 37, + "delete": 0, + "area": 0.0000422385408499707, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116721159, + "host": "mapcomplete.osm.be", + "move": 34, + "theme": "grb", + "import": 20, + "imagery": "osm", + "language": "nl", + "conflation": 6, + "change_over_5000m": 20 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.36734185, + 50.961900549999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.15.0", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-28T19:20:51Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000120700943999719, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116720054, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "imagery": "osm", + "language": "en", + "add-image": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.9927642, + 51.1546347 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.15.0-rc-1", + "comment": "Adding data with #MapComplete for theme #http://127.0.0.1:8080/assets/themes/bicycle_rental/bicycle_rental.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-28T18:35:50Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.00000140749019999876, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116718826, + "host": "127.0.0.1:1234", + "theme": "http://127.0.0.1:8080/assets/themes/bicycle_rental/bicycle_rental.json", + "answer": 4, + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2186024499999997, + 51.2005528 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Arickx", + "uid": "9282195", + "editor": "MapComplete 0.15.0", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/xliving/xliving.github.io/main/OSM/amenity-recycling/recycling-organic/mapcomplete.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-28T16:07:13Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116713659, + "host": "mapcomplete.osm.be", + "theme": "gh://xliving/xliving.github.io/main/osm/amenity-recycling/recycling-organic/mapcomplete.json", + "answer": 1, + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2227347, + 51.2227335 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.15.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-28T16:05:29Z", + "reviewed_features": [], + "create": 3, + "modify": 9, + "delete": 0, + "area": 0.0000961499082600199, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116713573, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 12, + "imagery": "CartoDB.Voyager", + "language": "en", + "add-image": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3874675, + 50.860726549999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.15.0", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-28T15:18:31Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 8.3280959998577e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116711729, + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "cyclosm", + "language": "en", + "add-image": 4, + "change_within_25m": 2, + "change_within_500m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.5700582, + -33.5922434 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.15.0-rc-1", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-28T14:42:38Z", + "reviewed_features": [], + "create": 1, + "modify": 5, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116710319, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "cyclofix", + "answer": 7, + "imagery": "CartoDB.Voyager", + "language": "nl", + "add-image": 2, + "change_over_5000m": 1, + "change_within_25m": 9 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2130557, + 51.2262186 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.15.0-rc-1", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-28T14:36:03Z", + "reviewed_features": [], + "create": 0, + "modify": 11, + "delete": 0, + "area": 0.0000105203646899932, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116710083, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "etymology", + "answer": 10, + "imagery": "osm", + "language": "nl", + "add-image": 2, + "change_within_50m": 2, + "change_within_100m": 6, + "change_within_500m": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.21028495, + 51.22414125 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.15.0", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-28T11:59:25Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116704794, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "nl", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.450733, + 51.0860489 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.15.0", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-28T10:25:01Z", + "reviewed_features": [], + "create": 1, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116701187, + "host": "mapcomplete.osm.be", + "theme": "benches", + "answer": 5, + "imagery": "AGIV", + "language": "en", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3615407, + 50.8655084 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.15.0", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-28T09:50:53Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.00008107748580005, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116699921, + "host": "mapcomplete.osm.be", + "theme": "shops", + "imagery": "osm", + "language": "en", + "add-image": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.377382, + 50.866593949999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.15.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-28T09:42:19Z", + "reviewed_features": [], + "create": 5, + "modify": 11, + "delete": 0, + "area": 0.0000651249312400366, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116699600, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 28, + "imagery": "AGIV", + "language": "en", + "add-image": 6 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.36936375, + 50.8665814 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "jospyck", + "uid": "12128135", + "editor": "MapComplete 0.15.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-28T08:38:40Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 2.61590000002776e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116697144, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 2, + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2033171, + 50.91468155 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "bollyboll", + "uid": "12120321", + "editor": "MapComplete 0.15.0", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-28T07:24:53Z", + "reviewed_features": [], + "create": 6, + "modify": 0, + "delete": 0, + "area": 0.00000126834246000256, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116694883, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "answer": 3, + "imagery": "osm", + "language": "de", + "change_over_5000m": 6, + "change_within_25m": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.806203, + 48.01815485 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.15.0-rc-1", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-28T01:40:12Z", + "reviewed_features": [], + "create": 0, + "modify": 8, + "delete": 0, + "area": 0.00000931708730001056, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116687884, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "etymology", + "answer": 11, + "imagery": "osm", + "language": "nl", + "change_within_5000m": 11 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2201764, + 51.19624135 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.15.0-rc-1", + "comment": "Adding data with #MapComplete for theme #http://127.0.0.1:8080/assets/themes/bicycle_rental/bicycle_rental.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-28T01:36:42Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 3.08587500003621e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116687814, + "host": "127.0.0.1:1234", + "theme": "http://127.0.0.1:8080/assets/themes/bicycle_rental/bicycle_rental.json", + "answer": 5, + "imagery": "osm", + "language": "nl", + "change_within_5000m": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2186476500000003, + 51.19689015 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "paunofu", + "uid": "13779940", + "editor": "MapComplete 0.15.0", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/yopaseopor/mcquests/master/wherethesidewalkshavenoname.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-28T00:25:54Z", + "reviewed_features": [], + "create": 0, + "modify": 7, + "delete": 0, + "area": 0.0000339124622400134, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116686782, + "host": "mapcomplete.osm.be", + "theme": "gh://yopaseopor/mcquests/master/wherethesidewalkshavenoname.json", + "answer": 9, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.11324745, + 38.8354727 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.15.0", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/xliving/xliving.github.io/main/OSM/amenity-recycling/recycling-organic/mapcomplete.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-27T23:09:14Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116685572, + "host": "mapcomplete.osm.be", + "theme": "gh://xliving/xliving.github.io/main/osm/amenity-recycling/recycling-organic/mapcomplete.json", + "answer": 1, + "imagery": "osm", + "language": "nl", + "change_within_5000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2227347, + 51.2227335 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Stinus_Clasius", + "uid": "1086503", + "editor": "MapComplete 0.15.0", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-27T21:27:21Z", + "reviewed_features": [], + "create": 121, + "modify": 11, + "delete": 0, + "area": 0.000242894437729942, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116683137, + "host": "mapcomplete.osm.be", + "move": 9, + "theme": "grb", + "import": 12, + "imagery": "osm", + "language": "nl", + "conflation": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.66370005, + 51.349533750000006 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.15.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-27T17:16:16Z", + "reviewed_features": [], + "create": 4, + "modify": 2, + "delete": 0, + "area": 0.0000286642542400079, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116675422, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 10, + "imagery": "AGIV", + "language": "nl", + "change_over_5000m": 4, + "change_within_5000m": 10 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2352218, + 50.7343714 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.15.0", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-27T15:06:36Z", + "reviewed_features": [], + "create": 98, + "modify": 10, + "delete": 0, + "area": 0.0000121179275999887, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116670817, + "host": "mapcomplete.osm.be", + "move": 8, + "theme": "grb", + "import": 13, + "imagery": "osm", + "language": "en", + "conflation": 4, + "change_over_5000m": 11 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.2641247, + 50.15758685 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.15.0", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-27T13:14:47Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116666480, + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "cyclosm", + "language": "en", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -72.1031394, + -36.6072722 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Oberfuzzi", + "uid": "14794109", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-27T09:11:23Z", + "reviewed_features": [], + "create": 4, + "modify": 5, + "delete": 0, + "area": 0.00000506531273999234, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116656004, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 12.997329100000002, + 52.00868745 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.15.0", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-27T03:42:47Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 4.6682299996363e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116646267, + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "cyclosm", + "language": "en", + "add-image": 2, + "change_within_25m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.56981205, + -33.59239755 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.15.0", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-27T02:32:46Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116645369, + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "cyclosm", + "language": "en", + "add-image": 1, + "change_within_50m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.5697582, + -33.5927064 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.15.0", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-26T23:10:18Z", + "reviewed_features": [], + "create": 10, + "modify": 11, + "delete": 0, + "area": 3.01669379997268e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116642455, + "host": "mapcomplete.osm.be", + "move": 10, + "theme": "grb", + "import": 1, + "imagery": "osm", + "language": "nl", + "conflation": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.9440349999999995, + 51.17657525 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "nutsd02440", + "uid": "14948432", + "editor": "MapComplete 0.15.0-rc-1", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-26T21:10:49Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116639191, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "surveillance", + "imagery": "osm", + "language": "en", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -82.73682, + 42.6813272 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "RobJN", + "uid": "411244", + "editor": "MapComplete 0.15.0", + "comment": "Adding data with #MapComplete for theme #uk_addresses", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-26T21:03:45Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116638996, + "host": "mapcomplete.osm.be", + "theme": "uk_addresses", + "import": 1, + "imagery": "osm", + "language": "en", + "change_over_5000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.6050693, + 52.287768 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.14.4", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-26T18:04:09Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116632831, + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "cyclosm", + "language": "en", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.5701008, + -33.5922799 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "StefDeGreef", + "uid": "1860737", + "editor": "MapComplete 0.14.4", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-26T16:54:11Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116630080, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 4, + "imagery": "CartoDB.Voyager", + "language": "fr", + "add-image": 1, + "change_over_5000m": 1, + "change_within_25m": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4230499, + 50.8238691 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "sebkur", + "uid": "22917", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-26T13:55:23Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116623879, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 14.7200229, + 51.951571 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "sebkur", + "uid": "22917", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-26T10:31:44Z", + "reviewed_features": [], + "create": 3, + "modify": 2, + "delete": 0, + "area": 0.0000024634888400043, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116617025, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 14.712339, + 51.95319485 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "habi", + "uid": "15671", + "editor": "MapComplete 0.14.4", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-26T09:24:21Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116614780, + "host": "mapcomplete.osm.be", + "theme": "trees", + "answer": 3, + "imagery": "osm", + "language": "en", + "change_within_25m": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.4343939, + 46.942024 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.14.4", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-26T02:19:01Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 1.11591089992536e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116607298, + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "cyclosm", + "language": "en", + "add-image": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.56955145, + -33.59287325 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.14.4", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-25T21:45:41Z", + "reviewed_features": [], + "create": 28, + "modify": 8, + "delete": 0, + "area": 5.42221380000553e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116602785, + "host": "mapcomplete.osm.be", + "move": 4, + "theme": "grb", + "answer": 3, + "import": 4, + "imagery": "osm", + "language": "nl", + "conflation": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.00652675, + 51.125120100000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "febutix", + "uid": "14929311", + "editor": "MapComplete 0.14.4", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-25T19:26:17Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 0.00000925620282999628, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116598894, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "answer": 6, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 12.35655525, + 51.37578895 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.14.4", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-25T19:19:22Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116598670, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 4, + "imagery": "CartoDB.Voyager", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.4076949, + 50.9022336 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Dominic Z", + "uid": "56475", + "editor": "MapComplete 0.14.4", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-25T19:08:20Z", + "reviewed_features": [], + "create": 0, + "modify": 53, + "delete": 0, + "area": 0.000219547729519855, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116598337, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 69, + "imagery": "osm", + "language": "de", + "change_within_100m": 1, + "change_within_500m": 39, + "change_within_1000m": 23, + "change_within_5000m": 6 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.60475495, + 48.893630200000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Eric Royer", + "uid": "12137407", + "editor": "MapComplete 0.14.4", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-25T18:02:19Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 7.07552439995965e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116596008, + "host": "mapcomplete.osm.be", + "theme": "food", + "answer": 4, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.58998315, + 45.3685482 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.14.4", + "comment": "Adding data with #MapComplete for theme #aed_brugge", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-25T14:06:53Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.00000751373524000127, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116587243, + "host": "mapcomplete.osm.be", + "theme": "aed", + "answer": 4, + "imagery": "HDM_HOT", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.23648865, + 50.734142000000006 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.14.4", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-25T13:47:08Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.000159310590100029, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116586469, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/signals", + "answer": 2, + "imagery": "osm", + "language": "es", + "change_within_50m": 1, + "change_within_100m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.6564494, + -34.65655835 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Erin76", + "uid": "8982454", + "editor": "MapComplete 0.14.4", + "comment": "Adding data with #MapComplete for theme #openwindpowermap", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-25T13:03:11Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116584832, + "host": "mapcomplete.osm.be", + "theme": "openwindpowermap", + "answer": 1, + "imagery": "CartoDB.Positron", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.0354918, + 50.8911597 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.14.4", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/railway", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-25T12:48:50Z", + "reviewed_features": [], + "create": 0, + "modify": 6, + "delete": 0, + "area": 1.30967999973559e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116584318, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/railway", + "answer": 12, + "imagery": "osm", + "language": "en", + "change_over_5000m": 7, + "change_within_25m": 1, + "change_within_50m": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.5300206, + -34.57497515 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "tiptracks", + "uid": "513840", + "editor": "MapComplete 0.14.4", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-25T07:59:25Z", + "reviewed_features": [], + "create": 0, + "modify": 56, + "delete": 0, + "area": 0.000173014503740079, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116573101, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 85, + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.6628074999999995, + 53.08572045 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "omnibeet", + "uid": "10145113", + "editor": "MapComplete 0.14.4", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-25T02:20:20Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 9.57015000004629e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116565413, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "answer": 2, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -121.92194605, + 37.79153255 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.15.0-alpha-2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-25T02:16:00Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116565370, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "toerisme_vlaanderen", + "import": 1, + "imagery": "osm", + "language": "nl", + "change_over_5000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3683341, + 51.3318233 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.14.4", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-24T22:32:21Z", + "reviewed_features": [], + "create": 43, + "modify": 107, + "delete": 13, + "area": 0.0000626125906600265, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116561818, + "host": "mapcomplete.osm.be", + "move": 91, + "theme": "grb", + "import": 6, + "imagery": "AGIV", + "language": "nl", + "conflation": 32, + "change_over_5000m": 6 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.9852492999999996, + 51.18475345 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "confusedbuffalo", + "uid": "242345", + "editor": "MapComplete 0.14.4", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-24T22:29:11Z", + "reviewed_features": [], + "create": 0, + "modify": 80, + "delete": 0, + "area": 0.00171805430148003, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116561728, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 111, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.5816227999999999, + 54.901477400000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.14.4", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-24T22:25:47Z", + "reviewed_features": [], + "create": 37, + "modify": 26, + "delete": 1, + "area": 0.00000953489481004836, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116561651, + "host": "mapcomplete.osm.be", + "move": 21, + "theme": "grb", + "import": 4, + "imagery": "osm", + "language": "nl", + "conflation": 10, + "change_over_5000m": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.98896845, + 51.182845549999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "tiptracks", + "uid": "513840", + "editor": "MapComplete 0.14.4", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-24T19:39:16Z", + "reviewed_features": [], + "create": 0, + "modify": 63, + "delete": 0, + "area": 0.0010201372895999, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116556239, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 87, + "imagery": "osm", + "language": "nl", + "change_within_500m": 13, + "change_within_1000m": 21, + "change_within_5000m": 53 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.688803999999999, + 53.07935005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "RNoerr", + "uid": "14846404", + "editor": "MapComplete 0.14.3", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-24T15:21:25Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 2.37250000203903e-10, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116545513, + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "trees", + "imagery": "cyclosm", + "language": "en", + "add-image": 1, + "move:node/9444973776": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.54325614999999, + -33.44285375 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "GBAB", + "uid": "3335899", + "editor": "MapComplete 0.14.3", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-24T14:52:19Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000379038275000676, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116544521, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 1, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 20.13315905, + 46.242142650000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.14.3", + "comment": "Adding data with #MapComplete for theme #test", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-24T13:55:37Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116542643, + "host": "mapcomplete.osm.be", + "theme": "test", + "answer": 1, + "imagery": "cyclosm", + "language": "en", + "change_within_5000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.2476759, + -39.8157794 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.14.3", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-24T13:54:10Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.00000429368235000938, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116542587, + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "cyclosm", + "language": "en", + "add-image": 2, + "change_within_1000m": 1, + "change_within_5000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.24599225, + -39.814452849999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.14.3", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-24T12:25:58Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 8.71140299987843e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116539369, + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "cyclosm", + "language": "en", + "add-image": 3, + "change_over_5000m": 1, + "change_within_50m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.23293275, + -39.84288665 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.14.3", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-24T12:05:51Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116538531, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 4, + "imagery": "osm", + "language": "en", + "change_over_5000m": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.1241237, + 51.2236943 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.14.3", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-24T11:51:01Z", + "reviewed_features": [], + "create": 86, + "modify": 0, + "delete": 0, + "area": 4.16711839998382e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116537976, + "host": "mapcomplete.osm.be", + "theme": "grb", + "import": 7, + "imagery": "osm", + "language": "en", + "change_over_5000m": 7 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.12275175, + 51.221985399999994 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.14.3", + "comment": "Adding data with #MapComplete for theme #cyclestreets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-24T11:47:44Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000342298308000794, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116537847, + "host": "mapcomplete.osm.be", + "theme": "cyclestreets", + "answer": 1, + "imagery": "osm", + "language": "en", + "change_over_5000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.1369779, + 51.164167649999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.15.0-alpha-2", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-24T10:55:34Z", + "reviewed_features": [], + "create": 36, + "modify": 155, + "delete": 4, + "area": 0.00000279522179998971, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116535808, + "host": "pietervdvn.github.io", + "move": 136, + "path": "mc/develop/", + "theme": "grb", + "import": 4, + "imagery": "AGIV", + "language": "nl", + "conflation": 38, + "change_over_5000m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.98761725, + 51.1804887 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.14.2", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-24T00:16:51Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116519085, + "host": "mapcomplete.osm.be", + "theme": "food", + "imagery": "osm", + "language": "en", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.5241815, + 49.2290904 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.14.2", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-24T00:13:50Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 1.00273440000094e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116519038, + "host": "mapcomplete.osm.be", + "theme": "shops", + "imagery": "osm", + "language": "en", + "add-image": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.521208999999999, + 49.2330217 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.14.1", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-23T22:57:30Z", + "reviewed_features": [], + "create": 2, + "modify": 3, + "delete": 0, + "area": 0.00000417210731000175, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116517846, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "en", + "add-image": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.52364265, + 49.22973895 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.14.1", + "comment": "Adding data with #MapComplete for theme #cycle_infra", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-23T22:32:49Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116517297, + "host": "mapcomplete.osm.be", + "theme": "cycle_infra", + "answer": 2, + "imagery": "CartoDB.Voyager", + "language": "en", + "change_over_5000m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.6977179, + -34.6656855 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.14.1", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-23T22:15:53Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116516938, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/signals", + "answer": 3, + "imagery": "osm", + "language": "es", + "change_within_25m": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.4244061, + -34.6110649 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Stinus_Clasius", + "uid": "1086503", + "editor": "MapComplete 0.14.1", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-23T21:08:30Z", + "reviewed_features": [], + "create": 21, + "modify": 21, + "delete": 0, + "area": 6.93011939996776e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116515172, + "host": "mapcomplete.osm.be", + "move": 16, + "theme": "grb", + "answer": 3, + "import": 3, + "imagery": "osm", + "language": "nl", + "conflation": 6 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.740266500000001, + 51.40866905 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.14.1", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-23T19:13:53Z", + "reviewed_features": [], + "create": 0, + "modify": 10, + "delete": 0, + "area": 3.2040799999588e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116511833, + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "osm", + "language": "en", + "add-image": 10, + "change_over_5000m": 8 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.2328015, + -39.8429688 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.14.1", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-23T16:26:27Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116506336, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "en", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1947952, + 51.1763651 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.14.1", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-23T16:17:53Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.0000086998715999985, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116505950, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 2, + "imagery": "CartoDB.Voyager", + "language": "en", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.19529115, + 51.1779451 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "jospyck", + "uid": "12128135", + "editor": "MapComplete 0.14.1", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-23T15:33:43Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 4.64379999998317e-9, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116504080, + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "toerisme_vlaanderen", + "answer": 5, + "imagery": "AGIV", + "language": "nl", + "change_over_5000m": 1, + "change_within_25m": 6, + "move:node/9442452056": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.458398799999999, + 51.0217554 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "sebkur", + "uid": "22917", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-23T15:08:30Z", + "reviewed_features": [], + "create": 6, + "modify": 6, + "delete": 0, + "area": 0.0000192773456999972, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116503101, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 14.62747115, + 51.7390956 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "jospyck", + "uid": "12128135", + "editor": "MapComplete 0.14.1", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-23T14:25:12Z", + "reviewed_features": [], + "create": 1, + "modify": 7, + "delete": 1, + "area": 0.00000264645007000264, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116501463, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 13, + "imagery": "AGIV", + "deletion": 1, + "language": "nl", + "change_over_5000m": 1, + "change_within_25m": 7, + "change_within_50m": 6, + "change_within_500m": 1, + "deletion:node/8572587333": "disused" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.45837735, + 51.02112345 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "confusedbuffalo", + "uid": "242345", + "editor": "MapComplete 0.14.1", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-23T09:46:08Z", + "reviewed_features": [], + "create": 0, + "modify": 51, + "delete": 0, + "area": 0.000589263945929979, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116491728, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 78, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.5692373499999999, + 54.88496725 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "StefDeGreef", + "uid": "1860737", + "editor": "MapComplete 0.14.1", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-23T09:21:51Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 6.53219999857112e-10, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116491069, + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "cyclofix", + "answer": 3, + "imagery": "CartoDB.Voyager", + "language": "fr", + "add-image": 1, + "change_within_25m": 5, + "move:node/7634798362": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4576957, + 50.961111450000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Mich4711", + "uid": "12764098", + "editor": "MapComplete 0.14.1", + "comment": "Adding data with #MapComplete for theme #cycle_infra", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-23T07:03:23Z", + "reviewed_features": [], + "create": 0, + "modify": 6, + "delete": 0, + "area": 0.000115274098339935, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116488734, + "host": "mapcomplete.osm.be", + "theme": "cycle_infra", + "answer": 12, + "imagery": "CartoDB.Voyager", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.8124763999999995, + 51.09496155 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.14.1", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/seppesantens/MapComplete-Themes/main/cyclenodenetworks/cyclenodenetworks.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-22T19:30:09Z", + "reviewed_features": [], + "create": 0, + "modify": 10, + "delete": 0, + "area": 0.00315847708793968, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116477825, + "host": "mapcomplete.osm.be", + "theme": "gh://seppesantens/mapcomplete-themes/main/cyclenodenetworks/cyclenodenetworks.json", + "answer": 10, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.36666135, + 51.1008506 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.14.1", + "comment": "Adding data with #MapComplete for theme #nature", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-22T19:26:42Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.00000626235553999491, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116477778, + "host": "mapcomplete.osm.be", + "theme": "nature", + "imagery": "osm", + "language": "nl", + "add-image": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.31298025, + 51.1065399 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.14.1", + "comment": "Adding data with #MapComplete for theme #postboxes", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-22T19:22:38Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116477697, + "host": "mapcomplete.osm.be", + "theme": "postboxes", + "imagery": "CartoDB.Voyager", + "language": "en", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3195172, + 51.1152861 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.14.1", + "comment": "Adding data with #MapComplete for theme #artwork", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-22T19:17:14Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116477554, + "host": "mapcomplete.osm.be", + "theme": "artwork", + "imagery": "osm", + "language": "en", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3110784, + 51.1131436 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.15.0-alpha-1", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-22T19:17:02Z", + "reviewed_features": [], + "create": 2, + "modify": 9, + "delete": 0, + "area": 0.00000718946479999856, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116477552, + "host": "pietervdvn.github.io", + "move": 1, + "path": "mc/develop/", + "theme": "food", + "answer": 10, + "imagery": "osm", + "language": "en", + "add-image": 1, + "change_over_5000m": 2, + "change_within_25m": 12, + "move:node/9439916874": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.1239862, + 51.2208381 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.15.0-alpha-1", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-22T19:13:45Z", + "reviewed_features": [], + "create": 9, + "modify": 5, + "delete": 0, + "area": 1.15958440000032e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116477462, + "host": "pietervdvn.github.io", + "move": 4, + "path": "mc/develop/", + "theme": "grb", + "import": 1, + "imagery": "osm", + "language": "en", + "conflation": 2, + "change_within_50m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.1229162, + 51.2224231 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.14.1", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/seppesantens/mapcomplete-themes/main/walkingnodenetworks/walkingnodenetworks.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-22T18:16:40Z", + "reviewed_features": [], + "create": 0, + "modify": 19, + "delete": 0, + "area": 0.000248568796900044, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116475963, + "host": "mapcomplete.osm.be", + "theme": "gh://seppesantens/mapcomplete-themes/main/walkingnodenetworks/walkingnodenetworks.json", + "answer": 15, + "imagery": "osm", + "language": "en", + "add-image": 6 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.31706595, + 51.1103648 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.15.0-alpha-1", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-22T17:34:40Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116474641, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "food", + "answer": 5, + "imagery": "osm", + "language": "en", + "change_over_5000m": 1, + "change_within_25m": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.1227752, + 51.2223189 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.14.1", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-22T17:13:40Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116473925, + "host": "mapcomplete.osm.be", + "theme": "benches", + "answer": 1, + "imagery": "osm", + "language": "en", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3541679, + 51.1054843 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Frans_Napaters", + "uid": "3574538", + "editor": "MapComplete 0.14.1", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 2, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-22T10:47:57Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116461006, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.876773, + 51.0710463 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "LySioS", + "uid": "11579673", + "editor": "MapComplete 0.14.1", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-22T08:08:25Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116457152, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "answer": 3, + "imagery": "osm", + "language": "fr", + "change_within_5000m": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.941156, + 42.702383 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.14.1", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-22T03:04:55Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116453646, + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "cyclosm", + "language": "en", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 130.5694434, + 31.765696 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "LySioS", + "uid": "11579673", + "editor": "MapComplete 0.14.1", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-21T22:01:27Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116449226, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "imagery": "osm", + "language": "fr" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.941156, + 42.702383 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.14.1", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-21T20:33:28Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116446646, + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "osm", + "language": "en", + "add-image": 1, + "change_within_500m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.688579, + -33.544727 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Eric Royer", + "uid": "12137407", + "editor": "MapComplete 0.14.1", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-21T18:14:59Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.00000714259083999707, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116442724, + "host": "mapcomplete.osm.be", + "theme": "food", + "answer": 2, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.5915541, + 45.3667009 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Casi1980", + "uid": "13989376", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-21T16:13:53Z", + "reviewed_features": [], + "create": 5, + "modify": 0, + "delete": 0, + "area": 0.0000342879884000059, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116438284, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 14.16730235, + 52.4009305 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Redssu", + "uid": "13639663", + "editor": "MapComplete 0.14.1", + "comment": "Adding data with #MapComplete for theme #parkings", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-21T15:44:01Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 1, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116437063, + "host": "mapcomplete.osm.be", + "theme": "parkings", + "imagery": "Geoportal2-PL-aerial_image_WMTS", + "deletion": 1, + "language": "en", + "deletion:node/9437251385": "testing point" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 17.402716, + 52.0871765 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "bollyboll", + "uid": "12120321", + "editor": "MapComplete 0.14.1", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-21T13:19:01Z", + "reviewed_features": [], + "create": 2, + "modify": 0, + "delete": 0, + "area": 2.99949870002994e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116431524, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "imagery": "osm", + "language": "de", + "change_over_5000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.876745750000001, + 47.98920365 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.14.1", + "comment": "Adding data with #MapComplete for theme #campersite", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-21T08:41:49Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 2.98837170000368e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116418875, + "host": "mapcomplete.osm.be", + "theme": "campersite", + "answer": 4, + "imagery": "osm", + "language": "en", + "add-image": 2, + "change_within_25m": 6 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.93470065, + 47.51954345 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "bollyboll", + "uid": "12120321", + "editor": "MapComplete 0.14.1", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-21T08:04:56Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116417325, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "imagery": "osm", + "language": "de", + "change_over_5000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.7917955, + 48.0038767 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Frans_Napaters", + "uid": "3574538", + "editor": "MapComplete 0.14.1", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-21T07:45:01Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116416417, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 5, + "imagery": "CartoDB.Voyager", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.8407651, + 51.1844879 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.15.0-alpha", + "comment": "Adding data with #MapComplete for theme #entrances", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-21T02:38:05Z", + "reviewed_features": [], + "create": 2, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116409050, + "host": "127.0.0.1:1234", + "theme": "entrances", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2211101, + 51.2165519 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "bponkishore", + "uid": "14062769", + "editor": "MapComplete 0.14.1", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-20T14:20:21Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.000010727936059982, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116387905, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 2, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 79.48586145, + 11.609596400000001 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "bponkishore", + "uid": "14062769", + "editor": "MapComplete 0.14.1", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-20T14:15:01Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 6.74894049995624e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116387718, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 1, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 79.49300495, + 11.61079045 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "bponkishore", + "uid": "14062769", + "editor": "MapComplete 0.14.1", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-20T14:11:53Z", + "reviewed_features": [], + "create": 0, + "modify": 7, + "delete": 0, + "area": 0.0000521909006399796, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116387593, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 8, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 79.4919115, + 11.6108397 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "bponkishore", + "uid": "14062769", + "editor": "MapComplete 0.14.1", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-20T13:56:54Z", + "reviewed_features": [], + "create": 0, + "modify": 10, + "delete": 0, + "area": 0.000153664163840007, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116387099, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 10, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 79.4853311, + 11.6160407 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Frans_Napaters", + "uid": "3574538", + "editor": "MapComplete 0.14.1", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-20T10:48:08Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116379703, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "nl", + "change_over_5000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.8407651, + 51.1844879 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Camilo Nuñez Castro", + "uid": "5143819", + "editor": "MapComplete 0.14.1", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-20T10:23:50Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.0153640376684809, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116378559, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "answer": 3, + "imagery": "HDM_HOT", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -71.1644866, + -33.527211300000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.14.1", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-20T10:04:57Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116377738, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "answer": 2, + "imagery": "osm", + "language": "en", + "change_within_25m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.9138955, + 43.557006 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.14.1", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-20T10:04:52Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116377734, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "answer": 4, + "imagery": "osm", + "language": "en", + "change_over_5000m": 1, + "change_within_25m": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.9138955, + 43.557006 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Frans_Napaters", + "uid": "3574538", + "editor": "MapComplete 0.14.1", + "comment": "Adding data with #MapComplete for theme #waste_basket", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-20T09:38:11Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116376644, + "host": "mapcomplete.osm.be", + "theme": "waste_basket", + "answer": 2, + "imagery": "osm", + "language": "nl", + "change_over_5000m": 1, + "change_within_50m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.8438334, + 51.1846001 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Frans_Napaters", + "uid": "3574538", + "editor": "MapComplete 0.14.1", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-20T09:26:32Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116376152, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "nl", + "add-image": 1, + "change_within_50m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.8413405, + 51.1844432 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Welshie", + "uid": "508", + "editor": "MapComplete 0.14.1", + "comment": "Adding data with #MapComplete for theme #uk_addresses", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-19T22:24:42Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 2.35348200000993e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116361219, + "host": "mapcomplete.osm.be", + "theme": "uk_addresses", + "answer": 2, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.6997616, + 51.551828150000006 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.14.1", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-19T21:27:48Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.00000219359049998863, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116359563, + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "cyclosm", + "language": "en", + "add-image": 3, + "change_within_1000m": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.2489349, + -39.81135755 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Eric Royer", + "uid": "12137407", + "editor": "MapComplete 0.14.1", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-19T19:46:59Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 1.11867210000184e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116356310, + "host": "mapcomplete.osm.be", + "theme": "food", + "answer": 4, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.5919811500000005, + 45.359122850000006 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "spelledwrongdotuk", + "uid": "12198029", + "editor": "MapComplete 0.14.1", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-19T18:01:59Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 4.04546999997997e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116353102, + "host": "mapcomplete.osm.be", + "theme": "shops", + "imagery": "osm", + "language": "en", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -2.4146299, + 51.54057515 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "mweper", + "uid": "1311281", + "editor": "MapComplete 0.14.1", + "comment": "Adding data with #MapComplete for theme #observation_towers", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-19T16:47:40Z", + "reviewed_features": [], + "create": 0, + "modify": 19, + "delete": 0, + "area": 0.00134167138663015, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116350440, + "host": "mapcomplete.osm.be", + "theme": "observation_towers", + "answer": 22, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -60.717606450000005, + -32.95491625 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "mweper", + "uid": "1311281", + "editor": "MapComplete 0.14.1", + "comment": "Adding data with #MapComplete for theme #entrances", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-19T16:43:12Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116350272, + "host": "mapcomplete.osm.be", + "theme": "entrances", + "answer": 2, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -60.8128564, + -32.9191204 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "mweper", + "uid": "1311281", + "editor": "MapComplete 0.14.1", + "comment": "Adding data with #MapComplete for theme #cafes_and_pubs", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-19T16:38:58Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 2.21421599998492e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116350132, + "host": "mapcomplete.osm.be", + "theme": "cafes_and_pubs", + "answer": 3, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -60.81164535, + -32.9182597 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "mweper", + "uid": "1311281", + "editor": "MapComplete 0.14.1", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-19T16:35:53Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116350004, + "host": "mapcomplete.osm.be", + "theme": "benches", + "answer": 1, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -60.8075963, + -32.9118752 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "mweper", + "uid": "1311281", + "editor": "MapComplete 0.14.1", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-19T16:30:58Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116349812, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "answer": 2, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -60.8102045, + -32.9180053 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "mweper", + "uid": "1311281", + "editor": "MapComplete 0.14.1", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-19T16:24:53Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.000201229218709971, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116349573, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "answer": 3, + "imagery": "CartoDB.Voyager", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -60.811818349999996, + -32.92832065 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.14.1", + "comment": "Adding data with #MapComplete for theme #campersite", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-19T15:01:58Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116346307, + "host": "mapcomplete.osm.be", + "theme": "campersite", + "answer": 4, + "imagery": "osm", + "language": "en", + "change_over_5000m": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.9968427, + 42.8927249 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "WinstonSmith", + "uid": "36030", + "editor": "MapComplete 0.14.1", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-19T13:55:39Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 3.01599999994786e-10, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116343902, + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "cyclofix", + "answer": 5, + "imagery": "CartoDB.Voyager", + "language": "en", + "change_over_5000m": 1, + "change_within_25m": 6, + "move:node/9431075016": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.39543145, + 44.5057338 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.14.1", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-19T13:50:57Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116343730, + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "cyclosm", + "language": "en", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -71.6127057, + -33.5828149 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.14.1", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-19T10:45:00Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116336052, + "host": "mapcomplete.osm.be", + "theme": "shops", + "answer": 2, + "imagery": "osm", + "language": "en", + "change_within_25m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.6120027, + 42.3854559 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.14.1", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-19T10:35:19Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116335626, + "host": "mapcomplete.osm.be", + "theme": "aed", + "answer": 6, + "imagery": "osm", + "language": "en", + "add-image": 1, + "change_over_5000m": 1, + "change_within_50m": 7 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.6151991, + 42.3833737 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.14.1", + "comment": "Adding data with #MapComplete for theme #campersite", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-19T10:28:03Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116335294, + "host": "mapcomplete.osm.be", + "theme": "campersite", + "answer": 5, + "imagery": "osm", + "language": "en", + "add-image": 1, + "change_over_5000m": 1, + "change_within_25m": 6 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.6160606, + 42.3832823 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "bollyboll", + "uid": "12120321", + "editor": "MapComplete 0.14.1", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-19T07:10:54Z", + "reviewed_features": [], + "create": 6, + "modify": 0, + "delete": 0, + "area": 0.00000504208404000317, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116327686, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "imagery": "osm", + "language": "de", + "change_over_5000m": 6 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.7979062, + 47.9973627 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "c_cesar", + "uid": "12078598", + "editor": "MapComplete 0.14.1", + "comment": "Adding data with #MapComplete for theme #street_lighting", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-19T02:56:44Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.000101179301879975, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116322023, + "host": "mapcomplete.osm.be", + "theme": "street_lighting", + "answer": 2, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -44.90216035, + -20.1514238 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "jospyck", + "uid": "12128135", + "editor": "MapComplete 0.14.1", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-18T20:28:48Z", + "reviewed_features": [], + "create": 2, + "modify": 16, + "delete": 0, + "area": 0.0352407458746197, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116315097, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 23, + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.315534700000001, + 50.98703155 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "InsertUser", + "uid": "89098", + "editor": "MapComplete 0.14.1", + "comment": "Adding data with #MapComplete for theme #street_lighting", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-18T18:02:57Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.000014509771999975, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116310179, + "host": "mapcomplete.osm.be", + "theme": "street_lighting", + "answer": 1, + "imagery": "osm", + "language": "en", + "change_within_5000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -78.6171767, + 26.522722299999998 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Brandoberinspektor Erdmann", + "uid": "13364061", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-18T17:12:40Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116308236, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.8111556, + 52.8245416 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Emilius123", + "uid": "13874704", + "editor": "MapComplete 0.14.0", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-18T16:54:19Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116307538, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "answer": 3, + "imagery": "osm", + "language": "de" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.31451, + 49.6111974 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "H@mlet", + "uid": "691314", + "editor": "MapComplete 0.14.0", + "comment": "Adding data with #MapComplete for theme #maps", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-18T16:51:45Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 1, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116307441, + "host": "mapcomplete.osm.be", + "theme": "maps", + "answer": 2, + "imagery": "osm", + "deletion": 1, + "language": "en", + "deletion:node/9428929578": "testing point" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.6632915, + 48.2497405 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "StefDeGreef", + "uid": "1860737", + "editor": "MapComplete 0.14.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-18T16:39:34Z", + "reviewed_features": [], + "create": 1, + "modify": 6, + "delete": 1, + "area": 1.13525999902947e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116307009, + "host": "mapcomplete.osm.be", + "move": 2, + "theme": "cyclofix", + "answer": 7, + "imagery": "CartoDB.Voyager", + "deletion": 1, + "language": "fr", + "add-image": 2, + "change_over_5000m": 1, + "change_within_25m": 12, + "move:node/9428878139": "improve_accuracy", + "deletion:node/2895132452": "mauvaise catégorie" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.41250475, + 50.7928359 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.14.0", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-18T15:01:18Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116302996, + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "cyclosm", + "language": "en", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -71.60132, + -33.0506821 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "redsteakraw", + "uid": "139856", + "editor": "MapComplete 0.14.0", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-18T14:39:27Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116302086, + "host": "mapcomplete.osm.be", + "theme": "shops", + "imagery": "osm", + "language": "en", + "change_over_5000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.2254687, + 41.1775402 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.14.0", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-18T14:12:49Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.0000156636832000166, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116301008, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "answer": 2, + "imagery": "CartoDB.Voyager", + "language": "en", + "change_within_5000m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1997808, + 51.2480584 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.14.0", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-18T12:30:33Z", + "reviewed_features": [], + "create": 493, + "modify": 24, + "delete": 0, + "area": 0.000123694740399945, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116297063, + "host": "mapcomplete.osm.be", + "move": 12, + "theme": "grb", + "answer": 12, + "import": 70, + "imagery": "osm", + "language": "nl", + "conflation": 6, + "change_over_5000m": 31 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.4259625499999995, + 50.9443591 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Oberfuzzi", + "uid": "14794109", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-18T09:11:57Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116288326, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 12.9979688, + 52.0042014 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Alexmol", + "uid": "347293", + "editor": "MapComplete 0.14.0", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-18T08:18:34Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 4.42062000027127e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116286179, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "answer": 3, + "imagery": "CartoDB.Voyager", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -7.997677400000001, + 37.097929050000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "bollyboll", + "uid": "12120321", + "editor": "MapComplete 0.14.0", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-18T07:26:13Z", + "reviewed_features": [], + "create": 8, + "modify": 0, + "delete": 0, + "area": 0.0000170105570800058, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116284120, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "imagery": "osm", + "language": "de", + "change_over_5000m": 8 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.7947104, + 47.9985517 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.14.0", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-18T00:26:29Z", + "reviewed_features": [], + "create": 0, + "modify": 6, + "delete": 0, + "area": 2.4180712000211e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116276269, + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "cyclosm", + "language": "en", + "add-image": 10 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -72.9844339, + -41.313438500000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "mweper", + "uid": "1311281", + "editor": "MapComplete 0.13.1", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-17T21:19:15Z", + "reviewed_features": [], + "create": 0, + "modify": 13, + "delete": 0, + "area": 0.0000351928768799252, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116272308, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 16, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -60.817341400000004, + -32.915705599999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.13.1", + "comment": "Adding data with #MapComplete for theme #test", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-17T19:49:35Z", + "reviewed_features": [], + "create": 0, + "modify": 9, + "delete": 0, + "area": 3.24362679983325e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116269302, + "host": "mapcomplete.osm.be", + "theme": "test", + "answer": 1, + "imagery": "cyclosm", + "language": "en", + "add-image": 8 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.232737, + -39.84197315 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "mweper", + "uid": "1311281", + "editor": "MapComplete 0.13.1", + "comment": "Adding data with #MapComplete for theme #cycle_infra", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-17T18:04:59Z", + "reviewed_features": [], + "create": 0, + "modify": 18, + "delete": 0, + "area": 0.0000115978500000235, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116265873, + "host": "mapcomplete.osm.be", + "theme": "cycle_infra", + "answer": 25, + "imagery": "CartoDB.Voyager", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -60.80993265, + -32.9171347 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "mweper", + "uid": "1311281", + "editor": "MapComplete 0.13.1", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-17T17:54:01Z", + "reviewed_features": [], + "create": 0, + "modify": 24, + "delete": 0, + "area": 0.000120456413900002, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116265476, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 47, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -60.81834605, + -32.9249174 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.13.1", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-17T16:06:04Z", + "reviewed_features": [], + "create": 2, + "modify": 3, + "delete": 0, + "area": 2.33004870001592e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116260926, + "host": "mapcomplete.osm.be", + "theme": "aed", + "answer": 5, + "imagery": "osm", + "language": "en", + "add-image": 1, + "change_within_25m": 8 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.93089525, + 41.71797225 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.13.1", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-17T15:22:06Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116259129, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "answer": 7, + "imagery": "PNOA-Spain-TMS", + "language": "en", + "change_over_5000m": 1, + "change_within_25m": 7 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.9338675, + 41.7155799 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "mweper", + "uid": "1311281", + "editor": "MapComplete 0.13.1", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-17T15:05:38Z", + "reviewed_features": [], + "create": 0, + "modify": 11, + "delete": 0, + "area": 0.0000277241270199868, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116258551, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 19, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -60.80894055, + -32.9186193 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.13.1", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-17T14:46:27Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116257758, + "host": "mapcomplete.osm.be", + "theme": "aed", + "answer": 4, + "imagery": "osm", + "language": "en", + "add-image": 1, + "change_within_25m": 3, + "change_within_50m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.9332367, + 41.7201447 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.13.1", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-17T12:46:23Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116253168, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "answer": 1, + "imagery": "PNOA-Spain-TMS", + "language": "en", + "change_within_25m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.7877593, + 41.6692173 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.14.0-rc-1", + "comment": "Adding data with #MapComplete for theme #fritures", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-17T12:35:35Z", + "reviewed_features": [], + "create": 0, + "modify": 6, + "delete": 0, + "area": 1.91868000000708e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116252714, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "fritures", + "answer": 7, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2092487, + 51.187981 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "whatismoss", + "uid": "8427311", + "editor": "MapComplete 0.13.1", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-17T12:12:53Z", + "reviewed_features": [], + "create": 0, + "modify": 19, + "delete": 0, + "area": 0.0000992712495500068, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116251861, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 29, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.05608345, + 50.64385105 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Stinus_Clasius", + "uid": "1086503", + "editor": "MapComplete 0.13.1", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-17T10:29:47Z", + "reviewed_features": [], + "create": 31, + "modify": 0, + "delete": 0, + "area": 7.93330560003959e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116247427, + "host": "mapcomplete.osm.be", + "theme": "grb", + "import": 4, + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.738035, + 51.3890941 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "divyaboomi", + "uid": "14872477", + "editor": "MapComplete 0.13.1", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-17T09:48:47Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116245840, + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "osm", + "language": "en", + "change_over_5000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 78.1197721, + 9.9251855 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.13.1", + "comment": "Adding data with #MapComplete for theme #campersite", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-17T09:08:04Z", + "reviewed_features": [], + "create": 2, + "modify": 6, + "delete": 0, + "area": 0.305596821364734, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116244201, + "host": "mapcomplete.osm.be", + "theme": "campersite", + "answer": 12, + "imagery": "osm", + "language": "en", + "add-image": 1, + "change_over_5000m": 3, + "change_within_25m": 4, + "change_within_50m": 8 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.17652725, + 41.47241845 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "sanchi", + "uid": "170106", + "editor": "MapComplete 0.13.1", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-17T04:53:31Z", + "reviewed_features": [], + "create": 0, + "modify": 20, + "delete": 0, + "area": 0.000192742500800013, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116236409, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 37, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -5.671200300000001, + 40.970611399999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "sanchi", + "uid": "170106", + "editor": "MapComplete 0.13.1", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-16T23:24:25Z", + "reviewed_features": [], + "create": 0, + "modify": 9, + "delete": 0, + "area": 0.0000141224073900198, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116231990, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 24, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -5.67732555, + 40.97097975 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.13.1", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-16T22:06:07Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116230459, + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "cyclosm", + "language": "en", + "add-image": 1, + "change_within_5000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -72.9840192, + -41.3133377 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.13.1", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-16T21:05:16Z", + "reviewed_features": [], + "create": 900, + "modify": 1, + "delete": 0, + "area": 0.0000688753578000003, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116229030, + "host": "mapcomplete.osm.be", + "theme": "grb", + "answer": 1, + "import": 88, + "imagery": "AGIV", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.429169399999999, + 50.94341609999999 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Angel Spotorno", + "uid": "680374", + "editor": "MapComplete 0.13.1", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-16T20:15:16Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116227831, + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.6123594, + -33.4588056 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.13.1", + "comment": "Adding data with #MapComplete for theme #campersite", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-16T16:48:16Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 6.40518009999607e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116221498, + "host": "mapcomplete.osm.be", + "theme": "campersite", + "answer": 7, + "imagery": "osm", + "language": "en", + "change_over_5000m": 7 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.68912875, + 41.62233455 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "ClarissaWAM", + "uid": "13745921", + "editor": "MapComplete 0.13.1", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-16T16:23:38Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116220610, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.9887022, + 49.998414 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "ClarissaWAM", + "uid": "13745921", + "editor": "MapComplete 0.13.1", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-16T16:21:19Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116220534, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "answer": 1, + "imagery": "osm", + "language": "en", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.9887022, + 49.998414 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "bollyboll", + "uid": "12120321", + "editor": "MapComplete 0.13.1", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-16T15:53:58Z", + "reviewed_features": [], + "create": 9, + "modify": 0, + "delete": 0, + "area": 0.000722147582880123, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116219481, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "answer": 2, + "imagery": "Mapbox", + "language": "de", + "change_over_5000m": 9, + "change_within_25m": 1, + "change_within_50m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.825623499999999, + 48.0152577 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "RobJN", + "uid": "411244", + "editor": "MapComplete 0.13.1", + "comment": "Adding data with #MapComplete for theme #uk_addresses", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-16T14:41:15Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116216583, + "host": "mapcomplete.osm.be", + "theme": "uk_addresses", + "import": 1, + "imagery": "osm", + "language": "en", + "change_over_5000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.6050693, + 52.287768 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.13.1", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-16T14:35:24Z", + "reviewed_features": [], + "create": 470, + "modify": 100, + "delete": 0, + "area": 0.0943456521998089, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116216334, + "host": "mapcomplete.osm.be", + "move": 98, + "theme": "grb", + "import": 47, + "language": "nl", + "conflation": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.21355055, + 51.051660749999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.13.1", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-16T11:28:10Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116210098, + "host": "mapcomplete.osm.be", + "theme": "aed", + "answer": 5, + "imagery": "osm", + "language": "nl", + "change_within_1000m": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.0117371, + 51.1267423 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "StefDeGreef", + "uid": "1860737", + "editor": "MapComplete 0.13.1", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-16T06:06:30Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.00000808506228000206, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116204074, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 5, + "imagery": "CartoDB.Voyager", + "language": "fr", + "change_within_5000m": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.419692850000001, + 50.7958663 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Camilo Nuñez Castro", + "uid": "5143819", + "editor": "MapComplete 0.13.1", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-15T23:25:52Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 4.49765120002591e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116200037, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "answer": 1, + "imagery": "HDM_HOT", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.89821570000001, + -33.7561274 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "whatismoss", + "uid": "8427311", + "editor": "MapComplete 0.13.1", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-15T22:33:40Z", + "reviewed_features": [], + "create": 0, + "modify": 67, + "delete": 0, + "area": 0.000339631391839905, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116198979, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 118, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.0426273999999998, + 50.62151385 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.13.1", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-15T22:15:19Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116198646, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 2, + "imagery": "CartoDB.Voyager", + "language": "en", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.5231209, + 49.2287087 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.13.1", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-15T22:13:15Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116198609, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "en", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.5204287, + 49.2254605 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.13.1", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-15T22:11:24Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116198577, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "answer": 2, + "imagery": "osm", + "language": "en", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.5204457, + 49.2254032 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "whatismoss", + "uid": "8427311", + "editor": "MapComplete 0.13.1", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-15T22:04:15Z", + "reviewed_features": [], + "create": 0, + "modify": 45, + "delete": 0, + "area": 0.00014847101891999, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116198415, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 61, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.0616431, + 50.6227282 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.13.1", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-15T20:44:01Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 16.2014456622474, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116196564, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "answer": 3, + "imagery": "osm", + "language": "en", + "add-image": 6 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.2647537, + 50.1758408 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "DS_020", + "uid": "2771494", + "editor": "MapComplete 0.13.1", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-15T17:40:40Z", + "reviewed_features": [], + "create": 0, + "modify": 7, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116190924, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "answer": 12, + "imagery": "CartoDB.Voyager", + "language": "nl", + "change_within_1000m": 12 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.0073367, + 52.3503428 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "DS_020", + "uid": "2771494", + "editor": "MapComplete 0.13.1", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-15T17:30:08Z", + "reviewed_features": [], + "create": 2, + "modify": 8, + "delete": 0, + "area": 1.34639280000226e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116190473, + "host": "mapcomplete.osm.be", + "theme": "aed", + "answer": 8, + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.0058141, + 52.3452915 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.13.1", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-15T17:08:23Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 2.53006160001356e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116189609, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "imagery": "osm", + "language": "en", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.5181861, + 49.22864475 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.13.1", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-15T16:10:22Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116187640, + "host": "mapcomplete.osm.be", + "theme": "food", + "imagery": "osm", + "language": "en", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.6187257, + 49.2812204 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "jospyck", + "uid": "12128135", + "editor": "MapComplete 0.13.1", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-15T15:29:44Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116186194, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "imagery": "AGIV", + "language": "nl", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.1909422, + 50.9183511 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "lexfkken", + "uid": "14860296", + "editor": "MapComplete 0.13.1", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-15T15:06:33Z", + "reviewed_features": [], + "create": 2, + "modify": 0, + "delete": 0, + "area": 1.58909100001189e-8, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116185362, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.10059225, + 51.49511065 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "ReTroll", + "uid": "4909451", + "editor": "MapComplete 0.13.1", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-15T13:57:26Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116183077, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "answer": 4, + "imagery": "swisstopo_swissimage", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.1984535, + 47.1175041 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.13.1", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-15T11:45:33Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116179454, + "host": "mapcomplete.osm.be", + "theme": "aed", + "answer": 5, + "imagery": "osm", + "language": "en", + "add-image": 1, + "change_within_25m": 6 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.9880919, + 41.3097545 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "jospyck", + "uid": "12128135", + "editor": "MapComplete 0.13.1", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-15T09:45:09Z", + "reviewed_features": [], + "create": 5, + "modify": 9, + "delete": 0, + "area": 0.000224309607659963, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116175933, + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "toerisme_vlaanderen", + "answer": 20, + "imagery": "osm", + "language": "nl", + "move:node/9013372877": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.1903898, + 50.92920005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Koen Rijnsent", + "uid": "4569696", + "editor": "MapComplete 0.13.1", + "comment": "Adding data with #MapComplete for theme #artwork", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-15T09:18:56Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116175251, + "host": "mapcomplete.osm.be", + "theme": "artwork", + "answer": 1, + "imagery": "osm", + "language": "en", + "add-image": 1, + "change_over_5000m": 1, + "change_within_25m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.117923, + 52.0882038 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "AussieBull", + "uid": "14857642", + "editor": "MapComplete 0.13.1", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-15T05:48:37Z", + "reviewed_features": [], + "create": 5, + "modify": 1, + "delete": 0, + "area": 0.00230413393880935, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116171615, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "answer": 5, + "imagery": "CartoDB.Voyager", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 152.99801745000002, + -27.52577075 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "ralley", + "uid": "670820", + "editor": "MapComplete 0.13.1", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-15T01:27:27Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116169271, + "host": "mapcomplete.osm.be", + "theme": "aed", + "answer": 2, + "imagery": "osm", + "language": "en", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 174.3787947, + -36.5707611 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Camilo Nuñez Castro", + "uid": "5143819", + "editor": "MapComplete 0.13.1", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-14T23:44:53Z", + "reviewed_features": [], + "create": 2, + "modify": 1, + "delete": 0, + "area": 0.000623982302899824, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116167939, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "answer": 1, + "imagery": "HDM_HOT", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.65988455, + -33.5103565 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.13.1", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-14T20:40:31Z", + "reviewed_features": [], + "create": 0, + "modify": 138, + "delete": 1, + "area": 0.000690808533800069, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116163181, + "host": "mapcomplete.osm.be", + "move": 229, + "theme": "grb", + "imagery": "osm", + "language": "nl", + "conflation": 8 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.99980735, + 51.1447485 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Camilo Nuñez Castro", + "uid": "5143819", + "editor": "MapComplete 0.13.1", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-14T20:04:15Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.000240376868159641, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116162017, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "answer": 3, + "imagery": "HDM_HOT", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.7411618, + -33.7471408 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "ralley", + "uid": "670820", + "editor": "MapComplete 0.13.1", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-14T19:49:16Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116161544, + "host": "mapcomplete.osm.be", + "theme": "aed", + "answer": 2, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 174.3787947, + -36.5707611 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.13.1", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-14T19:33:27Z", + "reviewed_features": [], + "create": 0, + "modify": 16, + "delete": 0, + "area": 0.0000147712438500565, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116161018, + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "cyclosm", + "language": "en", + "add-image": 16 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.24802055, + -39.81608385 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "JohnWesty", + "uid": "14854340", + "editor": "MapComplete 0.13.1", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-14T18:43:44Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116159385, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "answer": 8, + "imagery": "USDA-NAIP", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -81.4058161, + 41.5201538 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Camilo Nuñez Castro", + "uid": "5143819", + "editor": "MapComplete 0.13.1", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-14T17:04:05Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 2.60010869999513e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116155764, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "answer": 1, + "imagery": "HDM_HOT", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.83863645, + -33.44114145 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "markmay1234", + "uid": "14853740", + "editor": "MapComplete 0.13.1", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-14T16:52:48Z", + "reviewed_features": [], + "create": 7, + "modify": 0, + "delete": 0, + "area": 0.00180736187940031, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116155356, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "answer": 1, + "imagery": "USDA-NAIP", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -95.3985223, + 29.56174965 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.13.1", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-14T15:39:01Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.0140036178889197, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116152579, + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "en", + "add-image": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3036369, + 51.1434659 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "StefDeGreef", + "uid": "1860737", + "editor": "MapComplete 0.13.1", + "comment": "Adding data with #MapComplete for theme #test", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-14T14:17:17Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116149388, + "host": "mapcomplete.osm.be", + "theme": "test", + "answer": 1, + "imagery": "CartoDB.Voyager", + "language": "fr", + "change_within_50m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4275369, + 50.8212624 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "StefDeGreef", + "uid": "1860737", + "editor": "MapComplete 0.13.1", + "comment": "Adding data with #MapComplete for theme #test", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-14T14:16:29Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116149359, + "host": "mapcomplete.osm.be", + "theme": "test", + "answer": 1, + "imagery": "CartoDB.Voyager", + "language": "fr", + "change_within_50m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4275369, + 50.8212624 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "StefDeGreef", + "uid": "1860737", + "editor": "MapComplete 0.13.1", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-14T14:15:13Z", + "reviewed_features": [], + "create": 0, + "modify": 10, + "delete": 0, + "area": 1.58100000033007e-10, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116149317, + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "cyclofix", + "answer": 7, + "imagery": "CartoDB.Voyager", + "language": "fr", + "add-image": 3, + "change_within_50m": 11, + "move:node/5238101867": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.42752415, + 50.8212655 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Camilo Nuñez Castro", + "uid": "5143819", + "editor": "MapComplete 0.13.1", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-14T13:24:43Z", + "reviewed_features": [], + "create": 0, + "modify": 31, + "delete": 0, + "area": 0.103204289536292, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116147663, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "answer": 31, + "imagery": "HDM_HOT", + "language": "en", + "change_over_5000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.76868205, + -33.520324349999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.13.1", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-14T13:14:19Z", + "reviewed_features": [], + "create": 8, + "modify": 13, + "delete": 0, + "area": 9.01583789997535e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116147318, + "host": "mapcomplete.osm.be", + "move": 11, + "theme": "grb", + "import": 1, + "imagery": "osm", + "language": "nl", + "conflation": 4, + "change_within_5000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.97948825, + 51.159419150000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "reginaldc", + "uid": "510576", + "editor": "MapComplete 0.13.1", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-14T12:34:13Z", + "reviewed_features": [], + "create": 5, + "modify": 4, + "delete": 0, + "area": 0.0000852413427800457, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116146018, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "answer": 5, + "imagery": "osm", + "language": "en", + "add-image": 6 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.26246065, + 50.913302200000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 4, + "name": "mass modification" + } + ], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.14.0-alpha-3", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-14T12:14:11Z", + "reviewed_features": [], + "create": 54, + "modify": 293, + "delete": 15, + "area": 0.000040093410300008, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116145462, + "host": "pietervdvn.github.io", + "move": 266, + "path": "mc/develop/", + "theme": "grb", + "answer": 2, + "import": 6, + "imagery": "AGIVFlandersGRB", + "language": "en", + "conflation": 64, + "change_within_5000m": 8 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.98435795, + 51.157434300000006 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Camilo Nuñez Castro", + "uid": "5143819", + "editor": "MapComplete 0.13.1", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-14T11:09:21Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.000665210734770175, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116143314, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "answer": 3, + "imagery": "HDM_HOT", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.71758975, + -33.50741965 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Turbsson", + "uid": "14851790", + "editor": "MapComplete 0.13.1", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-14T10:30:18Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116142066, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "answer": 2, + "imagery": "CartoDB.Voyager", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.7604043, + 51.1438586 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Camilo Nuñez Castro", + "uid": "5143819", + "editor": "MapComplete 0.13.1", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-14T09:59:24Z", + "reviewed_features": [], + "create": 0, + "modify": 7, + "delete": 0, + "area": 0.00595949484852983, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116141115, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "answer": 7, + "imagery": "HDM_HOT", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.75613865, + -33.356876850000006 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.13.1", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-14T09:52:38Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116140895, + "host": "mapcomplete.osm.be", + "theme": "shops", + "answer": 1, + "imagery": "osm", + "language": "en", + "add-image": 1, + "change_within_25m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.7753349, + 41.1928264 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "lardarz", + "uid": "14851540", + "editor": "MapComplete 0.13.1", + "comment": "Adding data with #MapComplete for theme #postboxes", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-14T09:38:17Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116140398, + "host": "mapcomplete.osm.be", + "theme": "postboxes", + "imagery": "Mapbox", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.5820313, + 54.9052194 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Locatus_Raf", + "uid": "14799940", + "editor": "MapComplete 0.13.1", + "comment": "Adding data with #MapComplete for theme #https://gist.githubusercontent.com/joostschouppe/4f631b3f658b67bcfafd56b731c726dc/raw/d39021f0731179a8105531f2e4254d1fe4a6eacf/locatus.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-14T09:00:11Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116138310, + "host": "mapcomplete.osm.be", + "theme": "https://gist.githubusercontent.com/joostschouppe/4f631b3f658b67bcfafd56b731c726dc/raw/d39021f0731179a8105531f2e4254d1fe4a6eacf/locatus.json", + "answer": 1, + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.5310098, + 51.2278474 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "bxl-forever", + "uid": "2644288", + "editor": "MapComplete 0.13.1", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-14T08:45:34Z", + "reviewed_features": [], + "create": 0, + "modify": 0, + "delete": 3, + "area": 0.00000201363017999016, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116137794, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "deletion": 3, + "language": "en", + "deletion:node/7731532793": "not found", + "deletion:node/7731532929": "not found", + "deletion:node/7731599878": "not found" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.400872, + 50.82248195 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.13.1", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-14T05:09:11Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 1.24420399996159e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116133044, + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "osm", + "language": "en", + "add-image": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.24623310000001, + -39.81531885 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "SOE_ATLP", + "uid": "14848956", + "editor": "MapComplete 0.13.1", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-14T01:46:09Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 1530.24458641531, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116130302, + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "osm", + "language": "en", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -86.18732315, + -10.2560267 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Camilo Nuñez Castro", + "uid": "5143819", + "editor": "MapComplete 0.13.1", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-13T22:38:21Z", + "reviewed_features": [], + "create": 0, + "modify": 9, + "delete": 0, + "area": 0.0765022763913197, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116127380, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "answer": 9, + "imagery": "HDM_HOT", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.66374735, + -33.3342535 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.1", + "comment": "Adding data with #MapComplete for theme #cyclestreets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-13T21:55:17Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 6.16323219999676e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116126041, + "host": "mapcomplete.osm.be", + "theme": "cyclestreets", + "answer": 1, + "imagery": "osm", + "language": "en", + "change_over_5000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3270834, + 50.876438750000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.1", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-13T21:32:05Z", + "reviewed_features": [], + "create": 3, + "modify": 9, + "delete": 0, + "area": 3.53048800010787e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116125399, + "host": "mapcomplete.osm.be", + "move": 8, + "theme": "grb", + "imagery": "UrbisAdmNL", + "language": "en", + "conflation": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.326815, + 50.87733035 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.13.1", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-13T21:15:17Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 5.74755440008964e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116124902, + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "cyclosm", + "language": "en", + "add-image": 6 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.23157520000001, + -39.8429692 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Stinus_Clasius", + "uid": "1086503", + "editor": "MapComplete 0.13.1", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-13T20:17:53Z", + "reviewed_features": [], + "create": 48, + "modify": 5, + "delete": 0, + "area": 5.85009249997302e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116122529, + "host": "mapcomplete.osm.be", + "move": 4, + "theme": "grb", + "import": 8, + "imagery": "AGIV", + "language": "nl", + "conflation": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.92405845, + 51.325875350000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Stinus_Clasius", + "uid": "1086503", + "editor": "MapComplete 0.13.1", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-13T20:16:04Z", + "reviewed_features": [], + "create": 53, + "modify": 0, + "delete": 0, + "area": 1.92594870000113e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116122457, + "host": "mapcomplete.osm.be", + "theme": "grb", + "import": 10, + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.92388085, + 51.32563275 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.1", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-13T19:14:47Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116119941, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 1, + "imagery": "CartoDB.Voyager", + "language": "en", + "change_within_50m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3246548, + 50.8726219 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.1", + "comment": "Adding data with #MapComplete for theme #cyclestreets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-13T18:55:23Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 8.82687650002136e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116119252, + "host": "mapcomplete.osm.be", + "theme": "cyclestreets", + "answer": 1, + "imagery": "osm", + "language": "en", + "change_within_25m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.32546595, + 50.876397350000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.14.0-alpha-2", + "comment": "Adding data with #MapComplete for theme #fritures", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-13T17:39:00Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116116526, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "fritures", + "answer": 1, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3268944, + 50.8769397 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Camilo Nuñez Castro", + "uid": "5143819", + "editor": "MapComplete 0.13.1", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-13T17:01:25Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0.00643576934649004, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116115233, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "answer": 1, + "imagery": "HDM_HOT", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.43686175, + -33.626729049999994 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "ClarissaWAM", + "uid": "13745921", + "editor": "MapComplete 0.13.1", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-13T15:24:55Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116111841, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "answer": 3, + "imagery": "osm", + "language": "en", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.1462954, + 49.7021304 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 4, + "name": "mass modification" + } + ], + "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": [ + 11.698061599999999, + 44.35819145 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Oberfuzzi", + "uid": "14794109", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-06T19:49:33Z", + "reviewed_features": [], + "create": 3, + "modify": 5, + "delete": 0, + "area": 0.000121873499310013, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115851354, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 12.99868035, + 52.01036675 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Stinus_Clasius", + "uid": "1086503", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-06T16:43:09Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 0.0000416957009999716, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115845026, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 7, + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.73952725, + 51.1742624 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "whatismoss", + "uid": "8427311", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-06T15:25:43Z", + "reviewed_features": [], + "create": 0, + "modify": 17, + "delete": 0, + "area": 0.0000800326565499861, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115841923, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 31, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.96341805, + 50.42566105 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-rc-1", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-06T15:04:47Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 3.92563789998073e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115841155, + "host": "127.0.0.1:1234", + "theme": "etymology", + "answer": 3, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.21685835, + 51.20742395 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #campersite", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-06T14:23:02Z", + "reviewed_features": [], + "create": 2, + "modify": 3, + "delete": 0, + "area": 1.20400000000352e-10, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115839538, + "host": "mapcomplete.osm.be", + "theme": "campersite", + "answer": 12, + "imagery": "osm", + "language": "nl", + "add-image": 1, + "change_over_5000m": 2, + "change_within_25m": 13 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.5530431, + 38.9163281 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Dieter Dewitte", + "uid": "10825393", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #boomgaarden", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-06T14:07:38Z", + "reviewed_features": [], + "create": 4, + "modify": 17, + "delete": 0, + "area": 9.89392799989898e-8, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115839019, + "host": "mapcomplete.osm.be", + "theme": "boomgaarden", + "answer": 24, + "imagery": "osm", + "language": "nl", + "change_over_5000m": 4, + "change_within_25m": 24 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.39396395, + 50.9818528 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "whatismoss", + "uid": "8427311", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-06T11:58:27Z", + "reviewed_features": [], + "create": 0, + "modify": 67, + "delete": 0, + "area": 0.00143023117560015, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115833953, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 108, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.9621892499999998, + 50.4395531 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "AlTi5", + "uid": "10836424", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #ghostbikes", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-06T11:58:16Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115833945, + "host": "mapcomplete.osm.be", + "theme": "ghostbikes", + "answer": 1, + "imagery": "CartoDB.Positron", + "language": "en", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.3495507, + 48.8872913 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "sebkur", + "uid": "22917", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-06T11:54:15Z", + "reviewed_features": [], + "create": 14, + "modify": 13, + "delete": 0, + "area": 0.0000479946483600129, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115833798, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 14.630348300000001, + 51.74816065 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-10", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-06T11:42:57Z", + "reviewed_features": [], + "create": 286, + "modify": 394, + "delete": 5, + "area": 0.00000471883650000025, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115833348, + "host": "127.0.0.1:1234", + "move": 360, + "theme": "grb", + "import": 14, + "imagery": "AGIVFlandersGRB", + "language": "en", + "conflation": 92, + "change_over_5000m": 11 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4775704, + 51.02766995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Blanchong", + "uid": "10461110", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #ghostbikes", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-06T10:25:05Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115830485, + "host": "mapcomplete.osm.be", + "theme": "ghostbikes", + "answer": 2, + "imagery": "CartoDB.Positron", + "language": "en", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2312912, + 48.8629707 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Michael 3", + "uid": "13922389", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-06T10:00:50Z", + "reviewed_features": [], + "create": 6, + "modify": 1, + "delete": 0, + "area": 0.000610285772419945, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115829566, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.21405955, + 52.788279 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Tim Couwelier", + "uid": "7246683", + "editor": "MapComplete 0.13.0-alpha-10", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-06T09:25:36Z", + "reviewed_features": [], + "create": 197, + "modify": 0, + "delete": 0, + "area": 0.0000143183558600241, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115828252, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "grb", + "import": 30, + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1428367, + 50.86987475 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "koofi_mk", + "uid": "2272879", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-06T08:38:00Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115826484, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.0844218, + 52.0028029 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "bponkishore", + "uid": "14062769", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-06T07:48:04Z", + "reviewed_features": [], + "create": 0, + "modify": 8, + "delete": 0, + "area": 0.267531081173999, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115824863, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 8, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 77.3357647, + 11.17141535 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Tim Couwelier", + "uid": "7246683", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-06T07:22:37Z", + "reviewed_features": [], + "create": 646, + "modify": 383, + "delete": 0, + "area": 0.0000142774940000092, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115824089, + "host": "mapcomplete.osm.be", + "move": 297, + "theme": "grb", + "import": 75, + "imagery": "osm", + "language": "nl", + "conflation": 108 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1443245500000003, + 50.8715124 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "bponkishore", + "uid": "14062769", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-06T07:14:15Z", + "reviewed_features": [], + "create": 0, + "modify": 16, + "delete": 0, + "area": 0.00332907054575991, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115823852, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 26, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 76.99128490000001, + 11.0278121 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-10", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-06T01:53:36Z", + "reviewed_features": [], + "create": 18, + "modify": 19, + "delete": 0, + "area": 6.35884199999994e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115818094, + "host": "127.0.0.1:1234", + "move": 18, + "theme": "grb", + "import": 1, + "imagery": "AGIVFlandersGRB", + "language": "en", + "conflation": 2, + "change_over_5000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.48323225, + 51.028438699999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "paunofu", + "uid": "13779940", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #cycle_infra", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-06T01:24:19Z", + "reviewed_features": [], + "create": 0, + "modify": 8, + "delete": 0, + "area": 0.00000784000307999435, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115817776, + "host": "mapcomplete.osm.be", + "theme": "cycle_infra", + "answer": 12, + "imagery": "CartoDB.Voyager", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.1112022, + 38.8388911 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "paunofu", + "uid": "13779940", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #parkings", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-06T01:23:14Z", + "reviewed_features": [], + "create": 0, + "modify": 0, + "delete": 1, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115817760, + "host": "mapcomplete.osm.be", + "theme": "parkings", + "imagery": "osm", + "deletion": 1, + "language": "en", + "deletion:node/9209701507": "disused" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.1045364, + 38.8430158 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "paunofu", + "uid": "13779940", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-06T01:21:42Z", + "reviewed_features": [], + "create": 0, + "modify": 83, + "delete": 0, + "area": 0.0152666666152495, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115817746, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 113, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.037744749999999994, + 38.79785555 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "paunofu", + "uid": "13779940", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-06T01:16:37Z", + "reviewed_features": [], + "create": 0, + "modify": 7, + "delete": 0, + "area": 0.0000112601163600068, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115817699, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 8, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.10361770000000001, + 38.83598415 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "paunofu", + "uid": "13779940", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-06T01:04:01Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000122293709999695, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115817559, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 1, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.11071639999999999, + 38.83855215 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "paunofu", + "uid": "13779940", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-06T01:00:37Z", + "reviewed_features": [], + "create": 0, + "modify": 49, + "delete": 0, + "area": 0.00013650973775998, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115817524, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 82, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.106978, + 38.83917725 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "paunofu", + "uid": "13779940", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-06T00:49:17Z", + "reviewed_features": [], + "create": 0, + "modify": 18, + "delete": 0, + "area": 0.0000570158089500008, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115817395, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 23, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.10754435, + 38.83511095 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "paunofu", + "uid": "13779940", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-06T00:43:37Z", + "reviewed_features": [], + "create": 0, + "modify": 12, + "delete": 0, + "area": 0.000023151249420009, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115817328, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 40, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.10281905, + 38.8358696 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "whatismoss", + "uid": "8427311", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-05T20:18:59Z", + "reviewed_features": [], + "create": 0, + "modify": 6, + "delete": 0, + "area": 0.00000145840655999921, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115811487, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 6, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.9478006, + 50.420737700000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "ray331", + "uid": "11726860", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-05T17:40:31Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.00166176534509998, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115806717, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 2, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -82.6541413, + 27.74887675 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "whatismoss", + "uid": "8427311", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-05T16:14:47Z", + "reviewed_features": [], + "create": 0, + "modify": 54, + "delete": 0, + "area": 0.000162439595709903, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115803870, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 74, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.60703415, + 50.81101125 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "paunofu", + "uid": "13779940", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-05T15:24:20Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115802119, + "host": "mapcomplete.osm.be", + "theme": "aed", + "answer": 3, + "imagery": "osm", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.1078074, + 38.8356201 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "paunofu", + "uid": "13779940", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-05T15:21:16Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 2.95188600006057e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115802000, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "answer": 3, + "imagery": "HDM_HOT", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0861281, + 38.83858775 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Tim Couwelier", + "uid": "7246683", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-05T14:51:31Z", + "reviewed_features": [], + "create": 17, + "modify": 15, + "delete": 0, + "area": 0.0000125924848499923, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115801007, + "host": "mapcomplete.osm.be", + "move": 11, + "theme": "grb", + "import": 3, + "imagery": "CartoDB.VoyagerNoLabels", + "language": "nl", + "conflation": 6 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.10654065, + 50.96597905 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "bponkishore", + "uid": "14062769", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-05T14:14:50Z", + "reviewed_features": [], + "create": 0, + "modify": 10, + "delete": 0, + "area": 0.0000405482747299482, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115799658, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 10, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 79.51984245, + 11.62037775 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "whatismoss", + "uid": "8427311", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-05T13:29:36Z", + "reviewed_features": [], + "create": 0, + "modify": 6, + "delete": 0, + "area": 0.0000847880540399596, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115797987, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 23, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.9507955, + 50.40904205 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "paunofu", + "uid": "13779940", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-05T13:26:10Z", + "reviewed_features": [], + "create": 0, + "modify": 7, + "delete": 0, + "area": 0.0000135419613600014, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115797836, + "host": "mapcomplete.osm.be", + "theme": "aed", + "answer": 10, + "imagery": "osm", + "language": "ca" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.1086022, + 38.83987965 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "whatismoss", + "uid": "8427311", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-05T11:37:08Z", + "reviewed_features": [], + "create": 0, + "modify": 33, + "delete": 0, + "area": 0.000105499517759994, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115793506, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 54, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.9719783, + 50.4098666 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "bponkishore", + "uid": "14062769", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-05T11:25:57Z", + "reviewed_features": [], + "create": 0, + "modify": 31, + "delete": 0, + "area": 1.13305483025903, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115793065, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 36, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 79.8678278, + 12.337681100000001 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-05T11:01:10Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115792041, + "host": "mapcomplete.osm.be", + "theme": "aed", + "answer": 5, + "imagery": "osm", + "language": "nl", + "change_over_5000m": 1, + "change_within_25m": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.6984365, + 38.2655077 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-10", + "comment": "Adding data with #MapComplete for theme #hackerspaces", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-04T23:22:56Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 5.67446400002859e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115775141, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "hackerspaces", + "answer": 1, + "imagery": "osm", + "language": "en", + "change_within_50m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.0914686, + 50.7716571 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-04T20:42:54Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.00759125215704024, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115771036, + "host": "mapcomplete.osm.be", + "theme": "food", + "answer": 3, + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.5459084499999998, + 51.0650772 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-04T20:35:50Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.0000027963090100011, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115770767, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "answer": 2, + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.36815945, + 51.09027585 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-04T19:38:48Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115768749, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 4, + "imagery": "CartoDB.Voyager", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.625055, + 51.117425 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "whatismoss", + "uid": "8427311", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-04T17:48:33Z", + "reviewed_features": [], + "create": 0, + "modify": 15, + "delete": 0, + "area": 0.000027930245849988, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115765221, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 26, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.96443005, + 50.40688675 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-10", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-04T17:03:52Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115763689, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "food", + "answer": 1, + "imagery": "osm", + "language": "en", + "change_within_25m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.0923922, + 50.7721052 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "bponkishore", + "uid": "14062769", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-04T16:37:53Z", + "reviewed_features": [], + "create": 0, + "modify": 14, + "delete": 0, + "area": 0.0002146313145599, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115762756, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 21, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 79.4828957, + 11.606797700000001 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-10", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-04T13:15:35Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 1.66326000077331e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115754753, + "host": "pietervdvn.github.io", + "move": 1, + "path": "mc/develop/", + "theme": "toilets", + "answer": 5, + "imagery": "osm", + "language": "en", + "change_within_25m": 6, + "move:node/1641770246": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.08319, + 50.77484225 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "bponkishore", + "uid": "14062769", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-04T09:21:13Z", + "reviewed_features": [], + "create": 0, + "modify": 18, + "delete": 0, + "area": 0.713944158021719, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115744562, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 21, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 79.10050955, + 11.19874 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-04T09:11:40Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115744161, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 4, + "imagery": "CartoDB.Voyager", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.9861318, + 50.8711722 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "s_SoNick", + "uid": "8082926", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-04T02:28:03Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.00000377984749999552, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115734275, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 2, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -99.31454464999999, + 38.8836715 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-10", + "comment": "Adding data with #MapComplete for theme #climbing", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-03T21:45:40Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115729742, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "climbing", + "answer": 1, + "imagery": "osm", + "language": "en", + "change_over_5000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.1298787, + 50.7842542 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-03T19:00:53Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115724617, + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "osm", + "language": "en", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -71.9724679, + -34.4614224 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-03T18:49:45Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115724223, + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "osm", + "language": "en", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -71.9729087, + -34.4616279 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "davidtorcivia", + "uid": "1798584", + "editor": "MapComplete 0.13.0-alpha-10", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-03T18:48:13Z", + "reviewed_features": [], + "create": 5, + "modify": 4, + "delete": 0, + "area": 5.00656000000723e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115724187, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "surveillance", + "answer": 4, + "imagery": "osm", + "language": "en", + "change_within_25m": 6 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.9148686, + 40.704800399999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Moisès", + "uid": "12884230", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-03T18:14:38Z", + "reviewed_features": [], + "create": 5, + "modify": 1, + "delete": 0, + "area": 0.0000551674314600149, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115723173, + "host": "mapcomplete.osm.be", + "theme": "aed", + "answer": 5, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2176692, + 41.54943395 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "whatismoss", + "uid": "8427311", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-03T16:08:26Z", + "reviewed_features": [], + "create": 0, + "modify": 105, + "delete": 0, + "area": 0.000296192902749987, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115718405, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 166, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.94200205, + 50.42462255 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #campersite", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-03T15:57:42Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115717988, + "host": "mapcomplete.osm.be", + "theme": "campersite", + "answer": 8, + "imagery": "osm", + "language": "nl", + "add-image": 1, + "change_over_5000m": 1, + "change_within_25m": 9 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0599686, + 38.7210793 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "NicoVr", + "uid": "8782392", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-03T15:38:43Z", + "reviewed_features": [], + "create": 2, + "modify": 7, + "delete": 0, + "area": 0.00000260864720999926, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115717311, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "answer": 13, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.72038885, + 51.05762745 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Moisès", + "uid": "12884230", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-03T14:59:24Z", + "reviewed_features": [], + "create": 9, + "modify": 4, + "delete": 0, + "area": 0.000190037513599914, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115715565, + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "aed", + "answer": 5, + "imagery": "osm", + "language": "en", + "move:node/9388469173": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2104013, + 41.5398897 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "bollyboll", + "uid": "12120321", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-03T14:42:13Z", + "reviewed_features": [], + "create": 6, + "modify": 0, + "delete": 0, + "area": 0.0000517644882999683, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115714829, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "imagery": "CartoDB.VoyagerNoLabels", + "language": "de", + "change_over_5000m": 6 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.8057993, + 48.01985785 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #campersite", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-03T12:10:59Z", + "reviewed_features": [], + "create": 1, + "modify": 5, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115708435, + "host": "mapcomplete.osm.be", + "theme": "campersite", + "answer": 6, + "imagery": "osm", + "language": "nl", + "add-image": 1, + "change_over_5000m": 1, + "change_within_25m": 7 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.0497738, + 38.603769 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-10", + "comment": "Adding data with #MapComplete for theme #hackerspaces", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-03T09:29:22Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115701407, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "hackerspaces", + "answer": 5, + "imagery": "osm", + "language": "en", + "change_over_5000m": 6 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.1212196, + 50.9520755 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-10", + "comment": "Adding data with #MapComplete for theme #waste", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-02T21:51:25Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.0000012502004399974, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115686930, + "host": "pietervdvn.github.io", + "path": "mc/waste-theme/", + "theme": "waste", + "answer": 1, + "imagery": "AGIV", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2082948, + 51.2501756 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-02T21:11:03Z", + "reviewed_features": [], + "create": 11, + "modify": 10, + "delete": 0, + "area": 7.29364499983562e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115685951, + "host": "mapcomplete.osm.be", + "move": 10, + "theme": "grb", + "imagery": "osm", + "language": "en", + "conflation": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.13226835, + 50.66757055 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Acheloo", + "uid": "11366923", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-02T18:30:12Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 0.000106851696800012, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115681205, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 8, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 14.270823400000001, + 40.942943400000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "whatismoss", + "uid": "8427311", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-02T17:56:01Z", + "reviewed_features": [], + "create": 0, + "modify": 66, + "delete": 0, + "area": 0.0743782892385904, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115680001, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 120, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.05278375, + 50.56731755 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-10", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-02T16:24:37Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115676863, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "food", + "answer": 4, + "imagery": "osm", + "language": "en", + "change_over_5000m": 1, + "change_within_25m": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.4611304, + 51.1024626 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Stinus_Clasius", + "uid": "1086503", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-02T15:35:59Z", + "reviewed_features": [], + "create": 16, + "modify": 18, + "delete": 0, + "area": 2.58552000001025e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115674924, + "host": "mapcomplete.osm.be", + "move": 14, + "theme": "grb", + "imagery": "AGIV", + "language": "nl", + "conflation": 8 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.7489158, + 51.1612445 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Robin van der Linde", + "uid": "5093765", + "editor": "MapComplete 0.13.0-alpha-10", + "comment": "Adding data with #MapComplete for theme #waste", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-02T14:58:52Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115673330, + "host": "pietervdvn.github.io", + "path": "mc/waste-theme/", + "theme": "waste", + "answer": 3, + "imagery": "osm", + "language": "nl", + "change_over_5000m": 1, + "change_within_50m": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.5404004, + 53.0068628 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "sebkur", + "uid": "22917", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-02T14:30:51Z", + "reviewed_features": [], + "create": 3, + "modify": 4, + "delete": 0, + "area": 0.00000814769662002773, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115672066, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 14.635315, + 51.73328755 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-10", + "comment": "Adding data with #MapComplete for theme #ghostbikes", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-02T11:53:43Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115665991, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "ghostbikes", + "imagery": "CartoDB.Positron", + "language": "en", + "add-image": 2, + "change_within_25m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.093939, + 50.7782419 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-9371314839", + "osm_id": 9371314839, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "amenity": "binoculars" + } + } + ], + "user": "mycota", + "uid": "7541348", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #binoculars", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-02T06:03:16Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115658538, + "host": "mapcomplete.osm.be", + "theme": "binoculars", + "answer": 2, + "imagery": "osm", + "language": "en", + "change_within_5000m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -111.943619, + 33.4591777 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "mycota", + "uid": "7541348", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-02T02:12:27Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115656452, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 2, + "imagery": "CartoDB.Voyager", + "language": "en", + "change_within_5000m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -111.9454003, + 33.4624688 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "francians", + "uid": "9006927", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-01T20:12:17Z", + "reviewed_features": [], + "create": 0, + "modify": 22, + "delete": 0, + "area": 0.000132682765300071, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115649888, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 26, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.5327120999999995, + 44.37348115 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-10", + "comment": "Adding data with #MapComplete for theme #entrances", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-01T19:08:30Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115648184, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "entrances", + "answer": 2, + "imagery": "osm", + "language": "en", + "change_within_25m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.0975608, + 50.7829972 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-10", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-01T19:07:31Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 6.58069999995869e-10, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115648155, + "host": "pietervdvn.github.io", + "move": 1, + "path": "mc/develop/", + "theme": "cyclofix", + "answer": 1, + "imagery": "CartoDB.Voyager", + "language": "en", + "change_within_25m": 2, + "move:node/3328029031": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.09740545, + 50.78308315 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-10", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-01T16:12:14Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115642342, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "food", + "answer": 4, + "imagery": "osm", + "language": "en", + "change_within_500m": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.0977268, + 50.7679803 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Robin van der Linde", + "uid": "5093765", + "editor": "MapComplete 0.13.0-alpha-10", + "comment": "Adding data with #MapComplete for theme #waste", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-01T15:35:38Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115640953, + "host": "pietervdvn.github.io", + "path": "mc/waste-theme/", + "theme": "waste", + "answer": 2, + "imagery": "Actueel_orthoHR_WMTS", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.572717, + 53.0172674 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-10", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-01T14:49:42Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115639107, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "add-image": 1, + "change_within_25m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.1769118, + 50.7298742 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-10", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-01T13:42:53Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115636703, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "toilets", + "answer": 7, + "imagery": "osm", + "language": "en", + "add-image": 1, + "change_over_5000m": 1, + "change_within_25m": 8 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.1263102, + 50.6647302 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-10", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-01T13:38:55Z", + "reviewed_features": [], + "create": 1, + "modify": 6, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115636600, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "cyclofix", + "answer": 7, + "imagery": "osm", + "language": "nl", + "add-image": 1, + "change_over_5000m": 1, + "change_within_25m": 8 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.1264417, + 50.6647132 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-10", + "comment": "Adding data with #MapComplete for theme #openwindpowermap", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-01T13:17:06Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115635874, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "openwindpowermap", + "imagery": "SPW_ORTHO_LAST", + "language": "nl", + "add-image": 1, + "change_over_5000m": 1, + "change_within_500m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.0905269, + 50.6637424 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #campersite", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-01T12:40:21Z", + "reviewed_features": [], + "create": 2, + "modify": 8, + "delete": 0, + "area": 6.91499999891998e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115634750, + "host": "mapcomplete.osm.be", + "theme": "campersite", + "answer": 18, + "imagery": "PNOA-Spain-TMS", + "language": "nl", + "add-image": 3, + "change_over_5000m": 2, + "change_within_50m": 13, + "change_within_500m": 8 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.95716785, + 39.8917455 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-10", + "comment": "Adding data with #MapComplete for theme #test", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-01T12:21:22Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115634157, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "test", + "answer": 1, + "imagery": "AGIVFlandersGRB", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.0890042, + 51.0958494 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-10", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-01T11:45:34Z", + "reviewed_features": [], + "create": 3, + "modify": 18, + "delete": 0, + "area": 2.86099000004676e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115633100, + "host": "pietervdvn.github.io", + "move": 2, + "path": "mc/develop/", + "theme": "cyclofix", + "answer": 17, + "imagery": "AGIVFlandersGRB", + "language": "nl", + "add-image": 3, + "move:node/9383390008": "improve_accuracy", + "move:node/9383440696": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.08904475, + 51.09585375 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-01T11:37:38Z", + "reviewed_features": [], + "create": 64, + "modify": 6, + "delete": 0, + "area": 3.80762640001345e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115632852, + "host": "mapcomplete.osm.be", + "move": 5, + "theme": "grb", + "import": 4, + "imagery": "osm", + "language": "nl", + "conflation": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.0892105999999995, + 51.0958758 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-10", + "comment": "Adding data with #MapComplete for theme #cycle_infra", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-01T02:50:25Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115626287, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "cycle_infra", + "answer": 1, + "imagery": "CartoDB.Voyager", + "language": "nl", + "change_over_5000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.0266954, + 51.0799031 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.13.0-alpha-10", + "comment": "Adding data with #MapComplete for theme #cycle_infra", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-01T02:46:22Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.0000261489209800277, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115626265, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "cycle_infra", + "answer": 3, + "imagery": "CartoDB.Voyager", + "language": "nl", + "change_over_5000m": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.03567205, + 51.0760357 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-01T01:29:46Z", + "reviewed_features": [], + "create": 35, + "modify": 15, + "delete": 0, + "area": 6.60029440002278e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 115625603, + "host": "mapcomplete.osm.be", + "move": 12, + "theme": "grb", + "import": 3, + "imagery": "osm", + "language": "nl", + "conflation": 6, + "change_over_5000m": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.0498236, + 51.0704913 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "paunofu", + "uid": "13779940", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #policia", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-16T02:04:06Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 2.89347500000227e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117457096, + "host": "mapcomplete.osm.be", + "theme": "policia", + "answer": 1, + "locale": "es", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.01627835, + 38.84951305 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "hortacalaf", + "uid": "14495457", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/yopaseopor/mcquests/master/libraries.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-15T22:26:09Z", + "reviewed_features": [], + "create": 0, + "modify": 9, + "delete": 0, + "area": 0.000013911295680006, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117453659, + "host": "mapcomplete.osm.be", + "theme": "gh://yopaseopor/mcquests/master/libraries.json", + "answer": 17, + "locale": "es", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.7230294000000002, + 41.2215123 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "yopaseopor", + "uid": "500572", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #policia", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-15T21:41:05Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 3.62565959998223e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117452493, + "host": "mapcomplete.osm.be", + "theme": "policia", + "answer": 1, + "locale": "es", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.12545395, + 38.9246067 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "confusedbuffalo", + "uid": "242345", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-15T19:49:54Z", + "reviewed_features": [], + "create": 0, + "modify": 13, + "delete": 0, + "area": 0.0000445046332799785, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117449421, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 14, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.5868946, + 54.699118999999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-15T19:37:59Z", + "reviewed_features": [], + "create": 34, + "modify": 96, + "delete": 0, + "area": 0.00187154913067983, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117449082, + "host": "mapcomplete.osm.be", + "move": 86, + "theme": "grb", + "answer": 4, + "import": 3, + "locale": "nl", + "imagery": "osm", + "conflation": 18 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.01026755, + 51.1412806 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 2, + "name": "possible import" + }, + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "JensTi", + "uid": "57212", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-15T19:10:19Z", + "reviewed_features": [], + "create": 2792, + "modify": 9, + "delete": 0, + "area": 0.000427762375040024, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117448329, + "host": "mapcomplete.osm.be", + "theme": "grb", + "answer": 9, + "import": 339, + "locale": "nl", + "imagery": "AGIVFlandersGRB" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.0863391, + 50.7549276 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Moisès", + "uid": "12884230", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/yopaseopor/mcquests/master/libraries.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-15T18:08:40Z", + "reviewed_features": [], + "create": 0, + "modify": 9, + "delete": 0, + "area": 0.00382693492044069, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117446527, + "host": "mapcomplete.osm.be", + "theme": "gh://yopaseopor/mcquests/master/libraries.json", + "answer": 11, + "locale": "ca", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.1575371, + 41.5192789 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "wanderruderer", + "uid": "352135", + "editor": "MapComplete 0.16.0", + "comment": "Adding data with #MapComplete for theme #cycle_infra", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-15T15:36:20Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117441334, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "cycle_infra", + "answer": 1, + "locale": "de", + "imagery": "CartoDB.Voyager", + "change_within_50m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.0500179, + 52.2456512 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Lenezir", + "uid": "299539", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-15T15:19:16Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.00000513138213000518, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117440772, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "answer": 6, + "locale": "fr", + "imagery": "osm", + "change_within_5000m": 6 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.63879255, + 43.44335065 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "micjoe", + "uid": "15079427", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-15T14:42:15Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117439419, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "EsriWorldImagery", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.7883325, + 53.0267663 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-15T14:15:27Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117438314, + "host": "mapcomplete.osm.be", + "theme": "shops", + "answer": 1, + "locale": "en", + "imagery": "osm", + "change_within_25m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7182358, + 51.0537752 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "paunofu", + "uid": "13779940", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #policia", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-15T13:38:32Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 0.0294471418661003, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117436964, + "host": "mapcomplete.osm.be", + "theme": "policia", + "answer": 5, + "locale": "es", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.04458525, + 38.745986099999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-15T13:28:18Z", + "reviewed_features": [], + "create": 7, + "modify": 17, + "delete": 0, + "area": 0.00000435760623999802, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117436594, + "host": "mapcomplete.osm.be", + "move": 16, + "theme": "grb", + "import": 1, + "locale": "nl", + "imagery": "osm", + "conflation": 2, + "change_over_5000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.9947672, + 51.218186 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-15T13:21:07Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117436337, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "locale": "en", + "imagery": "osm", + "change_over_5000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7251733, + 51.0537177 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.16.0", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-15T13:06:12Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117435799, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "shops", + "answer": 1, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7041469, + 51.0508861 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "ecabre4", + "uid": "554769", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #street_lighting", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-15T13:05:22Z", + "reviewed_features": [], + "create": 0, + "modify": 22, + "delete": 0, + "area": 0.0000078264270299983, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117435769, + "host": "mapcomplete.osm.be", + "theme": "street_lighting", + "answer": 23, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.90875515, + 41.13772655 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "ecabre4", + "uid": "554769", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #sport_pitches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-15T13:02:31Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.000214938428550002, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117435681, + "host": "mapcomplete.osm.be", + "theme": "sport_pitches", + "answer": 4, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.91776795, + 41.14022375 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "ecabre4", + "uid": "554769", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-15T12:53:47Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.00000185412135999829, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117435353, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 2, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.9093435, + 41.1382068 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.16.0", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-15T12:48:52Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117435150, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "shops", + "answer": 1, + "locale": "en", + "imagery": "osm", + "add-image": 1, + "change_within_25m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7041469, + 51.0508861 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 42, + "name": "Invalid tag modification" + } + ], + "tags": [], + "features": [ + { + "url": "node-7113286712", + "name": "Font Vella", + "osm_id": 7113286712, + "reasons": [ + 42 + ], + "version": 4, + "primary_tags": { + "amenity": "drinking_water" + } + } + ], + "user": "ecabre4", + "uid": "554769", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-15T12:46:06Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 0.0000027295635899964, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117435015, + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "answer": 5, + "locale": "en", + "imagery": "CartoDB.Voyager" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.9091858500000001, + 41.13696105 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "ecabre4", + "uid": "554769", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #cafes_and_pubs", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-15T12:44:00Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117434904, + "host": "mapcomplete.osm.be", + "theme": "cafes_and_pubs", + "answer": 3, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.9090906, + 41.1383502 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "ecabre4", + "uid": "554769", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-15T12:40:18Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117434769, + "host": "mapcomplete.osm.be", + "theme": "aed", + "answer": 4, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.0921566, + 41.3943477 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Rienux", + "uid": "11911273", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-15T11:33:46Z", + "reviewed_features": [], + "create": 0, + "modify": 18, + "delete": 0, + "area": 0.0000732996494399763, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117432037, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 20, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3341677999999995, + 51.126763999999994 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Oberfuzzi", + "uid": "14794109", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-15T10:39:12Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117429886, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 12.9978749, + 52.0178661 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Rienux", + "uid": "11911273", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-15T10:01:35Z", + "reviewed_features": [], + "create": 0, + "modify": 26, + "delete": 0, + "area": 0.000684767872619997, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117428420, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 29, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.396433699999999, + 51.09445185 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "JLZIMMERMANN", + "uid": "188930", + "editor": "MapComplete 0.16.0", + "comment": "Adding data with #MapComplete for theme #entrances", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-15T09:43:51Z", + "reviewed_features": [], + "create": 0, + "modify": 29, + "delete": 0, + "area": 0.00003797131584, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117427613, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "entrances", + "answer": 22, + "locale": "en", + "imagery": "osm", + "add-image": 10, + "change_within_25m": 32 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.8097481, + 44.1349809 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "benetj", + "uid": "2353661", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/yopaseopor/mcquests/master/libraries.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-15T09:35:09Z", + "reviewed_features": [], + "create": 0, + "modify": 27, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117427236, + "host": "mapcomplete.osm.be", + "theme": "gh://yopaseopor/mcquests/master/libraries.json", + "answer": 32, + "locale": "ca", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.7781999, + 39.6470007 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "JLZIMMERMANN", + "uid": "188930", + "editor": "MapComplete 0.16.0", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-15T09:33:04Z", + "reviewed_features": [], + "create": 1, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117427140, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "benches", + "answer": 6, + "locale": "fr", + "imagery": "osm", + "add-image": 1, + "change_over_5000m": 1, + "change_within_25m": 7 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.8198981, + 44.1290616 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "wanderruderer", + "uid": "352135", + "editor": "MapComplete 0.16.0", + "comment": "Adding data with #MapComplete for theme #cycle_infra", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-15T09:19:54Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117426633, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "cycle_infra", + "answer": 3, + "locale": "de", + "imagery": "CartoDB.Voyager" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.0500179, + 52.2456512 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Moisès", + "uid": "12884230", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/yopaseopor/mcquests/master/libraries.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-15T09:18:45Z", + "reviewed_features": [], + "create": 0, + "modify": 20, + "delete": 0, + "area": 0.000428524569870031, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117426593, + "host": "mapcomplete.osm.be", + "theme": "gh://yopaseopor/mcquests/master/libraries.json", + "answer": 30, + "locale": "ca", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.22094855, + 41.52830585 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "annuel", + "uid": "14551226", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #wandelknooppunten", + "comments_count": 1, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-15T09:14:01Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117426389, + "host": "mapcomplete.osm.be", + "theme": "wandelknooppunten", + "answer": 1, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.5878403, + 52.0747411 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "ecabre4", + "uid": "554769", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-15T09:07:04Z", + "reviewed_features": [], + "create": 3, + "modify": 4, + "delete": 0, + "area": 2.41250400001165e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117426122, + "host": "mapcomplete.osm.be", + "theme": "aed", + "answer": 6, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.9091758, + 41.137894700000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "LFFMH", + "uid": "14449743", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-15T08:43:42Z", + "reviewed_features": [], + "create": 2, + "modify": 0, + "delete": 0, + "area": 0.0000254036475000084, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117425181, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 14.00924475, + 52.0909329 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "ecabre4", + "uid": "554769", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-15T08:33:38Z", + "reviewed_features": [], + "create": 0, + "modify": 8, + "delete": 0, + "area": 5.45183650003151e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117424772, + "host": "mapcomplete.osm.be", + "theme": "benches", + "answer": 8, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.90877025, + 41.13826855 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "anticamfoix", + "uid": "15042359", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-15T08:19:24Z", + "reviewed_features": [], + "create": 4, + "modify": 5, + "delete": 0, + "area": 0.0000153758587599979, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117424226, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "answer": 9, + "locale": "fr", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.6070158, + 42.965237 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "brust84", + "uid": "1225756", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-15T07:23:07Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117422010, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "answer": 1, + "locale": "en", + "imagery": "GEOSN-DOP-RGB", + "change_over_5000m": 1, + "change_within_25m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.6825596, + 51.060074 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pol Rojas", + "uid": "12632106", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-15T07:23:03Z", + "reviewed_features": [], + "create": 0, + "modify": 11, + "delete": 0, + "area": 4.4071708999864e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117422006, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 13, + "locale": "en", + "imagery": "CartoDB.Voyager" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.17336835, + 41.39285865 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "benetj", + "uid": "2353661", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-15T07:10:38Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117421559, + "host": "mapcomplete.osm.be", + "theme": "food", + "answer": 1, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.7717385, + 39.6509155 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joseph83", + "uid": "10732704", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #street_lighting", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-15T07:06:30Z", + "reviewed_features": [], + "create": 0, + "modify": 6, + "delete": 0, + "area": 0.0000496582992000451, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117421407, + "host": "mapcomplete.osm.be", + "theme": "street_lighting", + "answer": 6, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.8341679, + 44.0602011 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pol Rojas", + "uid": "12632106", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/yopaseopor/mcquests/master/libraries.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-15T07:04:54Z", + "reviewed_features": [], + "create": 0, + "modify": 14, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117421351, + "host": "mapcomplete.osm.be", + "theme": "gh://yopaseopor/mcquests/master/libraries.json", + "answer": 18, + "locale": "ca", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.1197808, + 41.3858675 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "paunofu", + "uid": "13779940", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #Comisaria", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-15T00:20:12Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 1.83835319999886e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117414634, + "host": "mapcomplete.osm.be", + "theme": "comisaria", + "answer": 1, + "locale": "ca", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.0875193, + 38.836771049999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-15T00:01:13Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000398958095998377, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117414389, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 2, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.0002554, + 51.163843299999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "paunofu", + "uid": "13779940", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-14T23:23:25Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117413850, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "answer": 3, + "locale": "en", + "imagery": "PNOA-Spain-TMS" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.1163489, + 38.8326918 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "paunofu", + "uid": "13779940", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/yopaseopor/mcquests/master/libraries.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-14T22:48:53Z", + "reviewed_features": [], + "create": 0, + "modify": 24, + "delete": 0, + "area": 0.00191815785856944, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117413266, + "host": "mapcomplete.osm.be", + "theme": "gh://yopaseopor/mcquests/master/libraries.json", + "answer": 32, + "locale": "es", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.051675950000000005, + 38.83136675 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "confusedbuffalo", + "uid": "242345", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-14T22:09:13Z", + "reviewed_features": [], + "create": 0, + "modify": 19, + "delete": 0, + "area": 0.00169175595000006, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117412442, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 22, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.8471685, + 54.8557585 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "complete_gth", + "uid": "9837674", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #street_lighting", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-14T20:56:40Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.000100713439680076, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117410571, + "host": "mapcomplete.osm.be", + "theme": "street_lighting", + "answer": 2, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 10.7386792, + 50.9441082 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "alex_lofi", + "uid": "6816316", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/yopaseopor/mcquests/master/libraries.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-14T20:47:39Z", + "reviewed_features": [], + "create": 0, + "modify": 10, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117410300, + "host": "mapcomplete.osm.be", + "theme": "gh://yopaseopor/mcquests/master/libraries.json", + "answer": 15, + "locale": "es", + "imagery": "osm", + "change_within_500m": 15 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.5713944, + 37.1343799 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-14T20:38:37Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.00000639281520002758, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117410026, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 1, + "locale": "en", + "imagery": "CartoDB.Voyager", + "add-image": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3585625, + 50.8484356 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Jose Luis Infante", + "uid": "126203", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/yopaseopor/mcquests/master/libraries.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-14T20:31:24Z", + "reviewed_features": [], + "create": 0, + "modify": 7, + "delete": 0, + "area": 2.12366720001794e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117409761, + "host": "mapcomplete.osm.be", + "theme": "gh://yopaseopor/mcquests/master/libraries.json", + "answer": 10, + "locale": "ca", + "imagery": "osm", + "change_within_1000m": 10 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.2194003, + 41.4440369 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "msevilla00", + "uid": "240498", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-14T20:29:40Z", + "reviewed_features": [], + "create": 5, + "modify": 2, + "delete": 0, + "area": 0.0125160210793797, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117409709, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "answer": 3, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.848376, + 41.70134615 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "anticamfoix", + "uid": "15042359", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-14T20:03:54Z", + "reviewed_features": [], + "create": 15, + "modify": 16, + "delete": 0, + "area": 0.0000238743854500156, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117408885, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "answer": 25, + "locale": "fr", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.60713235, + 42.96446105 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jqngarcia", + "uid": "5126253", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/yopaseopor/mcquests/master/libraries.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-14T19:52:58Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 2.62288529998133e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117408538, + "host": "mapcomplete.osm.be", + "theme": "gh://yopaseopor/mcquests/master/libraries.json", + "answer": 1, + "locale": "ca", + "imagery": "osm", + "change_within_500m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.21032245, + 41.443957850000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "msevilla00", + "uid": "240498", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/yopaseopor/mcquests/master/libraries.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-14T19:48:19Z", + "reviewed_features": [], + "create": 0, + "modify": 20, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117408411, + "host": "mapcomplete.osm.be", + "theme": "gh://yopaseopor/mcquests/master/libraries.json", + "answer": 25, + "locale": "es", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.7971125, + 41.7622362 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Robot8A", + "uid": "393359", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/yopaseopor/mcquests/master/libraries.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-14T19:37:35Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 4.10639640002543e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117408081, + "host": "mapcomplete.osm.be", + "theme": "gh://yopaseopor/mcquests/master/libraries.json", + "answer": 2, + "locale": "es", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.8981497, + 41.64032495 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "ecabre4", + "uid": "554769", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/yopaseopor/mcquests/master/libraries.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-14T19:09:14Z", + "reviewed_features": [], + "create": 0, + "modify": 15, + "delete": 0, + "area": 4.65645279997226e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117407110, + "host": "mapcomplete.osm.be", + "theme": "gh://yopaseopor/mcquests/master/libraries.json", + "answer": 25, + "locale": "es", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.1000843, + 41.1541194 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "paunofu", + "uid": "13779940", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/yopaseopor/mcquests/master/libraries.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-14T18:59:54Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 1.06268249998789e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117406747, + "host": "mapcomplete.osm.be", + "theme": "gh://yopaseopor/mcquests/master/libraries.json", + "answer": 3, + "locale": "es", + "imagery": "osm", + "change_within_1000m": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 0.10496275, + 38.840185149999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "hortacalaf", + "uid": "14495457", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/yopaseopor/mcquests/master/libraries.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-14T18:58:12Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117406606, + "host": "mapcomplete.osm.be", + "theme": "gh://yopaseopor/mcquests/master/libraries.json", + "answer": 5, + "locale": "es", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.8121879, + 41.235172 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "lmagreault", + "uid": "260065", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-14T18:21:50Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 8.04362650001831e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117404833, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "benches", + "answer": 2, + "locale": "en", + "imagery": "osm", + "change_within_500m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.7004119499999995, + 46.579131149999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "TedScouGV", + "uid": "75300", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-14T15:51:26Z", + "reviewed_features": [], + "create": 0, + "modify": 7, + "delete": 0, + "area": 5.35003349999433e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117399314, + "host": "mapcomplete.osm.be", + "theme": "aed", + "answer": 7, + "locale": "en", + "imagery": "osm", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -4.35530075, + 47.79740325 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "LFFMH", + "uid": "14449743", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-14T15:12:29Z", + "reviewed_features": [], + "create": 27, + "modify": 30, + "delete": 0, + "area": 0.00809026408574927, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117397830, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 14.005525850000001, + 52.02807425 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "womped", + "uid": "1880469", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #climbing", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-14T15:05:58Z", + "reviewed_features": [], + "create": 0, + "modify": 8, + "delete": 0, + "area": 0.0000652384235499885, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117397579, + "host": "mapcomplete.osm.be", + "theme": "climbing", + "answer": 10, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.02623015, + 49.58834715 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "cabinetcourbi", + "uid": "6231864", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-14T14:43:08Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117396671, + "host": "mapcomplete.osm.be", + "theme": "food", + "answer": 1, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.8090181, + 43.9481107 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "cbeddow", + "uid": "2611295", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #cafes_and_pubs", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-14T14:36:26Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117396402, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "cafes_and_pubs", + "locale": "en", + "imagery": "osm", + "change_over_5000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.5447577, + 47.0497303 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "JLZIMMERMANN", + "uid": "188930", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #facadegardens", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-14T14:19:05Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117395644, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "facadegardens", + "answer": 3, + "locale": "fr", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.8092148, + 43.9474749 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joseph83", + "uid": "10732704", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #street_lighting", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-14T14:01:17Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 9.09940800001334e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117394914, + "host": "mapcomplete.osm.be", + "theme": "street_lighting", + "answer": 2, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.746034, + 44.095681049999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-14T13:37:14Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117393993, + "host": "mapcomplete.osm.be", + "theme": "trees", + "locale": "en", + "imagery": "cyclosm", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.2493381, + -39.8101576 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joseph83", + "uid": "10732704", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #street_lighting", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-14T13:32:49Z", + "reviewed_features": [], + "create": 4, + "modify": 18, + "delete": 0, + "area": 0.0080653444841389, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117393848, + "host": "mapcomplete.osm.be", + "split": 5, + "theme": "street_lighting", + "answer": 16, + "locale": "en", + "imagery": "osm", + "relation-fix": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.82105765, + 44.114283900000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #scales", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-14T13:24:36Z", + "reviewed_features": [], + "create": 2, + "modify": 2, + "delete": 0, + "area": 0.0773028109039203, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117393533, + "host": "mapcomplete.osm.be", + "theme": "scales", + "answer": 2, + "locale": "en", + "imagery": "osm", + "add-image": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.46976815, + 51.140026399999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joseph83", + "uid": "10732704", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-14T13:19:51Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117393391, + "host": "mapcomplete.osm.be", + "theme": "food", + "answer": 4, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.8109643, + 44.1372512 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "JLZIMMERMANN", + "uid": "188930", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-14T13:05:44Z", + "reviewed_features": [], + "create": 0, + "modify": 8, + "delete": 0, + "area": 0.0000920072181599986, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117392902, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "benches", + "answer": 11, + "locale": "fr", + "imagery": "osm", + "add-image": 1, + "change_within_25m": 4, + "change_within_1000m": 2, + "change_within_5000m": 6 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.81541565, + 44.1316888 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Rienux", + "uid": "11911273", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-14T13:04:11Z", + "reviewed_features": [], + "create": 0, + "modify": 17, + "delete": 0, + "area": 0.0000338967158399833, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117392861, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 18, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.40328985, + 51.101978599999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "cabinetcourbi", + "uid": "6231864", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #entrances", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-14T10:50:04Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117387639, + "host": "mapcomplete.osm.be", + "theme": "entrances", + "answer": 2, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.8041136, + 44.1362959 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pipeton", + "uid": "11969052", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-14T09:54:28Z", + "reviewed_features": [], + "create": 0, + "modify": 15, + "delete": 0, + "area": 0.00011725700990004, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117385529, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 18, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.6126398, + 37.184991749999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "jospyck", + "uid": "12128135", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #entrances", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-14T08:20:49Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117381876, + "host": "mapcomplete.osm.be", + "theme": "entrances", + "answer": 2, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2273985, + 50.9308739 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #nature", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-14T02:09:42Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117374161, + "host": "mapcomplete.osm.be", + "theme": "nature", + "answer": 1, + "locale": "nl", + "imagery": "osm", + "change_within_50m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.0614534, + 51.1419182 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-14T02:06:25Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117374142, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "answer": 1, + "locale": "nl", + "imagery": "osm", + "change_within_50m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.0614835, + 51.1418862 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-14T01:55:12Z", + "reviewed_features": [], + "create": 0, + "modify": 13, + "delete": 0, + "area": 0.00162271236297987, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117374038, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 16, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 4, + "change_within_5000m": 12 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.09546145, + 51.1285031 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-14T01:52:26Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 4.29186550004931e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117374015, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 1, + "locale": "nl", + "imagery": "osm", + "change_within_5000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.07729825, + 51.13039995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "complete_gth", + "uid": "9837674", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-13T22:27:05Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117371343, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 5, + "locale": "de", + "imagery": "CartoDB.Voyager" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 10.7315329, + 50.9445605 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #entrances", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-13T21:32:38Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117370208, + "host": "mapcomplete.osm.be", + "theme": "entrances", + "answer": 2, + "locale": "en", + "imagery": "osm", + "change_within_5000m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2356964, + 50.7318568 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 87, + "name": "Irrelevant tags on highway" + } + ], + "tags": [], + "features": [ + { + "url": "way-177394410", + "name": "Robert-Koch-Straße", + "osm_id": 177394410, + "reasons": [ + 87 + ], + "version": 3, + "primary_tags": { + "highway": "residential" + } + } + ], + "user": "complete_gth", + "uid": "9837674", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-13T21:14:43Z", + "reviewed_features": [], + "create": 0, + "modify": 152, + "delete": 0, + "area": 0.00228942764819996, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117369597, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 233, + "locale": "de", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 10.7024805, + 50.94857965 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "confusedbuffalo", + "uid": "242345", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-13T19:49:25Z", + "reviewed_features": [], + "create": 0, + "modify": 63, + "delete": 0, + "area": 0.0431145626717401, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117367225, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "etymology", + "answer": 78, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.4024667, + 54.751086150000006 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "philippec", + "uid": "76884", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-13T18:42:44Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117365388, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "locale": "en", + "imagery": "osm", + "add-image": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4794074, + 51.0276134 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "philippec", + "uid": "76884", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-13T18:40:07Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117365307, + "host": "mapcomplete.osm.be", + "theme": "aed", + "answer": 1, + "locale": "nl", + "imagery": "osm", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.482333, + 51.028025 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pipeton", + "uid": "11969052", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-13T16:10:24Z", + "reviewed_features": [], + "create": 0, + "modify": 14, + "delete": 0, + "area": 0.000628012638870147, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117360267, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 17, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.61090415, + 37.18418895 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Hopperpop", + "uid": "3664604", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/Hopperpop/OpenAsianMap/main/OpenAsianMap.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-13T15:44:03Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.00593414459932629, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117359158, + "host": "mapcomplete.osm.be", + "theme": "gh://hopperpop/openasianmap/main/openasianmap.json", + "answer": 5, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.80863725, + 51.22239715 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Frans_Napaters", + "uid": "3574538", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-13T15:13:32Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 4.70694639995571e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117357944, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "answer": 3, + "locale": "nl", + "imagery": "osm", + "change_within_5000m": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.8675501, + 51.13203945 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "confusedbuffalo", + "uid": "242345", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-13T14:58:58Z", + "reviewed_features": [], + "create": 0, + "modify": 107, + "delete": 0, + "area": 0.103335514497391, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117357360, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "etymology", + "answer": 155, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.43328005, + 54.71528935 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "jospyck", + "uid": "12128135", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-13T14:28:14Z", + "reviewed_features": [], + "create": 1, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117356151, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 5, + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_over_5000m": 1, + "change_within_25m": 6 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.1083015, + 50.9184127 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "philippec", + "uid": "76884", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-13T13:43:24Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 0.00137637928184003, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117354491, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "answer": 8, + "locale": "nl", + "imagery": "osm", + "change_within_5000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4959851, + 51.00591035 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "wanderruderer", + "uid": "352135", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #cycle_infra", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-13T13:40:20Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117354388, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "cycle_infra", + "answer": 2, + "locale": "de", + "imagery": "CartoDB.Voyager" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.0059036, + 52.2450926 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "confusedbuffalo", + "uid": "242345", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-13T13:34:59Z", + "reviewed_features": [], + "create": 0, + "modify": 10, + "delete": 0, + "area": 0.00169528443830996, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117354149, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "etymology", + "answer": 14, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.58585385, + 54.88974535 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + }, + { + "id": 42, + "name": "Invalid tag modification" + } + ], + "tags": [], + "features": [ + { + "url": "way-642622181", + "name": "Kinderspielplatz im Dütetal", + "osm_id": 642622181, + "reasons": [ + 42 + ], + "version": 6, + "primary_tags": {} + } + ], + "user": "wanderruderer", + "uid": "352135", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-13T13:31:17Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 7.53891599991806e-8, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117354018, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "playgrounds", + "answer": 6, + "locale": "de", + "imagery": "osm", + "soft-delete": 1, + "soft-delete:way/642622181": "duplicate" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.005482149999999, + 52.244985799999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "wanderruderer", + "uid": "352135", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-13T13:28:32Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117353930, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "benches", + "answer": 7, + "locale": "de", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.005439, + 52.2449605 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Gregory Williams", + "uid": "7037", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #uk_addresses", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-13T11:50:29Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117350688, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "uk_addresses", + "import": 1, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.0566118, + 51.268894 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "confusedbuffalo", + "uid": "242345", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-13T09:43:13Z", + "reviewed_features": [], + "create": 0, + "modify": 15, + "delete": 0, + "area": 0.0109055222702116, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117346566, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 16, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.68329015, + 54.82907195 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "wanderruderer", + "uid": "352135", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #cycle_infra", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-13T07:51:10Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117344110, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "cycle_infra", + "answer": 2, + "locale": "de", + "imagery": "CartoDB.Voyager" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.0495579, + 52.2553818 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "yopaseopor", + "uid": "500572", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #libraries", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-12T23:11:24Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 1.99002279998791e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117338550, + "host": "mapcomplete.osm.be", + "theme": "libraries", + "answer": 1, + "locale": "es", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.7148795, + 41.2217 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "confusedbuffalo", + "uid": "242345", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-12T23:04:31Z", + "reviewed_features": [], + "create": 0, + "modify": 16, + "delete": 0, + "area": 0.0000737489202999912, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117338381, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 16, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.8673936, + 54.83841955 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-12T23:03:58Z", + "reviewed_features": [], + "create": 3, + "modify": 8, + "delete": 0, + "area": 1.73008110001977e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117338372, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 14, + "locale": "nl", + "imagery": "CartoDB.Voyager", + "add-image": 3, + "change_over_5000m": 20 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.00874315, + 50.83891495 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-12T23:02:33Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117338341, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "answer": 2, + "locale": "nl", + "imagery": "CartoDB.Voyager", + "change_over_5000m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.9727818, + 50.8137419 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-12T21:19:41Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117336229, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "answer": 4, + "locale": "nl", + "imagery": "AGIVFlandersGRB", + "change_within_100m": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.9727818, + 50.8137419 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-12T21:16:41Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117336170, + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "bookcases", + "locale": "nl", + "imagery": "AGIVFlandersGRB", + "add-image": 1, + "change_within_25m": 1, + "change_within_50m": 1, + "move:node/9246056984": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.249092, + 50.7412338 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-12T21:16:41Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117336169, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "answer": 1, + "locale": "nl", + "imagery": "AGIVFlandersGRB", + "add-image": 1, + "change_over_5000m": 1, + "change_within_100m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.9727818, + 50.8137419 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #climbing", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-12T21:03:46Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117335842, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "climbing", + "answer": 2, + "locale": "en", + "imagery": "osm", + "change_within_100m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2431303, + 51.2060932 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-12T20:53:30Z", + "reviewed_features": [], + "create": 0, + "modify": 17, + "delete": 0, + "area": 0.0000682430154000047, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117335595, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 25, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.472813, + 51.43154145 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-12T20:45:32Z", + "reviewed_features": [], + "create": 0, + "modify": 6, + "delete": 0, + "area": 0.00000196648986001323, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117335414, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "answer": 7, + "locale": "nl", + "imagery": "osm", + "add-image": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.98087175, + 51.2039646 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #artwork", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-12T20:03:51Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117334399, + "host": "mapcomplete.osm.be", + "theme": "artwork", + "answer": 1, + "locale": "en", + "imagery": "osm", + "add-image": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3705808, + 50.858798 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "confusedbuffalo", + "uid": "242345", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-12T18:21:04Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.00000490618759998795, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117331601, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 2, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.591588, + 54.795310799999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Rienux", + "uid": "11911273", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-12T18:06:16Z", + "reviewed_features": [], + "create": 0, + "modify": 100, + "delete": 0, + "area": 0.245877827420482, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117331164, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 126, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.5380011, + 51.128620600000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "jospyck", + "uid": "12128135", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-12T16:58:56Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117329143, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 4, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 1, + "change_within_25m": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2053054, + 50.9045053 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-12T16:22:27Z", + "reviewed_features": [], + "create": 1, + "modify": 5, + "delete": 0, + "area": 0.00000149499209999784, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117327859, + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "toerisme_vlaanderen", + "answer": 12, + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_over_5000m": 1, + "change_within_25m": 7, + "change_within_500m": 7, + "move:node/1708952679": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.060921049999999, + 51.1425507 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Hopperpop", + "uid": "3664604", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #fritures", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-12T16:04:19Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117327088, + "host": "mapcomplete.osm.be", + "theme": "fritures", + "answer": 3, + "locale": "nl", + "imagery": "AGIV" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.9755501, + 51.200799 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Rienux", + "uid": "11911273", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-12T15:24:43Z", + "reviewed_features": [], + "create": 0, + "modify": 87, + "delete": 0, + "area": 0.446045017155219, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117325641, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 118, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.84673305, + 51.025188400000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "RobJN", + "uid": "411244", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #uk_addresses", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-12T15:19:27Z", + "reviewed_features": [], + "create": 6, + "modify": 3, + "delete": 0, + "area": 1.1366288000014e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117325420, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "uk_addresses", + "answer": 13, + "import": 6, + "locale": "en", + "imagery": "osm", + "change_over_5000m": 5, + "change_within_25m": 7, + "change_within_50m": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.6054129000000001, + 52.2878507 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #nature", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-12T14:38:09Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117323869, + "host": "mapcomplete.osm.be", + "theme": "nature", + "locale": "en", + "imagery": "osm", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.389842, + 51.0924857 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-12T14:37:37Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117323851, + "host": "mapcomplete.osm.be", + "theme": "benches", + "locale": "en", + "imagery": "osm", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3896566, + 51.0928654 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Rienux", + "uid": "11911273", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-12T13:38:15Z", + "reviewed_features": [], + "create": 0, + "modify": 70, + "delete": 0, + "area": 0.00218779727420004, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117321792, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 95, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.0949215500000005, + 50.923219200000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "confusedbuffalo", + "uid": "242345", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-12T12:25:16Z", + "reviewed_features": [], + "create": 0, + "modify": 67, + "delete": 0, + "area": 0.0393324001693999, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117319351, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 91, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.4825216499999998, + 54.7606524 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "philippec", + "uid": "76884", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-12T12:12:05Z", + "reviewed_features": [], + "create": 2, + "modify": 1, + "delete": 0, + "area": 0.0000119695415499967, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117318921, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "answer": 5, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 2, + "change_within_5000m": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.48132485, + 51.030765450000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "jospyck", + "uid": "12128135", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-12T11:59:40Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 0.000184995125639949, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117318583, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 7, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.18356845, + 50.9019296 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-12T10:51:15Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117316426, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "answer": 2, + "locale": "nl", + "imagery": "osm", + "change_within_50m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.0101024, + 51.1280572 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Rienux", + "uid": "11911273", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-12T10:26:11Z", + "reviewed_features": [], + "create": 0, + "modify": 10, + "delete": 0, + "area": 0.00442422258415994, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117315711, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 14, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7676228, + 51.165043100000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "jospyck", + "uid": "12128135", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-12T09:56:01Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 1.90061950000558e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117314758, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 1, + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_within_25m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.22282455, + 50.93005145 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "k4pl4n", + "uid": "11229531", + "editor": "MapComplete 0.2.3a", + "comment": "Adding data with #MapComplete for theme #vegan", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-12T01:05:22Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117307299, + "theme": "vegan", + "language": "en", + "theme-creator": "Christian Neumann " + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.4067009, + 49.0058082 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #climbing", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-12T00:27:57Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117306917, + "host": "mapcomplete.osm.be", + "theme": "climbing", + "locale": "en", + "imagery": "osm", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3579497, + 50.8677288 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-12T00:25:36Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.000338467525270024, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117306895, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 1, + "locale": "en", + "imagery": "CartoDB.Voyager", + "add-image": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.37119715, + 50.86158505 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-12T00:12:49Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.000238274606769976, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117306735, + "host": "mapcomplete.osm.be", + "theme": "shops", + "locale": "en", + "imagery": "osm", + "add-image": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.35150055, + 50.85828535 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-11T23:21:15Z", + "reviewed_features": [], + "create": 0, + "modify": 139, + "delete": 0, + "area": 0.0128278237787205, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117305997, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 236, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.223801, + 51.217234399999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-11T23:13:27Z", + "reviewed_features": [], + "create": 48, + "modify": 22, + "delete": 0, + "area": 0.0000176368689500045, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117305884, + "host": "mapcomplete.osm.be", + "move": 21, + "theme": "grb", + "locale": "nl", + "imagery": "osm", + "conflation": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.08663425, + 51.098935749999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-11T19:55:02Z", + "reviewed_features": [], + "create": 0, + "modify": 9, + "delete": 0, + "area": 1.24045560002469e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117301022, + "host": "mapcomplete.osm.be", + "theme": "trees", + "locale": "en", + "imagery": "cyclosm", + "add-image": 9, + "change_over_5000m": 8 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.76757355000001, + -33.489257800000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-11T17:49:13Z", + "reviewed_features": [], + "create": 0, + "modify": 17, + "delete": 0, + "area": 1.35885120000903e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117297205, + "host": "mapcomplete.osm.be", + "move": 16, + "theme": "grb", + "locale": "nl", + "imagery": "AGIVFlandersGRB", + "conflation": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7026322, + 51.0507195 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-8024991201", + "osm_id": 8024991201, + "reasons": [ + 43 + ], + "version": 6, + "primary_tags": { + "shop": "brass_instruments" + } + } + ], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-11T17:38:10Z", + "reviewed_features": [], + "create": 0, + "modify": 7, + "delete": 0, + "area": 9.01651999984962e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117296852, + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "shops", + "answer": 5, + "locale": "en", + "imagery": "osm", + "add-image": 1, + "move:node/8024991201": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.702182, + 51.0510151 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "waylink", + "uid": "12132256", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-11T17:18:21Z", + "reviewed_features": [], + "create": 66, + "modify": 0, + "delete": 0, + "area": 0.00000795072137998792, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117296102, + "host": "mapcomplete.osm.be", + "theme": "trees", + "locale": "en", + "imagery": "Surrey-Air_Survey", + "change_over_5000m": 28 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.6112112000000001, + 51.18754945 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "waylink", + "uid": "12132256", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-11T17:05:04Z", + "reviewed_features": [], + "create": 30, + "modify": 0, + "delete": 0, + "area": 0.00000574917770000133, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117295625, + "host": "mapcomplete.osm.be", + "theme": "trees", + "locale": "en", + "imagery": "Surrey-Air_Survey" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.6129124, + 51.18727935 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 83, + "name": "User has multiple blocks" + } + ], + "tags": [], + "features": [], + "user": "rodolfovargas", + "uid": "1217047", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #nature", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-11T16:49:51Z", + "reviewed_features": [], + "create": 0, + "modify": 12, + "delete": 0, + "area": 0.0000265520794000014, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117295023, + "host": "mapcomplete.osm.be", + "theme": "nature", + "answer": 14, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -68.153109, + -16.524512 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #buurtnatuur", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-11T15:16:18Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 5.82327199999694e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117292039, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "buurtnatuur", + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_within_25m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7363807500000004, + 51.0547579 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.15.7", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-11T14:45:51Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117290881, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "cyclofix", + "answer": 5, + "locale": "en", + "imagery": "CartoDB.Voyager", + "change_within_50m": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7036753, + 51.0489713 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "waylink", + "uid": "12132256", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-11T14:43:40Z", + "reviewed_features": [], + "create": 6, + "modify": 0, + "delete": 0, + "area": 4.79922159999307e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117290798, + "host": "mapcomplete.osm.be", + "theme": "trees", + "locale": "en", + "imagery": "Surrey-Air_Survey" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.61240665, + 51.185958799999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-11T14:39:23Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 5.78376369995346e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117290651, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 1, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7009465500000003, + 51.053537250000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 4, + "name": "mass modification" + } + ], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-11T14:35:12Z", + "reviewed_features": [], + "create": 80, + "modify": 510, + "delete": 10, + "area": 0.000167040742690075, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117290521, + "host": "mapcomplete.osm.be", + "move": 449, + "theme": "grb", + "answer": 2, + "import": 8, + "locale": "nl", + "imagery": "AGIV", + "conflation": 128 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.039327650000001, + 51.16185715 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-9498240425", + "osm_id": 9498240425, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "tourism": "map" + } + } + ], + "user": "waylink", + "uid": "12132256", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #maps", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-11T14:34:11Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117290489, + "host": "mapcomplete.osm.be", + "theme": "maps", + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.6077781, + 51.1889232 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-11T14:31:21Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 4.57163179997417e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117290398, + "host": "mapcomplete.osm.be", + "theme": "shops", + "answer": 1, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.70216935, + 51.058794 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-11T13:29:49Z", + "reviewed_features": [], + "create": 940, + "modify": 0, + "delete": 0, + "area": 0.00000977924591998971, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117288194, + "host": "mapcomplete.osm.be", + "theme": "grb", + "import": 145, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 145 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2286577, + 50.956700600000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-11T12:41:44Z", + "reviewed_features": [], + "create": 61, + "modify": 65, + "delete": 3, + "area": 0.000200738054520031, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117286674, + "host": "mapcomplete.osm.be", + "move": 56, + "theme": "grb", + "answer": 1, + "import": 5, + "locale": "nl", + "imagery": "osm", + "conflation": 16 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.050019799999999, + 51.147232599999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.15.7", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-11T11:57:29Z", + "reviewed_features": [], + "create": 356, + "modify": 0, + "delete": 0, + "area": 0.00000323845038000038, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117285094, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "grb", + "import": 45, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 45 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2345405, + 50.950699549999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Rienux", + "uid": "11911273", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-11T11:22:06Z", + "reviewed_features": [], + "create": 0, + "modify": 39, + "delete": 0, + "area": 0.00189539978975995, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117283702, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 72, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2609897, + 51.0822598 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joeybab3", + "uid": "8783843", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-11T06:32:26Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.00000416065628997944, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117273386, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "answer": 4, + "locale": "en", + "imagery": "osm", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -122.05421045, + 36.98852575 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.15.7", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-11T03:32:25Z", + "reviewed_features": [], + "create": 4, + "modify": 5, + "delete": 0, + "area": 2.61939739993927e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117269761, + "host": "pietervdvn.github.io", + "move": 4, + "path": "mc/develop/", + "theme": "grb", + "import": 1, + "locale": "nl", + "imagery": "osm", + "conflation": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2303648000000003, + 51.20210565 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.15.7", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-11T01:50:29Z", + "reviewed_features": [], + "create": 99, + "modify": 0, + "delete": 0, + "area": 8.24775450005381e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117268208, + "host": "127.0.0.1:1234", + "theme": "grb", + "import": 16, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.23304755, + 50.956947650000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 2, + "name": "possible import" + } + ], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.15.6", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 3, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-10T23:14:04Z", + "reviewed_features": [], + "create": 1363, + "modify": 11, + "delete": 0, + "area": 0.264789621125804, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117265715, + "host": "pietervdvn.github.io", + "move": 10, + "path": "mc/develop/", + "theme": "grb", + "import": 204, + "locale": "nl", + "imagery": "osm", + "conflation": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7251993, + 51.084739049999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.15.6", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-10T23:05:38Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.0000143525726399998, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117265547, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 6, + "locale": "nl", + "imagery": "osm", + "change_within_5000m": 6 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.9173372, + 51.08922025 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.15.5", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-10T22:46:14Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117265193, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 3, + "locale": "nl", + "imagery": "osm", + "change_within_5000m": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7096154, + 51.0349112 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "confusedbuffalo", + "uid": "242345", + "editor": "MapComplete 0.15.6", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-10T20:55:04Z", + "reviewed_features": [], + "create": 0, + "modify": 68, + "delete": 0, + "area": 0.127115024572478, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117261964, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 103, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.82628115, + 54.6969143 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.15.6", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-10T19:56:14Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117260011, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "locale": "en", + "imagery": "AGIV", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.9979324, + 51.1655666 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.15.6", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-10T19:35:48Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117259394, + "host": "mapcomplete.osm.be", + "theme": "shops", + "locale": "en", + "imagery": "osm", + "add-image": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.942541, + 51.0934708 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.15.6", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-10T19:27:32Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117259168, + "host": "mapcomplete.osm.be", + "theme": "food", + "locale": "en", + "imagery": "osm", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.5588466, + 50.7861103 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.15.6", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-10T19:20:49Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.2181586696027, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117259010, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "locale": "en", + "imagery": "osm", + "add-image": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.301940650000001, + 50.9871752 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.15.6", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-10T19:04:11Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0.0687662546338617, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117258567, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 5, + "locale": "en", + "imagery": "CartoDB.Voyager", + "add-image": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.98379205, + 50.8396925 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pipeton", + "uid": "11969052", + "editor": "MapComplete 0.15.6", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-10T18:26:12Z", + "reviewed_features": [], + "create": 0, + "modify": 43, + "delete": 0, + "area": 0.00192598286145003, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117257353, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 58, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.60501505, + 37.17783205 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.15.6", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-10T18:15:44Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117257071, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "shops", + "answer": 1, + "locale": "en", + "imagery": "osm", + "change_within_25m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7004163, + 51.0535894 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.15.6", + "comment": "Adding data with #MapComplete for theme #climbing", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-10T18:03:04Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.00129441517515011, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117256720, + "host": "mapcomplete.osm.be", + "theme": "climbing", + "answer": 4, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.33987605, + 50.84966905 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.15.6", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-10T17:59:42Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 2.93813020002945e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117256602, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "answer": 1, + "locale": "nl", + "imagery": "osm", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.4499508500000005, + 50.7867584 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "StefDeGreef", + "uid": "1860737", + "editor": "MapComplete 0.15.6", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-10T17:46:55Z", + "reviewed_features": [], + "create": 1, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117256167, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 5, + "locale": "fr", + "imagery": "CartoDB.Voyager", + "add-image": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4338323, + 50.8163334 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.15.6", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-10T16:54:55Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 0.0000016212426899974, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117254536, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 7, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2296235500000003, + 51.20124525 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Albin Gasparetto", + "uid": "1227542", + "editor": "MapComplete 0.15.6", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-10T16:13:19Z", + "reviewed_features": [], + "create": 2, + "modify": 0, + "delete": 0, + "area": 1.78981200000161e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117252707, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "answer": 3, + "locale": "fr", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.65965575, + 42.9136302 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "anticamfoix", + "uid": "15042359", + "editor": "MapComplete 0.15.6", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-10T15:44:04Z", + "reviewed_features": [], + "create": 3, + "modify": 0, + "delete": 0, + "area": 0.000102759123029981, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117251573, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "answer": 8, + "locale": "fr", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.6585090500000002, + 42.916419250000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.15.6", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-10T15:25:20Z", + "reviewed_features": [], + "create": 0, + "modify": 6, + "delete": 0, + "area": 0.0000182593782000022, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117250931, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 13, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.00058175, + 51.1588728 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.15.6", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-10T14:18:04Z", + "reviewed_features": [], + "create": 175, + "modify": 0, + "delete": 0, + "area": 0.00000132942488999982, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117248276, + "host": "127.0.0.1:1234", + "theme": "grb", + "import": 22, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.22646205, + 50.95457675 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.15.6", + "comment": "Adding data with #MapComplete for theme #climbing", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-10T13:52:36Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117247272, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "climbing", + "answer": 1, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7445464, + 51.041222 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.15.6", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-10T13:06:48Z", + "reviewed_features": [], + "create": 11, + "modify": 0, + "delete": 0, + "area": 1.28356800001321e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117245437, + "host": "127.0.0.1:1234", + "theme": "grb", + "import": 2, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2271549, + 50.9545464 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Lattenzaun", + "uid": "2603279", + "editor": "MapComplete 0.15.6", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-10T12:53:45Z", + "reviewed_features": [], + "create": 0, + "modify": 26, + "delete": 0, + "area": 0.000312531730559862, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117244900, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 32, + "locale": "de", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.4374369, + 51.30851925 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "habi", + "uid": "15671", + "editor": "MapComplete 0.15.6", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-10T10:12:34Z", + "reviewed_features": [], + "create": 0, + "modify": 14, + "delete": 0, + "area": 0.00000142921481999509, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117238352, + "host": "mapcomplete.osm.be", + "theme": "trees", + "answer": 18, + "locale": "en", + "imagery": "osm", + "change_within_25m": 16, + "change_within_50m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.4294232000000004, + 46.95223085 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Lattenzaun", + "uid": "2603279", + "editor": "MapComplete 0.15.6", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-10T09:57:48Z", + "reviewed_features": [], + "create": 0, + "modify": 28, + "delete": 0, + "area": 0.000147436880680092, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117237763, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 38, + "locale": "de", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.4404786, + 51.30683205 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Sparkofska", + "uid": "15028493", + "editor": "MapComplete 0.15.6", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-10T09:34:40Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117236734, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "drinking_water", + "answer": 1, + "locale": "en", + "imagery": "CartoDB.Voyager" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 8.2858713, + 50.8866216 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.15.6", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-10T05:50:15Z", + "reviewed_features": [], + "create": 0, + "modify": 109, + "delete": 0, + "area": 0.0147166456669596, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117228304, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 193, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.9223640500000005, + 51.1093147 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.15.6", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-10T04:25:15Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117226569, + "host": "mapcomplete.osm.be", + "theme": "trees", + "locale": "en", + "imagery": "cyclosm", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -71.3379922, + -29.9535533 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Marcel1109", + "uid": "14940118", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-09T23:32:39Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117222929, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.5541946, + 52.0577699 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "rejbzh", + "uid": "15051154", + "editor": "MapComplete 0.15.6", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-09T23:24:21Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117222795, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "answer": 1, + "locale": "fr", + "imagery": "fr.ign.bdortho" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.6095722, + 42.960264 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.15.6", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-09T23:03:38Z", + "reviewed_features": [], + "create": 0, + "modify": 21, + "delete": 0, + "area": 0.000204124782880029, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117222384, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 27, + "locale": "nl", + "imagery": "osm", + "change_within_5000m": 27 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.9301259, + 51.0936796 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "rejbzh", + "uid": "15051154", + "editor": "MapComplete 0.15.6", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-09T22:48:48Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 1, + "area": 8.11762230002591e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117222003, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 1, + "locale": "fr", + "imagery": "fr.ign.bdortho", + "deletion": 1, + "deletion:node/9493709466": "duplicate" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.6481919500000002, + 42.91931475 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.15.6", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-09T22:43:28Z", + "reviewed_features": [], + "create": 533, + "modify": 13, + "delete": 0, + "area": 0.00000437973960998855, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117221882, + "host": "mapcomplete.osm.be", + "move": 10, + "theme": "grb", + "answer": 1, + "import": 70, + "locale": "nl", + "imagery": "AGIVFlandersGRB", + "conflation": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.23152855, + 50.95920065 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.15.6", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-09T22:39:09Z", + "reviewed_features": [], + "create": 25, + "modify": 0, + "delete": 0, + "area": 1.29470419999773e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117221776, + "host": "mapcomplete.osm.be", + "theme": "grb", + "import": 2, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.23170945, + 50.9593676 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.15.6", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-09T22:38:45Z", + "reviewed_features": [], + "create": 5, + "modify": 0, + "delete": 0, + "area": 2.8156800001431e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117221761, + "host": "mapcomplete.osm.be", + "theme": "grb", + "import": 1, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2319998000000005, + 50.9592019 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.15.6", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-09T22:37:19Z", + "reviewed_features": [], + "create": 0, + "modify": 11, + "delete": 0, + "area": 4.30737500005559e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117221726, + "host": "mapcomplete.osm.be", + "move": 10, + "theme": "grb", + "locale": "nl", + "imagery": "osm", + "conflation": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.23211755, + 50.95863825 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Stinus_Clasius", + "uid": "1086503", + "editor": "MapComplete 0.15.6", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-09T21:58:45Z", + "reviewed_features": [], + "create": 134, + "modify": 0, + "delete": 0, + "area": 0.0000012432383199994, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117220765, + "host": "mapcomplete.osm.be", + "theme": "grb", + "import": 20, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.6312961999999995, + 51.3481569 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 70, + "name": "Impossible angle in a highway" + } + ], + "tags": [], + "features": [ + { + "url": "way-736570673", + "name": "Westmorland Way", + "osm_id": 736570673, + "reasons": [ + 70 + ], + "version": 3, + "primary_tags": { + "highway": "primary" + } + }, + { + "url": "way-126044600", + "name": "Westmorland Way", + "osm_id": 126044600, + "reasons": [ + 70 + ], + "version": 2, + "primary_tags": { + "highway": "primary" + } + }, + { + "url": "way-736570670", + "name": "Westmorland Way", + "osm_id": 736570670, + "reasons": [ + 70 + ], + "version": 3, + "primary_tags": { + "highway": "primary" + } + } + ], + "user": "confusedbuffalo", + "uid": "242345", + "editor": "MapComplete 0.15.6", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-09T21:18:26Z", + "reviewed_features": [], + "create": 0, + "modify": 43, + "delete": 0, + "area": 0.0400825428863997, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117219747, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 62, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.6448942999999998, + 55.2582255 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Marvin Geisler", + "uid": "13424339", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-09T20:35:12Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117218343, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.5531508, + 52.0544254 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "rejbzh", + "uid": "15051154", + "editor": "MapComplete 0.15.6", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-09T20:26:53Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117218067, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 1, + "locale": "fr", + "imagery": "CartoDB.Voyager" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.6485795, + 42.9187911 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "rejbzh", + "uid": "15051154", + "editor": "MapComplete 0.15.6", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-09T20:26:09Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117218051, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 1, + "locale": "fr", + "imagery": "CartoDB.Voyager" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.6485997, + 42.9187699 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 70, + "name": "Impossible angle in a highway" + } + ], + "tags": [], + "features": [ + { + "url": "way-126044593", + "name": "Station Road", + "osm_id": 126044593, + "reasons": [ + 70 + ], + "version": 6, + "primary_tags": { + "highway": "primary" + } + }, + { + "url": "way-126044594", + "name": "Station Road", + "osm_id": 126044594, + "reasons": [ + 70 + ], + "version": 5, + "primary_tags": { + "highway": "secondary" + } + }, + { + "url": "way-125785869", + "name": "Stakeford Lane", + "osm_id": 125785869, + "reasons": [ + 70 + ], + "version": 4, + "primary_tags": { + "highway": "primary" + } + } + ], + "user": "confusedbuffalo", + "uid": "242345", + "editor": "MapComplete 0.15.6", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-09T19:51:05Z", + "reviewed_features": [], + "create": 0, + "modify": 98, + "delete": 0, + "area": 0.0162084351371999, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117217034, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 143, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.56836845, + 55.1422099 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Lattenzaun", + "uid": "2603279", + "editor": "MapComplete 0.15.6", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-09T19:33:32Z", + "reviewed_features": [], + "create": 0, + "modify": 84, + "delete": 0, + "area": 0.000437229224130107, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117216564, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 117, + "locale": "de", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 9.43007285, + 51.30919625 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "anticamfoix", + "uid": "15042359", + "editor": "MapComplete 0.15.6", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-09T17:57:13Z", + "reviewed_features": [], + "create": 3, + "modify": 3, + "delete": 0, + "area": 5.70685920000429e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117213496, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "answer": 8, + "locale": "fr", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.640953, + 42.9185613 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "StefDeGreef", + "uid": "1860737", + "editor": "MapComplete 0.15.6", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-09T17:03:43Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117211444, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 3, + "locale": "fr", + "imagery": "CartoDB.Voyager", + "add-image": 1, + "change_over_5000m": 1, + "change_within_25m": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4294978, + 50.8067103 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "philippec", + "uid": "76884", + "editor": "MapComplete 0.15.6", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-09T15:43:41Z", + "reviewed_features": [], + "create": 2, + "modify": 3, + "delete": 0, + "area": 0.00000295323861000725, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117208566, + "host": "mapcomplete.osm.be", + "theme": "toilets", + "answer": 7, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 2, + "change_within_1000m": 7 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.47771655, + 51.028050050000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "jas7100", + "uid": "15023699", + "editor": "MapComplete 0.15.6", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-09T14:48:31Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117206256, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "answer": 3, + "locale": "fr", + "imagery": "SPW_ORTHO_LAST" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3936619, + 50.4801134 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "bponkishore", + "uid": "14062769", + "editor": "MapComplete 0.15.6", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-09T14:43:39Z", + "reviewed_features": [], + "create": 0, + "modify": 30, + "delete": 0, + "area": 0.00205493764451984, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117205993, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 30, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 79.509296, + 11.6121965 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "anticamfoix", + "uid": "15042359", + "editor": "MapComplete 0.15.6", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-09T14:29:58Z", + "reviewed_features": [], + "create": 2, + "modify": 5, + "delete": 0, + "area": 0.00000871070819999706, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117205330, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "answer": 8, + "locale": "fr", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.6086410999999998, + 42.962588049999994 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "anticamfoix", + "uid": "15042359", + "editor": "MapComplete 0.15.6", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-09T14:29:57Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117205328, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "answer": 3, + "locale": "fr", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.6095722, + 42.960264 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "anticamfoix", + "uid": "15042359", + "editor": "MapComplete 0.15.6", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-09T14:29:49Z", + "reviewed_features": [], + "create": 1, + "modify": 5, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117205318, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "answer": 6, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.6095936, + 42.960264 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Albin Gasparetto", + "uid": "1227542", + "editor": "MapComplete 0.15.6", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-09T14:29:14Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117205291, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "answer": 3, + "locale": "fr", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 1.6096097, + 42.960319 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Mark Rogerson", + "uid": "14388354", + "editor": "MapComplete 0.15.6", + "comment": "Adding data with #MapComplete for theme #climbing", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-09T14:22:29Z", + "reviewed_features": [], + "create": 0, + "modify": 7, + "delete": 0, + "area": 0.00476037562820004, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117204967, + "host": "mapcomplete.osm.be", + "theme": "climbing", + "answer": 13, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.25795455, + 51.7141201 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "bponkishore", + "uid": "14062769", + "editor": "MapComplete 0.15.6", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-09T14:19:50Z", + "reviewed_features": [], + "create": 0, + "modify": 20, + "delete": 0, + "area": 0.000342445613260125, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117204832, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 23, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 79.47874895, + 11.608314499999999 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "DNRvuP", + "uid": "15049065", + "editor": "MapComplete 0.15.6", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-09T14:02:05Z", + "reviewed_features": [], + "create": 2, + "modify": 0, + "delete": 0, + "area": 3.7094008000296e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117204073, + "host": "mapcomplete.osm.be", + "theme": "benches", + "answer": 3, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.4038968, + 50.3474326 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Locatus_Raf", + "uid": "14799940", + "editor": "MapComplete 0.15.6", + "comment": "Adding data with #MapComplete for theme #https://gist.githubusercontent.com/joostschouppe/4f631b3f658b67bcfafd56b731c726dc/raw/d39021f0731179a8105531f2e4254d1fe4a6eacf/locatus.json", + "comments_count": 1, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-09T14:01:26Z", + "reviewed_features": [], + "create": 9, + "modify": 4, + "delete": 0, + "area": 0.00000900986817000346, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117204046, + "host": "mapcomplete.osm.be", + "theme": "https://gist.githubusercontent.com/joostschouppe/4f631b3f658b67bcfafd56b731c726dc/raw/d39021f0731179a8105531f2e4254d1fe4a6eacf/locatus.json", + "answer": 8, + "locale": "nl", + "imagery": "osm", + "add-image": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.5409599499999995, + 51.22351245 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Rienux", + "uid": "11911273", + "editor": "MapComplete 0.15.6", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-09T13:46:21Z", + "reviewed_features": [], + "create": 0, + "modify": 190, + "delete": 0, + "area": 0.638697690991675, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117203387, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 276, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.4367402499999997, + 51.04148375 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.15.6", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-09T13:11:51Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117201983, + "host": "mapcomplete.osm.be", + "theme": "trees", + "answer": 1, + "locale": "en", + "imagery": "cyclosm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.2450132, + -39.8149123 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Locatus_Raf", + "uid": "14799940", + "editor": "MapComplete 0.15.6", + "comment": "Adding data with #MapComplete for theme #https://gist.githubusercontent.com/joostschouppe/4f631b3f658b67bcfafd56b731c726dc/raw/d39021f0731179a8105531f2e4254d1fe4a6eacf/locatus.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-09T12:09:58Z", + "reviewed_features": [], + "create": 3, + "modify": 4, + "delete": 0, + "area": 0.00000208089727000232, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117199538, + "host": "mapcomplete.osm.be", + "theme": "https://gist.githubusercontent.com/joostschouppe/4f631b3f658b67bcfafd56b731c726dc/raw/d39021f0731179a8105531f2e4254d1fe4a6eacf/locatus.json", + "answer": 4, + "locale": "nl", + "imagery": "osm", + "add-image": 3, + "change_over_5000m": 3, + "change_within_50m": 3, + "change_within_100m": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.51970325, + 51.23128395 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.15.6", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/seppesantens/MapComplete-Themes/main/VerkeerdeBordenDatabank/VerkeerdeBordenDatabank.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-09T12:08:06Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117199461, + "host": "mapcomplete.osm.be", + "theme": "gh://seppesantens/mapcomplete-themes/main/verkeerdebordendatabank/verkeerdebordendatabank.json", + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_within_5000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2410496, + 51.2064575 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "nicolas2b54", + "uid": "14828783", + "editor": "MapComplete 0.15.6", + "comment": "Adding data with #MapComplete for theme #sidewalks", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-09T10:46:20Z", + "reviewed_features": [], + "create": 0, + "modify": 25, + "delete": 0, + "area": 0.000222428175280065, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117196396, + "host": "mapcomplete.osm.be", + "theme": "sidewalks", + "answer": 32, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.4348868, + 48.83941945 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Locatus_Raf", + "uid": "14799940", + "editor": "MapComplete 0.15.6", + "comment": "Adding data with #MapComplete for theme #https://gist.githubusercontent.com/joostschouppe/4f631b3f658b67bcfafd56b731c726dc/raw/d39021f0731179a8105531f2e4254d1fe4a6eacf/locatus.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-09T10:19:40Z", + "reviewed_features": [], + "create": 7, + "modify": 6, + "delete": 0, + "area": 0.0000391226473999729, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117195266, + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "https://gist.githubusercontent.com/joostschouppe/4f631b3f658b67bcfafd56b731c726dc/raw/d39021f0731179a8105531f2e4254d1fe4a6eacf/locatus.json", + "answer": 10, + "locale": "nl", + "imagery": "osm", + "add-image": 3, + "change_over_5000m": 7, + "change_within_25m": 14, + "move:node/9492215009": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.512715399999999, + 51.231305 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Rienux", + "uid": "11911273", + "editor": "MapComplete 0.15.6", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-09T10:14:28Z", + "reviewed_features": [], + "create": 0, + "modify": 162, + "delete": 0, + "area": 0.855378118823207, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117195083, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 217, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.93866145, + 51.1283177 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Locatus_Jori", + "uid": "14800690", + "editor": "MapComplete 0.15.6", + "comment": "Adding data with #MapComplete for theme #https://gist.githubusercontent.com/joostschouppe/4f631b3f658b67bcfafd56b731c726dc/raw/d39021f0731179a8105531f2e4254d1fe4a6eacf/locatus.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-09T09:56:41Z", + "reviewed_features": [], + "create": 13, + "modify": 19, + "delete": 0, + "area": 0.000752581810510032, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117194308, + "host": "mapcomplete.osm.be", + "theme": "https://gist.githubusercontent.com/joostschouppe/4f631b3f658b67bcfafd56b731c726dc/raw/d39021f0731179a8105531f2e4254d1fe4a6eacf/locatus.json", + "answer": 8, + "locale": "nl", + "imagery": "osm", + "add-image": 14, + "change_over_5000m": 13, + "change_within_25m": 18, + "change_within_50m": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.52054885, + 51.23210245 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "habi", + "uid": "15671", + "editor": "MapComplete 0.15.6", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-09T09:46:54Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 1, + "area": 1.13080800001156e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117193831, + "host": "mapcomplete.osm.be", + "theme": "trees", + "answer": 3, + "locale": "en", + "imagery": "osm", + "deletion": 1, + "change_within_25m": 3, + "change_within_100m": 1, + "deletion:node/6119665025": "disused" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.4201695, + 46.93757605 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Locatus_Raf", + "uid": "14799940", + "editor": "MapComplete 0.15.6", + "comment": "Adding data with #MapComplete for theme #https://gist.githubusercontent.com/joostschouppe/4f631b3f658b67bcfafd56b731c726dc/raw/d39021f0731179a8105531f2e4254d1fe4a6eacf/locatus.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-09T08:40:02Z", + "reviewed_features": [], + "create": 14, + "modify": 17, + "delete": 0, + "area": 0.000103596247519954, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117191011, + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "https://gist.githubusercontent.com/joostschouppe/4f631b3f658b67bcfafd56b731c726dc/raw/d39021f0731179a8105531f2e4254d1fe4a6eacf/locatus.json", + "answer": 11, + "locale": "nl", + "imagery": "osm", + "add-image": 13, + "change_over_5000m": 14, + "change_within_25m": 11, + "change_within_50m": 5, + "change_within_100m": 9, + "move:node/9491933424": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.49906635, + 51.2332707 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.15.6", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-09T08:09:38Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117189898, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "locale": "en", + "imagery": "CartoDB.Voyager", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3811197, + 50.8581346 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "bollyboll", + "uid": "12120321", + "editor": "MapComplete 0.15.6", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-09T07:03:17Z", + "reviewed_features": [], + "create": 38, + "modify": 2, + "delete": 0, + "area": 0.000449286868800087, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117187792, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "answer": 17, + "locale": "de", + "imagery": "osm", + "change_over_5000m": 38, + "change_within_25m": 11, + "change_within_50m": 3, + "change_within_100m": 1, + "change_within_500m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.6946479, + 48.0103681 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.15.5", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-08T23:54:47Z", + "reviewed_features": [], + "create": 0, + "modify": 8, + "delete": 0, + "area": 0.00111348838039994, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117180667, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 9, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2616456, + 51.2185259 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "confusedbuffalo", + "uid": "242345", + "editor": "MapComplete 0.15.5", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-08T21:41:30Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.000312971518639712, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117178203, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 2, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.8780273, + 54.5464718 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Frans_Napaters", + "uid": "3574538", + "editor": "MapComplete 0.15.5", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-08T21:35:34Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117178055, + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "answer": 1, + "locale": "nl", + "imagery": "CartoDB.Voyager", + "change_over_5000m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.8364815, + 51.1846906 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.15.5", + "comment": "Adding data with #MapComplete for theme #waste_basket", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-08T19:47:02Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117175034, + "host": "mapcomplete.osm.be", + "theme": "waste_basket", + "answer": 1, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.5492029, + 50.9430976 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.15.5", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-08T19:41:50Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117174875, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 4, + "locale": "en", + "imagery": "AGIV", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.0039372, + 51.1292317 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.15.5", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-08T19:32:47Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.0853101078559389, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117174624, + "host": "mapcomplete.osm.be", + "theme": "benches", + "answer": 1, + "locale": "en", + "imagery": "osm", + "add-image": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.77762945, + 51.0366205 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-9490613102", + "osm_id": 9490613102, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "tourism": "map" + } + } + ], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.15.5", + "comment": "Adding data with #MapComplete for theme #maps", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-08T19:28:28Z", + "reviewed_features": [], + "create": 3, + "modify": 1, + "delete": 0, + "area": 0.186519321469497, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117174481, + "host": "mapcomplete.osm.be", + "theme": "maps", + "locale": "en", + "imagery": "osm", + "add-image": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.715437100000001, + 51.00471125 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.15.5", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-08T18:21:22Z", + "reviewed_features": [], + "create": 0, + "modify": 0, + "delete": 1, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117172449, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "locale": "nl", + "imagery": "osm", + "deletion": 1, + "change_within_5000m": 1, + "deletion:node/9490464167": "testing point" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2157024, + 51.2154692 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "349499", + "uid": "7006347", + "editor": "MapComplete 0.15.5", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-08T18:15:43Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117172287, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_over_5000m": 1, + "change_within_500m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2157024, + 51.2154692 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.15.5", + "comment": "Adding data with #MapComplete for theme #cafes_and_pubs", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-08T18:12:20Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117172158, + "host": "mapcomplete.osm.be", + "theme": "cafes_and_pubs", + "locale": "en", + "imagery": "osm", + "add-image": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3719104, + 50.8495035 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.15.5", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-08T18:08:34Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 4.06296000009218e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117172020, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "locale": "en", + "imagery": "CartoDB.Voyager", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3947423, + 50.8541809 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.15.5", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-08T17:45:23Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 9.28449999955957e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117171205, + "host": "mapcomplete.osm.be", + "theme": "food", + "locale": "en", + "imagery": "osm", + "add-image": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3580935, + 50.844928949999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 4, + "name": "mass modification" + } + ], + "tags": [], + "features": [], + "user": "Rienux", + "uid": "11911273", + "editor": "MapComplete 0.15.4", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-08T16:12:42Z", + "reviewed_features": [], + "create": 0, + "modify": 439, + "delete": 0, + "area": 1.50158077902896, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117167781, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 637, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.88985565, + 51.104120699999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.15.4", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-08T14:38:31Z", + "reviewed_features": [], + "create": 31, + "modify": 46, + "delete": 0, + "area": 0.000095567433600134, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117164043, + "host": "mapcomplete.osm.be", + "move": 43, + "theme": "grb", + "answer": 2, + "import": 2, + "locale": "nl", + "imagery": "osm", + "conflation": 6 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.9731199, + 51.16294205 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.15.4", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-08T13:53:00Z", + "reviewed_features": [], + "create": 213, + "modify": 65, + "delete": 0, + "area": 0.0130425630748969, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117162248, + "host": "mapcomplete.osm.be", + "move": 53, + "theme": "grb", + "import": 22, + "locale": "nl", + "imagery": "osm", + "conflation": 24, + "change_over_5000m": 13 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.733478, + 51.40781965 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Locatus_Raf", + "uid": "14799940", + "editor": "MapComplete 0.15.4", + "comment": "Adding data with #MapComplete for theme #https://gist.githubusercontent.com/joostschouppe/4f631b3f658b67bcfafd56b731c726dc/raw/d39021f0731179a8105531f2e4254d1fe4a6eacf/locatus.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-08T13:09:12Z", + "reviewed_features": [], + "create": 7, + "modify": 10, + "delete": 1, + "area": 0.0000588182025200195, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117160589, + "host": "mapcomplete.osm.be", + "move": 4, + "theme": "https://gist.githubusercontent.com/joostschouppe/4f631b3f658b67bcfafd56b731c726dc/raw/d39021f0731179a8105531f2e4254d1fe4a6eacf/locatus.json", + "answer": 6, + "locale": "nl", + "imagery": "osm", + "deletion": 1, + "add-image": 6, + "change_over_5000m": 7, + "change_within_25m": 3, + "change_within_50m": 4, + "change_within_100m": 5, + "change_within_500m": 5, + "move:node/7980623376": "improve_accuracy", + "move:node/9489869914": "improve_accuracy", + "move:node/9489892866": "improve_accuracy", + "deletion:node/7980623376": "testing point" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.5145031, + 51.22344645 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + }, + { + "id": 42, + "name": "Invalid tag modification" + } + ], + "tags": [], + "features": [ + { + "url": "way-125921816", + "name": "Verkeerstuin 'Biesieklette'", + "osm_id": 125921816, + "reasons": [ + 42 + ], + "version": 7, + "primary_tags": {} + } + ], + "user": "jospyck", + "uid": "12128135", + "editor": "MapComplete 0.15.4", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-08T12:32:11Z", + "reviewed_features": [], + "create": 2, + "modify": 8, + "delete": 0, + "area": 0.0270943589590802, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117159099, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 9, + "locale": "nl", + "imagery": "CartoDB.Voyager", + "soft-delete": 1, + "soft-delete:way/125921816": "dit is geen speeltuin, maar een verkeerstuin waar kinderen verkeersregels leren" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.32444845, + 50.968232400000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Locatus_Raf", + "uid": "14799940", + "editor": "MapComplete 0.15.4", + "comment": "Adding data with #MapComplete for theme #https://gist.githubusercontent.com/joostschouppe/4f631b3f658b67bcfafd56b731c726dc/raw/d39021f0731179a8105531f2e4254d1fe4a6eacf/locatus.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-08T09:35:59Z", + "reviewed_features": [], + "create": 23, + "modify": 21, + "delete": 0, + "area": 0.00014069695652991, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117151884, + "host": "mapcomplete.osm.be", + "move": 2, + "theme": "https://gist.githubusercontent.com/joostschouppe/4f631b3f658b67bcfafd56b731c726dc/raw/d39021f0731179a8105531f2e4254d1fe4a6eacf/locatus.json", + "answer": 27, + "locale": "nl", + "imagery": "osm", + "add-image": 17, + "change_over_5000m": 23, + "change_within_25m": 28, + "change_within_50m": 3, + "change_within_100m": 8, + "change_within_500m": 7, + "move:node/9489430949": "improve_accuracy", + "move:node/9489646032": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.51425635, + 51.22657435 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Locatus_Raf", + "uid": "14799940", + "editor": "MapComplete 0.15.4", + "comment": "Adding data with #MapComplete for theme #https://gist.githubusercontent.com/joostschouppe/4f631b3f658b67bcfafd56b731c726dc/raw/d39021f0731179a8105531f2e4254d1fe4a6eacf/locatus.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-08T09:32:05Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117151752, + "host": "mapcomplete.osm.be", + "theme": "https://gist.githubusercontent.com/joostschouppe/4f631b3f658b67bcfafd56b731c726dc/raw/d39021f0731179a8105531f2e4254d1fe4a6eacf/locatus.json", + "answer": 2, + "locale": "nl", + "imagery": "osm", + "add-image": 2, + "change_over_5000m": 1, + "change_within_25m": 3, + "change_within_50m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.5110612, + 51.2254501 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Locatus_Jori", + "uid": "14800690", + "editor": "MapComplete 0.15.4", + "comment": "Adding data with #MapComplete for theme #https://gist.githubusercontent.com/joostschouppe/4f631b3f658b67bcfafd56b731c726dc/raw/d39021f0731179a8105531f2e4254d1fe4a6eacf/locatus.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-08T09:02:46Z", + "reviewed_features": [], + "create": 44, + "modify": 48, + "delete": 1, + "area": 0.000170286208800126, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117150611, + "host": "mapcomplete.osm.be", + "theme": "https://gist.githubusercontent.com/joostschouppe/4f631b3f658b67bcfafd56b731c726dc/raw/d39021f0731179a8105531f2e4254d1fe4a6eacf/locatus.json", + "answer": 16, + "locale": "nl", + "imagery": "osm", + "deletion": 1, + "add-image": 41, + "change_over_5000m": 44, + "change_within_25m": 58, + "deletion:node/9489217545": "testing point" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.5147709, + 51.2263965 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "kapiza", + "uid": "15040216", + "editor": "MapComplete 0.15.4", + "comment": "Adding data with #MapComplete for theme #cycle_infra", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-08T08:48:32Z", + "reviewed_features": [], + "create": 0, + "modify": 20, + "delete": 0, + "area": 0.000074070873000003, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117149982, + "host": "mapcomplete.osm.be", + "theme": "cycle_infra", + "answer": 20, + "locale": "en", + "imagery": "EsriWorldImagery" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.852185, + 48.00468035 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Locatus_Raf", + "uid": "14799940", + "editor": "MapComplete 0.15.4", + "comment": "Adding data with #MapComplete for theme #https://gist.githubusercontent.com/joostschouppe/4f631b3f658b67bcfafd56b731c726dc/raw/d39021f0731179a8105531f2e4254d1fe4a6eacf/locatus.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-08T08:37:51Z", + "reviewed_features": [], + "create": 13, + "modify": 19, + "delete": 0, + "area": 0.0000215856762799765, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117149573, + "host": "mapcomplete.osm.be", + "move": 4, + "theme": "https://gist.githubusercontent.com/joostschouppe/4f631b3f658b67bcfafd56b731c726dc/raw/d39021f0731179a8105531f2e4254d1fe4a6eacf/locatus.json", + "answer": 19, + "locale": "nl", + "imagery": "osm", + "add-image": 10, + "change_over_5000m": 13, + "change_within_25m": 6, + "change_within_50m": 17, + "change_within_100m": 10, + "move:node/9489129510": "improve_accuracy", + "move:node/9489261714": "improve_accuracy", + "move:node/9489269562": "improve_accuracy", + "move:node/9489300240": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.5162472000000005, + 51.226175299999994 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.15.4", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-08T08:27:46Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.000139513019360011, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117149227, + "host": "mapcomplete.osm.be", + "theme": "benches", + "answer": 8, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.003857099999999, + 51.134489349999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.15.4", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-08T07:54:22Z", + "reviewed_features": [], + "create": 0, + "modify": 42, + "delete": 0, + "area": 0.00102796421472014, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117148021, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 57, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.9979423, + 51.1462133 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "bollyboll", + "uid": "12120321", + "editor": "MapComplete 0.15.4", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-08T07:48:32Z", + "reviewed_features": [], + "create": 15, + "modify": 4, + "delete": 0, + "area": 0.000204659967420032, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117147804, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "answer": 14, + "locale": "de", + "imagery": "osm", + "change_over_5000m": 15, + "change_within_25m": 7, + "change_within_50m": 3, + "change_within_100m": 3, + "change_within_500m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.725999250000001, + 47.9900886 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.15.4", + "comment": "Adding data with #MapComplete for theme #nature", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-08T07:42:57Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.000643456548000032, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117147589, + "host": "mapcomplete.osm.be", + "theme": "nature", + "answer": 2, + "locale": "nl", + "imagery": "osm", + "add-image": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.010748400000001, + 51.13582065 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.15.4", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-07T23:59:53Z", + "reviewed_features": [], + "create": 8, + "modify": 62, + "delete": 0, + "area": 8.8785146999344e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117139657, + "host": "mapcomplete.osm.be", + "move": 55, + "theme": "grb", + "answer": 1, + "locale": "nl", + "imagery": "osm", + "conflation": 12, + "change_within_500m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.98983215, + 51.16480105 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "dmx_valou", + "uid": "13908331", + "editor": "MapComplete 0.15.4", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-07T19:26:20Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117132736, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "answer": 2, + "locale": "fr", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.1215835, + 46.2326336 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 4, + "name": "mass modification" + } + ], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.15.4", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-07T16:43:09Z", + "reviewed_features": [], + "create": 0, + "modify": 540, + "delete": 0, + "area": 0.0281794568235999, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117127208, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 886, + "locale": "nl", + "imagery": "AGIV", + "change_over_5000m": 1, + "change_within_5000m": 54 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.0031348, + 51.1688049 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.15.4", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-07T16:33:09Z", + "reviewed_features": [], + "create": 0, + "modify": 44, + "delete": 0, + "area": 0.000180281591279987, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117126820, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 59, + "locale": "nl", + "imagery": "AGIV" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.94144975, + 51.1434014 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "trolleway", + "uid": "397326", + "editor": "MapComplete 0.15.4", + "comment": "Adding data with #MapComplete for theme #entrances", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-07T15:59:49Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 2.60532799993378e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117125624, + "host": "mapcomplete.osm.be", + "theme": "entrances", + "answer": 4, + "locale": "en", + "imagery": "osm", + "change_within_5000m": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 37.6614644, + 55.77070055 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-9487156863", + "osm_id": 9487156863, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "tourism": "map" + } + } + ], + "user": "mike140", + "uid": "2471547", + "editor": "MapComplete 0.15.4", + "comment": "Adding data with #MapComplete for theme #maps", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-07T15:48:01Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117125249, + "host": "mapcomplete.osm.be", + "theme": "maps", + "locale": "ru", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 34.7990064, + 50.8962661 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.15.4", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-07T15:14:19Z", + "reviewed_features": [], + "create": 0, + "modify": 16, + "delete": 0, + "area": 0.00227333440542055, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117124054, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 22, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 12, + "change_within_5000m": 10 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.054395899999999, + 51.11872975 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "CjMalone", + "uid": "6816132", + "editor": "MapComplete 0.15.5", + "comment": "Adding data with #MapComplete for theme #uk_addresses", + "comments_count": 2, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-07T14:25:59Z", + "reviewed_features": [], + "create": 11, + "modify": 8, + "delete": 0, + "area": 0.00000147473078999973, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117122175, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "uk_addresses", + "answer": 16, + "import": 11, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.29605595, + 50.69736545000001 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.15.4", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-07T13:47:34Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.00000266964404999211, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117120640, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 1, + "locale": "en", + "imagery": "CartoDB.Voyager", + "add-image": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.393012649999999, + 50.85382595 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.15.4", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-07T13:35:32Z", + "reviewed_features": [], + "create": 0, + "modify": 29, + "delete": 0, + "area": 0.00364316540420003, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117120081, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 39, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 13, + "change_within_5000m": 26 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.0215511, + 51.155660049999994 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.15.4", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-07T12:48:13Z", + "reviewed_features": [], + "create": 0, + "modify": 14, + "delete": 0, + "area": 0.000047543134770004, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117118217, + "host": "mapcomplete.osm.be", + "theme": "benches", + "answer": 20, + "locale": "nl", + "imagery": "osm", + "change_within_500m": 20 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.00740855, + 51.127844550000006 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Jakuje", + "uid": "1641564", + "editor": "MapComplete 0.15.4", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-07T08:23:47Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117107587, + "host": "mapcomplete.osm.be", + "theme": "trees", + "answer": 2, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 16.5751174, + 49.2333062 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "bollyboll", + "uid": "12120321", + "editor": "MapComplete 0.15.4", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-07T08:00:15Z", + "reviewed_features": [], + "create": 13, + "modify": 0, + "delete": 0, + "area": 0.00038083420944001, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117106705, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "answer": 7, + "locale": "de", + "imagery": "osm", + "change_over_5000m": 13, + "change_within_25m": 4, + "change_within_50m": 2, + "change_within_100m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.8196291, + 48.02427265 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "jas7100", + "uid": "15023699", + "editor": "MapComplete 0.15.4", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-07T00:01:17Z", + "reviewed_features": [], + "create": 7, + "modify": 2, + "delete": 0, + "area": 0.0217250127215007, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117098329, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "answer": 16, + "locale": "fr", + "imagery": "SPW_ORTHO_LAST", + "change_over_5000m": 8, + "change_within_5000m": 9 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2604713499999995, + 50.535606200000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.15.4", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-06T19:50:32Z", + "reviewed_features": [], + "create": 9, + "modify": 10, + "delete": 1, + "area": 0.00000271812923999703, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117092571, + "host": "mapcomplete.osm.be", + "move": 7, + "theme": "grb", + "answer": 1, + "locale": "nl", + "imagery": "osm", + "conflation": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.8077447499999995, + 51.1716143 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pipeton", + "uid": "11969052", + "editor": "MapComplete 0.15.4", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-06T19:33:01Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.00000152456625000562, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117092124, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 2, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.6082627499999997, + 37.180579550000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.15.4", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-06T16:44:00Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 2.97816999985172e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117086537, + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "benches", + "answer": 1, + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "move:node/9483811766": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.25039075, + 51.23787525 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.15.4", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-06T15:31:08Z", + "reviewed_features": [], + "create": 0, + "modify": 82, + "delete": 0, + "area": 0.005475181474, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117083441, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 122, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.98339075, + 51.190768 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.15.4", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-06T11:47:44Z", + "reviewed_features": [], + "create": 0, + "modify": 38, + "delete": 0, + "area": 0.000301493327310007, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117076107, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 45, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.99355415, + 51.16445125 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Driesvr", + "uid": "4757701", + "editor": "MapComplete 0.15.4", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-06T11:23:13Z", + "reviewed_features": [], + "create": 1, + "modify": 5, + "delete": 0, + "area": 1.76999999967769e-10, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117075258, + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "cyclofix", + "answer": 6, + "locale": "en", + "imagery": "CartoDB.Voyager", + "add-image": 1, + "move:node/9483033353": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.30692765, + 50.8342351 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "shogun", + "uid": "94315", + "editor": "MapComplete 0.15.4", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-06T11:03:46Z", + "reviewed_features": [], + "create": 0, + "modify": 10, + "delete": 0, + "area": 0.000758011175500046, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117074726, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "hailhydrant", + "answer": 11, + "locale": "en", + "imagery": "HDM_HOT" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 12.69386325, + 51.0759341 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "kbentekik", + "uid": "4495", + "editor": "MapComplete 0.15.4", + "comment": "Adding data with #MapComplete for theme #observation_towers", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-06T10:56:40Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 8.57831999948163e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117074470, + "host": "mapcomplete.osm.be", + "theme": "observation_towers", + "answer": 3, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.73895285, + 50.8125385 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "kbentekik", + "uid": "4495", + "editor": "MapComplete 0.15.4", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-06T10:23:06Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 4.42549999997565e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117073294, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "answer": 2, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.559968, + 50.849278350000006 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "kbentekik", + "uid": "4495", + "editor": "MapComplete 0.15.4", + "comment": "Adding data with #MapComplete for theme #fritures", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-06T10:15:47Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117073072, + "host": "mapcomplete.osm.be", + "theme": "fritures", + "answer": 6, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.624339, + 50.8703127 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "kbentekik", + "uid": "4495", + "editor": "MapComplete 0.15.4", + "comment": "Adding data with #MapComplete for theme #sport_pitches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-06T10:11:50Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.00000417924069999491, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117072973, + "host": "mapcomplete.osm.be", + "theme": "sport_pitches", + "answer": 4, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.6149052, + 50.84535965 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "kbentekik", + "uid": "4495", + "editor": "MapComplete 0.15.4", + "comment": "Adding data with #MapComplete for theme #climbing", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-06T10:00:32Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117072647, + "host": "mapcomplete.osm.be", + "theme": "climbing", + "answer": 5, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.5877942, + 50.7352587 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "kbentekik", + "uid": "4495", + "editor": "MapComplete 0.15.4", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 3, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-06T09:52:03Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117072390, + "host": "mapcomplete.osm.be", + "theme": "aed", + "answer": 4, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.6012411, + 50.8671691 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.15.4", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-06T09:34:32Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117071913, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 3, + "locale": "nl", + "imagery": "AGIVFlandersGRB" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.2344225, + 50.7377153 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "kbentekik", + "uid": "4495", + "editor": "MapComplete 0.15.4", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-06T09:19:50Z", + "reviewed_features": [], + "create": 1, + "modify": 25, + "delete": 0, + "area": 0.00554786979894018, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117071461, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 33, + "locale": "en", + "imagery": "CartoDB.Voyager", + "change_over_5000m": 2, + "change_within_5000m": 18 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.60071485, + 50.8358086 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "hfs", + "uid": "9607", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-06T08:19:24Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117070044, + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 13.0488154, + 52.3830947 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "oudalricus", + "uid": "29752", + "editor": "MapComplete 0.15.4", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-06T04:49:30Z", + "reviewed_features": [], + "create": 2, + "modify": 2, + "delete": 0, + "area": 0.0000509027850000251, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117067048, + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "answer": 5, + "locale": "en", + "imagery": "osm", + "change_over_5000m": 2, + "change_within_500m": 3, + "change_within_5000m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 6.6375567, + 49.7444332 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.15.4", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-06T03:36:36Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 1.75087499983324e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117066501, + "host": "mapcomplete.osm.be", + "theme": "trees", + "answer": 1, + "locale": "en", + "imagery": "EsriWorldImagery", + "add-image": 3, + "change_over_5000m": 1, + "change_within_1000m": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.57622965, + -33.58917985 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.15.4", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-06T01:28:05Z", + "reviewed_features": [], + "create": 1, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117065334, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 4, + "locale": "en", + "imagery": "osm", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3293576, + 50.9330894 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.15.4", + "comment": "Adding data with #MapComplete for theme #cyclestreets", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-06T01:11:22Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 8.23910149993863e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117065156, + "host": "mapcomplete.osm.be", + "theme": "cyclestreets", + "locale": "en", + "imagery": "osm", + "add-image": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.33040935, + 50.93343195 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.15.4", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-05T23:19:52Z", + "reviewed_features": [], + "create": 87, + "modify": 99, + "delete": 0, + "area": 0.0156375734063937, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117063791, + "host": "mapcomplete.osm.be", + "move": 87, + "theme": "grb", + "answer": 3, + "import": 14, + "locale": "nl", + "imagery": "osm", + "conflation": 20, + "change_over_5000m": 14 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.7057804999999995, + 51.006778499999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.15.4", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-05T22:31:34Z", + "reviewed_features": [], + "create": 12, + "modify": 40, + "delete": 0, + "area": 3.00064160001714e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117062931, + "host": "mapcomplete.osm.be", + "move": 38, + "theme": "grb", + "locale": "nl", + "imagery": "osm", + "conflation": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 2.9493548499999998, + 51.2238674 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.15.4", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-05T22:12:29Z", + "reviewed_features": [], + "create": 0, + "modify": 32, + "delete": 0, + "area": 0.0000289318822999867, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117062564, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "etymology", + "answer": 33, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4737913, + 51.04145065 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.15.4", + "comment": "Adding data with #MapComplete for theme #cyclestreets", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-05T21:07:17Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000393128015998355, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117061161, + "host": "mapcomplete.osm.be", + "theme": "cyclestreets", + "locale": "en", + "imagery": "osm", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.700900900000001, + 50.9468739 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.15.4", + "comment": "Adding data with #MapComplete for theme #bicycle_rental", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-05T21:05:37Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117061124, + "host": "mapcomplete.osm.be", + "theme": "bicycle_rental", + "answer": 2, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3505589, + 50.8534436 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.15.4", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-05T20:57:19Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117060916, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "locale": "en", + "imagery": "CartoDB.Voyager", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3848027, + 50.8537825 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "jas7100", + "uid": "15023699", + "editor": "MapComplete 0.15.4", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-05T20:30:50Z", + "reviewed_features": [], + "create": 3, + "modify": 0, + "delete": 0, + "area": 0.00117592998955005, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117060144, + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "answer": 7, + "locale": "fr", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.21651575, + 50.48277865 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pipeton", + "uid": "11969052", + "editor": "MapComplete 0.15.4", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-05T19:14:33Z", + "reviewed_features": [], + "create": 0, + "modify": 13, + "delete": 0, + "area": 0.000186666271319987, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117057746, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 18, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.6029033999999998, + 37.18449865 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.15.4", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-05T17:50:08Z", + "reviewed_features": [], + "create": 2, + "modify": 4, + "delete": 0, + "area": 1.086299999993e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117055064, + "host": "mapcomplete.osm.be", + "theme": "trees", + "answer": 2, + "locale": "en", + "imagery": "EsriWorldImagery", + "add-image": 2, + "change_over_5000m": 2, + "change_within_25m": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -70.6199609, + -33.41523425 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.15.4", + "comment": "Adding data with #MapComplete for theme #climbing", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-05T14:28:52Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117047039, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "climbing", + "answer": 1, + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_within_50m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.6993572, + 51.0548482 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.15.4", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-05T14:11:48Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117046304, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 2, + "locale": "en", + "imagery": "CartoDB.Voyager" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.4279919, + 50.8954137 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pipeton", + "uid": "11969052", + "editor": "MapComplete 0.15.4", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-05T12:28:57Z", + "reviewed_features": [], + "create": 0, + "modify": 34, + "delete": 0, + "area": 0.000823279896180065, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117042748, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 49, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.6102721, + 37.19314985 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.15.4", + "comment": "Adding data with #MapComplete for theme #cyclestreets", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-05T10:30:35Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000212131868001264, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117038736, + "host": "mapcomplete.osm.be", + "theme": "cyclestreets", + "locale": "en", + "imagery": "osm", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.5057758, + 50.8841731 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Jordi MF", + "uid": "8278438", + "editor": "MapComplete 0.15.4", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/yopaseopor/mcquests/master/nameca.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-04T23:08:30Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.737210158408981, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117026389, + "host": "mapcomplete.osm.be", + "theme": "gh://yopaseopor/mcquests/master/nameca.json", + "answer": 3, + "locale": "ca", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.2540176, + 39.169342150000006 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "confusedbuffalo", + "uid": "242345", + "editor": "MapComplete 0.15.4", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-04T22:22:16Z", + "reviewed_features": [], + "create": 0, + "modify": 90, + "delete": 0, + "area": 0.0401349367103696, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117024588, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 132, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.62166195, + 54.61615275 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Stereo", + "uid": "40611", + "editor": "MapComplete 0.15.4", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-04T22:09:40Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117024181, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 1, + "locale": "en", + "imagery": "CartoDB.Voyager" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -73.9586471, + 40.7358133 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.15.4", + "comment": "Adding data with #MapComplete for theme #fritures", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-04T20:14:36Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117020965, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "fritures", + "answer": 1, + "locale": "nl", + "imagery": "osm", + "change_within_25m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7001051, + 51.0525401 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "confusedbuffalo", + "uid": "242345", + "editor": "MapComplete 0.15.4", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-04T19:40:45Z", + "reviewed_features": [], + "create": 0, + "modify": 116, + "delete": 0, + "area": 0.0236791804765092, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117020021, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 165, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.4202968500000002, + 54.78992755 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "confusedbuffalo", + "uid": "242345", + "editor": "MapComplete 0.15.4", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-04T17:22:57Z", + "reviewed_features": [], + "create": 0, + "modify": 142, + "delete": 0, + "area": 0.0599800374607494, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117015486, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 218, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.61068935, + 54.93911265 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "bollyboll", + "uid": "12120321", + "editor": "MapComplete 0.15.4", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-04T15:35:16Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117011429, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "answer": 1, + "locale": "de", + "imagery": "osm", + "change_over_5000m": 1, + "change_within_100m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.8755227, + 47.9883074 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pipeton", + "uid": "11969052", + "editor": "MapComplete 0.15.4", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-04T15:28:35Z", + "reviewed_features": [], + "create": 0, + "modify": 51, + "delete": 0, + "area": 0.000343044279940017, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117011189, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 69, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -3.60746175, + 37.1764941 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Locatus_Raf", + "uid": "14799940", + "editor": "MapComplete 0.15.4", + "comment": "Adding data with #MapComplete for theme #https://gist.githubusercontent.com/joostschouppe/4f631b3f658b67bcfafd56b731c726dc/raw/d39021f0731179a8105531f2e4254d1fe4a6eacf/locatus.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-04T14:32:33Z", + "reviewed_features": [], + "create": 0, + "modify": 0, + "delete": 1, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117009200, + "host": "mapcomplete.osm.be", + "theme": "https://gist.githubusercontent.com/joostschouppe/4f631b3f658b67bcfafd56b731c726dc/raw/d39021f0731179a8105531f2e4254d1fe4a6eacf/locatus.json", + "locale": "nl", + "imagery": "osm", + "deletion": 1, + "deletion:node/8264901851": "not found" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.5144967, + 51.2274513 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.15.4", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-04T13:49:01Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117007591, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/signals", + "answer": 5, + "locale": "es", + "imagery": "EsriWorldImageryClarity", + "change_over_5000m": 1, + "change_within_100m": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.4142745, + -34.60851 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "StefDeGreef", + "uid": "1860737", + "editor": "MapComplete 0.15.4", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-04T11:58:30Z", + "reviewed_features": [], + "create": 2, + "modify": 4, + "delete": 1, + "area": 9.99999996726842e-13, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117003771, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 7, + "locale": "fr", + "imagery": "AGIV", + "deletion": 1, + "add-image": 2, + "change_over_5000m": 2, + "change_within_25m": 10, + "deletion:node/9474148329": "mauvaise catégorie" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4143583, + 50.8202936 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.15.4", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-04T10:50:55Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 0.0278837800463587, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 117000670, + "host": "mapcomplete.osm.be", + "theme": "benches", + "locale": "nl", + "imagery": "osm", + "add-image": 5, + "change_within_5000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3643696, + 51.1336217 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Stinus_Clasius", + "uid": "1086503", + "editor": "MapComplete 0.15.4", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-04T10:18:16Z", + "reviewed_features": [], + "create": 21, + "modify": 0, + "delete": 0, + "area": 8.10454100006014e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116999217, + "host": "mapcomplete.osm.be", + "theme": "grb", + "import": 1, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.00015065, + 50.914118450000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "quantumstate", + "uid": "71337", + "editor": "MapComplete 0.15.4", + "comment": "Adding data with #MapComplete for theme #sidewalks", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-04T10:17:42Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 7.81266200010587e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116999189, + "host": "mapcomplete.osm.be", + "theme": "sidewalks", + "answer": 3, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -0.04689035, + 51.4931733 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "bollyboll", + "uid": "12120321", + "editor": "MapComplete 0.15.4", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-04T07:25:27Z", + "reviewed_features": [], + "create": 7, + "modify": 0, + "delete": 0, + "area": 0.00000360670982000805, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116992786, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "answer": 3, + "locale": "de", + "imagery": "osm", + "change_over_5000m": 7, + "change_within_25m": 2, + "change_within_50m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.81097665, + 48.0206827 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "womped", + "uid": "1880469", + "editor": "MapComplete 0.15.4", + "comment": "Adding data with #MapComplete for theme #openwindpowermap", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-04T07:18:58Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 0.0000214852108499701, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116992590, + "host": "mapcomplete.osm.be", + "theme": "openwindpowermap", + "answer": 5, + "locale": "en", + "imagery": "CartoDB.Voyager" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 10.76630795, + 49.63019435 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.15.4", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-04T01:31:08Z", + "reviewed_features": [], + "create": 0, + "modify": 8, + "delete": 0, + "area": 0.000931500118709959, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116985905, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "shops", + "answer": 8, + "locale": "en", + "imagery": "osm", + "change_within_1000m": 1, + "change_within_5000m": 7 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2124950500000002, + 51.22994905 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.15.4", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-04T01:20:24Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116985783, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "cyclofix", + "answer": 1, + "locale": "nl", + "imagery": "CartoDB.Voyager", + "change_over_5000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.7086034, + 51.0371267 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 91, + "name": "Motorway/trunk geometry modified" + } + ], + "tags": [], + "features": [ + { + "url": "way-975389803", + "name": "Consett Road", + "osm_id": 975389803, + "reasons": [ + 91 + ], + "version": 4, + "primary_tags": { + "highway": "trunk" + } + } + ], + "user": "confusedbuffalo", + "uid": "242345", + "editor": "MapComplete 0.15.3", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-03T22:29:42Z", + "reviewed_features": [], + "create": 0, + "modify": 81, + "delete": 0, + "area": 0.0479769859208512, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116982670, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 123, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.73418035, + 54.89588915 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "confusedbuffalo", + "uid": "242345", + "editor": "MapComplete 0.15.3", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-03T18:30:09Z", + "reviewed_features": [], + "create": 0, + "modify": 109, + "delete": 0, + "area": 0.0285403107347409, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116975972, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 165, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + -1.65464475, + 54.71689 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "milenasonneveld", + "uid": "8177639", + "editor": "MapComplete 0.15.3", + "comment": "Adding data with #MapComplete for theme #climbing", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-03T15:44:58Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116970091, + "host": "mapcomplete.osm.be", + "theme": "climbing", + "answer": 2, + "locale": "en", + "imagery": "osm", + "add-image": 1, + "change_over_5000m": 1, + "change_within_25m": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.3006754, + 50.8825968 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.15.3", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-03T14:04:40Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116966319, + "host": "mapcomplete.osm.be", + "theme": "aed", + "answer": 4, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 1, + "change_within_5000m": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.3630863, + 50.9960832 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.15.3", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-03T13:00:07Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116963372, + "host": "mapcomplete.osm.be", + "theme": "gh://agusqui/mapcompleterailway/main/signals", + "answer": 4, + "locale": "es", + "imagery": "osm", + "change_over_5000m": 1, + "change_within_25m": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + -58.7921441, + -34.6497892 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.15.3", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-03T12:22:28Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116961725, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "shops", + "answer": 2, + "locale": "en", + "imagery": "osm", + "add-image": 1, + "change_within_100m": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2045793, + 51.2231139 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Locatus_Raf", + "uid": "14799940", + "editor": "MapComplete 0.15.3", + "comment": "Adding data with #MapComplete for theme #https://gist.githubusercontent.com/joostschouppe/4f631b3f658b67bcfafd56b731c726dc/raw/d39021f0731179a8105531f2e4254d1fe4a6eacf/locatus.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-03T11:18:10Z", + "reviewed_features": [], + "create": 6, + "modify": 11, + "delete": 0, + "area": 0.00000915342031999193, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116958998, + "host": "mapcomplete.osm.be", + "theme": "https://gist.githubusercontent.com/joostschouppe/4f631b3f658b67bcfafd56b731c726dc/raw/d39021f0731179a8105531f2e4254d1fe4a6eacf/locatus.json", + "answer": 8, + "locale": "nl", + "imagery": "osm", + "add-image": 7, + "change_over_5000m": 6, + "change_within_25m": 1, + "change_within_50m": 3, + "change_within_100m": 6, + "change_within_500m": 5 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.5027176, + 51.223291149999994 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 57, + "name": "Feature overlaps with existing features" + } + ], + "tags": [], + "features": [ + { + "url": "way-1027348440", + "osm_id": 1027348440, + "reasons": [ + 57 + ], + "version": 1, + "primary_tags": { + "building": "yes" + } + } + ], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.15.3", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-03T11:03:53Z", + "reviewed_features": [], + "create": 65, + "modify": 82, + "delete": 1, + "area": 0.000933149096000222, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116958369, + "host": "mapcomplete.osm.be", + "move": 70, + "theme": "grb", + "answer": 1, + "import": 2, + "locale": "nl", + "imagery": "osm", + "conflation": 26 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.8953164000000005, + 51.1479844 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "ladoga", + "uid": "827957", + "editor": "MapComplete 0.15.3", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-03T10:38:42Z", + "reviewed_features": [], + "create": 0, + "modify": 6, + "delete": 0, + "area": 0.0000254243576499923, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116957163, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 8, + "locale": "de", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 16.37077815, + 48.17006515 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.15.3", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-03T09:32:58Z", + "reviewed_features": [], + "create": 6, + "modify": 19, + "delete": 0, + "area": 2.18991759999316e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116954133, + "host": "mapcomplete.osm.be", + "move": 16, + "theme": "grb", + "locale": "nl", + "imagery": "osm", + "conflation": 6 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.036241199999999, + 51.1450411 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Locatus_Raf", + "uid": "14799940", + "editor": "MapComplete 0.15.3", + "comment": "Adding data with #MapComplete for theme #https://gist.githubusercontent.com/joostschouppe/4f631b3f658b67bcfafd56b731c726dc/raw/d39021f0731179a8105531f2e4254d1fe4a6eacf/locatus.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-03T09:31:10Z", + "reviewed_features": [], + "create": 12, + "modify": 16, + "delete": 0, + "area": 0.0000458808661800098, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116954048, + "host": "mapcomplete.osm.be", + "move": 3, + "theme": "https://gist.githubusercontent.com/joostschouppe/4f631b3f658b67bcfafd56b731c726dc/raw/d39021f0731179a8105531f2e4254d1fe4a6eacf/locatus.json", + "answer": 12, + "locale": "nl", + "imagery": "osm", + "add-image": 11, + "change_over_5000m": 12, + "change_within_25m": 14, + "change_within_100m": 8, + "change_within_500m": 4, + "move:node/9471164305": "improve_accuracy", + "move:node/9471270450": "improve_accuracy", + "move:node/9471273002": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.50380715, + 51.222460100000006 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "bollyboll", + "uid": "12120321", + "editor": "MapComplete 0.15.3", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-03T06:49:21Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116948018, + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "locale": "de", + "imagery": "osm", + "change_over_5000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 11.7879398, + 48.0076587 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Stinus_Clasius", + "uid": "1086503", + "editor": "MapComplete 0.15.3", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-02T22:28:13Z", + "reviewed_features": [], + "create": 78, + "modify": 0, + "delete": 0, + "area": 0.00537978322287021, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116938373, + "host": "mapcomplete.osm.be", + "theme": "grb", + "import": 10, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.99356555, + 50.91401875 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.15.3", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-02T20:56:15Z", + "reviewed_features": [], + "create": 1, + "modify": 9, + "delete": 0, + "area": 0.000154698350000062, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116935775, + "host": "mapcomplete.osm.be", + "move": 6, + "theme": "cyclofix", + "answer": 4, + "locale": "nl", + "imagery": "AGIV", + "add-image": 8, + "change_within_25m": 6, + "change_within_50m": 6, + "move:node/9246056984": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.240376599999999, + 50.7367963 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Stinus_Clasius", + "uid": "1086503", + "editor": "MapComplete 0.15.3", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-02T20:41:45Z", + "reviewed_features": [], + "create": 83, + "modify": 6, + "delete": 0, + "area": 0.0011675329132498, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116935227, + "host": "mapcomplete.osm.be", + "move": 4, + "theme": "grb", + "answer": 2, + "import": 7, + "locale": "nl", + "imagery": "osm", + "conflation": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.52607115, + 51.133823050000004 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.15.3", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-02T17:17:19Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.000503599892180124, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116925894, + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "benches", + "answer": 5, + "locale": "nl", + "imagery": "osm", + "move:node/1706000858": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.01627635, + 51.1392182 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.15.3", + "comment": "Adding data with #MapComplete for theme #nature", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-02T16:52:31Z", + "reviewed_features": [], + "create": 0, + "modify": 6, + "delete": 0, + "area": 4.61999999436376e-11, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116923770, + "host": "mapcomplete.osm.be", + "theme": "nature", + "locale": "nl", + "imagery": "osm", + "add-image": 6 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.041887, + 51.1515348 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.15.3", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-02T15:56:24Z", + "reviewed_features": [], + "create": 0, + "modify": 6, + "delete": 0, + "area": 0.00000220390090000211, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116920011, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 7, + "locale": "nl", + "imagery": "osm", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.034685550000001, + 51.150353499999994 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.15.3", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-02T15:54:11Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000286904520000127, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116919912, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "locale": "nl", + "imagery": "osm", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.0396392, + 51.1451315 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.15.3", + "comment": "Adding data with #MapComplete for theme #nature", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-02T15:51:54Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116919820, + "host": "mapcomplete.osm.be", + "theme": "nature", + "locale": "nl", + "imagery": "osm", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.0150035, + 51.1428292 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.15.3", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-02T15:44:38Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116919481, + "host": "mapcomplete.osm.be", + "theme": "benches", + "answer": 5, + "locale": "nl", + "imagery": "osm", + "add-image": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.0149785, + 51.1428032 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "GBAB", + "uid": "3335899", + "editor": "MapComplete 0.15.3", + "comment": "Adding data with #MapComplete for theme #observation_towers", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-02T14:21:11Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 1.24201999979239e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116915898, + "host": "mapcomplete.osm.be", + "theme": "observation_towers", + "answer": 2, + "locale": "en", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 18.9798257, + 47.69100315 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.15.3", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-02T12:39:25Z", + "reviewed_features": [], + "create": 0, + "modify": 0, + "delete": 1, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116911694, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "cyclofix", + "locale": "en", + "imagery": "CartoDB.Voyager", + "deletion": 1, + "change_within_500m": 1, + "deletion:node/9425818877": "duplicate" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2249977, + 51.210513 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.15.3", + "comment": "Adding data with #MapComplete for theme #test", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-02T11:42:42Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 2.5314093000299e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116909437, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "test", + "answer": 1, + "locale": "nl", + "imagery": "osm", + "change_within_50m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.23716075, + 51.18855405 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.15.3", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-02T11:40:35Z", + "reviewed_features": [], + "create": 0, + "modify": 7, + "delete": 0, + "area": 0.000119596013250028, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116909356, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "playgrounds", + "answer": 4, + "locale": "nl", + "imagery": "osm", + "add-image": 4, + "delete-image": 1, + "change_within_25m": 6, + "change_within_50m": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.23202115, + 51.19379365 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.15.3", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-02T11:21:58Z", + "reviewed_features": [], + "create": 0, + "modify": 88, + "delete": 0, + "area": 0.00057000400200004, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116908634, + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "etymology", + "answer": 127, + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_within_25m": 6, + "change_within_50m": 7, + "change_within_100m": 18, + "change_within_500m": 59, + "change_within_1000m": 30, + "change_within_5000m": 8 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.2437670499999998, + 51.1900844 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thibaultmol", + "uid": "2916921", + "editor": "MapComplete 0.15.3", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-02T10:31:16Z", + "reviewed_features": [], + "create": 0, + "modify": 7, + "delete": 0, + "area": 0.000950729211640121, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116906468, + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 9, + "locale": "nl", + "imagery": "osm" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 3.3696776, + 51.00611265 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "GeertDD", + "uid": "2776338", + "editor": "MapComplete 0.15.1", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-01T19:45:12Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116882267, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 1, + "import": 1, + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.4669026, + 51.4670566 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.15.1", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-01T15:57:32Z", + "reviewed_features": [], + "create": 10, + "modify": 0, + "delete": 0, + "area": 6.04912000016582e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116874502, + "host": "mapcomplete.osm.be", + "theme": "grb", + "import": 2, + "imagery": "AGIVFlandersGRB", + "language": "nl", + "change_over_5000m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.5340641999999995, + 51.421862700000005 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "habi", + "uid": "15671", + "editor": "MapComplete 0.15.1", + "comment": "Adding data with #MapComplete for theme #artwork", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-01T15:27:23Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116873429, + "host": "mapcomplete.osm.be", + "theme": "artwork", + "answer": 1, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.6340412, + 46.7554728 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 4, + "name": "mass modification" + } + ], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.15.1", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-01T14:28:34Z", + "reviewed_features": [], + "create": 94, + "modify": 236, + "delete": 6, + "area": 0.000183572463149995, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116871277, + "host": "mapcomplete.osm.be", + "move": 213, + "theme": "grb", + "answer": 1, + "import": 9, + "imagery": "osm", + "language": "nl", + "conflation": 68, + "change_within_500m": 9, + "change_within_1000m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 5.01077555, + 51.114988249999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "jospyck", + "uid": "12128135", + "editor": "MapComplete 0.15.1", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-01T13:10:11Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116868200, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 5, + "imagery": "osm", + "language": "nl" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.5719102, + 51.127015 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Locatus_Raf", + "uid": "14799940", + "editor": "MapComplete 0.15.1", + "comment": "Adding data with #MapComplete for theme #https://gist.githubusercontent.com/joostschouppe/4f631b3f658b67bcfafd56b731c726dc/raw/d39021f0731179a8105531f2e4254d1fe4a6eacf/locatus.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-01T12:23:54Z", + "reviewed_features": [], + "create": 19, + "modify": 36, + "delete": 0, + "area": 0.0000169902935799801, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116866356, + "host": "mapcomplete.osm.be", + "move": 3, + "theme": "https://gist.githubusercontent.com/joostschouppe/4f631b3f658b67bcfafd56b731c726dc/raw/d39021f0731179a8105531f2e4254d1fe4a6eacf/locatus.json", + "answer": 19, + "imagery": "osm", + "language": "nl", + "add-image": 23, + "change_over_5000m": 19, + "change_within_25m": 33, + "change_within_50m": 5, + "change_within_100m": 7, + "move:node/9465980888": "improve_accuracy", + "move:node/9466180750": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.5134892, + 51.22819895 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "pieterpaul", + "uid": "14539037", + "editor": "MapComplete 0.15.1", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-01T11:20:00Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116863788, + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "answer": 1, + "imagery": "AGIV", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.7424285, + 50.9160986 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Locatus_Raf", + "uid": "14799940", + "editor": "MapComplete 0.15.1", + "comment": "Adding data with #MapComplete for theme #test", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-01T11:15:58Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116863619, + "host": "mapcomplete.osm.be", + "theme": "test", + "answer": 1, + "imagery": "osm", + "language": "nl", + "change_within_25m": 1 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.5112514, + 51.2295137 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "jospyck", + "uid": "12128135", + "editor": "MapComplete 0.15.1", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-01T10:19:54Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 1, + "area": 0.000289339196450073, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116861180, + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 4, + "imagery": "osm", + "deletion": 1, + "language": "nl", + "deletion:node/9420056262": "duplicate" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.20444105, + 50.92634885 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "habi", + "uid": "15671", + "editor": "MapComplete 0.15.1", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-01T09:54:54Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 5.51764999983124e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116860089, + "host": "mapcomplete.osm.be", + "theme": "trees", + "answer": 3, + "imagery": "osm", + "language": "en", + "change_within_50m": 3 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.41637825, + 46.922135749999995 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Locatus_Raf", + "uid": "14799940", + "editor": "MapComplete 0.15.1", + "comment": "Adding data with #MapComplete for theme #https://gist.githubusercontent.com/joostschouppe/4f631b3f658b67bcfafd56b731c726dc/raw/d39021f0731179a8105531f2e4254d1fe4a6eacf/locatus.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-01T09:31:33Z", + "reviewed_features": [], + "create": 4, + "modify": 12, + "delete": 0, + "area": 0.0000119820829999795, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116859087, + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "https://gist.githubusercontent.com/joostschouppe/4f631b3f658b67bcfafd56b731c726dc/raw/d39021f0731179a8105531f2e4254d1fe4a6eacf/locatus.json", + "answer": 10, + "imagery": "osm", + "language": "nl", + "add-image": 6, + "change_over_5000m": 4, + "change_within_25m": 15, + "change_within_50m": 2, + "move:node/9465521314": "improve_accuracy" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 4.5077700499999995, + 51.2286787 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Robin van der Linde", + "uid": "5093765", + "editor": "MapComplete 0.15.1", + "comment": "Adding data with #MapComplete for theme #cycle_infra", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-01T09:23:09Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116858693, + "host": "mapcomplete.osm.be", + "theme": "cycle_infra", + "answer": 2, + "imagery": "CartoDB.Voyager", + "language": "en", + "change_over_5000m": 1, + "change_within_25m": 2 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.3428155, + 53.1637274 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Robin van der Linde", + "uid": "5093765", + "editor": "MapComplete 0.15.1", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-01T09:20:56Z", + "reviewed_features": [], + "create": 2, + "modify": 6, + "delete": 1, + "area": 2.50013719996649e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116858601, + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 12, + "imagery": "CartoDB.Voyager", + "deletion": 1, + "language": "en", + "change_over_5000m": 2, + "change_within_25m": 13, + "deletion:node/5168101073": "disused" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 7.342973, + 53.163731999999996 + ] + } + }, + { + "type": "Feature", + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "art_m_wb", + "uid": "12876924", + "editor": "MapComplete 0.15.1", + "comment": "Adding data with #MapComplete for theme #climbing", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-01T06:09:39Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 3.48838469999256e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "id": 116850450, + "host": "mapcomplete.osm.be", + "theme": "climbing", + "answer": 7, + "imagery": "osm", + "language": "en" + }, + "geometry": { + "type": "Point", + "coordinates": [ + 15.610203349999999, + 51.12703915 + ] + } } ] } \ No newline at end of file diff --git a/Docs/Tools/graphs/Changesets per day (line) in 2020.png b/Docs/Tools/graphs/Changesets per day (line) in 2020.png new file mode 100644 index 0000000000..7a066c1fc9 Binary files /dev/null and b/Docs/Tools/graphs/Changesets per day (line) in 2020.png differ diff --git a/Docs/Tools/graphs/Changesets per day (line) in 2021.png b/Docs/Tools/graphs/Changesets per day (line) in 2021.png new file mode 100644 index 0000000000..6f14e8fe18 Binary files /dev/null and b/Docs/Tools/graphs/Changesets per day (line) in 2021.png differ diff --git a/Docs/Tools/graphs/Changesets per day (line) in 2022.png b/Docs/Tools/graphs/Changesets per day (line) in 2022.png new file mode 100644 index 0000000000..e97c354269 Binary files /dev/null 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 new file mode 100644 index 0000000000..5edee5e7d1 Binary files /dev/null and b/Docs/Tools/graphs/Changesets per day (line).png differ diff --git a/Docs/Tools/graphs/Changesets per host in 2021.png b/Docs/Tools/graphs/Changesets per host in 2021.png index d4931ed56b..d08055b167 100644 Binary files a/Docs/Tools/graphs/Changesets per host in 2021.png and b/Docs/Tools/graphs/Changesets per host in 2021.png differ diff --git a/Docs/Tools/graphs/Changesets per host in 2022.png b/Docs/Tools/graphs/Changesets per host in 2022.png new file mode 100644 index 0000000000..4aa7ee1d67 Binary files /dev/null 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 c7983e02f5..3c1aa5aec0 100644 Binary files a/Docs/Tools/graphs/Changesets per host.png and b/Docs/Tools/graphs/Changesets per host.png differ diff --git a/Docs/Tools/graphs/Changesets per minor version number in 2020.png b/Docs/Tools/graphs/Changesets per minor version number in 2020.png new file mode 100644 index 0000000000..5c7d7fa5e3 Binary files /dev/null and b/Docs/Tools/graphs/Changesets per minor version number in 2020.png differ diff --git a/Docs/Tools/graphs/Changesets per minor version number in 2021.png b/Docs/Tools/graphs/Changesets per minor version number in 2021.png new file mode 100644 index 0000000000..b24b63f700 Binary files /dev/null and b/Docs/Tools/graphs/Changesets per minor version number in 2021.png differ diff --git a/Docs/Tools/graphs/Changesets per minor version number in 2022.png b/Docs/Tools/graphs/Changesets per minor version number in 2022.png new file mode 100644 index 0000000000..cbca95827b Binary files /dev/null and b/Docs/Tools/graphs/Changesets per minor version number in 2022.png differ diff --git a/Docs/Tools/graphs/Changesets per minor version number.png b/Docs/Tools/graphs/Changesets per minor version number.png new file mode 100644 index 0000000000..2a235d925b Binary files /dev/null and b/Docs/Tools/graphs/Changesets per minor version number.png differ diff --git a/Docs/Tools/graphs/Changesets per theme (bar) in 2021.png b/Docs/Tools/graphs/Changesets per theme (bar) in 2021.png index 8a594265bd..0c852decfb 100644 Binary files a/Docs/Tools/graphs/Changesets per theme (bar) in 2021.png and b/Docs/Tools/graphs/Changesets per theme (bar) in 2021.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 new file mode 100644 index 0000000000..229bfd425d Binary files /dev/null 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 3323885089..9551608c23 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 2021.png b/Docs/Tools/graphs/Changesets per theme (pie) in 2021.png index d1ba2e2699..cf571828a2 100644 Binary files a/Docs/Tools/graphs/Changesets per theme (pie) in 2021.png and b/Docs/Tools/graphs/Changesets per theme (pie) in 2021.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 new file mode 100644 index 0000000000..6eaad1871e Binary files /dev/null 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 c01c15a086..44350c5a19 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 2021.png b/Docs/Tools/graphs/Changesets per theme in 2021.png index 384126b577..eccda096e1 100644 Binary files a/Docs/Tools/graphs/Changesets per theme in 2021.png and b/Docs/Tools/graphs/Changesets per theme in 2021.png differ diff --git a/Docs/Tools/graphs/Changesets per theme in 2022.png b/Docs/Tools/graphs/Changesets per theme in 2022.png new file mode 100644 index 0000000000..bb722d8b93 Binary files /dev/null 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 5bb23d1fa9..b0c79c3d63 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 2021.png b/Docs/Tools/graphs/Changesets per version number in 2021.png index a76e399fc4..71c77b6bfd 100644 Binary files a/Docs/Tools/graphs/Changesets per version number in 2021.png and b/Docs/Tools/graphs/Changesets per version number in 2021.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 new file mode 100644 index 0000000000..e845dc505e Binary files /dev/null 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 2840ba8ca9..e1f546f2f8 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 2021.png b/Docs/Tools/graphs/Contributors per changeset count in 2021.png index 5270f34e0a..c47036db47 100644 Binary files a/Docs/Tools/graphs/Contributors per changeset count in 2021.png and b/Docs/Tools/graphs/Contributors per changeset count in 2021.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 new file mode 100644 index 0000000000..b2006bcbe8 Binary files /dev/null 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 5682b31776..a2582788ce 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 2021.png b/Docs/Tools/graphs/Contributors per day in 2021.png index 5f7670ea63..db0490bf86 100644 Binary files a/Docs/Tools/graphs/Contributors per day in 2021.png and b/Docs/Tools/graphs/Contributors per day in 2021.png differ diff --git a/Docs/Tools/graphs/Contributors per day in 2022.png b/Docs/Tools/graphs/Contributors per day in 2022.png new file mode 100644 index 0000000000..4542ae01a7 Binary files /dev/null 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 08bee71c2a..f364cfa71e 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 2021.png b/Docs/Tools/graphs/Deletion-changesets per theme in 2021.png index 9412e26971..1a5a6be326 100644 Binary files a/Docs/Tools/graphs/Deletion-changesets per theme in 2021.png and b/Docs/Tools/graphs/Deletion-changesets per theme in 2021.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 new file mode 100644 index 0000000000..28b9eeb77b Binary files /dev/null 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 9412e26971..d94b57cce8 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 fd9beb2587..15270415cb 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 c9c20a8a19..402f05fe6e 100644 --- a/Docs/Tools/stats/stats.2021-11.json +++ b/Docs/Tools/stats/stats.2021-11.json @@ -1,5 +1,32497 @@ { "features": [ + { + "id": 114413321, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 11.7883489, + 48.007272 + ], + [ + 11.7963767, + 48.007272 + ], + [ + 11.7963767, + 48.0092396 + ], + [ + 11.7883489, + 48.0092396 + ], + [ + 11.7883489, + 48.007272 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "answer": 1, + "create": 8, + "imagery": "HDM_HOT", + "language": "de", + "change_over_5000m": 8, + "change_within_50m": 1 + }, + "id": 114413321 + } + }, + { + "id": 114390777, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 11.6657021, + 48.052183 + ], + [ + 11.6657021, + 48.052183 + ], + [ + 11.6657021, + 48.052183 + ], + [ + 11.6657021, + 48.052183 + ], + [ + 11.6657021, + 48.052183 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "benches", + "answer": 4, + "imagery": "osm", + "language": "de", + "change_within_25m": 4 + }, + "id": 114390777 + } + }, + { + "id": 114389648, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 11.700597, + 48.0350998 + ], + [ + 11.7076264, + 48.0350998 + ], + [ + 11.7076264, + 48.0448113 + ], + [ + 11.700597, + 48.0448113 + ], + [ + 11.700597, + 48.0350998 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "create": 5, + "imagery": "HDM_HOT", + "language": "de", + "change_over_5000m": 5 + }, + "id": 114389648 + } + }, + { + "id": 114384752, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 172.6340479, + -43.5322238 + ], + [ + 172.6504156, + -43.5322238 + ], + [ + 172.6504156, + -43.5243882 + ], + [ + 172.6340479, + -43.5243882 + ], + [ + 172.6340479, + -43.5322238 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 52, + "imagery": "osm", + "language": "en" + }, + "id": 114384752 + } + }, + { + "id": 114380980, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.9165347, + 50.9266435 + ], + [ + 4.9165347, + 50.9266435 + ], + [ + 4.9165347, + 50.9266435 + ], + [ + 4.9165347, + 50.9266435 + ], + [ + 4.9165347, + 50.9266435 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "observation_towers", + "answer": 6, + "create": 1, + "imagery": "osm", + "language": "en" + }, + "id": 114380980 + } + }, + { + "id": 114379235, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.7296998, + 49.8311215 + ], + [ + 5.7296998, + 49.8311215 + ], + [ + 5.7296998, + 49.8311215 + ], + [ + 5.7296998, + 49.8311215 + ], + [ + 5.7296998, + 49.8311215 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "answer": 3, + "imagery": "CartoDB.Voyager", + "language": "en" + }, + "id": 114379235 + } + }, + { + "id": 114377590, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 11.6599333, + 45.2261839 + ], + [ + 11.6599333, + 45.2261839 + ], + [ + 11.6599333, + 45.2261839 + ], + [ + 11.6599333, + 45.2261839 + ], + [ + 11.6599333, + 45.2261839 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "answer": 4, + "create": 1, + "imagery": "osm", + "language": "it", + "add-image": 1 + }, + "id": 114377590 + } + }, + { + "id": 114375671, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.4445933, + 51.0832363 + ], + [ + 3.4445933, + 51.0832363 + ], + [ + 3.4445933, + 51.0832363 + ], + [ + 3.4445933, + 51.0832363 + ], + [ + 3.4445933, + 51.0832363 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "answer": 2, + "imagery": "CartoDB.Voyager", + "language": "en", + "change_within_5000m": 2 + }, + "id": 114375671 + } + }, + { + "id": 114369149, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.3931678, + 50.8743338 + ], + [ + 4.3931678, + 50.8743338 + ], + [ + 4.3931678, + 50.8743338 + ], + [ + 4.3931678, + 50.8743338 + ], + [ + 4.3931678, + 50.8743338 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "shops", + "imagery": "osm", + "language": "en", + "add-image": 2 + }, + "id": 114369149 + } + }, + { + "id": 114368553, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.7631365, + 50.9219399 + ], + [ + 4.7631365, + 50.9219399 + ], + [ + 4.7631365, + 50.9219399 + ], + [ + 4.7631365, + 50.9219399 + ], + [ + 4.7631365, + 50.9219399 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "answer": 3, + "create": 1, + "imagery": "osm", + "language": "en" + }, + "id": 114368553 + } + }, + { + "id": 114368491, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.3873857, + 50.8607062 + ], + [ + 4.3873857, + 50.8607062 + ], + [ + 4.3873857, + 50.8607062 + ], + [ + 4.3873857, + 50.8607062 + ], + [ + 4.3873857, + 50.8607062 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "artwork", + "imagery": "osm", + "language": "en", + "add-image": 1 + }, + "id": 114368491 + } + }, + { + "id": 114368266, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.7225386, + 50.9201645 + ], + [ + 4.7581261, + 50.9201645 + ], + [ + 4.7581261, + 50.9262986 + ], + [ + 4.7225386, + 50.9262986 + ], + [ + 4.7225386, + 50.9201645 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "fritures", + "answer": 8, + "create": 2, + "imagery": "osm", + "language": "en" + }, + "id": 114368266 + } + }, + { + "id": 114367986, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.7573459, + 50.9217664 + ], + [ + 4.7573459, + 50.9217664 + ], + [ + 4.7573459, + 50.9217664 + ], + [ + 4.7573459, + 50.9217664 + ], + [ + 4.7573459, + 50.9217664 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "aed", + "answer": 4, + "imagery": "osm", + "language": "en" + }, + "id": 114367986 + } + }, + { + "id": 114354518, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 16.6166988, + 49.2246878 + ], + [ + 16.6292733, + 49.2246878 + ], + [ + 16.6292733, + 49.2337728 + ], + [ + 16.6166988, + 49.2337728 + ], + [ + 16.6166988, + 49.2246878 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 39, + "imagery": "osm", + "language": "en" + }, + "id": 114354518 + } + }, + { + "id": 114351414, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.2645948, + 50.7375044 + ], + [ + 4.2645948, + 50.7375044 + ], + [ + 4.2645948, + 50.7375044 + ], + [ + 4.2645948, + 50.7375044 + ], + [ + 4.2645948, + 50.7375044 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "https://gist.githubusercontent.com/joostschouppe/4f631b3f658b67bcfafd56b731c726dc/raw/d39021f0731179a8105531f2e4254d1fe4a6eacf/locatus.json", + "answer": 3, + "imagery": "osm", + "language": "en" + }, + "id": 114351414 + } + }, + { + "id": 114349593, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 11.791709, + 48.0021264 + ], + [ + 11.7938789, + 48.0021264 + ], + [ + 11.7938789, + 48.0089345 + ], + [ + 11.791709, + 48.0089345 + ], + [ + 11.791709, + 48.0021264 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "answer": 2, + "create": 5, + "imagery": "HDM_HOT", + "language": "de", + "change_over_5000m": 5, + "change_within_25m": 2 + }, + "id": 114349593 + } + }, + { + "id": 114348251, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 11.7620193, + 47.9896271 + ], + [ + 11.7620193, + 47.9896271 + ], + [ + 11.7620193, + 47.9896271 + ], + [ + 11.7620193, + 47.9896271 + ], + [ + 11.7620193, + 47.9896271 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "benches", + "answer": 3, + "imagery": "Mapbox", + "language": "de", + "change_within_25m": 3 + }, + "id": 114348251 + } + }, + { + "id": 114347399, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 11.7886607, + 48.0090646 + ], + [ + 11.7903263, + 48.0090646 + ], + [ + 11.7903263, + 48.0092033 + ], + [ + 11.7886607, + 48.0092033 + ], + [ + 11.7886607, + 48.0090646 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "answer": 3, + "create": 2, + "imagery": "HDM_HOT", + "language": "de", + "change_over_5000m": 2, + "change_within_25m": 2, + "change_within_50m": 1 + }, + "id": 114347399 + } + }, + { + "id": 114343276, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 121.5587908, + 13.9620345 + ], + [ + 121.5627613, + 13.9620345 + ], + [ + 121.5627613, + 13.9652483 + ], + [ + 121.5587908, + 13.9652483 + ], + [ + 121.5587908, + 13.9620345 + ] + ] + ] + }, + "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, + "metadata": { + "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 + }, + "id": 114343276 + } + }, + { + "id": 114340268, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.4158888, + 51.1781863 + ], + [ + 4.5917829, + 51.1781863 + ], + [ + 4.5917829, + 51.2694601 + ], + [ + 4.4158888, + 51.2694601 + ], + [ + 4.4158888, + 51.1781863 + ] + ] + ] + }, + "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, + "metadata": { + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "aed", + "answer": 41, + "imagery": "osm", + "language": "en" + }, + "id": 114340268 + } + }, + { + "id": 114340098, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1.7154551, + 41.2203449 + ], + [ + 1.7154551, + 41.2203449 + ], + [ + 1.7154551, + 41.2203449 + ], + [ + 1.7154551, + 41.2203449 + ], + [ + 1.7154551, + 41.2203449 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "containeronvas", + "answer": 1, + "create": 1, + "imagery": "EsriWorldImagery", + "language": "ca" + }, + "id": 114340098 + } + }, + { + "id": 114338984, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 11.6349721, + 45.2196317 + ], + [ + 11.6662091, + 45.2196317 + ], + [ + 11.6662091, + 45.2242792 + ], + [ + 11.6349721, + 45.2242792 + ], + [ + 11.6349721, + 45.2196317 + ] + ] + ] + }, + "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": 6, + "modify": 12, + "delete": 0, + "area": 0.00014517395749991, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "answer": 29, + "create": 7, + "imagery": "osm", + "language": "it", + "add-image": 2, + "change_over_5000m": 2, + "change_within_1000m": 6 + }, + "id": 114338984 + } + }, + { + "id": 114335960, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -73.246483, + -39.8435562 + ], + [ + -73.232312, + -39.8435562 + ], + [ + -73.232312, + -39.819885 + ], + [ + -73.246483, + -39.819885 + ], + [ + -73.246483, + -39.8435562 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "osm", + "language": "en", + "add-image": 2 + }, + "id": 114335960 + } + }, + { + "id": 114329759, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.6652284, + 42.9635538 + ], + [ + -85.6652284, + 42.9635538 + ], + [ + -85.6652284, + 42.9635538 + ], + [ + -85.6652284, + 42.9635538 + ], + [ + -85.6652284, + 42.9635538 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "trees", + "create": 1, + "imagery": "USDA-NAIP", + "language": "en" + }, + "id": 114329759 + } + }, + { + "id": 114319431, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 121.55931, + 13.9643912 + ], + [ + 121.55931, + 13.9643912 + ], + [ + 121.55931, + 13.9643912 + ], + [ + 121.55931, + 13.9643912 + ], + [ + 121.55931, + 13.9643912 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "trees", + "create": 1, + "imagery": "osm", + "language": "en", + "change_over_5000m": 1 + }, + "id": 114319431 + } + }, + { + "id": 114319021, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.2536433, + 50.7392167 + ], + [ + 4.2541971, + 50.7392167 + ], + [ + 4.2541971, + 50.739505 + ], + [ + 4.2536433, + 50.739505 + ], + [ + 4.2536433, + 50.7392167 + ] + ] + ] + }, + "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, + "metadata": { + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "https://raw.githubusercontent.com/osmbe/play/master/mapcomplete/cyclestreets/cyclestreets.json", + "answer": 2, + "imagery": "osm", + "language": "nl" + }, + "id": 114319021 + } + }, + { + "id": 114316814, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.8806976, + 51.0598838 + ], + [ + 4.8806976, + 51.0598838 + ], + [ + 4.8806976, + 51.0598838 + ], + [ + 4.8806976, + 51.0598838 + ], + [ + 4.8806976, + 51.0598838 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "toilets", + "answer": 7, + "create": 1, + "imagery": "osm", + "language": "en", + "change_over_5000m": 1, + "change_within_25m": 7 + }, + "id": 114316814 + } + }, + { + "id": 114306447, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.3478238, + 50.85017 + ], + [ + 4.3478238, + 50.85017 + ], + [ + 4.3478238, + 50.85017 + ], + [ + 4.3478238, + 50.85017 + ], + [ + 4.3478238, + 50.85017 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "food", + "answer": 1, + "imagery": "osm", + "language": "nl", + "change_over_5000m": 1 + }, + "id": 114306447 + } + }, + { + "id": 114304836, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.3478238, + 50.85017 + ], + [ + 4.3478238, + 50.85017 + ], + [ + 4.3478238, + 50.85017 + ], + [ + 4.3478238, + 50.85017 + ], + [ + 4.3478238, + 50.85017 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "food", + "answer": 5, + "imagery": "osm", + "language": "nl", + "change_within_25m": 5 + }, + "id": 114304836 + } + }, + { + "id": 114304491, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 6.0071197, + 49.6155871 + ], + [ + 6.0071197, + 49.6155871 + ], + [ + 6.0071197, + 49.6155871 + ], + [ + 6.0071197, + 49.6155871 + ], + [ + 6.0071197, + 49.6155871 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "benches", + "answer": 2, + "imagery": "osm", + "language": "en", + "add-image": 1 + }, + "id": 114304491 + } + }, + { + "id": 114302874, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.6859874, + 49.3878389 + ], + [ + 8.6904331, + 49.3878389 + ], + [ + 8.6904331, + 49.3943784 + ], + [ + 8.6859874, + 49.3943784 + ], + [ + 8.6859874, + 49.3878389 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 3, + "imagery": "osm", + "language": "de" + }, + "id": 114302874 + } + }, + { + "id": 114301863, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1.7148006, + 41.222486 + ], + [ + 1.7148006, + 41.222486 + ], + [ + 1.7148006, + 41.222486 + ], + [ + 1.7148006, + 41.222486 + ], + [ + 1.7148006, + 41.222486 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "lit", + "answer": 2, + "imagery": "osm", + "language": "ca" + }, + "id": 114301863 + } + }, + { + "id": 114301506, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1.7148006, + 41.222486 + ], + [ + 1.7148006, + 41.222486 + ], + [ + 1.7148006, + 41.222486 + ], + [ + 1.7148006, + 41.222486 + ], + [ + 1.7148006, + 41.222486 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "https://raw.githubusercontent.com/yopaseopor/osmlitmap/master/src/json/lit.json", + "create": 1, + "imagery": "PNOA-Spain-TMS", + "language": "ca" + }, + "id": 114301506 + } + }, + { + "id": 114279545, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.381323, + 50.8327773 + ], + [ + 4.4019422, + 50.8327773 + ], + [ + 4.4019422, + 50.8392503 + ], + [ + 4.381323, + 50.8392503 + ], + [ + 4.381323, + 50.8327773 + ] + ] + ] + }, + "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, + "metadata": { + "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" + }, + "id": 114279545 + } + }, + { + "id": 114279284, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.7352121, + 51.0451377 + ], + [ + 3.7352121, + 51.0451377 + ], + [ + 3.7352121, + 51.0451377 + ], + [ + 3.7352121, + 51.0451377 + ], + [ + 3.7352121, + 51.0451377 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Ruben Van de Velde", + "uid": "2676725", + "editor": "MapComplete 0.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, + "metadata": { + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "hailhydrant", + "answer": 1, + "create": 1, + "imagery": "HDM_HOT", + "language": "en" + }, + "id": 114279284 + } + }, + { + "id": 114273016, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.1520147, + 52.2627097 + ], + [ + 13.217776, + 52.2627097 + ], + [ + 13.217776, + 52.29634 + ], + [ + 13.1520147, + 52.29634 + ], + [ + 13.1520147, + 52.2627097 + ] + ] + ] + }, + "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, + "metadata": { + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "id": 114273016 + } + }, + { + "id": 114269075, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.7214601, + 51.0370299 + ], + [ + 3.7214601, + 51.0370299 + ], + [ + 3.7214601, + 51.0370299 + ], + [ + 3.7214601, + 51.0370299 + ], + [ + 3.7214601, + 51.0370299 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "aed", + "answer": 3, + "imagery": "osm", + "language": "en", + "add-image": 1 + }, + "id": 114269075 + } + }, + { + "id": 114261635, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.6716263, + 51.0137209 + ], + [ + 3.6716263, + 51.0137209 + ], + [ + 3.6716263, + 51.0137209 + ], + [ + 3.6716263, + 51.0137209 + ], + [ + 3.6716263, + 51.0137209 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "create": 1, + "imagery": "AGIV", + "language": "en", + "change_over_5000m": 1 + }, + "id": 114261635 + } + }, + { + "id": 114253236, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.9040083, + 51.9610602 + ], + [ + 14.1108066, + 51.9610602 + ], + [ + 14.1108066, + 52.1575816 + ], + [ + 13.9040083, + 52.1575816 + ], + [ + 13.9040083, + 51.9610602 + ] + ] + ] + }, + "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, + "metadata": { + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "id": 114253236 + } + }, + { + "id": 114252798, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.212819, + 52.2821415 + ], + [ + 13.212819, + 52.2821415 + ], + [ + 13.212819, + 52.2821415 + ], + [ + 13.212819, + 52.2821415 + ], + [ + 13.212819, + 52.2821415 + ] + ] + ] + }, + "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, + "metadata": { + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "id": 114252798 + } + }, + { + "id": 114238844, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -71.1234956, + -34.381268 + ], + [ + -71.1234956, + -34.381268 + ], + [ + -71.1234956, + -34.381268 + ], + [ + -71.1234956, + -34.381268 + ], + [ + -71.1234956, + -34.381268 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "osm", + "language": "en", + "add-image": 1 + }, + "id": 114238844 + } + }, + { + "id": 114238775, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -80.1312574, + 25.7645181 + ], + [ + -80.1312574, + 25.7645181 + ], + [ + -80.1312574, + 25.7645181 + ], + [ + -80.1312574, + 25.7645181 + ], + [ + -80.1312574, + 25.7645181 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 4, + "create": 1, + "imagery": "CartoDB.Voyager", + "language": "en", + "change_over_5000m": 1, + "change_within_25m": 4 + }, + "id": 114238775 + } + }, + { + "id": 114236873, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.2503988, + 50.741811 + ], + [ + 4.2508539, + 50.741811 + ], + [ + 4.2508539, + 50.7422879 + ], + [ + 4.2503988, + 50.7422879 + ], + [ + 4.2503988, + 50.741811 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "cafes_and_pubs", + "answer": 2, + "imagery": "osm", + "language": "en", + "change_within_1000m": 2 + }, + "id": 114236873 + } + }, + { + "id": 114235477, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -122.3201707, + 47.6881335 + ], + [ + -122.313395, + 47.6881335 + ], + [ + -122.313395, + 47.6922446 + ], + [ + -122.3201707, + 47.6922446 + ], + [ + -122.3201707, + 47.6881335 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "answer": 12, + "create": 3, + "imagery": "osm", + "language": "en", + "change_over_5000m": 3, + "change_within_25m": 12 + }, + "id": 114235477 + } + }, + { + "id": 114226221, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 11.7128313, + 53.7345385 + ], + [ + 11.7128313, + 53.7345385 + ], + [ + 11.7128313, + 53.7345385 + ], + [ + 11.7128313, + 53.7345385 + ], + [ + 11.7128313, + 53.7345385 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "waste_basket", + "answer": 1, + "create": 1, + "imagery": "osm", + "language": "en" + }, + "id": 114226221 + } + }, + { + "id": 114226105, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 11.7128581, + 53.7315318 + ], + [ + 11.7128581, + 53.7315318 + ], + [ + 11.7128581, + 53.7315318 + ], + [ + 11.7128581, + 53.7315318 + ], + [ + 11.7128581, + 53.7315318 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "test", + "answer": 1, + "imagery": "CartoDB.Voyager", + "language": "en", + "add-image": 4 + }, + "id": 114226105 + } + }, + { + "id": 114222569, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 7.4294145, + 46.957032 + ], + [ + 7.4297509, + 46.957032 + ], + [ + 7.4297509, + 46.9572671 + ], + [ + 7.4294145, + 46.9572671 + ], + [ + 7.4294145, + 46.957032 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 11, + "create": 1, + "imagery": "CartoDB.Voyager", + "language": "en", + "change_over_5000m": 1, + "change_within_25m": 11 + }, + "id": 114222569 + } + }, + { + "id": 114220664, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 11.7128581, + 53.7315318 + ], + [ + 11.7128581, + 53.7315318 + ], + [ + 11.7128581, + 53.7315318 + ], + [ + 11.7128581, + 53.7315318 + ], + [ + 11.7128581, + 53.7315318 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "postboxes", + "create": 1, + "imagery": "CartoDB.Voyager", + "language": "en" + }, + "id": 114220664 + } + }, + { + "id": 114218744, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.4307914, + 51.2056803 + ], + [ + 4.4319058, + 51.2056803 + ], + [ + 4.4319058, + 51.2070913 + ], + [ + 4.4307914, + 51.2070913 + ], + [ + 4.4307914, + 51.2056803 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "toilets", + "answer": 7, + "imagery": "osm", + "language": "en" + }, + "id": 114218744 + } + }, + { + "id": 114216269, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.3282443, + 51.1343574 + ], + [ + 3.3312982, + 51.1343574 + ], + [ + 3.3312982, + 51.1365243 + ], + [ + 3.3282443, + 51.1365243 + ], + [ + 3.3282443, + 51.1343574 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "schools", + "answer": 1, + "imagery": "osm", + "language": "en", + "change_over_5000m": 1 + }, + "id": 114216269 + } + }, + { + "id": 114209976, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.3873519, + 52.5171181 + ], + [ + 13.3873519, + 52.5171181 + ], + [ + 13.3873519, + 52.5171181 + ], + [ + 13.3873519, + 52.5171181 + ], + [ + 13.3873519, + 52.5171181 + ] + ] + ] + }, + "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, + "metadata": { + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "trees", + "answer": 1, + "imagery": "osm", + "language": "en" + }, + "id": 114209976 + } + }, + { + "id": 114209389, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.5468411, + 50.6286394 + ], + [ + 5.5468411, + 50.6286394 + ], + [ + 5.5468411, + 50.6286394 + ], + [ + 5.5468411, + 50.6286394 + ], + [ + 5.5468411, + 50.6286394 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "answer": 1, + "create": 1, + "imagery": "CartoDB.Voyager", + "language": "en", + "change_over_5000m": 1, + "change_within_25m": 1 + }, + "id": 114209389 + } + }, + { + "id": 114195601, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.2160907, + 51.195938 + ], + [ + 3.2160907, + 51.195938 + ], + [ + 3.2160907, + 51.195938 + ], + [ + 3.2160907, + 51.195938 + ], + [ + 3.2160907, + 51.195938 + ] + ] + ] + }, + "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, + "metadata": { + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "cyclofix", + "answer": 1, + "imagery": "CartoDB.Voyager", + "language": "nl", + "change_within_50m": 1 + }, + "id": 114195601 + } + }, + { + "id": 114190549, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.8804744, + 49.5957562 + ], + [ + 5.8804744, + 49.5957562 + ], + [ + 5.8804744, + 49.5957562 + ], + [ + 5.8804744, + 49.5957562 + ], + [ + 5.8804744, + 49.5957562 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "add-image": 1 + }, + "id": 114190549 + } + }, + { + "id": 114187255, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.7197246, + 51.0365157 + ], + [ + 3.7221053, + 51.0365157 + ], + [ + 3.7221053, + 51.0369283 + ], + [ + 3.7197246, + 51.0369283 + ], + [ + 3.7197246, + 51.0365157 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "street_lighting", + "answer": 1, + "imagery": "osm", + "language": "en", + "change_within_50m": 1 + }, + "id": 114187255 + } + }, + { + "id": 114179670, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.2248056, + 51.2092223 + ], + [ + 3.2248056, + 51.2092223 + ], + [ + 3.2248056, + 51.2092223 + ], + [ + 3.2248056, + 51.2092223 + ], + [ + 3.2248056, + 51.2092223 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.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, + "metadata": { + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "cyclofix", + "answer": 1, + "imagery": "CartoDB.Voyager", + "language": "nl", + "change_within_50m": 1 + }, + "id": 114179670 + } + }, + { + "id": 114152917, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 6.5033515, + 52.5132197 + ], + [ + 6.5186625, + 52.5132197 + ], + [ + 6.5186625, + 52.5195437 + ], + [ + 6.5033515, + 52.5195437 + ], + [ + 6.5033515, + 52.5132197 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "benches", + "answer": 8, + "imagery": "osm", + "language": "en" + }, + "id": 114152917 + } + }, + { + "id": 114145243, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -73.2305498, + -39.8378331 + ], + [ + -73.2304437, + -39.8378331 + ], + [ + -73.2304437, + -39.8378236 + ], + [ + -73.2305498, + -39.8378236 + ], + [ + -73.2305498, + -39.8378331 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "CyclOSM", + "language": "en", + "add-image": 3 + }, + "id": 114145243 + } + }, + { + "id": 114143108, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.0478664, + 50.9285288 + ], + [ + 4.0478664, + 50.9285288 + ], + [ + 4.0478664, + 50.9285288 + ], + [ + 4.0478664, + 50.9285288 + ], + [ + 4.0478664, + 50.9285288 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "toilets", + "answer": 3, + "imagery": "osm", + "language": "nl" + }, + "id": 114143108 + } + }, + { + "id": 114141649, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.1958205, + 50.9160088 + ], + [ + 4.1958205, + 50.9160088 + ], + [ + 4.1958205, + 50.9160088 + ], + [ + 4.1958205, + 50.9160088 + ], + [ + 4.1958205, + 50.9160088 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "waste_basket", + "answer": 2, + "create": 1, + "imagery": "HDM_HOT", + "language": "nl" + }, + "id": 114141649 + } + }, + { + "id": 114137991, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 10.7680319, + 59.9120507 + ], + [ + 10.770466, + 59.9120507 + ], + [ + 10.770466, + 59.9158047 + ], + [ + 10.7680319, + 59.9158047 + ], + [ + 10.7680319, + 59.9120507 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "answer": 6, + "imagery": "osm", + "language": "en" + }, + "id": 114137991 + } + }, + { + "id": 114137682, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 18.9354009, + 50.2711807 + ], + [ + 18.9369851, + 50.2711807 + ], + [ + 18.9369851, + 50.2721464 + ], + [ + 18.9354009, + 50.2721464 + ], + [ + 18.9354009, + 50.2711807 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 1, + "imagery": "osm", + "language": "en" + }, + "id": 114137682 + } + }, + { + "id": 114131999, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.2304311, + 51.2099671 + ], + [ + 3.2304311, + 51.2099671 + ], + [ + 3.2304311, + 51.2099671 + ], + [ + 3.2304311, + 51.2099671 + ], + [ + 3.2304311, + 51.2099671 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "aed", + "answer": 1, + "imagery": "osm", + "language": "nl" + }, + "id": 114131999 + } + }, + { + "id": 114127880, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 11.2430817, + 43.7822122 + ], + [ + 11.256707, + 43.7822122 + ], + [ + 11.256707, + 43.783875 + ], + [ + 11.2430817, + 43.783875 + ], + [ + 11.2430817, + 43.7822122 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "answer": 26, + "create": 5, + "imagery": "osm", + "language": "en", + "change_within_25m": 26 + }, + "id": 114127880 + } + }, + { + "id": 114114258, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 11.2345648, + 43.7810632 + ], + [ + 11.2430817, + 43.7810632 + ], + [ + 11.2430817, + 43.7822122 + ], + [ + 11.2345648, + 43.7822122 + ], + [ + 11.2345648, + 43.7810632 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "answer": 4, + "create": 2, + "imagery": "osm", + "language": "en", + "change_within_25m": 4 + }, + "id": 114114258 + } + }, + { + "id": 114110334, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -122.0682975, + 36.9615786 + ], + [ + -122.044928, + 36.9615786 + ], + [ + -122.044928, + 36.9881237 + ], + [ + -122.0682975, + 36.9881237 + ], + [ + -122.0682975, + 36.9615786 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "answer": 25, + "create": 1, + "imagery": "osm", + "language": "en", + "add-image": 2, + "change_within_25m": 10, + "change_within_100m": 4, + "change_within_500m": 4, + "change_within_5000m": 9 + }, + "id": 114110334 + } + }, + { + "id": 114109022, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 6.0457394, + 49.8544206 + ], + [ + 6.0457394, + 49.8544206 + ], + [ + 6.0457394, + 49.8544206 + ], + [ + 6.0457394, + 49.8544206 + ], + [ + 6.0457394, + 49.8544206 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "answer": 1, + "create": 1, + "imagery": "osm", + "language": "en", + "add-image": 1 + }, + "id": 114109022 + } + }, + { + "id": 114108771, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 11.2429073, + 43.7818372 + ], + [ + 11.2430254, + 43.7818372 + ], + [ + 11.2430254, + 43.7821877 + ], + [ + 11.2429073, + 43.7821877 + ], + [ + 11.2429073, + 43.7818372 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "answer": 11, + "create": 2, + "imagery": "osm", + "language": "en", + "change_within_25m": 11 + }, + "id": 114108771 + } + }, + { + "id": 114107213, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 11.2481815, + 43.7770048 + ], + [ + 11.280452, + 43.7770048 + ], + [ + 11.280452, + 43.7799323 + ], + [ + 11.2481815, + 43.7799323 + ], + [ + 11.2481815, + 43.7770048 + ] + ] + ] + }, + "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": 6, + "modify": 8, + "delete": 0, + "area": 0.0000944718887499518, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "answer": 30, + "create": 8, + "imagery": "osm", + "language": "en", + "change_within_25m": 19, + "change_within_50m": 10, + "change_within_500m": 1 + }, + "id": 114107213 + } + }, + { + "id": 114104745, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.3639272, + 51.012017 + ], + [ + 4.3642706, + 51.012017 + ], + [ + 4.3642706, + 51.0122562 + ], + [ + 4.3639272, + 51.0122562 + ], + [ + 4.3639272, + 51.012017 + ] + ] + ] + }, + "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, + "metadata": { + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "surveillance", + "answer": 8, + "create": 3, + "imagery": "AGIV", + "language": "en" + }, + "id": 114104745 + } + }, + { + "id": 114102892, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2.2516995, + 41.4479352 + ], + [ + 2.2516995, + 41.4479352 + ], + [ + 2.2516995, + 41.4479352 + ], + [ + 2.2516995, + 41.4479352 + ], + [ + 2.2516995, + 41.4479352 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "add-image": 1 + }, + "id": 114102892 + } + }, + { + "id": 114102705, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 6.5597511, + 52.995334 + ], + [ + 6.5597722, + 52.995334 + ], + [ + 6.5597722, + 52.9958629 + ], + [ + 6.5597511, + 52.9958629 + ], + [ + 6.5597511, + 52.995334 + ] + ] + ] + }, + "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, + "metadata": { + "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 + }, + "id": 114102705 + } + }, + { + "id": 114099060, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 11.2465051, + 43.7770416 + ], + [ + 11.2803707, + 43.7770416 + ], + [ + 11.2803707, + 43.7805042 + ], + [ + 11.2465051, + 43.7805042 + ], + [ + 11.2465051, + 43.7770416 + ] + ] + ] + }, + "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": 7, + "modify": 13, + "delete": 0, + "area": 0.000117263026560204, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "answer": 41, + "create": 11, + "imagery": "osm", + "language": "en", + "change_within_25m": 34, + "change_within_50m": 7 + }, + "id": 114099060 + } + }, + { + "id": 114097689, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.1866457, + 51.1947448 + ], + [ + 3.1866457, + 51.1947448 + ], + [ + 3.1866457, + 51.1947448 + ], + [ + 3.1866457, + 51.1947448 + ], + [ + 3.1866457, + 51.1947448 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "aed", + "answer": 1, + "imagery": "osm", + "language": "nl" + }, + "id": 114097689 + } + }, + { + "id": 114097283, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.225277, + 51.2078916 + ], + [ + 3.225277, + 51.2078916 + ], + [ + 3.225277, + 51.2078916 + ], + [ + 3.225277, + 51.2078916 + ], + [ + 3.225277, + 51.2078916 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "aed_brugge", + "imagery": "HDM_HOT", + "language": "nl", + "add-image": 2 + }, + "id": 114097283 + } + }, + { + "id": 114095799, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 11.2208998, + 43.7860244 + ], + [ + 11.2266263, + 43.7860244 + ], + [ + 11.2266263, + 43.787731 + ], + [ + 11.2208998, + 43.787731 + ], + [ + 11.2208998, + 43.7860244 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "answer": 12, + "create": 2, + "imagery": "osm", + "language": "en", + "change_within_25m": 5, + "change_within_500m": 5 + }, + "id": 114095799 + } + }, + { + "id": 114094304, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 11.4885634, + 48.0791614 + ], + [ + 11.5371216, + 48.0791614 + ], + [ + 11.5371216, + 48.0947351 + ], + [ + 11.4885634, + 48.0947351 + ], + [ + 11.4885634, + 48.0791614 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 10, + "imagery": "osm", + "language": "en" + }, + "id": 114094304 + } + }, + { + "id": 114089983, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 11.2453678, + 43.7816235 + ], + [ + 11.2463558, + 43.7816235 + ], + [ + 11.2463558, + 43.8037595 + ], + [ + 11.2453678, + 43.8037595 + ], + [ + 11.2453678, + 43.7816235 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "answer": 14, + "create": 3, + "imagery": "osm", + "language": "en", + "change_within_25m": 11, + "change_within_50m": 3 + }, + "id": 114089983 + } + }, + { + "id": 114086967, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.1866457, + 51.1947448 + ], + [ + 3.1866457, + 51.1947448 + ], + [ + 3.1866457, + 51.1947448 + ], + [ + 3.1866457, + 51.1947448 + ], + [ + 3.1866457, + 51.1947448 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "aed_brugge", + "answer": 2, + "imagery": "HDM_HOT", + "language": "nl", + "add-image": 4 + }, + "id": 114086967 + } + }, + { + "id": 114084633, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 11.2429047, + 43.7800414 + ], + [ + 11.2479186, + 43.7800414 + ], + [ + 11.2479186, + 43.7827544 + ], + [ + 11.2429047, + 43.7827544 + ], + [ + 11.2429047, + 43.7800414 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "answer": 24, + "create": 5, + "imagery": "osm", + "language": "en", + "change_within_25m": 14, + "change_within_100m": 10 + }, + "id": 114084633 + } + }, + { + "id": 114079110, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 48.3882483, + 54.3320122 + ], + [ + 48.3882483, + 54.3320122 + ], + [ + 48.3882483, + 54.3320122 + ], + [ + 48.3882483, + 54.3320122 + ], + [ + 48.3882483, + 54.3320122 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "answer": 1, + "imagery": "osm", + "language": "en" + }, + "id": 114079110 + } + }, + { + "id": 114079039, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.1398369, + 51.1518266 + ], + [ + 4.1415324, + 51.1518266 + ], + [ + 4.1415324, + 51.1523257 + ], + [ + 4.1398369, + 51.1523257 + ], + [ + 4.1398369, + 51.1518266 + ] + ] + ] + }, + "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, + "metadata": { + "host": "127.0.0.1:1234", + "move": 36, + "theme": "grb", + "imagery": "AGIV", + "language": "nl", + "conflation": 18 + }, + "id": 114079039 + } + }, + { + "id": 114079031, + "type": "Feature", + "geometry": null, + "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:37Z", + "reviewed_features": [], + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "127.0.0.1:1234", + "theme": "grb", + "answer": 1, + "imagery": "AGIV", + "language": "nl" + }, + "id": 114079031 + } + }, + { + "id": 114077348, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.1343578, + 51.1510209 + ], + [ + 4.1462852, + 51.1510209 + ], + [ + 4.1462852, + 51.1535267 + ], + [ + 4.1343578, + 51.1535267 + ], + [ + 4.1343578, + 51.1510209 + ] + ] + ] + }, + "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, + "metadata": { + "host": "127.0.0.1:1234", + "theme": "etymology", + "answer": 6, + "imagery": "osm", + "language": "nl" + }, + "id": 114077348 + } + }, + { + "id": 114076677, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.2174906, + 51.151645 + ], + [ + 4.1407845, + 51.151645 + ], + [ + 4.1407845, + 51.2123943 + ], + [ + 3.2174906, + 51.2123943 + ], + [ + 3.2174906, + 51.151645 + ] + ] + ] + }, + "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, + "metadata": { + "host": "127.0.0.1:1234", + "move": 84, + "theme": "grb", + "answer": 19, + "import": 8, + "imagery": "AGIV", + "language": "nl", + "conflation": 40 + }, + "id": 114076677 + } + }, + { + "id": 114074271, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.0900514, + 52.3901291 + ], + [ + 13.0978613, + 52.3901291 + ], + [ + 13.0978613, + 52.4015804 + ], + [ + 13.0900514, + 52.4015804 + ], + [ + 13.0900514, + 52.3901291 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 15, + "imagery": "osm", + "language": "en" + }, + "id": 114074271 + } + }, + { + "id": 114071129, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.2961304, + 51.0947191 + ], + [ + 3.3229993, + 51.0947191 + ], + [ + 3.3229993, + 51.1161034 + ], + [ + 3.2961304, + 51.1161034 + ], + [ + 3.2961304, + 51.0947191 + ] + ] + ] + }, + "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, + "metadata": { + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "https://raw.githubusercontent.com/seppesantens/MapComplete-Themes/main/walkingnodenetworks/walkingnodenetworks.json", + "answer": 4, + "imagery": "osm", + "language": "en", + "add-image": 3, + "change_over_5000m": 7 + }, + "id": 114071129 + } + }, + { + "id": 114070865, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.301958, + 51.0815938 + ], + [ + 3.3203604, + 51.0815938 + ], + [ + 3.3203604, + 51.1160687 + ], + [ + 3.301958, + 51.1160687 + ], + [ + 3.301958, + 51.0815938 + ] + ] + ] + }, + "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, + "metadata": { + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "https://raw.githubusercontent.com/seppesantens/MapComplete-Themes/main/cyclenodenetworks/cyclenodenetworks.json", + "answer": 5, + "imagery": "osm", + "language": "en", + "add-image": 3, + "change_over_5000m": 8 + }, + "id": 114070865 + } + }, + { + "id": 114067572, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -112.0760968, + 33.4601066 + ], + [ + -112.076085, + 33.4601066 + ], + [ + -112.076085, + 33.4601139 + ], + [ + -112.0760968, + 33.4601139 + ], + [ + -112.0760968, + 33.4601066 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "cyclofix", + "answer": 4, + "create": 1, + "imagery": "CartoDB.Voyager", + "language": "en", + "change_within_25m": 5, + "move:node/9272741457": "improve_accuracy" + }, + "id": 114067572 + } + }, + { + "id": 114066212, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.301958, + 51.0897661 + ], + [ + 3.3716785, + 51.0897661 + ], + [ + 3.3716785, + 51.1160687 + ], + [ + 3.301958, + 51.1160687 + ], + [ + 3.301958, + 51.0897661 + ] + ] + ] + }, + "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, + "metadata": { + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "https://raw.githubusercontent.com/seppesantens/MapComplete-Themes/main/cyclenodenetworks/cyclenodenetworks.json", + "answer": 21, + "imagery": "osm", + "language": "en", + "change_over_5000m": 21 + }, + "id": 114066212 + } + }, + { + "id": 114056542, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.1032138, + 52.0830137 + ], + [ + 5.1032138, + 52.0830137 + ], + [ + 5.1032138, + 52.0830137 + ], + [ + 5.1032138, + 52.0830137 + ], + [ + 5.1032138, + 52.0830137 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "answer": 3, + "create": 1, + "imagery": "osm", + "language": "en", + "add-image": 1, + "change_within_25m": 4 + }, + "id": 114056542 + } + }, + { + "id": 114054547, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 11.6665122, + 45.2194957 + ], + [ + 11.6665122, + 45.2194957 + ], + [ + 11.6665122, + 45.2194957 + ], + [ + 11.6665122, + 45.2194957 + ], + [ + 11.6665122, + 45.2194957 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "id", + "answer": 7, + "create": 1, + "imagery": "osm", + "language": "it" + }, + "id": 114054547 + } + }, + { + "id": 114053349, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.7765141, + 40.4045506 + ], + [ + 71.7765141, + 40.4045506 + ], + [ + 71.7765141, + 40.4045506 + ], + [ + 71.7765141, + 40.4045506 + ], + [ + 71.7765141, + 40.4045506 + ] + ] + ] + }, + "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, + "metadata": { + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "surveillance", + "create": 1, + "imagery": "EsriWorldImagery", + "language": "it" + }, + "id": 114053349 + } + }, + { + "id": 114050247, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 40.2759111, + 43.6810052 + ], + [ + 40.2759111, + 43.6810052 + ], + [ + 40.2759111, + 43.6810052 + ], + [ + 40.2759111, + 43.6810052 + ], + [ + 40.2759111, + 43.6810052 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "climbing", + "answer": 5, + "create": 1, + "imagery": "osm", + "language": "en" + }, + "id": 114050247 + } + }, + { + "id": 114049879, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 40.2110113, + 43.678862 + ], + [ + 40.2112403, + 43.678862 + ], + [ + 40.2112403, + 43.6790157 + ], + [ + 40.2110113, + 43.6790157 + ], + [ + 40.2110113, + 43.678862 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "food", + "answer": 7, + "imagery": "osm", + "language": "en" + }, + "id": 114049879 + } + }, + { + "id": 114046939, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -112.07667, + 33.4621238 + ], + [ + -112.0765354, + 33.4621238 + ], + [ + -112.0765354, + 33.4622221 + ], + [ + -112.07667, + 33.4622221 + ], + [ + -112.07667, + 33.4621238 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "toilets", + "answer": 2, + "imagery": "osm", + "language": "en", + "change_within_1000m": 2 + }, + "id": 114046939 + } + }, + { + "id": 114044551, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 11.1438811, + 43.7502381 + ], + [ + 11.1438811, + 43.7502381 + ], + [ + 11.1438811, + 43.7502381 + ], + [ + 11.1438811, + 43.7502381 + ], + [ + 11.1438811, + 43.7502381 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "answer": 6, + "create": 1, + "imagery": "osm", + "language": "en", + "change_within_25m": 6 + }, + "id": 114044551 + } + }, + { + "id": 114036668, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.6397326, + 45.4914468 + ], + [ + 9.6423977, + 45.4914468 + ], + [ + 9.6423977, + 45.4951864 + ], + [ + 9.6397326, + 45.4951864 + ], + [ + 9.6397326, + 45.4914468 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "answer": 8, + "create": 1, + "imagery": "osm", + "language": "it", + "change_within_500m": 2, + "change_within_1000m": 6 + }, + "id": 114036668 + } + }, + { + "id": 114034673, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 11.7305151, + 45.33372 + ], + [ + 11.7305151, + 45.33372 + ], + [ + 11.7305151, + 45.33372 + ], + [ + 11.7305151, + 45.33372 + ], + [ + 11.7305151, + 45.33372 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "answer": 1, + "create": 1, + "imagery": "osm", + "language": "it" + }, + "id": 114034673 + } + }, + { + "id": 114034194, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.2004225, + 51.186175 + ], + [ + 3.2004225, + 51.186175 + ], + [ + 3.2004225, + 51.186175 + ], + [ + 3.2004225, + 51.186175 + ], + [ + 3.2004225, + 51.186175 + ] + ] + ] + }, + "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, + "metadata": { + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "aed", + "imagery": "osm", + "language": "en", + "add-image": 1, + "change_within_500m": 1 + }, + "id": 114034194 + } + }, + { + "id": 114034038, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 11.6588545, + 45.2268428 + ], + [ + 11.6593373, + 45.2268428 + ], + [ + 11.6593373, + 45.2270978 + ], + [ + 11.6588545, + 45.2270978 + ], + [ + 11.6588545, + 45.2268428 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "answer": 9, + "create": 2, + "imagery": "osm", + "language": "it" + }, + "id": 114034038 + } + }, + { + "id": 114033487, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 11.7127615, + 44.35393 + ], + [ + 11.7127615, + 44.35393 + ], + [ + 11.7127615, + 44.35393 + ], + [ + 11.7127615, + 44.35393 + ], + [ + 11.7127615, + 44.35393 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "answer": 1, + "create": 1, + "imagery": "osm", + "language": "en", + "change_within_5000m": 1 + }, + "id": 114033487 + } + }, + { + "id": 114032625, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.3872731, + 50.8221405 + ], + [ + 4.3878467, + 50.8221405 + ], + [ + 4.3878467, + 50.8226674 + ], + [ + 4.3872731, + 50.8226674 + ], + [ + 4.3872731, + 50.8221405 + ] + ] + ] + }, + "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, + "metadata": { + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "hackerspaces", + "answer": 2, + "imagery": "osm", + "language": "en", + "change_over_5000m": 2 + }, + "id": 114032625 + } + }, + { + "id": 114032166, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.6100849, + 50.8468398 + ], + [ + 3.6100849, + 50.8468398 + ], + [ + 3.6100849, + 50.8468398 + ], + [ + 3.6100849, + 50.8468398 + ], + [ + 3.6100849, + 50.8468398 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "toilets", + "answer": 5, + "create": 1, + "imagery": "osm", + "language": "en", + "add-image": 1, + "change_within_25m": 6 + }, + "id": 114032166 + } + }, + { + "id": 114031265, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.6036213, + 50.8422367 + ], + [ + 3.6036213, + 50.8422367 + ], + [ + 3.6036213, + 50.8422367 + ], + [ + 3.6036213, + 50.8422367 + ], + [ + 3.6036213, + 50.8422367 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "imagery": "CartoDB.Voyager", + "deletion": 1, + "language": "en", + "change_within_25m": 1, + "deletion:node/4314294835": "not found" + }, + "id": 114031265 + } + }, + { + "id": 114030479, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 121.5856916, + 13.9476675 + ], + [ + 121.5856916, + 13.9476675 + ], + [ + 121.5856916, + 13.9476675 + ], + [ + 121.5856916, + 13.9476675 + ], + [ + 121.5856916, + 13.9476675 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "answer": 3, + "create": 1, + "imagery": "HDM_HOT", + "language": "en", + "change_within_5000m": 3 + }, + "id": 114030479 + } + }, + { + "id": 114030464, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.6036377, + 50.8426303 + ], + [ + 3.6036377, + 50.8426303 + ], + [ + 3.6036377, + 50.8426303 + ], + [ + 3.6036377, + 50.8426303 + ], + [ + 3.6036377, + 50.8426303 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "aed", + "answer": 3, + "imagery": "osm", + "language": "en", + "add-image": 1, + "change_within_25m": 4 + }, + "id": 114030464 + } + }, + { + "id": 114029802, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.5994668, + 50.8487499 + ], + [ + 3.5994668, + 50.8487499 + ], + [ + 3.5994668, + 50.8487499 + ], + [ + 3.5994668, + 50.8487499 + ], + [ + 3.5994668, + 50.8487499 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "postboxes", + "create": 1, + "imagery": "CartoDB.Voyager", + "language": "en" + }, + "id": 114029802 + } + }, + { + "id": 114029781, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.5994618, + 50.8421399 + ], + [ + 3.6049024, + 50.8421399 + ], + [ + 3.6049024, + 50.8487594 + ], + [ + 3.5994618, + 50.8487594 + ], + [ + 3.5994618, + 50.8421399 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "cyclofix", + "answer": 46, + "create": 9, + "imagery": "CartoDB.Voyager", + "language": "nl", + "add-image": 4, + "change_within_25m": 45, + "change_within_100m": 6, + "move:node/9269860379": "improve_accuracy" + }, + "id": 114029781 + } + }, + { + "id": 114029511, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 6.1401763, + 49.6891113 + ], + [ + 6.1401763, + 49.6891113 + ], + [ + 6.1401763, + 49.6891113 + ], + [ + 6.1401763, + 49.6891113 + ], + [ + 6.1401763, + 49.6891113 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "add-image": 1 + }, + "id": 114029511 + } + }, + { + "id": 114027270, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.1648065, + 45.3615815 + ], + [ + 8.1762814, + 45.3615815 + ], + [ + 8.1762814, + 45.3710176 + ], + [ + 8.1648065, + 45.3710176 + ], + [ + 8.1648065, + 45.3615815 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 43, + "imagery": "osm", + "language": "en" + }, + "id": 114027270 + } + }, + { + "id": 114026957, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.1714466, + 45.3633873 + ], + [ + 8.1857795, + 45.3633873 + ], + [ + 8.1857795, + 45.3711856 + ], + [ + 8.1714466, + 45.3711856 + ], + [ + 8.1714466, + 45.3633873 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 33, + "imagery": "osm", + "language": "en" + }, + "id": 114026957 + } + }, + { + "id": 114025440, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.1775215, + 45.3650992 + ], + [ + 8.1830193, + 45.3650992 + ], + [ + 8.1830193, + 45.3695062 + ], + [ + 8.1775215, + 45.3695062 + ], + [ + 8.1775215, + 45.3650992 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 11, + "imagery": "osm", + "language": "en" + }, + "id": 114025440 + } + }, + { + "id": 114025211, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.6839064, + 51.0580275 + ], + [ + 13.6852956, + 51.0580275 + ], + [ + 13.6852956, + 51.0580397 + ], + [ + 13.6839064, + 51.0580397 + ], + [ + 13.6839064, + 51.0580275 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "answer": 2, + "create": 2, + "imagery": "GEOSN-DOP-RGB", + "language": "en", + "change_within_25m": 1, + "change_within_50m": 1 + }, + "id": 114025211 + } + }, + { + "id": 114023582, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2.9402743, + 50.405084 + ], + [ + 2.9463098, + 50.405084 + ], + [ + 2.9463098, + 50.4152285 + ], + [ + 2.9402743, + 50.4152285 + ], + [ + 2.9402743, + 50.405084 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 17, + "imagery": "osm", + "language": "en" + }, + "id": 114023582 + } + }, + { + "id": 114023430, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 7.4455923, + 46.9288723 + ], + [ + 7.4455923, + 46.9288723 + ], + [ + 7.4455923, + 46.9288723 + ], + [ + 7.4455923, + 46.9288723 + ], + [ + 7.4455923, + 46.9288723 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 6, + "create": 1, + "imagery": "CartoDB.Voyager", + "language": "en", + "change_within_500m": 6 + }, + "id": 114023430 + } + }, + { + "id": 114020398, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 11.3371228, + 46.4865597 + ], + [ + 11.3371765, + 46.4865597 + ], + [ + 11.3371765, + 46.486567 + ], + [ + 11.3371228, + 46.486567 + ], + [ + 11.3371228, + 46.4865597 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "toilets", + "answer": 7, + "create": 2, + "imagery": "osm", + "language": "en", + "move:node/9269432914": "improve_accuracy" + }, + "id": 114020398 + } + }, + { + "id": 114020355, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.1203799, + 52.0888547 + ], + [ + 5.1203799, + 52.0888547 + ], + [ + 5.1203799, + 52.0888547 + ], + [ + 5.1203799, + 52.0888547 + ], + [ + 5.1203799, + 52.0888547 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "artwork", + "answer": 2, + "create": 1, + "imagery": "osm", + "language": "en", + "add-image": 1, + "change_within_25m": 3 + }, + "id": 114020355 + } + }, + { + "id": 114018406, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 121.5577407, + 13.9629595 + ], + [ + 121.5577407, + 13.9629595 + ], + [ + 121.5577407, + 13.9629595 + ], + [ + 121.5577407, + 13.9629595 + ], + [ + 121.5577407, + 13.9629595 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "answer": 3, + "create": 1, + "imagery": "HDM_HOT", + "language": "en", + "add-image": 1, + "change_within_25m": 3, + "change_within_500m": 1 + }, + "id": 114018406 + } + }, + { + "id": 114017985, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.0282917, + 50.7722968 + ], + [ + 4.1014141, + 50.7722968 + ], + [ + 4.1014141, + 50.8759611 + ], + [ + 4.0282917, + 50.8759611 + ], + [ + 4.0282917, + 50.7722968 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "answer": 4, + "create": 4, + "imagery": "osm", + "language": "en" + }, + "id": 114017985 + } + }, + { + "id": 114010623, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 12.1364376, + 48.5352564 + ], + [ + 12.1672977, + 48.5352564 + ], + [ + 12.1672977, + 48.5645146 + ], + [ + 12.1364376, + 48.5645146 + ], + [ + 12.1364376, + 48.5352564 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "toilets", + "answer": 4, + "imagery": "osm", + "language": "de" + }, + "id": 114010623 + } + }, + { + "id": 114008323, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 7.4712417, + 45.2644314 + ], + [ + 7.4712417, + 45.2644314 + ], + [ + 7.4712417, + 45.2644314 + ], + [ + 7.4712417, + 45.2644314 + ], + [ + 7.4712417, + 45.2644314 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "imagery": "CartoDB.Voyager", + "language": "it", + "add-image": 1 + }, + "id": 114008323 + } + }, + { + "id": 113993823, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 7.4422382, + 46.9461388 + ], + [ + 7.4422382, + 46.9461388 + ], + [ + 7.4422382, + 46.9461388 + ], + [ + 7.4422382, + 46.9461388 + ], + [ + 7.4422382, + 46.9461388 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 4, + "create": 1, + "imagery": "CartoDB.Voyager", + "language": "en", + "change_within_25m": 4 + }, + "id": 113993823 + } + }, + { + "id": 113988227, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.9312038, + 51.3271032 + ], + [ + 4.9464426, + 51.3271032 + ], + [ + 4.9464426, + 51.3333786 + ], + [ + 4.9312038, + 51.3333786 + ], + [ + 4.9312038, + 51.3271032 + ] + ] + ] + }, + "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, + "metadata": { + "theme": "buurtnatuur", + "theme-creator": "Pieter Vander Vennet" + }, + "id": 113988227 + } + }, + { + "id": 113977700, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.7497433, + 52.431594 + ], + [ + 13.7497433, + 52.431594 + ], + [ + 13.7497433, + 52.431594 + ], + [ + 13.7497433, + 52.431594 + ], + [ + 13.7497433, + 52.431594 + ] + ] + ] + }, + "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, + "metadata": { + "host": "www.waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "id": 113977700 + } + }, + { + "id": 113949456, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.2195581, + 51.1976519 + ], + [ + 3.2425727, + 51.1976519 + ], + [ + 3.2425727, + 51.206215 + ], + [ + 3.2195581, + 51.206215 + ], + [ + 3.2195581, + 51.1976519 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "aed", + "answer": 10, + "imagery": "osm", + "language": "nl" + }, + "id": 113949456 + } + }, + { + "id": 113949393, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.2455038, + 50.7262381 + ], + [ + 4.2455038, + 50.7262381 + ], + [ + 4.2455038, + 50.7262381 + ], + [ + 4.2455038, + 50.7262381 + ], + [ + 4.2455038, + 50.7262381 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "postboxes", + "create": 1, + "imagery": "CartoDB.Voyager", + "language": "en" + }, + "id": 113949393 + } + }, + { + "id": 113949291, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.2454414, + 50.7261862 + ], + [ + 4.2454414, + 50.7261862 + ], + [ + 4.2454414, + 50.7261862 + ], + [ + 4.2454414, + 50.7261862 + ], + [ + 4.2454414, + 50.7261862 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "aed", + "answer": 7, + "create": 1, + "imagery": "osm", + "language": "nl", + "add-image": 1, + "change_within_25m": 8 + }, + "id": 113949291 + } + }, + { + "id": 113947704, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.1935279, + 51.186175 + ], + [ + 3.2442324, + 51.186175 + ], + [ + 3.2442324, + 51.206215 + ], + [ + 3.1935279, + 51.206215 + ], + [ + 3.1935279, + 51.186175 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "aed_brugge", + "answer": 8, + "imagery": "HDM_HOT", + "language": "nl", + "add-image": 12 + }, + "id": 113947704 + } + }, + { + "id": 113943668, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.2442324, + 51.2039627 + ], + [ + 3.2442324, + 51.2039627 + ], + [ + 3.2442324, + 51.2039627 + ], + [ + 3.2442324, + 51.2039627 + ], + [ + 3.2442324, + 51.2039627 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "aed_brugge", + "answer": 4, + "create": 1, + "imagery": "HDM_HOT", + "language": "nl", + "change_within_5000m": 4 + }, + "id": 113943668 + } + }, + { + "id": 113939005, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.4276041, + 51.1842084 + ], + [ + 4.4276041, + 51.1842084 + ], + [ + 4.4276041, + 51.1842084 + ], + [ + 4.4276041, + 51.1842084 + ], + [ + 4.4276041, + 51.1842084 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "fritures", + "answer": 1, + "imagery": "osm", + "language": "nl", + "change_within_500m": 1 + }, + "id": 113939005 + } + }, + { + "id": 113938518, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.1935279, + 51.2004931 + ], + [ + 3.1935279, + 51.2004931 + ], + [ + 3.1935279, + 51.2004931 + ], + [ + 3.1935279, + 51.2004931 + ], + [ + 3.1935279, + 51.2004931 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "aed_brugge", + "answer": 7, + "create": 1, + "imagery": "HDM_HOT", + "language": "nl", + "change_within_25m": 7 + }, + "id": 113938518 + } + }, + { + "id": 113932492, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.1859279, + 51.2187625 + ], + [ + 3.2458055, + 51.2187625 + ], + [ + 3.2458055, + 51.3317351 + ], + [ + 3.1859279, + 51.3317351 + ], + [ + 3.1859279, + 51.2187625 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "aed", + "answer": 3, + "imagery": "osm", + "language": "nl" + }, + "id": 113932492 + } + }, + { + "id": 113922524, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.1475942, + 51.1549123 + ], + [ + 4.1571011, + 51.1549123 + ], + [ + 4.1571011, + 51.1625484 + ], + [ + 4.1475942, + 51.1625484 + ], + [ + 4.1475942, + 51.1549123 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "move": 14, + "theme": "grb", + "answer": 1, + "imagery": "AGIVFlandersGRB", + "language": "nl", + "conflation": 2 + }, + "id": 113922524 + } + }, + { + "id": 113919138, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.1489762, + 51.1592341 + ], + [ + 4.1536297, + 51.1592341 + ], + [ + 4.1536297, + 51.1638048 + ], + [ + 4.1489762, + 51.1638048 + ], + [ + 4.1489762, + 51.1592341 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "move": 181, + "theme": "grb", + "answer": 1, + "import": 7, + "imagery": "AGIVFlandersGRB", + "language": "nl", + "conflation": 18 + }, + "id": 113919138 + } + }, + { + "id": 113903019, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.0779778, + 51.0645999 + ], + [ + 3.1046952, + 51.0645999 + ], + [ + 3.1046952, + 51.0668774 + ], + [ + 3.0779778, + 51.0668774 + ], + [ + 3.0779778, + 51.0645999 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "split": 4, + "theme": "cyclestreets", + "answer": 6, + "imagery": "osm", + "language": "nl" + }, + "id": 113903019 + } + }, + { + "id": 113894057, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.1859279, + 51.3139366 + ], + [ + 3.1859279, + 51.3139366 + ], + [ + 3.1859279, + 51.3139366 + ], + [ + 3.1859279, + 51.3139366 + ], + [ + 3.1859279, + 51.3139366 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "aed_brugge", + "answer": 6, + "create": 1, + "imagery": "HDM_HOT", + "language": "nl", + "change_within_500m": 6 + }, + "id": 113894057 + } + }, + { + "id": 113891121, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -86.0678365, + 40.7538155 + ], + [ + -86.0675545, + 40.7538155 + ], + [ + -86.0675545, + 40.7540069 + ], + [ + -86.0678365, + 40.7540069 + ], + [ + -86.0678365, + 40.7538155 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 7, + "imagery": "CartoDB.Voyager", + "language": "en" + }, + "id": 113891121 + } + }, + { + "id": 113885921, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.1951949, + 51.3265608 + ], + [ + 3.1951949, + 51.3265608 + ], + [ + 3.1951949, + 51.3265608 + ], + [ + 3.1951949, + 51.3265608 + ], + [ + 3.1951949, + 51.3265608 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "aed_brugge", + "answer": 6, + "create": 1, + "imagery": "HDM_HOT", + "language": "nl", + "add-image": 1, + "change_within_25m": 7 + }, + "id": 113885921 + } + }, + { + "id": 113874951, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.6718148, + 42.9794391 + ], + [ + -85.6718148, + 42.9794391 + ], + [ + -85.6718148, + 42.9794391 + ], + [ + -85.6718148, + 42.9794391 + ], + [ + -85.6718148, + 42.9794391 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "food", + "answer": 7, + "create": 1, + "imagery": "osm", + "language": "en" + }, + "id": 113874951 + } + }, + { + "id": 113871656, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.2655267, + 51.1980204 + ], + [ + 3.2655267, + 51.1980204 + ], + [ + 3.2655267, + 51.1980204 + ], + [ + 3.2655267, + 51.1980204 + ], + [ + 3.2655267, + 51.1980204 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "nature", + "imagery": "osm", + "language": "nl", + "add-image": 1 + }, + "id": 113871656 + } + }, + { + "id": 113871399, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.5876905, + 51.1446402 + ], + [ + 4.5876905, + 51.1446402 + ], + [ + 4.5876905, + 51.1446402 + ], + [ + 4.5876905, + 51.1446402 + ], + [ + 4.5876905, + 51.1446402 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "benches", + "answer": 1, + "create": 1, + "imagery": "osm", + "language": "en" + }, + "id": 113871399 + } + }, + { + "id": 113871332, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.4505946, + 51.314789 + ], + [ + 9.4610106, + 51.314789 + ], + [ + 9.4610106, + 51.3150402 + ], + [ + 9.4505946, + 51.3150402 + ], + [ + 9.4505946, + 51.314789 + ] + ] + ] + }, + "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, + "metadata": { + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "etymology", + "answer": 14, + "imagery": "osm", + "language": "en" + }, + "id": 113871332 + } + }, + { + "id": 113870726, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.3955585, + 50.9075227 + ], + [ + 5.4305767, + 50.9075227 + ], + [ + 5.4305767, + 50.9915558 + ], + [ + 5.3955585, + 50.9915558 + ], + [ + 5.3955585, + 50.9075227 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "ghostbikes", + "answer": 5, + "create": 1, + "imagery": "CartoDB.Positron", + "language": "nl", + "add-image": 2 + }, + "id": 113870726 + } + }, + { + "id": 113870121, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.3031168, + 50.9391221 + ], + [ + 5.3955585, + 50.9391221 + ], + [ + 5.3955585, + 50.9915558 + ], + [ + 5.3031168, + 50.9915558 + ], + [ + 5.3031168, + 50.9391221 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "test", + "answer": 8, + "create": 1, + "imagery": "CartoDB.Positron", + "language": "nl" + }, + "id": 113870121 + } + }, + { + "id": 113870099, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -7.6509511, + 37.1247146 + ], + [ + -7.6051635, + 37.1247146 + ], + [ + -7.6051635, + 37.1431301 + ], + [ + -7.6509511, + 37.1431301 + ], + [ + -7.6509511, + 37.1247146 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "postboxes", + "imagery": "CartoDB.Voyager", + "language": "en", + "add-image": 2 + }, + "id": 113870099 + } + }, + { + "id": 113864247, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.2904695, + 51.1994981 + ], + [ + 3.2904695, + 51.1994981 + ], + [ + 3.2904695, + 51.1994981 + ], + [ + 3.2904695, + 51.1994981 + ], + [ + 3.2904695, + 51.1994981 + ] + ] + ] + }, + "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, + "metadata": { + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "https://raw.githubusercontent.com/seppesantens/MapComplete-Themes/main/walkingnodenetworks/walkingnodenetworks.json", + "imagery": "osm", + "language": "en", + "add-image": 1 + }, + "id": 113864247 + } + }, + { + "id": 113863158, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.2182378, + 51.2155418 + ], + [ + 3.2182378, + 51.2155418 + ], + [ + 3.2182378, + 51.2155418 + ], + [ + 3.2182378, + 51.2155418 + ], + [ + 3.2182378, + 51.2155418 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 1, + "create": 1, + "imagery": "osm", + "deletion": 1, + "language": "nl", + "change_within_500m": 2, + "deletion:node/9257811058": "testing point" + }, + "id": 113863158 + } + }, + { + "id": 113860718, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 7.0119706, + 51.4544025 + ], + [ + 7.0119706, + 51.4544025 + ], + [ + 7.0119706, + 51.4544025 + ], + [ + 7.0119706, + 51.4544025 + ], + [ + 7.0119706, + 51.4544025 + ] + ] + ] + }, + "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, + "metadata": { + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "cyclofix", + "answer": 2, + "imagery": "CartoDB.Voyager", + "language": "de", + "change_within_25m": 2 + }, + "id": 113860718 + } + }, + { + "id": 113860578, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 7.0120718, + 51.4545208 + ], + [ + 7.0120718, + 51.4545208 + ], + [ + 7.0120718, + 51.4545208 + ], + [ + 7.0120718, + 51.4545208 + ], + [ + 7.0120718, + 51.4545208 + ] + ] + ] + }, + "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, + "metadata": { + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "bookcases", + "answer": 3, + "imagery": "osm", + "language": "de", + "change_within_25m": 3 + }, + "id": 113860578 + } + }, + { + "id": 113859710, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.2352944, + 50.85522 + ], + [ + 4.2352944, + 50.85522 + ], + [ + 4.2352944, + 50.85522 + ], + [ + 4.2352944, + 50.85522 + ], + [ + 4.2352944, + 50.85522 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "trees", + "answer": 3, + "imagery": "osm", + "language": "nl" + }, + "id": 113859710 + } + }, + { + "id": 113859499, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.0945347, + 50.953635 + ], + [ + 4.0945347, + 50.953635 + ], + [ + 4.0945347, + 50.953635 + ], + [ + 4.0945347, + 50.953635 + ], + [ + 4.0945347, + 50.953635 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "answer": 4, + "imagery": "osm", + "language": "nl" + }, + "id": 113859499 + } + }, + { + "id": 113858537, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.2344067, + 51.2031169 + ], + [ + 3.2344067, + 51.2031169 + ], + [ + 3.2344067, + 51.2031169 + ], + [ + 3.2344067, + 51.2031169 + ], + [ + 3.2344067, + 51.2031169 + ] + ] + ] + }, + "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, + "metadata": { + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "https://raw.githubusercontent.com/seppesantens/MapComplete-Themes/main/cyclenodenetworks/cyclenodenetworks.json", + "imagery": "osm", + "language": "en", + "add-image": 1 + }, + "id": 113858537 + } + }, + { + "id": 113857890, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.1838748, + 51.1960646 + ], + [ + 3.1838748, + 51.1960646 + ], + [ + 3.1838748, + 51.1960646 + ], + [ + 3.1838748, + 51.1960646 + ], + [ + 3.1838748, + 51.1960646 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "aed_brugge", + "answer": 5, + "imagery": "HDM_HOT", + "language": "nl", + "add-image": 3 + }, + "id": 113857890 + } + }, + { + "id": 113854721, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.5741409, + 50.6194838 + ], + [ + 5.5741409, + 50.6194838 + ], + [ + 5.5741409, + 50.6194838 + ], + [ + 5.5741409, + 50.6194838 + ], + [ + 5.5741409, + 50.6194838 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "aed", + "answer": 4, + "imagery": "osm", + "language": "en", + "change_within_5000m": 4 + }, + "id": 113854721 + } + }, + { + "id": 113847794, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.2503067, + 51.1835053 + ], + [ + 3.2503067, + 51.1835053 + ], + [ + 3.2503067, + 51.1835053 + ], + [ + 3.2503067, + 51.1835053 + ], + [ + 3.2503067, + 51.1835053 + ] + ] + ] + }, + "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, + "metadata": { + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "https://raw.githubusercontent.com/seppesantens/MapComplete-Themes/main/walkingnodenetworks/walkingnodenetworks.json", + "imagery": "osm", + "language": "en", + "add-image": 1 + }, + "id": 113847794 + } + }, + { + "id": 113844419, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2.9442544, + 50.4042085 + ], + [ + 2.976135, + 50.4042085 + ], + [ + 2.976135, + 50.4307088 + ], + [ + 2.9442544, + 50.4307088 + ], + [ + 2.9442544, + 50.4042085 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 24, + "imagery": "osm", + "language": "en", + "add-image": 6 + }, + "id": 113844419 + } + }, + { + "id": 113840870, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.037063, + 51.0974055 + ], + [ + 3.037937, + 51.0974055 + ], + [ + 3.037937, + 51.0980017 + ], + [ + 3.037063, + 51.0980017 + ], + [ + 3.037063, + 51.0974055 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "grb", + "import": 2, + "imagery": "osm", + "language": "nl" + }, + "id": 113840870 + } + }, + { + "id": 113840427, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.1306072, + 52.0944775 + ], + [ + 5.1314869, + 52.0944775 + ], + [ + 5.1314869, + 52.0960658 + ], + [ + 5.1306072, + 52.0960658 + ], + [ + 5.1306072, + 52.0944775 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "answer": 3, + "create": 1, + "imagery": "osm", + "language": "en", + "add-image": 2, + "change_within_25m": 5 + }, + "id": 113840427 + } + }, + { + "id": 113840300, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.0369942, + 51.0979036 + ], + [ + 3.4711515, + 51.0979036 + ], + [ + 3.4711515, + 51.0996815 + ], + [ + 3.0369942, + 51.0996815 + ], + [ + 3.0369942, + 51.0979036 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "grb", + "answer": 1, + "import": 4, + "imagery": "AGIVFlandersGRB", + "language": "en" + }, + "id": 113840300 + } + }, + { + "id": 113840279, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.1238292, + 52.0944775 + ], + [ + 5.1330721, + 52.0944775 + ], + [ + 5.1330721, + 52.1004893 + ], + [ + 5.1238292, + 52.1004893 + ], + [ + 5.1238292, + 52.0944775 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "artwork", + "answer": 9, + "create": 8, + "imagery": "osm", + "language": "en", + "add-image": 7, + "change_within_25m": 14, + "change_within_500m": 2 + }, + "id": 113840279 + } + }, + { + "id": 113840019, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 14.481883, + 51.9319697 + ], + [ + 14.481883, + 51.9319697 + ], + [ + 14.481883, + 51.9319697 + ], + [ + 14.481883, + 51.9319697 + ], + [ + 14.481883, + 51.9319697 + ] + ] + ] + }, + "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, + "metadata": { + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "id": 113840019 + } + }, + { + "id": 113833223, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -111.8574098, + 40.3632181 + ], + [ + -111.857409, + 40.3632181 + ], + [ + -111.857409, + 40.3632181 + ], + [ + -111.8574098, + 40.3632181 + ], + [ + -111.8574098, + 40.3632181 + ] + ] + ] + }, + "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, + "metadata": { + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "bookcases", + "answer": 2, + "create": 5, + "imagery": "Mapbox", + "language": "en" + }, + "id": 113833223 + } + }, + { + "id": 113827490, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.2188848, + 51.1786741 + ], + [ + 3.2939733, + 51.1786741 + ], + [ + 3.2939733, + 51.2070787 + ], + [ + 3.2188848, + 51.2070787 + ], + [ + 3.2188848, + 51.1786741 + ] + ] + ] + }, + "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, + "metadata": { + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "https://raw.githubusercontent.com/seppesantens/MapComplete-Themes/main/walkingnodenetworks/walkingnodenetworks.json", + "answer": 78, + "imagery": "osm", + "language": "en", + "add-image": 20 + }, + "id": 113827490 + } + }, + { + "id": 113823101, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.2510191, + 51.217258 + ], + [ + 4.2539695, + 51.217258 + ], + [ + 4.2539695, + 51.2192363 + ], + [ + 4.2510191, + 51.2192363 + ], + [ + 4.2510191, + 51.217258 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "grb", + "import": 15, + "imagery": "AGIVFlandersGRB", + "language": "en" + }, + "id": 113823101 + } + }, + { + "id": 113821970, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.2560141, + 51.2072066 + ], + [ + 4.2597828, + 51.2072066 + ], + [ + 4.2597828, + 51.2080006 + ], + [ + 4.2560141, + 51.2080006 + ], + [ + 4.2560141, + 51.2072066 + ] + ] + ] + }, + "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, + "metadata": { + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "cyclestreets", + "answer": 2, + "imagery": "osm", + "language": "en", + "change_within_100m": 1, + "change_within_500m": 1 + }, + "id": 113821970 + } + }, + { + "id": 113820175, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.4378851, + 51.1219544 + ], + [ + 4.7921996, + 51.1219544 + ], + [ + 4.7921996, + 51.2002326 + ], + [ + 4.4378851, + 51.2002326 + ], + [ + 4.4378851, + 51.1219544 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "benches", + "answer": 2, + "create": 2, + "imagery": "osm", + "language": "en" + }, + "id": 113820175 + } + }, + { + "id": 113819738, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.7366492, + 51.0369387 + ], + [ + 3.7475684, + 51.0369387 + ], + [ + 3.7475684, + 51.0455459 + ], + [ + 3.7366492, + 51.0455459 + ], + [ + 3.7366492, + 51.0369387 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "food", + "answer": 7, + "imagery": "osm", + "language": "nl" + }, + "id": 113819738 + } + }, + { + "id": 113815150, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 7.5377353, + 44.3833395 + ], + [ + 7.5444499, + 44.3833395 + ], + [ + 7.5444499, + 44.3887997 + ], + [ + 7.5377353, + 44.3887997 + ], + [ + 7.5377353, + 44.3833395 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 10, + "imagery": "osm", + "language": "en", + "change_within_5000m": 10 + }, + "id": 113815150 + } + }, + { + "id": 113811125, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 12.8527772, + 52.1633635 + ], + [ + 12.8554237, + 52.1633635 + ], + [ + 12.8554237, + 52.1667237 + ], + [ + 12.8527772, + 52.1667237 + ], + [ + 12.8527772, + 52.1633635 + ] + ] + ] + }, + "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, + "metadata": { + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "id": 113811125 + } + }, + { + "id": 113810342, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.5578748, + 50.6241078 + ], + [ + 5.5579906, + 50.6241078 + ], + [ + 5.5579906, + 50.6243372 + ], + [ + 5.5578748, + 50.6243372 + ], + [ + 5.5578748, + 50.6241078 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "aed", + "answer": 8, + "imagery": "osm", + "language": "en", + "change_within_25m": 9, + "move:node/9247814726": "improve_accuracy" + }, + "id": 113810342 + } + }, + { + "id": 113810139, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2.937799, + 50.3954474 + ], + [ + 2.9888053, + 50.3954474 + ], + [ + 2.9888053, + 50.44117 + ], + [ + 2.937799, + 50.44117 + ], + [ + 2.937799, + 50.3954474 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 447, + "imagery": "osm", + "language": "en" + }, + "id": 113810139 + } + }, + { + "id": 113810072, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.2118652, + 51.2048584 + ], + [ + 3.2118652, + 51.2048584 + ], + [ + 3.2118652, + 51.2048584 + ], + [ + 3.2118652, + 51.2048584 + ], + [ + 3.2118652, + 51.2048584 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "aed", + "answer": 1, + "imagery": "osm", + "language": "nl" + }, + "id": 113810072 + } + }, + { + "id": 113807773, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.5770942, + 48.7140974 + ], + [ + 4.6098018, + 48.7140974 + ], + [ + 4.6098018, + 48.736801 + ], + [ + 4.5770942, + 48.736801 + ], + [ + 4.5770942, + 48.7140974 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 324, + "imagery": "osm", + "language": "en" + }, + "id": 113807773 + } + }, + { + "id": 113806724, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.2388733, + 51.2106197 + ], + [ + 3.2398295, + 51.2106197 + ], + [ + 3.2398295, + 51.2110498 + ], + [ + 3.2388733, + 51.2110498 + ], + [ + 3.2388733, + 51.2106197 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "aed_brugge", + "imagery": "HDM_HOT", + "language": "nl", + "add-image": 8, + "change_within_1000m": 8 + }, + "id": 113806724 + } + }, + { + "id": 113806349, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2.9404997, + 44.7285832 + ], + [ + 10.6542506, + 44.7285832 + ], + [ + 10.6542506, + 59.7566369 + ], + [ + 2.9404997, + 59.7566369 + ], + [ + 2.9404997, + 44.7285832 + ] + ] + ] + }, + "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, + "metadata": { + "host": "127.0.0.1:1234", + "theme": "etymology", + "answer": 53, + "imagery": "osm", + "language": "nl", + "change_over_5000m": 53 + }, + "id": 113806349 + } + }, + { + "id": 113800961, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.2378674, + 51.1882105 + ], + [ + 3.2383348, + 51.1882105 + ], + [ + 3.2383348, + 51.1884612 + ], + [ + 3.2378674, + 51.1884612 + ], + [ + 3.2378674, + 51.1882105 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "imagery": "osm", + "language": "nl", + "add-image": 1, + "change_within_25m": 1 + }, + "id": 113800961 + } + }, + { + "id": 113800605, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2.9474383, + 50.4083068 + ], + [ + 2.953131, + 50.4083068 + ], + [ + 2.953131, + 50.427142 + ], + [ + 2.9474383, + 50.427142 + ], + [ + 2.9474383, + 50.4083068 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 4, + "imagery": "osm", + "language": "en" + }, + "id": 113800605 + } + }, + { + "id": 113799603, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 121.558774, + 13.9634156 + ], + [ + 121.5587816, + 13.9634156 + ], + [ + 121.5587816, + 13.9637699 + ], + [ + 121.558774, + 13.9637699 + ], + [ + 121.558774, + 13.9634156 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "streetlamps", + "answer": 3, + "imagery": "osm", + "language": "en", + "change_within_25m": 1, + "change_within_50m": 2 + }, + "id": 113799603 + } + }, + { + "id": 113795722, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.27121, + 51.2003253 + ], + [ + 3.2714774, + 51.2003253 + ], + [ + 3.2714774, + 51.2004465 + ], + [ + 3.27121, + 51.2004465 + ], + [ + 3.27121, + 51.2003253 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "imagery": "osm", + "language": "nl", + "add-image": 1, + "change_within_25m": 1 + }, + "id": 113795722 + } + }, + { + "id": 113795604, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.2706079, + 51.1800623 + ], + [ + 3.2805041, + 51.1800623 + ], + [ + 3.2805041, + 51.2004432 + ], + [ + 3.2706079, + 51.2004432 + ], + [ + 3.2706079, + 51.1800623 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "test", + "answer": 1, + "create": 2, + "imagery": "osm", + "language": "nl", + "add-image": 6, + "change_within_25m": 7 + }, + "id": 113795604 + } + }, + { + "id": 113793660, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.2301942, + 51.2096014 + ], + [ + 3.2350681, + 51.2096014 + ], + [ + 3.2350681, + 51.2135828 + ], + [ + 3.2301942, + 51.2135828 + ], + [ + 3.2301942, + 51.2096014 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "aed", + "answer": 2, + "imagery": "osm", + "language": "nl" + }, + "id": 113793660 + } + }, + { + "id": 113787479, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 10.1683047, + 52.177249 + ], + [ + 10.1777805, + 52.177249 + ], + [ + 10.1777805, + 52.1802094 + ], + [ + 10.1683047, + 52.1802094 + ], + [ + 10.1683047, + 52.177249 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 5, + "imagery": "osm", + "language": "en" + }, + "id": 113787479 + } + }, + { + "id": 113783093, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.9824694, + 51.1500361 + ], + [ + 4.9824694, + 51.1500361 + ], + [ + 4.9824694, + 51.1500361 + ], + [ + 4.9824694, + 51.1500361 + ], + [ + 4.9824694, + 51.1500361 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "cafes_and_pubs", + "answer": 3, + "imagery": "osm", + "language": "nl", + "change_within_5000m": 3 + }, + "id": 113783093 + } + }, + { + "id": 113781509, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 10.145652, + 59.7546967 + ], + [ + 10.1525307, + 59.7546967 + ], + [ + 10.1525307, + 59.7555982 + ], + [ + 10.145652, + 59.7555982 + ], + [ + 10.145652, + 59.7546967 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 1, + "imagery": "osm", + "language": "en" + }, + "id": 113781509 + } + }, + { + "id": 113781375, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 7.000776, + 49.2300122 + ], + [ + 7.0057425, + 49.2300122 + ], + [ + 7.0057425, + 49.2339686 + ], + [ + 7.000776, + 49.2339686 + ], + [ + 7.000776, + 49.2300122 + ] + ] + ] + }, + "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, + "metadata": { + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "cycle_infra", + "answer": 10, + "imagery": "CartoDB.Voyager", + "language": "en" + }, + "id": 113781375 + } + }, + { + "id": 113780467, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.7276412, + 51.0411273 + ], + [ + 3.7276412, + 51.0411273 + ], + [ + 3.7276412, + 51.0411273 + ], + [ + 3.7276412, + 51.0411273 + ], + [ + 3.7276412, + 51.0411273 + ] + ] + ] + }, + "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, + "metadata": { + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "food", + "answer": 1, + "imagery": "osm", + "language": "en", + "change_within_500m": 1 + }, + "id": 113780467 + } + }, + { + "id": 113777162, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.4593271, + 50.8517236 + ], + [ + 3.6941035, + 50.8517236 + ], + [ + 3.6941035, + 51.1674808 + ], + [ + 3.4593271, + 51.1674808 + ], + [ + 3.4593271, + 50.8517236 + ] + ] + ] + }, + "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, + "metadata": { + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "https://raw.githubusercontent.com/seppesantens/MapComplete-Themes/main/walkingnodenetworks/walkingnodenetworks.json", + "answer": 2, + "imagery": "osm", + "language": "en", + "add-image": 2 + }, + "id": 113777162 + } + }, + { + "id": 113773473, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.3507453, + 50.8536834 + ], + [ + 4.3507453, + 50.8536834 + ], + [ + 4.3507453, + 50.8536834 + ], + [ + 4.3507453, + 50.8536834 + ], + [ + 4.3507453, + 50.8536834 + ] + ] + ] + }, + "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, + "metadata": { + "host": "pietervdvn.github.io", + "path": "mc/toilets-at-amenity/", + "theme": "toilets", + "answer": 1, + "imagery": "osm", + "language": "en" + }, + "id": 113773473 + } + }, + { + "id": 113772524, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.1389436, + 50.6991844 + ], + [ + 3.1423715, + 50.6991844 + ], + [ + 3.1423715, + 50.7037627 + ], + [ + 3.1389436, + 50.7037627 + ], + [ + 3.1389436, + 50.6991844 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "answer": 17, + "create": 3, + "imagery": "osm", + "language": "fr" + }, + "id": 113772524 + } + }, + { + "id": 113770114, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.8734797, + 43.6141494 + ], + [ + 3.8806726, + 43.6141494 + ], + [ + 3.8806726, + 43.6153729 + ], + [ + 3.8734797, + 43.6153729 + ], + [ + 3.8734797, + 43.6141494 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 6, + "imagery": "osm", + "language": "en" + }, + "id": 113770114 + } + }, + { + "id": 113767259, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.734693, + 51.0398522 + ], + [ + 3.7350335, + 51.0398522 + ], + [ + 3.7350335, + 51.0401023 + ], + [ + 3.734693, + 51.0401023 + ], + [ + 3.734693, + 51.0398522 + ] + ] + ] + }, + "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, + "metadata": { + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "grb", + "import": 2, + "imagery": "AGIVFlandersGRB", + "language": "en", + "change_within_500m": 2 + }, + "id": 113767259 + } + }, + { + "id": 113767040, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.9470339, + 50.2713631 + ], + [ + 8.9660501, + 50.2713631 + ], + [ + 8.9660501, + 50.2873993 + ], + [ + 8.9470339, + 50.2873993 + ], + [ + 8.9470339, + 50.2713631 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "parkings", + "create": 2, + "imagery": "osm", + "language": "de", + "move:node/-1": "improve_accuracy" + }, + "id": 113767040 + } + }, + { + "id": 113767012, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.7348232, + 51.0401155 + ], + [ + 3.7348232, + 51.0401155 + ], + [ + 3.7348232, + 51.0401155 + ], + [ + 3.7348232, + 51.0401155 + ], + [ + 3.7348232, + 51.0401155 + ] + ] + ] + }, + "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, + "metadata": { + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "toilets", + "imagery": "osm", + "language": "en", + "add-image": 2, + "change_within_500m": 2 + }, + "id": 113767012 + } + }, + { + "id": 113766752, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.9554667, + 50.2558042 + ], + [ + 8.9652112, + 50.2558042 + ], + [ + 8.9652112, + 50.2686128 + ], + [ + 8.9554667, + 50.2686128 + ], + [ + 8.9554667, + 50.2558042 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "move": 2, + "theme": "artwork", + "answer": 1, + "create": 2, + "imagery": "osm", + "language": "de", + "move:node/-1": "improve_accuracy", + "move:node/-2": "improve_accuracy" + }, + "id": 113766752 + } + }, + { + "id": 113766100, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.5615174, + 50.0278258 + ], + [ + 8.6849432, + 50.0278258 + ], + [ + 8.6849432, + 50.1125193 + ], + [ + 8.5615174, + 50.1125193 + ], + [ + 8.5615174, + 50.0278258 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "observation_towers", + "answer": 6, + "imagery": "osm", + "language": "de", + "move:node/1719597181": "improve_accuracy" + }, + "id": 113766100 + } + }, + { + "id": 113765933, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.941943, + 50.2664182 + ], + [ + 8.9699721, + 50.2664182 + ], + [ + 8.9699721, + 50.2886126 + ], + [ + 8.941943, + 50.2886126 + ], + [ + 8.941943, + 50.2664182 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "sport_pitches", + "answer": 5, + "create": 6, + "imagery": "osm", + "language": "de" + }, + "id": 113765933 + } + }, + { + "id": 113765601, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.6775202, + 50.1404711 + ], + [ + 8.6820871, + 50.1404711 + ], + [ + 8.6820871, + 50.1418396 + ], + [ + 8.6775202, + 50.1418396 + ], + [ + 8.6775202, + 50.1404711 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "move": 2, + "theme": "shops", + "imagery": "osm", + "language": "de", + "move:node/267286858": "improve_accuracy", + "move:node/322806285": "relocated" + }, + "id": 113765601 + } + }, + { + "id": 113765369, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.9477634, + 50.272717 + ], + [ + 8.9477634, + 50.272717 + ], + [ + 8.9477634, + 50.272717 + ], + [ + 8.9477634, + 50.272717 + ], + [ + 8.9477634, + 50.272717 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "trees", + "answer": 1, + "create": 1, + "imagery": "osm", + "language": "de" + }, + "id": 113765369 + } + }, + { + "id": 113765275, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.6851779, + 50.1265431 + ], + [ + 8.700107, + 50.1265431 + ], + [ + 8.700107, + 50.1311449 + ], + [ + 8.6851779, + 50.1311449 + ], + [ + 8.6851779, + 50.1265431 + ] + ] + ] + }, + "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, + "metadata": { + "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" + }, + "id": 113765275 + } + }, + { + "id": 113765274, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.6867148, + 50.1269821 + ], + [ + 8.6867148, + 50.1269821 + ], + [ + 8.6867148, + 50.1269821 + ], + [ + 8.6867148, + 50.1269821 + ], + [ + 8.6867148, + 50.1269821 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "parkings", + "create": 1, + "imagery": "osm", + "language": "de" + }, + "id": 113765274 + } + }, + { + "id": 113765121, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.6833164, + 50.1262289 + ], + [ + 8.6891422, + 50.1262289 + ], + [ + 8.6891422, + 50.1288116 + ], + [ + 8.6833164, + 50.1288116 + ], + [ + 8.6833164, + 50.1262289 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "parkings", + "create": 3, + "imagery": "osm", + "language": "de" + }, + "id": 113765121 + } + }, + { + "id": 113764730, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.6423108, + 50.070061 + ], + [ + 8.6423108, + 50.070061 + ], + [ + 8.6423108, + 50.070061 + ], + [ + 8.6423108, + 50.070061 + ], + [ + 8.6423108, + 50.070061 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "sport_pitches", + "create": 1, + "imagery": "osm", + "language": "de" + }, + "id": 113764730 + } + }, + { + "id": 113762865, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.6021268, + 47.7684001 + ], + [ + 9.6093953, + 47.7684001 + ], + [ + 9.6093953, + 47.7744565 + ], + [ + 9.6021268, + 47.7744565 + ], + [ + 9.6021268, + 47.7684001 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 4, + "imagery": "osm", + "language": "en" + }, + "id": 113762865 + } + }, + { + "id": 113762052, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.3031168, + 50.9391221 + ], + [ + 5.3031168, + 50.9391221 + ], + [ + 5.3031168, + 50.9391221 + ], + [ + 5.3031168, + 50.9391221 + ], + [ + 5.3031168, + 50.9391221 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "ghostbikes", + "create": 1, + "imagery": "CartoDB.Positron", + "language": "nl", + "add-image": 1 + }, + "id": 113762052 + } + }, + { + "id": 113761796, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.9753714, + 50.2599729 + ], + [ + 8.9781395, + 50.2599729 + ], + [ + 8.9781395, + 50.2600741 + ], + [ + 8.9753714, + 50.2600741 + ], + [ + 8.9753714, + 50.2599729 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "move": 2, + "theme": "parkings", + "create": 2, + "imagery": "osm", + "language": "de", + "move:node/-3": "improve_accuracy", + "move:node/9250298364": "improve_accuracy" + }, + "id": 113761796 + } + }, + { + "id": 113761638, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.9454735, + 50.2734404 + ], + [ + 8.9493138, + 50.2734404 + ], + [ + 8.9493138, + 50.2740952 + ], + [ + 8.9454735, + 50.2740952 + ], + [ + 8.9454735, + 50.2734404 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "move": 3, + "theme": "parkings", + "create": 3, + "imagery": "osm", + "language": "de", + "move:node/-1": "improve_accuracy", + "move:node/-2": "improve_accuracy", + "move:node/-3": "improve_accuracy" + }, + "id": 113761638 + } + }, + { + "id": 113761593, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.1734222, + 45.3641281 + ], + [ + 8.1781742, + 45.3641281 + ], + [ + 8.1781742, + 45.3679542 + ], + [ + 8.1734222, + 45.3679542 + ], + [ + 8.1734222, + 45.3641281 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 3, + "imagery": "osm", + "language": "it" + }, + "id": 113761593 + } + }, + { + "id": 113761534, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.9660253, + 50.2622817 + ], + [ + 8.9660253, + 50.2622817 + ], + [ + 8.9660253, + 50.2622817 + ], + [ + 8.9660253, + 50.2622817 + ], + [ + 8.9660253, + 50.2622817 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "answer": 3, + "imagery": "osm", + "language": "de" + }, + "id": 113761534 + } + }, + { + "id": 113760996, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.5442707, + 50.1581591 + ], + [ + 8.5442707, + 50.1581591 + ], + [ + 8.5442707, + 50.1581591 + ], + [ + 8.5442707, + 50.1581591 + ], + [ + 8.5442707, + 50.1581591 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "answer": 2, + "create": 1, + "imagery": "osm", + "language": "en", + "change_within_50m": 2 + }, + "id": 113760996 + } + }, + { + "id": 113760883, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.9941227, + 50.2423472 + ], + [ + 8.9941227, + 50.2423472 + ], + [ + 8.9941227, + 50.2423472 + ], + [ + 8.9941227, + 50.2423472 + ], + [ + 8.9941227, + 50.2423472 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "answer": 7, + "create": 1, + "imagery": "CartoDB.Voyager", + "language": "de" + }, + "id": 113760883 + } + }, + { + "id": 113760658, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.9416748, + 50.2578723 + ], + [ + 8.9798212, + 50.2578723 + ], + [ + 8.9798212, + 50.2853496 + ], + [ + 8.9416748, + 50.2853496 + ], + [ + 8.9416748, + 50.2578723 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "postboxes", + "answer": 4, + "create": 3, + "imagery": "CartoDB.Voyager", + "language": "en" + }, + "id": 113760658 + } + }, + { + "id": 113760489, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.9448526, + 50.2687181 + ], + [ + 8.954151, + 50.2687181 + ], + [ + 8.954151, + 50.2861825 + ], + [ + 8.9448526, + 50.2861825 + ], + [ + 8.9448526, + 50.2687181 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "street_lighting", + "answer": 13, + "create": 1, + "imagery": "osm", + "language": "en" + }, + "id": 113760489 + } + }, + { + "id": 113760328, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.9384441, + 50.2726013 + ], + [ + 8.9499456, + 50.2726013 + ], + [ + 8.9499456, + 50.2757177 + ], + [ + 8.9384441, + 50.2757177 + ], + [ + 8.9384441, + 50.2726013 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "answer": 4, + "imagery": "osm", + "language": "de" + }, + "id": 113760328 + } + }, + { + "id": 113760141, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.5429227, + 50.1579597 + ], + [ + 8.5451666, + 50.1579597 + ], + [ + 8.5451666, + 50.1641456 + ], + [ + 8.5429227, + 50.1641456 + ], + [ + 8.5429227, + 50.1579597 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "move": 5, + "theme": "parkings", + "create": 6, + "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" + }, + "id": 113760141 + } + }, + { + "id": 113759711, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.5438791, + 50.1587227 + ], + [ + 8.5468456, + 50.1587227 + ], + [ + 8.5468456, + 50.1649721 + ], + [ + 8.5438791, + 50.1649721 + ], + [ + 8.5438791, + 50.1587227 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "move": 2, + "theme": "benches", + "answer": 32, + "create": 5, + "imagery": "osm", + "language": "de", + "change_within_25m": 25, + "change_within_50m": 6, + "move:node/9250013123": "improve_accuracy", + "move:node/9250177500": "improve_accuracy" + }, + "id": 113759711 + } + }, + { + "id": 113759556, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.5429403, + 50.1607401 + ], + [ + 8.5474089, + 50.1607401 + ], + [ + 8.5474089, + 50.1648896 + ], + [ + 8.5429403, + 50.1648896 + ], + [ + 8.5429403, + 50.1607401 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "move": 7, + "theme": "trees", + "answer": 29, + "create": 12, + "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" + }, + "id": 113759556 + } + }, + { + "id": 113759501, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.543289, + 50.1602984 + ], + [ + 8.5474116, + 50.1602984 + ], + [ + 8.5474116, + 50.1635305 + ], + [ + 8.543289, + 50.1635305 + ], + [ + 8.543289, + 50.1602984 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "waste_basket", + "answer": 7, + "create": 7, + "imagery": "osm", + "language": "en", + "change_within_25m": 6, + "change_within_50m": 1 + }, + "id": 113759501 + } + }, + { + "id": 113759289, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.5435706, + 50.1586488 + ], + [ + 8.5469908, + 50.1586488 + ], + [ + 8.5469908, + 50.1628828 + ], + [ + 8.5435706, + 50.1628828 + ], + [ + 8.5435706, + 50.1586488 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "move": 2, + "theme": "personal", + "answer": 32, + "create": 9, + "imagery": "osm", + "language": "en", + "add-image": 1, + "change_within_25m": 35, + "move:node/9250160715": "improve_accuracy", + "move:node/9250171354": "improve_accuracy" + }, + "id": 113759289 + } + }, + { + "id": 113759055, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.3721397, + 50.8610766 + ], + [ + 4.3759515, + 50.8610766 + ], + [ + 4.3759515, + 50.8617983 + ], + [ + 4.3721397, + 50.8617983 + ], + [ + 4.3721397, + 50.8610766 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 1, + "imagery": "osm", + "language": "en" + }, + "id": 113759055 + } + }, + { + "id": 113758800, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.5460034, + 50.159276 + ], + [ + 8.5460034, + 50.159276 + ], + [ + 8.5460034, + 50.159276 + ], + [ + 8.5460034, + 50.159276 + ], + [ + 8.5460034, + 50.159276 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "cafes_and_pubs", + "answer": 5, + "create": 1, + "imagery": "osm", + "language": "en", + "change_within_100m": 5 + }, + "id": 113758800 + } + }, + { + "id": 113758504, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 6.5640962, + 52.9950848 + ], + [ + 6.5640962, + 52.9950848 + ], + [ + 6.5640962, + 52.9950848 + ], + [ + 6.5640962, + 52.9950848 + ], + [ + 6.5640962, + 52.9950848 + ] + ] + ] + }, + "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, + "metadata": { + "host": "pietervdvn.github.io", + "path": "mc/post-partner/", + "theme": "postboxes", + "answer": 4, + "imagery": "CartoDB.Voyager", + "language": "en", + "change_within_5000m": 4 + }, + "id": 113758504 + } + }, + { + "id": 113758185, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.9622554, + 50.2739478 + ], + [ + 8.9725553, + 50.2739478 + ], + [ + 8.9725553, + 50.2757368 + ], + [ + 8.9622554, + 50.2757368 + ], + [ + 8.9622554, + 50.2739478 + ] + ] + ] + }, + "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": 1, + "modify": 1, + "delete": 0, + "area": 0.0000184265210999496, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "cycle_infra", + "answer": 2, + "create": 2, + "imagery": "CartoDB.Voyager", + "language": "de" + }, + "id": 113758185 + } + }, + { + "id": 113758182, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 6.5349845, + 52.9836736 + ], + [ + 6.5407695, + 52.9836736 + ], + [ + 6.5407695, + 53.0072061 + ], + [ + 6.5349845, + 53.0072061 + ], + [ + 6.5349845, + 52.9836736 + ] + ] + ] + }, + "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, + "metadata": { + "host": "pietervdvn.github.io", + "path": "mc/post-partner/", + "theme": "postboxes", + "answer": 11, + "imagery": "CartoDB.Voyager", + "language": "en", + "change_within_5000m": 11 + }, + "id": 113758182 + } + }, + { + "id": 113757575, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.5453597, + 50.1588516 + ], + [ + 8.5480097, + 50.1588516 + ], + [ + 8.5480097, + 50.1600665 + ], + [ + 8.5453597, + 50.1600665 + ], + [ + 8.5453597, + 50.1588516 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "move": 2, + "theme": "street_lighting", + "answer": 55, + "create": 9, + "imagery": "osm", + "language": "en", + "change_within_25m": 47, + "change_within_50m": 10, + "move:node/9250101192": "improve_accuracy", + "move:node/9250140726": "improve_accuracy" + }, + "id": 113757575 + } + }, + { + "id": 113757473, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.5482162, + 50.1588138 + ], + [ + 8.5482377, + 50.1588138 + ], + [ + 8.5482377, + 50.1588413 + ], + [ + 8.5482162, + 50.1588413 + ], + [ + 8.5482162, + 50.1588138 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "benches", + "answer": 6, + "create": 1, + "imagery": "osm", + "language": "de", + "add-image": 1, + "change_within_25m": 6, + "change_within_50m": 1 + }, + "id": 113757473 + } + }, + { + "id": 113757237, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.7493419, + 50.331409 + ], + [ + 8.7598251, + 50.331409 + ], + [ + 8.7598251, + 50.3374334 + ], + [ + 8.7493419, + 50.3374334 + ], + [ + 8.7493419, + 50.331409 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "split": 3, + "theme": "cycle_infra", + "answer": 37, + "create": 3, + "imagery": "CartoDB.Voyager", + "language": "de", + "relation-fix": 3 + }, + "id": 113757237 + } + }, + { + "id": 113757122, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.5488975, + 50.157769 + ], + [ + 8.5502064, + 50.157769 + ], + [ + 8.5502064, + 50.1587107 + ], + [ + 8.5488975, + 50.1587107 + ], + [ + 8.5488975, + 50.157769 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "trees", + "answer": 21, + "create": 9, + "imagery": "osm", + "language": "de", + "add-image": 4, + "change_within_25m": 22, + "change_within_50m": 3 + }, + "id": 113757122 + } + }, + { + "id": 113756938, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.5482162, + 50.1572878 + ], + [ + 8.5516119, + 50.1572878 + ], + [ + 8.5516119, + 50.1588413 + ], + [ + 8.5482162, + 50.1588413 + ], + [ + 8.5482162, + 50.1572878 + ] + ] + ] + }, + "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": 6, + "modify": 4, + "delete": 0, + "area": 0.00000527521994999788, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "benches", + "answer": 24, + "create": 5, + "imagery": "osm", + "language": "de", + "change_within_25m": 6, + "change_within_50m": 17, + "change_within_100m": 1 + }, + "id": 113756938 + } + }, + { + "id": 113756828, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.5453731, + 50.1582158 + ], + [ + 8.550598, + 50.1582158 + ], + [ + 8.550598, + 50.1595974 + ], + [ + 8.5453731, + 50.1595974 + ], + [ + 8.5453731, + 50.1582158 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "artwork", + "answer": 1, + "create": 1, + "imagery": "osm", + "language": "de", + "add-image": 2, + "change_within_25m": 4, + "move:node/9250058943": "improve_accuracy" + }, + "id": 113756828 + } + }, + { + "id": 113756815, + "type": "Feature", + "geometry": null, + "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:26Z", + "reviewed_features": [], + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "artwork", + "create": 1, + "imagery": "osm", + "language": "de" + }, + "id": 113756815 + } + }, + { + "id": 113756814, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.550598, + 50.1582158 + ], + [ + 8.550598, + 50.1582158 + ], + [ + 8.550598, + 50.1582158 + ], + [ + 8.550598, + 50.1582158 + ], + [ + 8.550598, + 50.1582158 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "waste_basket", + "answer": 1, + "create": 1, + "imagery": "osm", + "language": "de", + "change_within_25m": 1 + }, + "id": 113756814 + } + }, + { + "id": 113756772, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.5506839, + 50.1586076 + ], + [ + 8.5506839, + 50.1586076 + ], + [ + 8.5506839, + 50.1586076 + ], + [ + 8.5506839, + 50.1586076 + ], + [ + 8.5506839, + 50.1586076 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "create": 1, + "imagery": "HDM_HOT", + "language": "de", + "add-image": 1, + "change_within_25m": 1 + }, + "id": 113756772 + } + }, + { + "id": 113756676, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.5486132, + 50.1572088 + ], + [ + 8.5511667, + 50.1572088 + ], + [ + 8.5511667, + 50.1593808 + ], + [ + 8.5486132, + 50.1593808 + ], + [ + 8.5486132, + 50.1572088 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "waste_basket", + "answer": 12, + "create": 12, + "imagery": "osm", + "language": "de", + "change_within_25m": 7, + "change_within_50m": 1, + "change_within_100m": 4 + }, + "id": 113756676 + } + }, + { + "id": 113756593, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.5477495, + 50.1592846 + ], + [ + 8.5477495, + 50.1592846 + ], + [ + 8.5477495, + 50.1592846 + ], + [ + 8.5477495, + 50.1592846 + ], + [ + 8.5477495, + 50.1592846 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "parkings", + "create": 1, + "imagery": "osm", + "language": "de" + }, + "id": 113756593 + } + }, + { + "id": 113756494, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.5459042, + 50.1575387 + ], + [ + 8.5516119, + 50.1575387 + ], + [ + 8.5516119, + 50.1594015 + ], + [ + 8.5459042, + 50.1594015 + ], + [ + 8.5459042, + 50.1575387 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "benches", + "answer": 26, + "create": 6, + "imagery": "osm", + "language": "de", + "add-image": 1, + "change_within_25m": 8, + "change_within_50m": 14, + "change_within_100m": 5 + }, + "id": 113756494 + } + }, + { + "id": 113756026, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.2468668, + 52.77192 + ], + [ + 13.2513166, + 52.77192 + ], + [ + 13.2513166, + 52.7729617 + ], + [ + 13.2468668, + 52.7729617 + ], + [ + 13.2468668, + 52.77192 + ] + ] + ] + }, + "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, + "metadata": { + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "id": 113756026 + } + }, + { + "id": 113754874, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.9456606, + 50.3058153 + ], + [ + 8.9456606, + 50.3058153 + ], + [ + 8.9456606, + 50.3058153 + ], + [ + 8.9456606, + 50.3058153 + ], + [ + 8.9456606, + 50.3058153 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "openwindpowermap", + "answer": 4, + "create": 1, + "imagery": "CartoDB.Voyager", + "language": "de" + }, + "id": 113754874 + } + }, + { + "id": 113754698, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.941353, + 50.2853359 + ], + [ + 8.941353, + 50.2853359 + ], + [ + 8.941353, + 50.2853359 + ], + [ + 8.941353, + 50.2853359 + ], + [ + 8.941353, + 50.2853359 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "food", + "answer": 10, + "imagery": "osm", + "language": "de" + }, + "id": 113754698 + } + }, + { + "id": 113754541, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.941353, + 50.2853359 + ], + [ + 8.941353, + 50.2853359 + ], + [ + 8.941353, + 50.2853359 + ], + [ + 8.941353, + 50.2853359 + ], + [ + 8.941353, + 50.2853359 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "food", + "answer": 4, + "create": 1, + "imagery": "osm", + "language": "de" + }, + "id": 113754541 + } + }, + { + "id": 113754500, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.6862027, + 50.114882 + ], + [ + 8.6862027, + 50.114882 + ], + [ + 8.6862027, + 50.114882 + ], + [ + 8.6862027, + 50.114882 + ], + [ + 8.6862027, + 50.114882 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "food", + "answer": 7, + "imagery": "osm", + "language": "de" + }, + "id": 113754500 + } + }, + { + "id": 113754433, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.6853782, + 50.1165911 + ], + [ + 8.6853782, + 50.1165911 + ], + [ + 8.6853782, + 50.1165911 + ], + [ + 8.6853782, + 50.1165911 + ], + [ + 8.6853782, + 50.1165911 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "cafes_and_pubs", + "answer": 4, + "imagery": "osm", + "language": "de" + }, + "id": 113754433 + } + }, + { + "id": 113754188, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.6865377, + 50.1033471 + ], + [ + 8.7046486, + 50.1033471 + ], + [ + 8.7046486, + 50.1156341 + ], + [ + 8.6865377, + 50.1156341 + ], + [ + 8.6865377, + 50.1033471 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "toilets", + "answer": 13, + "imagery": "osm", + "language": "de" + }, + "id": 113754188 + } + }, + { + "id": 113754116, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.6596031, + 50.1048042 + ], + [ + 8.6602939, + 50.1048042 + ], + [ + 8.6602939, + 50.1062718 + ], + [ + 8.6596031, + 50.1062718 + ], + [ + 8.6596031, + 50.1048042 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "benches", + "answer": 8, + "imagery": "osm", + "language": "de" + }, + "id": 113754116 + } + }, + { + "id": 113754045, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.7472936, + 50.3274769 + ], + [ + 8.7607976, + 50.3274769 + ], + [ + 8.7607976, + 50.336471 + ], + [ + 8.7472936, + 50.336471 + ], + [ + 8.7472936, + 50.3274769 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "cycle_infra", + "answer": 59, + "imagery": "CartoDB.Voyager", + "language": "de" + }, + "id": 113754045 + } + }, + { + "id": 113752071, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 12.7648557, + 53.1549069 + ], + [ + 12.772336, + 53.1549069 + ], + [ + 12.772336, + 53.1594006 + ], + [ + 12.7648557, + 53.1594006 + ], + [ + 12.7648557, + 53.1549069 + ] + ] + ] + }, + "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, + "metadata": { + "host": "www.waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "id": 113752071 + } + }, + { + "id": 113749418, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 174.702026, + -36.8765078 + ], + [ + 174.702026, + -36.8765078 + ], + [ + 174.702026, + -36.8765078 + ], + [ + 174.702026, + -36.8765078 + ], + [ + 174.702026, + -36.8765078 + ] + ] + ] + }, + "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, + "metadata": { + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "aed", + "answer": 1, + "imagery": "osm", + "language": "en", + "add-image": 1 + }, + "id": 113749418 + } + }, + { + "id": 113747585, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.6773092, + 50.107802 + ], + [ + 8.6773092, + 50.107802 + ], + [ + 8.6773092, + 50.107802 + ], + [ + 8.6773092, + 50.107802 + ], + [ + 8.6773092, + 50.107802 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "benches", + "answer": 5, + "imagery": "osm", + "language": "de" + }, + "id": 113747585 + } + }, + { + "id": 113747362, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.6950746, + 50.1136518 + ], + [ + 8.6953135, + 50.1136518 + ], + [ + 8.6953135, + 50.113839 + ], + [ + 8.6950746, + 50.113839 + ], + [ + 8.6950746, + 50.1136518 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "food", + "answer": 8, + "imagery": "osm", + "language": "de" + }, + "id": 113747362 + } + }, + { + "id": 113747067, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.6795769, + 50.1146506 + ], + [ + 8.6976991, + 50.1146506 + ], + [ + 8.6976991, + 50.1155784 + ], + [ + 8.6795769, + 50.1155784 + ], + [ + 8.6795769, + 50.1146506 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "answer": 17, + "imagery": "CartoDB.Voyager", + "language": "de" + }, + "id": 113747067 + } + }, + { + "id": 113746594, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.6829767, + 50.1132982 + ], + [ + 8.6843893, + 50.1132982 + ], + [ + 8.6843893, + 50.115188 + ], + [ + 8.6829767, + 50.115188 + ], + [ + 8.6829767, + 50.1132982 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "cafes_and_pubs", + "answer": 9, + "imagery": "osm", + "language": "de" + }, + "id": 113746594 + } + }, + { + "id": 113746256, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.6692036, + 50.1161267 + ], + [ + 8.6995177, + 50.1161267 + ], + [ + 8.6995177, + 50.1285241 + ], + [ + 8.6692036, + 50.1285241 + ], + [ + 8.6692036, + 50.1161267 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "toilets", + "answer": 12, + "imagery": "osm", + "language": "de" + }, + "id": 113746256 + } + }, + { + "id": 113744063, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.7551521, + 50.3320633 + ], + [ + 8.7604527, + 50.3320633 + ], + [ + 8.7604527, + 50.3333546 + ], + [ + 8.7551521, + 50.3333546 + ], + [ + 8.7551521, + 50.3320633 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "cycle_infra", + "answer": 36, + "imagery": "CartoDB.Voyager", + "language": "de" + }, + "id": 113744063 + } + }, + { + "id": 113744040, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.6528492, + 50.1091454 + ], + [ + 8.6528492, + 50.1091454 + ], + [ + 8.6528492, + 50.1091454 + ], + [ + 8.6528492, + 50.1091454 + ], + [ + 8.6528492, + 50.1091454 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "toilets", + "answer": 9, + "imagery": "osm", + "language": "de" + }, + "id": 113744040 + } + }, + { + "id": 113743952, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.6830898, + 50.1148656 + ], + [ + 8.6830898, + 50.1148656 + ], + [ + 8.6830898, + 50.1148656 + ], + [ + 8.6830898, + 50.1148656 + ], + [ + 8.6830898, + 50.1148656 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 2, + "imagery": "CartoDB.Voyager", + "language": "de" + }, + "id": 113743952 + } + }, + { + "id": 113741375, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 6.5315977, + 52.9840172 + ], + [ + 6.5342219, + 52.9840172 + ], + [ + 6.5342219, + 52.9866249 + ], + [ + 6.5315977, + 52.9866249 + ], + [ + 6.5315977, + 52.9840172 + ] + ] + ] + }, + "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, + "metadata": { + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "street_lighting", + "answer": 80, + "create": 39, + "imagery": "Actueel_orthoHR_WMTS", + "language": "en", + "change_over_5000m": 39, + "change_within_5000m": 80 + }, + "id": 113741375 + } + }, + { + "id": 113741225, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 6.5700432, + 53.0198683 + ], + [ + 6.570805, + 53.0198683 + ], + [ + 6.570805, + 53.0213749 + ], + [ + 6.5700432, + 53.0213749 + ], + [ + 6.5700432, + 53.0198683 + ] + ] + ] + }, + "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, + "metadata": { + "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 + }, + "id": 113741225 + } + }, + { + "id": 113740818, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 10.6484741, + 44.7288908 + ], + [ + 10.6520212, + 44.7288908 + ], + [ + 10.6520212, + 44.7327329 + ], + [ + 10.6484741, + 44.7327329 + ], + [ + 10.6484741, + 44.7288908 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 3, + "imagery": "osm", + "language": "en", + "change_within_5000m": 3 + }, + "id": 113740818 + } + }, + { + "id": 113740545, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.677804, + 50.1272677 + ], + [ + 8.677804, + 50.1272677 + ], + [ + 8.677804, + 50.1272677 + ], + [ + 8.677804, + 50.1272677 + ], + [ + 8.677804, + 50.1272677 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "cycle_infra", + "answer": 1, + "imagery": "CartoDB.Voyager", + "language": "de" + }, + "id": 113740545 + } + }, + { + "id": 113735110, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.7348232, + 51.0401155 + ], + [ + 3.7348232, + 51.0401155 + ], + [ + 3.7348232, + 51.0401155 + ], + [ + 3.7348232, + 51.0401155 + ], + [ + 3.7348232, + 51.0401155 + ] + ] + ] + }, + "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, + "metadata": { + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "toilets", + "answer": 1, + "imagery": "osm", + "language": "en", + "change_within_25m": 1 + }, + "id": 113735110 + } + }, + { + "id": 113733740, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.6839434, + 50.1146583 + ], + [ + 8.6839434, + 50.1146583 + ], + [ + 8.6839434, + 50.1146583 + ], + [ + 8.6839434, + 50.1146583 + ], + [ + 8.6839434, + 50.1146583 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 3, + "imagery": "CartoDB.Voyager", + "language": "de" + }, + "id": 113733740 + } + }, + { + "id": 113733520, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.6942851, + 50.1149525 + ], + [ + 8.7015384, + 50.1149525 + ], + [ + 8.7015384, + 50.1177679 + ], + [ + 8.6942851, + 50.1177679 + ], + [ + 8.6942851, + 50.1149525 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "benches", + "answer": 15, + "imagery": "osm", + "language": "de" + }, + "id": 113733520 + } + }, + { + "id": 113733331, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.680197, + 50.1137452 + ], + [ + 8.6863743, + 50.1137452 + ], + [ + 8.6863743, + 50.114865 + ], + [ + 8.680197, + 50.114865 + ], + [ + 8.680197, + 50.1137452 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "street_lighting", + "answer": 1, + "imagery": "osm", + "language": "en" + }, + "id": 113733331 + } + }, + { + "id": 113733222, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.6803981, + 50.1162235 + ], + [ + 8.681797, + 50.1162235 + ], + [ + 8.681797, + 50.1164709 + ], + [ + 8.6803981, + 50.1164709 + ], + [ + 8.6803981, + 50.1162235 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "trees", + "answer": 6, + "imagery": "osm", + "language": "de" + }, + "id": 113733222 + } + }, + { + "id": 113732652, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.7348232, + 51.0400456 + ], + [ + 3.7348366, + 51.0400456 + ], + [ + 3.7348366, + 51.0401155 + ], + [ + 3.7348232, + 51.0401155 + ], + [ + 3.7348232, + 51.0400456 + ] + ] + ] + }, + "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, + "metadata": { + "host": "pietervdvn.github.io", + "move": 2, + "path": "mc/develop/", + "theme": "toilets", + "answer": 6, + "create": 1, + "imagery": "osm", + "language": "en", + "move:node/-1": "improve_accuracy", + "change_over_5000m": 1, + "change_within_25m": 8, + "move:node/9248363054": "improve_accuracy" + }, + "id": 113732652 + } + }, + { + "id": 113731799, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.6894075, + 50.1131043 + ], + [ + 8.6921141, + 50.1131043 + ], + [ + 8.6921141, + 50.1146992 + ], + [ + 8.6894075, + 50.1146992 + ], + [ + 8.6894075, + 50.1131043 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "food", + "answer": 23, + "imagery": "osm", + "language": "de" + }, + "id": 113731799 + } + }, + { + "id": 113730627, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.1993715, + 50.7445529 + ], + [ + 4.1993715, + 50.7445529 + ], + [ + 4.1993715, + 50.7445529 + ], + [ + 4.1993715, + 50.7445529 + ], + [ + 4.1993715, + 50.7445529 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 4, + "create": 1, + "imagery": "AGIV10cm", + "language": "nl", + "add-image": 1, + "change_within_25m": 5 + }, + "id": 113730627 + } + }, + { + "id": 113728526, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.6815079, + 50.1146139 + ], + [ + 8.6844133, + 50.1146139 + ], + [ + 8.6844133, + 50.1146226 + ], + [ + 8.6815079, + 50.1146226 + ], + [ + 8.6815079, + 50.1146139 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "food", + "answer": 20, + "imagery": "osm", + "language": "de" + }, + "id": 113728526 + } + }, + { + "id": 113728191, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.4499186, + 49.4759151 + ], + [ + 8.4499186, + 49.4759151 + ], + [ + 8.4499186, + 49.4759151 + ], + [ + 8.4499186, + 49.4759151 + ], + [ + 8.4499186, + 49.4759151 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "benches", + "answer": 6, + "create": 1, + "imagery": "osm", + "language": "de", + "add-image": 1 + }, + "id": 113728191 + } + }, + { + "id": 113728066, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -3.2041098, + 51.5014559 + ], + [ + -3.2041098, + 51.5014559 + ], + [ + -3.2041098, + 51.5014559 + ], + [ + -3.2041098, + 51.5014559 + ], + [ + -3.2041098, + 51.5014559 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 1, + "imagery": "CartoDB.Voyager", + "language": "nl" + }, + "id": 113728066 + } + }, + { + "id": 113721207, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.6830332, + 50.1144372 + ], + [ + 8.6832001, + 50.1144372 + ], + [ + 8.6832001, + 50.1145446 + ], + [ + 8.6830332, + 50.1145446 + ], + [ + 8.6830332, + 50.1144372 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "food", + "answer": 1, + "imagery": "osm", + "language": "de" + }, + "id": 113721207 + } + }, + { + "id": 113712667, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.6826565, + 50.1152351 + ], + [ + 8.6866937, + 50.1152351 + ], + [ + 8.6866937, + 50.1163799 + ], + [ + 8.6826565, + 50.1163799 + ], + [ + 8.6826565, + 50.1152351 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "trees", + "answer": 6, + "imagery": "osm", + "language": "de" + }, + "id": 113712667 + } + }, + { + "id": 113712485, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.6802386, + 50.111226 + ], + [ + 8.6879447, + 50.111226 + ], + [ + 8.6879447, + 50.1145223 + ], + [ + 8.6802386, + 50.1145223 + ], + [ + 8.6802386, + 50.111226 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "benches", + "answer": 13, + "imagery": "osm", + "language": "de" + }, + "id": 113712485 + } + }, + { + "id": 113712262, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.6731979, + 50.1071069 + ], + [ + 8.6817649, + 50.1071069 + ], + [ + 8.6817649, + 50.1152736 + ], + [ + 8.6731979, + 50.1152736 + ], + [ + 8.6731979, + 50.1071069 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "toilets", + "answer": 31, + "imagery": "osm", + "language": "de" + }, + "id": 113712262 + } + }, + { + "id": 113711932, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.6823812, + 50.1143259 + ], + [ + 8.692774, + 50.1143259 + ], + [ + 8.692774, + 50.1156896 + ], + [ + 8.6823812, + 50.1156896 + ], + [ + 8.6823812, + 50.1143259 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "food", + "answer": 32, + "imagery": "osm", + "language": "de" + }, + "id": 113711932 + } + }, + { + "id": 113705603, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 12.8527772, + 52.1633635 + ], + [ + 12.8737986, + 52.1633635 + ], + [ + 12.8737986, + 52.1921229 + ], + [ + 12.8527772, + 52.1921229 + ], + [ + 12.8527772, + 52.1633635 + ] + ] + ] + }, + "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, + "metadata": { + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "id": 113705603 + } + }, + { + "id": 113704380, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.6917978, + 50.1152513 + ], + [ + 8.6917978, + 50.1152513 + ], + [ + 8.6917978, + 50.1152513 + ], + [ + 8.6917978, + 50.1152513 + ], + [ + 8.6917978, + 50.1152513 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "food", + "answer": 8, + "imagery": "osm", + "language": "de" + }, + "id": 113704380 + } + }, + { + "id": 113703818, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.6868891, + 50.1137075 + ], + [ + 8.6868891, + 50.1137075 + ], + [ + 8.6868891, + 50.1137075 + ], + [ + 8.6868891, + 50.1137075 + ], + [ + 8.6868891, + 50.1137075 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "cafes_and_pubs", + "answer": 6, + "imagery": "osm", + "language": "de" + }, + "id": 113703818 + } + }, + { + "id": 113703612, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.4581663, + 51.1707405 + ], + [ + 3.4581663, + 51.1707405 + ], + [ + 3.4581663, + 51.1707405 + ], + [ + 3.4581663, + 51.1707405 + ], + [ + 3.4581663, + 51.1707405 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "nature", + "imagery": "osm", + "language": "nl", + "add-image": 1 + }, + "id": 113703612 + } + }, + { + "id": 113702505, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 10.9710503, + 45.4293967 + ], + [ + 10.9831731, + 45.4293967 + ], + [ + 10.9831731, + 45.4432882 + ], + [ + 10.9710503, + 45.4432882 + ], + [ + 10.9710503, + 45.4293967 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "aed", + "answer": 3, + "imagery": "osm", + "language": "it" + }, + "id": 113702505 + } + }, + { + "id": 113702444, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.1879292, + 50.1966201 + ], + [ + 9.1906575, + 50.1966201 + ], + [ + 9.1906575, + 50.1995693 + ], + [ + 9.1879292, + 50.1995693 + ], + [ + 9.1879292, + 50.1966201 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "food", + "answer": 6, + "imagery": "CartoDB.Voyager", + "language": "en" + }, + "id": 113702444 + } + }, + { + "id": 113702124, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.1906575, + 50.1995693 + ], + [ + 9.1906575, + 50.1995693 + ], + [ + 9.1906575, + 50.1995693 + ], + [ + 9.1906575, + 50.1995693 + ], + [ + 9.1906575, + 50.1995693 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "food", + "answer": 4, + "imagery": "osm", + "language": "en" + }, + "id": 113702124 + } + }, + { + "id": 113702050, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.6832145, + 50.1116981 + ], + [ + 8.6832145, + 50.1116981 + ], + [ + 8.6832145, + 50.1116981 + ], + [ + 8.6832145, + 50.1116981 + ], + [ + 8.6832145, + 50.1116981 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "answer": 1, + "create": 1, + "imagery": "osm", + "language": "en" + }, + "id": 113702050 + } + }, + { + "id": 113701784, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.1897112, + 50.1967617 + ], + [ + 9.1940317, + 50.1967617 + ], + [ + 9.1940317, + 50.1996965 + ], + [ + 9.1897112, + 50.1996965 + ], + [ + 9.1897112, + 50.1967617 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "toilets", + "answer": 14, + "imagery": "osm", + "language": "en" + }, + "id": 113701784 + } + }, + { + "id": 113701706, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.1854334, + 50.199891 + ], + [ + 9.1854334, + 50.199891 + ], + [ + 9.1854334, + 50.199891 + ], + [ + 9.1854334, + 50.199891 + ], + [ + 9.1854334, + 50.199891 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "cafes_and_pubs", + "answer": 8, + "imagery": "osm", + "language": "en" + }, + "id": 113701706 + } + }, + { + "id": 113701360, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.6838824, + 50.1115399 + ], + [ + 8.6838824, + 50.1115399 + ], + [ + 8.6838824, + 50.1115399 + ], + [ + 8.6838824, + 50.1115399 + ], + [ + 8.6838824, + 50.1115399 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "cafes_and_pubs", + "answer": 17, + "create": 1, + "imagery": "osm", + "language": "en" + }, + "id": 113701360 + } + }, + { + "id": 113700003, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.2011437, + 51.2002594 + ], + [ + 3.2011437, + 51.2002594 + ], + [ + 3.2011437, + 51.2002594 + ], + [ + 3.2011437, + 51.2002594 + ], + [ + 3.2011437, + 51.2002594 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "aed", + "answer": 1, + "imagery": "osm", + "language": "nl" + }, + "id": 113700003 + } + }, + { + "id": 113699070, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.1509005, + 48.7299946 + ], + [ + 9.1509005, + 48.7299946 + ], + [ + 9.1509005, + 48.7299946 + ], + [ + 9.1509005, + 48.7299946 + ], + [ + 9.1509005, + 48.7299946 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "benches", + "answer": 1, + "imagery": "osm", + "language": "de" + }, + "id": 113699070 + } + }, + { + "id": 113698480, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.4502941, + 49.4742454 + ], + [ + 8.4502941, + 49.4742454 + ], + [ + 8.4502941, + 49.4742454 + ], + [ + 8.4502941, + 49.4742454 + ], + [ + 8.4502941, + 49.4742454 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "trees", + "answer": 2, + "create": 1, + "imagery": "osm", + "language": "de" + }, + "id": 113698480 + } + }, + { + "id": 113698337, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.4500581, + 49.4733809 + ], + [ + 8.4500876, + 49.4733809 + ], + [ + 8.4500876, + 49.473496 + ], + [ + 8.4500581, + 49.473496 + ], + [ + 8.4500581, + 49.4733809 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "answer": 2, + "create": 2, + "imagery": "osm", + "language": "de" + }, + "id": 113698337 + } + }, + { + "id": 113698278, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.4499562, + 49.4732868 + ], + [ + 8.4499562, + 49.4732868 + ], + [ + 8.4499562, + 49.4732868 + ], + [ + 8.4499562, + 49.4732868 + ], + [ + 8.4499562, + 49.4732868 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "benches", + "answer": 6, + "create": 1, + "imagery": "osm", + "language": "de" + }, + "id": 113698278 + } + }, + { + "id": 113697689, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.4480947, + 49.4760771 + ], + [ + 8.4480947, + 49.4760771 + ], + [ + 8.4480947, + 49.4760771 + ], + [ + 8.4480947, + 49.4760771 + ], + [ + 8.4480947, + 49.4760771 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "shops", + "create": 1, + "imagery": "osm", + "language": "de" + }, + "id": 113697689 + } + }, + { + "id": 113697517, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.4485105, + 49.4769189 + ], + [ + 8.4485105, + 49.4769189 + ], + [ + 8.4485105, + 49.4769189 + ], + [ + 8.4485105, + 49.4769189 + ], + [ + 8.4485105, + 49.4769189 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "cafes_and_pubs", + "answer": 7, + "create": 1, + "imagery": "osm", + "language": "de" + }, + "id": 113697517 + } + }, + { + "id": 113697242, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.2532747, + 50.7435566 + ], + [ + 4.2532747, + 50.7435566 + ], + [ + 4.2532747, + 50.7435566 + ], + [ + 4.2532747, + 50.7435566 + ], + [ + 4.2532747, + 50.7435566 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "answer": 7, + "imagery": "CartoDB.Voyager", + "language": "nl", + "change_within_1000m": 7 + }, + "id": 113697242 + } + }, + { + "id": 113697189, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.2238342, + 51.2079706 + ], + [ + 3.2238342, + 51.2079706 + ], + [ + 3.2238342, + 51.2079706 + ], + [ + 3.2238342, + 51.2079706 + ], + [ + 3.2238342, + 51.2079706 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "aed_brugge", + "answer": 1, + "imagery": "HDM_HOT", + "language": "nl", + "change_within_1000m": 1 + }, + "id": 113697189 + } + }, + { + "id": 113696848, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 14.0631437, + 52.0389766 + ], + [ + 14.0631437, + 52.0389766 + ], + [ + 14.0631437, + 52.0389766 + ], + [ + 14.0631437, + 52.0389766 + ], + [ + 14.0631437, + 52.0389766 + ] + ] + ] + }, + "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, + "metadata": { + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "id": 113696848 + } + }, + { + "id": 113696506, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.6898369, + 50.1276097 + ], + [ + 8.6898369, + 50.1276097 + ], + [ + 8.6898369, + 50.1276097 + ], + [ + 8.6898369, + 50.1276097 + ], + [ + 8.6898369, + 50.1276097 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "climbing", + "create": 1, + "imagery": "osm", + "language": "de", + "add-image": 1 + }, + "id": 113696506 + } + }, + { + "id": 113695360, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.248831, + 50.741326 + ], + [ + 4.248831, + 50.741326 + ], + [ + 4.248831, + 50.741326 + ], + [ + 4.248831, + 50.741326 + ], + [ + 4.248831, + 50.741326 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "answer": 2, + "create": 1, + "imagery": "osm", + "language": "en", + "change_within_1000m": 2 + }, + "id": 113695360 + } + }, + { + "id": 113692952, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.669955, + 50.1448601 + ], + [ + 8.669955, + 50.1448601 + ], + [ + 8.669955, + 50.1448601 + ], + [ + 8.669955, + 50.1448601 + ], + [ + 8.669955, + 50.1448601 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "artwork", + "answer": 1, + "create": 1, + "imagery": "osm", + "language": "en", + "add-image": 1, + "change_within_25m": 2 + }, + "id": 113692952 + } + }, + { + "id": 113692745, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.668921, + 50.1439577 + ], + [ + 8.668921, + 50.1439577 + ], + [ + 8.668921, + 50.1439577 + ], + [ + 8.668921, + 50.1439577 + ], + [ + 8.668921, + 50.1439577 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "answer": 6, + "create": 1, + "imagery": "osm", + "language": "en", + "add-image": 1, + "change_within_25m": 2, + "change_within_50m": 5 + }, + "id": 113692745 + } + }, + { + "id": 113692652, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.6690082, + 50.1426101 + ], + [ + 8.6695942, + 50.1426101 + ], + [ + 8.6695942, + 50.1444287 + ], + [ + 8.6690082, + 50.1444287 + ], + [ + 8.6690082, + 50.1426101 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "waste_basket", + "answer": 3, + "create": 3, + "imagery": "osm", + "language": "en", + "change_within_25m": 3 + }, + "id": 113692652 + } + }, + { + "id": 113691415, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.6864519, + 50.1152875 + ], + [ + 8.6865402, + 50.1152875 + ], + [ + 8.6865402, + 50.1153497 + ], + [ + 8.6864519, + 50.1153497 + ], + [ + 8.6864519, + 50.1152875 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 10, + "imagery": "CartoDB.Voyager", + "language": "en", + "add-image": 1, + "change_within_25m": 11 + }, + "id": 113691415 + } + }, + { + "id": 113684745, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 7.3042905, + 47.0730967 + ], + [ + 7.3043823, + 47.0730967 + ], + [ + 7.3043823, + 47.0731573 + ], + [ + 7.3042905, + 47.0731573 + ], + [ + 7.3042905, + 47.0730967 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "toilets", + "answer": 1, + "imagery": "osm", + "language": "en" + }, + "id": 113684745 + } + }, + { + "id": 113680426, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 7.3005668, + 47.1155427 + ], + [ + 7.3042051, + 47.1155427 + ], + [ + 7.3042051, + 47.1289114 + ], + [ + 7.3005668, + 47.1289114 + ], + [ + 7.3005668, + 47.1155427 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "answer": 4, + "imagery": "osm", + "language": "en" + }, + "id": 113680426 + } + }, + { + "id": 113666227, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.1453725, + 49.8400929 + ], + [ + 9.1466868, + 49.8400929 + ], + [ + 9.1466868, + 49.840764 + ], + [ + 9.1453725, + 49.840764 + ], + [ + 9.1453725, + 49.8400929 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "cafes_and_pubs", + "create": 2, + "imagery": "osm", + "language": "en" + }, + "id": 113666227 + } + }, + { + "id": 113666128, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.1488433, + 49.8067305 + ], + [ + 9.1488433, + 49.8067305 + ], + [ + 9.1488433, + 49.8067305 + ], + [ + 9.1488433, + 49.8067305 + ], + [ + 9.1488433, + 49.8067305 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "fritures", + "create": 1, + "imagery": "osm", + "language": "en" + }, + "id": 113666128 + } + }, + { + "id": 113666127, + "type": "Feature", + "geometry": null, + "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:34:58Z", + "reviewed_features": [], + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "cafes_and_pubs", + "create": 2, + "imagery": "osm", + "language": "en" + }, + "id": 113666127 + } + }, + { + "id": 113666007, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.2376243, + 50.7366011 + ], + [ + 4.2376243, + 50.7366011 + ], + [ + 4.2376243, + 50.7366011 + ], + [ + 4.2376243, + 50.7366011 + ], + [ + 4.2376243, + 50.7366011 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "food", + "answer": 5, + "imagery": "osm", + "language": "en", + "change_within_25m": 5 + }, + "id": 113666007 + } + }, + { + "id": 113664697, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.2263353, + 51.2096424 + ], + [ + 3.2263353, + 51.2096424 + ], + [ + 3.2263353, + 51.2096424 + ], + [ + 3.2263353, + 51.2096424 + ], + [ + 3.2263353, + 51.2096424 + ] + ] + ] + }, + "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, + "metadata": { + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "food", + "answer": 1, + "imagery": "CartoDB.Voyager", + "language": "en", + "change_within_5000m": 1 + }, + "id": 113664697 + } + }, + { + "id": 113664639, + "type": "Feature", + "geometry": null, + "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:47:00Z", + "reviewed_features": [], + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "food", + "answer": 1, + "imagery": "osm", + "language": "en", + "change_within_5000m": 1 + }, + "id": 113664639 + } + }, + { + "id": 113664294, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.150458, + 49.803303 + ], + [ + 9.1600496, + 49.803303 + ], + [ + 9.1600496, + 49.8063012 + ], + [ + 9.150458, + 49.8063012 + ], + [ + 9.150458, + 49.803303 + ] + ] + ] + }, + "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": 4, + "modify": 0, + "delete": 0, + "area": 0.0000287575351200046, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "fritures", + "create": 6, + "imagery": "osm", + "language": "en" + }, + "id": 113664294 + } + }, + { + "id": 113663618, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.1550151, + 49.8000414 + ], + [ + 9.1677395, + 49.8000414 + ], + [ + 9.1677395, + 49.8046567 + ], + [ + 9.1550151, + 49.8046567 + ], + [ + 9.1550151, + 49.8000414 + ] + ] + ] + }, + "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": 11, + "modify": 0, + "delete": 0, + "area": 0.000058726923320058, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "waste_basket", + "answer": 9, + "create": 13, + "imagery": "osm", + "language": "en" + }, + "id": 113663618 + } + }, + { + "id": 113663060, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.1600871, + 49.8019059 + ], + [ + 9.1624957, + 49.8019059 + ], + [ + 9.1624957, + 49.8027542 + ], + [ + 9.1600871, + 49.8027542 + ], + [ + 9.1600871, + 49.8019059 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "parkings", + "create": 6, + "imagery": "osm", + "language": "en" + }, + "id": 113663060 + } + }, + { + "id": 113663005, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.1612217, + 49.8024287 + ], + [ + 9.1612217, + 49.8024287 + ], + [ + 9.1612217, + 49.8024287 + ], + [ + 9.1612217, + 49.8024287 + ], + [ + 9.1612217, + 49.8024287 + ] + ] + ] + }, + "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": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "facadegardens", + "answer": 3, + "create": 2, + "imagery": "osm", + "language": "en" + }, + "id": 113663005 + } + }, + { + "id": 113662582, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.1548836, + 49.8025516 + ], + [ + 9.1629303, + 49.8025516 + ], + [ + 9.1629303, + 49.8093996 + ], + [ + 9.1548836, + 49.8093996 + ], + [ + 9.1548836, + 49.8025516 + ] + ] + ] + }, + "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": 3, + "modify": 0, + "delete": 0, + "area": 0.0000551038015999803, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "answer": 1, + "create": 5, + "imagery": "osm", + "language": "en" + }, + "id": 113662582 + } + }, + { + "id": 113662208, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.1593575, + 49.8010351 + ], + [ + 9.1612324, + 49.8010351 + ], + [ + 9.1612324, + 49.8017726 + ], + [ + 9.1593575, + 49.8017726 + ], + [ + 9.1593575, + 49.8010351 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "create": 4, + "imagery": "HDM_HOT", + "language": "en" + }, + "id": 113662208 + } + }, + { + "id": 113661631, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.1536176, + 49.8020911 + ], + [ + 9.166342, + 49.8020911 + ], + [ + 9.166342, + 49.8118402 + ], + [ + 9.1536176, + 49.8118402 + ], + [ + 9.1536176, + 49.8020911 + ] + ] + ] + }, + "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": 9, + "modify": 1, + "delete": 0, + "area": 0.000124051448040004, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "benches", + "answer": 3, + "create": 13, + "imagery": "osm", + "language": "en" + }, + "id": 113661631 + } + }, + { + "id": 113661608, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.2263353, + 51.2096424 + ], + [ + 3.2263353, + 51.2096424 + ], + [ + 3.2263353, + 51.2096424 + ], + [ + 3.2263353, + 51.2096424 + ], + [ + 3.2263353, + 51.2096424 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "food", + "answer": 7, + "imagery": "osm", + "language": "en", + "change_within_1000m": 7 + }, + "id": 113661608 + } + }, + { + "id": 113661606, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.9852071, + 50.0386577 + ], + [ + 8.9852071, + 50.0386577 + ], + [ + 8.9852071, + 50.0386577 + ], + [ + 8.9852071, + 50.0386577 + ], + [ + 8.9852071, + 50.0386577 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "parkings", + "create": 1, + "imagery": "osm", + "language": "en" + }, + "id": 113661606 + } + }, + { + "id": 113661550, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.9855129, + 50.0382822 + ], + [ + 8.98606, + 50.0382822 + ], + [ + 8.98606, + 50.0385716 + ], + [ + 8.9855129, + 50.0385716 + ], + [ + 8.9855129, + 50.0382822 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "street_lighting", + "answer": 7, + "create": 2, + "imagery": "osm", + "language": "en", + "change_within_50m": 4, + "change_within_100m": 3 + }, + "id": 113661550 + } + }, + { + "id": 113661212, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.9840189, + 50.0397068 + ], + [ + 8.9840189, + 50.0397068 + ], + [ + 8.9840189, + 50.0397068 + ], + [ + 8.9840189, + 50.0397068 + ], + [ + 8.9840189, + 50.0397068 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "artwork", + "answer": 1, + "create": 1, + "imagery": "osm", + "language": "de" + }, + "id": 113661212 + } + }, + { + "id": 113661169, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.9843253, + 50.0391539 + ], + [ + 8.9843253, + 50.0391539 + ], + [ + 8.9843253, + 50.0391539 + ], + [ + 8.9843253, + 50.0391539 + ], + [ + 8.9843253, + 50.0391539 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "answer": 4, + "create": 1, + "imagery": "osm", + "language": "de" + }, + "id": 113661169 + } + }, + { + "id": 113660924, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.9808529, + 50.0367802 + ], + [ + 8.9881991, + 50.0367802 + ], + [ + 8.9881991, + 50.0413525 + ], + [ + 8.9808529, + 50.0413525 + ], + [ + 8.9808529, + 50.0367802 + ] + ] + ] + }, + "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": 3, + "modify": 5, + "delete": 0, + "area": 0.0000335890302599913, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "cycle_infra", + "answer": 8, + "create": 6, + "imagery": "CartoDB.Voyager", + "language": "de" + }, + "id": 113660924 + } + }, + { + "id": 113660783, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.9813849, + 50.0410488 + ], + [ + 8.9813849, + 50.0410488 + ], + [ + 8.9813849, + 50.0410488 + ], + [ + 8.9813849, + 50.0410488 + ], + [ + 8.9813849, + 50.0410488 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "waste_basket", + "answer": 1, + "create": 1, + "imagery": "osm", + "language": "de" + }, + "id": 113660783 + } + }, + { + "id": 113660696, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.981173, + 50.0423011 + ], + [ + 8.981173, + 50.0423011 + ], + [ + 8.981173, + 50.0423011 + ], + [ + 8.981173, + 50.0423011 + ], + [ + 8.981173, + 50.0423011 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "benches", + "answer": 4, + "create": 1, + "imagery": "osm", + "language": "de" + }, + "id": 113660696 + } + }, + { + "id": 113660668, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.9811918, + 50.0423183 + ], + [ + 8.9811918, + 50.0423183 + ], + [ + 8.9811918, + 50.0423183 + ], + [ + 8.9811918, + 50.0423183 + ], + [ + 8.9811918, + 50.0423183 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "trees", + "create": 1, + "imagery": "osm", + "language": "de" + }, + "id": 113660668 + } + }, + { + "id": 113660337, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.1607603, + 49.8024633 + ], + [ + 9.1607603, + 49.8024633 + ], + [ + 9.1607603, + 49.8024633 + ], + [ + 9.1607603, + 49.8024633 + ], + [ + 9.1607603, + 49.8024633 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "artwork", + "answer": 1, + "create": 1, + "imagery": "osm", + "language": "en", + "add-image": 1, + "change_within_25m": 2 + }, + "id": 113660337 + } + }, + { + "id": 113660317, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.9819241, + 50.0414725 + ], + [ + 8.9819241, + 50.0414725 + ], + [ + 8.9819241, + 50.0414725 + ], + [ + 8.9819241, + 50.0414725 + ], + [ + 8.9819241, + 50.0414725 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "answer": 8, + "create": 1, + "imagery": "CartoDB.Voyager", + "language": "de" + }, + "id": 113660317 + } + }, + { + "id": 113660174, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.1590598, + 49.8026295 + ], + [ + 9.1590598, + 49.8026295 + ], + [ + 9.1590598, + 49.8026295 + ], + [ + 9.1590598, + 49.8026295 + ], + [ + 9.1590598, + 49.8026295 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "trees", + "create": 1, + "imagery": "osm", + "language": "en" + }, + "id": 113660174 + } + }, + { + "id": 113659748, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.1593146, + 49.8026849 + ], + [ + 9.1602722, + 49.8026849 + ], + [ + 9.1602722, + 49.8063566 + ], + [ + 9.1593146, + 49.8063566 + ], + [ + 9.1593146, + 49.8026849 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "cafes_and_pubs", + "create": 2, + "imagery": "osm", + "language": "en" + }, + "id": 113659748 + } + }, + { + "id": 113659643, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.1562247, + 49.8027299 + ], + [ + 9.1604358, + 49.8027299 + ], + [ + 9.1604358, + 49.8030519 + ], + [ + 9.1562247, + 49.8030519 + ], + [ + 9.1562247, + 49.8027299 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "benches", + "answer": 25, + "create": 5, + "imagery": "osm", + "language": "en", + "change_within_25m": 24, + "change_within_50m": 1 + }, + "id": 113659643 + } + }, + { + "id": 113659591, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.1557634, + 49.8024356 + ], + [ + 9.1608784, + 49.8024356 + ], + [ + 9.1608784, + 49.8031437 + ], + [ + 9.1557634, + 49.8031437 + ], + [ + 9.1557634, + 49.8024356 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "waste_basket", + "answer": 6, + "create": 6, + "imagery": "osm", + "language": "en", + "change_within_25m": 6, + "change_within_50m": 1, + "move:node/9243908844": "improve_accuracy" + }, + "id": 113659591 + } + }, + { + "id": 113659569, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.160189, + 49.8029775 + ], + [ + 9.160189, + 49.8029775 + ], + [ + 9.160189, + 49.8029775 + ], + [ + 9.160189, + 49.8029775 + ], + [ + 9.160189, + 49.8029775 + ] + ] + ] + }, + "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": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "answer": 1, + "create": 6, + "imagery": "HDM_HOT", + "language": "en" + }, + "id": 113659569 + } + }, + { + "id": 113659450, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.1554201, + 49.8025914 + ], + [ + 9.1585878, + 49.8025914 + ], + [ + 9.1585878, + 49.8031835 + ], + [ + 9.1554201, + 49.8031835 + ], + [ + 9.1554201, + 49.8025914 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "parkings", + "create": 9, + "imagery": "osm", + "language": "en" + }, + "id": 113659450 + } + }, + { + "id": 113659366, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.1788948, + 49.7538018 + ], + [ + 9.1788948, + 49.7538018 + ], + [ + 9.1788948, + 49.7538018 + ], + [ + 9.1788948, + 49.7538018 + ], + [ + 9.1788948, + 49.7538018 + ] + ] + ] + }, + "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": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "campersite", + "create": 2, + "imagery": "osm", + "language": "en" + }, + "id": 113659366 + } + }, + { + "id": 113659288, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.1656822, + 49.7933756 + ], + [ + 9.1656822, + 49.7933756 + ], + [ + 9.1656822, + 49.7933756 + ], + [ + 9.1656822, + 49.7933756 + ], + [ + 9.1656822, + 49.7933756 + ] + ] + ] + }, + "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": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "create": 3, + "imagery": "osm", + "language": "en" + }, + "id": 113659288 + } + }, + { + "id": 113659287, + "type": "Feature", + "geometry": null, + "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:14:55Z", + "reviewed_features": [], + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "campersite", + "create": 1, + "imagery": "osm", + "language": "en" + }, + "id": 113659287 + } + }, + { + "id": 113659179, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.1553235, + 49.8025187 + ], + [ + 9.1601729, + 49.8025187 + ], + [ + 9.1601729, + 49.803232 + ], + [ + 9.1553235, + 49.803232 + ], + [ + 9.1553235, + 49.8025187 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "street_lighting", + "answer": 26, + "create": 9, + "imagery": "osm", + "language": "en", + "change_within_25m": 20, + "change_within_50m": 6 + }, + "id": 113659179 + } + }, + { + "id": 113659027, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.1554067, + 49.8028009 + ], + [ + 9.1573647, + 49.8028009 + ], + [ + 9.1573647, + 49.8033358 + ], + [ + 9.1554067, + 49.8033358 + ], + [ + 9.1554067, + 49.8028009 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "waste_basket", + "answer": 3, + "create": 2, + "imagery": "osm", + "language": "de", + "change_within_25m": 3 + }, + "id": 113659027 + } + }, + { + "id": 113659015, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.1579735, + 49.801326 + ], + [ + 9.1579735, + 49.801326 + ], + [ + 9.1579735, + 49.801326 + ], + [ + 9.1579735, + 49.801326 + ], + [ + 9.1579735, + 49.801326 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "create": 1, + "imagery": "osm", + "language": "en" + }, + "id": 113659015 + } + }, + { + "id": 113658838, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.1626325, + 49.8023629 + ], + [ + 9.1626325, + 49.8023629 + ], + [ + 9.1626325, + 49.8023629 + ], + [ + 9.1626325, + 49.8023629 + ], + [ + 9.1626325, + 49.8023629 + ] + ] + ] + }, + "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": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "food", + "create": 2, + "imagery": "osm", + "language": "en" + }, + "id": 113658838 + } + }, + { + "id": 113658681, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.1552243, + 49.8030952 + ], + [ + 9.1552243, + 49.8030952 + ], + [ + 9.1552243, + 49.8030952 + ], + [ + 9.1552243, + 49.8030952 + ], + [ + 9.1552243, + 49.8030952 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "cafes_and_pubs", + "answer": 6, + "create": 1, + "imagery": "osm", + "language": "de", + "change_within_25m": 5, + "change_within_50m": 1 + }, + "id": 113658681 + } + }, + { + "id": 113658667, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.1624957, + 49.8021708 + ], + [ + 9.1648002, + 49.8021708 + ], + [ + 9.1648002, + 49.8054218 + ], + [ + 9.1624957, + 49.8054218 + ], + [ + 9.1624957, + 49.8021708 + ] + ] + ] + }, + "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": 8, + "modify": 2, + "delete": 0, + "area": 0.00000749192950000058, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "street_lighting", + "answer": 5, + "create": 10, + "imagery": "osm", + "language": "en" + }, + "id": 113658667 + } + }, + { + "id": 113658548, + "type": "Feature", + "geometry": null, + "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:57:44Z", + "reviewed_features": [], + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "benches", + "answer": 1, + "imagery": "osm", + "language": "de" + }, + "id": 113658548 + } + }, + { + "id": 113658469, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.2539012, + 50.7255232 + ], + [ + 4.2539655, + 50.7255232 + ], + [ + 4.2539655, + 50.7260375 + ], + [ + 4.2539012, + 50.7260375 + ], + [ + 4.2539012, + 50.7255232 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 6, + "create": 1, + "imagery": "AGIV10cm", + "language": "en", + "add-image": 2, + "change_within_25m": 8 + }, + "id": 113658469 + } + }, + { + "id": 113657967, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.1671735, + 49.7998942 + ], + [ + 9.1671735, + 49.7998942 + ], + [ + 9.1671735, + 49.7998942 + ], + [ + 9.1671735, + 49.7998942 + ], + [ + 9.1671735, + 49.7998942 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "toilets", + "answer": 1, + "create": 1, + "imagery": "osm", + "language": "de" + }, + "id": 113657967 + } + }, + { + "id": 113657736, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.1557714, + 49.8001193 + ], + [ + 9.1637, + 49.8001193 + ], + [ + 9.1637, + 49.802169 + ], + [ + 9.1557714, + 49.802169 + ], + [ + 9.1557714, + 49.8001193 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "trees", + "create": 16, + "imagery": "osm", + "language": "de" + }, + "id": 113657736 + } + }, + { + "id": 113657620, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.1573727, + 49.7998648 + ], + [ + 9.1583464, + 49.7998648 + ], + [ + 9.1583464, + 49.8005772 + ], + [ + 9.1573727, + 49.8005772 + ], + [ + 9.1573727, + 49.7998648 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "benches", + "answer": 5, + "create": 4, + "imagery": "osm", + "language": "de" + }, + "id": 113657620 + } + }, + { + "id": 113657566, + "type": "Feature", + "geometry": null, + "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:32:49Z", + "reviewed_features": [], + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "trees", + "create": 2, + "imagery": "osm", + "language": "de" + }, + "id": 113657566 + } + }, + { + "id": 113657565, + "type": "Feature", + "geometry": null, + "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:32:49Z", + "reviewed_features": [], + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "waste_basket", + "answer": 2, + "create": 2, + "imagery": "osm", + "language": "de" + }, + "id": 113657565 + } + }, + { + "id": 113657564, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.1585287, + 49.7999063 + ], + [ + 9.1585314, + 49.7999063 + ], + [ + 9.1585314, + 49.7999167 + ], + [ + 9.1585287, + 49.7999167 + ], + [ + 9.1585287, + 49.7999063 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "benches", + "answer": 1, + "create": 2, + "imagery": "osm", + "language": "de" + }, + "id": 113657564 + } + }, + { + "id": 113657450, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.1557597, + 49.7999067 + ], + [ + 9.1584233, + 49.7999067 + ], + [ + 9.1584233, + 49.8009873 + ], + [ + 9.1557597, + 49.8009873 + ], + [ + 9.1557597, + 49.7999067 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "cycle_infra", + "answer": 5, + "imagery": "CartoDB.Voyager", + "language": "de" + }, + "id": 113657450 + } + }, + { + "id": 113657347, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.1613719, + 49.8009139 + ], + [ + 9.1641238, + 49.8009139 + ], + [ + 9.1641238, + 49.8016445 + ], + [ + 9.1613719, + 49.8016445 + ], + [ + 9.1613719, + 49.8009139 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "street_lighting", + "create": 2, + "imagery": "osm", + "language": "en" + }, + "id": 113657347 + } + }, + { + "id": 113657213, + "type": "Feature", + "geometry": null, + "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:23:16Z", + "reviewed_features": [], + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "benches", + "create": 1, + "imagery": "osm", + "language": "de" + }, + "id": 113657213 + } + }, + { + "id": 113657212, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.1606718, + 49.8018436 + ], + [ + 9.1606718, + 49.8018436 + ], + [ + 9.1606718, + 49.8018436 + ], + [ + 9.1606718, + 49.8018436 + ], + [ + 9.1606718, + 49.8018436 + ] + ] + ] + }, + "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": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "waste_basket", + "answer": 1, + "create": 2, + "imagery": "osm", + "language": "de" + }, + "id": 113657212 + } + }, + { + "id": 113657009, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.1603956, + 49.8024062 + ], + [ + 9.1614953, + 49.8024062 + ], + [ + 9.1614953, + 49.802581 + ], + [ + 9.1603956, + 49.802581 + ], + [ + 9.1603956, + 49.8024062 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "answer": 4, + "create": 8, + "imagery": "osm", + "language": "de" + }, + "id": 113657009 + } + }, + { + "id": 113656795, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.1637403, + 49.802453 + ], + [ + 9.1637403, + 49.802453 + ], + [ + 9.1637403, + 49.802453 + ], + [ + 9.1637403, + 49.802453 + ], + [ + 9.1637403, + 49.802453 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "parkings", + "create": 1, + "imagery": "osm", + "language": "de" + }, + "id": 113656795 + } + }, + { + "id": 113656695, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.162371, + 49.8030623 + ], + [ + 9.162371, + 49.8030623 + ], + [ + 9.162371, + 49.8030623 + ], + [ + 9.162371, + 49.8030623 + ], + [ + 9.162371, + 49.8030623 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "postboxes", + "answer": 1, + "create": 1, + "imagery": "CartoDB.Voyager", + "language": "de" + }, + "id": 113656695 + } + }, + { + "id": 113649599, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -73.2484543, + -39.8131879 + ], + [ + -73.2484543, + -39.8131879 + ], + [ + -73.2484543, + -39.8131879 + ], + [ + -73.2484543, + -39.8131879 + ], + [ + -73.2484543, + -39.8131879 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "osm", + "language": "en", + "add-image": 1 + }, + "id": 113649599 + } + }, + { + "id": 113648617, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 12.7573156, + 53.1583887 + ], + [ + 12.7606721, + 53.1583887 + ], + [ + 12.7606721, + 53.1603466 + ], + [ + 12.7573156, + 53.1603466 + ], + [ + 12.7573156, + 53.1583887 + ] + ] + ] + }, + "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, + "metadata": { + "host": "www.waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "id": 113648617 + } + }, + { + "id": 113621156, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.9317936, + 50.2634229 + ], + [ + 8.9599762, + 50.2634229 + ], + [ + 8.9599762, + 50.2984981 + ], + [ + 8.9317936, + 50.2984981 + ], + [ + 8.9317936, + 50.2634229 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "benches", + "answer": 62, + "create": 10, + "imagery": "osm", + "language": "de", + "move:node/9241346070": "improve_accuracy" + }, + "id": 113621156 + } + }, + { + "id": 113617351, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.5497558, + 50.1005473 + ], + [ + 8.5497558, + 50.1005473 + ], + [ + 8.5497558, + 50.1005473 + ], + [ + 8.5497558, + 50.1005473 + ], + [ + 8.5497558, + 50.1005473 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "shops", + "answer": 1, + "create": 1, + "imagery": "osm", + "language": "de", + "change_within_25m": 1 + }, + "id": 113617351 + } + }, + { + "id": 113616982, + "type": "Feature", + "geometry": null, + "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:50:16Z", + "reviewed_features": [], + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "shops", + "answer": 1, + "imagery": "osm", + "language": "de", + "change_within_25m": 1 + }, + "id": 113616982 + } + }, + { + "id": 113616486, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.5468376, + 50.1026135 + ], + [ + 8.54702, + 50.1026135 + ], + [ + 8.54702, + 50.1026342 + ], + [ + 8.5468376, + 50.1026342 + ], + [ + 8.5468376, + 50.1026135 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "trees", + "create": 2, + "imagery": "osm", + "language": "de" + }, + "id": 113616486 + } + }, + { + "id": 113616350, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.547079, + 50.1025774 + ], + [ + 8.5473579, + 50.1025774 + ], + [ + 8.5473579, + 50.1027924 + ], + [ + 8.547079, + 50.1027924 + ], + [ + 8.547079, + 50.1025774 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "benches", + "answer": 3, + "create": 4, + "imagery": "osm", + "language": "de", + "change_within_25m": 3 + }, + "id": 113616350 + } + }, + { + "id": 113616285, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.1895475, + 51.1964409 + ], + [ + 3.290868, + 51.1964409 + ], + [ + 3.290868, + 51.2122487 + ], + [ + 3.1895475, + 51.2122487 + ], + [ + 3.1895475, + 51.1964409 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "aed_brugge", + "answer": 6, + "create": 1, + "imagery": "HDM_HOT", + "language": "nl", + "add-image": 3, + "change_within_25m": 8, + "change_within_5000m": 1 + }, + "id": 113616285 + } + }, + { + "id": 113615451, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.5418648, + 50.1063398 + ], + [ + 8.5430771, + 50.1063398 + ], + [ + 8.5430771, + 50.1075818 + ], + [ + 8.5418648, + 50.1075818 + ], + [ + 8.5418648, + 50.1063398 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "food", + "answer": 4, + "create": 4, + "imagery": "osm", + "language": "de", + "add-image": 1, + "change_within_25m": 5 + }, + "id": 113615451 + } + }, + { + "id": 113615348, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.5412881, + 50.1018256 + ], + [ + 8.5483021, + 50.1018256 + ], + [ + 8.5483021, + 50.1080101 + ], + [ + 8.5412881, + 50.1080101 + ], + [ + 8.5412881, + 50.1018256 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "waste_basket", + "answer": 4, + "create": 4, + "imagery": "osm", + "language": "de", + "change_within_25m": 5, + "move:node/9241010777": "improve_accuracy" + }, + "id": 113615348 + } + }, + { + "id": 113614934, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.5389358, + 50.1006832 + ], + [ + 8.5498255, + 50.1006832 + ], + [ + 8.5498255, + 50.1104889 + ], + [ + 8.5389358, + 50.1104889 + ], + [ + 8.5389358, + 50.1006832 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "cafes_and_pubs", + "answer": 4, + "create": 5, + "imagery": "osm", + "language": "de", + "add-image": 2, + "change_within_25m": 6 + }, + "id": 113614934 + } + }, + { + "id": 113614812, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.6937454, + 50.1296435 + ], + [ + 8.6937454, + 50.1296435 + ], + [ + 8.6937454, + 50.1296435 + ], + [ + 8.6937454, + 50.1296435 + ], + [ + 8.6937454, + 50.1296435 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "cycle_infra", + "answer": 2, + "imagery": "CartoDB.Voyager", + "language": "de" + }, + "id": 113614812 + } + }, + { + "id": 113614651, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.5340783, + 50.1146463 + ], + [ + 8.5340783, + 50.1146463 + ], + [ + 8.5340783, + 50.1146463 + ], + [ + 8.5340783, + 50.1146463 + ], + [ + 8.5340783, + 50.1146463 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "answer": 3, + "create": 1, + "imagery": "osm", + "language": "de", + "change_within_500m": 3 + }, + "id": 113614651 + } + }, + { + "id": 113614079, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.5350841, + 50.1016157 + ], + [ + 8.5485891, + 50.1016157 + ], + [ + 8.5485891, + 50.1139892 + ], + [ + 8.5350841, + 50.1139892 + ], + [ + 8.5350841, + 50.1016157 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "move": 3, + "theme": "waste_basket", + "answer": 10, + "create": 10, + "imagery": "osm", + "language": "de", + "move:node/-1": "improve_accuracy", + "change_within_25m": 13, + "move:node/9240998351": "improve_accuracy", + "move:node/9241137476": "improve_accuracy" + }, + "id": 113614079 + } + }, + { + "id": 113613656, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.9749181, + 50.0442803 + ], + [ + 8.9749181, + 50.0442803 + ], + [ + 8.9749181, + 50.0442803 + ], + [ + 8.9749181, + 50.0442803 + ], + [ + 8.9749181, + 50.0442803 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "artwork", + "answer": 1, + "create": 1, + "imagery": "osm", + "language": "en", + "change_within_25m": 1 + }, + "id": 113613656 + } + }, + { + "id": 113613643, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.9749449, + 50.0443302 + ], + [ + 8.9749449, + 50.0443302 + ], + [ + 8.9749449, + 50.0443302 + ], + [ + 8.9749449, + 50.0443302 + ], + [ + 8.9749449, + 50.0443302 + ] + ] + ] + }, + "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": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "waste_basket", + "answer": 1, + "create": 2, + "imagery": "osm", + "language": "en", + "change_within_25m": 1 + }, + "id": 113613643 + } + }, + { + "id": 113613642, + "type": "Feature", + "geometry": null, + "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:05Z", + "reviewed_features": [], + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "artwork", + "answer": 1, + "create": 1, + "imagery": "osm", + "language": "en", + "change_within_100m": 1 + }, + "id": 113613642 + } + }, + { + "id": 113613487, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.9753392, + 50.0429848 + ], + [ + 8.9757305, + 50.0429848 + ], + [ + 8.9757305, + 50.0437136 + ], + [ + 8.9753392, + 50.0437136 + ], + [ + 8.9753392, + 50.0429848 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "waste_basket", + "answer": 2, + "create": 2, + "imagery": "osm", + "language": "en", + "add-image": 1, + "change_within_25m": 3 + }, + "id": 113613487 + } + }, + { + "id": 113613486, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.9755726, + 50.0434363 + ], + [ + 8.9756235, + 50.0434363 + ], + [ + 8.9756235, + 50.0435241 + ], + [ + 8.9755726, + 50.0435241 + ], + [ + 8.9755726, + 50.0434363 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "waste_basket", + "answer": 2, + "create": 2, + "imagery": "osm", + "language": "en", + "change_within_25m": 2 + }, + "id": 113613486 + } + }, + { + "id": 113613375, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.9752365, + 50.0429953 + ], + [ + 8.975873, + 50.0429953 + ], + [ + 8.975873, + 50.0437471 + ], + [ + 8.9752365, + 50.0437471 + ], + [ + 8.9752365, + 50.0429953 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "shops", + "answer": 2, + "create": 2, + "imagery": "osm", + "language": "en", + "change_within_25m": 2 + }, + "id": 113613375 + } + }, + { + "id": 113613114, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.9757305, + 50.0421064 + ], + [ + 8.9765791, + 50.0421064 + ], + [ + 8.9765791, + 50.0429848 + ], + [ + 8.9757305, + 50.0429848 + ], + [ + 8.9757305, + 50.0421064 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "parkings", + "create": 2, + "imagery": "osm", + "language": "en", + "move:node/-1": "improve_accuracy", + "change_within_25m": 1 + }, + "id": 113613114 + } + }, + { + "id": 113612599, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.9758193, + 50.0414312 + ], + [ + 8.978633, + 50.0414312 + ], + [ + 8.978633, + 50.0430039 + ], + [ + 8.9758193, + 50.0430039 + ], + [ + 8.9758193, + 50.0414312 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "shops", + "answer": 7, + "create": 5, + "imagery": "osm", + "language": "en", + "change_within_25m": 6, + "change_within_50m": 1 + }, + "id": 113612599 + } + }, + { + "id": 113612509, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.975578, + 50.0408625 + ], + [ + 8.9790626, + 50.0408625 + ], + [ + 8.9790626, + 50.0433761 + ], + [ + 8.975578, + 50.0433761 + ], + [ + 8.975578, + 50.0408625 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "split": 3, + "theme": "cyclestreets", + "answer": 2, + "imagery": "osm", + "language": "en", + "change_within_25m": 4, + "change_within_100m": 1 + }, + "id": 113612509 + } + }, + { + "id": 113612102, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.9763264, + 50.0414157 + ], + [ + 8.9801055, + 50.0414157 + ], + [ + 8.9801055, + 50.0421839 + ], + [ + 8.9763264, + 50.0421839 + ], + [ + 8.9763264, + 50.0414157 + ] + ] + ] + }, + "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": 7, + "modify": 4, + "delete": 0, + "area": 0.00000290310461998559, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "split": 2, + "theme": "street_lighting", + "answer": 18, + "create": 6, + "imagery": "osm", + "language": "en", + "relation-fix": 1, + "change_within_25m": 20 + }, + "id": 113612102 + } + }, + { + "id": 113611794, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.9751381, + 50.0410677 + ], + [ + 8.981334, + 50.0410677 + ], + [ + 8.981334, + 50.043984 + ], + [ + 8.9751381, + 50.043984 + ], + [ + 8.9751381, + 50.0410677 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "benches", + "answer": 9, + "create": 2, + "imagery": "osm", + "language": "en", + "change_within_25m": 9 + }, + "id": 113611794 + } + }, + { + "id": 113611786, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.9813273, + 50.0409669 + ], + [ + 8.9813273, + 50.0409669 + ], + [ + 8.9813273, + 50.0409669 + ], + [ + 8.9813273, + 50.0409669 + ], + [ + 8.9813273, + 50.0409669 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "benches", + "create": 1, + "imagery": "osm", + "language": "de" + }, + "id": 113611786 + } + }, + { + "id": 113611335, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.1704841, + 48.7253806 + ], + [ + 8.1704841, + 48.7253806 + ], + [ + 8.1704841, + 48.7253806 + ], + [ + 8.1704841, + 48.7253806 + ], + [ + 8.1704841, + 48.7253806 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "test", + "answer": 1, + "imagery": "osm", + "language": "de", + "add-image": 1 + }, + "id": 113611335 + } + }, + { + "id": 113607510, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.6381339, + 50.1232861 + ], + [ + 8.6381339, + 50.1232861 + ], + [ + 8.6381339, + 50.1232861 + ], + [ + 8.6381339, + 50.1232861 + ], + [ + 8.6381339, + 50.1232861 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "answer": 6, + "imagery": "osm", + "language": "de", + "change_within_25m": 6 + }, + "id": 113607510 + } + }, + { + "id": 113607198, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.644698, + 50.1229582 + ], + [ + 8.644698, + 50.1229582 + ], + [ + 8.644698, + 50.1229582 + ], + [ + 8.644698, + 50.1229582 + ], + [ + 8.644698, + 50.1229582 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "cafes_and_pubs", + "answer": 5, + "create": 1, + "imagery": "osm", + "language": "de", + "change_within_25m": 5 + }, + "id": 113607198 + } + }, + { + "id": 113607073, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -58.5969843, + -34.6450966 + ], + [ + -58.4826, + -34.6450966 + ], + [ + -58.4826, + -34.6329199 + ], + [ + -58.5969843, + -34.6329199 + ], + [ + -58.5969843, + -34.6450966 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/railway", + "answer": 4, + "imagery": "osm", + "language": "es", + "change_within_25m": 1, + "change_within_500m": 3 + }, + "id": 113607073 + } + }, + { + "id": 113606918, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.6430378, + 50.1235416 + ], + [ + 8.6430378, + 50.1235416 + ], + [ + 8.6430378, + 50.1235416 + ], + [ + 8.6430378, + 50.1235416 + ], + [ + 8.6430378, + 50.1235416 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "bicyclelib", + "answer": 5, + "create": 1, + "imagery": "osm", + "language": "de", + "change_within_25m": 5 + }, + "id": 113606918 + } + }, + { + "id": 113606449, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -58.7243481, + -34.6650174 + ], + [ + -58.4244061, + -34.6650174 + ], + [ + -58.4244061, + -34.6110649 + ], + [ + -58.7243481, + -34.6110649 + ], + [ + -58.7243481, + -34.6650174 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", + "answer": 15, + "create": 6, + "imagery": "EsriWorldImageryClarity", + "language": "es", + "change_within_25m": 12, + "change_within_1000m": 3 + }, + "id": 113606449 + } + }, + { + "id": 113606018, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.6429062, + 50.1239728 + ], + [ + 8.6429062, + 50.1239728 + ], + [ + 8.6429062, + 50.1239728 + ], + [ + 8.6429062, + 50.1239728 + ], + [ + 8.6429062, + 50.1239728 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "shops", + "answer": 5, + "create": 1, + "imagery": "osm", + "language": "de", + "change_within_25m": 5 + }, + "id": 113606018 + } + }, + { + "id": 113605823, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.6428607, + 50.1240037 + ], + [ + 8.6428607, + 50.1240037 + ], + [ + 8.6428607, + 50.1240037 + ], + [ + 8.6428607, + 50.1240037 + ], + [ + 8.6428607, + 50.1240037 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "parkings", + "create": 1, + "imagery": "osm", + "language": "de" + }, + "id": 113605823 + } + }, + { + "id": 113605661, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.6422106, + 50.1236032 + ], + [ + 8.6423457, + 50.1236032 + ], + [ + 8.6423457, + 50.1237441 + ], + [ + 8.6422106, + 50.1237441 + ], + [ + 8.6422106, + 50.1236032 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "benches", + "answer": 5, + "create": 1, + "imagery": "osm", + "language": "de", + "change_within_25m": 6, + "move:node/9240371801": "improve_accuracy" + }, + "id": 113605661 + } + }, + { + "id": 113605548, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.6413559, + 50.1237561 + ], + [ + 8.6413559, + 50.1237561 + ], + [ + 8.6413559, + 50.1237561 + ], + [ + 8.6413559, + 50.1237561 + ], + [ + 8.6413559, + 50.1237561 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "parkings", + "create": 1, + "imagery": "osm", + "language": "de" + }, + "id": 113605548 + } + }, + { + "id": 113605291, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.2578433, + 51.2068582 + ], + [ + 3.2578433, + 51.2068582 + ], + [ + 3.2578433, + 51.2068582 + ], + [ + 3.2578433, + 51.2068582 + ], + [ + 3.2578433, + 51.2068582 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "aed", + "answer": 2, + "imagery": "osm", + "language": "nl" + }, + "id": 113605291 + } + }, + { + "id": 113605210, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.6404319, + 50.1237762 + ], + [ + 8.6404319, + 50.1237762 + ], + [ + 8.6404319, + 50.1237762 + ], + [ + 8.6404319, + 50.1237762 + ], + [ + 8.6404319, + 50.1237762 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "test", + "answer": 9, + "imagery": "osm", + "language": "de", + "change_within_25m": 9 + }, + "id": 113605210 + } + }, + { + "id": 113605176, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.6406317, + 50.1236633 + ], + [ + 8.6406317, + 50.1236633 + ], + [ + 8.6406317, + 50.1236633 + ], + [ + 8.6406317, + 50.1236633 + ], + [ + 8.6406317, + 50.1236633 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "food", + "answer": 8, + "create": 1, + "imagery": "osm", + "language": "de" + }, + "id": 113605176 + } + }, + { + "id": 113604837, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.6392477, + 50.1246641 + ], + [ + 8.6392477, + 50.1246641 + ], + [ + 8.6392477, + 50.1246641 + ], + [ + 8.6392477, + 50.1246641 + ], + [ + 8.6392477, + 50.1246641 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "cafes_and_pubs", + "answer": 5, + "create": 1, + "imagery": "osm", + "language": "de" + }, + "id": 113604837 + } + }, + { + "id": 113604805, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.6388749, + 50.1249341 + ], + [ + 8.6388749, + 50.1249341 + ], + [ + 8.6388749, + 50.1249341 + ], + [ + 8.6388749, + 50.1249341 + ], + [ + 8.6388749, + 50.1249341 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "create": 1, + "imagery": "CartoDB.Voyager", + "deletion": 1, + "language": "de", + "change_within_25m": 1, + "deletion:node/9240394592": "testing point" + }, + "id": 113604805 + } + }, + { + "id": 113604564, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.6351493, + 50.1237286 + ], + [ + 8.6351493, + 50.1237286 + ], + [ + 8.6351493, + 50.1237286 + ], + [ + 8.6351493, + 50.1237286 + ], + [ + 8.6351493, + 50.1237286 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "postboxes", + "create": 1, + "imagery": "CartoDB.Voyager", + "language": "de" + }, + "id": 113604564 + } + }, + { + "id": 113604148, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.6379924, + 50.1219195 + ], + [ + 8.6380716, + 50.1219195 + ], + [ + 8.6380716, + 50.1219333 + ], + [ + 8.6379924, + 50.1219333 + ], + [ + 8.6379924, + 50.1219195 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "trees", + "answer": 1, + "create": 1, + "imagery": "osm", + "language": "de", + "move:node/9240321658": "improve_accuracy" + }, + "id": 113604148 + } + }, + { + "id": 113603891, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.6367827, + 50.1210349 + ], + [ + 8.643044, + 50.1210349 + ], + [ + 8.643044, + 50.1246934 + ], + [ + 8.6367827, + 50.1246934 + ], + [ + 8.6367827, + 50.1210349 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "answer": 16, + "imagery": "osm", + "language": "de", + "add-image": 2 + }, + "id": 113603891 + } + }, + { + "id": 113603838, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.6376545, + 50.1215962 + ], + [ + 8.6376545, + 50.1215962 + ], + [ + 8.6376545, + 50.1215962 + ], + [ + 8.6376545, + 50.1215962 + ], + [ + 8.6376545, + 50.1215962 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "trees", + "answer": 1, + "create": 1, + "imagery": "osm", + "language": "de", + "change_within_25m": 1 + }, + "id": 113603838 + } + }, + { + "id": 113603802, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.6375512, + 50.1214672 + ], + [ + 8.6375512, + 50.1214672 + ], + [ + 8.6375512, + 50.1214672 + ], + [ + 8.6375512, + 50.1214672 + ], + [ + 8.6375512, + 50.1214672 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "waste_basket", + "answer": 1, + "create": 1, + "imagery": "osm", + "language": "de" + }, + "id": 113603802 + } + }, + { + "id": 113603783, + "type": "Feature", + "geometry": null, + "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:17:55Z", + "reviewed_features": [], + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "trees", + "create": 1, + "imagery": "osm", + "language": "de" + }, + "id": 113603783 + } + }, + { + "id": 113603188, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.1704841, + 48.7253806 + ], + [ + 8.1704841, + 48.7253806 + ], + [ + 8.1704841, + 48.7253806 + ], + [ + 8.1704841, + 48.7253806 + ], + [ + 8.1704841, + 48.7253806 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "aed", + "answer": 5, + "create": 1, + "imagery": "osm", + "language": "de", + "change_within_25m": 5 + }, + "id": 113603188 + } + }, + { + "id": 113602685, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.6838555, + 50.1261567 + ], + [ + 8.6847219, + 50.1261567 + ], + [ + 8.6847219, + 50.1262753 + ], + [ + 8.6838555, + 50.1262753 + ], + [ + 8.6838555, + 50.1261567 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "postboxes", + "answer": 3, + "imagery": "CartoDB.Voyager", + "language": "de" + }, + "id": 113602685 + } + }, + { + "id": 113602684, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.6838555, + 50.1261567 + ], + [ + 8.6838555, + 50.1261567 + ], + [ + 8.6838555, + 50.1261567 + ], + [ + 8.6838555, + 50.1261567 + ], + [ + 8.6838555, + 50.1261567 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "postboxes", + "create": 1, + "imagery": "CartoDB.Voyager", + "language": "de" + }, + "id": 113602684 + } + }, + { + "id": 113602296, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.6847219, + 50.1262753 + ], + [ + 8.685438, + 50.1262753 + ], + [ + 8.685438, + 50.1266743 + ], + [ + 8.6847219, + 50.1266743 + ], + [ + 8.6847219, + 50.1262753 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "shops", + "answer": 7, + "create": 3, + "imagery": "osm", + "language": "de", + "add-image": 1 + }, + "id": 113602296 + } + }, + { + "id": 113602222, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.6395025, + 50.1252144 + ], + [ + 8.6409364, + 50.1252144 + ], + [ + 8.6409364, + 50.1261446 + ], + [ + 8.6395025, + 50.1261446 + ], + [ + 8.6395025, + 50.1252144 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "test", + "answer": 3, + "create": 1, + "imagery": "osm", + "language": "de", + "add-image": 1 + }, + "id": 113602222 + } + }, + { + "id": 113602123, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.6862373, + 50.12659 + ], + [ + 8.6862373, + 50.12659 + ], + [ + 8.6862373, + 50.12659 + ], + [ + 8.6862373, + 50.12659 + ], + [ + 8.6862373, + 50.12659 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "answer": 5, + "create": 1, + "imagery": "osm", + "language": "de", + "add-image": 1 + }, + "id": 113602123 + } + }, + { + "id": 113601902, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.6867228, + 50.1266571 + ], + [ + 8.686924, + 50.1266571 + ], + [ + 8.686924, + 50.1268136 + ], + [ + 8.6867228, + 50.1268136 + ], + [ + 8.6867228, + 50.1266571 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "waste_basket", + "answer": 2, + "create": 2, + "imagery": "osm", + "language": "de" + }, + "id": 113601902 + } + }, + { + "id": 113601645, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.6855105, + 50.1265058 + ], + [ + 8.6878842, + 50.1265058 + ], + [ + 8.6878842, + 50.1269081 + ], + [ + 8.6855105, + 50.1269081 + ], + [ + 8.6855105, + 50.1265058 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "benches", + "answer": 11, + "create": 2, + "imagery": "osm", + "language": "de", + "add-image": 1, + "move:node/9240267570": "improve_accuracy" + }, + "id": 113601645 + } + }, + { + "id": 113601430, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.6407429, + 50.1272733 + ], + [ + 8.6407429, + 50.1272733 + ], + [ + 8.6407429, + 50.1272733 + ], + [ + 8.6407429, + 50.1272733 + ], + [ + 8.6407429, + 50.1272733 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 2, + "imagery": "CartoDB.Voyager", + "language": "de" + }, + "id": 113601430 + } + }, + { + "id": 113601332, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.6880489, + 50.1268278 + ], + [ + 8.6902519, + 50.1268278 + ], + [ + 8.6902519, + 50.1272378 + ], + [ + 8.6880489, + 50.1272378 + ], + [ + 8.6880489, + 50.1268278 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "parkings", + "imagery": "osm", + "language": "de", + "add-image": 3 + }, + "id": 113601332 + } + }, + { + "id": 113601079, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.6897011, + 50.1273803 + ], + [ + 8.6897011, + 50.1273803 + ], + [ + 8.6897011, + 50.1273803 + ], + [ + 8.6897011, + 50.1273803 + ], + [ + 8.6897011, + 50.1273803 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "answer": 4, + "imagery": "osm", + "language": "de" + }, + "id": 113601079 + } + }, + { + "id": 113599699, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.6976991, + 50.1101676 + ], + [ + 8.7011651, + 50.1101676 + ], + [ + 8.7011651, + 50.1155784 + ], + [ + 8.6976991, + 50.1155784 + ], + [ + 8.6976991, + 50.1101676 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "answer": 9, + "imagery": "CartoDB.Voyager", + "language": "de" + }, + "id": 113599699 + } + }, + { + "id": 113598666, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 6.5578254, + 53.0147615 + ], + [ + 6.5611218, + 53.0147615 + ], + [ + 6.5611218, + 53.0181677 + ], + [ + 6.5578254, + 53.0181677 + ], + [ + 6.5578254, + 53.0147615 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "street_lighting_assen", + "answer": 6, + "create": 4, + "imagery": "Actueel_ortho25_WMS", + "language": "en", + "change_within_500m": 6 + }, + "id": 113598666 + } + }, + { + "id": 113598512, + "type": "Feature", + "geometry": null, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "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-10T08:57:48Z", + "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": "shops", + "imagery": "osm", + "language": "en", + "add-image": 3 + }, + "id": 113598512 + } + }, + { + "id": 113598511, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.3871451, + 50.8668183 + ], + [ + 4.3871451, + 50.8668183 + ], + [ + 4.3871451, + 50.8668183 + ], + [ + 4.3871451, + 50.8668183 + ], + [ + 4.3871451, + 50.8668183 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "test", + "answer": 1, + "imagery": "osm", + "language": "en" + }, + "id": 113598511 + } + }, + { + "id": 113598373, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.6865352, + 50.1146383 + ], + [ + 8.6866772, + 50.1146383 + ], + [ + 8.6866772, + 50.1147499 + ], + [ + 8.6865352, + 50.1147499 + ], + [ + 8.6865352, + 50.1146383 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "toilets", + "answer": 6, + "imagery": "osm", + "language": "de" + }, + "id": 113598373 + } + }, + { + "id": 113598091, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.6913852, + 50.1254286 + ], + [ + 8.7073213, + 50.1254286 + ], + [ + 8.7073213, + 50.1366191 + ], + [ + 8.6913852, + 50.1366191 + ], + [ + 8.6913852, + 50.1254286 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "toilets", + "answer": 22, + "imagery": "osm", + "language": "de" + }, + "id": 113598091 + } + }, + { + "id": 113594709, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 12.5615195, + 50.6803824 + ], + [ + 12.5624364, + 50.6803824 + ], + [ + 12.5624364, + 50.6836183 + ], + [ + 12.5615195, + 50.6836183 + ], + [ + 12.5615195, + 50.6803824 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "cycle_infra", + "answer": 1, + "imagery": "osmfr-basque", + "language": "de" + }, + "id": 113594709 + } + }, + { + "id": 113588296, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.2285422, + 51.2059455 + ], + [ + 3.2292317, + 51.2059455 + ], + [ + 3.2292317, + 51.2062845 + ], + [ + 3.2285422, + 51.2062845 + ], + [ + 3.2285422, + 51.2059455 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 1, + "imagery": "osm", + "language": "nl", + "change_within_100m": 1 + }, + "id": 113588296 + } + }, + { + "id": 113586229, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -7.87728, + 37.1193653 + ], + [ + -7.6271302, + 37.1193653 + ], + [ + -7.6271302, + 37.1523195 + ], + [ + -7.87728, + 37.1523195 + ], + [ + -7.87728, + 37.1193653 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "answer": 5, + "imagery": "osm", + "language": "pt", + "add-image": 1 + }, + "id": 113586229 + } + }, + { + "id": 113585788, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -75.4623911, + 5.0312873 + ], + [ + -75.4623911, + 5.0312873 + ], + [ + -75.4623911, + 5.0312873 + ], + [ + -75.4623911, + 5.0312873 + ], + [ + -75.4623911, + 5.0312873 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "imagery": "HDM_HOT", + "language": "en", + "add-image": 1 + }, + "id": 113585788 + } + }, + { + "id": 113584728, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.5436714, + 50.1587717 + ], + [ + 8.5467343, + 50.1587717 + ], + [ + 8.5467343, + 50.1628883 + ], + [ + 8.5436714, + 50.1628883 + ], + [ + 8.5436714, + 50.1587717 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "fritures", + "answer": 6, + "imagery": "osm", + "language": "en" + }, + "id": 113584728 + } + }, + { + "id": 113584605, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.5514026, + 50.159433 + ], + [ + 8.5514026, + 50.159433 + ], + [ + 8.5514026, + 50.159433 + ], + [ + 8.5514026, + 50.159433 + ], + [ + 8.5514026, + 50.159433 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 1, + "imagery": "CartoDB.Voyager", + "language": "en" + }, + "id": 113584605 + } + }, + { + "id": 113584481, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.550188, + 50.1588121 + ], + [ + 8.550188, + 50.1588121 + ], + [ + 8.550188, + 50.1588121 + ], + [ + 8.550188, + 50.1588121 + ], + [ + 8.550188, + 50.1588121 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "toilets", + "answer": 4, + "imagery": "osm", + "language": "en" + }, + "id": 113584481 + } + }, + { + "id": 113584409, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.5436044, + 50.1591901 + ], + [ + 8.5513383, + 50.1591901 + ], + [ + 8.5513383, + 50.163221 + ], + [ + 8.5436044, + 50.163221 + ], + [ + 8.5436044, + 50.1591901 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "answer": 8, + "create": 1, + "imagery": "CartoDB.Voyager", + "language": "en" + }, + "id": 113584409 + } + }, + { + "id": 113584246, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.5437074, + 50.1572741 + ], + [ + 8.5462582, + 50.1572741 + ], + [ + 8.5462582, + 50.1631027 + ], + [ + 8.5437074, + 50.1631027 + ], + [ + 8.5437074, + 50.1572741 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "benches", + "answer": 11, + "create": 3, + "imagery": "osm", + "language": "en" + }, + "id": 113584246 + } + }, + { + "id": 113581830, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.19017, + 50.2015224 + ], + [ + 9.1923972, + 50.2015224 + ], + [ + 9.1923972, + 50.2018717 + ], + [ + 9.19017, + 50.2018717 + ], + [ + 9.19017, + 50.2015224 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "street_lighting", + "answer": 3, + "imagery": "osm", + "language": "en" + }, + "id": 113581830 + } + }, + { + "id": 113581380, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.6656541, + 50.1017954 + ], + [ + 9.1979682, + 50.1017954 + ], + [ + 9.1979682, + 50.2000032 + ], + [ + 8.6656541, + 50.2000032 + ], + [ + 8.6656541, + 50.1017954 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "sport_pitches", + "answer": 12, + "imagery": "osm", + "language": "en" + }, + "id": 113581380 + } + }, + { + "id": 113581306, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.1912618, + 50.1995815 + ], + [ + 9.1938219, + 50.1995815 + ], + [ + 9.1938219, + 50.1995967 + ], + [ + 9.1912618, + 50.1995967 + ], + [ + 9.1912618, + 50.1995815 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "benches", + "answer": 6, + "create": 2, + "imagery": "osm", + "language": "en" + }, + "id": 113581306 + } + }, + { + "id": 113581221, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.545416, + 50.1595767 + ], + [ + 8.545416, + 50.1595767 + ], + [ + 8.545416, + 50.1595767 + ], + [ + 8.545416, + 50.1595767 + ], + [ + 8.545416, + 50.1595767 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "benches", + "answer": 5, + "create": 1, + "imagery": "osm", + "language": "en" + }, + "id": 113581221 + } + }, + { + "id": 113581039, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.5464031, + 50.1614016 + ], + [ + 8.5464031, + 50.1614016 + ], + [ + 8.5464031, + 50.1614016 + ], + [ + 8.5464031, + 50.1614016 + ], + [ + 8.5464031, + 50.1614016 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "parkings", + "create": 1, + "imagery": "osm", + "language": "en", + "add-image": 1 + }, + "id": 113581039 + } + }, + { + "id": 113580922, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.191764, + 50.1966291 + ], + [ + 9.1936921, + 50.1966291 + ], + [ + 9.1936921, + 50.200307 + ], + [ + 9.191764, + 50.200307 + ], + [ + 9.191764, + 50.1966291 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 16, + "imagery": "CartoDB.Voyager", + "language": "en" + }, + "id": 113580922 + } + }, + { + "id": 113580637, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.5449777, + 50.160892 + ], + [ + 8.552491, + 50.160892 + ], + [ + 8.552491, + 50.1677104 + ], + [ + 8.5449777, + 50.1677104 + ], + [ + 8.5449777, + 50.160892 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "street_lighting", + "answer": 34, + "create": 3, + "imagery": "osm", + "language": "en" + }, + "id": 113580637 + } + }, + { + "id": 113568845, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.6788216, + 50.1260216 + ], + [ + 8.6788216, + 50.1260216 + ], + [ + 8.6788216, + 50.1260216 + ], + [ + 8.6788216, + 50.1260216 + ], + [ + 8.6788216, + 50.1260216 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "trees", + "answer": 2, + "create": 1, + "imagery": "osm", + "language": "de" + }, + "id": 113568845 + } + }, + { + "id": 113568571, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.6791831, + 50.125971 + ], + [ + 8.6791831, + 50.125971 + ], + [ + 8.6791831, + 50.125971 + ], + [ + 8.6791831, + 50.125971 + ], + [ + 8.6791831, + 50.125971 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "artwork", + "answer": 1, + "create": 1, + "imagery": "osm", + "language": "de" + }, + "id": 113568571 + } + }, + { + "id": 113568433, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.6773196, + 50.1264761 + ], + [ + 8.6786143, + 50.1264761 + ], + [ + 8.6786143, + 50.1272138 + ], + [ + 8.6773196, + 50.1272138 + ], + [ + 8.6773196, + 50.1264761 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "answer": 3, + "imagery": "osm", + "language": "de" + }, + "id": 113568433 + } + }, + { + "id": 113568103, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.6805457, + 50.1275839 + ], + [ + 8.6805457, + 50.1275839 + ], + [ + 8.6805457, + 50.1275839 + ], + [ + 8.6805457, + 50.1275839 + ], + [ + 8.6805457, + 50.1275839 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "street_lighting", + "answer": 3, + "create": 1, + "imagery": "osm", + "language": "en" + }, + "id": 113568103 + } + }, + { + "id": 113567768, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.6814415, + 50.1276836 + ], + [ + 8.6814415, + 50.1276836 + ], + [ + 8.6814415, + 50.1276836 + ], + [ + 8.6814415, + 50.1276836 + ], + [ + 8.6814415, + 50.1276836 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "create": 1, + "imagery": "HDM_HOT", + "language": "de" + }, + "id": 113567768 + } + }, + { + "id": 113567505, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.6816034, + 50.127716 + ], + [ + 8.6816034, + 50.127716 + ], + [ + 8.6816034, + 50.127716 + ], + [ + 8.6816034, + 50.127716 + ], + [ + 8.6816034, + 50.127716 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 1, + "imagery": "CartoDB.Voyager", + "language": "de" + }, + "id": 113567505 + } + }, + { + "id": 113566980, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.677804, + 50.1272677 + ], + [ + 8.6832608, + 50.1272677 + ], + [ + 8.6832608, + 50.128004 + ], + [ + 8.677804, + 50.128004 + ], + [ + 8.677804, + 50.1272677 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "cycle_infra", + "answer": 7, + "imagery": "CartoDB.Voyager", + "language": "de" + }, + "id": 113566980 + } + }, + { + "id": 113566589, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.6830723, + 50.1281668 + ], + [ + 8.6833969, + 50.1281668 + ], + [ + 8.6833969, + 50.1282614 + ], + [ + 8.6830723, + 50.1282614 + ], + [ + 8.6830723, + 50.1281668 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "benches", + "answer": 7, + "create": 2, + "imagery": "osm", + "language": "de" + }, + "id": 113566589 + } + }, + { + "id": 113565479, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -58.7307992, + -34.6640056 + ], + [ + -58.6459731, + -34.6640056 + ], + [ + -58.6459731, + -34.6532638 + ], + [ + -58.7307992, + -34.6532638 + ], + [ + -58.7307992, + -34.6640056 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", + "answer": 2, + "imagery": "osm", + "language": "es" + }, + "id": 113565479 + } + }, + { + "id": 113565126, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.6887671, + 50.1320047 + ], + [ + 8.6895061, + 50.1320047 + ], + [ + 8.6895061, + 50.1350897 + ], + [ + 8.6887671, + 50.1350897 + ], + [ + 8.6887671, + 50.1320047 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "toilets", + "answer": 11, + "imagery": "osm", + "language": "de" + }, + "id": 113565126 + } + }, + { + "id": 113565062, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.2189687, + 51.1964308 + ], + [ + 3.2255441, + 51.1964308 + ], + [ + 3.2255441, + 51.2079706 + ], + [ + 3.2189687, + 51.2079706 + ], + [ + 3.2189687, + 51.1964308 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "aed_brugge", + "answer": 20, + "create": 3, + "imagery": "HDM_HOT", + "language": "nl", + "add-image": 7, + "move:node/9238133163": "improve_accuracy" + }, + "id": 113565062 + } + }, + { + "id": 113564788, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.6922009, + 50.1269567 + ], + [ + 8.6943614, + 50.1269567 + ], + [ + 8.6943614, + 50.1304687 + ], + [ + 8.6922009, + 50.1304687 + ], + [ + 8.6922009, + 50.1269567 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "cafes_and_pubs", + "answer": 7, + "imagery": "osm", + "language": "de" + }, + "id": 113564788 + } + }, + { + "id": 113563735, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.6898982, + 50.127193 + ], + [ + 8.6901807, + 50.127193 + ], + [ + 8.6901807, + 50.1280856 + ], + [ + 8.6898982, + 50.1280856 + ], + [ + 8.6898982, + 50.127193 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "street_lighting", + "answer": 2, + "imagery": "osm", + "language": "en" + }, + "id": 113563735 + } + }, + { + "id": 113561665, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.3922232, + 51.2052979 + ], + [ + 4.3944557, + 51.2052979 + ], + [ + 4.3944557, + 51.2122168 + ], + [ + 4.3922232, + 51.2122168 + ], + [ + 4.3922232, + 51.2052979 + ] + ] + ] + }, + "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, + "metadata": { + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "surveillance", + "answer": 15, + "create": 2, + "imagery": "osm", + "language": "nl" + }, + "id": 113561665 + } + }, + { + "id": 113561089, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.5617588, + 50.5852711 + ], + [ + 5.5617588, + 50.5852711 + ], + [ + 5.5617588, + 50.5852711 + ], + [ + 5.5617588, + 50.5852711 + ], + [ + 5.5617588, + 50.5852711 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "aed", + "answer": 5, + "create": 1, + "imagery": "osm", + "language": "en" + }, + "id": 113561089 + } + }, + { + "id": 113558406, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.1960519, + 51.201325 + ], + [ + 3.2086958, + 51.201325 + ], + [ + 3.2086958, + 51.2031535 + ], + [ + 3.1960519, + 51.2031535 + ], + [ + 3.1960519, + 51.201325 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "move": 3, + "theme": "aed_brugge", + "answer": 12, + "create": 1, + "imagery": "HDM_HOT", + "language": "nl", + "add-image": 8, + "move:node/-1": "improve_accuracy", + "move:node/8768659559": "improve_accuracy", + "move:node/9237576880": "improve_accuracy" + }, + "id": 113558406 + } + }, + { + "id": 113554894, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.2578433, + 51.2068582 + ], + [ + 3.290868, + 51.2068582 + ], + [ + 3.290868, + 51.2122487 + ], + [ + 3.2578433, + 51.2122487 + ], + [ + 3.2578433, + 51.2068582 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "aed_brugge", + "answer": 15, + "create": 2, + "imagery": "HDM_HOT", + "language": "nl", + "add-image": 5 + }, + "id": 113554894 + } + }, + { + "id": 113544129, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.2194673, + 51.1996415 + ], + [ + 3.2400909, + 51.1996415 + ], + [ + 3.2400909, + 51.2146216 + ], + [ + 3.2194673, + 51.2146216 + ], + [ + 3.2194673, + 51.1996415 + ] + ] + ] + }, + "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, + "metadata": { + "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" + }, + "id": 113544129 + } + }, + { + "id": 113541988, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2.2823267, + 41.5993252 + ], + [ + 2.2911677, + 41.5993252 + ], + [ + 2.2911677, + 41.6045054 + ], + [ + 2.2823267, + 41.6045054 + ], + [ + 2.2823267, + 41.5993252 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 8, + "imagery": "CartoDB.Voyager", + "language": "en", + "add-image": 2 + }, + "id": 113541988 + } + }, + { + "id": 113536549, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.226315, + 51.2200811 + ], + [ + 3.2266078, + 51.2200811 + ], + [ + 3.2266078, + 51.2202087 + ], + [ + 3.226315, + 51.2202087 + ], + [ + 3.226315, + 51.2200811 + ] + ] + ] + }, + "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, + "metadata": { + "host": "pietervdvn.github.io", + "path": "mc/post-partner/", + "theme": "postboxes", + "answer": 1, + "imagery": "CartoDB.Voyager", + "language": "en" + }, + "id": 113536549 + } + }, + { + "id": 113531693, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -3.8141441, + 43.3810326 + ], + [ + -3.8141441, + 43.3810326 + ], + [ + -3.8141441, + 43.3810326 + ], + [ + -3.8141441, + 43.3810326 + ], + [ + -3.8141441, + 43.3810326 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "answer": 1, + "create": 1, + "imagery": "osm", + "language": "en", + "add-image": 2 + }, + "id": 113531693 + } + }, + { + "id": 113524257, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 14.6541279, + 52.0111969 + ], + [ + 14.6541279, + 52.0111969 + ], + [ + 14.6541279, + 52.0111969 + ], + [ + 14.6541279, + 52.0111969 + ], + [ + 14.6541279, + 52.0111969 + ] + ] + ] + }, + "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, + "metadata": { + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "id": 113524257 + } + }, + { + "id": 113520538, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 7.4326037, + 46.9454155 + ], + [ + 7.4326184, + 46.9454155 + ], + [ + 7.4326184, + 46.9454869 + ], + [ + 7.4326037, + 46.9454869 + ], + [ + 7.4326037, + 46.9454155 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 7, + "create": 2, + "imagery": "CartoDB.Voyager", + "language": "en" + }, + "id": 113520538 + } + }, + { + "id": 113519157, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.6455965, + 50.0688335 + ], + [ + 8.6455965, + 50.0688335 + ], + [ + 8.6455965, + 50.0688335 + ], + [ + 8.6455965, + 50.0688335 + ], + [ + 8.6455965, + 50.0688335 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "sport_pitches", + "answer": 6, + "create": 1, + "imagery": "osm", + "language": "de" + }, + "id": 113519157 + } + }, + { + "id": 113518984, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.6758072, + 50.09824 + ], + [ + 8.6766922, + 50.09824 + ], + [ + 8.6766922, + 50.0987642 + ], + [ + 8.6758072, + 50.0987642 + ], + [ + 8.6758072, + 50.09824 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "answer": 1, + "imagery": "osm", + "language": "de" + }, + "id": 113518984 + } + }, + { + "id": 113518889, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.7027381, + 50.122315 + ], + [ + 8.7027381, + 50.122315 + ], + [ + 8.7027381, + 50.122315 + ], + [ + 8.7027381, + 50.122315 + ], + [ + 8.7027381, + 50.122315 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "food", + "answer": 5, + "imagery": "osm", + "language": "de" + }, + "id": 113518889 + } + }, + { + "id": 113518734, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.7113511, + 50.0889888 + ], + [ + 8.7113592, + 50.0889888 + ], + [ + 8.7113592, + 50.0890384 + ], + [ + 8.7113511, + 50.0890384 + ], + [ + 8.7113511, + 50.0889888 + ] + ] + ] + }, + "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", + "metadata": { + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "observation_towers", + "answer": 1, + "imagery": "osm", + "language": "de", + "move:node/9235173348": "improve_accuracy" + }, + "id": 113518734 + } + }, + { + "id": 113518718, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.6910141, + 50.1280909 + ], + [ + 8.6927086, + 50.1280909 + ], + [ + 8.6927086, + 50.1284644 + ], + [ + 8.6910141, + 50.1284644 + ], + [ + 8.6910141, + 50.1280909 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "food", + "answer": 14, + "imagery": "osm", + "language": "de" + }, + "id": 113518718 + } + }, + { + "id": 113518617, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.6541474, + 50.0905519 + ], + [ + 8.6655092, + 50.0905519 + ], + [ + 8.6655092, + 50.09229 + ], + [ + 8.6541474, + 50.09229 + ], + [ + 8.6541474, + 50.0905519 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "sport_pitches", + "answer": 10, + "create": 3, + "imagery": "osm", + "language": "de" + }, + "id": 113518617 + } + }, + { + "id": 113518508, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.6641896, + 50.1069909 + ], + [ + 8.6641896, + 50.1069909 + ], + [ + 8.6641896, + 50.1069909 + ], + [ + 8.6641896, + 50.1069909 + ], + [ + 8.6641896, + 50.1069909 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "answer": 5, + "imagery": "CartoDB.Voyager", + "language": "de" + }, + "id": 113518508 + } + }, + { + "id": 113518425, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.711375, + 50.0890135 + ], + [ + 8.711375, + 50.0890135 + ], + [ + 8.711375, + 50.0890135 + ], + [ + 8.711375, + 50.0890135 + ], + [ + 8.711375, + 50.0890135 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "binoculars", + "answer": 1, + "create": 1, + "imagery": "osm", + "language": "de" + }, + "id": 113518425 + } + }, + { + "id": 113518262, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.6702977, + 50.0975883 + ], + [ + 8.6919746, + 50.0975883 + ], + [ + 8.6919746, + 50.1304932 + ], + [ + 8.6702977, + 50.1304932 + ], + [ + 8.6702977, + 50.0975883 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "waste_basket", + "answer": 1, + "imagery": "osm", + "language": "de", + "move:node/9235095153": "improve_accuracy" + }, + "id": 113518262 + } + }, + { + "id": 113518197, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.7093633, + 50.0884215 + ], + [ + 8.71097, + 50.0884215 + ], + [ + 8.71097, + 50.0896846 + ], + [ + 8.7093633, + 50.0896846 + ], + [ + 8.7093633, + 50.0884215 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "parkings", + "create": 3, + "imagery": "osm", + "language": "de", + "move:node/9235138165": "improve_accuracy" + }, + "id": 113518197 + } + }, + { + "id": 113518084, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.6722684, + 50.0889888 + ], + [ + 8.7113592, + 50.0889888 + ], + [ + 8.7113592, + 50.1123982 + ], + [ + 8.6722684, + 50.1123982 + ], + [ + 8.6722684, + 50.0889888 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "observation_towers", + "answer": 8, + "create": 2, + "imagery": "osm", + "language": "de" + }, + "id": 113518084 + } + }, + { + "id": 113518040, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.665123, + 50.0951668 + ], + [ + 8.69446, + 50.0951668 + ], + [ + 8.69446, + 50.1296125 + ], + [ + 8.665123, + 50.1296125 + ], + [ + 8.665123, + 50.0951668 + ] + ] + ] + }, + "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, + "metadata": { + "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" + }, + "id": 113518040 + } + }, + { + "id": 113517912, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.6773708, + 50.1120637 + ], + [ + 8.6773708, + 50.1120637 + ], + [ + 8.6773708, + 50.1120637 + ], + [ + 8.6773708, + 50.1120637 + ], + [ + 8.6773708, + 50.1120637 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "answer": 7, + "imagery": "CartoDB.Voyager", + "language": "de" + }, + "id": 113517912 + } + }, + { + "id": 113517804, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.6634813, + 50.1017892 + ], + [ + 8.7051516, + 50.1017892 + ], + [ + 8.7051516, + 50.1304263 + ], + [ + 8.6634813, + 50.1304263 + ], + [ + 8.6634813, + 50.1017892 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "toilets", + "answer": 15, + "imagery": "osm", + "language": "de" + }, + "id": 113517804 + } + }, + { + "id": 113517769, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.6920363, + 50.130672 + ], + [ + 8.6921167, + 50.130672 + ], + [ + 8.6921167, + 50.1306772 + ], + [ + 8.6920363, + 50.1306772 + ], + [ + 8.6920363, + 50.130672 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "trees", + "answer": 2, + "create": 1, + "imagery": "osm", + "language": "de", + "move:node/9235112785": "improve_accuracy" + }, + "id": 113517769 + } + }, + { + "id": 113517620, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.6866933, + 50.1351904 + ], + [ + 8.6866933, + 50.1351904 + ], + [ + 8.6866933, + 50.1351904 + ], + [ + 8.6866933, + 50.1351904 + ], + [ + 8.6866933, + 50.1351904 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "benches", + "create": 1, + "imagery": "osm", + "language": "de" + }, + "id": 113517620 + } + }, + { + "id": 113517349, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.6919947, + 50.1286955 + ], + [ + 8.6936456, + 50.1286955 + ], + [ + 8.6936456, + 50.1300083 + ], + [ + 8.6919947, + 50.1300083 + ], + [ + 8.6919947, + 50.1286955 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "cafes_and_pubs", + "answer": 4, + "imagery": "osm", + "language": "de" + }, + "id": 113517349 + } + }, + { + "id": 113517323, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.6980666, + 50.1287091 + ], + [ + 8.6980666, + 50.1287091 + ], + [ + 8.6980666, + 50.1287091 + ], + [ + 8.6980666, + 50.1287091 + ], + [ + 8.6980666, + 50.1287091 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "cafes_and_pubs", + "answer": 1, + "imagery": "osm", + "language": "de" + }, + "id": 113517323 + } + }, + { + "id": 113517015, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.6712277, + 50.0973694 + ], + [ + 8.6905262, + 50.0973694 + ], + [ + 8.6905262, + 50.1289062 + ], + [ + 8.6712277, + 50.1289062 + ], + [ + 8.6712277, + 50.0973694 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "benches", + "answer": 27, + "create": 7, + "imagery": "osm", + "language": "de" + }, + "id": 113517015 + } + }, + { + "id": 113516933, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.6972467, + 50.1261847 + ], + [ + 8.6972467, + 50.1261847 + ], + [ + 8.6972467, + 50.1261847 + ], + [ + 8.6972467, + 50.1261847 + ], + [ + 8.6972467, + 50.1261847 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 2, + "imagery": "CartoDB.Voyager", + "language": "de" + }, + "id": 113516933 + } + }, + { + "id": 113516869, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.6919746, + 50.1304932 + ], + [ + 8.6919746, + 50.1304932 + ], + [ + 8.6919746, + 50.1304932 + ], + [ + 8.6919746, + 50.1304932 + ], + [ + 8.6919746, + 50.1304932 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "waste_basket", + "answer": 1, + "create": 1, + "imagery": "osm", + "language": "de" + }, + "id": 113516869 + } + }, + { + "id": 113516857, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 7.4303868, + 46.9522689 + ], + [ + 7.4303868, + 46.9522689 + ], + [ + 7.4303868, + 46.9522689 + ], + [ + 7.4303868, + 46.9522689 + ], + [ + 7.4303868, + 46.9522689 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "create": 1, + "imagery": "CartoDB.Voyager", + "deletion": 1, + "language": "en", + "deletion:node/9235082800": "testing point" + }, + "id": 113516857 + } + }, + { + "id": 113516827, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -4.2865697, + 55.8504352 + ], + [ + -4.281947, + 55.8504352 + ], + [ + -4.281947, + 55.8904911 + ], + [ + -4.2865697, + 55.8904911 + ], + [ + -4.2865697, + 55.8504352 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "climbing", + "answer": 24, + "create": 1, + "imagery": "osm", + "language": "en" + }, + "id": 113516827 + } + }, + { + "id": 113516557, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.6887285, + 50.128598 + ], + [ + 8.6887285, + 50.128598 + ], + [ + 8.6887285, + 50.128598 + ], + [ + 8.6887285, + 50.128598 + ], + [ + 8.6887285, + 50.128598 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "food", + "answer": 1, + "imagery": "osm", + "language": "de" + }, + "id": 113516557 + } + }, + { + "id": 113514618, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.6883402, + 50.127577 + ], + [ + 8.6883402, + 50.127577 + ], + [ + 8.6883402, + 50.127577 + ], + [ + 8.6883402, + 50.127577 + ], + [ + 8.6883402, + 50.127577 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "waste_basket", + "create": 1, + "imagery": "osm", + "language": "de" + }, + "id": 113514618 + } + }, + { + "id": 113514495, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.6870742, + 50.1287029 + ], + [ + 8.6920966, + 50.1287029 + ], + [ + 8.6920966, + 50.131705 + ], + [ + 8.6870742, + 50.131705 + ], + [ + 8.6870742, + 50.1287029 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 7, + "imagery": "CartoDB.Voyager", + "language": "en" + }, + "id": 113514495 + } + }, + { + "id": 113514247, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.5848631, + 51.1774379 + ], + [ + 5.5856545, + 51.1774379 + ], + [ + 5.5856545, + 51.1776615 + ], + [ + 5.5848631, + 51.1776615 + ], + [ + 5.5848631, + 51.1774379 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "campersite", + "answer": 1, + "imagery": "osm", + "language": "nl" + }, + "id": 113514247 + } + }, + { + "id": 113513805, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.6886929, + 50.1287807 + ], + [ + 8.6886929, + 50.1287807 + ], + [ + 8.6886929, + 50.1287807 + ], + [ + 8.6886929, + 50.1287807 + ], + [ + 8.6886929, + 50.1287807 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 3, + "imagery": "CartoDB.Voyager", + "language": "de" + }, + "id": 113513805 + } + }, + { + "id": 113511570, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.8948699, + 51.0112697 + ], + [ + 3.9325976, + 51.0112697 + ], + [ + 3.9325976, + 51.0185431 + ], + [ + 3.8948699, + 51.0185431 + ], + [ + 3.8948699, + 51.0112697 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "cyclestreets", + "answer": 6, + "imagery": "osm", + "language": "en", + "add-image": 1 + }, + "id": 113511570 + } + }, + { + "id": 113499377, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -78.6966002, + 26.5307092 + ], + [ + -78.6966002, + 26.5307092 + ], + [ + -78.6966002, + 26.5307092 + ], + [ + -78.6966002, + 26.5307092 + ], + [ + -78.6966002, + 26.5307092 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "food", + "answer": 1, + "imagery": "osm", + "language": "en" + }, + "id": 113499377 + } + }, + { + "id": 113498268, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -42.8143327, + -5.0923526 + ], + [ + -42.8143327, + -5.0923526 + ], + [ + -42.8143327, + -5.0923526 + ], + [ + -42.8143327, + -5.0923526 + ], + [ + -42.8143327, + -5.0923526 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "toilets", + "answer": 1, + "imagery": "osm", + "language": "en" + }, + "id": 113498268 + } + }, + { + "id": 113498240, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -42.8404302, + -5.0966517 + ], + [ + -42.8404302, + -5.0966517 + ], + [ + -42.8404302, + -5.0966517 + ], + [ + -42.8404302, + -5.0966517 + ], + [ + -42.8404302, + -5.0966517 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "cafes_and_pubs", + "answer": 1, + "imagery": "osm", + "language": "en" + }, + "id": 113498240 + } + }, + { + "id": 113493880, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 14.3573847, + 51.6720755 + ], + [ + 14.3732768, + 51.6720755 + ], + [ + 14.3732768, + 51.6779043 + ], + [ + 14.3573847, + 51.6779043 + ], + [ + 14.3573847, + 51.6720755 + ] + ] + ] + }, + "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, + "metadata": { + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "id": 113493880 + } + }, + { + "id": 113493657, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.6537454, + 50.9009087 + ], + [ + 3.6537454, + 50.9009087 + ], + [ + 3.6537454, + 50.9009087 + ], + [ + 3.6537454, + 50.9009087 + ], + [ + 3.6537454, + 50.9009087 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "imagery": "osm", + "language": "en", + "add-image": 1 + }, + "id": 113493657 + } + }, + { + "id": 113492944, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.7195112, + 50.8516306 + ], + [ + 3.7195112, + 50.8516306 + ], + [ + 3.7195112, + 50.8516306 + ], + [ + 3.7195112, + 50.8516306 + ], + [ + 3.7195112, + 50.8516306 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "postboxes", + "imagery": "CartoDB.Voyager", + "language": "en", + "add-image": 1 + }, + "id": 113492944 + } + }, { "id": 113491702, "type": "Feature", @@ -58,7 +32550,8 @@ "answer": 2, "imagery": "CartoDB.Voyager", "language": "en" - } + }, + "id": 113491702 } }, { @@ -69,24 +32562,24 @@ "coordinates": [ [ [ - 6.5481828, - 53.0129515 + 6.5454001, + 53.0104826 ], [ 6.5481828, - 53.0129515 + 53.0104826 ], [ 6.5481828, - 53.0129515 + 53.013161 ], [ - 6.5481828, - 53.0129515 + 6.5454001, + 53.013161 ], [ - 6.5481828, - 53.0129515 + 6.5454001, + 53.0104826 ] ] ] @@ -105,22 +32598,25 @@ "imagery_used": "Not reported", "date": "2021-11-07T18:16:06Z", "reviewed_features": [], - "create": 1, - "modify": 2, + "create": 8, + "modify": 17, "delete": 0, - "area": 0, + "area": 0.00000745318367998207, "is_suspect": false, "harmful": null, "checked": false, "check_date": null, "metadata": { "host": "mapcomplete.osm.be", + "move": 1, "theme": "street_lighting_assen", - "answer": 8, - "create": 1, + "answer": 61, + "create": 8, "imagery": "osm", - "language": "en" - } + "language": "en", + "move:node/-1": "improve_accuracy" + }, + "id": 113491295 } }, { @@ -182,7 +32678,8 @@ "create": 1, "imagery": "osm", "language": "en" - } + }, + "id": 113491238 } }, { @@ -243,7 +32740,8 @@ "answer": 2, "imagery": "CartoDB.Positron", "language": "nl" - } + }, + "id": 113489356 } }, { @@ -304,7 +32802,8 @@ "imagery": "osm", "language": "en", "add-image": 1 - } + }, + "id": 113489134 } }, { @@ -365,7 +32864,8 @@ "answer": 2, "imagery": "osm", "language": "nl" - } + }, + "id": 113488340 } }, { @@ -427,7 +32927,8 @@ "answer": 19, "imagery": "CartoDB.Voyager", "language": "en" - } + }, + "id": 113481936 } }, { @@ -489,7 +32990,8 @@ "answer": 1, "imagery": "CartoDB.Voyager", "language": "en" - } + }, + "id": 113480631 } }, { @@ -558,7 +33060,8 @@ "imagery": "osm", "language": "fr", "move:node/9233019525": "improve_accuracy" - } + }, + "id": 113480016 } }, { @@ -619,7 +33122,8 @@ "answer": 1, "imagery": "osm", "language": "en" - } + }, + "id": 113477074 } }, { @@ -682,7 +33186,8 @@ "imagery": "CartoDB.Voyager", "language": "nl", "add-image": 1 - } + }, + "id": 113472305 } }, { @@ -743,7 +33248,8 @@ "answer": 24, "imagery": "osm", "language": "en" - } + }, + "id": 113465263 } }, { @@ -805,7 +33311,8 @@ "create": 8, "imagery": "osm", "language": "en" - } + }, + "id": 113463623 } }, { @@ -866,7 +33373,8 @@ "answer": 6, "imagery": "osm", "language": "en" - } + }, + "id": 113463553 } }, { @@ -927,7 +33435,8 @@ "answer": 5, "imagery": "CartoDB.Voyager", "language": "en" - } + }, + "id": 113463449 } }, { @@ -989,7 +33498,8 @@ "create": 1, "imagery": "osm", "language": "nl" - } + }, + "id": 113450975 } }, { @@ -1050,7 +33560,8 @@ "answer": 14, "imagery": "osm", "language": "en" - } + }, + "id": 113450551 } }, { @@ -1113,7 +33624,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "add-image": 1 - } + }, + "id": 113448373 } }, { @@ -1174,7 +33686,8 @@ "answer": 9, "imagery": "osm", "language": "it" - } + }, + "id": 113444561 } }, { @@ -1235,7 +33748,8 @@ "answer": 19, "imagery": "CartoDB.Voyager", "language": "en" - } + }, + "id": 113442152 } }, { @@ -1297,7 +33811,8 @@ "create": 2, "imagery": "CartoDB.Voyager", "language": "en" - } + }, + "id": 113438716 } }, { @@ -1358,7 +33873,8 @@ "answer": 121, "imagery": "osm", "language": "en" - } + }, + "id": 113438500 } }, { @@ -1422,7 +33938,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "add-image": 1 - } + }, + "id": 113429453 } }, { @@ -1483,7 +34000,8 @@ "answer": 12, "imagery": "osm", "language": "it" - } + }, + "id": 113428932 } }, { @@ -1544,7 +34062,8 @@ "answer": 5, "imagery": "osm", "language": "it" - } + }, + "id": 113428858 } }, { @@ -1605,7 +34124,8 @@ "answer": 4, "imagery": "osm", "language": "it" - } + }, + "id": 113428835 } }, { @@ -1667,7 +34187,8 @@ "create": 6, "imagery": "osm", "language": "en" - } + }, + "id": 113428798 } }, { @@ -1728,7 +34249,8 @@ "answer": 8, "imagery": "osm", "language": "de" - } + }, + "id": 113428563 } }, { @@ -1789,7 +34311,8 @@ "answer": 28, "imagery": "osm", "language": "it" - } + }, + "id": 113428090 } }, { @@ -1850,7 +34373,8 @@ "answer": 4, "imagery": "osm", "language": "en" - } + }, + "id": 113426608 } }, { @@ -1911,7 +34435,8 @@ "answer": 24, "imagery": "CartoDB.Voyager", "language": "en" - } + }, + "id": 113421595 } }, { @@ -1972,7 +34497,8 @@ "answer": 5, "imagery": "CartoDB.Voyager", "language": "en" - } + }, + "id": 113418491 } }, { @@ -2033,7 +34559,8 @@ "answer": 2, "imagery": "osm", "language": "en" - } + }, + "id": 113413987 } }, { @@ -2096,7 +34623,8 @@ "create": 1, "imagery": "osm", "language": "en" - } + }, + "id": 113412065 } }, { @@ -2158,7 +34686,8 @@ "create": 4, "imagery": "CartoDB.Voyager", "language": "en" - } + }, + "id": 113411796 } }, { @@ -2219,7 +34748,8 @@ "answer": 115, "imagery": "osm", "language": "en" - } + }, + "id": 113410685 } }, { @@ -2280,7 +34810,8 @@ "answer": 2, "imagery": "osm", "language": "es" - } + }, + "id": 113410204 } }, { @@ -2348,7 +34879,8 @@ "imagery": "osm", "language": "nl", "add-image": 1 - } + }, + "id": 113409895 } }, { @@ -2410,7 +34942,8 @@ "answer": 6, "imagery": "osm", "language": "en" - } + }, + "id": 113409798 } }, { @@ -2473,7 +35006,8 @@ "imagery": "osm", "language": "en", "add-image": 2 - } + }, + "id": 113409011 } }, { @@ -2537,7 +35071,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "move:node/4568201391": "improve_accuracy" - } + }, + "id": 113407314 } }, { @@ -2598,7 +35133,8 @@ "answer": 6, "imagery": "osm", "language": "en" - } + }, + "id": 113405992 } }, { @@ -2659,7 +35195,8 @@ "answer": 64, "imagery": "osm", "language": "en" - } + }, + "id": 113404377 } }, { @@ -2720,7 +35257,8 @@ "answer": 10, "imagery": "osm", "language": "de" - } + }, + "id": 113404365 } }, { @@ -2788,7 +35326,8 @@ "imagery": "osm", "language": "nl", "add-image": 1 - } + }, + "id": 113403407 } }, { @@ -2849,7 +35388,8 @@ "answer": 131, "imagery": "osm", "language": "it" - } + }, + "id": 113401156 } }, { @@ -2910,7 +35450,8 @@ "answer": 46, "imagery": "osm", "language": "it" - } + }, + "id": 113400546 } }, { @@ -2973,7 +35514,8 @@ "imagery": "osm", "language": "nl", "move:node/9223875638": "improve_accuracy" - } + }, + "id": 113399744 } }, { @@ -3039,7 +35581,8 @@ "answer": 2, "imagery": "osm", "language": "nl" - } + }, + "id": 113397481 } }, { @@ -3101,7 +35644,8 @@ "create": 4, "imagery": "CartoDB.Voyager", "language": "en" - } + }, + "id": 113386555 } }, { @@ -3168,7 +35712,8 @@ "create": 13, "imagery": "HDM_HOT", "language": "ca" - } + }, + "id": 113385218 } }, { @@ -3231,7 +35776,8 @@ "create": 2, "imagery": "osm", "language": "nl" - } + }, + "id": 113382487 } }, { @@ -3292,7 +35838,8 @@ "answer": 3, "imagery": "osm", "language": "de" - } + }, + "id": 113382251 } }, { @@ -3353,7 +35900,8 @@ "answer": 2, "imagery": "osm", "language": "nl" - } + }, + "id": 113376351 } }, { @@ -3416,7 +35964,8 @@ "imagery": "AGIV10cm", "language": "en", "conflation": 2 - } + }, + "id": 113375792 } }, { @@ -3478,7 +36027,8 @@ "import": 1, "imagery": "AGIV10cm", "language": "en" - } + }, + "id": 113375786 } }, { @@ -3540,7 +36090,8 @@ "import": 4, "imagery": "AGIV10cm", "language": "en" - } + }, + "id": 113375744 } }, { @@ -3601,7 +36152,8 @@ "answer": 22, "imagery": "osm", "language": "de" - } + }, + "id": 113375602 } }, { @@ -3664,7 +36216,8 @@ "imagery": "osm", "language": "nl", "move:node/9223875638": "improve_accuracy" - } + }, + "id": 113375570 } }, { @@ -3728,7 +36281,8 @@ "imagery": "osm", "language": "en", "conflation": 4 - } + }, + "id": 113374469 } }, { @@ -3792,7 +36346,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "move:node/9223995072": "improve_accuracy" - } + }, + "id": 113374140 } }, { @@ -3854,7 +36409,8 @@ "answer": 1, "imagery": "osm", "language": "en" - } + }, + "id": 113374077 } }, { @@ -3919,7 +36475,8 @@ "language": "nl", "add-image": 7, "move:node/9223917538": "improve_accuracy" - } + }, + "id": 113373022 } }, { @@ -3980,7 +36537,8 @@ "answer": 11, "imagery": "osm", "language": "es" - } + }, + "id": 113368653 } }, { @@ -4042,7 +36600,8 @@ "import": 2, "imagery": "osm", "language": "nl" - } + }, + "id": 113367547 } }, { @@ -4103,7 +36662,8 @@ "answer": 4, "imagery": "osm", "language": "nl" - } + }, + "id": 113364948 } }, { @@ -4164,7 +36724,8 @@ "answer": 3, "imagery": "CartoDB.Voyager", "language": "en" - } + }, + "id": 113364737 } }, { @@ -4225,7 +36786,8 @@ "answer": 6, "imagery": "CartoDB.Voyager", "language": "en" - } + }, + "id": 113360279 } }, { @@ -4288,7 +36850,8 @@ "imagery": "osm", "language": "en", "add-image": 1 - } + }, + "id": 113354339 } }, { @@ -4349,7 +36912,8 @@ "import": 3, "imagery": "AGIVFlandersGRB", "language": "nl" - } + }, + "id": 113353891 } }, { @@ -4411,7 +36975,8 @@ "create": 1, "imagery": "osm", "language": "en" - } + }, + "id": 113353572 } }, { @@ -4473,7 +37038,8 @@ "imagery": "osm", "language": "en", "add-image": 1 - } + }, + "id": 113351309 } }, { @@ -4534,7 +37100,8 @@ "answer": 13, "imagery": "osm", "language": "de" - } + }, + "id": 113351051 } }, { @@ -4596,7 +37163,8 @@ "imagery": "AGIVFlandersGRB", "language": "en", "conflation": 4 - } + }, + "id": 113350305 } }, { @@ -4657,7 +37225,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "add-image": 1 - } + }, + "id": 113347810 } }, { @@ -4719,7 +37288,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "add-image": 3 - } + }, + "id": 113347649 } }, { @@ -4783,7 +37353,8 @@ "imagery": "osm", "language": "en", "add-image": 1 - } + }, + "id": 113339240 } }, { @@ -4846,7 +37417,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "add-image": 1 - } + }, + "id": 113337126 } }, { @@ -4908,7 +37480,8 @@ "imagery": "osm", "language": "nl", "move:node/8771441240": "improve_accuracy" - } + }, + "id": 113337023 } }, { @@ -4972,7 +37545,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "move:node/9221540197": "improve_accuracy" - } + }, + "id": 113336834 } }, { @@ -5039,7 +37613,8 @@ "create": 13, "imagery": "HDM_HOT", "language": "ca" - } + }, + "id": 113335939 } }, { @@ -5103,7 +37678,8 @@ "imagery": "osm", "language": "en", "add-image": 1 - } + }, + "id": 113334874 } }, { @@ -5165,7 +37741,8 @@ "create": 1, "imagery": "CartoDB.Voyager", "language": "en" - } + }, + "id": 113331345 } }, { @@ -5233,7 +37810,8 @@ "imagery": "HDM_HOT", "language": "nl", "add-image": 1 - } + }, + "id": 113329273 } }, { @@ -5295,7 +37873,8 @@ "create": 1, "imagery": "CartoDB.Voyager", "language": "en" - } + }, + "id": 113329108 } }, { @@ -5356,7 +37935,8 @@ "answer": 83, "imagery": "osm", "language": "de" - } + }, + "id": 113329026 } }, { @@ -5417,7 +37997,8 @@ "answer": 11, "imagery": "osm", "language": "de" - } + }, + "id": 113328646 } }, { @@ -5485,7 +38066,8 @@ "language": "nl", "move:node/8789200971": "improve_accuracy", "move:node/8823682990": "improve_accuracy" - } + }, + "id": 113328015 } }, { @@ -5548,7 +38130,8 @@ "imagery": "AGIVFlandersGRB", "language": "nl", "conflation": 10 - } + }, + "id": 113305401 } }, { @@ -5607,7 +38190,8 @@ "theme": "climbing", "language": "en", "theme-creator": "Christian Neumann " - } + }, + "id": 113302704 } }, { @@ -5668,7 +38252,8 @@ "answer": 49, "imagery": "osm", "language": "en" - } + }, + "id": 113300229 } }, { @@ -5735,7 +38320,8 @@ "create": 1, "imagery": "osm", "language": "en" - } + }, + "id": 113291887 } }, { @@ -5799,7 +38385,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "move:node/9218593524": "improve_accuracy" - } + }, + "id": 113284886 } }, { @@ -5861,7 +38448,8 @@ "answer": 1, "imagery": "osm", "language": "nl" - } + }, + "id": 113284013 } }, { @@ -5922,7 +38510,8 @@ "answer": 5, "imagery": "CartoDB.Voyager", "language": "en" - } + }, + "id": 113270690 } }, { @@ -5983,7 +38572,8 @@ "imagery": "osm", "language": "nl", "add-image": 1 - } + }, + "id": 113259034 } }, { @@ -6044,7 +38634,8 @@ "imagery": "CartoDB.Voyager", "language": "nl", "add-image": 1 - } + }, + "id": 113259014 } }, { @@ -6110,7 +38701,8 @@ "answer": 3, "imagery": "osm", "language": "en" - } + }, + "id": 113255395 } }, { @@ -6172,7 +38764,8 @@ "deletion": 1, "language": "en", "deletion:node/2442953886": "disused" - } + }, + "id": 113251293 } }, { @@ -6233,7 +38826,8 @@ "answer": 4, "imagery": "CartoDB.Voyager", "language": "en" - } + }, + "id": 113250793 } }, { @@ -6294,7 +38888,8 @@ "answer": 4, "imagery": "osm", "language": "en" - } + }, + "id": 113247252 } }, { @@ -6359,7 +38954,8 @@ "imagery": "CartoDB.Voyager", "language": "nl", "move:node/9216683715": "improve_accuracy" - } + }, + "id": 113246649 } }, { @@ -6422,7 +39018,8 @@ "create": 1, "imagery": "osm", "language": "en" - } + }, + "id": 113242289 } }, { @@ -6458,7 +39055,8 @@ "imagery": "osm", "language": "en", "add-image": 1 - } + }, + "id": 113241377 } }, { @@ -6495,7 +39093,8 @@ "imagery": "osm", "language": "en", "move:node/-2": "improve_accuracy" - } + }, + "id": 113241348 } }, { @@ -6531,7 +39130,8 @@ "answer": 1, "imagery": "osm", "language": "en" - } + }, + "id": 113241334 } }, { @@ -6595,7 +39195,8 @@ "imagery": "osm", "language": "en", "add-image": 1 - } + }, + "id": 113241037 } }, { @@ -6656,7 +39257,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "add-image": 4 - } + }, + "id": 113238301 } }, { @@ -6720,7 +39322,8 @@ "imagery": "AGIV10cm", "language": "en", "move:node/9216279358": "improve_accuracy" - } + }, + "id": 113237148 } }, { @@ -6781,7 +39384,8 @@ "answer": 2, "imagery": "osm", "language": "es" - } + }, + "id": 113236656 } }, { @@ -6843,7 +39447,8 @@ "imagery": "CartoDB.Voyager", "language": "en", "add-image": 4 - } + }, + "id": 113234111 } }, { @@ -6905,7 +39510,8 @@ "answer": 1, "imagery": "osm", "language": "en" - } + }, + "id": 113227669 } }, { @@ -6967,7 +39573,8 @@ "create": 5, "imagery": "osm", "language": "en" - } + }, + "id": 113225986 } }, { @@ -7030,7 +39637,8 @@ "imagery": "osm", "language": "en", "add-image": 1 - } + }, + "id": 113224286 } }, { @@ -7096,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 new file mode 100644 index 0000000000..14a167287d --- /dev/null +++ b/Docs/Tools/stats/stats.2021-12.json @@ -0,0 +1,30917 @@ +{ + "features": [ + { + "id": 115624437, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -84.4255382, + 33.6415534 + ], + [ + -84.4255382, + 33.6415534 + ], + [ + -84.4255382, + 33.6415534 + ], + [ + -84.4255382, + 33.6415534 + ], + [ + -84.4255382, + 33.6415534 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "toilets", + "answer": 4, + "create": 1, + "imagery": "osm", + "language": "en", + "change_over_5000m": 1, + "change_within_100m": 4 + }, + "id": 115624437 + } + }, + { + "id": 115615786, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.0266317, + 51.0743366 + ], + [ + 4.0396202, + 51.0743366 + ], + [ + 4.0396202, + 51.0799306 + ], + [ + 4.0266317, + 51.0799306 + ], + [ + 4.0266317, + 51.0743366 + ] + ] + ] + }, + "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": 2, + "modify": 2, + "delete": 0, + "area": 0.0000726576689999328, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "cycle_infra", + "answer": 2, + "create": 4, + "imagery": "CartoDB.Voyager", + "language": "nl", + "change_over_5000m": 6 + }, + "id": 115615786 + } + }, + { + "id": 115610774, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.7481996, + 51.1585714 + ], + [ + 4.7488797, + 51.1585714 + ], + [ + 4.7488797, + 51.1610642 + ], + [ + 4.7481996, + 51.1610642 + ], + [ + 4.7481996, + 51.1585714 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "move": 17, + "theme": "grb", + "import": 1, + "imagery": "AGIVFlandersGRB", + "language": "nl", + "conflation": 6 + }, + "id": 115610774 + } + }, + { + "id": 115610573, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.0037514, + 51.1499432 + ], + [ + 4.0063509, + 51.1499432 + ], + [ + 4.0063509, + 51.1527997 + ], + [ + 4.0037514, + 51.1527997 + ], + [ + 4.0037514, + 51.1499432 + ] + ] + ] + }, + "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, + "metadata": { + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "split": 3, + "theme": "cyclestreets", + "answer": 2, + "imagery": "osm", + "language": "nl", + "relation-fix": 1 + }, + "id": 115610573 + } + }, + { + "id": 115609231, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.0219657, + 51.1135031 + ], + [ + 4.0219657, + 51.1135031 + ], + [ + 4.0219657, + 51.1135031 + ], + [ + 4.0219657, + 51.1135031 + ], + [ + 4.0219657, + 51.1135031 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 4, + "create": 1, + "imagery": "CartoDB.Voyager", + "language": "nl" + }, + "id": 115609231 + } + }, + { + "id": 115609068, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.0101024, + 51.1280572 + ], + [ + 5.0101024, + 51.1280572 + ], + [ + 5.0101024, + 51.1280572 + ], + [ + 5.0101024, + 51.1280572 + ], + [ + 5.0101024, + 51.1280572 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "answer": 2, + "imagery": "osm", + "language": "en", + "add-image": 1 + }, + "id": 115609068 + } + }, + { + "id": 115604832, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 11.7996007, + 48.0105235 + ], + [ + 11.8166274, + 48.0105235 + ], + [ + 11.8166274, + 48.0256138 + ], + [ + 11.7996007, + 48.0256138 + ], + [ + 11.7996007, + 48.0105235 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "answer": 4, + "create": 11, + "imagery": "HDM_HOT", + "language": "en", + "change_over_5000m": 11, + "change_within_25m": 2, + "change_within_50m": 1, + "change_within_500m": 1 + }, + "id": 115604832 + } + }, + { + "id": 115600877, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.1985699, + 51.186004 + ], + [ + 3.1986933, + 51.186004 + ], + [ + 3.1986933, + 51.1861217 + ], + [ + 3.1985699, + 51.1861217 + ], + [ + 3.1985699, + 51.186004 + ] + ] + ] + }, + "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, + "metadata": { + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "grb", + "import": 1, + "imagery": "AGIVFlandersGRB", + "language": "nl" + }, + "id": 115600877 + } + }, + { + "id": 115586324, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -73.9148298, + 40.7046438 + ], + [ + -73.9141849, + 40.7046438 + ], + [ + -73.9141849, + 40.7050673 + ], + [ + -73.9148298, + 40.7050673 + ], + [ + -73.9148298, + 40.7046438 + ] + ] + ] + }, + "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": 6, + "modify": 17, + "delete": 0, + "area": 2.73115150007338e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "surveillance", + "answer": 24, + "create": 13, + "imagery": "osm", + "language": "en", + "add-image": 1, + "change_within_25m": 33, + "change_within_50m": 4 + }, + "id": 115586324 + } + }, + { + "id": 115585682, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.0354559, + 51.1971661 + ], + [ + 4.0376218, + 51.1971661 + ], + [ + 4.0376218, + 51.1987771 + ], + [ + 4.0354559, + 51.1987771 + ], + [ + 4.0354559, + 51.1971661 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "benches", + "create": 2, + "imagery": "osm", + "language": "nl", + "change_over_5000m": 2 + }, + "id": 115585682 + } + }, + { + "id": 115584740, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.235192, + 51.1078111 + ], + [ + 3.4590057, + 51.1078111 + ], + [ + 3.4590057, + 51.2103063 + ], + [ + 3.235192, + 51.2103063 + ], + [ + 3.235192, + 51.1078111 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "https://raw.githubusercontent.com/xliving/xliving.github.io/main/OSM/amenity-recycling/recycling-organic/mapcomplete.json", + "answer": 2, + "imagery": "osm", + "language": "nl", + "change_over_5000m": 1 + }, + "id": 115584740 + } + }, + { + "id": 115584260, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2.2094522, + 41.5416227 + ], + [ + 2.209771, + 41.5416227 + ], + [ + 2.209771, + 41.5419195 + ], + [ + 2.2094522, + 41.5419195 + ], + [ + 2.2094522, + 41.5416227 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "trees", + "answer": 6, + "imagery": "osm", + "language": "en" + }, + "id": 115584260 + } + }, + { + "id": 115583852, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -73.9148592, + 40.7049432 + ], + [ + -73.9147827, + 40.7049432 + ], + [ + -73.9147827, + 40.7050695 + ], + [ + -73.9148592, + 40.7050695 + ], + [ + -73.9148592, + 40.7049432 + ] + ] + ] + }, + "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, + "metadata": { + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "surveillance", + "answer": 6, + "imagery": "osm", + "language": "en" + }, + "id": 115583852 + } + }, + { + "id": 115578339, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -70.7675618, + -33.489466 + ], + [ + -70.7675618, + -33.489466 + ], + [ + -70.7675618, + -33.489466 + ], + [ + -70.7675618, + -33.489466 + ], + [ + -70.7675618, + -33.489466 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "osm", + "language": "en", + "add-image": 2 + }, + "id": 115578339 + } + }, + { + "id": 115571697, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.1225616, + 51.2233063 + ], + [ + 4.1246148, + 51.2233063 + ], + [ + 4.1246148, + 51.224154 + ], + [ + 4.1225616, + 51.224154 + ], + [ + 4.1225616, + 51.2233063 + ] + ] + ] + }, + "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, + "metadata": { + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "grb", + "import": 3, + "imagery": "osm", + "language": "nl", + "change_over_5000m": 1 + }, + "id": 115571697 + } + }, + { + "id": 115556947, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.9375362, + 44.4243671 + ], + [ + 8.9375362, + 44.4243671 + ], + [ + 8.9375362, + 44.4243671 + ], + [ + 8.9375362, + 44.4243671 + ], + [ + 8.9375362, + 44.4243671 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "toilets", + "answer": 7, + "imagery": "osm", + "language": "en", + "change_within_25m": 7 + }, + "id": 115556947 + } + }, + { + "id": 115556765, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -0.0552669, + 40.1125488 + ], + [ + -0.0551991, + 40.1125488 + ], + [ + -0.0551991, + 40.1125873 + ], + [ + -0.0552669, + 40.1125873 + ], + [ + -0.0552669, + 40.1125488 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "toilets", + "answer": 4, + "create": 1, + "imagery": "osm", + "deletion": 1, + "language": "nl", + "change_over_5000m": 2, + "change_within_25m": 4, + "deletion:node/9378806868": "Addition was buggy" + }, + "id": 115556765 + } + }, + { + "id": 115556736, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -0.0552669, + 40.1125873 + ], + [ + -0.0552669, + 40.1125873 + ], + [ + -0.0552669, + 40.1125873 + ], + [ + -0.0552669, + 40.1125873 + ], + [ + -0.0552669, + 40.1125873 + ] + ] + ] + }, + "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": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "toilets", + "answer": 8, + "create": 2, + "imagery": "osm", + "language": "nl", + "change_over_5000m": 4, + "change_within_25m": 6 + }, + "id": 115556736 + } + }, + { + "id": 115535515, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.3783239, + 44.4841381 + ], + [ + 5.3821459, + 44.4841381 + ], + [ + 5.3821459, + 44.4861073 + ], + [ + 5.3783239, + 44.4861073 + ], + [ + 5.3783239, + 44.4841381 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "shops", + "answer": 9, + "imagery": "osm", + "language": "en" + }, + "id": 115535515 + } + }, + { + "id": 115533103, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.0399204, + 51.0704084 + ], + [ + 4.0399204, + 51.0704084 + ], + [ + 4.0399204, + 51.0704084 + ], + [ + 4.0399204, + 51.0704084 + ], + [ + 4.0399204, + 51.0704084 + ] + ] + ] + }, + "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, + "metadata": { + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "food", + "answer": 12, + "create": 1, + "imagery": "osm", + "language": "nl", + "change_over_5000m": 1, + "change_within_25m": 12 + }, + "id": 115533103 + } + }, + { + "id": 115530115, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -60.8122197, + -32.9178582 + ], + [ + -60.8076217, + -32.9178582 + ], + [ + -60.8076217, + -32.911256 + ], + [ + -60.8122197, + -32.911256 + ], + [ + -60.8122197, + -32.9178582 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "benches", + "answer": 5, + "imagery": "osm", + "language": "en" + }, + "id": 115530115 + } + }, + { + "id": 115527664, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -72.0076495, + -34.3861726 + ], + [ + -72.0076495, + -34.3861726 + ], + [ + -72.0076495, + -34.3861726 + ], + [ + -72.0076495, + -34.3861726 + ], + [ + -72.0076495, + -34.3861726 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "osm", + "language": "en", + "add-image": 1 + }, + "id": 115527664 + } + }, + { + "id": 115527316, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 0.4038183, + 40.3598926 + ], + [ + 0.4038183, + 40.3598926 + ], + [ + 0.4038183, + 40.3598926 + ], + [ + 0.4038183, + 40.3598926 + ], + [ + 0.4038183, + 40.3598926 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "toilets", + "answer": 3, + "imagery": "osm", + "language": "nl", + "change_within_25m": 3 + }, + "id": 115527316 + } + }, + { + "id": 115524073, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.717972, + 44.4274225 + ], + [ + 6.0729295, + 44.4274225 + ], + [ + 6.0729295, + 44.5536314 + ], + [ + 5.717972, + 44.5536314 + ], + [ + 5.717972, + 44.4274225 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "cycle_infra", + "answer": 4, + "imagery": "CartoDB.Voyager", + "language": "nl" + }, + "id": 115524073 + } + }, + { + "id": 115520700, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.6337662, + 45.4929979 + ], + [ + 9.6561581, + 45.4929979 + ], + [ + 9.6561581, + 45.507142 + ], + [ + 9.6337662, + 45.507142 + ], + [ + 9.6337662, + 45.4929979 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 103, + "imagery": "osm", + "language": "it", + "change_within_1000m": 12, + "change_within_5000m": 91 + }, + "id": 115520700 + } + }, + { + "id": 115519801, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.0898866, + 51.0978985 + ], + [ + 4.0898866, + 51.0978985 + ], + [ + 4.0898866, + 51.0978985 + ], + [ + 4.0898866, + 51.0978985 + ], + [ + 4.0898866, + 51.0978985 + ] + ] + ] + }, + "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, + "metadata": { + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "ghostbikes", + "answer": 1, + "create": 1, + "imagery": "CartoDB.Positron", + "language": "nl", + "add-image": 1, + "change_over_5000m": 1, + "change_within_25m": 2 + }, + "id": 115519801 + } + }, + { + "id": 115517105, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.2242486, + 51.2195 + ], + [ + 3.2242486, + 51.2195 + ], + [ + 3.2242486, + 51.2195 + ], + [ + 3.2242486, + 51.2195 + ], + [ + 3.2242486, + 51.2195 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "Composthoekjes", + "answer": 1, + "imagery": "osm", + "language": "nl" + }, + "id": 115517105 + } + }, + { + "id": 115516355, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 12.4807742, + 41.8267555 + ], + [ + 12.4807742, + 41.8267555 + ], + [ + 12.4807742, + 41.8267555 + ], + [ + 12.4807742, + 41.8267555 + ], + [ + 12.4807742, + 41.8267555 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "toilets", + "answer": 2, + "create": 1, + "imagery": "osm", + "language": "en" + }, + "id": 115516355 + } + }, + { + "id": 115515838, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.0420125, + 51.0682728 + ], + [ + 4.0430461, + 51.0682728 + ], + [ + 4.0430461, + 51.0730616 + ], + [ + 4.0420125, + 51.0730616 + ], + [ + 4.0420125, + 51.0682728 + ] + ] + ] + }, + "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, + "metadata": { + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "cyclofix", + "answer": 13, + "create": 1, + "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 + }, + "id": 115515838 + } + }, + { + "id": 115512626, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.2199436, + 51.1821307 + ], + [ + 3.235192, + 51.1821307 + ], + [ + 3.235192, + 51.2195 + ], + [ + 3.2199436, + 51.2195 + ], + [ + 3.2199436, + 51.1821307 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "Composthoekjes", + "create": 2, + "imagery": "osm", + "language": "nl", + "add-image": 3 + }, + "id": 115512626 + } + }, + { + "id": 115511711, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.7179091, + 44.4285732 + ], + [ + 5.7179091, + 44.4285732 + ], + [ + 5.7179091, + 44.4285732 + ], + [ + 5.7179091, + 44.4285732 + ], + [ + 5.7179091, + 44.4285732 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "cycle_infra", + "answer": 2, + "imagery": "CartoDB.Voyager", + "language": "nl" + }, + "id": 115511711 + } + }, + { + "id": 115498674, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -78.6806049, + 26.4936961 + ], + [ + -78.6806049, + 26.4936961 + ], + [ + -78.6806049, + 26.4936961 + ], + [ + -78.6806049, + 26.4936961 + ], + [ + -78.6806049, + 26.4936961 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "Slipways", + "answer": 1, + "imagery": "osm", + "language": "en" + }, + "id": 115498674 + } + }, + { + "id": 115496293, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -78.608893, + 26.5251406 + ], + [ + -78.6085863, + 26.5251406 + ], + [ + -78.6085863, + 26.5254849 + ], + [ + -78.608893, + 26.5254849 + ], + [ + -78.608893, + 26.5251406 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "sport_pitches", + "answer": 1, + "imagery": "osm", + "language": "en", + "change_within_1000m": 1 + }, + "id": 115496293 + } + }, + { + "id": 115491537, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.3392289, + 50.8879395 + ], + [ + 4.3392289, + 50.8879395 + ], + [ + 4.3392289, + 50.8879395 + ], + [ + 4.3392289, + 50.8879395 + ], + [ + 4.3392289, + 50.8879395 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 2, + "imagery": "CartoDB.Voyager", + "language": "en", + "add-image": 1 + }, + "id": 115491537 + } + }, + { + "id": 115488738, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.0213501, + 51.1038032 + ], + [ + 4.0213501, + 51.1038032 + ], + [ + 4.0213501, + 51.1038032 + ], + [ + 4.0213501, + 51.1038032 + ], + [ + 4.0213501, + 51.1038032 + ] + ] + ] + }, + "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, + "metadata": { + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "binoculars", + "language": "nl", + "add-image": 1, + "change_within_25m": 1 + }, + "id": 115488738 + } + }, + { + "id": 115488123, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -70.5955767, + -33.4158343 + ], + [ + -70.5428374, + -33.4158343 + ], + [ + -70.5428374, + -33.4064547 + ], + [ + -70.5955767, + -33.4064547 + ], + [ + -70.5955767, + -33.4158343 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "trees", + "answer": 7, + "create": 1, + "imagery": "osm", + "language": "en", + "move:node/9374436265": "improve_accuracy" + }, + "id": 115488123 + } + }, + { + "id": 115487638, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -78.6310745, + 26.5319689 + ], + [ + -78.6303671, + 26.5319689 + ], + [ + -78.6303671, + 26.5359772 + ], + [ + -78.6310745, + 26.5359772 + ], + [ + -78.6310745, + 26.5319689 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "uk_addresses", + "answer": 2, + "imagery": "osm", + "language": "en", + "change_within_1000m": 1, + "change_within_5000m": 1 + }, + "id": 115487638 + } + }, + { + "id": 115486160, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -71.2659019, + -33.0009287 + ], + [ + -71.2659019, + -33.0009287 + ], + [ + -71.2659019, + -33.0009287 + ], + [ + -71.2659019, + -33.0009287 + ], + [ + -71.2659019, + -33.0009287 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "osm", + "language": "en", + "add-image": 1 + }, + "id": 115486160 + } + }, + { + "id": 115483390, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 11.5750335, + 48.1204593 + ], + [ + 11.5750335, + 48.1204593 + ], + [ + 11.5750335, + 48.1204593 + ], + [ + 11.5750335, + 48.1204593 + ], + [ + 11.5750335, + 48.1204593 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "hackerspaces", + "answer": 2, + "imagery": "osm", + "language": "de" + }, + "id": 115483390 + } + }, + { + "id": 115477973, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 79.4982079, + 11.6068732 + ], + [ + 79.4982216, + 11.6068732 + ], + [ + 79.4982216, + 11.6105482 + ], + [ + 79.4982079, + 11.6105482 + ], + [ + 79.4982079, + 11.6068732 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 1, + "imagery": "osm", + "language": "en" + }, + "id": 115477973 + } + }, + { + "id": 115473836, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 79.5045522, + 11.6080988 + ], + [ + 79.5124708, + 11.6080988 + ], + [ + 79.5124708, + 11.6154777 + ], + [ + 79.5045522, + 11.6154777 + ], + [ + 79.5045522, + 11.6080988 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 14, + "imagery": "osm", + "language": "en" + }, + "id": 115473836 + } + }, + { + "id": 115468613, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.0171391, + 51.1032525 + ], + [ + 4.0213501, + 51.1032525 + ], + [ + 4.0213501, + 51.1038032 + ], + [ + 4.0171391, + 51.1038032 + ], + [ + 4.0171391, + 51.1032525 + ] + ] + ] + }, + "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, + "metadata": { + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "binoculars", + "answer": 4, + "create": 3, + "imagery": "osm", + "language": "nl", + "add-image": 2, + "change_over_5000m": 3, + "change_within_25m": 6 + }, + "id": 115468613 + } + }, + { + "id": 115468391, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.0147948, + 51.1018866 + ], + [ + 4.0147948, + 51.1018866 + ], + [ + 4.0147948, + 51.1018866 + ], + [ + 4.0147948, + 51.1018866 + ], + [ + 4.0147948, + 51.1018866 + ] + ] + ] + }, + "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, + "metadata": { + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "natuurpunt", + "answer": 1, + "create": 1, + "imagery": "CartoDB.Positron", + "language": "nl", + "add-image": 1, + "change_over_5000m": 1, + "change_within_25m": 2 + }, + "id": 115468391 + } + }, + { + "id": 115468231, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.0046218, + 51.0948492 + ], + [ + 4.0251115, + 51.0948492 + ], + [ + 4.0251115, + 51.1071248 + ], + [ + 4.0046218, + 51.1071248 + ], + [ + 4.0046218, + 51.0948492 + ] + ] + ] + }, + "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, + "metadata": { + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "nature", + "answer": 4, + "create": 1, + "imagery": "osm", + "language": "nl", + "add-image": 2, + "change_over_5000m": 1, + "change_within_25m": 5, + "change_within_500m": 1 + }, + "id": 115468231 + } + }, + { + "id": 115466855, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.0264168, + 51.0799001 + ], + [ + 4.0264168, + 51.0799001 + ], + [ + 4.0264168, + 51.0799001 + ], + [ + 4.0264168, + 51.0799001 + ], + [ + 4.0264168, + 51.0799001 + ] + ] + ] + }, + "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, + "metadata": { + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "ghostbikes", + "answer": 2, + "create": 1, + "imagery": "CartoDB.Positron", + "language": "en", + "add-image": 1, + "change_over_5000m": 1, + "change_within_25m": 3 + }, + "id": 115466855 + } + }, + { + "id": 115461954, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.7158357, + 44.4269075 + ], + [ + 5.7158357, + 44.4269075 + ], + [ + 5.7158357, + 44.4269075 + ], + [ + 5.7158357, + 44.4269075 + ], + [ + 5.7158357, + 44.4269075 + ] + ] + ] + }, + "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": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "facadegardens", + "answer": 1, + "create": 2, + "imagery": "osm", + "language": "nl" + }, + "id": 115461954 + } + }, + { + "id": 115461617, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.7157232, + 44.4252561 + ], + [ + 5.7157232, + 44.4252561 + ], + [ + 5.7157232, + 44.4252561 + ], + [ + 5.7157232, + 44.4252561 + ], + [ + 5.7157232, + 44.4252561 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "shops", + "answer": 4, + "imagery": "osm", + "language": "en" + }, + "id": 115461617 + } + }, + { + "id": 115458708, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.7170669, + 44.4277081 + ], + [ + 5.7170669, + 44.4277081 + ], + [ + 5.7170669, + 44.4277081 + ], + [ + 5.7170669, + 44.4277081 + ], + [ + 5.7170669, + 44.4277081 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "shops", + "answer": 1, + "imagery": "osm", + "language": "en" + }, + "id": 115458708 + } + }, + { + "id": 115443137, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 7.5249055, + 44.3751275 + ], + [ + 7.5470134, + 44.3751275 + ], + [ + 7.5470134, + 44.3896558 + ], + [ + 7.5249055, + 44.3896558 + ], + [ + 7.5249055, + 44.3751275 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 44, + "imagery": "osm", + "language": "en", + "change_within_5000m": 43 + }, + "id": 115443137 + } + }, + { + "id": 115442498, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.0375493, + 51.06536 + ], + [ + 4.0375493, + 51.06536 + ], + [ + 4.0375493, + 51.06536 + ], + [ + 4.0375493, + 51.06536 + ], + [ + 4.0375493, + 51.06536 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "shops", + "answer": 6, + "create": 1, + "imagery": "osm", + "language": "en" + }, + "id": 115442498 + } + }, + { + "id": 115437807, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.0373755, + 51.0648144 + ], + [ + 4.0374085, + 51.0648144 + ], + [ + 4.0374085, + 51.0649377 + ], + [ + 4.0373755, + 51.0649377 + ], + [ + 4.0373755, + 51.0648144 + ] + ] + ] + }, + "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, + "metadata": { + "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" + }, + "id": 115437807 + } + }, + { + "id": 115437165, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.0361661, + 51.0702607 + ], + [ + 4.0363758, + 51.0702607 + ], + [ + 4.0363758, + 51.0703741 + ], + [ + 4.0361661, + 51.0703741 + ], + [ + 4.0361661, + 51.0702607 + ] + ] + ] + }, + "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, + "metadata": { + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "food", + "answer": 2, + "imagery": "osm", + "language": "en", + "change_within_25m": 2 + }, + "id": 115437165 + } + }, + { + "id": 115436960, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -73.2237191, + -39.8342608 + ], + [ + -73.2228761, + -39.8342608 + ], + [ + -73.2228761, + -39.8339085 + ], + [ + -73.2237191, + -39.8339085 + ], + [ + -73.2237191, + -39.8342608 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "osm", + "language": "en", + "add-image": 4 + }, + "id": 115436960 + } + }, + { + "id": 115434625, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.0400503, + 51.0712859 + ], + [ + 4.0409616, + 51.0712859 + ], + [ + 4.0409616, + 51.0717167 + ], + [ + 4.0400503, + 51.0717167 + ], + [ + 4.0400503, + 51.0712859 + ] + ] + ] + }, + "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": 1, + "modify": 1, + "delete": 0, + "area": 3.92588040003519e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "entrances", + "answer": 3, + "create": 2, + "imagery": "osm", + "language": "en", + "change_within_25m": 5 + }, + "id": 115434625 + } + }, + { + "id": 115433386, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.0401059, + 51.0737208 + ], + [ + 4.0401059, + 51.0737208 + ], + [ + 4.0401059, + 51.0737208 + ], + [ + 4.0401059, + 51.0737208 + ], + [ + 4.0401059, + 51.0737208 + ] + ] + ] + }, + "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, + "metadata": { + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "shops", + "imagery": "osm", + "deletion": 1, + "language": "en", + "change_within_100m": 1, + "deletion:node/1625270206": "disused" + }, + "id": 115433386 + } + }, + { + "id": 115433128, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.0400918, + 51.0684776 + ], + [ + 4.0437555, + 51.0684776 + ], + [ + 4.0437555, + 51.0700775 + ], + [ + 4.0400918, + 51.0700775 + ], + [ + 4.0400918, + 51.0684776 + ] + ] + ] + }, + "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, + "metadata": { + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "cyclestreets", + "answer": 3, + "imagery": "osm", + "language": "nl", + "change_within_500m": 3 + }, + "id": 115433128 + } + }, + { + "id": 115432966, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.0292365, + 51.0632091 + ], + [ + 4.0417911, + 51.0632091 + ], + [ + 4.0417911, + 51.0745875 + ], + [ + 4.0292365, + 51.0745875 + ], + [ + 4.0292365, + 51.0632091 + ] + ] + ] + }, + "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, + "metadata": { + "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 + }, + "id": 115432966 + } + }, + { + "id": 115432598, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.0326564, + 51.0659841 + ], + [ + 4.0363758, + 51.0659841 + ], + [ + 4.0363758, + 51.0703741 + ], + [ + 4.0326564, + 51.0703741 + ], + [ + 4.0326564, + 51.0659841 + ] + ] + ] + }, + "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, + "metadata": { + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "food", + "answer": 4, + "imagery": "osm", + "language": "en", + "change_within_500m": 3, + "change_within_1000m": 1 + }, + "id": 115432598 + } + }, + { + "id": 115429817, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.0401766, + 51.0554902 + ], + [ + 4.0401766, + 51.0554902 + ], + [ + 4.0401766, + 51.0554902 + ], + [ + 4.0401766, + 51.0554902 + ], + [ + 4.0401766, + 51.0554902 + ] + ] + ] + }, + "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, + "metadata": { + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "charging_stations", + "answer": 7, + "create": 1, + "imagery": "osm", + "language": "en", + "add-image": 1, + "change_over_5000m": 1, + "change_within_25m": 8 + }, + "id": 115429817 + } + }, + { + "id": 115428764, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.0410577, + 51.0220082 + ], + [ + 4.0586966, + 51.0220082 + ], + [ + 4.0586966, + 51.0492332 + ], + [ + 4.0410577, + 51.0492332 + ], + [ + 4.0410577, + 51.0220082 + ] + ] + ] + }, + "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, + "metadata": { + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "benches", + "answer": 3, + "create": 5, + "imagery": "cyclosm", + "language": "en", + "change_over_5000m": 5, + "change_within_25m": 3 + }, + "id": 115428764 + } + }, + { + "id": 115427632, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.8857262, + 51.0069867 + ], + [ + 3.8859037, + 51.0069867 + ], + [ + 3.8859037, + 51.0070334 + ], + [ + 3.8857262, + 51.0070334 + ], + [ + 3.8857262, + 51.0069867 + ] + ] + ] + }, + "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, + "metadata": { + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "cyclestreets", + "answer": 1, + "imagery": "osm", + "language": "en", + "change_within_5000m": 1 + }, + "id": 115427632 + } + }, + { + "id": 115414828, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1.1731888, + 41.2629011 + ], + [ + 1.1735082, + 41.2629011 + ], + [ + 1.1735082, + 41.2631629 + ], + [ + 1.1731888, + 41.2631629 + ], + [ + 1.1731888, + 41.2629011 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "campersite", + "answer": 6, + "imagery": "osm", + "language": "nl", + "change_within_25m": 6 + }, + "id": 115414828 + } + }, + { + "id": 115414383, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2.2376122, + 41.4820592 + ], + [ + 2.2383745, + 41.4820592 + ], + [ + 2.2383745, + 41.4824102 + ], + [ + 2.2376122, + 41.4824102 + ], + [ + 2.2376122, + 41.4820592 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "https://llefia.org/arbres/mapcomplete1.json", + "answer": 9, + "imagery": "HDM_HOT", + "language": "ca", + "change_within_25m": 2, + "change_within_50m": 1, + "change_within_100m": 6 + }, + "id": 115414383 + } + }, + { + "id": 115410069, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 7.5389221, + 44.3756858 + ], + [ + 7.5449007, + 44.3756858 + ], + [ + 7.5449007, + 44.381001 + ], + [ + 7.5389221, + 44.381001 + ], + [ + 7.5389221, + 44.3756858 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 9, + "imagery": "osm", + "language": "en" + }, + "id": 115410069 + } + }, + { + "id": 115405896, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -99.32317, + 38.8739587 + ], + [ + -99.3132678, + 38.8739587 + ], + [ + -99.3132678, + 38.8749894 + ], + [ + -99.32317, + 38.8749894 + ], + [ + -99.32317, + 38.8739587 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "sport_pitches", + "answer": 2, + "imagery": "osm", + "language": "en" + }, + "id": 115405896 + } + }, + { + "id": 115405642, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.3687606, + 50.8671268 + ], + [ + 4.3687606, + 50.8671268 + ], + [ + 4.3687606, + 50.8671268 + ], + [ + 4.3687606, + 50.8671268 + ], + [ + 4.3687606, + 50.8671268 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "answer": 5, + "create": 1, + "imagery": "osm", + "language": "en", + "add-image": 1 + }, + "id": 115405642 + } + }, + { + "id": 115404835, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -99.3207667, + 38.8930871 + ], + [ + -99.3151908, + 38.8930871 + ], + [ + -99.3151908, + 38.9023113 + ], + [ + -99.3207667, + 38.9023113 + ], + [ + -99.3207667, + 38.8930871 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "food", + "answer": 35, + "imagery": "osm", + "language": "en" + }, + "id": 115404835 + } + }, + { + "id": 115404805, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -99.3306554, + 38.8714079 + ], + [ + -99.3306368, + 38.8714079 + ], + [ + -99.3306368, + 38.8714081 + ], + [ + -99.3306554, + 38.8714081 + ], + [ + -99.3306554, + 38.8714079 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "drinking_water", + "answer": 1, + "create": 1, + "imagery": "CartoDB.Voyager", + "language": "en", + "move:node/9368735169": "improve_accuracy" + }, + "id": 115404805 + } + }, + { + "id": 115401224, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.0055063, + 51.124316 + ], + [ + 5.0061625, + 51.124316 + ], + [ + 5.0061625, + 51.1245272 + ], + [ + 5.0055063, + 51.1245272 + ], + [ + 5.0055063, + 51.124316 + ] + ] + ] + }, + "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, + "metadata": { + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "grb", + "import": 5, + "imagery": "AGIVFlandersGRB", + "language": "nl", + "change_within_500m": 2 + }, + "id": 115401224 + } + }, + { + "id": 115393520, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2.6592047, + 51.078447 + ], + [ + 2.6612032, + 51.078447 + ], + [ + 2.6612032, + 51.0798072 + ], + [ + 2.6592047, + 51.0798072 + ], + [ + 2.6592047, + 51.078447 + ] + ] + ] + }, + "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, + "metadata": { + "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 + }, + "id": 115393520 + } + }, + { + "id": 115393404, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2.9991959, + 41.8101089 + ], + [ + 2.9992194, + 41.8101089 + ], + [ + 2.9992194, + 41.8102723 + ], + [ + 2.9991959, + 41.8102723 + ], + [ + 2.9991959, + 41.8101089 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "campersite", + "answer": 11, + "create": 2, + "imagery": "osm", + "language": "nl", + "add-image": 3, + "change_over_5000m": 16 + }, + "id": 115393404 + } + }, + { + "id": 115389875, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2.6617733, + 51.0729908 + ], + [ + 2.661894, + 51.0729908 + ], + [ + 2.661894, + 51.07307 + ], + [ + 2.6617733, + 51.07307 + ], + [ + 2.6617733, + 51.0729908 + ] + ] + ] + }, + "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, + "metadata": { + "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" + }, + "id": 115389875 + } + }, + { + "id": 115389171, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.3743039, + 50.8587251 + ], + [ + 4.3796768, + 50.8587251 + ], + [ + 4.3796768, + 50.8681843 + ], + [ + 4.3743039, + 50.8681843 + ], + [ + 4.3743039, + 50.8587251 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "shops", + "imagery": "osm", + "language": "en", + "add-image": 2 + }, + "id": 115389171 + } + }, + { + "id": 115388271, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.381861, + 50.8463349 + ], + [ + 4.381861, + 50.8463349 + ], + [ + 4.381861, + 50.8463349 + ], + [ + 4.381861, + 50.8463349 + ], + [ + 4.381861, + 50.8463349 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "food", + "imagery": "osm", + "language": "en", + "add-image": 1 + }, + "id": 115388271 + } + }, + { + "id": 115388203, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.4352893, + 50.8938546 + ], + [ + 4.4352893, + 50.8938546 + ], + [ + 4.4352893, + 50.8938546 + ], + [ + 4.4352893, + 50.8938546 + ], + [ + 4.4352893, + 50.8938546 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "aed", + "imagery": "osm", + "language": "en", + "add-image": 1 + }, + "id": 115388203 + } + }, + { + "id": 115386087, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1.0870269, + 41.311761 + ], + [ + 1.0870269, + 41.311761 + ], + [ + 1.0870269, + 41.311761 + ], + [ + 1.0870269, + 41.311761 + ], + [ + 1.0870269, + 41.311761 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "aed", + "answer": 3, + "create": 1, + "imagery": "osm", + "language": "nl", + "add-image": 1, + "change_over_5000m": 1, + "change_within_25m": 4 + }, + "id": 115386087 + } + }, + { + "id": 115385781, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2.6528925, + 51.0791451 + ], + [ + 2.6528925, + 51.0791451 + ], + [ + 2.6528925, + 51.0791451 + ], + [ + 2.6528925, + 51.0791451 + ], + [ + 2.6528925, + 51.0791451 + ] + ] + ] + }, + "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, + "metadata": { + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "bookcases", + "answer": 3, + "create": 1, + "imagery": "osm", + "language": "en", + "add-image": 1, + "change_over_5000m": 1, + "change_within_25m": 4 + }, + "id": 115385781 + } + }, + { + "id": 115382020, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 14.6508665, + 51.7439416 + ], + [ + 14.6508665, + 51.7439416 + ], + [ + 14.6508665, + 51.7439416 + ], + [ + 14.6508665, + 51.7439416 + ], + [ + 14.6508665, + 51.7439416 + ] + ] + ] + }, + "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, + "metadata": { + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "id": 115382020 + } + }, + { + "id": 115380975, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1.1633472, + 41.3757814 + ], + [ + 1.1633472, + 41.3757814 + ], + [ + 1.1633472, + 41.3757814 + ], + [ + 1.1633472, + 41.3757814 + ], + [ + 1.1633472, + 41.3757814 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "answer": 4, + "create": 1, + "imagery": "CartoDB.Voyager", + "language": "nl", + "change_over_5000m": 1, + "change_within_25m": 4 + }, + "id": 115380975 + } + }, + { + "id": 115377293, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 79.4824759, + 11.6016553 + ], + [ + 79.5179448, + 11.6016553 + ], + [ + 79.5179448, + 11.6247917 + ], + [ + 79.4824759, + 11.6247917 + ], + [ + 79.4824759, + 11.6016553 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 23, + "imagery": "osm", + "language": "en" + }, + "id": 115377293 + } + }, + { + "id": 115371987, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 14.1473812, + 52.3970599 + ], + [ + 14.1662356, + 52.3970599 + ], + [ + 14.1662356, + 52.4204259 + ], + [ + 14.1473812, + 52.4204259 + ], + [ + 14.1473812, + 52.3970599 + ] + ] + ] + }, + "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, + "metadata": { + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "id": 115371987 + } + }, + { + "id": 115371526, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 6.16366, + 49.6172427 + ], + [ + 6.16366, + 49.6172427 + ], + [ + 6.16366, + 49.6172427 + ], + [ + 6.16366, + 49.6172427 + ], + [ + 6.16366, + 49.6172427 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "answer": 5, + "create": 1, + "imagery": "osm", + "language": "en", + "add-image": 1 + }, + "id": 115371526 + } + }, + { + "id": 115368572, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.1469241, + 50.7413107 + ], + [ + 3.1634337, + 50.7413107 + ], + [ + 3.1634337, + 50.7604999 + ], + [ + 3.1469241, + 50.7604999 + ], + [ + 3.1469241, + 50.7413107 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 31, + "imagery": "osm", + "language": "en" + }, + "id": 115368572 + } + }, + { + "id": 115365860, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.1428703, + 50.7375868 + ], + [ + 3.1809807, + 50.7375868 + ], + [ + 3.1809807, + 50.7510768 + ], + [ + 3.1428703, + 50.7510768 + ], + [ + 3.1428703, + 50.7375868 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 285, + "imagery": "osm", + "language": "en" + }, + "id": 115365860 + } + }, + { + "id": 115365501, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -1.6535926, + 47.4134018 + ], + [ + -1.4979766, + 47.4134018 + ], + [ + -1.4979766, + 47.4400105 + ], + [ + -1.6535926, + 47.4400105 + ], + [ + -1.6535926, + 47.4134018 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "answer": 5, + "create": 1, + "imagery": "osm", + "language": "fr", + "add-image": 3 + }, + "id": 115365501 + } + }, + { + "id": 115365357, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -1.5254179, + 47.3396845 + ], + [ + -1.5254179, + 47.3396845 + ], + [ + -1.5254179, + 47.3396845 + ], + [ + -1.5254179, + 47.3396845 + ], + [ + -1.5254179, + 47.3396845 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "create": 1, + "imagery": "osm", + "language": "fr", + "add-image": 1 + }, + "id": 115365357 + } + }, + { + "id": 115360983, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 14.6286925, + 51.7431111 + ], + [ + 14.6286925, + 51.7431111 + ], + [ + 14.6286925, + 51.7431111 + ], + [ + 14.6286925, + 51.7431111 + ], + [ + 14.6286925, + 51.7431111 + ] + ] + ] + }, + "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, + "metadata": { + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "id": 115360983 + } + }, + { + "id": 115359493, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 14.6307019, + 51.742906 + ], + [ + 14.6307019, + 51.742906 + ], + [ + 14.6307019, + 51.742906 + ], + [ + 14.6307019, + 51.742906 + ], + [ + 14.6307019, + 51.742906 + ] + ] + ] + }, + "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, + "metadata": { + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "id": 115359493 + } + }, + { + "id": 115357919, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.2362547, + 52.7961969 + ], + [ + 13.2362547, + 52.7961969 + ], + [ + 13.2362547, + 52.7961969 + ], + [ + 13.2362547, + 52.7961969 + ], + [ + 13.2362547, + 52.7961969 + ] + ] + ] + }, + "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, + "metadata": { + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "id": 115357919 + } + }, + { + "id": 115354401, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1.8357021, + 41.5925663 + ], + [ + 1.8357021, + 41.5925663 + ], + [ + 1.8357021, + 41.5925663 + ], + [ + 1.8357021, + 41.5925663 + ], + [ + 1.8357021, + 41.5925663 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "toilets", + "answer": 6, + "imagery": "osm", + "language": "nl", + "change_within_25m": 6 + }, + "id": 115354401 + } + }, + { + "id": 115354209, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1.8404278, + 41.5941748 + ], + [ + 1.8404278, + 41.5941748 + ], + [ + 1.8404278, + 41.5941748 + ], + [ + 1.8404278, + 41.5941748 + ], + [ + 1.8404278, + 41.5941748 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "aed", + "answer": 4, + "imagery": "osm", + "language": "nl", + "add-image": 1, + "change_within_25m": 5 + }, + "id": 115354209 + } + }, + { + "id": 115354036, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1.8362297, + 41.5961095 + ], + [ + 1.8383445, + 41.5961095 + ], + [ + 1.8383445, + 41.597426 + ], + [ + 1.8362297, + 41.597426 + ], + [ + 1.8362297, + 41.5961095 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "answer": 2, + "create": 2, + "imagery": "CartoDB.Voyager", + "language": "nl", + "add-image": 2, + "change_over_5000m": 2, + "change_within_25m": 4 + }, + "id": 115354036 + } + }, + { + "id": 115353415, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -1.5238085, + 47.428494 + ], + [ + -1.5238085, + 47.428494 + ], + [ + -1.5238085, + 47.428494 + ], + [ + -1.5238085, + 47.428494 + ], + [ + -1.5238085, + 47.428494 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "answer": 5, + "create": 1, + "imagery": "osm", + "language": "en", + "add-image": 1 + }, + "id": 115353415 + } + }, + { + "id": 115342756, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 77.4353121, + 8.1780898 + ], + [ + 77.8644753, + 8.1780898 + ], + [ + 77.8644753, + 8.3402198 + ], + [ + 77.4353121, + 8.3402198 + ], + [ + 77.4353121, + 8.1780898 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 2, + "imagery": "osm", + "language": "en" + }, + "id": 115342756 + } + }, + { + "id": 115340330, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2.2097867, + 41.5415014 + ], + [ + 2.209791, + 41.5415014 + ], + [ + 2.209791, + 41.5415238 + ], + [ + 2.2097867, + 41.5415238 + ], + [ + 2.2097867, + 41.5415014 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "trees", + "create": 1, + "imagery": "osm", + "language": "en", + "move:node/9364014890": "improve_accuracy" + }, + "id": 115340330 + } + }, + { + "id": 115336696, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2.2784074, + 41.5984676 + ], + [ + 2.2791884, + 41.5984676 + ], + [ + 2.2791884, + 41.598835 + ], + [ + 2.2784074, + 41.598835 + ], + [ + 2.2784074, + 41.5984676 + ] + ] + ] + }, + "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, + "metadata": { + "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 + }, + "id": 115336696 + } + }, + { + "id": 115335124, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 80.179523, + 12.9243653 + ], + [ + 80.2677015, + 12.9243653 + ], + [ + 80.2677015, + 13.1115335 + ], + [ + 80.179523, + 13.1115335 + ], + [ + 80.179523, + 12.9243653 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 109, + "imagery": "osm", + "language": "en" + }, + "id": 115335124 + } + }, + { + "id": 115326275, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2.2366328, + 41.4652271 + ], + [ + 2.2384688, + 41.4652271 + ], + [ + 2.2384688, + 41.467009 + ], + [ + 2.2366328, + 41.467009 + ], + [ + 2.2366328, + 41.4652271 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "https://llefia.org/arbres/mapcomplete1.json", + "answer": 17, + "imagery": "HDM_HOT", + "language": "ca", + "add-image": 8 + }, + "id": 115326275 + } + }, + { + "id": 115313460, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.235192, + 51.2103063 + ], + [ + 3.235192, + 51.2103063 + ], + [ + 3.235192, + 51.2103063 + ], + [ + 3.235192, + 51.2103063 + ], + [ + 3.235192, + 51.2103063 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "Composthoekjes", + "answer": 2, + "create": 1, + "imagery": "osm", + "language": "nl", + "change_over_5000m": 1, + "change_within_25m": 2 + }, + "id": 115313460 + } + }, + { + "id": 115310002, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.2150101, + 51.2155688 + ], + [ + 3.2150101, + 51.2155688 + ], + [ + 3.2150101, + 51.2155688 + ], + [ + 3.2150101, + 51.2155688 + ], + [ + 3.2150101, + 51.2155688 + ] + ] + ] + }, + "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, + "metadata": { + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "postboxes", + "imagery": "CartoDB.Voyager", + "deletion": 1, + "language": "en", + "change_within_500m": 1, + "deletion:node/1603226230": "disused" + }, + "id": 115310002 + } + }, + { + "id": 115298834, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.4771095, + 51.0270432 + ], + [ + 4.4781879, + 51.0270432 + ], + [ + 4.4781879, + 51.0279266 + ], + [ + 4.4771095, + 51.0279266 + ], + [ + 4.4771095, + 51.0270432 + ] + ] + ] + }, + "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, + "metadata": { + "host": "pietervdvn.github.io", + "move": 93, + "path": "mc/develop/", + "theme": "grb", + "delete": 3, + "import": 1, + "imagery": "AGIVFlandersGRB", + "language": "nl", + "conflation": 20, + "change_over_5000m": 1 + }, + "id": 115298834 + } + }, + { + "id": 115294562, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 80.2243593, + 13.0187074 + ], + [ + 80.2943986, + 13.0187074 + ], + [ + 80.2943986, + 13.1019086 + ], + [ + 80.2243593, + 13.1019086 + ], + [ + 80.2243593, + 13.0187074 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 184, + "imagery": "osm", + "language": "en" + }, + "id": 115294562 + } + }, + { + "id": 115290470, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.1471063, + 41.9707682 + ], + [ + 3.1471063, + 41.9707682 + ], + [ + 3.1471063, + 41.9707682 + ], + [ + 3.1471063, + 41.9707682 + ], + [ + 3.1471063, + 41.9707682 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "aed", + "answer": 4, + "create": 1, + "imagery": "osm", + "language": "nl", + "add-image": 1, + "change_over_5000m": 1, + "change_within_25m": 5 + }, + "id": 115290470 + } + }, + { + "id": 115289364, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.1430623, + 41.9716975 + ], + [ + 3.1430623, + 41.9716975 + ], + [ + 3.1430623, + 41.9716975 + ], + [ + 3.1430623, + 41.9716975 + ], + [ + 3.1430623, + 41.9716975 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "answer": 4, + "create": 1, + "imagery": "osm", + "language": "nl", + "add-image": 1, + "change_over_5000m": 1, + "change_within_25m": 5 + }, + "id": 115289364 + } + }, + { + "id": 115287407, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.0887882, + 41.9778827 + ], + [ + 3.0887882, + 41.9778827 + ], + [ + 3.0887882, + 41.9778827 + ], + [ + 3.0887882, + 41.9778827 + ], + [ + 3.0887882, + 41.9778827 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "aed", + "answer": 3, + "imagery": "osm", + "language": "nl", + "add-image": 1, + "change_within_25m": 4 + }, + "id": 115287407 + } + }, + { + "id": 115287307, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 80.2339203, + 13.0524256 + ], + [ + 80.2502816, + 13.0524256 + ], + [ + 80.2502816, + 13.0538775 + ], + [ + 80.2339203, + 13.0538775 + ], + [ + 80.2339203, + 13.0524256 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 22, + "imagery": "osm", + "language": "en" + }, + "id": 115287307 + } + }, + { + "id": 115286627, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.0888559, + 41.9766854 + ], + [ + 3.0924694, + 41.9766854 + ], + [ + 3.0924694, + 41.9785657 + ], + [ + 3.0888559, + 41.9785657 + ], + [ + 3.0888559, + 41.9766854 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "answer": 3, + "create": 1, + "imagery": "CartoDB.Voyager", + "language": "nl", + "add-image": 2, + "change_over_5000m": 1, + "change_within_25m": 5 + }, + "id": 115286627 + } + }, + { + "id": 115286554, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.0887023, + 41.9767707 + ], + [ + 3.0925498, + 41.9767707 + ], + [ + 3.0925498, + 41.9778617 + ], + [ + 3.0887023, + 41.9778617 + ], + [ + 3.0887023, + 41.9767707 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "toilets", + "answer": 15, + "imagery": "osm", + "language": "nl", + "add-image": 2, + "change_within_25m": 17 + }, + "id": 115286554 + } + }, + { + "id": 115281610, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 7.5406062, + 44.3797975 + ], + [ + 7.545588, + 44.3797975 + ], + [ + 7.545588, + 44.382453 + ], + [ + 7.5406062, + 44.382453 + ], + [ + 7.5406062, + 44.3797975 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 1, + "imagery": "osm", + "language": "en" + }, + "id": 115281610 + } + }, + { + "id": 115277502, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.0979643, + 51.0649279 + ], + [ + 3.0995094, + 51.0649279 + ], + [ + 3.0995094, + 51.0656066 + ], + [ + 3.0979643, + 51.0656066 + ], + [ + 3.0979643, + 51.0649279 + ] + ] + ] + }, + "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": 24, + "area": 0.0000010486593700026, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "127.0.0.1:1234", + "move": 35, + "theme": "grb", + "delete": 40, + "import": 22, + "imagery": "AGIVFlandersGRB", + "language": "nl", + "conflation": 10, + "change_over_5000m": 22 + }, + "id": 115277502 + } + }, + { + "id": 115275144, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -73.2401089, + -39.8232653 + ], + [ + -73.2401089, + -39.8232653 + ], + [ + -73.2401089, + -39.8232653 + ], + [ + -73.2401089, + -39.8232653 + ], + [ + -73.2401089, + -39.8232653 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "cyclosm", + "language": "en", + "add-image": 1 + }, + "id": 115275144 + } + }, + { + "id": 115271670, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 7.5316852, + 44.3791527 + ], + [ + 7.5451632, + 44.3791527 + ], + [ + 7.5451632, + 44.3852799 + ], + [ + 7.5316852, + 44.3852799 + ], + [ + 7.5316852, + 44.3791527 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 14, + "imagery": "osm", + "language": "en" + }, + "id": 115271670 + } + }, + { + "id": 115256236, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 14.6353386, + 51.7435432 + ], + [ + 14.6432168, + 51.7435432 + ], + [ + 14.6432168, + 51.7453962 + ], + [ + 14.6353386, + 51.7453962 + ], + [ + 14.6353386, + 51.7435432 + ] + ] + ] + }, + "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, + "metadata": { + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "id": 115256236 + } + }, + { + "id": 115255765, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.2760364, + 42.2890803 + ], + [ + 3.2760364, + 42.2890803 + ], + [ + 3.2760364, + 42.2890803 + ], + [ + 3.2760364, + 42.2890803 + ], + [ + 3.2760364, + 42.2890803 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "answer": 1, + "create": 1, + "imagery": "osm", + "language": "nl", + "change_over_5000m": 1, + "change_within_25m": 1 + }, + "id": 115255765 + } + }, + { + "id": 115247011, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 79.1336434, + 10.7824759 + ], + [ + 79.398399, + 10.7824759 + ], + [ + 79.398399, + 10.956863 + ], + [ + 79.1336434, + 10.956863 + ], + [ + 79.1336434, + 10.7824759 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 16, + "imagery": "osm", + "language": "en" + }, + "id": 115247011 + } + }, + { + "id": 115243413, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.0781151, + 42.5270775 + ], + [ + 3.0781151, + 42.5270775 + ], + [ + 3.0781151, + 42.5270775 + ], + [ + 3.0781151, + 42.5270775 + ], + [ + 3.0781151, + 42.5270775 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 6, + "create": 1, + "imagery": "CartoDB.Voyager", + "language": "nl", + "change_over_5000m": 1, + "change_within_25m": 6 + }, + "id": 115243413 + } + }, + { + "id": 115239186, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.1020307, + 50.9623352 + ], + [ + 3.1136703, + 50.9623352 + ], + [ + 3.1136703, + 50.9698728 + ], + [ + 3.1020307, + 50.9698728 + ], + [ + 3.1020307, + 50.9623352 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "move": 169, + "theme": "grb", + "import": 39, + "imagery": "osm", + "language": "nl", + "conflation": 70 + }, + "id": 115239186 + } + }, + { + "id": 115239005, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 78.6777187, + 10.7725987 + ], + [ + 79.6984717, + 10.7725987 + ], + [ + 79.6984717, + 11.6258542 + ], + [ + 78.6777187, + 11.6258542 + ], + [ + 78.6777187, + 10.7725987 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 33, + "imagery": "osm", + "language": "en" + }, + "id": 115239005 + } + }, + { + "id": 115228819, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.1406106, + 51.0110456 + ], + [ + 3.1455007, + 51.0110456 + ], + [ + 3.1455007, + 51.0122551 + ], + [ + 3.1406106, + 51.0122551 + ], + [ + 3.1406106, + 51.0110456 + ] + ] + ] + }, + "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, + "metadata": { + "host": "127.0.0.1:1234", + "move": 53, + "theme": "grb", + "answer": 3, + "import": 7, + "imagery": "AGIV", + "language": "en", + "conflation": 22, + "change_over_5000m": 10 + }, + "id": 115228819 + } + }, + { + "id": 115226904, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 7.6407257, + 46.3114969 + ], + [ + 7.6436922, + 46.3114969 + ], + [ + 7.6436922, + 46.3115265 + ], + [ + 7.6407257, + 46.3115265 + ], + [ + 7.6407257, + 46.3114969 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "aed", + "answer": 7, + "create": 2, + "imagery": "swisstopo_swissimage", + "language": "de", + "move:node/9356644189": "improve_accuracy" + }, + "id": 115226904 + } + }, + { + "id": 115222993, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -73.2278625, + -39.8336576 + ], + [ + -73.2278385, + -39.8336576 + ], + [ + -73.2278385, + -39.8335983 + ], + [ + -73.2278625, + -39.8335983 + ], + [ + -73.2278625, + -39.8336576 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "osm", + "language": "en", + "add-image": 2 + }, + "id": 115222993 + } + }, + { + "id": 115216938, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 6.5562805, + 53.0189696 + ], + [ + 6.5562805, + 53.0189696 + ], + [ + 6.5562805, + 53.0189696 + ], + [ + 6.5562805, + 53.0189696 + ], + [ + 6.5562805, + 53.0189696 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "create": 1, + "imagery": "osm", + "language": "en", + "change_over_5000m": 1 + }, + "id": 115216938 + } + }, + { + "id": 115214557, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.0704495, + 50.9652482 + ], + [ + 3.1151082, + 50.9652482 + ], + [ + 3.1151082, + 50.9767972 + ], + [ + 3.0704495, + 50.9767972 + ], + [ + 3.0704495, + 50.9652482 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "move": 115, + "theme": "grb", + "import": 77, + "imagery": "osm", + "language": "nl", + "conflation": 46 + }, + "id": 115214557 + } + }, + { + "id": 115214380, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.1058277, + 50.967149 + ], + [ + 3.1097581, + 50.967149 + ], + [ + 3.1097581, + 50.9698988 + ], + [ + 3.1058277, + 50.9698988 + ], + [ + 3.1058277, + 50.967149 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "move": 95, + "theme": "grb", + "import": 22, + "imagery": "osm", + "language": "nl", + "conflation": 42 + }, + "id": 115214380 + } + }, + { + "id": 115210315, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.693608, + 47.2161791 + ], + [ + 8.693608, + 47.2161791 + ], + [ + 8.693608, + 47.2161791 + ], + [ + 8.693608, + 47.2161791 + ], + [ + 8.693608, + 47.2161791 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "pingpong", + "create": 1, + "imagery": "osm", + "language": "nl" + }, + "id": 115210315 + } + }, + { + "id": 115209594, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.872297, + 50.760234 + ], + [ + 3.8723779, + 50.760234 + ], + [ + 3.8723779, + 50.7602849 + ], + [ + 3.872297, + 50.7602849 + ], + [ + 3.872297, + 50.760234 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "grb", + "import": 1, + "imagery": "AGIV", + "language": "nl" + }, + "id": 115209594 + } + }, + { + "id": 115207937, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.1355843, + 50.9157332 + ], + [ + 3.142962, + 50.9157332 + ], + [ + 3.142962, + 50.9195751 + ], + [ + 3.1355843, + 50.9195751 + ], + [ + 3.1355843, + 50.9157332 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "move": 78, + "theme": "grb", + "import": 14, + "imagery": "osm", + "language": "nl", + "conflation": 22 + }, + "id": 115207937 + } + }, + { + "id": 115206824, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.4850607, + 51.0367033 + ], + [ + 4.4876131, + 51.0367033 + ], + [ + 4.4876131, + 51.0377602 + ], + [ + 4.4850607, + 51.0377602 + ], + [ + 4.4850607, + 51.0367033 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "move": 35, + "theme": "grb", + "imagery": "AGIVFlandersGRB", + "language": "nl", + "conflation": 4 + }, + "id": 115206824 + } + }, + { + "id": 115205980, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.472104, + 51.0352891 + ], + [ + 4.4732842, + 51.0352891 + ], + [ + 4.4732842, + 51.0399284 + ], + [ + 4.472104, + 51.0399284 + ], + [ + 4.472104, + 51.0352891 + ] + ] + ] + }, + "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, + "metadata": { + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "etymology", + "answer": 22, + "imagery": "osm", + "language": "nl", + "change_over_5000m": 22 + }, + "id": 115205980 + } + }, + { + "id": 115203113, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.1042979, + 50.8374897 + ], + [ + 3.6893942, + 50.8374897 + ], + [ + 3.6893942, + 50.9701062 + ], + [ + 3.1042979, + 50.9701062 + ], + [ + 3.1042979, + 50.8374897 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "move": 522, + "theme": "grb", + "import": 40, + "imagery": "osm", + "language": "nl", + "conflation": 226 + }, + "id": 115203113 + } + }, + { + "id": 115191464, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 7.5310034, + 44.3777973 + ], + [ + 7.5388889, + 44.3777973 + ], + [ + 7.5388889, + 44.3829714 + ], + [ + 7.5310034, + 44.3829714 + ], + [ + 7.5310034, + 44.3777973 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 18, + "imagery": "osm", + "language": "en" + }, + "id": 115191464 + } + }, + { + "id": 115181170, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 7.5341689, + 44.381305 + ], + [ + 7.5412787, + 44.381305 + ], + [ + 7.5412787, + 44.385239 + ], + [ + 7.5341689, + 44.385239 + ], + [ + 7.5341689, + 44.381305 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 9, + "imagery": "osm", + "language": "en" + }, + "id": 115181170 + } + }, + { + "id": 115173185, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 78.0462063, + 9.8806051 + ], + [ + 78.1120737, + 9.8806051 + ], + [ + 78.1120737, + 9.9084039 + ], + [ + 78.0462063, + 9.9084039 + ], + [ + 78.0462063, + 9.8806051 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 12, + "imagery": "osm", + "language": "en" + }, + "id": 115173185 + } + }, + { + "id": 115170960, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 14.6381227, + 51.7454734 + ], + [ + 14.6381227, + 51.7454734 + ], + [ + 14.6381227, + 51.7454734 + ], + [ + 14.6381227, + 51.7454734 + ], + [ + 14.6381227, + 51.7454734 + ] + ] + ] + }, + "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, + "metadata": { + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "id": 115170960 + } + }, + { + "id": 115161944, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 10.0038248, + 53.4969448 + ], + [ + 10.0066006, + 53.4969448 + ], + [ + 10.0066006, + 53.4978089 + ], + [ + 10.0038248, + 53.4978089 + ], + [ + 10.0038248, + 53.4969448 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "food", + "answer": 4, + "imagery": "osm", + "language": "en", + "change_within_500m": 4 + }, + "id": 115161944 + } + }, + { + "id": 115161754, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 79.4922519, + 11.6136145 + ], + [ + 79.4951849, + 11.6136145 + ], + [ + 79.4951849, + 11.6177514 + ], + [ + 79.4922519, + 11.6177514 + ], + [ + 79.4922519, + 11.6136145 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 2, + "imagery": "osm", + "language": "en" + }, + "id": 115161754 + } + }, + { + "id": 115159362, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.1816176, + 51.1931976 + ], + [ + 3.2326427, + 51.1931976 + ], + [ + 3.2326427, + 51.3139366 + ], + [ + 3.1816176, + 51.3139366 + ], + [ + 3.1816176, + 51.1931976 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "aed_brugge", + "imagery": "HDM_HOT", + "language": "nl", + "add-image": 11, + "change_over_5000m": 10, + "change_within_500m": 1 + }, + "id": 115159362 + } + }, + { + "id": 115142549, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.2213753, + 51.1881789 + ], + [ + 3.2218866, + 51.1881789 + ], + [ + 3.2218866, + 51.1882176 + ], + [ + 3.2213753, + 51.1882176 + ], + [ + 3.2213753, + 51.1881789 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "answer": 22, + "create": 3, + "imagery": "AGIVFlandersGRB", + "language": "en", + "change_over_5000m": 3, + "change_within_25m": 13, + "change_within_50m": 9 + }, + "id": 115142549 + } + }, + { + "id": 115141856, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 15.6262713, + 54.1545752 + ], + [ + 15.62648, + 54.1545752 + ], + [ + 15.62648, + 54.154765 + ], + [ + 15.6262713, + 54.154765 + ], + [ + 15.6262713, + 54.1545752 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "trees", + "answer": 12, + "create": 1, + "imagery": "osm", + "language": "en" + }, + "id": 115141856 + } + }, + { + "id": 115140412, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 15.5924132, + 54.1639641 + ], + [ + 15.5999155, + 54.1639641 + ], + [ + 15.5999155, + 54.1696352 + ], + [ + 15.5924132, + 54.1696352 + ], + [ + 15.5924132, + 54.1639641 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "street_lighting", + "answer": 25, + "create": 3, + "imagery": "osm", + "language": "en" + }, + "id": 115140412 + } + }, + { + "id": 115137973, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 7.5372968, + 44.3805955 + ], + [ + 7.5487473, + 44.3805955 + ], + [ + 7.5487473, + 44.3897816 + ], + [ + 7.5372968, + 44.3897816 + ], + [ + 7.5372968, + 44.3805955 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 25, + "imagery": "osm", + "language": "en" + }, + "id": 115137973 + } + }, + { + "id": 115137129, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.2251203, + 51.2147858 + ], + [ + 3.2251203, + 51.2147858 + ], + [ + 3.2251203, + 51.2147858 + ], + [ + 3.2251203, + 51.2147858 + ], + [ + 3.2251203, + 51.2147858 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "artwork", + "imagery": "osm", + "language": "nl", + "add-image": 1, + "change_within_25m": 1 + }, + "id": 115137129 + } + }, + { + "id": 115137023, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2.2363665, + 41.429311 + ], + [ + 2.2393907, + 41.429311 + ], + [ + 2.2393907, + 41.4333167 + ], + [ + 2.2363665, + 41.4333167 + ], + [ + 2.2363665, + 41.429311 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "https://llefia.org/arbres/mapcomplete1.json", + "answer": 97, + "create": 8, + "imagery": "EsriWorldImageryClarity", + "language": "ca", + "change_over_5000m": 3, + "change_within_25m": 8, + "change_within_50m": 3, + "change_within_100m": 33, + "change_within_500m": 10 + }, + "id": 115137023 + } + }, + { + "id": 115135141, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.087625, + 50.7347819 + ], + [ + 4.1056156, + 50.7347819 + ], + [ + 4.1056156, + 51.0332588 + ], + [ + 4.087625, + 51.0332588 + ], + [ + 4.087625, + 50.7347819 + ] + ] + ] + }, + "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, + "metadata": { + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 98, + "language": "nl", + "change_over_5000m": 1 + }, + "id": 115135141 + } + }, + { + "id": 115134880, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.0780908, + 50.8097708 + ], + [ + 4.1068245, + 50.8097708 + ], + [ + 4.1068245, + 51.1465718 + ], + [ + 4.0780908, + 51.1465718 + ], + [ + 4.0780908, + 50.8097708 + ] + ] + ] + }, + "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, + "metadata": { + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 30, + "language": "nl", + "change_over_5000m": 30 + }, + "id": 115134880 + } + }, + { + "id": 115134486, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.0652024, + 50.7359437 + ], + [ + 4.0884688, + 50.7359437 + ], + [ + 4.0884688, + 50.823868 + ], + [ + 4.0652024, + 50.823868 + ], + [ + 4.0652024, + 50.7359437 + ] + ] + ] + }, + "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, + "metadata": { + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 140, + "language": "nl" + }, + "id": 115134486 + } + }, + { + "id": 115134385, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.0660048, + 50.9647383 + ], + [ + 4.0881209, + 50.9647383 + ], + [ + 4.0881209, + 51.1466939 + ], + [ + 4.0660048, + 51.1466939 + ], + [ + 4.0660048, + 50.9647383 + ] + ] + ] + }, + "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, + "metadata": { + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 137, + "language": "nl" + }, + "id": 115134385 + } + }, + { + "id": 115134377, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.0663651, + 51.1715564 + ], + [ + 4.0777173, + 51.1715564 + ], + [ + 4.0777173, + 51.207796 + ], + [ + 4.0663651, + 51.207796 + ], + [ + 4.0663651, + 51.1715564 + ] + ] + ] + }, + "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, + "metadata": { + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 33, + "language": "nl" + }, + "id": 115134377 + } + }, + { + "id": 115134139, + "type": "Feature", + "geometry": null, + "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:30Z", + "reviewed_features": [], + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 2, + "language": "nl" + }, + "id": 115134139 + } + }, + { + "id": 115134119, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.0691573, + 51.2292684 + ], + [ + 4.0692839, + 51.2292684 + ], + [ + 4.0692839, + 51.229382 + ], + [ + 4.0691573, + 51.229382 + ], + [ + 4.0691573, + 51.2292684 + ] + ] + ] + }, + "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, + "metadata": { + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 1, + "language": "nl" + }, + "id": 115134119 + } + }, + { + "id": 115134083, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.0464304, + 50.7358289 + ], + [ + 4.0663416, + 50.7358289 + ], + [ + 4.0663416, + 50.7467473 + ], + [ + 4.0464304, + 50.7467473 + ], + [ + 4.0464304, + 50.7358289 + ] + ] + ] + }, + "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, + "metadata": { + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 82, + "language": "nl" + }, + "id": 115134083 + } + }, + { + "id": 115130255, + "type": "Feature", + "geometry": null, + "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": 0, + "delete": 0, + "area": null, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 50, + "language": "nl" + }, + "id": 115130255 + } + }, + { + "id": 115130254, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.0443685, + 50.7641894 + ], + [ + 4.066336, + 50.7641894 + ], + [ + 4.066336, + 50.9991606 + ], + [ + 4.0443685, + 50.9991606 + ], + [ + 4.0443685, + 50.7641894 + ] + ] + ] + }, + "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, + "metadata": { + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 103, + "language": "nl" + }, + "id": 115130254 + } + }, + { + "id": 115130191, + "type": "Feature", + "geometry": null, + "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:33:29Z", + "reviewed_features": [], + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 1092, + "language": "nl" + }, + "id": 115130191 + } + }, + { + "id": 115130173, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.0442474, + 51.1372189 + ], + [ + 4.0664543, + 51.1372189 + ], + [ + 4.0664543, + 51.1647913 + ], + [ + 4.0442474, + 51.1647913 + ], + [ + 4.0442474, + 51.1372189 + ] + ] + ] + }, + "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, + "metadata": { + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 2169, + "language": "nl" + }, + "id": 115130173 + } + }, + { + "id": 115130103, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.0458507, + 51.164681 + ], + [ + 4.0662609, + 51.164681 + ], + [ + 4.0662609, + 51.1749109 + ], + [ + 4.0458507, + 51.1749109 + ], + [ + 4.0458507, + 51.164681 + ] + ] + ] + }, + "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, + "metadata": { + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 683, + "language": "nl" + }, + "id": 115130103 + } + }, + { + "id": 115129914, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.0210255, + 50.7230033 + ], + [ + 4.0443982, + 50.7230033 + ], + [ + 4.0443982, + 51.1773124 + ], + [ + 4.0210255, + 51.1773124 + ], + [ + 4.0210255, + 50.7230033 + ] + ] + ] + }, + "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, + "metadata": { + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 998, + "language": "nl" + }, + "id": 115129914 + } + }, + { + "id": 115129864, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.0222774, + 51.1508356 + ], + [ + 4.0444064, + 51.1508356 + ], + [ + 4.0444064, + 51.2411794 + ], + [ + 4.0222774, + 51.2411794 + ], + [ + 4.0222774, + 51.1508356 + ] + ] + ] + }, + "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, + "metadata": { + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 1152, + "language": "nl" + }, + "id": 115129864 + } + }, + { + "id": 115129859, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.0002726, + 50.7107749 + ], + [ + 4.022328, + 50.7107749 + ], + [ + 4.022328, + 51.167414 + ], + [ + 4.0002726, + 51.167414 + ], + [ + 4.0002726, + 50.7107749 + ] + ] + ] + }, + "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, + "metadata": { + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 326, + "language": "nl" + }, + "id": 115129859 + } + }, + { + "id": 115129854, + "type": "Feature", + "geometry": null, + "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:42Z", + "reviewed_features": [], + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 322, + "language": "nl" + }, + "id": 115129854 + } + }, + { + "id": 115129850, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.0002726, + 50.7107749 + ], + [ + 4.022328, + 50.7107749 + ], + [ + 4.022328, + 50.7321113 + ], + [ + 4.0002726, + 50.7321113 + ], + [ + 4.0002726, + 50.7107749 + ] + ] + ] + }, + "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, + "metadata": { + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 320, + "language": "nl" + }, + "id": 115129850 + } + }, + { + "id": 115129823, + "type": "Feature", + "geometry": null, + "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:24:50Z", + "reviewed_features": [], + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 327, + "language": "nl" + }, + "id": 115129823 + } + }, + { + "id": 115129765, + "type": "Feature", + "geometry": null, + "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:23:08Z", + "reviewed_features": [], + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 299, + "language": "nl" + }, + "id": 115129765 + } + }, + { + "id": 115128261, + "type": "Feature", + "geometry": null, + "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:41:17Z", + "reviewed_features": [], + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 66, + "language": "nl" + }, + "id": 115128261 + } + }, + { + "id": 115128208, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.0029268, + 51.0141695 + ], + [ + 4.0119966, + 51.0141695 + ], + [ + 4.0119966, + 51.0267722 + ], + [ + 4.0029268, + 51.0267722 + ], + [ + 4.0029268, + 51.0141695 + ] + ] + ] + }, + "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, + "metadata": { + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 121, + "language": "nl" + }, + "id": 115128208 + } + }, + { + "id": 115127935, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.0007038, + 51.1383283 + ], + [ + 4.0220261, + 51.1383283 + ], + [ + 4.0220261, + 51.1649344 + ], + [ + 4.0007038, + 51.1649344 + ], + [ + 4.0007038, + 51.1383283 + ] + ] + ] + }, + "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, + "metadata": { + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 509, + "language": "nl" + }, + "id": 115127935 + } + }, + { + "id": 115127772, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.9866409, + 51.019795 + ], + [ + 3.9921989, + 51.019795 + ], + [ + 3.9921989, + 51.0218312 + ], + [ + 3.9866409, + 51.0218312 + ], + [ + 3.9866409, + 51.019795 + ] + ] + ] + }, + "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, + "metadata": { + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 55, + "language": "nl" + }, + "id": 115127772 + } + }, + { + "id": 115127726, + "type": "Feature", + "geometry": null, + "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:22:41Z", + "reviewed_features": [], + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 55, + "language": "nl" + }, + "id": 115127726 + } + }, + { + "id": 115127657, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.9857549, + 50.7080369 + ], + [ + 4.0005384, + 50.7080369 + ], + [ + 4.0005384, + 51.1447721 + ], + [ + 3.9857549, + 51.1447721 + ], + [ + 3.9857549, + 50.7080369 + ] + ] + ] + }, + "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, + "metadata": { + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 114, + "language": "nl" + }, + "id": 115127657 + } + }, + { + "id": 115127587, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.0482153, + 42.5519041 + ], + [ + 3.0482153, + 42.5519041 + ], + [ + 3.0482153, + 42.5519041 + ], + [ + 3.0482153, + 42.5519041 + ], + [ + 3.0482153, + 42.5519041 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "toilets", + "answer": 8, + "imagery": "osm", + "language": "nl", + "change_within_25m": 7, + "change_within_100m": 1 + }, + "id": 115127587 + } + }, + { + "id": 115126967, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.2984385, + 50.8798777 + ], + [ + 4.3290102, + 50.8798777 + ], + [ + 4.3290102, + 50.8836611 + ], + [ + 4.2984385, + 50.8836611 + ], + [ + 4.2984385, + 50.8798777 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "climbing", + "answer": 3, + "create": 2, + "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 + }, + "id": 115126967 + } + }, + { + "id": 115126671, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.8923529, + 50.8868653 + ], + [ + 3.999872, + 50.8868653 + ], + [ + 3.999872, + 51.1166365 + ], + [ + 3.8923529, + 51.1166365 + ], + [ + 3.8923529, + 50.8868653 + ] + ] + ] + }, + "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, + "metadata": { + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 19, + "language": "nl" + }, + "id": 115126671 + } + }, + { + "id": 115126282, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.7815894, + 50.8633614 + ], + [ + 3.8802521, + 50.8633614 + ], + [ + 3.8802521, + 51.1844073 + ], + [ + 3.7815894, + 51.1844073 + ], + [ + 3.7815894, + 50.8633614 + ] + ] + ] + }, + "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, + "metadata": { + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 39, + "language": "nl" + }, + "id": 115126282 + } + }, + { + "id": 115125961, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.7237214, + 51.0329237 + ], + [ + 3.7240764, + 51.0329237 + ], + [ + 3.7240764, + 51.0335686 + ], + [ + 3.7237214, + 51.0335686 + ], + [ + 3.7237214, + 51.0329237 + ] + ] + ] + }, + "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, + "metadata": { + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 37, + "language": "nl" + }, + "id": 115125961 + } + }, + { + "id": 115125958, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.7169207, + 51.0427195 + ], + [ + 3.7340608, + 51.0427195 + ], + [ + 3.7340608, + 51.0535721 + ], + [ + 3.7169207, + 51.0535721 + ], + [ + 3.7169207, + 51.0427195 + ] + ] + ] + }, + "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, + "metadata": { + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 35, + "language": "nl" + }, + "id": 115125958 + } + }, + { + "id": 115125910, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.6945297, + 50.7742281 + ], + [ + 3.7932456, + 50.7742281 + ], + [ + 3.7932456, + 51.1984205 + ], + [ + 3.6945297, + 51.1984205 + ], + [ + 3.6945297, + 50.7742281 + ] + ] + ] + }, + "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, + "metadata": { + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 331, + "language": "nl" + }, + "id": 115125910 + } + }, + { + "id": 115125653, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.6407765, + 50.7963609 + ], + [ + 3.7149302, + 50.7963609 + ], + [ + 3.7149302, + 51.0652458 + ], + [ + 3.6407765, + 51.0652458 + ], + [ + 3.6407765, + 50.7963609 + ] + ] + ] + }, + "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, + "metadata": { + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 48, + "language": "nl" + }, + "id": 115125653 + } + }, + { + "id": 115120491, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.0227972, + 42.5473611 + ], + [ + 3.0227972, + 42.5473611 + ], + [ + 3.0227972, + 42.5473611 + ], + [ + 3.0227972, + 42.5473611 + ], + [ + 3.0227972, + 42.5473611 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "toilets", + "answer": 5, + "create": 1, + "imagery": "osm", + "language": "nl", + "change_over_5000m": 1, + "change_within_25m": 5 + }, + "id": 115120491 + } + }, + { + "id": 115120444, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.022976, + 42.547202 + ], + [ + 3.022976, + 42.547202 + ], + [ + 3.022976, + 42.547202 + ], + [ + 3.022976, + 42.547202 + ], + [ + 3.022976, + 42.547202 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "aed", + "answer": 4, + "create": 1, + "imagery": "osm", + "language": "nl", + "add-image": 1, + "change_over_5000m": 1, + "change_within_25m": 5 + }, + "id": 115120444 + } + }, + { + "id": 115119368, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 77.6780178, + 8.7262462 + ], + [ + 77.7102449, + 8.7262462 + ], + [ + 77.7102449, + 8.7307916 + ], + [ + 77.6780178, + 8.7307916 + ], + [ + 77.6780178, + 8.7262462 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 2, + "imagery": "osm", + "language": "en" + }, + "id": 115119368 + } + }, + { + "id": 115113341, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.5914388, + 50.8112903 + ], + [ + 3.6254393, + 50.8112903 + ], + [ + 3.6254393, + 51.0988257 + ], + [ + 3.5914388, + 51.0988257 + ], + [ + 3.5914388, + 50.8112903 + ] + ] + ] + }, + "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, + "metadata": { + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 12, + "language": "nl" + }, + "id": 115113341 + } + }, + { + "id": 115112863, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.4100265, + 50.7601721 + ], + [ + 3.5825618, + 50.7601721 + ], + [ + 3.5825618, + 51.2294563 + ], + [ + 3.4100265, + 51.2294563 + ], + [ + 3.4100265, + 50.7601721 + ] + ] + ] + }, + "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, + "metadata": { + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 238, + "language": "nl" + }, + "id": 115112863 + } + }, + { + "id": 115112710, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.3868919, + 50.8395054 + ], + [ + 3.4071992, + 50.8395054 + ], + [ + 3.4071992, + 50.9732038 + ], + [ + 3.3868919, + 50.9732038 + ], + [ + 3.3868919, + 50.8395054 + ] + ] + ] + }, + "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, + "metadata": { + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 14, + "language": "nl" + }, + "id": 115112710 + } + }, + { + "id": 115112694, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.3618121, + 50.8552361 + ], + [ + 3.3793001, + 50.8552361 + ], + [ + 3.3793001, + 50.8610286 + ], + [ + 3.3618121, + 50.8610286 + ], + [ + 3.3618121, + 50.8552361 + ] + ] + ] + }, + "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, + "metadata": { + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 49, + "language": "nl" + }, + "id": 115112694 + } + }, + { + "id": 115112693, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.3633304, + 50.9038772 + ], + [ + 3.3805441, + 50.9038772 + ], + [ + 3.3805441, + 50.9152769 + ], + [ + 3.3633304, + 50.9152769 + ], + [ + 3.3633304, + 50.9038772 + ] + ] + ] + }, + "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, + "metadata": { + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 21, + "language": "nl" + }, + "id": 115112693 + } + }, + { + "id": 115112656, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.37818, + 50.8608681 + ], + [ + 3.378449, + 50.8608681 + ], + [ + 3.378449, + 50.8610286 + ], + [ + 3.37818, + 50.8610286 + ], + [ + 3.37818, + 50.8608681 + ] + ] + ] + }, + "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, + "metadata": { + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 50, + "language": "nl" + }, + "id": 115112656 + } + }, + { + "id": 115112587, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.3274993, + 50.8517063 + ], + [ + 3.3277772, + 50.8517063 + ], + [ + 3.3277772, + 50.8519024 + ], + [ + 3.3274993, + 50.8519024 + ], + [ + 3.3274993, + 50.8517063 + ] + ] + ] + }, + "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, + "metadata": { + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 34, + "language": "nl" + }, + "id": 115112587 + } + }, + { + "id": 115112561, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.3325153, + 50.8085162 + ], + [ + 3.3760163, + 50.8085162 + ], + [ + 3.3760163, + 51.3390889 + ], + [ + 3.3325153, + 51.3390889 + ], + [ + 3.3325153, + 50.8085162 + ] + ] + ] + }, + "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, + "metadata": { + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 349, + "language": "nl" + }, + "id": 115112561 + } + }, + { + "id": 115112552, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.3191301, + 50.8626309 + ], + [ + 3.3406595, + 50.8626309 + ], + [ + 3.3406595, + 50.9022305 + ], + [ + 3.3191301, + 50.9022305 + ], + [ + 3.3191301, + 50.8626309 + ] + ] + ] + }, + "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, + "metadata": { + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 395, + "language": "nl" + }, + "id": 115112552 + } + }, + { + "id": 115109624, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 24.8800126, + 60.2622848 + ], + [ + 24.8913468, + 60.2622848 + ], + [ + 24.8913468, + 60.2623167 + ], + [ + 24.8800126, + 60.2623167 + ], + [ + 24.8800126, + 60.2622848 + ] + ] + ] + }, + "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, + "metadata": { + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "cyclofix", + "answer": 4, + "imagery": "CartoDB.Voyager", + "language": "en" + }, + "id": 115109624 + } + }, + { + "id": 115108008, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 7.5385748, + 44.3865665 + ], + [ + 7.5450117, + 44.3865665 + ], + [ + 7.5450117, + 44.389731 + ], + [ + 7.5385748, + 44.389731 + ], + [ + 7.5385748, + 44.3865665 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 8, + "imagery": "osm", + "language": "en", + "change_within_5000m": 8 + }, + "id": 115108008 + } + }, + { + "id": 115107812, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.3343452, + 50.8353629 + ], + [ + 4.3343452, + 50.8353629 + ], + [ + 4.3343452, + 50.8353629 + ], + [ + 4.3343452, + 50.8353629 + ], + [ + 4.3343452, + 50.8353629 + ] + ] + ] + }, + "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, + "metadata": { + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "maps", + "create": 1, + "imagery": "osm", + "language": "en", + "add-image": 1, + "change_over_5000m": 1, + "change_within_5000m": 1 + }, + "id": 115107812 + } + }, + { + "id": 115106646, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 79.4999183, + 10.9122053 + ], + [ + 79.833682, + 10.9122053 + ], + [ + 79.833682, + 11.6011457 + ], + [ + 79.4999183, + 11.6011457 + ], + [ + 79.4999183, + 10.9122053 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 3, + "imagery": "osm", + "language": "en" + }, + "id": 115106646 + } + }, + { + "id": 115106101, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.3797751, + 50.7737649 + ], + [ + 3.4658405, + 50.7737649 + ], + [ + 3.4658405, + 50.8082941 + ], + [ + 3.3797751, + 50.8082941 + ], + [ + 3.3797751, + 50.7737649 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "trees", + "answer": 7, + "create": 2, + "imagery": "AGIV", + "language": "en" + }, + "id": 115106101 + } + }, + { + "id": 115103568, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 7.4544248, + 53.2306006 + ], + [ + 7.4544248, + 53.2306006 + ], + [ + 7.4544248, + 53.2306006 + ], + [ + 7.4544248, + 53.2306006 + ], + [ + 7.4544248, + 53.2306006 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "create": 1, + "imagery": "CartoDB.Voyager", + "language": "en", + "change_over_5000m": 1 + }, + "id": 115103568 + } + }, + { + "id": 115102913, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 78.1188937, + 8.7931441 + ], + [ + 78.1427946, + 8.7931441 + ], + [ + 78.1427946, + 8.8575232 + ], + [ + 78.1188937, + 8.8575232 + ], + [ + 78.1188937, + 8.7931441 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 7, + "imagery": "osm", + "language": "en" + }, + "id": 115102913 + } + }, + { + "id": 115100932, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.9162873, + 51.1057835 + ], + [ + 4.9162873, + 51.1057835 + ], + [ + 4.9162873, + 51.1057835 + ], + [ + 4.9162873, + 51.1057835 + ], + [ + 4.9162873, + 51.1057835 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "aed", + "answer": 2, + "imagery": "osm", + "language": "en", + "change_within_500m": 2 + }, + "id": 115100932 + } + }, + { + "id": 115100836, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 79.4981831, + 11.6007785 + ], + [ + 79.5066595, + 11.6007785 + ], + [ + 79.5066595, + 11.6248804 + ], + [ + 79.4981831, + 11.6248804 + ], + [ + 79.4981831, + 11.6007785 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 3, + "imagery": "osm", + "language": "en" + }, + "id": 115100836 + } + }, + { + "id": 115100099, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 79.4820905, + 11.6036189 + ], + [ + 79.5124402, + 11.6036189 + ], + [ + 79.5124402, + 11.6257677 + ], + [ + 79.4820905, + 11.6257677 + ], + [ + 79.4820905, + 11.6036189 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 24, + "imagery": "osm", + "language": "en" + }, + "id": 115100099 + } + }, + { + "id": 115099830, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 14.6314342, + 51.7399468 + ], + [ + 14.6403304, + 51.7399468 + ], + [ + 14.6403304, + 51.7431374 + ], + [ + 14.6314342, + 51.7431374 + ], + [ + 14.6314342, + 51.7399468 + ] + ] + ] + }, + "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, + "metadata": { + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "id": 115099830 + } + }, + { + "id": 115098739, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.9162873, + 51.1057835 + ], + [ + 4.9162873, + 51.1057835 + ], + [ + 4.9162873, + 51.1057835 + ], + [ + 4.9162873, + 51.1057835 + ], + [ + 4.9162873, + 51.1057835 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "aed", + "answer": 2, + "imagery": "osm", + "language": "en", + "change_within_25m": 2 + }, + "id": 115098739 + } + }, + { + "id": 115097598, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 79.4657955, + 11.5994503 + ], + [ + 79.5494382, + 11.5994503 + ], + [ + 79.5494382, + 11.6257466 + ], + [ + 79.4657955, + 11.6257466 + ], + [ + 79.4657955, + 11.5994503 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 98, + "imagery": "osm", + "language": "en" + }, + "id": 115097598 + } + }, + { + "id": 115095784, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -9.0597638, + 53.2758628 + ], + [ + -9.0597638, + 53.2758628 + ], + [ + -9.0597638, + 53.2758628 + ], + [ + -9.0597638, + 53.2758628 + ], + [ + -9.0597638, + 53.2758628 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "aed", + "answer": 3, + "imagery": "osm", + "language": "en" + }, + "id": 115095784 + } + }, + { + "id": 115077361, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 149.025668, + -35.320061 + ], + [ + 149.025668, + -35.320061 + ], + [ + 149.025668, + -35.320061 + ], + [ + 149.025668, + -35.320061 + ], + [ + 149.025668, + -35.320061 + ] + ] + ] + }, + "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, + "metadata": { + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "toilets", + "answer": 4, + "imagery": "osm", + "language": "en", + "add-image": 1, + "change_within_25m": 5 + }, + "id": 115077361 + } + }, + { + "id": 115075383, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.2971211, + 50.8099479 + ], + [ + 3.3412837, + 50.8099479 + ], + [ + 3.3412837, + 51.3595295 + ], + [ + 3.2971211, + 51.3595295 + ], + [ + 3.2971211, + 50.8099479 + ] + ] + ] + }, + "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, + "metadata": { + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 795, + "language": "nl" + }, + "id": 115075383 + } + }, + { + "id": 115074314, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 151.2164827, + -33.8636398 + ], + [ + 151.2164827, + -33.8636398 + ], + [ + 151.2164827, + -33.8636398 + ], + [ + 151.2164827, + -33.8636398 + ], + [ + 151.2164827, + -33.8636398 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "osm", + "language": "en", + "add-image": 1 + }, + "id": 115074314 + } + }, + { + "id": 115069080, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 6.0738619, + 49.5913384 + ], + [ + 6.0738619, + 49.5913384 + ], + [ + 6.0738619, + 49.5913384 + ], + [ + 6.0738619, + 49.5913384 + ], + [ + 6.0738619, + 49.5913384 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "benches", + "answer": 2, + "imagery": "osm", + "language": "en" + }, + "id": 115069080 + } + }, + { + "id": 115068458, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2.2258186, + 41.4332297 + ], + [ + 2.235078, + 41.4332297 + ], + [ + 2.235078, + 41.4351757 + ], + [ + 2.2258186, + 41.4351757 + ], + [ + 2.2258186, + 41.4332297 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "https://llefia.org/arbres/mapcomplete1.json", + "answer": 19, + "create": 8, + "imagery": "HDM_HOT", + "language": "ca", + "add-image": 27, + "change_over_5000m": 8, + "change_within_25m": 46 + }, + "id": 115068458 + } + }, + { + "id": 115067636, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.3869755, + 50.8224716 + ], + [ + 4.3869755, + 50.8224716 + ], + [ + 4.3869755, + 50.8224716 + ], + [ + 4.3869755, + 50.8224716 + ], + [ + 4.3869755, + 50.8224716 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "bicyclelib", + "answer": 3, + "create": 1, + "imagery": "osm", + "language": "en" + }, + "id": 115067636 + } + }, + { + "id": 115067548, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.2533189, + 50.7520574 + ], + [ + 3.2973078, + 50.7520574 + ], + [ + 3.2973078, + 51.1863659 + ], + [ + 3.2533189, + 51.1863659 + ], + [ + 3.2533189, + 50.7520574 + ] + ] + ] + }, + "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, + "metadata": { + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 189, + "language": "nl" + }, + "id": 115067548 + } + }, + { + "id": 115066926, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.2304246, + 50.81091 + ], + [ + 3.2554229, + 50.81091 + ], + [ + 3.2554229, + 51.3143464 + ], + [ + 3.2304246, + 51.3143464 + ], + [ + 3.2304246, + 50.81091 + ] + ] + ] + }, + "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, + "metadata": { + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 87, + "language": "nl" + }, + "id": 115066926 + } + }, + { + "id": 115066632, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.2193313, + 50.8773704 + ], + [ + 3.2255079, + 50.8773704 + ], + [ + 3.2255079, + 50.8846631 + ], + [ + 3.2193313, + 50.8846631 + ], + [ + 3.2193313, + 50.8773704 + ] + ] + ] + }, + "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, + "metadata": { + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 7, + "language": "nl" + }, + "id": 115066632 + } + }, + { + "id": 115066513, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.2138436, + 51.0205678 + ], + [ + 3.2305721, + 51.0205678 + ], + [ + 3.2305721, + 51.0265815 + ], + [ + 3.2138436, + 51.0265815 + ], + [ + 3.2138436, + 51.0205678 + ] + ] + ] + }, + "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, + "metadata": { + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 6, + "language": "nl" + }, + "id": 115066513 + } + }, + { + "id": 115066501, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.2299097, + 51.0297181 + ], + [ + 3.2301806, + 51.0297181 + ], + [ + 3.2301806, + 51.0298915 + ], + [ + 3.2299097, + 51.0298915 + ], + [ + 3.2299097, + 51.0297181 + ] + ] + ] + }, + "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, + "metadata": { + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 1, + "language": "nl" + }, + "id": 115066501 + } + }, + { + "id": 115066382, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.2146821, + 51.1943045 + ], + [ + 3.2154552, + 51.1943045 + ], + [ + 3.2154552, + 51.1947277 + ], + [ + 3.2146821, + 51.1947277 + ], + [ + 3.2146821, + 51.1943045 + ] + ] + ] + }, + "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, + "metadata": { + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 1, + "language": "nl" + }, + "id": 115066382 + } + }, + { + "id": 115066269, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.1948985, + 51.2722058 + ], + [ + 3.1950578, + 51.2722058 + ], + [ + 3.1950578, + 51.2724904 + ], + [ + 3.1948985, + 51.2724904 + ], + [ + 3.1948985, + 51.2722058 + ] + ] + ] + }, + "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, + "metadata": { + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 1, + "language": "nl" + }, + "id": 115066269 + } + }, + { + "id": 115066236, + "type": "Feature", + "geometry": null, + "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": 0, + "delete": 0, + "area": null, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 1, + "language": "nl" + }, + "id": 115066236 + } + }, + { + "id": 115066235, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.1917695, + 50.790306 + ], + [ + 3.1919621, + 50.790306 + ], + [ + 3.1919621, + 50.7904147 + ], + [ + 3.1917695, + 50.7904147 + ], + [ + 3.1917695, + 50.790306 + ] + ] + ] + }, + "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, + "metadata": { + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 1, + "language": "nl" + }, + "id": 115066235 + } + }, + { + "id": 115066138, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.1884781, + 50.908336 + ], + [ + 3.1888872, + 50.908336 + ], + [ + 3.1888872, + 50.908563 + ], + [ + 3.1884781, + 50.908563 + ], + [ + 3.1884781, + 50.908336 + ] + ] + ] + }, + "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, + "metadata": { + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 1, + "language": "nl" + }, + "id": 115066138 + } + }, + { + "id": 115066115, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.1883961, + 50.9309529 + ], + [ + 3.1886438, + 50.9309529 + ], + [ + 3.1886438, + 50.9311162 + ], + [ + 3.1883961, + 50.9311162 + ], + [ + 3.1883961, + 50.9309529 + ] + ] + ] + }, + "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, + "metadata": { + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 1, + "language": "nl" + }, + "id": 115066115 + } + }, + { + "id": 115066055, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.2023366, + 51.0024615 + ], + [ + 3.2032529, + 51.0024615 + ], + [ + 3.2032529, + 51.0030402 + ], + [ + 3.2023366, + 51.0030402 + ], + [ + 3.2023366, + 51.0024615 + ] + ] + ] + }, + "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, + "metadata": { + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 5, + "language": "nl" + }, + "id": 115066055 + } + }, + { + "id": 115064642, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.1977337, + 51.2936913 + ], + [ + 3.200589, + 51.2936913 + ], + [ + 3.200589, + 51.2945038 + ], + [ + 3.1977337, + 51.2945038 + ], + [ + 3.1977337, + 51.2936913 + ] + ] + ] + }, + "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, + "metadata": { + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 9, + "language": "nl" + }, + "id": 115064642 + } + }, + { + "id": 115064553, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.1760375, + 50.8301519 + ], + [ + 3.1762917, + 50.8301519 + ], + [ + 3.1762917, + 50.8304544 + ], + [ + 3.1760375, + 50.8304544 + ], + [ + 3.1760375, + 50.8301519 + ] + ] + ] + }, + "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, + "metadata": { + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 1, + "language": "nl" + }, + "id": 115064553 + } + }, + { + "id": 115064528, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.1744072, + 50.8644109 + ], + [ + 3.1805633, + 50.8644109 + ], + [ + 3.1805633, + 50.8668565 + ], + [ + 3.1744072, + 50.8668565 + ], + [ + 3.1744072, + 50.8644109 + ] + ] + ] + }, + "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, + "metadata": { + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 8, + "language": "nl" + }, + "id": 115064528 + } + }, + { + "id": 115063280, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.1850757, + 51.2901713 + ], + [ + 3.1853185, + 51.2901713 + ], + [ + 3.1853185, + 51.2903272 + ], + [ + 3.1850757, + 51.2903272 + ], + [ + 3.1850757, + 51.2901713 + ] + ] + ] + }, + "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, + "metadata": { + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 1, + "language": "nl" + }, + "id": 115063280 + } + }, + { + "id": 115062744, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.1392876, + 50.9493521 + ], + [ + 3.1395203, + 50.9493521 + ], + [ + 3.1395203, + 50.9494557 + ], + [ + 3.1392876, + 50.9494557 + ], + [ + 3.1392876, + 50.9493521 + ] + ] + ] + }, + "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, + "metadata": { + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 1, + "language": "nl" + }, + "id": 115062744 + } + }, + { + "id": 115062715, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.1224592, + 50.9935053 + ], + [ + 3.1229183, + 50.9935053 + ], + [ + 3.1229183, + 50.9941656 + ], + [ + 3.1224592, + 50.9941656 + ], + [ + 3.1224592, + 50.9935053 + ] + ] + ] + }, + "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, + "metadata": { + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 2, + "language": "nl" + }, + "id": 115062715 + } + }, + { + "id": 115062402, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.1176059, + 50.928847 + ], + [ + 3.1182143, + 50.928847 + ], + [ + 3.1182143, + 50.9294302 + ], + [ + 3.1176059, + 50.9294302 + ], + [ + 3.1176059, + 50.928847 + ] + ] + ] + }, + "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, + "metadata": { + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 29, + "language": "nl" + }, + "id": 115062402 + } + }, + { + "id": 115062396, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.1004399, + 51.0643997 + ], + [ + 3.1041686, + 51.0643997 + ], + [ + 3.1041686, + 51.0664155 + ], + [ + 3.1004399, + 51.0664155 + ], + [ + 3.1004399, + 51.0643997 + ] + ] + ] + }, + "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, + "metadata": { + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 22, + "language": "nl" + }, + "id": 115062396 + } + }, + { + "id": 115062377, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.1121803, + 51.0730343 + ], + [ + 3.1124771, + 51.0730343 + ], + [ + 3.1124771, + 51.073241 + ], + [ + 3.1121803, + 51.073241 + ], + [ + 3.1121803, + 51.0730343 + ] + ] + ] + }, + "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, + "metadata": { + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 5, + "language": "nl" + }, + "id": 115062377 + } + }, + { + "id": 115062361, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.1125137, + 51.1167285 + ], + [ + 3.1163625, + 51.1167285 + ], + [ + 3.1163625, + 51.1214552 + ], + [ + 3.1125137, + 51.1214552 + ], + [ + 3.1125137, + 51.1167285 + ] + ] + ] + }, + "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, + "metadata": { + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 4, + "language": "nl" + }, + "id": 115062361 + } + }, + { + "id": 115055797, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.3961607, + 51.2072342 + ], + [ + 4.4133005, + 51.2072342 + ], + [ + 4.4133005, + 51.2203736 + ], + [ + 4.3961607, + 51.2203736 + ], + [ + 4.3961607, + 51.2072342 + ] + ] + ] + }, + "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": 13, + "modify": 19, + "delete": 0, + "area": 0.000225206688119998, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "surveillance", + "answer": 30, + "create": 15, + "imagery": "osm", + "language": "en" + }, + "id": 115055797 + } + }, + { + "id": 115020070, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2.2387833, + 41.4652985 + ], + [ + 2.2426982, + 41.4652985 + ], + [ + 2.2426982, + 41.4673145 + ], + [ + 2.2387833, + 41.4673145 + ], + [ + 2.2387833, + 41.4652985 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "https://llefia.org/arbres/mapcomplete1.json", + "answer": 6, + "imagery": "HDM_HOT", + "language": "ca", + "add-image": 4 + }, + "id": 115020070 + } + }, + { + "id": 115017408, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2.8403185, + 42.5333722 + ], + [ + 2.8403185, + 42.5333722 + ], + [ + 2.8403185, + 42.5333722 + ], + [ + 2.8403185, + 42.5333722 + ], + [ + 2.8403185, + 42.5333722 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "aed", + "answer": 7, + "create": 1, + "imagery": "osm", + "language": "nl", + "change_over_5000m": 1, + "change_within_25m": 7 + }, + "id": 115017408 + } + }, + { + "id": 115015263, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -70.9627955, + -32.7785095 + ], + [ + -70.9627955, + -32.7785095 + ], + [ + -70.9627955, + -32.7785095 + ], + [ + -70.9627955, + -32.7785095 + ], + [ + -70.9627955, + -32.7785095 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "osm", + "language": "en", + "add-image": 1 + }, + "id": 115015263 + } + }, + { + "id": 114976586, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2.3105738, + 48.8815868 + ], + [ + 2.3734136, + 48.8815868 + ], + [ + 2.3734136, + 48.89114 + ], + [ + 2.3105738, + 48.89114 + ], + [ + 2.3105738, + 48.8815868 + ] + ] + ] + }, + "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, + "metadata": { + "theme": "climbing", + "language": "en", + "theme-creator": "Christian Neumann " + }, + "id": 114976586 + } + }, + { + "id": 114969039, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.7894954, + 51.0276508 + ], + [ + 3.7899456, + 51.0276508 + ], + [ + 3.7899456, + 51.0277472 + ], + [ + 3.7894954, + 51.0277472 + ], + [ + 3.7894954, + 51.0276508 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "benches", + "answer": 4, + "imagery": "osm", + "language": "en", + "add-image": 2 + }, + "id": 114969039 + } + }, + { + "id": 114968885, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.885412, + 51.0086988 + ], + [ + 3.885412, + 51.0086988 + ], + [ + 3.885412, + 51.0086988 + ], + [ + 3.885412, + 51.0086988 + ], + [ + 3.885412, + 51.0086988 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 1, + "imagery": "osm", + "language": "en", + "add-image": 1 + }, + "id": 114968885 + } + }, + { + "id": 114968357, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.9304727, + 51.0139647 + ], + [ + 3.9325976, + 51.0139647 + ], + [ + 3.9325976, + 51.0185431 + ], + [ + 3.9304727, + 51.0185431 + ], + [ + 3.9304727, + 51.0139647 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "cyclestreets", + "imagery": "osm", + "language": "en", + "add-image": 1 + }, + "id": 114968357 + } + }, + { + "id": 114942699, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 10.420775, + 43.7214807 + ], + [ + 10.420775, + 43.7214807 + ], + [ + 10.420775, + 43.7214807 + ], + [ + 10.420775, + 43.7214807 + ], + [ + 10.420775, + 43.7214807 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "campersite", + "answer": 8, + "imagery": "osm", + "language": "fr", + "change_within_100m": 8 + }, + "id": 114942699 + } + }, + { + "id": 114940487, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -73.2548747, + -39.8056354 + ], + [ + -73.2548747, + -39.8056354 + ], + [ + -73.2548747, + -39.8056354 + ], + [ + -73.2548747, + -39.8056354 + ], + [ + -73.2548747, + -39.8056354 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "osm", + "language": "en", + "add-image": 1 + }, + "id": 114940487 + } + }, + { + "id": 114939766, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.1734978, + 50.9023391 + ], + [ + 3.1734978, + 50.9023391 + ], + [ + 3.1734978, + 50.9023391 + ], + [ + 3.1734978, + 50.9023391 + ], + [ + 3.1734978, + 50.9023391 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "https://raw.githubusercontent.com/seppesantens/MapComplete-Themes/main/VerkeerdeBordenDatabank/VerkeerdeBordenDatabank.json", + "answer": 1, + "imagery": "Stamen.TonerLite", + "language": "nl" + }, + "id": 114939766 + } + }, + { + "id": 114931965, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.2251042, + 51.2147858 + ], + [ + 3.2251042, + 51.2147858 + ], + [ + 3.2251042, + 51.2147858 + ], + [ + 3.2251042, + 51.2147858 + ], + [ + 3.2251042, + 51.2147858 + ] + ] + ] + }, + "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, + "metadata": { + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "artwork", + "imagery": "AGIVFlandersGRB", + "deletion": 1, + "language": "en", + "change_within_500m": 1, + "deletion:node/9337505903": "duplicate" + }, + "id": 114931965 + } + }, + { + "id": 114926545, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.4251353, + 51.2581617 + ], + [ + 4.4251353, + 51.2581617 + ], + [ + 4.4251353, + 51.2581617 + ], + [ + 4.4251353, + 51.2581617 + ], + [ + 4.4251353, + 51.2581617 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "fritures", + "answer": 7, + "create": 1, + "imagery": "osm", + "language": "en" + }, + "id": 114926545 + } + }, + { + "id": 114925097, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.2251042, + 51.2147858 + ], + [ + 3.2251203, + 51.2147858 + ], + [ + 3.2251203, + 51.2147858 + ], + [ + 3.2251042, + 51.2147858 + ], + [ + 3.2251042, + 51.2147858 + ] + ] + ] + }, + "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, + "metadata": { + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "artwork", + "answer": 1, + "create": 2, + "imagery": "osm", + "language": "en", + "change_over_5000m": 2, + "change_within_25m": 1 + }, + "id": 114925097 + } + }, + { + "id": 114915854, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.3785855, + 50.8437082 + ], + [ + 4.3788162, + 50.8437082 + ], + [ + 4.3788162, + 50.843781 + ], + [ + 4.3785855, + 50.843781 + ], + [ + 4.3785855, + 50.8437082 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "benches", + "answer": 1, + "create": 2, + "imagery": "UrbISOrtho", + "language": "en", + "add-image": 1 + }, + "id": 114915854 + } + }, + { + "id": 114912428, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.3782034, + 50.6784338 + ], + [ + 4.3782034, + 50.6784338 + ], + [ + 4.3782034, + 50.6784338 + ], + [ + 4.3782034, + 50.6784338 + ], + [ + 4.3782034, + 50.6784338 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "answer": 2, + "imagery": "osm", + "language": "en" + }, + "id": 114912428 + } + }, + { + "id": 114910791, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 14.3235159, + 51.7461126 + ], + [ + 14.3237306, + 51.7461126 + ], + [ + 14.3237306, + 51.7493253 + ], + [ + 14.3235159, + 51.7493253 + ], + [ + 14.3235159, + 51.7461126 + ] + ] + ] + }, + "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, + "metadata": { + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "id": 114910791 + } + }, + { + "id": 114897962, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.1634639, + 51.1860972 + ], + [ + 4.1634639, + 51.1860972 + ], + [ + 4.1634639, + 51.1860972 + ], + [ + 4.1634639, + 51.1860972 + ], + [ + 4.1634639, + 51.1860972 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "ghostbikes", + "answer": 1, + "imagery": "CartoDB.Positron", + "language": "en", + "add-image": 1 + }, + "id": 114897962 + } + }, + { + "id": 114893856, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.0119549, + 51.1649327 + ], + [ + 3.0160878, + 51.1649327 + ], + [ + 3.0160878, + 51.169273 + ], + [ + 3.0119549, + 51.169273 + ], + [ + 3.0119549, + 51.1649327 + ] + ] + ] + }, + "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, + "metadata": { + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 38, + "language": "nl" + }, + "id": 114893856 + } + }, + { + "id": 114893804, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.0060689, + 51.1719018 + ], + [ + 3.0102894, + 51.1719018 + ], + [ + 3.0102894, + 51.1766188 + ], + [ + 3.0060689, + 51.1766188 + ], + [ + 3.0060689, + 51.1719018 + ] + ] + ] + }, + "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, + "metadata": { + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 9, + "language": "nl" + }, + "id": 114893804 + } + }, + { + "id": 114893801, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.0099782, + 51.0198802 + ], + [ + 3.0101788, + 51.0198802 + ], + [ + 3.0101788, + 51.0201186 + ], + [ + 3.0099782, + 51.0201186 + ], + [ + 3.0099782, + 51.0198802 + ] + ] + ] + }, + "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, + "metadata": { + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 1, + "language": "nl" + }, + "id": 114893801 + } + }, + { + "id": 114893654, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2.9882842, + 51.1801817 + ], + [ + 3.0051812, + 51.1801817 + ], + [ + 3.0051812, + 51.1897175 + ], + [ + 2.9882842, + 51.1897175 + ], + [ + 2.9882842, + 51.1801817 + ] + ] + ] + }, + "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, + "metadata": { + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 323, + "language": "nl" + }, + "id": 114893654 + } + }, + { + "id": 114893624, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.002245, + 51.2495476 + ], + [ + 3.0046737, + 51.2495476 + ], + [ + 3.0046737, + 51.2503519 + ], + [ + 3.002245, + 51.2503519 + ], + [ + 3.002245, + 51.2495476 + ] + ] + ] + }, + "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, + "metadata": { + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 13, + "language": "nl" + }, + "id": 114893624 + } + }, + { + "id": 114893493, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2.9704442, + 51.0056354 + ], + [ + 2.9705979, + 51.0056354 + ], + [ + 2.9705979, + 51.0057463 + ], + [ + 2.9704442, + 51.0057463 + ], + [ + 2.9704442, + 51.0056354 + ] + ] + ] + }, + "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, + "metadata": { + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 1, + "language": "nl" + }, + "id": 114893493 + } + }, + { + "id": 114893450, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2.9707116, + 51.0714194 + ], + [ + 2.971006, + 51.0714194 + ], + [ + 2.971006, + 51.0715512 + ], + [ + 2.9707116, + 51.0715512 + ], + [ + 2.9707116, + 51.0714194 + ] + ] + ] + }, + "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, + "metadata": { + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 19, + "language": "nl" + }, + "id": 114893450 + } + }, + { + "id": 114893443, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2.9749515, + 51.0910595 + ], + [ + 2.9812205, + 51.0910595 + ], + [ + 2.9812205, + 51.0947184 + ], + [ + 2.9749515, + 51.0947184 + ], + [ + 2.9749515, + 51.0910595 + ] + ] + ] + }, + "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, + "metadata": { + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 18, + "language": "nl" + }, + "id": 114893443 + } + }, + { + "id": 114893393, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2.9753687, + 51.1806471 + ], + [ + 2.9885363, + 51.1806471 + ], + [ + 2.9885363, + 51.182874 + ], + [ + 2.9753687, + 51.182874 + ], + [ + 2.9753687, + 51.1806471 + ] + ] + ] + }, + "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, + "metadata": { + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 3, + "language": "nl" + }, + "id": 114893393 + } + }, + { + "id": 114893354, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2.9809791, + 51.2513306 + ], + [ + 2.9821031, + 51.2513306 + ], + [ + 2.9821031, + 51.2517661 + ], + [ + 2.9809791, + 51.2517661 + ], + [ + 2.9809791, + 51.2513306 + ] + ] + ] + }, + "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, + "metadata": { + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 3, + "language": "nl" + }, + "id": 114893354 + } + }, + { + "id": 114892696, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2.9638093, + 51.0690406 + ], + [ + 2.9642255, + 51.0690406 + ], + [ + 2.9642255, + 51.0694097 + ], + [ + 2.9638093, + 51.0694097 + ], + [ + 2.9638093, + 51.0690406 + ] + ] + ] + }, + "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, + "metadata": { + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 1, + "language": "nl" + }, + "id": 114892696 + } + }, + { + "id": 114892661, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2.9464438, + 50.8465045 + ], + [ + 2.9466536, + 50.8465045 + ], + [ + 2.9466536, + 50.846668 + ], + [ + 2.9464438, + 50.846668 + ], + [ + 2.9464438, + 50.8465045 + ] + ] + ] + }, + "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, + "metadata": { + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 1, + "language": "nl" + }, + "id": 114892661 + } + }, + { + "id": 114892587, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2.9629172, + 51.0544042 + ], + [ + 2.9632826, + 51.0544042 + ], + [ + 2.9632826, + 51.0546649 + ], + [ + 2.9629172, + 51.0546649 + ], + [ + 2.9629172, + 51.0544042 + ] + ] + ] + }, + "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, + "metadata": { + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 1, + "language": "nl" + }, + "id": 114892587 + } + }, + { + "id": 114892548, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2.9469751, + 51.2071418 + ], + [ + 2.968113, + 51.2071418 + ], + [ + 2.968113, + 51.2202181 + ], + [ + 2.9469751, + 51.2202181 + ], + [ + 2.9469751, + 51.2071418 + ] + ] + ] + }, + "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, + "metadata": { + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 5, + "language": "nl" + }, + "id": 114892548 + } + }, + { + "id": 114892533, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2.9469751, + 51.2199495 + ], + [ + 2.963326, + 51.2199495 + ], + [ + 2.963326, + 51.2278533 + ], + [ + 2.9469751, + 51.2278533 + ], + [ + 2.9469751, + 51.2199495 + ] + ] + ] + }, + "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, + "metadata": { + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 2, + "language": "nl" + }, + "id": 114892533 + } + }, + { + "id": 114892374, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2.9442122, + 51.0649386 + ], + [ + 2.9444748, + 51.0649386 + ], + [ + 2.9444748, + 51.0650566 + ], + [ + 2.9442122, + 51.0650566 + ], + [ + 2.9442122, + 51.0649386 + ] + ] + ] + }, + "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, + "metadata": { + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 1, + "language": "nl" + }, + "id": 114892374 + } + }, + { + "id": 114892271, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2.9398499, + 51.2359192 + ], + [ + 2.9414325, + 51.2359192 + ], + [ + 2.9414325, + 51.2405171 + ], + [ + 2.9398499, + 51.2405171 + ], + [ + 2.9398499, + 51.2359192 + ] + ] + ] + }, + "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, + "metadata": { + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 7, + "language": "nl" + }, + "id": 114892271 + } + }, + { + "id": 114892258, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2.9189842, + 51.2343152 + ], + [ + 2.9196149, + 51.2343152 + ], + [ + 2.9196149, + 51.2346963 + ], + [ + 2.9189842, + 51.2346963 + ], + [ + 2.9189842, + 51.2343152 + ] + ] + ] + }, + "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, + "metadata": { + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 4, + "language": "nl" + }, + "id": 114892258 + } + }, + { + "id": 114891907, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2.9117089, + 50.9688056 + ], + [ + 2.9118899, + 50.9688056 + ], + [ + 2.9118899, + 50.9689222 + ], + [ + 2.9117089, + 50.9689222 + ], + [ + 2.9117089, + 50.9688056 + ] + ] + ] + }, + "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, + "metadata": { + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 1, + "language": "nl" + }, + "id": 114891907 + } + }, + { + "id": 114891875, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2.9051146, + 51.0256665 + ], + [ + 2.9052935, + 51.0256665 + ], + [ + 2.9052935, + 51.0257767 + ], + [ + 2.9051146, + 51.0257767 + ], + [ + 2.9051146, + 51.0256665 + ] + ] + ] + }, + "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, + "metadata": { + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 1, + "language": "nl" + }, + "id": 114891875 + } + }, + { + "id": 114891829, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2.9103387, + 51.093169 + ], + [ + 2.9116873, + 51.093169 + ], + [ + 2.9116873, + 51.0937007 + ], + [ + 2.9103387, + 51.0937007 + ], + [ + 2.9103387, + 51.093169 + ] + ] + ] + }, + "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, + "metadata": { + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 2, + "language": "nl" + }, + "id": 114891829 + } + }, + { + "id": 114891462, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2.9168061, + 51.229834 + ], + [ + 2.9216044, + 51.229834 + ], + [ + 2.9216044, + 51.2344235 + ], + [ + 2.9168061, + 51.2344235 + ], + [ + 2.9168061, + 51.229834 + ] + ] + ] + }, + "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, + "metadata": { + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 112, + "language": "nl" + }, + "id": 114891462 + } + }, + { + "id": 114891452, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2.8960753, + 50.7679954 + ], + [ + 2.896379, + 50.7679954 + ], + [ + 2.896379, + 50.7681185 + ], + [ + 2.8960753, + 50.7681185 + ], + [ + 2.8960753, + 50.7679954 + ] + ] + ] + }, + "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, + "metadata": { + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 1, + "language": "nl" + }, + "id": 114891452 + } + }, + { + "id": 114891395, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2.8912473, + 50.8106276 + ], + [ + 2.8914153, + 50.8106276 + ], + [ + 2.8914153, + 50.8110692 + ], + [ + 2.8912473, + 50.8110692 + ], + [ + 2.8912473, + 50.8106276 + ] + ] + ] + }, + "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, + "metadata": { + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 2, + "language": "nl" + }, + "id": 114891395 + } + }, + { + "id": 114890982, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.2431303, + 51.2060932 + ], + [ + 3.2431303, + 51.2060932 + ], + [ + 3.2431303, + 51.2060932 + ], + [ + 3.2431303, + 51.2060932 + ], + [ + 3.2431303, + 51.2060932 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "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, + "metadata": { + "theme": "climbing", + "language": "en", + "theme-creator": "Christian Neumann " + }, + "id": 114890982 + } + }, + { + "id": 114890770, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2.8755683, + 50.8004586 + ], + [ + 2.8757992, + 50.8004586 + ], + [ + 2.8757992, + 50.8006231 + ], + [ + 2.8755683, + 50.8006231 + ], + [ + 2.8755683, + 50.8004586 + ] + ] + ] + }, + "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, + "metadata": { + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 1, + "language": "nl" + }, + "id": 114890770 + } + }, + { + "id": 114890740, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2.8564576, + 50.8174298 + ], + [ + 2.8580404, + 50.8174298 + ], + [ + 2.8580404, + 50.819548 + ], + [ + 2.8564576, + 50.819548 + ], + [ + 2.8564576, + 50.8174298 + ] + ] + ] + }, + "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, + "metadata": { + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 9, + "language": "nl" + }, + "id": 114890740 + } + }, + { + "id": 114890722, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2.8644123, + 50.8387408 + ], + [ + 2.8647293, + 50.8387408 + ], + [ + 2.8647293, + 50.8388946 + ], + [ + 2.8644123, + 50.8388946 + ], + [ + 2.8644123, + 50.8387408 + ] + ] + ] + }, + "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, + "metadata": { + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 1, + "language": "nl" + }, + "id": 114890722 + } + }, + { + "id": 114890702, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2.8655158, + 50.912802 + ], + [ + 2.8971309, + 50.912802 + ], + [ + 2.8971309, + 51.0035489 + ], + [ + 2.8655158, + 51.0035489 + ], + [ + 2.8655158, + 50.912802 + ] + ] + ] + }, + "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, + "metadata": { + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 3, + "language": "nl" + }, + "id": 114890702 + } + }, + { + "id": 114890683, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2.8756015, + 50.9927435 + ], + [ + 2.8758334, + 50.9927435 + ], + [ + 2.8758334, + 50.9928629 + ], + [ + 2.8756015, + 50.9928629 + ], + [ + 2.8756015, + 50.9927435 + ] + ] + ] + }, + "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, + "metadata": { + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 1, + "language": "nl" + }, + "id": 114890683 + } + }, + { + "id": 114890659, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2.8585289, + 51.0318244 + ], + [ + 2.8658344, + 51.0318244 + ], + [ + 2.8658344, + 51.0338435 + ], + [ + 2.8585289, + 51.0338435 + ], + [ + 2.8585289, + 51.0318244 + ] + ] + ] + }, + "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, + "metadata": { + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 47, + "language": "nl" + }, + "id": 114890659 + } + }, + { + "id": 114890643, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2.8790195, + 51.0796469 + ], + [ + 2.8793931, + 51.0796469 + ], + [ + 2.8793931, + 51.0804176 + ], + [ + 2.8790195, + 51.0804176 + ], + [ + 2.8790195, + 51.0796469 + ] + ] + ] + }, + "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, + "metadata": { + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 4, + "language": "nl" + }, + "id": 114890643 + } + }, + { + "id": 114890597, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2.8615729, + 51.1765192 + ], + [ + 2.8617555, + 51.1765192 + ], + [ + 2.8617555, + 51.1767199 + ], + [ + 2.8615729, + 51.1767199 + ], + [ + 2.8615729, + 51.1765192 + ] + ] + ] + }, + "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, + "metadata": { + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 1, + "language": "nl" + }, + "id": 114890597 + } + }, + { + "id": 114890458, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2.8556703, + 50.8174298 + ], + [ + 2.8577901, + 50.8174298 + ], + [ + 2.8577901, + 50.8196958 + ], + [ + 2.8556703, + 50.8196958 + ], + [ + 2.8556703, + 50.8174298 + ] + ] + ] + }, + "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, + "metadata": { + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 17, + "language": "nl" + }, + "id": 114890458 + } + }, + { + "id": 114890456, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2.8566324, + 50.8189542 + ], + [ + 2.8577901, + 50.8189542 + ], + [ + 2.8577901, + 50.8199574 + ], + [ + 2.8566324, + 50.8199574 + ], + [ + 2.8566324, + 50.8189542 + ] + ] + ] + }, + "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, + "metadata": { + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 6, + "language": "nl" + }, + "id": 114890456 + } + }, + { + "id": 114890447, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2.845961, + 50.8518198 + ], + [ + 2.8461174, + 50.8518198 + ], + [ + 2.8461174, + 50.8519247 + ], + [ + 2.845961, + 50.8519247 + ], + [ + 2.845961, + 50.8518198 + ] + ] + ] + }, + "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, + "metadata": { + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 1, + "language": "nl" + }, + "id": 114890447 + } + }, + { + "id": 114890379, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2.8365896, + 51.0350987 + ], + [ + 2.8387372, + 51.0350987 + ], + [ + 2.8387372, + 51.0355588 + ], + [ + 2.8365896, + 51.0355588 + ], + [ + 2.8365896, + 51.0350987 + ] + ] + ] + }, + "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, + "metadata": { + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 2, + "language": "nl" + }, + "id": 114890379 + } + }, + { + "id": 114890314, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2.8473558, + 51.1828861 + ], + [ + 2.8477081, + 51.1828861 + ], + [ + 2.8477081, + 51.1830486 + ], + [ + 2.8473558, + 51.1830486 + ], + [ + 2.8473558, + 51.1828861 + ] + ] + ] + }, + "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, + "metadata": { + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 1, + "language": "nl" + }, + "id": 114890314 + } + }, + { + "id": 114890282, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2.8304346, + 51.0340389 + ], + [ + 2.8358344, + 51.0340389 + ], + [ + 2.8358344, + 51.0364494 + ], + [ + 2.8304346, + 51.0364494 + ], + [ + 2.8304346, + 51.0340389 + ] + ] + ] + }, + "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, + "metadata": { + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 4, + "language": "nl" + }, + "id": 114890282 + } + }, + { + "id": 114890206, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2.8283358, + 50.7450844 + ], + [ + 2.8285188, + 50.7450844 + ], + [ + 2.8285188, + 50.7452127 + ], + [ + 2.8283358, + 50.7452127 + ], + [ + 2.8283358, + 50.7450844 + ] + ] + ] + }, + "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, + "metadata": { + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 1, + "language": "nl" + }, + "id": 114890206 + } + }, + { + "id": 114890164, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2.8197154, + 50.8585373 + ], + [ + 2.8200707, + 50.8585373 + ], + [ + 2.8200707, + 50.8587947 + ], + [ + 2.8197154, + 50.8587947 + ], + [ + 2.8197154, + 50.8585373 + ] + ] + ] + }, + "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, + "metadata": { + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 1, + "language": "nl" + }, + "id": 114890164 + } + }, + { + "id": 114890152, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2.8213601, + 50.8623793 + ], + [ + 2.8216859, + 50.8623793 + ], + [ + 2.8216859, + 50.8625696 + ], + [ + 2.8213601, + 50.8625696 + ], + [ + 2.8213601, + 50.8623793 + ] + ] + ] + }, + "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, + "metadata": { + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 1, + "language": "nl" + }, + "id": 114890152 + } + }, + { + "id": 114890033, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2.8074971, + 51.1823094 + ], + [ + 2.8079703, + 51.1823094 + ], + [ + 2.8079703, + 51.1825877 + ], + [ + 2.8074971, + 51.1825877 + ], + [ + 2.8074971, + 51.1823094 + ] + ] + ] + }, + "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, + "metadata": { + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 1, + "language": "nl" + }, + "id": 114890033 + } + }, + { + "id": 114889712, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2.7739306, + 50.8578356 + ], + [ + 2.7742141, + 50.8578356 + ], + [ + 2.7742141, + 50.8580125 + ], + [ + 2.7739306, + 50.8580125 + ], + [ + 2.7739306, + 50.8578356 + ] + ] + ] + }, + "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, + "metadata": { + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 1, + "language": "nl" + }, + "id": 114889712 + } + }, + { + "id": 114889498, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2.7522955, + 50.7916164 + ], + [ + 2.7566337, + 50.7916164 + ], + [ + 2.7566337, + 50.7977678 + ], + [ + 2.7522955, + 50.7977678 + ], + [ + 2.7522955, + 50.7916164 + ] + ] + ] + }, + "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, + "metadata": { + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 2, + "language": "nl" + }, + "id": 114889498 + } + }, + { + "id": 114889360, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2.7652699, + 50.9972392 + ], + [ + 2.7654357, + 50.9972392 + ], + [ + 2.7654357, + 50.9973554 + ], + [ + 2.7652699, + 50.9973554 + ], + [ + 2.7652699, + 50.9972392 + ] + ] + ] + }, + "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, + "metadata": { + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 1, + "language": "nl" + }, + "id": 114889360 + } + }, + { + "id": 114889145, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2.7356875, + 50.9670039 + ], + [ + 2.7358877, + 50.9670039 + ], + [ + 2.7358877, + 50.967163 + ], + [ + 2.7356875, + 50.967163 + ], + [ + 2.7356875, + 50.9670039 + ] + ] + ] + }, + "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, + "metadata": { + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 1, + "language": "nl" + }, + "id": 114889145 + } + }, + { + "id": 114889054, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2.7332499, + 51.1458717 + ], + [ + 2.7335561, + 51.1458717 + ], + [ + 2.7335561, + 51.1460633 + ], + [ + 2.7332499, + 51.1460633 + ], + [ + 2.7332499, + 51.1458717 + ] + ] + ] + }, + "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, + "metadata": { + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 1, + "language": "nl" + }, + "id": 114889054 + } + }, + { + "id": 114888949, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2.7215597, + 50.8947234 + ], + [ + 2.7222542, + 50.8947234 + ], + [ + 2.7222542, + 50.8951526 + ], + [ + 2.7215597, + 50.8951526 + ], + [ + 2.7215597, + 50.8947234 + ] + ] + ] + }, + "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, + "metadata": { + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 1, + "language": "nl" + }, + "id": 114888949 + } + }, + { + "id": 114888813, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2.7046855, + 51.1432786 + ], + [ + 2.7071732, + 51.1432786 + ], + [ + 2.7071732, + 51.1440431 + ], + [ + 2.7046855, + 51.1440431 + ], + [ + 2.7046855, + 51.1432786 + ] + ] + ] + }, + "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, + "metadata": { + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 5, + "language": "nl" + }, + "id": 114888813 + } + }, + { + "id": 114888383, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2.7009784, + 51.1000053 + ], + [ + 2.701825, + 51.1000053 + ], + [ + 2.701825, + 51.100795 + ], + [ + 2.7009784, + 51.100795 + ], + [ + 2.7009784, + 51.1000053 + ] + ] + ] + }, + "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, + "metadata": { + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 10, + "language": "nl" + }, + "id": 114888383 + } + }, + { + "id": 114887136, + "type": "Feature", + "geometry": null, + "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": 0, + "delete": 0, + "area": null, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 1, + "language": "nl" + }, + "id": 114887136 + } + }, + { + "id": 114887135, + "type": "Feature", + "geometry": null, + "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": 0, + "delete": 0, + "area": null, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 1, + "language": "nl" + }, + "id": 114887135 + } + }, + { + "id": 114887134, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2.6092061, + 51.1102749 + ], + [ + 2.6095032, + 51.1102749 + ], + [ + 2.6095032, + 51.1104679 + ], + [ + 2.6092061, + 51.1104679 + ], + [ + 2.6092061, + 51.1102749 + ] + ] + ] + }, + "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, + "metadata": { + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 1, + "language": "nl" + }, + "id": 114887134 + } + }, + { + "id": 114886637, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2.9032769, + 42.5265924 + ], + [ + 2.9032769, + 42.5265924 + ], + [ + 2.9032769, + 42.5265924 + ], + [ + 2.9032769, + 42.5265924 + ], + [ + 2.9032769, + 42.5265924 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "create": 1, + "imagery": "osm", + "language": "en", + "add-image": 1, + "change_over_5000m": 1, + "change_within_25m": 1 + }, + "id": 114886637 + } + }, + { + "id": 114884146, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.3967998, + 50.7916503 + ], + [ + 5.3980993, + 50.7916503 + ], + [ + 5.3980993, + 50.792703 + ], + [ + 5.3967998, + 50.792703 + ], + [ + 5.3967998, + 50.7916503 + ] + ] + ] + }, + "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, + "metadata": { + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "grb", + "import": 9, + "imagery": "AGIVFlandersGRB", + "language": "nl", + "change_over_5000m": 9 + }, + "id": 114884146 + } + }, + { + "id": 114882795, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.0485619, + 50.9831463 + ], + [ + 3.0488913, + 50.9831463 + ], + [ + 3.0488913, + 50.983327 + ], + [ + 3.0485619, + 50.983327 + ], + [ + 3.0485619, + 50.9831463 + ] + ] + ] + }, + "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, + "metadata": { + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "missing_streets", + "answer": 1, + "imagery": "osm", + "language": "nl", + "change_over_5000m": 1 + }, + "id": 114882795 + } + }, + { + "id": 114876730, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.2948321, + 50.8519663 + ], + [ + 4.2992612, + 50.8519663 + ], + [ + 4.2992612, + 50.870152 + ], + [ + 4.2948321, + 50.870152 + ], + [ + 4.2948321, + 50.8519663 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "benches", + "answer": 23, + "create": 5, + "imagery": "AGIV", + "language": "en" + }, + "id": 114876730 + } + }, + { + "id": 114864189, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2.8533568, + 50.9537719 + ], + [ + 2.8579676, + 50.9537719 + ], + [ + 2.8579676, + 50.9563118 + ], + [ + 2.8533568, + 50.9563118 + ], + [ + 2.8533568, + 50.9537719 + ] + ] + ] + }, + "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, + "metadata": { + "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 + }, + "id": 114864189 + } + }, + { + "id": 114864085, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2.8533534, + 50.9539298 + ], + [ + 2.8554195, + 50.9539298 + ], + [ + 2.8554195, + 50.9546542 + ], + [ + 2.8533534, + 50.9546542 + ], + [ + 2.8533534, + 50.9539298 + ] + ] + ] + }, + "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, + "metadata": { + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "grb", + "answer": 12, + "imagery": "AGIV", + "language": "nl", + "change_over_5000m": 12 + }, + "id": 114864085 + } + }, + { + "id": 114864021, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2.8530906, + 50.9538112 + ], + [ + 2.8559332, + 50.9538112 + ], + [ + 2.8559332, + 50.9550896 + ], + [ + 2.8530906, + 50.9550896 + ], + [ + 2.8530906, + 50.9538112 + ] + ] + ] + }, + "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, + "metadata": { + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "grb", + "answer": 1, + "import": 51, + "imagery": "osm", + "language": "nl", + "change_over_5000m": 52 + }, + "id": 114864021 + } + }, + { + "id": 114864018, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2.8544571, + 50.9538337 + ], + [ + 2.8559884, + 50.9538337 + ], + [ + 2.8559884, + 50.9544764 + ], + [ + 2.8544571, + 50.9544764 + ], + [ + 2.8544571, + 50.9538337 + ] + ] + ] + }, + "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, + "metadata": { + "host": "pietervdvn.github.io", + "move": 4, + "path": "mc/develop/", + "theme": "grb", + "import": 10, + "imagery": "osm", + "language": "nl", + "conflation": 2, + "change_over_5000m": 10 + }, + "id": 114864018 + } + }, + { + "id": 114863330, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.4428732, + 50.8605916 + ], + [ + 4.4612778, + 50.8605916 + ], + [ + 4.4612778, + 50.8654135 + ], + [ + 4.4428732, + 50.8654135 + ], + [ + 4.4428732, + 50.8605916 + ] + ] + ] + }, + "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, + "metadata": { + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 208, + "language": "nl", + "change_over_5000m": 208 + }, + "id": 114863330 + } + }, + { + "id": 114857522, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.4100791, + 51.1714215 + ], + [ + 3.4100791, + 51.1714215 + ], + [ + 3.4100791, + 51.1714215 + ], + [ + 3.4100791, + 51.1714215 + ], + [ + 3.4100791, + 51.1714215 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "artwork", + "imagery": "osm", + "language": "nl", + "add-image": 1 + }, + "id": 114857522 + } + }, + { + "id": 114856487, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.3984574, + 51.1698978 + ], + [ + 3.4026745, + 51.1698978 + ], + [ + 3.4026745, + 51.1720761 + ], + [ + 3.3984574, + 51.1720761 + ], + [ + 3.3984574, + 51.1698978 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "nature", + "answer": 4, + "imagery": "osm", + "language": "nl", + "add-image": 2, + "change_over_5000m": 6 + }, + "id": 114856487 + } + }, + { + "id": 114851028, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 10.1920735, + 56.171876 + ], + [ + 10.1920735, + 56.171876 + ], + [ + 10.1920735, + 56.171876 + ], + [ + 10.1920735, + 56.171876 + ], + [ + 10.1920735, + 56.171876 + ] + ] + ] + }, + "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, + "metadata": { + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "charging_stations", + "answer": 3, + "imagery": "CartoDB.Voyager", + "language": "en" + }, + "id": 114851028 + } + }, + { + "id": 114847633, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.1353362, + 43.9823406 + ], + [ + 3.1353362, + 43.9823406 + ], + [ + 3.1353362, + 43.9823406 + ], + [ + 3.1353362, + 43.9823406 + ], + [ + 3.1353362, + 43.9823406 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "aed", + "answer": 4, + "imagery": "osm", + "language": "en", + "add-image": 1, + "change_within_25m": 5 + }, + "id": 114847633 + } + }, + { + "id": 114834669, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.2100453, + 50.791594 + ], + [ + 4.2794606, + 50.791594 + ], + [ + 4.2794606, + 50.8183864 + ], + [ + 4.2100453, + 50.8183864 + ], + [ + 4.2100453, + 50.791594 + ] + ] + ] + }, + "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, + "metadata": { + "host": "127.0.0.1:1234", + "theme": "missing_streets", + "answer": 372, + "imagery": "osm", + "language": "nl" + }, + "id": 114834669 + } + }, + { + "id": 114833158, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -122.2893615, + 47.684808 + ], + [ + -122.2893615, + 47.684808 + ], + [ + -122.2893615, + 47.684808 + ], + [ + -122.2893615, + 47.684808 + ], + [ + -122.2893615, + 47.684808 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "create": 1, + "imagery": "osm", + "language": "en", + "change_over_5000m": 1 + }, + "id": 114833158 + } + }, + { + "id": 114826322, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -78.6969191, + 26.5175064 + ], + [ + -78.6969191, + 26.5175064 + ], + [ + -78.6969191, + 26.5175064 + ], + [ + -78.6969191, + 26.5175064 + ], + [ + -78.6969191, + 26.5175064 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "answer": 1, + "imagery": "HDM_HOT", + "language": "en", + "change_over_5000m": 1 + }, + "id": 114826322 + } + }, + { + "id": 114822385, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.3129131, + 50.9902912 + ], + [ + 3.3297495, + 50.9902912 + ], + [ + 3.3297495, + 50.9973626 + ], + [ + 3.3129131, + 50.9973626 + ], + [ + 3.3129131, + 50.9902912 + ] + ] + ] + }, + "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": 2, + "modify": 3, + "delete": 0, + "area": 0.000119056918960018, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "entrances", + "answer": 5, + "create": 5, + "imagery": "osm", + "language": "en", + "change_within_25m": 9 + }, + "id": 114822385 + } + }, + { + "id": 114822347, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.3127427, + 50.9972466 + ], + [ + 3.3130243, + 50.9972466 + ], + [ + 3.3130243, + 50.9974897 + ], + [ + 3.3127427, + 50.9974897 + ], + [ + 3.3127427, + 50.9972466 + ] + ] + ] + }, + "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, + "metadata": { + "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" + }, + "id": 114822347 + } + }, + { + "id": 114820618, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.3350238, + 51.0235409 + ], + [ + 3.3350238, + 51.0235409 + ], + [ + 3.3350238, + 51.0235409 + ], + [ + 3.3350238, + 51.0235409 + ], + [ + 3.3350238, + 51.0235409 + ] + ] + ] + }, + "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, + "metadata": { + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "openwindpowermap", + "create": 1, + "imagery": "AGIV", + "language": "en", + "add-image": 1, + "change_over_5000m": 1, + "change_within_100m": 1 + }, + "id": 114820618 + } + }, + { + "id": 114818891, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.3287689, + 51.0763461 + ], + [ + 3.3287689, + 51.0763461 + ], + [ + 3.3287689, + 51.0763461 + ], + [ + 3.3287689, + 51.0763461 + ], + [ + 3.3287689, + 51.0763461 + ] + ] + ] + }, + "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, + "metadata": { + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "waste_basket", + "answer": 1, + "create": 1, + "imagery": "osm", + "language": "en", + "change_over_5000m": 1, + "change_within_25m": 1 + }, + "id": 114818891 + } + }, + { + "id": 114816694, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.233462, + 51.1778524 + ], + [ + 3.233462, + 51.1778524 + ], + [ + 3.233462, + 51.1778524 + ], + [ + 3.233462, + 51.1778524 + ], + [ + 3.233462, + 51.1778524 + ] + ] + ] + }, + "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, + "metadata": { + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "food", + "answer": 1, + "create": 1, + "imagery": "osm", + "language": "en", + "change_over_5000m": 1, + "change_within_50m": 1 + }, + "id": 114816694 + } + }, + { + "id": 114814883, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.9930374, + 47.6965847 + ], + [ + 3.9930374, + 47.6965847 + ], + [ + 3.9930374, + 47.6965847 + ], + [ + 3.9930374, + 47.6965847 + ], + [ + 3.9930374, + 47.6965847 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "answer": 4, + "imagery": "CartoDB.Voyager", + "language": "en", + "add-image": 1, + "change_within_25m": 5 + }, + "id": 114814883 + } + }, + { + "id": 114811413, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 7.4171556, + 46.9289084 + ], + [ + 7.4171556, + 46.9289084 + ], + [ + 7.4171556, + 46.9289084 + ], + [ + 7.4171556, + 46.9289084 + ], + [ + 7.4171556, + 46.9289084 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "answer": 2, + "imagery": "CartoDB.Voyager", + "language": "en", + "change_within_1000m": 2 + }, + "id": 114811413 + } + }, + { + "id": 114810692, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2.8018437, + 42.2305839 + ], + [ + 2.8203557, + 42.2305839 + ], + [ + 2.8203557, + 42.2480011 + ], + [ + 2.8018437, + 42.2480011 + ], + [ + 2.8018437, + 42.2305839 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 24, + "imagery": "osm", + "language": "en" + }, + "id": 114810692 + } + }, + { + "id": 114805192, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -122.4118366, + 37.7889234 + ], + [ + -122.411836, + 37.7889234 + ], + [ + -122.411836, + 37.7889234 + ], + [ + -122.4118366, + 37.7889234 + ], + [ + -122.4118366, + 37.7889234 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "food", + "answer": 4, + "imagery": "osm", + "language": "en", + "change_within_25m": 4 + }, + "id": 114805192 + } + }, + { + "id": 114803817, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.2146452, + 51.2048464 + ], + [ + 3.2167358, + 51.2048464 + ], + [ + 3.2167358, + 51.2056937 + ], + [ + 3.2146452, + 51.2056937 + ], + [ + 3.2146452, + 51.2048464 + ] + ] + ] + }, + "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, + "metadata": { + "host": "127.0.0.1:1234", + "theme": "grb", + "answer": 5, + "imagery": "AGIVFlandersGRB", + "language": "en", + "change_within_5000m": 5 + }, + "id": 114803817 + } + }, + { + "id": 114803562, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.2963517, + 50.8532713 + ], + [ + 4.2963517, + 50.8532713 + ], + [ + 4.2963517, + 50.8532713 + ], + [ + 4.2963517, + 50.8532713 + ], + [ + 4.2963517, + 50.8532713 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 5, + "create": 1, + "imagery": "AGIV", + "language": "en", + "add-image": 1 + }, + "id": 114803562 + } + }, + { + "id": 114803527, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.2966011, + 50.8531917 + ], + [ + 4.2966011, + 50.8531917 + ], + [ + 4.2966011, + 50.8531917 + ], + [ + 4.2966011, + 50.8531917 + ], + [ + 4.2966011, + 50.8531917 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "benches", + "answer": 6, + "create": 1, + "imagery": "UrbISOrtho", + "language": "en", + "add-image": 1 + }, + "id": 114803527 + } + }, + { + "id": 114802084, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.2937016, + 50.8695275 + ], + [ + 4.2938733, + 50.8695275 + ], + [ + 4.2938733, + 50.8696071 + ], + [ + 4.2937016, + 50.8696071 + ], + [ + 4.2937016, + 50.8695275 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "benches", + "answer": 14, + "create": 3, + "imagery": "UrbISOrtho", + "language": "en", + "add-image": 3 + }, + "id": 114802084 + } + }, + { + "id": 114799387, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1.7207659, + 41.2197673 + ], + [ + 1.7211857, + 41.2197673 + ], + [ + 1.7211857, + 41.2202514 + ], + [ + 1.7207659, + 41.2202514 + ], + [ + 1.7207659, + 41.2197673 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "https://osm-catalan.github.io/osmllengcat/src/json/osmllengcat.json", + "answer": 1, + "imagery": "osm", + "language": "ca" + }, + "id": 114799387 + } + }, + { + "id": 114797546, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.2450733, + 50.8151191 + ], + [ + 3.2450733, + 50.8151191 + ], + [ + 3.2450733, + 50.8151191 + ], + [ + 3.2450733, + 50.8151191 + ], + [ + 3.2450733, + 50.8151191 + ] + ] + ] + }, + "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, + "metadata": { + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "shops", + "answer": 2, + "create": 1, + "imagery": "osm", + "language": "en", + "add-image": 1, + "change_over_5000m": 1, + "change_within_100m": 3 + }, + "id": 114797546 + } + }, + { + "id": 114797432, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.2449211, + 50.8151578 + ], + [ + 3.2449211, + 50.8151578 + ], + [ + 3.2449211, + 50.8151578 + ], + [ + 3.2449211, + 50.8151578 + ], + [ + 3.2449211, + 50.8151578 + ] + ] + ] + }, + "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, + "metadata": { + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "climbing", + "answer": 7, + "imagery": "osm", + "language": "en", + "change_within_100m": 7 + }, + "id": 114797432 + } + }, + { + "id": 114797398, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.2450035, + 50.8151903 + ], + [ + 3.2450035, + 50.8151903 + ], + [ + 3.2450035, + 50.8151903 + ], + [ + 3.2450035, + 50.8151903 + ], + [ + 3.2450035, + 50.8151903 + ] + ] + ] + }, + "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, + "metadata": { + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "bookcases", + "answer": 5, + "create": 1, + "imagery": "osm", + "language": "en", + "add-image": 1, + "change_over_5000m": 1, + "change_within_100m": 6 + }, + "id": 114797398 + } + }, + { + "id": 114797118, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.6082346, + 50.1884924 + ], + [ + 4.608434, + 50.1884924 + ], + [ + 4.608434, + 50.1885961 + ], + [ + 4.6082346, + 50.1885961 + ], + [ + 4.6082346, + 50.1884924 + ] + ] + ] + }, + "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, + "metadata": { + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "fritures", + "answer": 4, + "imagery": "osm", + "language": "en", + "change_over_5000m": 4 + }, + "id": 114797118 + } + }, + { + "id": 114794621, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.3836126, + 50.8493697 + ], + [ + 4.3836126, + 50.8493697 + ], + [ + 4.3836126, + 50.8493697 + ], + [ + 4.3836126, + 50.8493697 + ], + [ + 4.3836126, + 50.8493697 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "food", + "imagery": "osm", + "language": "en", + "add-image": 1 + }, + "id": 114794621 + } + }, + { + "id": 114794566, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.2643428, + 50.8245067 + ], + [ + 3.2644068, + 50.8245067 + ], + [ + 3.2644068, + 50.8251279 + ], + [ + 3.2643428, + 50.8251279 + ], + [ + 3.2643428, + 50.8245067 + ] + ] + ] + }, + "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": 1, + "modify": 4, + "delete": 0, + "area": 3.97567999998898e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "entrances", + "answer": 5, + "create": 3, + "imagery": "osm", + "language": "en", + "change_within_25m": 2, + "change_within_50m": 5 + }, + "id": 114794566 + } + }, + { + "id": 114793785, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.2645488, + 50.8252235 + ], + [ + 3.2647875, + 50.8252235 + ], + [ + 3.2647875, + 50.8252794 + ], + [ + 3.2645488, + 50.8252794 + ], + [ + 3.2645488, + 50.8252235 + ] + ] + ] + }, + "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, + "metadata": { + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "food", + "answer": 2, + "create": 2, + "imagery": "osm", + "language": "en", + "change_over_5000m": 2, + "change_within_25m": 1, + "change_within_50m": 1 + }, + "id": 114793785 + } + }, + { + "id": 114792447, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.3630019, + 50.8508295 + ], + [ + 4.3630019, + 50.8508295 + ], + [ + 4.3630019, + 50.8508295 + ], + [ + 4.3630019, + 50.8508295 + ], + [ + 4.3630019, + 50.8508295 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "artwork", + "answer": 1, + "create": 1, + "imagery": "osm", + "language": "nl", + "add-image": 1 + }, + "id": 114792447 + } + }, + { + "id": 114792295, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.3754658, + 50.8484631 + ], + [ + 4.3756197, + 50.8484631 + ], + [ + 4.3756197, + 50.848609 + ], + [ + 4.3754658, + 50.848609 + ], + [ + 4.3754658, + 50.8484631 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "nl", + "add-image": 2 + }, + "id": 114792295 + } + }, + { + "id": 114792106, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.3758319, + 50.8484265 + ], + [ + 4.3760907, + 50.8484265 + ], + [ + 4.3760907, + 50.8485556 + ], + [ + 4.3758319, + 50.8485556 + ], + [ + 4.3758319, + 50.8484265 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "food", + "answer": 4, + "imagery": "osm", + "language": "nl", + "add-image": 2 + }, + "id": 114792106 + } + }, + { + "id": 114792047, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.3753132, + 50.8483868 + ], + [ + 4.3760082, + 50.8483868 + ], + [ + 4.3760082, + 50.8645151 + ], + [ + 4.3753132, + 50.8645151 + ], + [ + 4.3753132, + 50.8483868 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 9, + "create": 2, + "imagery": "osm", + "language": "nl", + "add-image": 1 + }, + "id": 114792047 + } + }, + { + "id": 114783965, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.3766986, + 50.6784338 + ], + [ + 4.3782034, + 50.6784338 + ], + [ + 4.3782034, + 50.6787789 + ], + [ + 4.3766986, + 50.6787789 + ], + [ + 4.3766986, + 50.6784338 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "answer": 2, + "create": 2, + "imagery": "osm", + "language": "en" + }, + "id": 114783965 + } + }, + { + "id": 114783308, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 10.7864266, + 44.5440618 + ], + [ + 10.8742213, + 44.5440618 + ], + [ + 10.8742213, + 44.6032991 + ], + [ + 10.7864266, + 44.6032991 + ], + [ + 10.7864266, + 44.5440618 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 10, + "create": 2, + "imagery": "CartoDB.Voyager", + "language": "en", + "change_over_5000m": 2, + "change_within_25m": 10 + }, + "id": 114783308 + } + }, + { + "id": 114776379, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1.6066459, + 42.9660936 + ], + [ + 1.6066459, + 42.9660936 + ], + [ + 1.6066459, + 42.9660936 + ], + [ + 1.6066459, + 42.9660936 + ], + [ + 1.6066459, + 42.9660936 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "answer": 3, + "create": 1, + "imagery": "osm", + "language": "en", + "change_over_5000m": 1, + "change_within_25m": 3 + }, + "id": 114776379 + } + }, + { + "id": 114773708, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.2992651, + 50.9513244 + ], + [ + 3.3073823, + 50.9513244 + ], + [ + 3.3073823, + 50.9593718 + ], + [ + 3.2992651, + 50.9593718 + ], + [ + 3.2992651, + 50.9513244 + ] + ] + ] + }, + "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, + "metadata": { + "host": "pietervdvn.github.io", + "move": 153, + "path": "mc/develop/", + "theme": "grb", + "answer": 1, + "import": 94, + "imagery": "AGIVFlandersGRB", + "language": "nl", + "conflation": 54 + }, + "id": 114773708 + } + }, + { + "id": 114765605, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.2205293, + 51.1574432 + ], + [ + 3.6113919, + 51.1574432 + ], + [ + 3.6113919, + 51.2175216 + ], + [ + 3.2205293, + 51.2175216 + ], + [ + 3.2205293, + 51.1574432 + ] + ] + ] + }, + "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, + "metadata": { + "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 + }, + "id": 114765605 + } + }, + { + "id": 114758399, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 7.5471681, + 44.3910008 + ], + [ + 7.5507633, + 44.3910008 + ], + [ + 7.5507633, + 44.3942465 + ], + [ + 7.5471681, + 44.3942465 + ], + [ + 7.5471681, + 44.3910008 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 6, + "imagery": "osm", + "language": "en" + }, + "id": 114758399 + } + }, + { + "id": 114752467, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.6263132, + 40.8724303 + ], + [ + 9.6271429, + 40.8724303 + ], + [ + 9.6271429, + 40.8730385 + ], + [ + 9.6263132, + 40.8730385 + ], + [ + 9.6263132, + 40.8724303 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "campersite", + "answer": 3, + "imagery": "osm", + "language": "en", + "add-image": 6, + "change_within_50m": 9 + }, + "id": 114752467 + } + }, + { + "id": 114743466, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.3014748, + 50.9474474 + ], + [ + 3.3072367, + 50.9474474 + ], + [ + 3.3072367, + 50.949005 + ], + [ + 3.3014748, + 50.949005 + ], + [ + 3.3014748, + 50.9474474 + ] + ] + ] + }, + "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, + "metadata": { + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "grb", + "import": 37, + "imagery": "AGIVFlandersGRB", + "language": "nl" + }, + "id": 114743466 + } + }, + { + "id": 114727215, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 7.5513742, + 44.3944712 + ], + [ + 7.5532299, + 44.3944712 + ], + [ + 7.5532299, + 44.3957345 + ], + [ + 7.5513742, + 44.3957345 + ], + [ + 7.5513742, + 44.3944712 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 2, + "imagery": "osm", + "language": "en" + }, + "id": 114727215 + } + }, + { + "id": 114724239, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -122.4132353, + 37.7863082 + ], + [ + -122.413235, + 37.7863082 + ], + [ + -122.413235, + 37.7863082 + ], + [ + -122.4132353, + 37.7863082 + ], + [ + -122.4132353, + 37.7863082 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "food", + "answer": 3, + "imagery": "osm", + "language": "en", + "change_within_25m": 3 + }, + "id": 114724239 + } + }, + { + "id": 114723630, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -122.4145335, + 37.7864382 + ], + [ + -122.4145335, + 37.7864382 + ], + [ + -122.4145335, + 37.7864382 + ], + [ + -122.4145335, + 37.7864382 + ], + [ + -122.4145335, + 37.7864382 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "shops", + "answer": 1, + "create": 1, + "imagery": "osm", + "language": "en", + "change_over_5000m": 1, + "change_within_25m": 1 + }, + "id": 114723630 + } + }, + { + "id": 114720848, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -122.4053416, + 37.7893463 + ], + [ + -122.4036916, + 37.7893463 + ], + [ + -122.4036916, + 37.789757 + ], + [ + -122.4053416, + 37.789757 + ], + [ + -122.4053416, + 37.7893463 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "move": 2, + "theme": "waste_basket", + "answer": 3, + "create": 4, + "imagery": "osm", + "language": "en", + "move:node/-1": "improve_accuracy", + "move:node/-2": "improve_accuracy", + "change_over_5000m": 4, + "change_within_25m": 5 + }, + "id": 114720848 + } + }, + { + "id": 114719850, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -122.4080855, + 37.7882401 + ], + [ + -122.403852, + 37.7882401 + ], + [ + -122.403852, + 37.7889637 + ], + [ + -122.4080855, + 37.7889637 + ], + [ + -122.4080855, + 37.7882401 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "move": 2, + "theme": "waste_basket", + "answer": 5, + "create": 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" + }, + "id": 114719850 + } + }, + { + "id": 114719105, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.2161724, + 51.1965708 + ], + [ + 3.2166855, + 51.1965708 + ], + [ + 3.2166855, + 51.1969378 + ], + [ + 3.2161724, + 51.1969378 + ], + [ + 3.2161724, + 51.1965708 + ] + ] + ] + }, + "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": 1, + "modify": 6, + "delete": 0, + "area": 1.88307699998538e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "127.0.0.1:1234", + "theme": "entrances", + "answer": 5, + "create": 2, + "imagery": "osm", + "language": "en" + }, + "id": 114719105 + } + }, + { + "id": 114714783, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 7.5352827, + 44.3671936 + ], + [ + 7.5544616, + 44.3671936 + ], + [ + 7.5544616, + 44.4024148 + ], + [ + 7.5352827, + 44.4024148 + ], + [ + 7.5352827, + 44.3671936 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 52, + "imagery": "osm", + "language": "en" + }, + "id": 114714783 + } + }, + { + "id": 114713914, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 11.7964639, + 48.0102409 + ], + [ + 11.7964639, + 48.0102409 + ], + [ + 11.7964639, + 48.0102409 + ], + [ + 11.7964639, + 48.0102409 + ], + [ + 11.7964639, + 48.0102409 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "create": 1, + "imagery": "HDM_HOT", + "language": "en", + "change_over_5000m": 1 + }, + "id": 114713914 + } + }, + { + "id": 114709693, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.684883, + 51.1538155 + ], + [ + 4.684883, + 51.1538155 + ], + [ + 4.684883, + 51.1538155 + ], + [ + 4.684883, + 51.1538155 + ], + [ + 4.684883, + 51.1538155 + ] + ] + ] + }, + "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, + "metadata": { + "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" + }, + "id": 114709693 + } + }, + { + "id": 114707253, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.3267373, + 50.7349897 + ], + [ + 4.3267373, + 50.7349897 + ], + [ + 4.3267373, + 50.7349897 + ], + [ + 4.3267373, + 50.7349897 + ], + [ + 4.3267373, + 50.7349897 + ] + ] + ] + }, + "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, + "metadata": { + "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" + }, + "id": 114707253 + } + }, + { + "id": 114705804, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.4599157, + 51.0874391 + ], + [ + 3.4617269, + 51.0874391 + ], + [ + 3.4617269, + 51.089368 + ], + [ + 3.4599157, + 51.089368 + ], + [ + 3.4599157, + 51.0874391 + ] + ] + ] + }, + "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, + "metadata": { + "host": "pietervdvn.github.io", + "move": 21, + "path": "mc/develop/", + "theme": "grb", + "import": 3, + "imagery": "osm", + "language": "en", + "conflation": 6, + "change_over_5000m": 3 + }, + "id": 114705804 + } + }, + { + "id": 114701458, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 7.5465978, + 44.3873779 + ], + [ + 7.5546432, + 44.3873779 + ], + [ + 7.5546432, + 44.3955369 + ], + [ + 7.5465978, + 44.3955369 + ], + [ + 7.5465978, + 44.3873779 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 74, + "imagery": "osm", + "language": "en", + "change_over_5000m": 8, + "change_within_5000m": 45 + }, + "id": 114701458 + } + }, + { + "id": 114701243, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1.4803391, + 41.1688447 + ], + [ + 1.5374408, + 41.1688447 + ], + [ + 1.5374408, + 41.2183955 + ], + [ + 1.4803391, + 41.2183955 + ], + [ + 1.4803391, + 41.1688447 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "https://raw.githubusercontent.com/yopaseopor/mcquests/master/restaurants.json", + "answer": 3, + "imagery": "osm", + "language": "ca" + }, + "id": 114701243 + } + }, + { + "id": 114700843, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.4629066, + 51.0876886 + ], + [ + 3.4655092, + 51.0876886 + ], + [ + 3.4655092, + 51.0887783 + ], + [ + 3.4629066, + 51.0887783 + ], + [ + 3.4629066, + 51.0876886 + ] + ] + ] + }, + "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, + "metadata": { + "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 + }, + "id": 114700843 + } + }, + { + "id": 114699400, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.7257129, + 51.040663 + ], + [ + 3.7257129, + 51.040663 + ], + [ + 3.7257129, + 51.040663 + ], + [ + 3.7257129, + 51.040663 + ], + [ + 3.7257129, + 51.040663 + ] + ] + ] + }, + "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, + "metadata": { + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "cyclofix", + "answer": 3, + "imagery": "CartoDB.Voyager", + "language": "en", + "add-image": 1, + "change_within_25m": 4 + }, + "id": 114699400 + } + }, + { + "id": 114688415, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 11.8051636, + 47.991241 + ], + [ + 11.8051636, + 47.991241 + ], + [ + 11.8051636, + 47.991241 + ], + [ + 11.8051636, + 47.991241 + ], + [ + 11.8051636, + 47.991241 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "create": 1, + "imagery": "HDM_HOT", + "language": "en", + "change_over_5000m": 1 + }, + "id": 114688415 + } + }, + { + "id": 114688133, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 7.5319247, + 44.3890623 + ], + [ + 7.5481081, + 44.3890623 + ], + [ + 7.5481081, + 44.4010033 + ], + [ + 7.5319247, + 44.4010033 + ], + [ + 7.5319247, + 44.3890623 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 21, + "imagery": "osm", + "language": "en" + }, + "id": 114688133 + } + }, + { + "id": 114679656, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -122.4064118, + 37.7843163 + ], + [ + -122.4059424, + 37.7843163 + ], + [ + -122.4059424, + 37.7846408 + ], + [ + -122.4064118, + 37.7846408 + ], + [ + -122.4064118, + 37.7843163 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "food", + "answer": 8, + "create": 4, + "imagery": "osm", + "language": "en", + "change_over_5000m": 4, + "change_within_25m": 2, + "change_within_50m": 6 + }, + "id": 114679656 + } + }, + { + "id": 114673318, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 11.7886385, + 48.0092351 + ], + [ + 11.7886385, + 48.0092351 + ], + [ + 11.7886385, + 48.0092351 + ], + [ + 11.7886385, + 48.0092351 + ], + [ + 11.7886385, + 48.0092351 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "waste_basket", + "answer": 2, + "create": 1, + "imagery": "osm", + "language": "en", + "change_over_5000m": 1, + "change_within_25m": 2 + }, + "id": 114673318 + } + }, + { + "id": 114666146, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.9793071, + 50.3649385 + ], + [ + 5.5368778, + 50.3649385 + ], + [ + 5.5368778, + 50.723654 + ], + [ + 4.9793071, + 50.723654 + ], + [ + 4.9793071, + 50.3649385 + ] + ] + ] + }, + "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, + "metadata": { + "host": "127.0.0.1:1234", + "theme": "postal_codes", + "answer": 16, + "imagery": "osm", + "language": "en" + }, + "id": 114666146 + } + }, + { + "id": 114661934, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 14.499177, + 51.8618958 + ], + [ + 14.499177, + 51.8618958 + ], + [ + 14.499177, + 51.8618958 + ], + [ + 14.499177, + 51.8618958 + ], + [ + 14.499177, + 51.8618958 + ] + ] + ] + }, + "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, + "metadata": { + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "id": 114661934 + } + }, + { + "id": 114655773, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.9927784, + 50.773047 + ], + [ + 4.9942494, + 50.773047 + ], + [ + 4.9942494, + 50.7742031 + ], + [ + 4.9927784, + 50.7742031 + ], + [ + 4.9927784, + 50.773047 + ] + ] + ] + }, + "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, + "metadata": { + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "grb", + "import": 20, + "imagery": "AGIVFlandersGRB", + "language": "en" + }, + "id": 114655773 + } + }, + { + "id": 114654575, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.2230417, + 50.8826023 + ], + [ + 3.2579006, + 50.8826023 + ], + [ + 3.2579006, + 50.8984343 + ], + [ + 3.2230417, + 50.8984343 + ], + [ + 3.2230417, + 50.8826023 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 31, + "imagery": "osm", + "language": "nl" + }, + "id": 114654575 + } + }, + { + "id": 114648896, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -0.0355124, + 49.0182418 + ], + [ + -0.0323045, + 49.0182418 + ], + [ + -0.0323045, + 49.0204959 + ], + [ + -0.0355124, + 49.0204959 + ], + [ + -0.0355124, + 49.0182418 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "hailhydrant", + "answer": 4, + "create": 2, + "imagery": "HDM_HOT", + "language": "fr", + "move:node/9233019525": "improve_accuracy" + }, + "id": 114648896 + } + }, + { + "id": 114648895, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -0.0399435, + 49.0242565 + ], + [ + -0.0399435, + 49.0242565 + ], + [ + -0.0399435, + 49.0242565 + ], + [ + -0.0399435, + 49.0242565 + ], + [ + -0.0399435, + 49.0242565 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "answer": 1, + "create": 1, + "imagery": "HDM_HOT", + "language": "fr" + }, + "id": 114648895 + } + }, + { + "id": 114647202, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 11.7924795, + 48.0040149 + ], + [ + 11.7924795, + 48.0040149 + ], + [ + 11.7924795, + 48.0040149 + ], + [ + 11.7924795, + 48.0040149 + ], + [ + 11.7924795, + 48.0040149 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "answer": 1, + "create": 1, + "imagery": "HDM_HOT", + "language": "en", + "change_over_5000m": 1, + "change_within_25m": 1 + }, + "id": 114647202 + } + }, + { + "id": 114644262, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 7.5430789, + 44.3910939 + ], + [ + 7.5543867, + 44.3910939 + ], + [ + 7.5543867, + 44.3957781 + ], + [ + 7.5430789, + 44.3957781 + ], + [ + 7.5430789, + 44.3910939 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 11, + "imagery": "osm", + "language": "en", + "change_within_5000m": 11 + }, + "id": 114644262 + } + }, + { + "id": 114628069, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.4496883, + 51.0971029 + ], + [ + 3.4536209, + 51.0971029 + ], + [ + 3.4536209, + 51.0994172 + ], + [ + 3.4496883, + 51.0994172 + ], + [ + 3.4496883, + 51.0971029 + ] + ] + ] + }, + "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, + "metadata": { + "host": "pietervdvn.github.io", + "move": 12, + "path": "mc/develop/", + "theme": "grb", + "answer": 1, + "imagery": "AGIVFlandersGRB", + "language": "en", + "conflation": 6 + }, + "id": 114628069 + } + }, + { + "id": 114622793, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.3027113, + 50.9486367 + ], + [ + 3.3071859, + 50.9486367 + ], + [ + 3.3071859, + 50.9510773 + ], + [ + 3.3027113, + 50.9510773 + ], + [ + 3.3027113, + 50.9486367 + ] + ] + ] + }, + "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, + "metadata": { + "host": "pietervdvn.github.io", + "move": 5, + "path": "mc/develop/", + "theme": "grb", + "import": 68, + "imagery": "AGIVFlandersGRB", + "language": "nl", + "conflation": 2 + }, + "id": 114622793 + } + }, + { + "id": 114618802, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.1234206, + 50.0803254 + ], + [ + 5.1234206, + 50.0803254 + ], + [ + 5.1234206, + 50.0803254 + ], + [ + 5.1234206, + 50.0803254 + ], + [ + 5.1234206, + 50.0803254 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 4, + "create": 1, + "imagery": "CartoDB.Voyager", + "language": "en", + "change_over_5000m": 1, + "change_within_25m": 4 + }, + "id": 114618802 + } + }, + { + "id": 114618588, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.2994377, + 50.9509658 + ], + [ + 3.3054203, + 50.9509658 + ], + [ + 3.3054203, + 50.9543456 + ], + [ + 3.2994377, + 50.9543456 + ], + [ + 3.2994377, + 50.9509658 + ] + ] + ] + }, + "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, + "metadata": { + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "grb", + "import": 39, + "imagery": "AGIVFlandersGRB", + "language": "nl" + }, + "id": 114618588 + } + }, + { + "id": 114618358, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.1234347, + 50.0803731 + ], + [ + 5.1234347, + 50.0803731 + ], + [ + 5.1234347, + 50.0803731 + ], + [ + 5.1234347, + 50.0803731 + ], + [ + 5.1234347, + 50.0803731 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "aed", + "answer": 6, + "create": 1, + "imagery": "osm", + "language": "en", + "change_over_5000m": 1, + "change_within_25m": 6 + }, + "id": 114618358 + } + }, + { + "id": 114617692, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.2773907, + 50.9416614 + ], + [ + 3.3029723, + 50.9416614 + ], + [ + 3.3029723, + 50.9543371 + ], + [ + 3.2773907, + 50.9543371 + ], + [ + 3.2773907, + 50.9416614 + ] + ] + ] + }, + "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, + "metadata": { + "host": "pietervdvn.github.io", + "move": 8, + "path": "mc/develop/", + "theme": "grb", + "answer": 1, + "import": 90, + "imagery": "AGIVFlandersGRB", + "language": "nl", + "conflation": 2 + }, + "id": 114617692 + } + }, + { + "id": 114617681, + "type": "Feature", + "geometry": null, + "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:42:52Z", + "reviewed_features": [], + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "grb", + "import": 1, + "imagery": "AGIVFlandersGRB", + "language": "nl" + }, + "id": 114617681 + } + }, + { + "id": 114617676, + "type": "Feature", + "geometry": null, + "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:42:48Z", + "reviewed_features": [], + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "grb", + "import": 1, + "imagery": "AGIVFlandersGRB", + "language": "nl" + }, + "id": 114617676 + } + }, + { + "id": 114617475, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.1632798, + 50.0084985 + ], + [ + 5.1640243, + 50.0084985 + ], + [ + 5.1640243, + 50.0088828 + ], + [ + 5.1632798, + 50.0088828 + ], + [ + 5.1632798, + 50.0084985 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "campersite", + "answer": 6, + "imagery": "osm", + "language": "en", + "add-image": 4, + "change_within_500m": 10 + }, + "id": 114617475 + } + }, + { + "id": 114616724, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.1005269, + 50.9377041 + ], + [ + 3.3021407, + 50.9377041 + ], + [ + 3.3021407, + 50.9719011 + ], + [ + 3.1005269, + 50.9719011 + ], + [ + 3.1005269, + 50.9377041 + ] + ] + ] + }, + "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, + "metadata": { + "host": "pietervdvn.github.io", + "move": 235, + "path": "mc/develop/", + "theme": "grb", + "answer": 3, + "import": 19, + "imagery": "AGIVFlandersGRB", + "language": "nl", + "conflation": 72 + }, + "id": 114616724 + } + }, + { + "id": 114616649, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.7478955, + 50.7737708 + ], + [ + 4.9931793, + 50.7737708 + ], + [ + 4.9931793, + 51.1617069 + ], + [ + 4.7478955, + 51.1617069 + ], + [ + 4.7478955, + 50.7737708 + ] + ] + ] + }, + "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, + "metadata": { + "host": "pietervdvn.github.io", + "move": 16, + "path": "mc/develop/", + "theme": "grb", + "import": 5, + "imagery": "osm", + "language": "en", + "conflation": 6 + }, + "id": 114616649 + } + }, + { + "id": 114614741, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.0399, + 50.8752695 + ], + [ + 5.0399, + 50.8752695 + ], + [ + 5.0399, + 50.8752695 + ], + [ + 5.0399, + 50.8752695 + ], + [ + 5.0399, + 50.8752695 + ] + ] + ] + }, + "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, + "metadata": { + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "entrances", + "answer": 1, + "imagery": "osm", + "language": "en" + }, + "id": 114614741 + } + }, + { + "id": 114614393, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.6114824, + 51.1553777 + ], + [ + 3.6166481, + 51.1553777 + ], + [ + 3.6166481, + 51.1579984 + ], + [ + 3.6114824, + 51.1579984 + ], + [ + 3.6114824, + 51.1553777 + ] + ] + ] + }, + "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, + "metadata": { + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "grb", + "import": 73, + "imagery": "AGIVFlandersGRB", + "language": "en", + "change_over_5000m": 22 + }, + "id": 114614393 + } + }, + { + "id": 114614389, + "type": "Feature", + "geometry": null, + "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:51Z", + "reviewed_features": [], + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "grb", + "import": 1, + "imagery": "AGIVFlandersGRB", + "language": "en", + "change_over_5000m": 1 + }, + "id": 114614389 + } + }, + { + "id": 114614354, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.6152563, + 51.1550536 + ], + [ + 3.6159833, + 51.1550536 + ], + [ + 3.6159833, + 51.1554201 + ], + [ + 3.6152563, + 51.1554201 + ], + [ + 3.6152563, + 51.1550536 + ] + ] + ] + }, + "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, + "metadata": { + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "grb", + "import": 10, + "imagery": "AGIVFlandersGRB", + "language": "en", + "change_over_5000m": 10 + }, + "id": 114614354 + } + }, + { + "id": 114612439, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.2319805, + 50.8865419 + ], + [ + 3.2421749, + 50.8865419 + ], + [ + 3.2421749, + 50.8917045 + ], + [ + 3.2319805, + 50.8917045 + ], + [ + 3.2319805, + 50.8865419 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 6, + "imagery": "osm", + "language": "nl" + }, + "id": 114612439 + } + }, + { + "id": 114609219, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.7266788, + 49.8358542 + ], + [ + 5.7266788, + 49.8358542 + ], + [ + 5.7266788, + 49.8358542 + ], + [ + 5.7266788, + 49.8358542 + ], + [ + 5.7266788, + 49.8358542 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "answer": 6, + "create": 1, + "imagery": "osm", + "language": "en", + "change_over_5000m": 1, + "change_within_25m": 6 + }, + "id": 114609219 + } + }, + { + "id": 114606422, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 11.8012664, + 48.0126946 + ], + [ + 11.8177459, + 48.0126946 + ], + [ + 11.8177459, + 48.0239348 + ], + [ + 11.8012664, + 48.0239348 + ], + [ + 11.8012664, + 48.0126946 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "answer": 3, + "create": 10, + "imagery": "HDM_HOT", + "language": "en", + "change_over_5000m": 10, + "change_within_25m": 1, + "change_within_50m": 1, + "change_within_100m": 1 + }, + "id": 114606422 + } + }, + { + "id": 114599635, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.2463151, + 50.8354431 + ], + [ + 3.249352, + 50.8354431 + ], + [ + 3.249352, + 50.8386874 + ], + [ + 3.2463151, + 50.8386874 + ], + [ + 3.2463151, + 50.8354431 + ] + ] + ] + }, + "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, + "metadata": { + "host": "127.0.0.1:1234", + "move": 88, + "theme": "grb", + "answer": 1, + "import": 58, + "imagery": "osm", + "language": "nl", + "conflation": 28 + }, + "id": 114599635 + } + }, + { + "id": 114599169, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.2445984, + 50.8366182 + ], + [ + 3.247235, + 50.8366182 + ], + [ + 3.247235, + 50.8377905 + ], + [ + 3.2445984, + 50.8377905 + ], + [ + 3.2445984, + 50.8366182 + ] + ] + ] + }, + "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, + "metadata": { + "host": "127.0.0.1:1234", + "move": 136, + "theme": "grb", + "answer": 3, + "import": 18, + "imagery": "AGIVFlandersGRB", + "language": "nl", + "conflation": 30 + }, + "id": 114599169 + } + }, + { + "id": 114597644, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -42.8429793, + -5.0986538 + ], + [ + -42.8012914, + -5.0986538 + ], + [ + -42.8012914, + -5.0905728 + ], + [ + -42.8429793, + -5.0905728 + ], + [ + -42.8429793, + -5.0986538 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "answer": 6, + "imagery": "HDM_HOT", + "language": "en" + }, + "id": 114597644 + } + }, + { + "id": 114597538, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -42.8351375, + -5.1074537 + ], + [ + -42.8063812, + -5.1074537 + ], + [ + -42.8063812, + -5.0811128 + ], + [ + -42.8351375, + -5.0811128 + ], + [ + -42.8351375, + -5.1074537 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "street_lighting", + "answer": 5, + "imagery": "osm", + "language": "en" + }, + "id": 114597538 + } + }, + { + "id": 114597502, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 175.1432115, + -36.8454932 + ], + [ + 175.1487854, + -36.8454932 + ], + [ + 175.1487854, + -36.8424731 + ], + [ + 175.1432115, + -36.8424731 + ], + [ + 175.1432115, + -36.8454932 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 9, + "imagery": "osm", + "language": "en" + }, + "id": 114597502 + } + }, + { + "id": 114597432, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -42.810037, + -5.0876276 + ], + [ + -42.8054336, + -5.0876276 + ], + [ + -42.8054336, + -5.0845865 + ], + [ + -42.810037, + -5.0845865 + ], + [ + -42.810037, + -5.0876276 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 6, + "imagery": "CartoDB.Voyager", + "language": "en" + }, + "id": 114597432 + } + }, + { + "id": 114596214, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.2427506, + 50.8369974 + ], + [ + 3.2446547, + 50.8369974 + ], + [ + 3.2446547, + 50.8376291 + ], + [ + 3.2427506, + 50.8376291 + ], + [ + 3.2427506, + 50.8369974 + ] + ] + ] + }, + "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, + "metadata": { + "host": "127.0.0.1:1234", + "move": 69, + "theme": "grb", + "answer": 12, + "import": 2, + "imagery": "AGIV", + "language": "nl", + "conflation": 22 + }, + "id": 114596214 + } + }, + { + "id": 114593204, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.6142607, + 51.1545843 + ], + [ + 3.6167583, + 51.1545843 + ], + [ + 3.6167583, + 51.1575608 + ], + [ + 3.6142607, + 51.1575608 + ], + [ + 3.6142607, + 51.1545843 + ] + ] + ] + }, + "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, + "metadata": { + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "grb", + "import": 12, + "imagery": "AGIVFlandersGRB", + "language": "nl", + "change_over_5000m": 12 + }, + "id": 114593204 + } + }, + { + "id": 114589925, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.6164282, + 51.1574815 + ], + [ + 3.6171453, + 51.1574815 + ], + [ + 3.6171453, + 51.1585842 + ], + [ + 3.6164282, + 51.1585842 + ], + [ + 3.6164282, + 51.1574815 + ] + ] + ] + }, + "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, + "metadata": { + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "grb", + "import": 24, + "imagery": "osm", + "language": "nl", + "change_over_5000m": 24 + }, + "id": 114589925 + } + }, + { + "id": 114589923, + "type": "Feature", + "geometry": null, + "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:28Z", + "reviewed_features": [], + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "grb", + "import": 1, + "imagery": "osm", + "language": "nl", + "change_over_5000m": 1 + }, + "id": 114589923 + } + }, + { + "id": 114589920, + "type": "Feature", + "geometry": null, + "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:26Z", + "reviewed_features": [], + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "grb", + "import": 2, + "imagery": "osm", + "language": "nl", + "change_over_5000m": 2 + }, + "id": 114589920 + } + }, + { + "id": 114589804, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.6155907, + 51.1570019 + ], + [ + 3.6166481, + 51.1570019 + ], + [ + 3.6166481, + 51.1578602 + ], + [ + 3.6155907, + 51.1578602 + ], + [ + 3.6155907, + 51.1570019 + ] + ] + ] + }, + "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, + "metadata": { + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "grb", + "import": 15, + "imagery": "AGIV", + "language": "nl", + "change_over_5000m": 15 + }, + "id": 114589804 + } + }, + { + "id": 114589800, + "type": "Feature", + "geometry": null, + "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:42Z", + "reviewed_features": [], + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "grb", + "import": 2, + "imagery": "AGIV", + "language": "nl", + "change_over_5000m": 2 + }, + "id": 114589800 + } + }, + { + "id": 114589796, + "type": "Feature", + "geometry": null, + "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:31Z", + "reviewed_features": [], + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "grb", + "import": 1, + "imagery": "AGIV", + "language": "nl", + "change_over_5000m": 1 + }, + "id": 114589796 + } + }, + { + "id": 114589793, + "type": "Feature", + "geometry": null, + "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:23Z", + "reviewed_features": [], + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "grb", + "import": 1, + "imagery": "AGIV", + "language": "nl", + "change_over_5000m": 1 + }, + "id": 114589793 + } + }, + { + "id": 114589791, + "type": "Feature", + "geometry": null, + "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:21Z", + "reviewed_features": [], + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "grb", + "import": 1, + "imagery": "AGIV", + "language": "nl", + "change_over_5000m": 1 + }, + "id": 114589791 + } + }, + { + "id": 114589695, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.6155354, + 51.1569516 + ], + [ + 3.6165651, + 51.1569516 + ], + [ + 3.6165651, + 51.1577145 + ], + [ + 3.6155354, + 51.1577145 + ], + [ + 3.6155354, + 51.1569516 + ] + ] + ] + }, + "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, + "metadata": { + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "grb", + "import": 28, + "imagery": "AGIV", + "language": "nl", + "change_over_5000m": 2 + }, + "id": 114589695 + } + }, + { + "id": 114589690, + "type": "Feature", + "geometry": null, + "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:18Z", + "reviewed_features": [], + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "grb", + "import": 2, + "imagery": "AGIV", + "language": "nl" + }, + "id": 114589690 + } + }, + { + "id": 114589684, + "type": "Feature", + "geometry": null, + "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:07Z", + "reviewed_features": [], + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "grb", + "import": 1, + "imagery": "AGIV", + "language": "nl" + }, + "id": 114589684 + } + }, + { + "id": 114589682, + "type": "Feature", + "geometry": null, + "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:03Z", + "reviewed_features": [], + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "grb", + "import": 1, + "imagery": "AGIV", + "language": "nl" + }, + "id": 114589682 + } + }, + { + "id": 114589678, + "type": "Feature", + "geometry": null, + "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:00Z", + "reviewed_features": [], + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "grb", + "import": 1, + "imagery": "AGIV", + "language": "nl" + }, + "id": 114589678 + } + }, + { + "id": 114589631, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.615682, + 51.1563665 + ], + [ + 3.6163246, + 51.1563665 + ], + [ + 3.6163246, + 51.1569782 + ], + [ + 3.615682, + 51.1569782 + ], + [ + 3.615682, + 51.1563665 + ] + ] + ] + }, + "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, + "metadata": { + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "grb", + "import": 12, + "imagery": "osm", + "language": "nl" + }, + "id": 114589631 + } + }, + { + "id": 114583434, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.7284616, + 49.8351664 + ], + [ + 5.7284616, + 49.8351664 + ], + [ + 5.7284616, + 49.8351664 + ], + [ + 5.7284616, + 49.8351664 + ], + [ + 5.7284616, + 49.8351664 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "answer": 2, + "create": 1, + "imagery": "HDM_HOT", + "language": "en", + "change_over_5000m": 1, + "change_within_25m": 2 + }, + "id": 114583434 + } + }, + { + "id": 114581092, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.2435793, + 50.8371156 + ], + [ + 3.2440982, + 50.8371156 + ], + [ + 3.2440982, + 50.8373507 + ], + [ + 3.2435793, + 50.8373507 + ], + [ + 3.2435793, + 50.8371156 + ] + ] + ] + }, + "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, + "metadata": { + "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 + }, + "id": 114581092 + } + }, + { + "id": 114580691, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.727428, + 49.8338098 + ], + [ + 5.7288444, + 49.8338098 + ], + [ + 5.7288444, + 49.8357199 + ], + [ + 5.727428, + 49.8357199 + ], + [ + 5.727428, + 49.8338098 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "answer": 12, + "create": 2, + "imagery": "osm", + "language": "nl", + "change_over_5000m": 2, + "change_within_50m": 6, + "change_within_500m": 6 + }, + "id": 114580691 + } + }, + { + "id": 114571409, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.2193075, + 50.8371879 + ], + [ + 3.2455402, + 50.8371879 + ], + [ + 3.2455402, + 51.2101415 + ], + [ + 3.2193075, + 51.2101415 + ], + [ + 3.2193075, + 50.8371879 + ] + ] + ] + }, + "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, + "metadata": { + "host": "127.0.0.1:1234", + "move": 170, + "theme": "grb", + "answer": 29, + "import": 30, + "imagery": "osm", + "language": "en", + "conflation": 46 + }, + "id": 114571409 + } + }, + { + "id": 114571100, + "type": "Feature", + "geometry": null, + "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": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "127.0.0.1:1234", + "theme": "grb", + "import": 1, + "imagery": "AGIV", + "language": "en" + }, + "id": 114571100 + } + }, + { + "id": 114571099, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.244039, + 50.8380083 + ], + [ + 3.244282, + 50.8380083 + ], + [ + 3.244282, + 50.8381349 + ], + [ + 3.244039, + 50.8381349 + ], + [ + 3.244039, + 50.8380083 + ] + ] + ] + }, + "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, + "metadata": { + "host": "127.0.0.1:1234", + "theme": "grb", + "import": 1, + "imagery": "AGIVFlandersGRB", + "language": "en" + }, + "id": 114571099 + } + }, + { + "id": 114571030, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.2432352, + 50.8375624 + ], + [ + 3.2458741, + 50.8375624 + ], + [ + 3.2458741, + 50.8382432 + ], + [ + 3.2432352, + 50.8382432 + ], + [ + 3.2432352, + 50.8375624 + ] + ] + ] + }, + "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, + "metadata": { + "host": "127.0.0.1:1234", + "move": 65, + "theme": "grb", + "answer": 2, + "import": 8, + "imagery": "AGIVFlandersGRB", + "language": "en", + "conflation": 18 + }, + "id": 114571030 + } + }, + { + "id": 114570730, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.2443664, + 50.8379545 + ], + [ + 3.2454195, + 50.8379545 + ], + [ + 3.2454195, + 50.8384085 + ], + [ + 3.2443664, + 50.8384085 + ], + [ + 3.2443664, + 50.8379545 + ] + ] + ] + }, + "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, + "metadata": { + "host": "127.0.0.1:1234", + "move": 30, + "theme": "grb", + "answer": 6, + "import": 1, + "imagery": "AGIVFlandersGRB", + "language": "en", + "conflation": 6 + }, + "id": 114570730 + } + }, + { + "id": 114570678, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.2446013, + 50.838087 + ], + [ + 3.245534, + 50.838087 + ], + [ + 3.245534, + 50.8384417 + ], + [ + 3.2446013, + 50.8384417 + ], + [ + 3.2446013, + 50.838087 + ] + ] + ] + }, + "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, + "metadata": { + "host": "127.0.0.1:1234", + "move": 37, + "theme": "grb", + "answer": 2, + "import": 1, + "imagery": "AGIVFlandersGRB", + "language": "en", + "conflation": 12 + }, + "id": 114570678 + } + }, + { + "id": 114570109, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.2453812, + 50.8380764 + ], + [ + 3.2476367, + 50.8380764 + ], + [ + 3.2476367, + 50.8387764 + ], + [ + 3.2453812, + 50.8387764 + ], + [ + 3.2453812, + 50.8380764 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "move": 60, + "theme": "grb", + "answer": 9, + "import": 15, + "imagery": "AGIV", + "language": "en", + "conflation": 22, + "change_over_5000m": 6 + }, + "id": 114570109 + } + }, + { + "id": 114567284, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2.2441555, + 41.4486033 + ], + [ + 2.245366, + 41.4486033 + ], + [ + 2.245366, + 41.4491344 + ], + [ + 2.2441555, + 41.4491344 + ], + [ + 2.2441555, + 41.4486033 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "https://llefia.org/arbres/mapcomplete1.json", + "answer": 4, + "imagery": "HDM_HOT", + "language": "ca", + "change_within_25m": 4 + }, + "id": 114567284 + } + }, + { + "id": 114565529, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2.2549344, + 41.4511433 + ], + [ + 2.2582354, + 41.4511433 + ], + [ + 2.2582354, + 41.4539209 + ], + [ + 2.2549344, + 41.4539209 + ], + [ + 2.2549344, + 41.4511433 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "https://llefia.org/arbres/mapcomplete1.json", + "answer": 9, + "create": 9, + "imagery": "HDM_HOT", + "language": "ca", + "change_over_5000m": 9, + "change_within_25m": 8, + "change_within_50m": 1 + }, + "id": 114565529 + } + }, + { + "id": 114564109, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 11.7927515, + 48.0078687 + ], + [ + 11.7927515, + 48.0078687 + ], + [ + 11.7927515, + 48.0078687 + ], + [ + 11.7927515, + 48.0078687 + ], + [ + 11.7927515, + 48.0078687 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "street_lighting", + "answer": 6, + "create": 1, + "imagery": "osm", + "language": "en", + "change_over_5000m": 1, + "change_within_25m": 6 + }, + "id": 114564109 + } + }, + { + "id": 114563930, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.3898746, + 50.8527969 + ], + [ + 4.3898746, + 50.8527969 + ], + [ + 4.3898746, + 50.8527969 + ], + [ + 4.3898746, + 50.8527969 + ], + [ + 4.3898746, + 50.8527969 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "shops", + "answer": 1, + "imagery": "osm", + "language": "en", + "add-image": 1 + }, + "id": 114563930 + } + }, + { + "id": 114563899, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.3729683, + 50.841156 + ], + [ + 4.3899067, + 50.841156 + ], + [ + 4.3899067, + 50.8528503 + ], + [ + 4.3729683, + 50.8528503 + ], + [ + 4.3729683, + 50.841156 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 11, + "create": 2, + "imagery": "UrbISOrtho2020", + "language": "en", + "add-image": 1 + }, + "id": 114563899 + } + }, + { + "id": 114563581, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 11.7914468, + 48.0044671 + ], + [ + 11.7914468, + 48.0044671 + ], + [ + 11.7914468, + 48.0044671 + ], + [ + 11.7914468, + 48.0044671 + ], + [ + 11.7914468, + 48.0044671 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "answer": 1, + "create": 1, + "imagery": "CartoDB.Voyager", + "language": "de", + "change_over_5000m": 1, + "change_within_25m": 1 + }, + "id": 114563581 + } + }, + { + "id": 114563116, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 11.7879358, + 48.0031633 + ], + [ + 11.7951751, + 48.0031633 + ], + [ + 11.7951751, + 48.0083047 + ], + [ + 11.7879358, + 48.0083047 + ], + [ + 11.7879358, + 48.0031633 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "answer": 5, + "create": 11, + "imagery": "HDM_HOT", + "language": "de", + "change_over_5000m": 11, + "change_within_25m": 4, + "change_within_100m": 1 + }, + "id": 114563116 + } + }, + { + "id": 114559225, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 11.7766008, + 48.1080849 + ], + [ + 11.7766008, + 48.1080849 + ], + [ + 11.7766008, + 48.1080849 + ], + [ + 11.7766008, + 48.1080849 + ], + [ + 11.7766008, + 48.1080849 + ] + ] + ] + }, + "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, + "metadata": { + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "benches", + "answer": 5, + "create": 1, + "imagery": "osm", + "language": "de", + "change_over_5000m": 1, + "change_within_5000m": 5 + }, + "id": 114559225 + } + }, + { + "id": 114558562, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -73.2301221, + -39.8378588 + ], + [ + -73.2301221, + -39.8378588 + ], + [ + -73.2301221, + -39.8378588 + ], + [ + -73.2301221, + -39.8378588 + ], + [ + -73.2301221, + -39.8378588 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "osm", + "language": "en", + "add-image": 1 + }, + "id": 114558562 + } + }, + { + "id": 114556655, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 7.629975, + 51.7364493 + ], + [ + 7.629975, + 51.7364493 + ], + [ + 7.629975, + 51.7364493 + ], + [ + 7.629975, + 51.7364493 + ], + [ + 7.629975, + 51.7364493 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "benches", + "answer": 2, + "imagery": "osm", + "language": "de", + "change_within_25m": 2 + }, + "id": 114556655 + } + }, + { + "id": 114556349, + "type": "Feature", + "geometry": null, + "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:14:23Z", + "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", + "answer": 2, + "imagery": "osm", + "language": "de", + "change_within_100m": 2 + }, + "id": 114556349 + } + }, + { + "id": 114547321, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.7296998, + 49.8311215 + ], + [ + 5.7296998, + 49.8311215 + ], + [ + 5.7296998, + 49.8311215 + ], + [ + 5.7296998, + 49.8311215 + ], + [ + 5.7296998, + 49.8311215 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "answer": 3, + "imagery": "CartoDB.Voyager", + "language": "nl", + "add-image": 2, + "change_within_500m": 5 + }, + "id": 114547321 + } + }, + { + "id": 114547035, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.7347611, + 49.8305193 + ], + [ + 5.7347611, + 49.8305193 + ], + [ + 5.7347611, + 49.8305193 + ], + [ + 5.7347611, + 49.8305193 + ], + [ + 5.7347611, + 49.8305193 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "answer": 1, + "create": 1, + "imagery": "osm", + "language": "nl", + "add-image": 1, + "change_over_5000m": 1, + "change_within_25m": 2 + }, + "id": 114547035 + } + }, + { + "id": 114529779, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.8224959, + 50.8990666 + ], + [ + 4.8224959, + 50.8990666 + ], + [ + 4.8224959, + 50.8990666 + ], + [ + 4.8224959, + 50.8990666 + ], + [ + 4.8224959, + 50.8990666 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "answer": 1, + "create": 1, + "imagery": "AGIV", + "language": "nl" + }, + "id": 114529779 + } + }, + { + "id": 114529543, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.1617783, + 45.3681034 + ], + [ + 8.1788728, + 45.3681034 + ], + [ + 8.1788728, + 45.378545 + ], + [ + 8.1617783, + 45.378545 + ], + [ + 8.1617783, + 45.3681034 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 47, + "imagery": "osm", + "language": "it" + }, + "id": 114529543 + } + }, + { + "id": 114528127, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.2223881, + 51.2085177 + ], + [ + 3.2229013, + 51.2085177 + ], + [ + 3.2229013, + 51.2088167 + ], + [ + 3.2223881, + 51.2088167 + ], + [ + 3.2223881, + 51.2085177 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "grb", + "answer": 6, + "import": 1, + "imagery": "AGIVFlandersGRB", + "language": "en" + }, + "id": 114528127 + } + }, + { + "id": 114528068, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -73.2458414, + -39.819551 + ], + [ + -73.245706, + -39.819551 + ], + [ + -73.245706, + -39.8194252 + ], + [ + -73.2458414, + -39.8194252 + ], + [ + -73.2458414, + -39.819551 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "climbing", + "imagery": "osm", + "language": "en", + "add-image": 2 + }, + "id": 114528068 + } + }, + { + "id": 114525895, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.9654689, + 49.8263631 + ], + [ + 5.9654689, + 49.8263631 + ], + [ + 5.9654689, + 49.8263631 + ], + [ + 5.9654689, + 49.8263631 + ], + [ + 5.9654689, + 49.8263631 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "create": 1, + "imagery": "osm", + "language": "en" + }, + "id": 114525895 + } + }, + { + "id": 114516792, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2.911604, + 51.1745013 + ], + [ + 2.9125028, + 51.1745013 + ], + [ + 2.9125028, + 51.1752472 + ], + [ + 2.911604, + 51.1752472 + ], + [ + 2.911604, + 51.1745013 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "cyclestreets", + "answer": 1, + "imagery": "osm", + "language": "en" + }, + "id": 114516792 + } + }, + { + "id": 114508786, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 11.7932305, + 48.0078749 + ], + [ + 11.7932305, + 48.0078749 + ], + [ + 11.7932305, + 48.0078749 + ], + [ + 11.7932305, + 48.0078749 + ], + [ + 11.7932305, + 48.0078749 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "create": 1, + "imagery": "HDM_HOT", + "language": "de", + "change_over_5000m": 1 + }, + "id": 114508786 + } + }, + { + "id": 114505852, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.2520815, + 52.7917037 + ], + [ + 13.2520815, + 52.7917037 + ], + [ + 13.2520815, + 52.7917037 + ], + [ + 13.2520815, + 52.7917037 + ], + [ + 13.2520815, + 52.7917037 + ] + ] + ] + }, + "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, + "metadata": { + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "id": 114505852 + } + }, + { + "id": 114499674, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -73.2353924, + -39.8389723 + ], + [ + -73.2353924, + -39.8389723 + ], + [ + -73.2353924, + -39.8389723 + ], + [ + -73.2353924, + -39.8389723 + ], + [ + -73.2353924, + -39.8389723 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "osm", + "language": "en", + "add-image": 1 + }, + "id": 114499674 + } + }, + { + "id": 114483581, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.3421862, + 50.8287969 + ], + [ + 4.3443211, + 50.8287969 + ], + [ + 4.3443211, + 50.8292355 + ], + [ + 4.3421862, + 50.8292355 + ], + [ + 4.3421862, + 50.8287969 + ] + ] + ] + }, + "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, + "metadata": { + "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 + }, + "id": 114483581 + } + }, + { + "id": 114483428, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.3411392, + 50.8323467 + ], + [ + 4.3411392, + 50.8323467 + ], + [ + 4.3411392, + 50.8323467 + ], + [ + 4.3411392, + 50.8323467 + ], + [ + 4.3411392, + 50.8323467 + ] + ] + ] + }, + "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, + "metadata": { + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "cyclofix", + "answer": 1, + "create": 1, + "imagery": "CartoDB.Voyager", + "language": "nl", + "add-image": 2, + "change_over_5000m": 1, + "change_within_25m": 3 + }, + "id": 114483428 + } + }, + { + "id": 114483211, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 6.523173, + 43.2509975 + ], + [ + 6.5348884, + 43.2509975 + ], + [ + 6.5348884, + 43.2565941 + ], + [ + 6.523173, + 43.2565941 + ], + [ + 6.523173, + 43.2509975 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "street_lighting", + "answer": 5, + "imagery": "osm", + "language": "en" + }, + "id": 114483211 + } + }, + { + "id": 114482337, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2.9538082, + 42.6545431 + ], + [ + 2.9538082, + 42.6545431 + ], + [ + 2.9538082, + 42.6545431 + ], + [ + 2.9538082, + 42.6545431 + ], + [ + 2.9538082, + 42.6545431 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "aed", + "answer": 2, + "imagery": "osm", + "language": "fr", + "change_over_5000m": 2 + }, + "id": 114482337 + } + }, + { + "id": 114481412, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.2367387, + 51.2157078 + ], + [ + 3.2370903, + 51.2157078 + ], + [ + 3.2370903, + 51.2160709 + ], + [ + 3.2367387, + 51.2160709 + ], + [ + 3.2367387, + 51.2157078 + ] + ] + ] + }, + "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, + "metadata": { + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "grb_fixme", + "answer": 4, + "imagery": "AGIVFlandersGRB", + "language": "nl", + "change_within_5000m": 4 + }, + "id": 114481412 + } + }, + { + "id": 114463627, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.2068699, + 51.1997719 + ], + [ + 3.2374135, + 51.1997719 + ], + [ + 3.2374135, + 51.2215972 + ], + [ + 3.2068699, + 51.2215972 + ], + [ + 3.2068699, + 51.1997719 + ] + ] + ] + }, + "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, + "metadata": { + "host": "127.0.0.1:1234", + "theme": "grb_fixme", + "answer": 44, + "import": 4, + "imagery": "AGIVFlandersGRB", + "language": "nl" + }, + "id": 114463627 + } + }, + { + "id": 114462319, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -122.0320103, + 36.9780074 + ], + [ + -122.0315892, + 36.9780074 + ], + [ + -122.0315892, + 36.9780524 + ], + [ + -122.0320103, + 36.9780524 + ], + [ + -122.0320103, + 36.9780074 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "answer": 9, + "create": 2, + "imagery": "osm", + "language": "en", + "add-image": 1, + "change_over_5000m": 2, + "change_within_25m": 10 + }, + "id": 114462319 + } + }, + { + "id": 114461816, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 0.8253843, + 41.5441733 + ], + [ + 0.8276442, + 41.5441733 + ], + [ + 0.8276442, + 41.5481053 + ], + [ + 0.8253843, + 41.5481053 + ], + [ + 0.8253843, + 41.5441733 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "street_lighting", + "answer": 2, + "imagery": "osm", + "language": "en" + }, + "id": 114461816 + } + }, + { + "id": 114461685, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1.7248595, + 41.2205668 + ], + [ + 1.7248595, + 41.2205668 + ], + [ + 1.7248595, + 41.2205668 + ], + [ + 1.7248595, + 41.2205668 + ], + [ + 1.7248595, + 41.2205668 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "comerciosantiguos", + "answer": 3, + "imagery": "osm", + "language": "es" + }, + "id": 114461685 + } + }, + { + "id": 114460999, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -73.2320243, + -39.842692 + ], + [ + -73.2317384, + -39.842692 + ], + [ + -73.2317384, + -39.842422 + ], + [ + -73.2320243, + -39.842422 + ], + [ + -73.2320243, + -39.842692 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "osm", + "language": "en", + "add-image": 3 + }, + "id": 114460999 + } + }, + { + "id": 114454431, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.9837611, + 52.0271205 + ], + [ + 13.9837611, + 52.0271205 + ], + [ + 13.9837611, + 52.0271205 + ], + [ + 13.9837611, + 52.0271205 + ], + [ + 13.9837611, + 52.0271205 + ] + ] + ] + }, + "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, + "metadata": { + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "id": 114454431 + } + }, + { + "id": 114451924, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -122.4084717, + 37.7936115 + ], + [ + -122.4077797, + 37.7936115 + ], + [ + -122.4077797, + 37.7975707 + ], + [ + -122.4084717, + 37.7975707 + ], + [ + -122.4084717, + 37.7936115 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "waste_basket", + "answer": 2, + "create": 2, + "imagery": "osm", + "language": "en", + "change_over_5000m": 2, + "change_within_25m": 3, + "move:node/9300915863": "improve_accuracy" + }, + "id": 114451924 + } + }, + { + "id": 114449961, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.6478932, + 42.9278164 + ], + [ + -85.6478932, + 42.9278164 + ], + [ + -85.6478932, + 42.9278164 + ], + [ + -85.6478932, + 42.9278164 + ], + [ + -85.6478932, + 42.9278164 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "shops", + "answer": 1, + "create": 1, + "imagery": "osm", + "language": "en" + }, + "id": 114449961 + } + }, + { + "id": 114449912, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.6668726, + 42.9635931 + ], + [ + -85.6668726, + 42.9635931 + ], + [ + -85.6668726, + 42.9635931 + ], + [ + -85.6668726, + 42.9635931 + ], + [ + -85.6668726, + 42.9635931 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "trees", + "create": 1, + "imagery": "USDA-NAIP", + "language": "en" + }, + "id": 114449912 + } + }, + { + "id": 114440486, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.4023338, + 51.2182568 + ], + [ + 4.4151869, + 51.2182568 + ], + [ + 4.4151869, + 51.2236545 + ], + [ + 4.4023338, + 51.2236545 + ], + [ + 4.4023338, + 51.2182568 + ] + ] + ] + }, + "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, + "metadata": { + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "surveillance", + "answer": 12, + "create": 4, + "imagery": "AGIV", + "language": "en" + }, + "id": 114440486 + } + }, + { + "id": 114434814, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 11.794939, + 47.9987241 + ], + [ + 11.7953172, + 47.9987241 + ], + [ + 11.7953172, + 48.002755 + ], + [ + 11.794939, + 48.002755 + ], + [ + 11.794939, + 47.9987241 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "answer": 2, + "create": 3, + "imagery": "HDM_HOT", + "language": "de", + "change_over_5000m": 3, + "change_within_25m": 2 + }, + "id": 114434814 + } + }, + { + "id": 114431043, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 11.8232444, + 47.9817318 + ], + [ + 11.8232444, + 47.9817318 + ], + [ + 11.8232444, + 47.9817318 + ], + [ + 11.8232444, + 47.9817318 + ], + [ + 11.8232444, + 47.9817318 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "benches", + "answer": 6, + "create": 1, + "imagery": "osm", + "language": "de", + "change_over_5000m": 1, + "change_within_25m": 6 + }, + "id": 114431043 + } + }, + { + "id": 114429834, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 11.789451, + 47.9451774 + ], + [ + 11.8357167, + 47.9451774 + ], + [ + 11.8357167, + 48.0081227 + ], + [ + 11.789451, + 48.0081227 + ], + [ + 11.789451, + 47.9451774 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "answer": 3, + "create": 6, + "imagery": "HDM_HOT", + "language": "de", + "change_over_5000m": 6, + "change_within_25m": 2, + "change_within_100m": 1 + }, + "id": 114429834 + } + }, + { + "id": 114422931, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.2250237, + 51.2064498 + ], + [ + 3.2250237, + 51.2064498 + ], + [ + 3.2250237, + 51.2064498 + ], + [ + 3.2250237, + 51.2064498 + ], + [ + 3.2250237, + 51.2064498 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "https://raw.githubusercontent.com/yopaseopor/osmlitmap/master/src/json/lit.json", + "create": 1, + "imagery": "osm", + "language": "ca", + "change_over_5000m": 1 + }, + "id": 114422931 + } + } + ] +} \ No newline at end of file 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 new file mode 100644 index 0000000000..7fe2b8e048 --- /dev/null +++ b/Docs/Tools/stats/stats.2022-1.json @@ -0,0 +1,30259 @@ +{ + "features": [ + { + "id": 116841128, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.1074317, + 50.9710588 + ], + [ + 4.4451171, + 50.9710588 + ], + [ + 4.4451171, + 51.1970762 + ], + [ + 3.1074317, + 51.1970762 + ], + [ + 3.1074317, + 50.9710588 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Dampee", + "uid": "2175714", + "editor": "MapComplete 0.15.1", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-31T21:33:07Z", + "reviewed_features": [], + "create": 0, + "modify": 33, + "delete": 0, + "area": 0.302340176125955, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 44, + "imagery": "osm", + "language": "nl" + }, + "id": 116841128 + } + }, + { + "id": 116839950, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.6149764, + 50.0945623 + ], + [ + 8.6441637, + 50.0945623 + ], + [ + 8.6441637, + 50.1307304 + ], + [ + 8.6149764, + 50.1307304 + ], + [ + 8.6149764, + 50.0945623 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dekarl", + "uid": "5760", + "editor": "MapComplete 0.15.1", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-31T20:59:37Z", + "reviewed_features": [], + "create": 0, + "modify": 17, + "delete": 0, + "area": 0.00105564918512994, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 25, + "imagery": "osm", + "language": "en" + }, + "id": 116839950 + } + }, + { + "id": 116839830, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -70.5702477, + -33.5923317 + ], + [ + -70.5701539, + -33.5923317 + ], + [ + -70.5701539, + -33.5921641 + ], + [ + -70.5702477, + -33.5921641 + ], + [ + -70.5702477, + -33.5923317 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.15.1", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-31T20:55:23Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 1.5720880000753e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "cyclosm", + "language": "en", + "add-image": 4, + "change_within_25m": 4 + }, + "id": 116839830 + } + }, + { + "id": 116838253, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.4047122, + 51.0430522 + ], + [ + 3.4073139, + 51.0430522 + ], + [ + 3.4073139, + 51.0443654 + ], + [ + 3.4047122, + 51.0443654 + ], + [ + 3.4047122, + 51.0430522 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thibaultmol", + "uid": "2916921", + "editor": "MapComplete 0.15.1", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-31T20:07:54Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.00000341655243999605, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 6, + "imagery": "osm", + "language": "nl" + }, + "id": 116838253 + } + }, + { + "id": 116838205, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2.7853766, + 50.8531057 + ], + [ + 2.8291568, + 50.8531057 + ], + [ + 2.8291568, + 50.8592117 + ], + [ + 2.7853766, + 50.8592117 + ], + [ + 2.7853766, + 50.8531057 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.15.1", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-31T20:05:56Z", + "reviewed_features": [], + "create": 0, + "modify": 17, + "delete": 0, + "area": 0.000267321901200112, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 33, + "imagery": "osm", + "language": "nl" + }, + "id": 116838205 + } + }, + { + "id": 116838028, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2.9401234, + 51.086101 + ], + [ + 2.9429903, + 51.086101 + ], + [ + 2.9429903, + 51.0869226 + ], + [ + 2.9401234, + 51.0869226 + ], + [ + 2.9401234, + 51.086101 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.15.1", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-31T20:00:21Z", + "reviewed_features": [], + "create": 26, + "modify": 9, + "delete": 0, + "area": 0.00000235544504000526, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "move": 8, + "theme": "grb", + "import": 3, + "imagery": "osm", + "language": "en", + "conflation": 2 + }, + "id": 116838028 + } + }, + { + "id": 116835279, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.4943598, + 51.3047207 + ], + [ + 5.6608235, + 51.3047207 + ], + [ + 5.6608235, + 51.3098552 + ], + [ + 5.4943598, + 51.3098552 + ], + [ + 5.4943598, + 51.3047207 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "r0di", + "uid": "4737001", + "editor": "MapComplete 0.15.1", + "comment": "Adding data with #MapComplete for theme #observation_towers", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-31T18:40:10Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.000854707867650675, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "observation_towers", + "answer": 2, + "imagery": "osm", + "language": "nl", + "change_over_5000m": 1, + "change_within_5000m": 1 + }, + "id": 116835279 + } + }, + { + "id": 116834915, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1.6061148, + 42.9635577 + ], + [ + 1.6061148, + 42.9635577 + ], + [ + 1.6061148, + 42.9635577 + ], + [ + 1.6061148, + 42.9635577 + ], + [ + 1.6061148, + 42.9635577 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Albin Gasparetto", + "uid": "1227542", + "editor": "MapComplete 0.15.1", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-31T18:30:10Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "answer": 2, + "create": 1, + "imagery": "osm", + "language": "fr" + }, + "id": 116834915 + } + }, + { + "id": 116834751, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.5520864, + 51.3103226 + ], + [ + 5.6210157, + 51.3103226 + ], + [ + 5.6210157, + 51.3493444 + ], + [ + 5.5520864, + 51.3493444 + ], + [ + 5.5520864, + 51.3103226 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "r0di", + "uid": "4737001", + "editor": "MapComplete 0.15.1", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-31T18:25:51Z", + "reviewed_features": [], + "create": 0, + "modify": 18, + "delete": 0, + "area": 0.00268974535874002, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "food", + "answer": 20, + "imagery": "osm", + "language": "nl", + "change_over_5000m": 8, + "change_within_500m": 2, + "change_within_1000m": 10 + }, + "id": 116834751 + } + }, + { + "id": 116834514, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.6084978, + 51.3098577 + ], + [ + 5.6098523, + 51.3098577 + ], + [ + 5.6098523, + 51.3127501 + ], + [ + 5.6084978, + 51.3127501 + ], + [ + 5.6084978, + 51.3098577 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "r0di", + "uid": "4737001", + "editor": "MapComplete 0.15.1", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-31T18:20:32Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 1, + "area": 0.00000391775579999962, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "food", + "answer": 4, + "imagery": "osm", + "deletion": 1, + "language": "nl", + "change_within_1000m": 5, + "deletion:node/2839388468": "het is gesloten" + }, + "id": 116834514 + } + }, + { + "id": 116833812, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.5558934, + 51.3212658 + ], + [ + 5.6364155, + 51.3212658 + ], + [ + 5.6364155, + 51.3276773 + ], + [ + 5.5558934, + 51.3276773 + ], + [ + 5.5558934, + 51.3212658 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "r0di", + "uid": "4737001", + "editor": "MapComplete 0.15.1", + "comment": "Adding data with #MapComplete for theme #campersite", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-31T18:02:46Z", + "reviewed_features": [], + "create": 1, + "modify": 6, + "delete": 0, + "area": 0.000516267444149891, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "campersite", + "answer": 13, + "create": 1, + "imagery": "osm", + "language": "nl", + "change_over_5000m": 1, + "change_within_5000m": 13 + }, + "id": 116833812 + } + }, + { + "id": 116833750, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.5510462, + 51.3447623 + ], + [ + 5.5510462, + 51.3447623 + ], + [ + 5.5510462, + 51.3447623 + ], + [ + 5.5510462, + 51.3447623 + ], + [ + 5.5510462, + 51.3447623 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "r0di", + "uid": "4737001", + "editor": "MapComplete 0.15.1", + "comment": "Adding data with #MapComplete for theme #artwork", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-31T18:00:57Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 1, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "artwork", + "answer": 1, + "create": 1, + "imagery": "osm", + "deletion": 1, + "language": "nl", + "change_over_5000m": 3, + "deletion:node/9463800980": "testing point" + }, + "id": 116833750 + } + }, + { + "id": 116833592, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.5288583, + 51.335231 + ], + [ + 5.5288583, + 51.335231 + ], + [ + 5.5288583, + 51.335231 + ], + [ + 5.5288583, + 51.335231 + ], + [ + 5.5288583, + 51.335231 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "r0di", + "uid": "4737001", + "editor": "MapComplete 0.15.1", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-31T17:56:59Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "benches", + "answer": 1, + "imagery": "osm", + "language": "nl", + "change_over_5000m": 1 + }, + "id": 116833592 + } + }, + { + "id": 116827153, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.8040893, + 51.5003409 + ], + [ + 5.8040893, + 51.5003409 + ], + [ + 5.8040893, + 51.5003409 + ], + [ + 5.8040893, + 51.5003409 + ], + [ + 5.8040893, + 51.5003409 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "r0di", + "uid": "4737001", + "editor": "MapComplete 0.15.1", + "comment": "Adding data with #MapComplete for theme #waste_basket", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-31T14:53:45Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "waste_basket", + "answer": 1, + "imagery": "osm", + "language": "nl", + "change_within_25m": 1 + }, + "id": 116827153 + } + }, + { + "id": 116827127, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.8041537, + 51.5003604 + ], + [ + 5.8041537, + 51.5003604 + ], + [ + 5.8041537, + 51.5003604 + ], + [ + 5.8041537, + 51.5003604 + ], + [ + 5.8041537, + 51.5003604 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "r0di", + "uid": "4737001", + "editor": "MapComplete 0.15.1", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-31T14:53:03Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "benches", + "answer": 2, + "imagery": "osm", + "language": "nl", + "change_within_25m": 2 + }, + "id": 116827127 + } + }, + { + "id": 116826540, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -2.2685068, + 53.4392606 + ], + [ + -2.2582252, + 53.4392606 + ], + [ + -2.2582252, + 53.442754 + ], + [ + -2.2685068, + 53.442754 + ], + [ + -2.2685068, + 53.4392606 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jay8ea", + "uid": "251482", + "editor": "MapComplete 0.15.1", + "comment": "Adding data with #MapComplete for theme #street_lighting", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-31T14:37:37Z", + "reviewed_features": [], + "create": 0, + "modify": 9, + "delete": 0, + "area": 0.0000359177414400359, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "street_lighting", + "answer": 9, + "imagery": "osm", + "language": "en", + "change_within_1000m": 5, + "change_within_5000m": 4 + }, + "id": 116826540 + } + }, + { + "id": 116824801, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.7372814, + 51.5103326 + ], + [ + 5.7399848, + 51.5103326 + ], + [ + 5.7399848, + 51.5156044 + ], + [ + 5.7372814, + 51.5156044 + ], + [ + 5.7372814, + 51.5103326 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "r0di", + "uid": "4737001", + "editor": "MapComplete 0.15.1", + "comment": "Adding data with #MapComplete for theme #street_lighting", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-31T13:51:52Z", + "reviewed_features": [], + "create": 2, + "modify": 2, + "delete": 0, + "area": 0.0000142517841200104, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "split": 3, + "theme": "street_lighting", + "answer": 2, + "imagery": "osm", + "language": "nl", + "relation-fix": 1, + "change_within_25m": 3, + "change_within_100m": 1, + "change_within_500m": 1 + }, + "id": 116824801 + } + }, + { + "id": 116821293, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 12.9976952, + 52.010296 + ], + [ + 13.0082739, + 52.010296 + ], + [ + 13.0082739, + 52.0152498 + ], + [ + 12.9976952, + 52.0152498 + ], + [ + 12.9976952, + 52.010296 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Oberfuzzi", + "uid": "14794109", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-31T12:23:31Z", + "reviewed_features": [], + "create": 2, + "modify": 0, + "delete": 0, + "area": 0.000052404764060028, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "id": 116821293 + } + }, + { + "id": 116816749, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.6791617, + 51.2988118 + ], + [ + 5.6791617, + 51.2988118 + ], + [ + 5.6791617, + 51.2988118 + ], + [ + 5.6791617, + 51.2988118 + ], + [ + 5.6791617, + 51.2988118 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "r0di", + "uid": "4737001", + "editor": "MapComplete 0.15.1", + "comment": "Adding data with #MapComplete for theme #cafes_and_pubs", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-31T10:41:12Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "cafes_and_pubs", + "answer": 2, + "imagery": "osm", + "language": "nl", + "change_over_5000m": 2 + }, + "id": 116816749 + } + }, + { + "id": 116805462, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -71.2803384, + -35.1138347 + ], + [ + -71.2803384, + -35.1138347 + ], + [ + -71.2803384, + -35.1138347 + ], + [ + -71.2803384, + -35.1138347 + ], + [ + -71.2803384, + -35.1138347 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.15.1", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-31T05:30:33Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "osm", + "language": "en", + "add-image": 1 + }, + "id": 116805462 + } + }, + { + "id": 116804502, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 80.0880902, + 12.8245807 + ], + [ + 80.2944591, + 12.8245807 + ], + [ + 80.2944591, + 13.1716324 + ], + [ + 80.0880902, + 13.1716324 + ], + [ + 80.0880902, + 12.8245807 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "bponkishore", + "uid": "14062769", + "editor": "MapComplete 0.15.1", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-31T04:47:04Z", + "reviewed_features": [], + "create": 0, + "modify": 59, + "delete": 0, + "area": 0.0716206775721303, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 76, + "imagery": "osm", + "language": "en" + }, + "id": 116804502 + } + }, + { + "id": 116798885, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.3147602, + 51.1178506 + ], + [ + 3.3147602, + 51.1178506 + ], + [ + 3.3147602, + 51.1178506 + ], + [ + 3.3147602, + 51.1178506 + ], + [ + 3.3147602, + 51.1178506 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.15.1", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/seppesantens/mapcomplete-themes/main/walkingnodenetworks/walkingnodenetworks.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-30T22:31:12Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "https://raw.githubusercontent.com/seppesantens/mapcomplete-themes/main/walkingnodenetworks/walkingnodenetworks.json", + "answer": 1, + "imagery": "osm", + "language": "en" + }, + "id": 116798885 + } + }, + { + "id": 116798400, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -1.5572504, + 54.8015724 + ], + [ + -1.3314853, + 54.8015724 + ], + [ + -1.3314853, + 54.9091282 + ], + [ + -1.5572504, + 54.9091282 + ], + [ + -1.5572504, + 54.8015724 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "confusedbuffalo", + "uid": "242345", + "editor": "MapComplete 0.15.1", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-30T22:11:07Z", + "reviewed_features": [], + "create": 0, + "modify": 187, + "delete": 0, + "area": 0.02428234594258, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 312, + "imagery": "osm", + "language": "en" + }, + "id": 116798400 + } + }, + { + "id": 116797900, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.0133942, + 51.1888303 + ], + [ + 5.0237127, + 51.1888303 + ], + [ + 5.0237127, + 51.1917885 + ], + [ + 5.0133942, + 51.1917885 + ], + [ + 5.0133942, + 51.1888303 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.15.1", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-30T21:51:09Z", + "reviewed_features": [], + "create": 67, + "modify": 163, + "delete": 2, + "area": 0.0000305241867000207, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "move": 144, + "theme": "grb", + "answer": 1, + "delete": 2, + "import": 7, + "imagery": "osm", + "language": "nl", + "conflation": 36 + }, + "id": 116797900 + } + }, + { + "id": 116794977, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 11.9423304, + 48.0446517 + ], + [ + 11.9423304, + 48.0446517 + ], + [ + 11.9423304, + 48.0446517 + ], + [ + 11.9423304, + 48.0446517 + ], + [ + 11.9423304, + 48.0446517 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Strubbl", + "uid": "536583", + "editor": "MapComplete 0.15.1", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-30T20:09:57Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "bookcases", + "answer": 3, + "imagery": "osm", + "language": "en", + "add-image": 1 + }, + "id": 116794977 + } + }, + { + "id": 116794926, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -85.8709538, + 11.2567941 + ], + [ + -85.8709538, + 11.2567941 + ], + [ + -85.8709538, + 11.2567941 + ], + [ + -85.8709538, + 11.2567941 + ], + [ + -85.8709538, + 11.2567941 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "nickinparadise", + "uid": "2049708", + "editor": "MapComplete 0.15.1", + "comment": "Adding data with #MapComplete for theme #cafes_and_pubs", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-30T20:08:15Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "cafes_and_pubs", + "answer": 1, + "create": 1, + "imagery": "osm", + "language": "en" + }, + "id": 116794926 + } + }, + { + "id": 116792994, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.3597242, + 50.8655753 + ], + [ + 4.5510388, + 50.8655753 + ], + [ + 4.5510388, + 50.9454527 + ], + [ + 4.3597242, + 50.9454527 + ], + [ + 4.3597242, + 50.8655753 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.15.1", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-30T19:00:27Z", + "reviewed_features": [], + "create": 5, + "modify": 3, + "delete": 0, + "area": 0.0152817128300388, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 21, + "create": 5, + "imagery": "osm", + "language": "en", + "add-image": 4 + }, + "id": 116792994 + } + }, + { + "id": 116791647, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.5332153, + 50.9199404 + ], + [ + 4.5886613, + 50.9199404 + ], + [ + 4.5886613, + 50.9500526 + ], + [ + 4.5332153, + 50.9500526 + ], + [ + 4.5332153, + 50.9199404 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.15.1", + "comment": "Adding data with #MapComplete for theme #cyclestreets", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-30T18:19:38Z", + "reviewed_features": [], + "create": 0, + "modify": 28, + "delete": 0, + "area": 0.00166960104119988, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "cyclestreets", + "answer": 27, + "imagery": "osm", + "language": "en", + "add-image": 2 + }, + "id": 116791647 + } + }, + { + "id": 116790606, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.5417953, + 51.2895524 + ], + [ + 5.6555865, + 51.2895524 + ], + [ + 5.6555865, + 51.3455923 + ], + [ + 5.5417953, + 51.3455923 + ], + [ + 5.5417953, + 51.2895524 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "r0di", + "uid": "4737001", + "editor": "MapComplete 0.15.0-rc-1", + "comment": "Adding data with #MapComplete for theme #cafes_and_pubs", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-30T17:48:56Z", + "reviewed_features": [], + "create": 0, + "modify": 8, + "delete": 0, + "area": 0.00637684746888019, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "cafes_and_pubs", + "answer": 9, + "imagery": "osm", + "language": "nl", + "change_over_5000m": 5, + "change_within_5000m": 4 + }, + "id": 116790606 + } + }, + { + "id": 116790432, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.5439407, + 51.3515309 + ], + [ + 5.5439407, + 51.3515309 + ], + [ + 5.5439407, + 51.3515309 + ], + [ + 5.5439407, + 51.3515309 + ], + [ + 5.5439407, + 51.3515309 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "r0di", + "uid": "4737001", + "editor": "MapComplete 0.15.0-rc-1", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-30T17:43:57Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "hailhydrant", + "answer": 1, + "imagery": "HDM_HOT", + "language": "en", + "change_over_5000m": 1 + }, + "id": 116790432 + } + }, + { + "id": 116790056, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.5650978, + 51.3117729 + ], + [ + 5.6145524, + 51.3117729 + ], + [ + 5.6145524, + 51.3575126 + ], + [ + 5.5650978, + 51.3575126 + ], + [ + 5.5650978, + 51.3117729 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "r0di", + "uid": "4737001", + "editor": "MapComplete 0.15.0-rc-1", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-30T17:32:57Z", + "reviewed_features": [], + "create": 0, + "modify": 7, + "delete": 0, + "area": 0.00226203856761992, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "cyclofix", + "answer": 11, + "imagery": "CartoDB.Voyager", + "language": "nl", + "change_over_5000m": 5, + "change_within_1000m": 6 + }, + "id": 116790056 + } + }, + { + "id": 116789721, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.7290841, + 51.3977743 + ], + [ + 5.7313351, + 51.3977743 + ], + [ + 5.7313351, + 51.3982106 + ], + [ + 5.7290841, + 51.3982106 + ], + [ + 5.7290841, + 51.3977743 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "r0di", + "uid": "4737001", + "editor": "MapComplete 0.15.0-rc-1", + "comment": "Adding data with #MapComplete for theme #cyclestreets", + "comments_count": 6, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-30T17:22:41Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 9.82111299993227e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "cyclestreets", + "answer": 1, + "imagery": "osm", + "language": "nl", + "change_over_5000m": 1 + }, + "id": 116789721 + } + }, + { + "id": 116788202, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.6175595, + 51.3171419 + ], + [ + 5.7182389, + 51.3171419 + ], + [ + 5.7182389, + 51.3751073 + ], + [ + 5.6175595, + 51.3751073 + ], + [ + 5.6175595, + 51.3171419 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "r0di", + "uid": "4737001", + "editor": "MapComplete 0.15.0-rc-1", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-30T16:43:29Z", + "reviewed_features": [], + "create": 3, + "modify": 2, + "delete": 0, + "area": 0.00583592169276009, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "bookcases", + "answer": 4, + "create": 3, + "imagery": "osm", + "language": "en", + "change_over_5000m": 3, + "change_within_100m": 3, + "change_within_5000m": 1 + }, + "id": 116788202 + } + }, + { + "id": 116784793, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.0074471, + 50.6185318 + ], + [ + 3.0607852, + 50.6185318 + ], + [ + 3.0607852, + 50.6467989 + ], + [ + 3.0074471, + 50.6467989 + ], + [ + 3.0074471, + 50.6185318 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "whatismoss", + "uid": "8427311", + "editor": "MapComplete 0.15.0", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-30T15:21:31Z", + "reviewed_features": [], + "create": 0, + "modify": 117, + "delete": 0, + "area": 0.00150771340651005, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 166, + "imagery": "osm", + "language": "en" + }, + "id": 116784793 + } + }, + { + "id": 116782141, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.3704001, + 51.07371 + ], + [ + 3.3704001, + 51.07371 + ], + [ + 3.3704001, + 51.07371 + ], + [ + 3.3704001, + 51.07371 + ], + [ + 3.3704001, + 51.07371 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.15.0", + "comment": "Adding data with #MapComplete for theme #test", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-30T14:15:14Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "test", + "answer": 1, + "imagery": "osm", + "language": "en" + }, + "id": 116782141 + } + }, + { + "id": 116781962, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.3715484, + 51.0730973 + ], + [ + 3.3715484, + 51.0730973 + ], + [ + 3.3715484, + 51.0730973 + ], + [ + 3.3715484, + 51.0730973 + ], + [ + 3.3715484, + 51.0730973 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.15.0", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/seppesantens/mapcomplete-themes/main/walkingnodenetworks/walkingnodenetworks.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-30T14:11:07Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "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": 116781962 + } + }, + { + "id": 116780241, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 80.1712189, + 12.9333113 + ], + [ + 80.2802458, + 12.9333113 + ], + [ + 80.2802458, + 13.0592801 + ], + [ + 80.1712189, + 13.0592801 + ], + [ + 80.1712189, + 12.9333113 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "bponkishore", + "uid": "14062769", + "editor": "MapComplete 0.15.0", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-30T13:33:28Z", + "reviewed_features": [], + "create": 0, + "modify": 71, + "delete": 0, + "area": 0.0137339877607205, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 82, + "imagery": "osm", + "language": "en" + }, + "id": 116780241 + } + }, + { + "id": 116780133, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.352405, + 51.0715945 + ], + [ + 3.3820817, + 51.0715945 + ], + [ + 3.3820817, + 51.0897719 + ], + [ + 3.352405, + 51.0897719 + ], + [ + 3.352405, + 51.0715945 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.15.0", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-30T13:30:56Z", + "reviewed_features": [], + "create": 0, + "modify": 6, + "delete": 0, + "area": 0.000539445246579971, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "benches", + "answer": 1, + "imagery": "osm", + "language": "en", + "add-image": 5 + }, + "id": 116780133 + } + }, + { + "id": 116779371, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.4409596, + 50.8045511 + ], + [ + 4.4409596, + 50.8045511 + ], + [ + 4.4409596, + 50.8045511 + ], + [ + 4.4409596, + 50.8045511 + ], + [ + 4.4409596, + 50.8045511 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "StefDeGreef", + "uid": "1860737", + "editor": "MapComplete 0.15.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-30T13:13:19Z", + "reviewed_features": [], + "create": 1, + "modify": 6, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 7, + "create": 1, + "imagery": "CartoDB.Voyager", + "language": "fr", + "add-image": 2, + "change_over_5000m": 1, + "change_within_25m": 9 + }, + "id": 116779371 + } + }, + { + "id": 116779137, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.3777183, + 51.087442 + ], + [ + 4.3788039, + 51.087442 + ], + [ + 4.3788039, + 51.088092 + ], + [ + 4.3777183, + 51.088092 + ], + [ + 4.3777183, + 51.087442 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "jospyck", + "uid": "12128135", + "editor": "MapComplete 0.15.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-30T13:06:59Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 7.05640000000658e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 2, + "imagery": "osm", + "language": "en", + "change_within_25m": 2 + }, + "id": 116779137 + } + }, + { + "id": 116772568, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.784886, + 51.1444993 + ], + [ + 4.8299919, + 51.1444993 + ], + [ + 4.8299919, + 51.175776 + ], + [ + 4.784886, + 51.175776 + ], + [ + 4.784886, + 51.1444993 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Stinus_Clasius", + "uid": "1086503", + "editor": "MapComplete 0.15.0", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-30T10:08:56Z", + "reviewed_features": [], + "create": 246, + "modify": 52, + "delete": 0, + "area": 0.00141076370252995, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "move": 47, + "theme": "grb", + "import": 18, + "imagery": "osm", + "language": "nl", + "conflation": 10 + }, + "id": 116772568 + } + }, + { + "id": 116769631, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.248831, + 50.7412338 + ], + [ + 4.249092, + 50.7412338 + ], + [ + 4.249092, + 50.741326 + ], + [ + 4.248831, + 50.741326 + ], + [ + 4.248831, + 50.7412338 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.15.0", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-30T08:36:05Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 2.40641999993362e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "bookcases", + "imagery": "osm", + "language": "nl", + "add-image": 2, + "change_within_25m": 1, + "change_within_50m": 2, + "move:node/9246056984": "improve_accuracy" + }, + "id": 116769631 + } + }, + { + "id": 116769153, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 11.7066367, + 48.0343016 + ], + [ + 11.7066367, + 48.0343016 + ], + [ + 11.7066367, + 48.0343016 + ], + [ + 11.7066367, + 48.0343016 + ], + [ + 11.7066367, + 48.0343016 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "bollyboll", + "uid": "12120321", + "editor": "MapComplete 0.15.0", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-30T08:12:05Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "create": 1, + "imagery": "osm", + "language": "de", + "change_over_5000m": 1 + }, + "id": 116769153 + } + }, + { + "id": 116768596, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 80.1126558, + 12.9190634 + ], + [ + 80.1507779, + 12.9190634 + ], + [ + 80.1507779, + 12.9433911 + ], + [ + 80.1126558, + 12.9433911 + ], + [ + 80.1126558, + 12.9190634 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "bponkishore", + "uid": "14062769", + "editor": "MapComplete 0.15.0", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-30T07:45:24Z", + "reviewed_features": [], + "create": 0, + "modify": 37, + "delete": 0, + "area": 0.000927423012169844, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 53, + "imagery": "osm", + "language": "en" + }, + "id": 116768596 + } + }, + { + "id": 116764627, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.0121094, + 51.1236717 + ], + [ + 5.1447066, + 51.1236717 + ], + [ + 5.1447066, + 51.1928843 + ], + [ + 5.0121094, + 51.1928843 + ], + [ + 5.0121094, + 51.1236717 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.15.0", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-30T01:44:52Z", + "reviewed_features": [], + "create": 13, + "modify": 49, + "delete": 0, + "area": 0.00917739696472004, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "move": 41, + "theme": "grb", + "answer": 2, + "import": 4, + "imagery": "osm", + "language": "nl", + "conflation": 12 + }, + "id": 116764627 + } + }, + { + "id": 116761076, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -1.6979891, + 54.7766092 + ], + [ + -1.5450684, + 54.7766092 + ], + [ + -1.5450684, + 54.8804296 + ], + [ + -1.6979891, + 54.8804296 + ], + [ + -1.6979891, + 54.7766092 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "confusedbuffalo", + "uid": "242345", + "editor": "MapComplete 0.15.0", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-29T22:08:51Z", + "reviewed_features": [], + "create": 0, + "modify": 148, + "delete": 0, + "area": 0.0158762882422795, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 197, + "imagery": "osm", + "language": "en" + }, + "id": 116761076 + } + }, + { + "id": 116756281, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.5554829, + 48.8799556 + ], + [ + 8.582401, + 48.8799556 + ], + [ + 8.582401, + 48.917136 + ], + [ + 8.5554829, + 48.917136 + ], + [ + 8.5554829, + 48.8799556 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Dominic Z", + "uid": "56475", + "editor": "MapComplete 0.15.0", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-29T18:54:11Z", + "reviewed_features": [], + "create": 0, + "modify": 97, + "delete": 0, + "area": 0.00100082572523997, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 130, + "imagery": "osm", + "language": "de" + }, + "id": 116756281 + } + }, + { + "id": 116756190, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -1.7078364, + 54.7909734 + ], + [ + -1.5313943, + 54.7909734 + ], + [ + -1.5313943, + 54.9126821 + ], + [ + -1.7078364, + 54.9126821 + ], + [ + -1.7078364, + 54.7909734 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "confusedbuffalo", + "uid": "242345", + "editor": "MapComplete 0.15.0", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-29T18:50:44Z", + "reviewed_features": [], + "create": 0, + "modify": 56, + "delete": 0, + "area": 0.0214745386162698, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 76, + "imagery": "osm", + "language": "en" + }, + "id": 116756190 + } + }, + { + "id": 116753063, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.130382, + 50.6924207 + ], + [ + 3.1470037, + 50.6924207 + ], + [ + 3.1470037, + 50.6958358 + ], + [ + 3.130382, + 50.6958358 + ], + [ + 3.130382, + 50.6924207 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "eiryelio", + "uid": "831652", + "editor": "MapComplete 0.15.0", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-29T17:17:25Z", + "reviewed_features": [], + "create": 3, + "modify": 4, + "delete": 0, + "area": 0.0000567647676699667, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "answer": 7, + "create": 3, + "imagery": "osm", + "language": "fr" + }, + "id": 116753063 + } + }, + { + "id": 116750828, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.2319562, + 51.21206 + ], + [ + 3.2319562, + 51.21206 + ], + [ + 3.2319562, + 51.21206 + ], + [ + 3.2319562, + 51.21206 + ], + [ + 3.2319562, + 51.21206 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.15.0-rc-1", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-29T16:17:30Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "toilets", + "imagery": "osm", + "language": "en", + "add-image": 1, + "change_within_25m": 1 + }, + "id": 116750828 + } + }, + { + "id": 116749960, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.2430643, + 51.2055222 + ], + [ + 3.2430643, + 51.2055222 + ], + [ + 3.2430643, + 51.2055222 + ], + [ + 3.2430643, + 51.2055222 + ], + [ + 3.2430643, + 51.2055222 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-9458281311", + "osm_id": 9458281311, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "amenity": "bicycle_wash" + } + } + ], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.15.0-rc-1", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-29T15:57:26Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "cyclofix", + "answer": 1, + "create": 1, + "imagery": "CartoDB.Voyager", + "language": "en", + "add-image": 1, + "change_over_5000m": 1, + "change_within_25m": 2 + }, + "id": 116749960 + } + }, + { + "id": 116748790, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -1.6792176, + 54.7528824 + ], + [ + -1.5178153, + 54.7528824 + ], + [ + -1.5178153, + 54.956107 + ], + [ + -1.6792176, + 54.956107 + ], + [ + -1.6792176, + 54.7528824 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "confusedbuffalo", + "uid": "242345", + "editor": "MapComplete 0.15.0", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-29T15:30:21Z", + "reviewed_features": [], + "create": 0, + "modify": 103, + "delete": 0, + "area": 0.0328009178565809, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 134, + "imagery": "osm", + "language": "en" + }, + "id": 116748790 + } + }, + { + "id": 116739093, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 12.9896191, + 52.0080089 + ], + [ + 12.9933233, + 52.0080089 + ], + [ + 12.9933233, + 52.0112943 + ], + [ + 12.9896191, + 52.0112943 + ], + [ + 12.9896191, + 52.0080089 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Oberfuzzi", + "uid": "14794109", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-29T10:56:41Z", + "reviewed_features": [], + "create": 5, + "modify": 4, + "delete": 0, + "area": 0.0000121697786800094, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "id": 116739093 + } + }, + { + "id": 116738609, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -1.735378, + 54.8381695 + ], + [ + -1.4619575, + 54.8381695 + ], + [ + -1.4619575, + 54.9206347 + ], + [ + -1.735378, + 54.9206347 + ], + [ + -1.735378, + 54.8381695 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "confusedbuffalo", + "uid": "242345", + "editor": "MapComplete 0.15.0", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-29T10:41:57Z", + "reviewed_features": [], + "create": 0, + "modify": 161, + "delete": 0, + "area": 0.0225476762166004, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 290, + "imagery": "osm", + "language": "en" + }, + "id": 116738609 + } + }, + { + "id": 116735492, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2.9361894, + 42.691316 + ], + [ + 2.9361894, + 42.691316 + ], + [ + 2.9361894, + 42.691316 + ], + [ + 2.9361894, + 42.691316 + ], + [ + 2.9361894, + 42.691316 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "LySioS", + "uid": "11579673", + "editor": "MapComplete 0.15.0", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-29T09:10:05Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "aed", + "answer": 5, + "create": 1, + "imagery": "osm", + "language": "fr", + "change_over_5000m": 1, + "change_within_25m": 5 + }, + "id": 116735492 + } + }, + { + "id": 116734074, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.2387824, + 50.7363781 + ], + [ + 4.2387824, + 50.7363781 + ], + [ + 4.2387824, + 50.7363781 + ], + [ + 4.2387824, + 50.7363781 + ], + [ + 4.2387824, + 50.7363781 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.15.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-29T08:17:40Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 3, + "imagery": "AGIVFlandersGRB", + "language": "nl", + "change_within_5000m": 3 + }, + "id": 116734074 + } + }, + { + "id": 116726369, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.4307197, + 51.3903943 + ], + [ + 3.4307197, + 51.3903943 + ], + [ + 3.4307197, + 51.3903943 + ], + [ + 3.4307197, + 51.3903943 + ], + [ + 3.4307197, + 51.3903943 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-9456801536", + "osm_id": 9456801536, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "amenity": "binoculars" + } + } + ], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.15.0", + "comment": "Adding data with #MapComplete for theme #binoculars", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-28T22:53:01Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "binoculars", + "create": 1, + "imagery": "osm", + "language": "en", + "change_over_5000m": 1 + }, + "id": 116726369 + } + }, + { + "id": 116723580, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -1.6401589, + 54.7897947 + ], + [ + -1.5437518, + 54.7897947 + ], + [ + -1.5437518, + 54.8435536 + ], + [ + -1.6401589, + 54.8435536 + ], + [ + -1.6401589, + 54.7897947 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "confusedbuffalo", + "uid": "242345", + "editor": "MapComplete 0.15.0", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-28T21:17:33Z", + "reviewed_features": [], + "create": 0, + "modify": 156, + "delete": 0, + "area": 0.00518273964818984, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 225, + "imagery": "osm", + "language": "en" + }, + "id": 116723580 + } + }, + { + "id": 116723289, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.3735998, + 50.8593304 + ], + [ + 4.3738626, + 50.8593304 + ], + [ + 4.3738626, + 50.8594985 + ], + [ + 4.3735998, + 50.8594985 + ], + [ + 4.3735998, + 50.8593304 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.15.0", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-28T21:09:06Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 4.41766800008404e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "imagery": "osm", + "language": "en", + "add-image": 2 + }, + "id": 116723289 + } + }, + { + "id": 116722525, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.3469627, + 50.8509561 + ], + [ + 4.9945831, + 50.8509561 + ], + [ + 4.9945831, + 51.163388 + ], + [ + 4.3469627, + 51.163388 + ], + [ + 4.3469627, + 50.8509561 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.15.0", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-28T20:47:17Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.20233727205076, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "food", + "imagery": "osm", + "language": "en", + "add-image": 2 + }, + "id": 116722525 + } + }, + { + "id": 116721473, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2.8827524, + 42.6910999 + ], + [ + 2.9013884, + 42.6910999 + ], + [ + 2.9013884, + 42.7004231 + ], + [ + 2.8827524, + 42.7004231 + ], + [ + 2.8827524, + 42.6910999 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "foo_bar_lol", + "uid": "14955867", + "editor": "MapComplete 0.15.0", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-28T20:13:20Z", + "reviewed_features": [], + "create": 25, + "modify": 30, + "delete": 0, + "area": 0.000173747155200079, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "answer": 102, + "create": 25, + "imagery": "osm", + "language": "fr" + }, + "id": 116721473 + } + }, + { + "id": 116721335, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.3455241, + 50.8484101 + ], + [ + 4.9947182, + 50.8484101 + ], + [ + 4.9947182, + 51.163405 + ], + [ + 4.3455241, + 51.163405 + ], + [ + 4.3455241, + 50.8484101 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.15.0", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-28T20:08:28Z", + "reviewed_features": [], + "create": 0, + "modify": 10, + "delete": 0, + "area": 0.204492830610087, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "shops", + "answer": 2, + "imagery": "osm", + "language": "en", + "add-image": 8 + }, + "id": 116721335 + } + }, + { + "id": 116721159, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.3630128, + 50.9594613 + ], + [ + 5.3716709, + 50.9594613 + ], + [ + 5.3716709, + 50.9643398 + ], + [ + 5.3630128, + 50.9643398 + ], + [ + 5.3630128, + 50.9594613 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.15.0", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-28T20:01:30Z", + "reviewed_features": [], + "create": 148, + "modify": 37, + "delete": 0, + "area": 0.0000422385408499707, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "move": 34, + "theme": "grb", + "import": 20, + "imagery": "osm", + "language": "nl", + "conflation": 6, + "change_over_5000m": 20 + }, + "id": 116721159 + } + }, + { + "id": 116720054, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.9920505, + 51.1542119 + ], + [ + 4.9934779, + 51.1542119 + ], + [ + 4.9934779, + 51.1550575 + ], + [ + 4.9920505, + 51.1550575 + ], + [ + 4.9920505, + 51.1542119 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.15.0", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-28T19:20:51Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000120700943999719, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "imagery": "osm", + "language": "en", + "add-image": 5 + }, + "id": 116720054 + } + }, + { + "id": 116718826, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.2185042, + 51.1969714 + ], + [ + 3.2187007, + 51.1969714 + ], + [ + 3.2187007, + 51.2041342 + ], + [ + 3.2185042, + 51.2041342 + ], + [ + 3.2185042, + 51.1969714 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.15.0-rc-1", + "comment": "Adding data with #MapComplete for theme #http://127.0.0.1:8080/assets/themes/bicycle_rental/bicycle_rental.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-28T18:35:50Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.00000140749019999876, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "127.0.0.1:1234", + "theme": "http://127.0.0.1:8080/assets/themes/bicycle_rental/bicycle_rental.json", + "answer": 4, + "imagery": "osm", + "language": "nl" + }, + "id": 116718826 + } + }, + { + "id": 116713659, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.2227347, + 51.2227335 + ], + [ + 3.2227347, + 51.2227335 + ], + [ + 3.2227347, + 51.2227335 + ], + [ + 3.2227347, + 51.2227335 + ], + [ + 3.2227347, + 51.2227335 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Arickx", + "uid": "9282195", + "editor": "MapComplete 0.15.0", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/xliving/xliving.github.io/main/OSM/amenity-recycling/recycling-organic/mapcomplete.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-28T16:07:13Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "https://raw.githubusercontent.com/xliving/xliving.github.io/main/OSM/amenity-recycling/recycling-organic/mapcomplete.json", + "answer": 1, + "imagery": "osm", + "language": "nl" + }, + "id": 116713659 + } + }, + { + "id": 116713573, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.3841138, + 50.8535591 + ], + [ + 4.3908212, + 50.8535591 + ], + [ + 4.3908212, + 50.867894 + ], + [ + 4.3841138, + 50.867894 + ], + [ + 4.3841138, + 50.8535591 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.15.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-28T16:05:29Z", + "reviewed_features": [], + "create": 3, + "modify": 9, + "delete": 0, + "area": 0.0000961499082600199, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 12, + "create": 3, + "imagery": "CartoDB.Voyager", + "language": "en", + "add-image": 4 + }, + "id": 116713573 + } + }, + { + "id": 116711729, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -70.570204, + -33.5923862 + ], + [ + -70.5699124, + -33.5923862 + ], + [ + -70.5699124, + -33.5921006 + ], + [ + -70.570204, + -33.5921006 + ], + [ + -70.570204, + -33.5923862 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.15.0", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-28T15:18:31Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 8.3280959998577e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "cyclosm", + "language": "en", + "add-image": 4, + "change_within_25m": 2, + "change_within_500m": 2 + }, + "id": 116711729 + } + }, + { + "id": 116710319, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.2130557, + 51.2262186 + ], + [ + 3.2130557, + 51.2262186 + ], + [ + 3.2130557, + 51.2262186 + ], + [ + 3.2130557, + 51.2262186 + ], + [ + 3.2130557, + 51.2262186 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.15.0-rc-1", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-28T14:42:38Z", + "reviewed_features": [], + "create": 1, + "modify": 5, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "cyclofix", + "answer": 7, + "create": 1, + "imagery": "CartoDB.Voyager", + "language": "nl", + "add-image": 2, + "change_over_5000m": 1, + "change_within_25m": 9 + }, + "id": 116710319 + } + }, + { + "id": 116710083, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.2082813, + 51.2228286 + ], + [ + 3.2122886, + 51.2228286 + ], + [ + 3.2122886, + 51.2254539 + ], + [ + 3.2082813, + 51.2254539 + ], + [ + 3.2082813, + 51.2228286 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.15.0-rc-1", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-28T14:36:03Z", + "reviewed_features": [], + "create": 0, + "modify": 11, + "delete": 0, + "area": 0.0000105203646899932, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "etymology", + "answer": 10, + "imagery": "osm", + "language": "nl", + "add-image": 2, + "change_within_50m": 2, + "change_within_100m": 6, + "change_within_500m": 4 + }, + "id": 116710083 + } + }, + { + "id": 116704794, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.450733, + 51.0860489 + ], + [ + 3.450733, + 51.0860489 + ], + [ + 3.450733, + 51.0860489 + ], + [ + 3.450733, + 51.0860489 + ], + [ + 3.450733, + 51.0860489 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.15.0", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-28T11:59:25Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "nl", + "add-image": 1 + }, + "id": 116704794 + } + }, + { + "id": 116701187, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.3615407, + 50.8655084 + ], + [ + 4.3615407, + 50.8655084 + ], + [ + 4.3615407, + 50.8655084 + ], + [ + 4.3615407, + 50.8655084 + ], + [ + 4.3615407, + 50.8655084 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.15.0", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-28T10:25:01Z", + "reviewed_features": [], + "create": 1, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "benches", + "answer": 5, + "create": 1, + "imagery": "AGIV", + "language": "en", + "add-image": 1 + }, + "id": 116701187 + } + }, + { + "id": 116699921, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.3660282, + 50.8648087 + ], + [ + 4.3887358, + 50.8648087 + ], + [ + 4.3887358, + 50.8683792 + ], + [ + 4.3660282, + 50.8683792 + ], + [ + 4.3660282, + 50.8648087 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.15.0", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-28T09:50:53Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.00008107748580005, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "shops", + "imagery": "osm", + "language": "en", + "add-image": 4 + }, + "id": 116699921 + } + }, + { + "id": 116699600, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.3599884, + 50.8648448 + ], + [ + 4.3787391, + 50.8648448 + ], + [ + 4.3787391, + 50.868318 + ], + [ + 4.3599884, + 50.868318 + ], + [ + 4.3599884, + 50.8648448 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.15.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-28T09:42:19Z", + "reviewed_features": [], + "create": 5, + "modify": 11, + "delete": 0, + "area": 0.0000651249312400366, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 28, + "create": 5, + "imagery": "AGIV", + "language": "en", + "add-image": 6 + }, + "id": 116699600 + } + }, + { + "id": 116697144, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.2029671, + 50.9144947 + ], + [ + 4.2036671, + 50.9144947 + ], + [ + 4.2036671, + 50.9148684 + ], + [ + 4.2029671, + 50.9148684 + ], + [ + 4.2029671, + 50.9144947 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "jospyck", + "uid": "12128135", + "editor": "MapComplete 0.15.0", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-28T08:38:40Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 2.61590000002776e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 2, + "imagery": "osm", + "language": "nl" + }, + "id": 116697144 + } + }, + { + "id": 116694883, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 11.8054533, + 48.0177319 + ], + [ + 11.8069527, + 48.0177319 + ], + [ + 11.8069527, + 48.0185778 + ], + [ + 11.8054533, + 48.0185778 + ], + [ + 11.8054533, + 48.0177319 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "bollyboll", + "uid": "12120321", + "editor": "MapComplete 0.15.0", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-28T07:24:53Z", + "reviewed_features": [], + "create": 6, + "modify": 0, + "delete": 0, + "area": 0.00000126834246000256, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "answer": 3, + "create": 6, + "imagery": "osm", + "language": "de", + "change_over_5000m": 6, + "change_within_25m": 3 + }, + "id": 116694883 + } + }, + { + "id": 116687884, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.2184221, + 51.1949136 + ], + [ + 3.2219307, + 51.1949136 + ], + [ + 3.2219307, + 51.1975691 + ], + [ + 3.2184221, + 51.1975691 + ], + [ + 3.2184221, + 51.1949136 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.15.0-rc-1", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-28T01:40:12Z", + "reviewed_features": [], + "create": 0, + "modify": 8, + "delete": 0, + "area": 0.00000931708730001056, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "etymology", + "answer": 11, + "imagery": "osm", + "language": "nl", + "change_within_5000m": 11 + }, + "id": 116687884 + } + }, + { + "id": 116687814, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.2185527, + 51.1968089 + ], + [ + 3.2187426, + 51.1968089 + ], + [ + 3.2187426, + 51.1969714 + ], + [ + 3.2185527, + 51.1969714 + ], + [ + 3.2185527, + 51.1968089 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.15.0-rc-1", + "comment": "Adding data with #MapComplete for theme #http://127.0.0.1:8080/assets/themes/bicycle_rental/bicycle_rental.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-28T01:36:42Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 3.08587500003621e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "127.0.0.1:1234", + "theme": "http://127.0.0.1:8080/assets/themes/bicycle_rental/bicycle_rental.json", + "answer": 5, + "imagery": "osm", + "language": "nl", + "change_within_5000m": 5 + }, + "id": 116687814 + } + }, + { + "id": 116686782, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 0.1102563, + 38.8326383 + ], + [ + 0.1162386, + 38.8326383 + ], + [ + 0.1162386, + 38.8383071 + ], + [ + 0.1102563, + 38.8383071 + ], + [ + 0.1102563, + 38.8326383 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "paunofu", + "uid": "13779940", + "editor": "MapComplete 0.15.0", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/yopaseopor/mcquests/master/wherethesidewalkshavenoname.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-28T00:25:54Z", + "reviewed_features": [], + "create": 0, + "modify": 7, + "delete": 0, + "area": 0.0000339124622400134, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "https://raw.githubusercontent.com/yopaseopor/mcquests/master/wherethesidewalkshavenoname.json", + "answer": 9, + "imagery": "osm", + "language": "en" + }, + "id": 116686782 + } + }, + { + "id": 116685572, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.2227347, + 51.2227335 + ], + [ + 3.2227347, + 51.2227335 + ], + [ + 3.2227347, + 51.2227335 + ], + [ + 3.2227347, + 51.2227335 + ], + [ + 3.2227347, + 51.2227335 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.15.0", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/xliving/xliving.github.io/main/OSM/amenity-recycling/recycling-organic/mapcomplete.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-27T23:09:14Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "https://raw.githubusercontent.com/xliving/xliving.github.io/main/OSM/amenity-recycling/recycling-organic/mapcomplete.json", + "answer": 1, + "imagery": "osm", + "language": "nl", + "change_within_5000m": 1 + }, + "id": 116685572 + } + }, + { + "id": 116683137, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.6432092, + 51.3465703 + ], + [ + 4.6841909, + 51.3465703 + ], + [ + 4.6841909, + 51.3524972 + ], + [ + 4.6432092, + 51.3524972 + ], + [ + 4.6432092, + 51.3465703 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Stinus_Clasius", + "uid": "1086503", + "editor": "MapComplete 0.15.0", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-27T21:27:21Z", + "reviewed_features": [], + "create": 121, + "modify": 11, + "delete": 0, + "area": 0.000242894437729942, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "move": 9, + "theme": "grb", + "import": 12, + "imagery": "osm", + "language": "nl", + "conflation": 4 + }, + "id": 116683137 + } + }, + { + "id": 116675422, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.2316612, + 50.7323588 + ], + [ + 4.2387824, + 50.7323588 + ], + [ + 4.2387824, + 50.736384 + ], + [ + 4.2316612, + 50.736384 + ], + [ + 4.2316612, + 50.7323588 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.15.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-27T17:16:16Z", + "reviewed_features": [], + "create": 4, + "modify": 2, + "delete": 0, + "area": 0.0000286642542400079, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 10, + "create": 4, + "imagery": "AGIV", + "language": "nl", + "change_over_5000m": 4, + "change_within_5000m": 10 + }, + "id": 116675422 + } + }, + { + "id": 116670817, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.2624987, + 50.1557237 + ], + [ + 5.2657507, + 50.1557237 + ], + [ + 5.2657507, + 50.15945 + ], + [ + 5.2624987, + 50.15945 + ], + [ + 5.2624987, + 50.1557237 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.15.0", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-27T15:06:36Z", + "reviewed_features": [], + "create": 98, + "modify": 10, + "delete": 0, + "area": 0.0000121179275999887, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "move": 8, + "theme": "grb", + "import": 13, + "imagery": "osm", + "language": "en", + "conflation": 4, + "change_over_5000m": 11 + }, + "id": 116670817 + } + }, + { + "id": 116666480, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -72.1031394, + -36.6072722 + ], + [ + -72.1031394, + -36.6072722 + ], + [ + -72.1031394, + -36.6072722 + ], + [ + -72.1031394, + -36.6072722 + ], + [ + -72.1031394, + -36.6072722 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.15.0", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-27T13:14:47Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "cyclosm", + "language": "en", + "add-image": 1 + }, + "id": 116666480 + } + }, + { + "id": 116656004, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 12.9965392, + 52.0070843 + ], + [ + 12.998119, + 52.0070843 + ], + [ + 12.998119, + 52.0102906 + ], + [ + 12.9965392, + 52.0102906 + ], + [ + 12.9965392, + 52.0070843 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Oberfuzzi", + "uid": "14794109", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-27T09:11:23Z", + "reviewed_features": [], + "create": 4, + "modify": 5, + "delete": 0, + "area": 0.00000506531273999234, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "id": 116656004 + } + }, + { + "id": 116646267, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -70.5698801, + -33.5924147 + ], + [ + -70.569744, + -33.5924147 + ], + [ + -70.569744, + -33.5923804 + ], + [ + -70.5698801, + -33.5923804 + ], + [ + -70.5698801, + -33.5924147 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.15.0", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-27T03:42:47Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 4.6682299996363e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "cyclosm", + "language": "en", + "add-image": 2, + "change_within_25m": 2 + }, + "id": 116646267 + } + }, + { + "id": 116645369, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -70.5697582, + -33.5927064 + ], + [ + -70.5697582, + -33.5927064 + ], + [ + -70.5697582, + -33.5927064 + ], + [ + -70.5697582, + -33.5927064 + ], + [ + -70.5697582, + -33.5927064 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.15.0", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-27T02:32:46Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "cyclosm", + "language": "en", + "add-image": 1, + "change_within_50m": 1 + }, + "id": 116645369 + } + }, + { + "id": 116642455, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.9438307, + 51.1762061 + ], + [ + 4.9442393, + 51.1762061 + ], + [ + 4.9442393, + 51.1769444 + ], + [ + 4.9438307, + 51.1769444 + ], + [ + 4.9438307, + 51.1762061 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.15.0", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-26T23:10:18Z", + "reviewed_features": [], + "create": 10, + "modify": 11, + "delete": 0, + "area": 3.01669379997268e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "move": 10, + "theme": "grb", + "import": 1, + "imagery": "osm", + "language": "nl", + "conflation": 2 + }, + "id": 116642455 + } + }, + { + "id": 116639191, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -82.73682, + 42.6813272 + ], + [ + -82.73682, + 42.6813272 + ], + [ + -82.73682, + 42.6813272 + ], + [ + -82.73682, + 42.6813272 + ], + [ + -82.73682, + 42.6813272 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "nutsd02440", + "uid": "14948432", + "editor": "MapComplete 0.15.0-rc-1", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-26T21:10:49Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "surveillance", + "imagery": "osm", + "language": "en", + "add-image": 1 + }, + "id": 116639191 + } + }, + { + "id": 116638996, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -1.6050693, + 52.287768 + ], + [ + -1.6050693, + 52.287768 + ], + [ + -1.6050693, + 52.287768 + ], + [ + -1.6050693, + 52.287768 + ], + [ + -1.6050693, + 52.287768 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "RobJN", + "uid": "411244", + "editor": "MapComplete 0.15.0", + "comment": "Adding data with #MapComplete for theme #uk_addresses", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-26T21:03:45Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "uk_addresses", + "import": 1, + "imagery": "osm", + "language": "en", + "change_over_5000m": 1 + }, + "id": 116638996 + } + }, + { + "id": 116632831, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -70.5701008, + -33.5922799 + ], + [ + -70.5701008, + -33.5922799 + ], + [ + -70.5701008, + -33.5922799 + ], + [ + -70.5701008, + -33.5922799 + ], + [ + -70.5701008, + -33.5922799 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.14.4", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-26T18:04:09Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "cyclosm", + "language": "en", + "add-image": 1 + }, + "id": 116632831 + } + }, + { + "id": 116630080, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.4230499, + 50.8238691 + ], + [ + 4.4230499, + 50.8238691 + ], + [ + 4.4230499, + 50.8238691 + ], + [ + 4.4230499, + 50.8238691 + ], + [ + 4.4230499, + 50.8238691 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "StefDeGreef", + "uid": "1860737", + "editor": "MapComplete 0.14.4", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-26T16:54:11Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 4, + "create": 1, + "imagery": "CartoDB.Voyager", + "language": "fr", + "add-image": 1, + "change_over_5000m": 1, + "change_within_25m": 5 + }, + "id": 116630080 + } + }, + { + "id": 116623879, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 14.7200229, + 51.951571 + ], + [ + 14.7200229, + 51.951571 + ], + [ + 14.7200229, + 51.951571 + ], + [ + 14.7200229, + 51.951571 + ], + [ + 14.7200229, + 51.951571 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "sebkur", + "uid": "22917", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-26T13:55:23Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "id": 116623879 + } + }, + { + "id": 116617025, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 14.7115136, + 51.9524487 + ], + [ + 14.7131644, + 51.9524487 + ], + [ + 14.7131644, + 51.953941 + ], + [ + 14.7115136, + 51.953941 + ], + [ + 14.7115136, + 51.9524487 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "sebkur", + "uid": "22917", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-26T10:31:44Z", + "reviewed_features": [], + "create": 3, + "modify": 2, + "delete": 0, + "area": 0.0000024634888400043, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "id": 116617025 + } + }, + { + "id": 116614780, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 7.4343939, + 46.942024 + ], + [ + 7.4343939, + 46.942024 + ], + [ + 7.4343939, + 46.942024 + ], + [ + 7.4343939, + 46.942024 + ], + [ + 7.4343939, + 46.942024 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "habi", + "uid": "15671", + "editor": "MapComplete 0.14.4", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-26T09:24:21Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "trees", + "answer": 3, + "imagery": "osm", + "language": "en", + "change_within_25m": 3 + }, + "id": 116614780 + } + }, + { + "id": 116607298, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -70.569634, + -33.5932112 + ], + [ + -70.5694689, + -33.5932112 + ], + [ + -70.5694689, + -33.5925353 + ], + [ + -70.569634, + -33.5925353 + ], + [ + -70.569634, + -33.5932112 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.14.4", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-26T02:19:01Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 1.11591089992536e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "trees", + "create": 1, + "imagery": "cyclosm", + "language": "en", + "add-image": 4 + }, + "id": 116607298 + } + }, + { + "id": 116602785, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.0061913, + 51.124716 + ], + [ + 5.0068622, + 51.124716 + ], + [ + 5.0068622, + 51.1255242 + ], + [ + 5.0061913, + 51.1255242 + ], + [ + 5.0061913, + 51.124716 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.14.4", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-25T21:45:41Z", + "reviewed_features": [], + "create": 28, + "modify": 8, + "delete": 0, + "area": 5.42221380000553e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "move": 4, + "theme": "grb", + "answer": 3, + "import": 4, + "imagery": "osm", + "language": "nl", + "conflation": 2 + }, + "id": 116602785 + } + }, + { + "id": 116598894, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 12.3552712, + 51.3739868 + ], + [ + 12.3578393, + 51.3739868 + ], + [ + 12.3578393, + 51.3775911 + ], + [ + 12.3552712, + 51.3775911 + ], + [ + 12.3552712, + 51.3739868 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "febutix", + "uid": "14929311", + "editor": "MapComplete 0.14.4", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-25T19:26:17Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 0.00000925620282999628, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "answer": 6, + "imagery": "osm", + "language": "en" + }, + "id": 116598894 + } + }, + { + "id": 116598670, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.4076949, + 50.9022336 + ], + [ + 3.4076949, + 50.9022336 + ], + [ + 3.4076949, + 50.9022336 + ], + [ + 3.4076949, + 50.9022336 + ], + [ + 3.4076949, + 50.9022336 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.14.4", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-25T19:19:22Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 4, + "imagery": "CartoDB.Voyager", + "language": "en" + }, + "id": 116598670 + } + }, + { + "id": 116598337, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.592121, + 48.8892858 + ], + [ + 8.6173889, + 48.8892858 + ], + [ + 8.6173889, + 48.8979746 + ], + [ + 8.592121, + 48.8979746 + ], + [ + 8.592121, + 48.8892858 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Dominic Z", + "uid": "56475", + "editor": "MapComplete 0.14.4", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-25T19:08:20Z", + "reviewed_features": [], + "create": 0, + "modify": 53, + "delete": 0, + "area": 0.000219547729519855, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 69, + "imagery": "osm", + "language": "de", + "change_within_100m": 1, + "change_within_500m": 39, + "change_within_1000m": 23, + "change_within_5000m": 6 + }, + "id": 116598337 + } + }, + { + "id": 116596008, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.5891813, + 45.3683276 + ], + [ + 5.590785, + 45.3683276 + ], + [ + 5.590785, + 45.3687688 + ], + [ + 5.5891813, + 45.3687688 + ], + [ + 5.5891813, + 45.3683276 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Eric Royer", + "uid": "12137407", + "editor": "MapComplete 0.14.4", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-25T18:02:19Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 7.07552439995965e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "food", + "answer": 4, + "imagery": "osm", + "language": "en" + }, + "id": 116596008 + } + }, + { + "id": 116587243, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.2356747, + 50.7318342 + ], + [ + 4.2373026, + 50.7318342 + ], + [ + 4.2373026, + 50.7364498 + ], + [ + 4.2356747, + 50.7364498 + ], + [ + 4.2356747, + 50.7318342 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.14.4", + "comment": "Adding data with #MapComplete for theme #aed_brugge", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-25T14:06:53Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.00000751373524000127, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "aed_brugge", + "answer": 4, + "imagery": "HDM_HOT", + "language": "nl" + }, + "id": 116587243 + } + }, + { + "id": 116586469, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -58.6677955, + -34.6600686 + ], + [ + -58.6451033, + -34.6600686 + ], + [ + -58.6451033, + -34.6530481 + ], + [ + -58.6677955, + -34.6530481 + ], + [ + -58.6677955, + -34.6600686 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.14.4", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-25T13:47:08Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.000159310590100029, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", + "answer": 2, + "imagery": "osm", + "language": "es", + "change_within_50m": 1, + "change_within_100m": 1 + }, + "id": 116586469 + } + }, + { + "id": 116584832, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.0354918, + 50.8911597 + ], + [ + 4.0354918, + 50.8911597 + ], + [ + 4.0354918, + 50.8911597 + ], + [ + 4.0354918, + 50.8911597 + ], + [ + 4.0354918, + 50.8911597 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Erin76", + "uid": "8982454", + "editor": "MapComplete 0.14.4", + "comment": "Adding data with #MapComplete for theme #openwindpowermap", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-25T13:03:11Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "openwindpowermap", + "answer": 1, + "imagery": "CartoDB.Positron", + "language": "en" + }, + "id": 116584832 + } + }, + { + "id": 116584318, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -58.530041, + -34.5749912 + ], + [ + -58.5300002, + -34.5749912 + ], + [ + -58.5300002, + -34.5749591 + ], + [ + -58.530041, + -34.5749591 + ], + [ + -58.530041, + -34.5749912 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.14.4", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/railway", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-25T12:48:50Z", + "reviewed_features": [], + "create": 0, + "modify": 6, + "delete": 0, + "area": 1.30967999973559e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/railway", + "answer": 12, + "imagery": "osm", + "language": "en", + "change_over_5000m": 7, + "change_within_25m": 1, + "change_within_50m": 4 + }, + "id": 116584318 + } + }, + { + "id": 116573101, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 6.6549594, + 53.0802091 + ], + [ + 6.6706556, + 53.0802091 + ], + [ + 6.6706556, + 53.0912318 + ], + [ + 6.6549594, + 53.0912318 + ], + [ + 6.6549594, + 53.0802091 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "tiptracks", + "uid": "513840", + "editor": "MapComplete 0.14.4", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-25T07:59:25Z", + "reviewed_features": [], + "create": 0, + "modify": 56, + "delete": 0, + "area": 0.000173014503740079, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 85, + "imagery": "osm", + "language": "nl" + }, + "id": 116573101 + } + }, + { + "id": 116565413, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -121.9220086, + 37.7914943 + ], + [ + -121.9218835, + 37.7914943 + ], + [ + -121.9218835, + 37.7915708 + ], + [ + -121.9220086, + 37.7915708 + ], + [ + -121.9220086, + 37.7914943 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "omnibeet", + "uid": "10145113", + "editor": "MapComplete 0.14.4", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-25T02:20:20Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 9.57015000004629e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "toilets", + "answer": 2, + "imagery": "osm", + "language": "en" + }, + "id": 116565413 + } + }, + { + "id": 116565370, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.3683341, + 51.3318233 + ], + [ + 4.3683341, + 51.3318233 + ], + [ + 4.3683341, + 51.3318233 + ], + [ + 4.3683341, + 51.3318233 + ], + [ + 4.3683341, + 51.3318233 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.15.0-alpha-2", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-25T02:16:00Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "toerisme_vlaanderen", + "import": 1, + "imagery": "osm", + "language": "nl", + "change_over_5000m": 1 + }, + "id": 116565370 + } + }, + { + "id": 116561818, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.9817454, + 51.1802861 + ], + [ + 4.9887532, + 51.1802861 + ], + [ + 4.9887532, + 51.1892208 + ], + [ + 4.9817454, + 51.1892208 + ], + [ + 4.9817454, + 51.1802861 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.14.4", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-24T22:32:21Z", + "reviewed_features": [], + "create": 43, + "modify": 107, + "delete": 13, + "area": 0.0000626125906600265, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "move": 91, + "theme": "grb", + "delete": 13, + "import": 6, + "imagery": "AGIV", + "language": "nl", + "conflation": 32, + "change_over_5000m": 6 + }, + "id": 116561818 + } + }, + { + "id": 116561728, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -1.6026647, + 54.8810651 + ], + [ + -1.5605809, + 54.8810651 + ], + [ + -1.5605809, + 54.9218897 + ], + [ + -1.6026647, + 54.9218897 + ], + [ + -1.6026647, + 54.8810651 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "confusedbuffalo", + "uid": "242345", + "editor": "MapComplete 0.14.4", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-24T22:29:11Z", + "reviewed_features": [], + "create": 0, + "modify": 80, + "delete": 0, + "area": 0.00171805430148003, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 111, + "imagery": "osm", + "language": "en" + }, + "id": 116561728 + } + }, + { + "id": 116561651, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.9848304, + 51.1822695 + ], + [ + 4.9931065, + 51.1822695 + ], + [ + 4.9931065, + 51.1834216 + ], + [ + 4.9848304, + 51.1834216 + ], + [ + 4.9848304, + 51.1822695 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.14.4", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-24T22:25:47Z", + "reviewed_features": [], + "create": 37, + "modify": 26, + "delete": 1, + "area": 0.00000953489481004836, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "move": 21, + "theme": "grb", + "delete": 1, + "import": 4, + "imagery": "osm", + "language": "nl", + "conflation": 10, + "change_over_5000m": 4 + }, + "id": 116561651 + } + }, + { + "id": 116556239, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 6.674452, + 53.0615801 + ], + [ + 6.703156, + 53.0615801 + ], + [ + 6.703156, + 53.09712 + ], + [ + 6.674452, + 53.09712 + ], + [ + 6.674452, + 53.0615801 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "tiptracks", + "uid": "513840", + "editor": "MapComplete 0.14.4", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-24T19:39:16Z", + "reviewed_features": [], + "create": 0, + "modify": 63, + "delete": 0, + "area": 0.0010201372895999, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 87, + "imagery": "osm", + "language": "nl", + "change_within_500m": 13, + "change_within_1000m": 21, + "change_within_5000m": 53 + }, + "id": 116556239 + } + }, + { + "id": 116545513, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -70.5432598, + -33.44287 + ], + [ + -70.5432525, + -33.44287 + ], + [ + -70.5432525, + -33.4428375 + ], + [ + -70.5432598, + -33.4428375 + ], + [ + -70.5432598, + -33.44287 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "RNoerr", + "uid": "14846404", + "editor": "MapComplete 0.14.3", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-24T15:21:25Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 2.37250000203903e-10, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "trees", + "create": 1, + "imagery": "cyclosm", + "language": "en", + "add-image": 1, + "move:node/9444973776": "improve_accuracy" + }, + "id": 116545513 + } + }, + { + "id": 116544521, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 20.1317526, + 46.2414689 + ], + [ + 20.1345655, + 46.2414689 + ], + [ + 20.1345655, + 46.2428164 + ], + [ + 20.1317526, + 46.2428164 + ], + [ + 20.1317526, + 46.2414689 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "GBAB", + "uid": "3335899", + "editor": "MapComplete 0.14.3", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-24T14:52:19Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000379038275000676, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 1, + "imagery": "osm", + "language": "en" + }, + "id": 116544521 + } + }, + { + "id": 116542645, + "type": "Feature", + "geometry": null, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.14.3", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-24T13:55:37Z", + "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": "trees", + "imagery": "cyclosm", + "language": "en", + "add-image": 1, + "change_within_5000m": 1 + }, + "id": 116542645 + } + }, + { + "id": 116542643, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -73.2476759, + -39.8157794 + ], + [ + -73.2476759, + -39.8157794 + ], + [ + -73.2476759, + -39.8157794 + ], + [ + -73.2476759, + -39.8157794 + ], + [ + -73.2476759, + -39.8157794 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.14.3", + "comment": "Adding data with #MapComplete for theme #test", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-24T13:55:37Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "test", + "answer": 1, + "imagery": "cyclosm", + "language": "en", + "change_within_5000m": 1 + }, + "id": 116542643 + } + }, + { + "id": 116542587, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -73.247264, + -39.8152969 + ], + [ + -73.2447205, + -39.8152969 + ], + [ + -73.2447205, + -39.8136088 + ], + [ + -73.247264, + -39.8136088 + ], + [ + -73.247264, + -39.8152969 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.14.3", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-24T13:54:10Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.00000429368235000938, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "cyclosm", + "language": "en", + "add-image": 2, + "change_within_1000m": 1, + "change_within_5000m": 1 + }, + "id": 116542587 + } + }, + { + "id": 116539369, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -73.2332317, + -39.8429595 + ], + [ + -73.2326338, + -39.8429595 + ], + [ + -73.2326338, + -39.8428138 + ], + [ + -73.2332317, + -39.8428138 + ], + [ + -73.2332317, + -39.8429595 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.14.3", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-24T12:25:58Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 8.71140299987843e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "cyclosm", + "language": "en", + "add-image": 3, + "change_over_5000m": 1, + "change_within_50m": 1 + }, + "id": 116539369 + } + }, + { + "id": 116538531, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.1241237, + 51.2236943 + ], + [ + 4.1241237, + 51.2236943 + ], + [ + 4.1241237, + 51.2236943 + ], + [ + 4.1241237, + 51.2236943 + ], + [ + 4.1241237, + 51.2236943 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.14.3", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-24T12:05:51Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 4, + "create": 1, + "imagery": "osm", + "language": "en", + "change_over_5000m": 5 + }, + "id": 116538531 + } + }, + { + "id": 116537976, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.1222916, + 51.221759 + ], + [ + 4.1232119, + 51.221759 + ], + [ + 4.1232119, + 51.2222118 + ], + [ + 4.1222916, + 51.2222118 + ], + [ + 4.1222916, + 51.221759 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.14.3", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-24T11:51:01Z", + "reviewed_features": [], + "create": 86, + "modify": 0, + "delete": 0, + "area": 4.16711839998382e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "grb", + "import": 7, + "imagery": "osm", + "language": "en", + "change_over_5000m": 7 + }, + "id": 116537976 + } + }, + { + "id": 116537847, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.1359417, + 51.1633418 + ], + [ + 4.1380141, + 51.1633418 + ], + [ + 4.1380141, + 51.1649935 + ], + [ + 4.1359417, + 51.1649935 + ], + [ + 4.1359417, + 51.1633418 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.14.3", + "comment": "Adding data with #MapComplete for theme #cyclestreets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-24T11:47:44Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000342298308000794, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "cyclestreets", + "answer": 1, + "imagery": "osm", + "language": "en", + "change_over_5000m": 1 + }, + "id": 116537847 + } + }, + { + "id": 116535808, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.9861882, + 51.1799997 + ], + [ + 4.9890463, + 51.1799997 + ], + [ + 4.9890463, + 51.1809777 + ], + [ + 4.9861882, + 51.1809777 + ], + [ + 4.9861882, + 51.1799997 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.15.0-alpha-2", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-24T10:55:34Z", + "reviewed_features": [], + "create": 36, + "modify": 155, + "delete": 4, + "area": 0.00000279522179998971, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "pietervdvn.github.io", + "move": 136, + "path": "mc/develop/", + "theme": "grb", + "delete": 4, + "import": 4, + "imagery": "AGIV", + "language": "nl", + "conflation": 38, + "change_over_5000m": 2 + }, + "id": 116535808 + } + }, + { + "id": 116519085, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.5241815, + 49.2290904 + ], + [ + 13.5241815, + 49.2290904 + ], + [ + 13.5241815, + 49.2290904 + ], + [ + 13.5241815, + 49.2290904 + ], + [ + 13.5241815, + 49.2290904 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.14.2", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-24T00:16:51Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "food", + "imagery": "osm", + "language": "en", + "add-image": 1 + }, + "id": 116519085 + } + }, + { + "id": 116519038, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.5210822, + 49.232824 + ], + [ + 13.5213358, + 49.232824 + ], + [ + 13.5213358, + 49.2332194 + ], + [ + 13.5210822, + 49.2332194 + ], + [ + 13.5210822, + 49.232824 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.14.2", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-24T00:13:50Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 1.00273440000094e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "shops", + "imagery": "osm", + "language": "en", + "add-image": 4 + }, + "id": 116519038 + } + }, + { + "id": 116517846, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.5230886, + 49.2278564 + ], + [ + 13.5241967, + 49.2278564 + ], + [ + 13.5241967, + 49.2316215 + ], + [ + 13.5230886, + 49.2316215 + ], + [ + 13.5230886, + 49.2278564 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.14.1", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-23T22:57:30Z", + "reviewed_features": [], + "create": 2, + "modify": 3, + "delete": 0, + "area": 0.00000417210731000175, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "benches", + "create": 2, + "imagery": "osm", + "language": "en", + "add-image": 3 + }, + "id": 116517846 + } + }, + { + "id": 116517297, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -58.6977179, + -34.6656855 + ], + [ + -58.6977179, + -34.6656855 + ], + [ + -58.6977179, + -34.6656855 + ], + [ + -58.6977179, + -34.6656855 + ], + [ + -58.6977179, + -34.6656855 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.14.1", + "comment": "Adding data with #MapComplete for theme #cycle_infra", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-23T22:32:49Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "cycle_infra", + "answer": 2, + "imagery": "CartoDB.Voyager", + "language": "en", + "change_over_5000m": 2 + }, + "id": 116517297 + } + }, + { + "id": 116516938, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -58.4244061, + -34.6110649 + ], + [ + -58.4244061, + -34.6110649 + ], + [ + -58.4244061, + -34.6110649 + ], + [ + -58.4244061, + -34.6110649 + ], + [ + -58.4244061, + -34.6110649 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.14.1", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-23T22:15:53Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", + "answer": 3, + "imagery": "osm", + "language": "es", + "change_within_25m": 3 + }, + "id": 116516938 + } + }, + { + "id": 116515172, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.7399364, + 51.4081442 + ], + [ + 4.7405966, + 51.4081442 + ], + [ + 4.7405966, + 51.4091939 + ], + [ + 4.7399364, + 51.4091939 + ], + [ + 4.7399364, + 51.4081442 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Stinus_Clasius", + "uid": "1086503", + "editor": "MapComplete 0.14.1", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-23T21:08:30Z", + "reviewed_features": [], + "create": 21, + "modify": 21, + "delete": 0, + "area": 6.93011939996776e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "move": 16, + "theme": "grb", + "answer": 3, + "import": 3, + "imagery": "osm", + "language": "nl", + "conflation": 6 + }, + "id": 116515172 + } + }, + { + "id": 116511833, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -73.2331325, + -39.8432108 + ], + [ + -73.2324705, + -39.8432108 + ], + [ + -73.2324705, + -39.8427268 + ], + [ + -73.2331325, + -39.8427268 + ], + [ + -73.2331325, + -39.8432108 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.14.1", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-23T19:13:53Z", + "reviewed_features": [], + "create": 0, + "modify": 10, + "delete": 0, + "area": 3.2040799999588e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "osm", + "language": "en", + "add-image": 10, + "change_over_5000m": 8 + }, + "id": 116511833 + } + }, + { + "id": 116506336, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.1947952, + 51.1763651 + ], + [ + 3.1947952, + 51.1763651 + ], + [ + 3.1947952, + 51.1763651 + ], + [ + 3.1947952, + 51.1763651 + ], + [ + 3.1947952, + 51.1763651 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.14.1", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-23T16:26:27Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "en", + "add-image": 1 + }, + "id": 116506336 + } + }, + { + "id": 116505950, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.1935534, + 51.1766935 + ], + [ + 3.1970289, + 51.1766935 + ], + [ + 3.1970289, + 51.1791967 + ], + [ + 3.1935534, + 51.1791967 + ], + [ + 3.1935534, + 51.1766935 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.14.1", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-23T16:17:53Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.0000086998715999985, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 2, + "imagery": "CartoDB.Voyager", + "language": "en", + "add-image": 1 + }, + "id": 116505950 + } + }, + { + "id": 116504080, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.4583239, + 51.0217399 + ], + [ + 4.4584737, + 51.0217399 + ], + [ + 4.4584737, + 51.0217709 + ], + [ + 4.4583239, + 51.0217709 + ], + [ + 4.4583239, + 51.0217399 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "jospyck", + "uid": "12128135", + "editor": "MapComplete 0.14.1", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-23T15:33:43Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 4.64379999998317e-9, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "toerisme_vlaanderen", + "answer": 5, + "create": 1, + "imagery": "AGIV", + "language": "nl", + "change_over_5000m": 1, + "change_within_25m": 6, + "move:node/9442452056": "improve_accuracy" + }, + "id": 116504080 + } + }, + { + "id": 116503101, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 14.6257214, + 51.7363413 + ], + [ + 14.6292209, + 51.7363413 + ], + [ + 14.6292209, + 51.7418499 + ], + [ + 14.6257214, + 51.7418499 + ], + [ + 14.6257214, + 51.7363413 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "sebkur", + "uid": "22917", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-23T15:08:30Z", + "reviewed_features": [], + "create": 6, + "modify": 6, + "delete": 0, + "area": 0.0000192773456999972, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "id": 116503101 + } + }, + { + "id": 116501463, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.4575892, + 51.020284 + ], + [ + 4.4591655, + 51.020284 + ], + [ + 4.4591655, + 51.0219629 + ], + [ + 4.4575892, + 51.0219629 + ], + [ + 4.4575892, + 51.020284 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "jospyck", + "uid": "12128135", + "editor": "MapComplete 0.14.1", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-23T14:25:12Z", + "reviewed_features": [], + "create": 1, + "modify": 7, + "delete": 1, + "area": 0.00000264645007000264, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 13, + "create": 1, + "imagery": "AGIV", + "deletion": 1, + "language": "nl", + "change_over_5000m": 1, + "change_within_25m": 7, + "change_within_50m": 6, + "change_within_500m": 1, + "deletion:node/8572587333": "disused" + }, + "id": 116501463 + } + }, + { + "id": 116491728, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -1.5779165, + 54.8679937 + ], + [ + -1.5605582, + 54.8679937 + ], + [ + -1.5605582, + 54.9019408 + ], + [ + -1.5779165, + 54.9019408 + ], + [ + -1.5779165, + 54.8679937 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "confusedbuffalo", + "uid": "242345", + "editor": "MapComplete 0.14.1", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-23T09:46:08Z", + "reviewed_features": [], + "create": 0, + "modify": 51, + "delete": 0, + "area": 0.000589263945929979, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 78, + "imagery": "osm", + "language": "en" + }, + "id": 116491728 + } + }, + { + "id": 116491069, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.4576786, + 50.9611019 + ], + [ + 4.4577128, + 50.9611019 + ], + [ + 4.4577128, + 50.961121 + ], + [ + 4.4576786, + 50.961121 + ], + [ + 4.4576786, + 50.9611019 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "StefDeGreef", + "uid": "1860737", + "editor": "MapComplete 0.14.1", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-23T09:21:51Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 6.53219999857112e-10, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "cyclofix", + "answer": 3, + "imagery": "CartoDB.Voyager", + "language": "fr", + "add-image": 1, + "change_within_25m": 5, + "move:node/7634798362": "improve_accuracy" + }, + "id": 116491069 + } + }, + { + "id": 116488734, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.7972281, + 51.0930716 + ], + [ + 5.8277247, + 51.0930716 + ], + [ + 5.8277247, + 51.0968515 + ], + [ + 5.7972281, + 51.0968515 + ], + [ + 5.7972281, + 51.0930716 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Mich4711", + "uid": "12764098", + "editor": "MapComplete 0.14.1", + "comment": "Adding data with #MapComplete for theme #cycle_infra", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-23T07:03:23Z", + "reviewed_features": [], + "create": 0, + "modify": 6, + "delete": 0, + "area": 0.000115274098339935, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "cycle_infra", + "answer": 12, + "imagery": "CartoDB.Voyager", + "language": "nl" + }, + "id": 116488734 + } + }, + { + "id": 116477825, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.3147745, + 51.0856325 + ], + [ + 3.4185482, + 51.0856325 + ], + [ + 3.4185482, + 51.1160687 + ], + [ + 3.3147745, + 51.1160687 + ], + [ + 3.3147745, + 51.0856325 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.14.1", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/seppesantens/MapComplete-Themes/main/cyclenodenetworks/cyclenodenetworks.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-22T19:30:09Z", + "reviewed_features": [], + "create": 0, + "modify": 10, + "delete": 0, + "area": 0.00315847708793968, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "https://raw.githubusercontent.com/seppesantens/MapComplete-Themes/main/cyclenodenetworks/cyclenodenetworks.json", + "answer": 10, + "imagery": "osm", + "language": "en" + }, + "id": 116477825 + } + }, + { + "id": 116477778, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.3114346, + 51.105527 + ], + [ + 3.3145259, + 51.105527 + ], + [ + 3.3145259, + 51.1075528 + ], + [ + 3.3114346, + 51.1075528 + ], + [ + 3.3114346, + 51.105527 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.14.1", + "comment": "Adding data with #MapComplete for theme #nature", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-22T19:26:42Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.00000626235553999491, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "nature", + "imagery": "osm", + "language": "nl", + "add-image": 2 + }, + "id": 116477778 + } + }, + { + "id": 116477697, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.3195172, + 51.1152861 + ], + [ + 3.3195172, + 51.1152861 + ], + [ + 3.3195172, + 51.1152861 + ], + [ + 3.3195172, + 51.1152861 + ], + [ + 3.3195172, + 51.1152861 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.14.1", + "comment": "Adding data with #MapComplete for theme #postboxes", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-22T19:22:38Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "postboxes", + "imagery": "CartoDB.Voyager", + "language": "en", + "add-image": 1 + }, + "id": 116477697 + } + }, + { + "id": 116477554, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.3110784, + 51.1131436 + ], + [ + 3.3110784, + 51.1131436 + ], + [ + 3.3110784, + 51.1131436 + ], + [ + 3.3110784, + 51.1131436 + ], + [ + 3.3110784, + 51.1131436 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.14.1", + "comment": "Adding data with #MapComplete for theme #artwork", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-22T19:17:14Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "artwork", + "imagery": "osm", + "language": "en", + "add-image": 1 + }, + "id": 116477554 + } + }, + { + "id": 116477552, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.1227752, + 51.2193539 + ], + [ + 4.1251972, + 51.2193539 + ], + [ + 4.1251972, + 51.2223223 + ], + [ + 4.1227752, + 51.2223223 + ], + [ + 4.1227752, + 51.2193539 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.15.0-alpha-1", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-22T19:17:02Z", + "reviewed_features": [], + "create": 2, + "modify": 9, + "delete": 0, + "area": 0.00000718946479999856, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "pietervdvn.github.io", + "move": 1, + "path": "mc/develop/", + "theme": "food", + "answer": 10, + "create": 2, + "imagery": "osm", + "language": "en", + "add-image": 1, + "change_over_5000m": 2, + "change_within_25m": 12, + "move:node/9439916874": "improve_accuracy" + }, + "id": 116477552 + } + }, + { + "id": 116477462, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.1226913, + 51.2222942 + ], + [ + 4.1231411, + 51.2222942 + ], + [ + 4.1231411, + 51.222552 + ], + [ + 4.1226913, + 51.222552 + ], + [ + 4.1226913, + 51.2222942 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.15.0-alpha-1", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-22T19:13:45Z", + "reviewed_features": [], + "create": 9, + "modify": 5, + "delete": 0, + "area": 1.15958440000032e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "pietervdvn.github.io", + "move": 4, + "path": "mc/develop/", + "theme": "grb", + "import": 1, + "imagery": "osm", + "language": "en", + "conflation": 2, + "change_within_50m": 1 + }, + "id": 116477462 + } + }, + { + "id": 116475963, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.3088642, + 51.1027881 + ], + [ + 3.3252677, + 51.1027881 + ], + [ + 3.3252677, + 51.1179415 + ], + [ + 3.3088642, + 51.1179415 + ], + [ + 3.3088642, + 51.1027881 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.14.1", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/seppesantens/mapcomplete-themes/main/walkingnodenetworks/walkingnodenetworks.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-22T18:16:40Z", + "reviewed_features": [], + "create": 0, + "modify": 19, + "delete": 0, + "area": 0.000248568796900044, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "https://raw.githubusercontent.com/seppesantens/mapcomplete-themes/main/walkingnodenetworks/walkingnodenetworks.json", + "answer": 15, + "imagery": "osm", + "language": "en", + "add-image": 6 + }, + "id": 116475963 + } + }, + { + "id": 116474641, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.1227752, + 51.2223189 + ], + [ + 4.1227752, + 51.2223189 + ], + [ + 4.1227752, + 51.2223189 + ], + [ + 4.1227752, + 51.2223189 + ], + [ + 4.1227752, + 51.2223189 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.15.0-alpha-1", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-22T17:34:40Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "food", + "answer": 5, + "create": 1, + "imagery": "osm", + "language": "en", + "change_over_5000m": 1, + "change_within_25m": 5 + }, + "id": 116474641 + } + }, + { + "id": 116473925, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.3541679, + 51.1054843 + ], + [ + 3.3541679, + 51.1054843 + ], + [ + 3.3541679, + 51.1054843 + ], + [ + 3.3541679, + 51.1054843 + ], + [ + 3.3541679, + 51.1054843 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.14.1", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-22T17:13:40Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "benches", + "answer": 1, + "imagery": "osm", + "language": "en", + "add-image": 1 + }, + "id": 116473925 + } + }, + { + "id": 116461006, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.876773, + 51.0710463 + ], + [ + 4.876773, + 51.0710463 + ], + [ + 4.876773, + 51.0710463 + ], + [ + 4.876773, + 51.0710463 + ], + [ + 4.876773, + 51.0710463 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Frans_Napaters", + "uid": "3574538", + "editor": "MapComplete 0.14.1", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 2, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-22T10:47:57Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "aed", + "create": 1, + "imagery": "osm", + "language": "nl" + }, + "id": 116461006 + } + }, + { + "id": 116457152, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2.941156, + 42.702383 + ], + [ + 2.941156, + 42.702383 + ], + [ + 2.941156, + 42.702383 + ], + [ + 2.941156, + 42.702383 + ], + [ + 2.941156, + 42.702383 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "LySioS", + "uid": "11579673", + "editor": "MapComplete 0.14.1", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-22T08:08:25Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "answer": 3, + "imagery": "osm", + "language": "fr", + "change_within_5000m": 3 + }, + "id": 116457152 + } + }, + { + "id": 116453646, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 130.5694434, + 31.765696 + ], + [ + 130.5694434, + 31.765696 + ], + [ + 130.5694434, + 31.765696 + ], + [ + 130.5694434, + 31.765696 + ], + [ + 130.5694434, + 31.765696 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.14.1", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-22T03:04:55Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "cyclosm", + "language": "en", + "add-image": 1 + }, + "id": 116453646 + } + }, + { + "id": 116449226, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2.941156, + 42.702383 + ], + [ + 2.941156, + 42.702383 + ], + [ + 2.941156, + 42.702383 + ], + [ + 2.941156, + 42.702383 + ], + [ + 2.941156, + 42.702383 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "LySioS", + "uid": "11579673", + "editor": "MapComplete 0.14.1", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-21T22:01:27Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "create": 1, + "imagery": "osm", + "language": "fr" + }, + "id": 116449226 + } + }, + { + "id": 116446646, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -70.688579, + -33.544727 + ], + [ + -70.688579, + -33.544727 + ], + [ + -70.688579, + -33.544727 + ], + [ + -70.688579, + -33.544727 + ], + [ + -70.688579, + -33.544727 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.14.1", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-21T20:33:28Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "osm", + "language": "en", + "add-image": 1, + "change_within_500m": 1 + }, + "id": 116446646 + } + }, + { + "id": 116442724, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.588913, + 45.3660248 + ], + [ + 5.5941952, + 45.3660248 + ], + [ + 5.5941952, + 45.367377 + ], + [ + 5.588913, + 45.367377 + ], + [ + 5.588913, + 45.3660248 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Eric Royer", + "uid": "12137407", + "editor": "MapComplete 0.14.1", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-21T18:14:59Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.00000714259083999707, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "food", + "answer": 2, + "imagery": "osm", + "language": "en" + }, + "id": 116442724 + } + }, + { + "id": 116438284, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 14.1654471, + 52.3963101 + ], + [ + 14.1691576, + 52.3963101 + ], + [ + 14.1691576, + 52.4055509 + ], + [ + 14.1654471, + 52.4055509 + ], + [ + 14.1654471, + 52.3963101 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Casi1980", + "uid": "13989376", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-21T16:13:53Z", + "reviewed_features": [], + "create": 5, + "modify": 0, + "delete": 0, + "area": 0.0000342879884000059, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "id": 116438284 + } + }, + { + "id": 116437063, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 17.402716, + 52.0871765 + ], + [ + 17.402716, + 52.0871765 + ], + [ + 17.402716, + 52.0871765 + ], + [ + 17.402716, + 52.0871765 + ], + [ + 17.402716, + 52.0871765 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Redssu", + "uid": "13639663", + "editor": "MapComplete 0.14.1", + "comment": "Adding data with #MapComplete for theme #parkings", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-21T15:44:01Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 1, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "parkings", + "create": 1, + "imagery": "Geoportal2-PL-aerial_image_WMTS", + "deletion": 1, + "language": "en", + "deletion:node/9437251385": "testing point" + }, + "id": 116437063 + } + }, + { + "id": 116431524, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 11.8764219, + 47.9889721 + ], + [ + 11.8770696, + 47.9889721 + ], + [ + 11.8770696, + 47.9894352 + ], + [ + 11.8764219, + 47.9894352 + ], + [ + 11.8764219, + 47.9889721 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "bollyboll", + "uid": "12120321", + "editor": "MapComplete 0.14.1", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-21T13:19:01Z", + "reviewed_features": [], + "create": 2, + "modify": 0, + "delete": 0, + "area": 2.99949870002994e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "create": 2, + "imagery": "osm", + "language": "de", + "change_over_5000m": 1 + }, + "id": 116431524 + } + }, + { + "id": 116418875, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1.9344353, + 47.5192619 + ], + [ + 1.934966, + 47.5192619 + ], + [ + 1.934966, + 47.519825 + ], + [ + 1.9344353, + 47.519825 + ], + [ + 1.9344353, + 47.5192619 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.14.1", + "comment": "Adding data with #MapComplete for theme #campersite", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-21T08:41:49Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 2.98837170000368e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "campersite", + "answer": 4, + "imagery": "osm", + "language": "en", + "add-image": 2, + "change_within_25m": 6 + }, + "id": 116418875 + } + }, + { + "id": 116417325, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 11.7917955, + 48.0038767 + ], + [ + 11.7917955, + 48.0038767 + ], + [ + 11.7917955, + 48.0038767 + ], + [ + 11.7917955, + 48.0038767 + ], + [ + 11.7917955, + 48.0038767 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "bollyboll", + "uid": "12120321", + "editor": "MapComplete 0.14.1", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-21T08:04:56Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "create": 1, + "imagery": "osm", + "language": "de", + "change_over_5000m": 1 + }, + "id": 116417325 + } + }, + { + "id": 116416417, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.8407651, + 51.1844879 + ], + [ + 4.8407651, + 51.1844879 + ], + [ + 4.8407651, + 51.1844879 + ], + [ + 4.8407651, + 51.1844879 + ], + [ + 4.8407651, + 51.1844879 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Frans_Napaters", + "uid": "3574538", + "editor": "MapComplete 0.14.1", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-21T07:45:01Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 5, + "imagery": "CartoDB.Voyager", + "language": "nl" + }, + "id": 116416417 + } + }, + { + "id": 116409050, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.2211101, + 51.2165519 + ], + [ + 3.2211101, + 51.2165519 + ], + [ + 3.2211101, + 51.2165519 + ], + [ + 3.2211101, + 51.2165519 + ], + [ + 3.2211101, + 51.2165519 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.15.0-alpha", + "comment": "Adding data with #MapComplete for theme #entrances", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-21T02:38:05Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "127.0.0.1:1234", + "theme": "entrances", + "create": 2, + "imagery": "osm", + "language": "en" + }, + "id": 116409050 + } + }, + { + "id": 116387905, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 79.4831278, + 11.6086153 + ], + [ + 79.4885951, + 11.6086153 + ], + [ + 79.4885951, + 11.6105775 + ], + [ + 79.4831278, + 11.6105775 + ], + [ + 79.4831278, + 11.6086153 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "bponkishore", + "uid": "14062769", + "editor": "MapComplete 0.14.1", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-20T14:20:21Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.000010727936059982, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 2, + "imagery": "osm", + "language": "en" + }, + "id": 116387905 + } + }, + { + "id": 116387718, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 79.4922559, + 11.6105652 + ], + [ + 79.493754, + 11.6105652 + ], + [ + 79.493754, + 11.6110157 + ], + [ + 79.4922559, + 11.6110157 + ], + [ + 79.4922559, + 11.6105652 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "bponkishore", + "uid": "14062769", + "editor": "MapComplete 0.14.1", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-20T14:15:01Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 6.74894049995624e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 1, + "imagery": "osm", + "language": "en" + }, + "id": 116387718 + } + }, + { + "id": 116387593, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 79.4885869, + 11.6069151 + ], + [ + 79.4952361, + 11.6069151 + ], + [ + 79.4952361, + 11.6147643 + ], + [ + 79.4885869, + 11.6147643 + ], + [ + 79.4885869, + 11.6069151 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "bponkishore", + "uid": "14062769", + "editor": "MapComplete 0.14.1", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-20T14:11:53Z", + "reviewed_features": [], + "create": 0, + "modify": 7, + "delete": 0, + "area": 0.0000521909006399796, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 8, + "imagery": "osm", + "language": "en" + }, + "id": 116387593 + } + }, + { + "id": 116387099, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 79.4739775, + 11.6126571 + ], + [ + 79.4966847, + 11.6126571 + ], + [ + 79.4966847, + 11.6194243 + ], + [ + 79.4739775, + 11.6194243 + ], + [ + 79.4739775, + 11.6126571 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "bponkishore", + "uid": "14062769", + "editor": "MapComplete 0.14.1", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-20T13:56:54Z", + "reviewed_features": [], + "create": 0, + "modify": 10, + "delete": 0, + "area": 0.000153664163840007, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 10, + "imagery": "osm", + "language": "en" + }, + "id": 116387099 + } + }, + { + "id": 116379703, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.8407651, + 51.1844879 + ], + [ + 4.8407651, + 51.1844879 + ], + [ + 4.8407651, + 51.1844879 + ], + [ + 4.8407651, + 51.1844879 + ], + [ + 4.8407651, + 51.1844879 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Frans_Napaters", + "uid": "3574538", + "editor": "MapComplete 0.14.1", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-20T10:48:08Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "create": 1, + "imagery": "CartoDB.Voyager", + "language": "nl", + "change_over_5000m": 1 + }, + "id": 116379703 + } + }, + { + "id": 116378559, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -71.195637, + -33.6505166 + ], + [ + -71.1333362, + -33.6505166 + ], + [ + -71.1333362, + -33.403906 + ], + [ + -71.195637, + -33.403906 + ], + [ + -71.195637, + -33.6505166 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Camilo Nuñez Castro", + "uid": "5143819", + "editor": "MapComplete 0.14.1", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-20T10:23:50Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.0153640376684809, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "answer": 3, + "imagery": "HDM_HOT", + "language": "en" + }, + "id": 116378559 + } + }, + { + "id": 116377738, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2.9138955, + 43.557006 + ], + [ + 2.9138955, + 43.557006 + ], + [ + 2.9138955, + 43.557006 + ], + [ + 2.9138955, + 43.557006 + ], + [ + 2.9138955, + 43.557006 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.14.1", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-20T10:04:57Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "toilets", + "answer": 2, + "imagery": "osm", + "language": "en", + "change_within_25m": 2 + }, + "id": 116377738 + } + }, + { + "id": 116377734, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2.9138955, + 43.557006 + ], + [ + 2.9138955, + 43.557006 + ], + [ + 2.9138955, + 43.557006 + ], + [ + 2.9138955, + 43.557006 + ], + [ + 2.9138955, + 43.557006 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.14.1", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-20T10:04:52Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "toilets", + "answer": 4, + "create": 1, + "imagery": "osm", + "language": "en", + "change_over_5000m": 1, + "change_within_25m": 4 + }, + "id": 116377734 + } + }, + { + "id": 116376644, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.8438334, + 51.1846001 + ], + [ + 4.8438334, + 51.1846001 + ], + [ + 4.8438334, + 51.1846001 + ], + [ + 4.8438334, + 51.1846001 + ], + [ + 4.8438334, + 51.1846001 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Frans_Napaters", + "uid": "3574538", + "editor": "MapComplete 0.14.1", + "comment": "Adding data with #MapComplete for theme #waste_basket", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-20T09:38:11Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "waste_basket", + "answer": 2, + "create": 1, + "imagery": "osm", + "language": "nl", + "change_over_5000m": 1, + "change_within_50m": 2 + }, + "id": 116376644 + } + }, + { + "id": 116376152, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.8413405, + 51.1844432 + ], + [ + 4.8413405, + 51.1844432 + ], + [ + 4.8413405, + 51.1844432 + ], + [ + 4.8413405, + 51.1844432 + ], + [ + 4.8413405, + 51.1844432 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Frans_Napaters", + "uid": "3574538", + "editor": "MapComplete 0.14.1", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-20T09:26:32Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "benches", + "imagery": "osm", + "language": "nl", + "add-image": 1, + "change_within_50m": 1 + }, + "id": 116376152 + } + }, + { + "id": 116361219, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -1.6998679, + 51.5517728 + ], + [ + -1.6996553, + 51.5517728 + ], + [ + -1.6996553, + 51.5518835 + ], + [ + -1.6998679, + 51.5518835 + ], + [ + -1.6998679, + 51.5517728 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Welshie", + "uid": "508", + "editor": "MapComplete 0.14.1", + "comment": "Adding data with #MapComplete for theme #uk_addresses", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-19T22:24:42Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 2.35348200000993e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "uk_addresses", + "answer": 2, + "imagery": "osm", + "language": "en" + }, + "id": 116361219 + } + }, + { + "id": 116359563, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -73.2504984, + -39.8117083 + ], + [ + -73.2473714, + -39.8117083 + ], + [ + -73.2473714, + -39.8110068 + ], + [ + -73.2504984, + -39.8110068 + ], + [ + -73.2504984, + -39.8117083 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.14.1", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-19T21:27:48Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.00000219359049998863, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "cyclosm", + "language": "en", + "add-image": 3, + "change_within_1000m": 3 + }, + "id": 116359563 + } + }, + { + "id": 116356310, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.5917692, + 45.3589909 + ], + [ + 5.5921931, + 45.3589909 + ], + [ + 5.5921931, + 45.3592548 + ], + [ + 5.5917692, + 45.3592548 + ], + [ + 5.5917692, + 45.3589909 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Eric Royer", + "uid": "12137407", + "editor": "MapComplete 0.14.1", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-19T19:46:59Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 1.11867210000184e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "food", + "answer": 4, + "imagery": "osm", + "language": "en" + }, + "id": 116356310 + } + }, + { + "id": 116353102, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -2.4147242, + 51.5404679 + ], + [ + -2.4145356, + 51.5404679 + ], + [ + -2.4145356, + 51.5406824 + ], + [ + -2.4147242, + 51.5406824 + ], + [ + -2.4147242, + 51.5404679 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "spelledwrongdotuk", + "uid": "12198029", + "editor": "MapComplete 0.14.1", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-19T18:01:59Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 4.04546999997997e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "shops", + "imagery": "osm", + "language": "en", + "add-image": 1 + }, + "id": 116353102 + } + }, + { + "id": 116350440, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -60.733924, + -32.9754719 + ], + [ + -60.7012889, + -32.9754719 + ], + [ + -60.7012889, + -32.9343606 + ], + [ + -60.733924, + -32.9343606 + ], + [ + -60.733924, + -32.9754719 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "mweper", + "uid": "1311281", + "editor": "MapComplete 0.14.1", + "comment": "Adding data with #MapComplete for theme #observation_towers", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-19T16:47:40Z", + "reviewed_features": [], + "create": 0, + "modify": 19, + "delete": 0, + "area": 0.00134167138663015, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "observation_towers", + "answer": 22, + "imagery": "osm", + "language": "en" + }, + "id": 116350440 + } + }, + { + "id": 116350272, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -60.8128564, + -32.9191204 + ], + [ + -60.8128564, + -32.9191204 + ], + [ + -60.8128564, + -32.9191204 + ], + [ + -60.8128564, + -32.9191204 + ], + [ + -60.8128564, + -32.9191204 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "mweper", + "uid": "1311281", + "editor": "MapComplete 0.14.1", + "comment": "Adding data with #MapComplete for theme #entrances", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-19T16:43:12Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "entrances", + "answer": 2, + "imagery": "osm", + "language": "en" + }, + "id": 116350272 + } + }, + { + "id": 116350132, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -60.8117142, + -32.9183401 + ], + [ + -60.8115765, + -32.9183401 + ], + [ + -60.8115765, + -32.9181793 + ], + [ + -60.8117142, + -32.9181793 + ], + [ + -60.8117142, + -32.9183401 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "mweper", + "uid": "1311281", + "editor": "MapComplete 0.14.1", + "comment": "Adding data with #MapComplete for theme #cafes_and_pubs", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-19T16:38:58Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 2.21421599998492e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "cafes_and_pubs", + "answer": 3, + "imagery": "osm", + "language": "en" + }, + "id": 116350132 + } + }, + { + "id": 116350004, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -60.8075963, + -32.9118752 + ], + [ + -60.8075963, + -32.9118752 + ], + [ + -60.8075963, + -32.9118752 + ], + [ + -60.8075963, + -32.9118752 + ], + [ + -60.8075963, + -32.9118752 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "mweper", + "uid": "1311281", + "editor": "MapComplete 0.14.1", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-19T16:35:53Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "benches", + "answer": 1, + "imagery": "osm", + "language": "en" + }, + "id": 116350004 + } + }, + { + "id": 116349812, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -60.8102045, + -32.9180053 + ], + [ + -60.8102045, + -32.9180053 + ], + [ + -60.8102045, + -32.9180053 + ], + [ + -60.8102045, + -32.9180053 + ], + [ + -60.8102045, + -32.9180053 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "mweper", + "uid": "1311281", + "editor": "MapComplete 0.14.1", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-19T16:30:58Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "toilets", + "answer": 2, + "imagery": "osm", + "language": "en" + }, + "id": 116349812 + } + }, + { + "id": 116349573, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -60.8204614, + -32.9341412 + ], + [ + -60.8031753, + -32.9341412 + ], + [ + -60.8031753, + -32.9225001 + ], + [ + -60.8204614, + -32.9225001 + ], + [ + -60.8204614, + -32.9341412 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "mweper", + "uid": "1311281", + "editor": "MapComplete 0.14.1", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-19T16:24:53Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.000201229218709971, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "answer": 3, + "imagery": "CartoDB.Voyager", + "language": "en" + }, + "id": 116349573 + } + }, + { + "id": 116346307, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2.9968427, + 42.8927249 + ], + [ + 2.9968427, + 42.8927249 + ], + [ + 2.9968427, + 42.8927249 + ], + [ + 2.9968427, + 42.8927249 + ], + [ + 2.9968427, + 42.8927249 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.14.1", + "comment": "Adding data with #MapComplete for theme #campersite", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-19T15:01:58Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "campersite", + "answer": 4, + "create": 1, + "imagery": "osm", + "language": "en", + "change_over_5000m": 5 + }, + "id": 116346307 + } + }, + { + "id": 116343902, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 11.3954282, + 44.5057106 + ], + [ + 11.3954347, + 44.5057106 + ], + [ + 11.3954347, + 44.505757 + ], + [ + 11.3954282, + 44.505757 + ], + [ + 11.3954282, + 44.5057106 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "WinstonSmith", + "uid": "36030", + "editor": "MapComplete 0.14.1", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-19T13:55:39Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 3.01599999994786e-10, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "cyclofix", + "answer": 5, + "create": 1, + "imagery": "CartoDB.Voyager", + "language": "en", + "change_over_5000m": 1, + "change_within_25m": 6, + "move:node/9431075016": "improve_accuracy" + }, + "id": 116343902 + } + }, + { + "id": 116343730, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -71.6127057, + -33.5828149 + ], + [ + -71.6127057, + -33.5828149 + ], + [ + -71.6127057, + -33.5828149 + ], + [ + -71.6127057, + -33.5828149 + ], + [ + -71.6127057, + -33.5828149 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.14.1", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-19T13:50:57Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "cyclosm", + "language": "en", + "add-image": 1 + }, + "id": 116343730 + } + }, + { + "id": 116336052, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2.6120027, + 42.3854559 + ], + [ + 2.6120027, + 42.3854559 + ], + [ + 2.6120027, + 42.3854559 + ], + [ + 2.6120027, + 42.3854559 + ], + [ + 2.6120027, + 42.3854559 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.14.1", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-19T10:45:00Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "shops", + "answer": 2, + "imagery": "osm", + "language": "en", + "change_within_25m": 2 + }, + "id": 116336052 + } + }, + { + "id": 116335626, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2.6151991, + 42.3833737 + ], + [ + 2.6151991, + 42.3833737 + ], + [ + 2.6151991, + 42.3833737 + ], + [ + 2.6151991, + 42.3833737 + ], + [ + 2.6151991, + 42.3833737 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.14.1", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-19T10:35:19Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "aed", + "answer": 6, + "create": 1, + "imagery": "osm", + "language": "en", + "add-image": 1, + "change_over_5000m": 1, + "change_within_50m": 7 + }, + "id": 116335626 + } + }, + { + "id": 116335294, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2.6160606, + 42.3832823 + ], + [ + 2.6160606, + 42.3832823 + ], + [ + 2.6160606, + 42.3832823 + ], + [ + 2.6160606, + 42.3832823 + ], + [ + 2.6160606, + 42.3832823 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.14.1", + "comment": "Adding data with #MapComplete for theme #campersite", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-19T10:28:03Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "campersite", + "answer": 5, + "create": 1, + "imagery": "osm", + "language": "en", + "add-image": 1, + "change_over_5000m": 1, + "change_within_25m": 6 + }, + "id": 116335294 + } + }, + { + "id": 116327686, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 11.7968541, + 47.9961646 + ], + [ + 11.7989583, + 47.9961646 + ], + [ + 11.7989583, + 47.9985608 + ], + [ + 11.7968541, + 47.9985608 + ], + [ + 11.7968541, + 47.9961646 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "bollyboll", + "uid": "12120321", + "editor": "MapComplete 0.14.1", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-19T07:10:54Z", + "reviewed_features": [], + "create": 6, + "modify": 0, + "delete": 0, + "area": 0.00000504208404000317, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "create": 6, + "imagery": "osm", + "language": "de", + "change_over_5000m": 6 + }, + "id": 116327686 + } + }, + { + "id": 116322023, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -44.9052229, + -20.1596832 + ], + [ + -44.8990978, + -20.1596832 + ], + [ + -44.8990978, + -20.1431644 + ], + [ + -44.9052229, + -20.1431644 + ], + [ + -44.9052229, + -20.1596832 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "c_cesar", + "uid": "12078598", + "editor": "MapComplete 0.14.1", + "comment": "Adding data with #MapComplete for theme #street_lighting", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-19T02:56:44Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.000101179301879975, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "street_lighting", + "answer": 2, + "imagery": "osm", + "language": "en" + }, + "id": 116322023 + } + }, + { + "id": 116315097, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.2009866, + 50.910119 + ], + [ + 4.4300828, + 50.910119 + ], + [ + 4.4300828, + 51.0639441 + ], + [ + 4.2009866, + 51.0639441 + ], + [ + 4.2009866, + 50.910119 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "jospyck", + "uid": "12128135", + "editor": "MapComplete 0.14.1", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-18T20:28:48Z", + "reviewed_features": [], + "create": 2, + "modify": 16, + "delete": 0, + "area": 0.0352407458746197, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 23, + "create": 2, + "imagery": "osm", + "language": "nl" + }, + "id": 116315097 + } + }, + { + "id": 116310179, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -78.6198627, + 26.5213718 + ], + [ + -78.6144907, + 26.5213718 + ], + [ + -78.6144907, + 26.5240728 + ], + [ + -78.6198627, + 26.5240728 + ], + [ + -78.6198627, + 26.5213718 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "InsertUser", + "uid": "89098", + "editor": "MapComplete 0.14.1", + "comment": "Adding data with #MapComplete for theme #street_lighting", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-18T18:02:57Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.000014509771999975, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "street_lighting", + "answer": 1, + "imagery": "osm", + "language": "en", + "change_within_5000m": 1 + }, + "id": 116310179 + } + }, + { + "id": 116308236, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.8111556, + 52.8245416 + ], + [ + 13.8111556, + 52.8245416 + ], + [ + 13.8111556, + 52.8245416 + ], + [ + 13.8111556, + 52.8245416 + ], + [ + 13.8111556, + 52.8245416 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Brandoberinspektor Erdmann", + "uid": "13364061", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-18T17:12:40Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "id": 116308236 + } + }, + { + "id": 116307538, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.31451, + 49.6111974 + ], + [ + 8.31451, + 49.6111974 + ], + [ + 8.31451, + 49.6111974 + ], + [ + 8.31451, + 49.6111974 + ], + [ + 8.31451, + 49.6111974 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Emilius123", + "uid": "13874704", + "editor": "MapComplete 0.14.0", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-18T16:54:19Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "toilets", + "answer": 3, + "imagery": "osm", + "language": "de" + }, + "id": 116307538 + } + }, + { + "id": 116307441, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -1.6632915, + 48.2497405 + ], + [ + -1.6632915, + 48.2497405 + ], + [ + -1.6632915, + 48.2497405 + ], + [ + -1.6632915, + 48.2497405 + ], + [ + -1.6632915, + 48.2497405 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "H@mlet", + "uid": "691314", + "editor": "MapComplete 0.14.0", + "comment": "Adding data with #MapComplete for theme #maps", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-18T16:51:45Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 1, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "maps", + "answer": 2, + "create": 1, + "imagery": "osm", + "deletion": 1, + "language": "en", + "deletion:node/9428929578": "testing point" + }, + "id": 116307441 + } + }, + { + "id": 116307009, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.4123378, + 50.7928342 + ], + [ + 4.4126717, + 50.7928342 + ], + [ + 4.4126717, + 50.7928376 + ], + [ + 4.4123378, + 50.7928376 + ], + [ + 4.4123378, + 50.7928342 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "StefDeGreef", + "uid": "1860737", + "editor": "MapComplete 0.14.0", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-18T16:39:34Z", + "reviewed_features": [], + "create": 1, + "modify": 6, + "delete": 1, + "area": 1.13525999902947e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "move": 2, + "theme": "cyclofix", + "answer": 7, + "create": 1, + "imagery": "CartoDB.Voyager", + "deletion": 1, + "language": "fr", + "add-image": 2, + "change_over_5000m": 1, + "change_within_25m": 12, + "move:node/9428878139": "improve_accuracy", + "deletion:node/2895132452": "mauvaise catégorie" + }, + "id": 116307009 + } + }, + { + "id": 116302996, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -71.60132, + -33.0506821 + ], + [ + -71.60132, + -33.0506821 + ], + [ + -71.60132, + -33.0506821 + ], + [ + -71.60132, + -33.0506821 + ], + [ + -71.60132, + -33.0506821 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.14.0", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-18T15:01:18Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "cyclosm", + "language": "en", + "add-image": 1 + }, + "id": 116302996 + } + }, + { + "id": 116302086, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -73.2254687, + 41.1775402 + ], + [ + -73.2254687, + 41.1775402 + ], + [ + -73.2254687, + 41.1775402 + ], + [ + -73.2254687, + 41.1775402 + ], + [ + -73.2254687, + 41.1775402 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "redsteakraw", + "uid": "139856", + "editor": "MapComplete 0.14.0", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-18T14:39:27Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "shops", + "create": 1, + "imagery": "osm", + "language": "en", + "change_over_5000m": 1 + }, + "id": 116302086 + } + }, + { + "id": 116301008, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.1960648, + 51.2470046 + ], + [ + 3.2034968, + 51.2470046 + ], + [ + 3.2034968, + 51.2491122 + ], + [ + 3.1960648, + 51.2491122 + ], + [ + 3.1960648, + 51.2470046 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.14.0", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-18T14:12:49Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.0000156636832000166, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "answer": 2, + "imagery": "CartoDB.Voyager", + "language": "en", + "change_within_5000m": 2 + }, + "id": 116301008 + } + }, + { + "id": 116297063, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.4169574, + 50.9409251 + ], + [ + 5.4349677, + 50.9409251 + ], + [ + 5.4349677, + 50.9477931 + ], + [ + 5.4169574, + 50.9477931 + ], + [ + 5.4169574, + 50.9409251 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.14.0", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-18T12:30:33Z", + "reviewed_features": [], + "create": 493, + "modify": 24, + "delete": 0, + "area": 0.000123694740399945, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "move": 12, + "theme": "grb", + "answer": 12, + "import": 70, + "imagery": "osm", + "language": "nl", + "conflation": 6, + "change_over_5000m": 31 + }, + "id": 116297063 + } + }, + { + "id": 116288326, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 12.9979688, + 52.0042014 + ], + [ + 12.9979688, + 52.0042014 + ], + [ + 12.9979688, + 52.0042014 + ], + [ + 12.9979688, + 52.0042014 + ], + [ + 12.9979688, + 52.0042014 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Oberfuzzi", + "uid": "14794109", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-18T09:11:57Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "id": 116288326 + } + }, + { + "id": 116286179, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -7.9977143, + 37.0978991 + ], + [ + -7.9976405, + 37.0978991 + ], + [ + -7.9976405, + 37.097959 + ], + [ + -7.9977143, + 37.097959 + ], + [ + -7.9977143, + 37.0978991 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Alexmol", + "uid": "347293", + "editor": "MapComplete 0.14.0", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-18T08:18:34Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 4.42062000027127e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "answer": 3, + "imagery": "CartoDB.Voyager", + "language": "en" + }, + "id": 116286179 + } + }, + { + "id": 116284120, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 11.7931433, + 47.995838 + ], + [ + 11.7962775, + 47.995838 + ], + [ + 11.7962775, + 48.0012654 + ], + [ + 11.7931433, + 48.0012654 + ], + [ + 11.7931433, + 47.995838 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "bollyboll", + "uid": "12120321", + "editor": "MapComplete 0.14.0", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-18T07:26:13Z", + "reviewed_features": [], + "create": 8, + "modify": 0, + "delete": 0, + "area": 0.0000170105570800058, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "create": 8, + "imagery": "osm", + "language": "de", + "change_over_5000m": 8 + }, + "id": 116284120 + } + }, + { + "id": 116276269, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -72.9851162, + -41.3135271 + ], + [ + -72.9837516, + -41.3135271 + ], + [ + -72.9837516, + -41.3133499 + ], + [ + -72.9851162, + -41.3133499 + ], + [ + -72.9851162, + -41.3135271 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.14.0", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-18T00:26:29Z", + "reviewed_features": [], + "create": 0, + "modify": 6, + "delete": 0, + "area": 2.4180712000211e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "cyclosm", + "language": "en", + "add-image": 10 + }, + "id": 116276269 + } + }, + { + "id": 116272308, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -60.819202, + -32.9204343 + ], + [ + -60.8154808, + -32.9204343 + ], + [ + -60.8154808, + -32.9109769 + ], + [ + -60.819202, + -32.9109769 + ], + [ + -60.819202, + -32.9204343 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "mweper", + "uid": "1311281", + "editor": "MapComplete 0.13.1", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-17T21:19:15Z", + "reviewed_features": [], + "create": 0, + "modify": 13, + "delete": 0, + "area": 0.0000351928768799252, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 16, + "imagery": "osm", + "language": "en" + }, + "id": 116272308 + } + }, + { + "id": 116269302, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -73.2328472, + -39.842709 + ], + [ + -73.2326268, + -39.842709 + ], + [ + -73.2326268, + -39.8412373 + ], + [ + -73.2328472, + -39.8412373 + ], + [ + -73.2328472, + -39.842709 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.13.1", + "comment": "Adding data with #MapComplete for theme #test", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-17T19:49:35Z", + "reviewed_features": [], + "create": 0, + "modify": 9, + "delete": 0, + "area": 3.24362679983325e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "test", + "answer": 1, + "imagery": "cyclosm", + "language": "en", + "add-image": 8 + }, + "id": 116269302 + } + }, + { + "id": 116265873, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -60.8137139, + -32.9179015 + ], + [ + -60.8061514, + -32.9179015 + ], + [ + -60.8061514, + -32.9163679 + ], + [ + -60.8137139, + -32.9163679 + ], + [ + -60.8137139, + -32.9179015 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "mweper", + "uid": "1311281", + "editor": "MapComplete 0.13.1", + "comment": "Adding data with #MapComplete for theme #cycle_infra", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-17T18:04:59Z", + "reviewed_features": [], + "create": 0, + "modify": 18, + "delete": 0, + "area": 0.0000115978500000235, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "cycle_infra", + "answer": 25, + "imagery": "CartoDB.Voyager", + "language": "en" + }, + "id": 116265873 + } + }, + { + "id": 116265476, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -60.8250633, + -32.9294005 + ], + [ + -60.8116288, + -32.9294005 + ], + [ + -60.8116288, + -32.9204343 + ], + [ + -60.8250633, + -32.9204343 + ], + [ + -60.8250633, + -32.9294005 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "mweper", + "uid": "1311281", + "editor": "MapComplete 0.13.1", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-17T17:54:01Z", + "reviewed_features": [], + "create": 0, + "modify": 24, + "delete": 0, + "area": 0.000120456413900002, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 47, + "imagery": "osm", + "language": "en" + }, + "id": 116265476 + } + }, + { + "id": 116265413, + "type": "Feature", + "geometry": null, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "mweper", + "uid": "1311281", + "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-17T17:52: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": "playgrounds", + "answer": 1, + "imagery": "osm", + "language": "en" + }, + "id": 116265413 + } + }, + { + "id": 116260926, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2.9305393, + 41.7178086 + ], + [ + 2.9312512, + 41.7178086 + ], + [ + 2.9312512, + 41.7181359 + ], + [ + 2.9305393, + 41.7181359 + ], + [ + 2.9305393, + 41.7178086 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.13.1", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-17T16:06:04Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 2.33004870001592e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "aed", + "answer": 5, + "create": 2, + "imagery": "osm", + "language": "en", + "add-image": 1, + "change_within_25m": 8 + }, + "id": 116260926 + } + }, + { + "id": 116259129, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2.9338675, + 41.7155799 + ], + [ + 2.9338675, + 41.7155799 + ], + [ + 2.9338675, + 41.7155799 + ], + [ + 2.9338675, + 41.7155799 + ], + [ + 2.9338675, + 41.7155799 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.13.1", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-17T15:22:06Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "toilets", + "answer": 7, + "create": 1, + "imagery": "PNOA-Spain-TMS", + "language": "en", + "change_over_5000m": 1, + "change_within_25m": 7 + }, + "id": 116259129 + } + }, + { + "id": 116258551, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -60.8110097, + -32.921969 + ], + [ + -60.8068714, + -32.921969 + ], + [ + -60.8068714, + -32.9152696 + ], + [ + -60.8110097, + -32.9152696 + ], + [ + -60.8110097, + -32.921969 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "mweper", + "uid": "1311281", + "editor": "MapComplete 0.13.1", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-17T15:05:38Z", + "reviewed_features": [], + "create": 0, + "modify": 11, + "delete": 0, + "area": 0.0000277241270199868, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 19, + "imagery": "osm", + "language": "en" + }, + "id": 116258551 + } + }, + { + "id": 116257758, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2.9332367, + 41.7201447 + ], + [ + 2.9332367, + 41.7201447 + ], + [ + 2.9332367, + 41.7201447 + ], + [ + 2.9332367, + 41.7201447 + ], + [ + 2.9332367, + 41.7201447 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.13.1", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-17T14:46:27Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "aed", + "answer": 4, + "imagery": "osm", + "language": "en", + "add-image": 1, + "change_within_25m": 3, + "change_within_50m": 2 + }, + "id": 116257758 + } + }, + { + "id": 116253168, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2.7877593, + 41.6692173 + ], + [ + 2.7877593, + 41.6692173 + ], + [ + 2.7877593, + 41.6692173 + ], + [ + 2.7877593, + 41.6692173 + ], + [ + 2.7877593, + 41.6692173 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.13.1", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-17T12:46:23Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "toilets", + "answer": 1, + "imagery": "PNOA-Spain-TMS", + "language": "en", + "change_within_25m": 1 + }, + "id": 116253168 + } + }, + { + "id": 116252714, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.2091674, + 51.187922 + ], + [ + 3.20933, + 51.187922 + ], + [ + 3.20933, + 51.18804 + ], + [ + 3.2091674, + 51.18804 + ], + [ + 3.2091674, + 51.187922 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.14.0-rc-1", + "comment": "Adding data with #MapComplete for theme #fritures", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-17T12:35:35Z", + "reviewed_features": [], + "create": 0, + "modify": 6, + "delete": 0, + "area": 1.91868000000708e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "fritures", + "answer": 7, + "imagery": "osm", + "language": "en" + }, + "id": 116252714 + } + }, + { + "id": 116251861, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.0507767, + 50.6391744 + ], + [ + 3.0613902, + 50.6391744 + ], + [ + 3.0613902, + 50.6485277 + ], + [ + 3.0507767, + 50.6485277 + ], + [ + 3.0507767, + 50.6391744 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "whatismoss", + "uid": "8427311", + "editor": "MapComplete 0.13.1", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-17T12:12:53Z", + "reviewed_features": [], + "create": 0, + "modify": 19, + "delete": 0, + "area": 0.0000992712495500068, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 29, + "imagery": "osm", + "language": "en" + }, + "id": 116251861 + } + }, + { + "id": 116247427, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.7375334, + 51.3886987 + ], + [ + 4.7385366, + 51.3886987 + ], + [ + 4.7385366, + 51.3894895 + ], + [ + 4.7375334, + 51.3894895 + ], + [ + 4.7375334, + 51.3886987 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Stinus_Clasius", + "uid": "1086503", + "editor": "MapComplete 0.13.1", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-17T10:29:47Z", + "reviewed_features": [], + "create": 31, + "modify": 0, + "delete": 0, + "area": 7.93330560003959e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "grb", + "import": 4, + "imagery": "osm", + "language": "nl" + }, + "id": 116247427 + } + }, + { + "id": 116245840, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 78.1197721, + 9.9251855 + ], + [ + 78.1197721, + 9.9251855 + ], + [ + 78.1197721, + 9.9251855 + ], + [ + 78.1197721, + 9.9251855 + ], + [ + 78.1197721, + 9.9251855 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "divyaboomi", + "uid": "14872477", + "editor": "MapComplete 0.13.1", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-17T09:48:47Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "aed", + "create": 1, + "imagery": "osm", + "language": "en", + "change_over_5000m": 1 + }, + "id": 116245840 + } + }, + { + "id": 116244201, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1.6668086, + 41.3225334 + ], + [ + 2.6862459, + 41.3225334 + ], + [ + 2.6862459, + 41.6223035 + ], + [ + 1.6668086, + 41.6223035 + ], + [ + 1.6668086, + 41.3225334 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.13.1", + "comment": "Adding data with #MapComplete for theme #campersite", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-17T09:08:04Z", + "reviewed_features": [], + "create": 2, + "modify": 6, + "delete": 0, + "area": 0.305596821364734, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "campersite", + "answer": 12, + "create": 2, + "imagery": "osm", + "language": "en", + "add-image": 1, + "change_over_5000m": 3, + "change_within_25m": 4, + "change_within_50m": 8 + }, + "id": 116244201 + } + }, + { + "id": 116236409, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -5.6804882, + 40.9654234 + ], + [ + -5.6619124, + 40.9654234 + ], + [ + -5.6619124, + 40.9757994 + ], + [ + -5.6804882, + 40.9757994 + ], + [ + -5.6804882, + 40.9654234 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "sanchi", + "uid": "170106", + "editor": "MapComplete 0.13.1", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-17T04:53:31Z", + "reviewed_features": [], + "create": 0, + "modify": 20, + "delete": 0, + "area": 0.000192742500800013, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 37, + "imagery": "osm", + "language": "en" + }, + "id": 116236409 + } + }, + { + "id": 116231990, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -5.6808231, + 40.9699703 + ], + [ + -5.673828, + 40.9699703 + ], + [ + -5.673828, + 40.9719892 + ], + [ + -5.6808231, + 40.9719892 + ], + [ + -5.6808231, + 40.9699703 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "sanchi", + "uid": "170106", + "editor": "MapComplete 0.13.1", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-16T23:24:25Z", + "reviewed_features": [], + "create": 0, + "modify": 9, + "delete": 0, + "area": 0.0000141224073900198, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 24, + "imagery": "osm", + "language": "en" + }, + "id": 116231990 + } + }, + { + "id": 116230459, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -72.9840192, + -41.3133377 + ], + [ + -72.9840192, + -41.3133377 + ], + [ + -72.9840192, + -41.3133377 + ], + [ + -72.9840192, + -41.3133377 + ], + [ + -72.9840192, + -41.3133377 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.13.1", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-16T22:06:07Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "cyclosm", + "language": "en", + "add-image": 1, + "change_within_5000m": 1 + }, + "id": 116230459 + } + }, + { + "id": 116229030, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.4236539, + 50.9402942 + ], + [ + 5.4346849, + 50.9402942 + ], + [ + 5.4346849, + 50.946538 + ], + [ + 5.4236539, + 50.946538 + ], + [ + 5.4236539, + 50.9402942 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.13.1", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-16T21:05:16Z", + "reviewed_features": [], + "create": 900, + "modify": 1, + "delete": 0, + "area": 0.0000688753578000003, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "grb", + "answer": 1, + "import": 88, + "imagery": "AGIV", + "language": "nl" + }, + "id": 116229030 + } + }, + { + "id": 116227831, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -70.6123594, + -33.4588056 + ], + [ + -70.6123594, + -33.4588056 + ], + [ + -70.6123594, + -33.4588056 + ], + [ + -70.6123594, + -33.4588056 + ], + [ + -70.6123594, + -33.4588056 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Angel Spotorno", + "uid": "680374", + "editor": "MapComplete 0.13.1", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-16T20:15:16Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "trees", + "create": 1, + "imagery": "osm", + "language": "en" + }, + "id": 116227831 + } + }, + { + "id": 116221498, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2.6887201, + 41.6219427 + ], + [ + 2.6895374, + 41.6219427 + ], + [ + 2.6895374, + 41.6227264 + ], + [ + 2.6887201, + 41.6227264 + ], + [ + 2.6887201, + 41.6219427 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.13.1", + "comment": "Adding data with #MapComplete for theme #campersite", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-16T16:48:16Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 6.40518009999607e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "campersite", + "answer": 7, + "imagery": "osm", + "language": "en", + "change_over_5000m": 7 + }, + "id": 116221498 + } + }, + { + "id": 116220610, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.9887022, + 49.998414 + ], + [ + 5.9887022, + 49.998414 + ], + [ + 5.9887022, + 49.998414 + ], + [ + 5.9887022, + 49.998414 + ], + [ + 5.9887022, + 49.998414 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "ClarissaWAM", + "uid": "13745921", + "editor": "MapComplete 0.13.1", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-16T16:23:38Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "imagery": "osm", + "language": "en", + "add-image": 1 + }, + "id": 116220610 + } + }, + { + "id": 116220534, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.9887022, + 49.998414 + ], + [ + 5.9887022, + 49.998414 + ], + [ + 5.9887022, + 49.998414 + ], + [ + 5.9887022, + 49.998414 + ], + [ + 5.9887022, + 49.998414 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "ClarissaWAM", + "uid": "13745921", + "editor": "MapComplete 0.13.1", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-16T16:21:19Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "answer": 1, + "create": 1, + "imagery": "osm", + "language": "en", + "add-image": 1 + }, + "id": 116220534 + } + }, + { + "id": 116219481, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 11.8073751, + 48.0053644 + ], + [ + 11.8438719, + 48.0053644 + ], + [ + 11.8438719, + 48.025151 + ], + [ + 11.8073751, + 48.025151 + ], + [ + 11.8073751, + 48.0053644 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "bollyboll", + "uid": "12120321", + "editor": "MapComplete 0.13.1", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-16T15:53:58Z", + "reviewed_features": [], + "create": 9, + "modify": 0, + "delete": 0, + "area": 0.000722147582880123, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "answer": 2, + "create": 9, + "imagery": "Mapbox", + "language": "de", + "change_over_5000m": 9, + "change_within_25m": 1, + "change_within_50m": 1 + }, + "id": 116219481 + } + }, + { + "id": 116216583, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -1.6050693, + 52.287768 + ], + [ + -1.6050693, + 52.287768 + ], + [ + -1.6050693, + 52.287768 + ], + [ + -1.6050693, + 52.287768 + ], + [ + -1.6050693, + 52.287768 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "RobJN", + "uid": "411244", + "editor": "MapComplete 0.13.1", + "comment": "Adding data with #MapComplete for theme #uk_addresses", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-16T14:41:15Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "uk_addresses", + "import": 1, + "imagery": "osm", + "language": "en", + "change_over_5000m": 1 + }, + "id": 116216583 + } + }, + { + "id": 116216334, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.0014962, + 50.9404326 + ], + [ + 5.4256049, + 50.9404326 + ], + [ + 5.4256049, + 51.1628889 + ], + [ + 5.0014962, + 51.1628889 + ], + [ + 5.0014962, + 50.9404326 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.13.1", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-16T14:35:24Z", + "reviewed_features": [], + "create": 470, + "modify": 100, + "delete": 0, + "area": 0.0943456521998089, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "move": 98, + "theme": "grb", + "import": 47, + "language": "nl", + "conflation": 4 + }, + "id": 116216334 + } + }, + { + "id": 116210098, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.0117371, + 51.1267423 + ], + [ + 5.0117371, + 51.1267423 + ], + [ + 5.0117371, + 51.1267423 + ], + [ + 5.0117371, + 51.1267423 + ], + [ + 5.0117371, + 51.1267423 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.13.1", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-16T11:28:10Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "aed", + "answer": 5, + "imagery": "osm", + "language": "nl", + "change_within_1000m": 5 + }, + "id": 116210098 + } + }, + { + "id": 116204074, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.4192089, + 50.7916897 + ], + [ + 4.4201768, + 50.7916897 + ], + [ + 4.4201768, + 50.8000429 + ], + [ + 4.4192089, + 50.8000429 + ], + [ + 4.4192089, + 50.7916897 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "StefDeGreef", + "uid": "1860737", + "editor": "MapComplete 0.13.1", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-01-16T06:06:30Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.00000808506228000206, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 5, + "imagery": "CartoDB.Voyager", + "language": "fr", + "change_within_5000m": 5 + }, + "id": 116204074 + } + }, + { + "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", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.7196162, + 51.1562979 + ], + [ + 4.9928162, + 51.1562979 + ], + [ + 4.9928162, + 51.3701885 + ], + [ + 4.7196162, + 51.3701885 + ], + [ + 4.7196162, + 51.1562979 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 90, + "imagery": "osm", + "language": "nl" + }, + "id": 115852335 + } + }, + { + "id": 115851905, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 11.6975812, + 44.3579979 + ], + [ + 11.698542, + 44.3579979 + ], + [ + 11.698542, + 44.358385 + ], + [ + 11.6975812, + 44.358385 + ], + [ + 11.6975812, + 44.3579979 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 1, + "imagery": "osm", + "language": "it", + "change_within_1000m": 1 + }, + "id": 115851905 + } + }, + { + "id": 115851354, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 12.9934294, + 52.0045643 + ], + [ + 13.0039313, + 52.0045643 + ], + [ + 13.0039313, + 52.0161692 + ], + [ + 12.9934294, + 52.0161692 + ], + [ + 12.9934294, + 52.0045643 + ] + ] + ] + }, + "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, + "metadata": { + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "id": 115851354 + } + }, + { + "id": 115845026, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.7366196, + 51.1706774 + ], + [ + 4.7424349, + 51.1706774 + ], + [ + 4.7424349, + 51.1778474 + ], + [ + 4.7366196, + 51.1778474 + ], + [ + 4.7366196, + 51.1706774 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 7, + "imagery": "osm", + "language": "nl" + }, + "id": 115845026 + } + }, + { + "id": 115841923, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2.9584554, + 50.4216293 + ], + [ + 2.9683807, + 50.4216293 + ], + [ + 2.9683807, + 50.4296928 + ], + [ + 2.9584554, + 50.4296928 + ], + [ + 2.9584554, + 50.4216293 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 31, + "imagery": "osm", + "language": "en" + }, + "id": 115841923 + } + }, + { + "id": 115841155, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.2164725, + 51.2071696 + ], + [ + 3.2172442, + 51.2071696 + ], + [ + 3.2172442, + 51.2076783 + ], + [ + 3.2164725, + 51.2076783 + ], + [ + 3.2164725, + 51.2071696 + ] + ] + ] + }, + "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, + "metadata": { + "host": "127.0.0.1:1234", + "theme": "etymology", + "answer": 3, + "imagery": "osm", + "language": "en" + }, + "id": 115841155 + } + }, + { + "id": 115839538, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -0.5530474, + 38.9163211 + ], + [ + -0.5530388, + 38.9163211 + ], + [ + -0.5530388, + 38.9163351 + ], + [ + -0.5530474, + 38.9163351 + ], + [ + -0.5530474, + 38.9163211 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "campersite", + "answer": 12, + "create": 2, + "imagery": "osm", + "language": "nl", + "add-image": 1, + "change_over_5000m": 2, + "change_within_25m": 13 + }, + "id": 115839538 + } + }, + { + "id": 115839019, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.3937936, + 50.9817076 + ], + [ + 4.3941343, + 50.9817076 + ], + [ + 4.3941343, + 50.981998 + ], + [ + 4.3937936, + 50.981998 + ], + [ + 4.3937936, + 50.9817076 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "boomgaarden", + "answer": 24, + "create": 4, + "imagery": "osm", + "language": "nl", + "change_over_5000m": 4, + "change_within_25m": 24 + }, + "id": 115839019 + } + }, + { + "id": 115833953, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2.9461682, + 50.4172351 + ], + [ + 2.9782103, + 50.4172351 + ], + [ + 2.9782103, + 50.4618711 + ], + [ + 2.9461682, + 50.4618711 + ], + [ + 2.9461682, + 50.4172351 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 108, + "imagery": "osm", + "language": "en" + }, + "id": 115833953 + } + }, + { + "id": 115833945, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2.3495507, + 48.8872913 + ], + [ + 2.3495507, + 48.8872913 + ], + [ + 2.3495507, + 48.8872913 + ], + [ + 2.3495507, + 48.8872913 + ], + [ + 2.3495507, + 48.8872913 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "ghostbikes", + "answer": 1, + "create": 1, + "imagery": "CartoDB.Positron", + "language": "en", + "add-image": 1 + }, + "id": 115833945 + } + }, + { + "id": 115833798, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 14.6269565, + 51.7446231 + ], + [ + 14.6337401, + 51.7446231 + ], + [ + 14.6337401, + 51.7516982 + ], + [ + 14.6269565, + 51.7516982 + ], + [ + 14.6269565, + 51.7446231 + ] + ] + ] + }, + "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, + "metadata": { + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "id": 115833798 + } + }, + { + "id": 115833348, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.4760207, + 51.0269087 + ], + [ + 4.4791201, + 51.0269087 + ], + [ + 4.4791201, + 51.0284312 + ], + [ + 4.4760207, + 51.0284312 + ], + [ + 4.4760207, + 51.0269087 + ] + ] + ] + }, + "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, + "metadata": { + "host": "127.0.0.1:1234", + "move": 360, + "theme": "grb", + "delete": 5, + "import": 14, + "imagery": "AGIVFlandersGRB", + "language": "en", + "conflation": 92, + "change_over_5000m": 11 + }, + "id": 115833348 + } + }, + { + "id": 115830485, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2.2312912, + 48.8629707 + ], + [ + 2.2312912, + 48.8629707 + ], + [ + 2.2312912, + 48.8629707 + ], + [ + 2.2312912, + 48.8629707 + ], + [ + 2.2312912, + 48.8629707 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "ghostbikes", + "answer": 2, + "create": 1, + "imagery": "CartoDB.Positron", + "language": "en", + "add-image": 1 + }, + "id": 115830485 + } + }, + { + "id": 115829566, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.2018781, + 52.7757541 + ], + [ + 13.226241, + 52.7757541 + ], + [ + 13.226241, + 52.8008039 + ], + [ + 13.2018781, + 52.8008039 + ], + [ + 13.2018781, + 52.7757541 + ] + ] + ] + }, + "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, + "metadata": { + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "id": 115829566 + } + }, + { + "id": 115828252, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.1402634, + 50.8684837 + ], + [ + 3.14541, + 50.8684837 + ], + [ + 3.14541, + 50.8712658 + ], + [ + 3.1402634, + 50.8712658 + ], + [ + 3.1402634, + 50.8684837 + ] + ] + ] + }, + "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, + "metadata": { + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "grb", + "import": 30, + "imagery": "osm", + "language": "nl" + }, + "id": 115828252 + } + }, + { + "id": 115826484, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.0844218, + 52.0028029 + ], + [ + 13.0844218, + 52.0028029 + ], + [ + 13.0844218, + 52.0028029 + ], + [ + 13.0844218, + 52.0028029 + ], + [ + 13.0844218, + 52.0028029 + ] + ] + ] + }, + "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, + "metadata": { + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "id": 115826484 + } + }, + { + "id": 115824863, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 76.9439827, + 11.0007011 + ], + [ + 77.7275467, + 11.0007011 + ], + [ + 77.7275467, + 11.3421296 + ], + [ + 76.9439827, + 11.3421296 + ], + [ + 76.9439827, + 11.0007011 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 8, + "imagery": "osm", + "language": "en" + }, + "id": 115824863 + } + }, + { + "id": 115824089, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.1412528, + 50.8703504 + ], + [ + 3.1473963, + 50.8703504 + ], + [ + 3.1473963, + 50.8726744 + ], + [ + 3.1412528, + 50.8726744 + ], + [ + 3.1412528, + 50.8703504 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "move": 297, + "theme": "grb", + "import": 75, + "imagery": "osm", + "language": "nl", + "conflation": 108 + }, + "id": 115824089 + } + }, + { + "id": 115823852, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 76.9559533, + 11.0042562 + ], + [ + 77.0266165, + 11.0042562 + ], + [ + 77.0266165, + 11.051368 + ], + [ + 76.9559533, + 11.051368 + ], + [ + 76.9559533, + 11.0042562 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 26, + "imagery": "osm", + "language": "en" + }, + "id": 115823852 + } + }, + { + "id": 115818094, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.4831178, + 51.0282998 + ], + [ + 4.4833467, + 51.0282998 + ], + [ + 4.4833467, + 51.0285776 + ], + [ + 4.4831178, + 51.0285776 + ], + [ + 4.4831178, + 51.0282998 + ] + ] + ] + }, + "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, + "metadata": { + "host": "127.0.0.1:1234", + "move": 18, + "theme": "grb", + "import": 1, + "imagery": "AGIVFlandersGRB", + "language": "en", + "conflation": 2, + "change_over_5000m": 1 + }, + "id": 115818094 + } + }, + { + "id": 115817776, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 0.1090203, + 38.8379928 + ], + [ + 0.1133841, + 38.8379928 + ], + [ + 0.1133841, + 38.8397894 + ], + [ + 0.1090203, + 38.8397894 + ], + [ + 0.1090203, + 38.8379928 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "cycle_infra", + "answer": 12, + "imagery": "CartoDB.Voyager", + "language": "en" + }, + "id": 115817776 + } + }, + { + "id": 115817760, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 0.1045364, + 38.8430158 + ], + [ + 0.1045364, + 38.8430158 + ], + [ + 0.1045364, + 38.8430158 + ], + [ + 0.1045364, + 38.8430158 + ], + [ + 0.1045364, + 38.8430158 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "parkings", + "imagery": "osm", + "deletion": 1, + "language": "en", + "deletion:node/9209701507": "disused" + }, + "id": 115817760 + } + }, + { + "id": 115817746, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -0.039389, + 38.7483744 + ], + [ + 0.1148785, + 38.7483744 + ], + [ + 0.1148785, + 38.8473367 + ], + [ + -0.039389, + 38.8473367 + ], + [ + -0.039389, + 38.7483744 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 113, + "imagery": "osm", + "language": "en" + }, + "id": 115817746 + } + }, + { + "id": 115817699, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 0.1022131, + 38.83398 + ], + [ + 0.1050223, + 38.83398 + ], + [ + 0.1050223, + 38.8379883 + ], + [ + 0.1022131, + 38.8379883 + ], + [ + 0.1022131, + 38.83398 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 8, + "imagery": "osm", + "language": "en" + }, + "id": 115817699 + } + }, + { + "id": 115817559, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 0.1099601, + 38.8381479 + ], + [ + 0.1114727, + 38.8381479 + ], + [ + 0.1114727, + 38.8389564 + ], + [ + 0.1099601, + 38.8389564 + ], + [ + 0.1099601, + 38.8381479 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 1, + "imagery": "osm", + "language": "en" + }, + "id": 115817559 + } + }, + { + "id": 115817524, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 0.0989932, + 38.8349032 + ], + [ + 0.1149628, + 38.8349032 + ], + [ + 0.1149628, + 38.8434513 + ], + [ + 0.0989932, + 38.8434513 + ], + [ + 0.0989932, + 38.8349032 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 82, + "imagery": "osm", + "language": "en" + }, + "id": 115817524 + } + }, + { + "id": 115817395, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 0.1024668, + 38.8323037 + ], + [ + 0.1126219, + 38.8323037 + ], + [ + 0.1126219, + 38.8379182 + ], + [ + 0.1024668, + 38.8379182 + ], + [ + 0.1024668, + 38.8323037 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 23, + "imagery": "osm", + "language": "en" + }, + "id": 115817395 + } + }, + { + "id": 115817328, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 0.0991901, + 38.8342747 + ], + [ + 0.106448, + 38.8342747 + ], + [ + 0.106448, + 38.8374645 + ], + [ + 0.0991901, + 38.8374645 + ], + [ + 0.0991901, + 38.8342747 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 40, + "imagery": "osm", + "language": "en" + }, + "id": 115817328 + } + }, + { + "id": 115811487, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2.9465705, + 50.4204413 + ], + [ + 2.9490307, + 50.4204413 + ], + [ + 2.9490307, + 50.4210341 + ], + [ + 2.9465705, + 50.4210341 + ], + [ + 2.9465705, + 50.4204413 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 6, + "imagery": "osm", + "language": "en" + }, + "id": 115811487 + } + }, + { + "id": 115811245, + "type": "Feature", + "geometry": null, + "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:11:21Z", + "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", + "answer": 21, + "imagery": "osm", + "language": "en" + }, + "id": 115811245 + } + }, + { + "id": 115806717, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -82.6710778, + 27.7243474 + ], + [ + -82.6372048, + 27.7243474 + ], + [ + -82.6372048, + 27.7734061 + ], + [ + -82.6710778, + 27.7734061 + ], + [ + -82.6710778, + 27.7243474 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 2, + "imagery": "osm", + "language": "en" + }, + "id": 115806717 + } + }, + { + "id": 115803870, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1.598633, + 50.8061774 + ], + [ + 1.6154353, + 50.8061774 + ], + [ + 1.6154353, + 50.8158451 + ], + [ + 1.598633, + 50.8158451 + ], + [ + 1.598633, + 50.8061774 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 74, + "imagery": "osm", + "language": "en" + }, + "id": 115803870 + } + }, + { + "id": 115802119, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 0.1078074, + 38.8356201 + ], + [ + 0.1078074, + 38.8356201 + ], + [ + 0.1078074, + 38.8356201 + ], + [ + 0.1078074, + 38.8356201 + ], + [ + 0.1078074, + 38.8356201 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "aed", + "answer": 3, + "imagery": "osm", + "language": "ca" + }, + "id": 115802119 + } + }, + { + "id": 115802000, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 0.0860232, + 38.8385174 + ], + [ + 0.086233, + 38.8385174 + ], + [ + 0.086233, + 38.8386581 + ], + [ + 0.0860232, + 38.8386581 + ], + [ + 0.0860232, + 38.8385174 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "answer": 3, + "imagery": "HDM_HOT", + "language": "en" + }, + "id": 115802000 + } + }, + { + "id": 115801007, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.1042972, + 50.9645758 + ], + [ + 3.1087841, + 50.9645758 + ], + [ + 3.1087841, + 50.9673823 + ], + [ + 3.1042972, + 50.9673823 + ], + [ + 3.1042972, + 50.9645758 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "move": 11, + "theme": "grb", + "import": 3, + "imagery": "CartoDB.VoyagerNoLabels", + "language": "nl", + "conflation": 6 + }, + "id": 115801007 + } + }, + { + "id": 115799658, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 79.5176225, + 11.6158114 + ], + [ + 79.5220624, + 11.6158114 + ], + [ + 79.5220624, + 11.6249441 + ], + [ + 79.5176225, + 11.6249441 + ], + [ + 79.5176225, + 11.6158114 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 10, + "imagery": "osm", + "language": "en" + }, + "id": 115799658 + } + }, + { + "id": 115797987, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2.9466117, + 50.4039756 + ], + [ + 2.9549793, + 50.4039756 + ], + [ + 2.9549793, + 50.4141085 + ], + [ + 2.9466117, + 50.4141085 + ], + [ + 2.9466117, + 50.4039756 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 23, + "imagery": "osm", + "language": "en" + }, + "id": 115797987 + } + }, + { + "id": 115797836, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 0.1078074, + 38.8356201 + ], + [ + 0.109397, + 38.8356201 + ], + [ + 0.109397, + 38.8441392 + ], + [ + 0.1078074, + 38.8441392 + ], + [ + 0.1078074, + 38.8356201 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "aed", + "answer": 10, + "imagery": "osm", + "language": "ca" + }, + "id": 115797836 + } + }, + { + "id": 115793506, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2.9654991, + 50.4057959 + ], + [ + 2.9784575, + 50.4057959 + ], + [ + 2.9784575, + 50.4139373 + ], + [ + 2.9654991, + 50.4139373 + ], + [ + 2.9654991, + 50.4057959 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 54, + "imagery": "osm", + "language": "en" + }, + "id": 115793506 + } + }, + { + "id": 115793065, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 79.4832384, + 11.6011457 + ], + [ + 80.2524172, + 11.6011457 + ], + [ + 80.2524172, + 13.0742165 + ], + [ + 79.4832384, + 13.0742165 + ], + [ + 79.4832384, + 11.6011457 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 36, + "imagery": "osm", + "language": "en" + }, + "id": 115793065 + } + }, + { + "id": 115792041, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -0.6984365, + 38.2655077 + ], + [ + -0.6984365, + 38.2655077 + ], + [ + -0.6984365, + 38.2655077 + ], + [ + -0.6984365, + 38.2655077 + ], + [ + -0.6984365, + 38.2655077 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "aed", + "answer": 5, + "create": 1, + "imagery": "osm", + "language": "nl", + "change_over_5000m": 1, + "change_within_25m": 5 + }, + "id": 115792041 + } + }, + { + "id": 115775141, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 6.0913394, + 50.7715473 + ], + [ + 6.0915978, + 50.7715473 + ], + [ + 6.0915978, + 50.7717669 + ], + [ + 6.0913394, + 50.7717669 + ], + [ + 6.0913394, + 50.7715473 + ] + ] + ] + }, + "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, + "metadata": { + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "hackerspaces", + "answer": 1, + "imagery": "osm", + "language": "en", + "change_within_50m": 1 + }, + "id": 115775141 + } + }, + { + "id": 115771036, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.4483626, + 51.0456216 + ], + [ + 3.6434543, + 51.0456216 + ], + [ + 3.6434543, + 51.0845328 + ], + [ + 3.4483626, + 51.0845328 + ], + [ + 3.4483626, + 51.0456216 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "food", + "answer": 3, + "imagery": "osm", + "language": "nl" + }, + "id": 115771036 + } + }, + { + "id": 115770767, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.367126, + 51.0895994 + ], + [ + 3.3691929, + 51.0895994 + ], + [ + 3.3691929, + 51.0909523 + ], + [ + 3.367126, + 51.0909523 + ], + [ + 3.367126, + 51.0895994 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "answer": 2, + "imagery": "osm", + "language": "nl" + }, + "id": 115770767 + } + }, + { + "id": 115768749, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2.625055, + 51.117425 + ], + [ + 2.625055, + 51.117425 + ], + [ + 2.625055, + 51.117425 + ], + [ + 2.625055, + 51.117425 + ], + [ + 2.625055, + 51.117425 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 4, + "imagery": "CartoDB.Voyager", + "language": "nl" + }, + "id": 115768749 + } + }, + { + "id": 115765221, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2.9619555, + 50.404065 + ], + [ + 2.9669046, + 50.404065 + ], + [ + 2.9669046, + 50.4097085 + ], + [ + 2.9619555, + 50.4097085 + ], + [ + 2.9619555, + 50.404065 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 26, + "imagery": "osm", + "language": "en" + }, + "id": 115765221 + } + }, + { + "id": 115763689, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 6.0923922, + 50.7721052 + ], + [ + 6.0923922, + 50.7721052 + ], + [ + 6.0923922, + 50.7721052 + ], + [ + 6.0923922, + 50.7721052 + ], + [ + 6.0923922, + 50.7721052 + ] + ] + ] + }, + "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, + "metadata": { + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "food", + "answer": 1, + "imagery": "osm", + "language": "en", + "change_within_25m": 1 + }, + "id": 115763689 + } + }, + { + "id": 115762756, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 79.4739569, + 11.6007949 + ], + [ + 79.4918345, + 11.6007949 + ], + [ + 79.4918345, + 11.6128005 + ], + [ + 79.4739569, + 11.6128005 + ], + [ + 79.4739569, + 11.6007949 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 21, + "imagery": "osm", + "language": "en" + }, + "id": 115762756 + } + }, + { + "id": 115754753, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 6.0830441, + 50.7748394 + ], + [ + 6.0833359, + 50.7748394 + ], + [ + 6.0833359, + 50.7748451 + ], + [ + 6.0830441, + 50.7748451 + ], + [ + 6.0830441, + 50.7748394 + ] + ] + ] + }, + "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, + "metadata": { + "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" + }, + "id": 115754753 + } + }, + { + "id": 115744562, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 78.6825214, + 10.7717278 + ], + [ + 79.5184977, + 10.7717278 + ], + [ + 79.5184977, + 11.6257522 + ], + [ + 78.6825214, + 11.6257522 + ], + [ + 78.6825214, + 10.7717278 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 21, + "imagery": "osm", + "language": "en" + }, + "id": 115744562 + } + }, + { + "id": 115744161, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2.9861318, + 50.8711722 + ], + [ + 2.9861318, + 50.8711722 + ], + [ + 2.9861318, + 50.8711722 + ], + [ + 2.9861318, + 50.8711722 + ], + [ + 2.9861318, + 50.8711722 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 4, + "imagery": "CartoDB.Voyager", + "language": "nl" + }, + "id": 115744161 + } + }, + { + "id": 115734275, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -99.3150733, + 38.881884 + ], + [ + -99.314016, + 38.881884 + ], + [ + -99.314016, + 38.885459 + ], + [ + -99.3150733, + 38.885459 + ], + [ + -99.3150733, + 38.881884 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 2, + "imagery": "osm", + "language": "en" + }, + "id": 115734275 + } + }, + { + "id": 115729742, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 6.1298787, + 50.7842542 + ], + [ + 6.1298787, + 50.7842542 + ], + [ + 6.1298787, + 50.7842542 + ], + [ + 6.1298787, + 50.7842542 + ], + [ + 6.1298787, + 50.7842542 + ] + ] + ] + }, + "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, + "metadata": { + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "climbing", + "answer": 1, + "imagery": "osm", + "language": "en", + "change_over_5000m": 1 + }, + "id": 115729742 + } + }, + { + "id": 115724617, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -71.9724679, + -34.4614224 + ], + [ + -71.9724679, + -34.4614224 + ], + [ + -71.9724679, + -34.4614224 + ], + [ + -71.9724679, + -34.4614224 + ], + [ + -71.9724679, + -34.4614224 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "osm", + "language": "en", + "add-image": 1 + }, + "id": 115724617 + } + }, + { + "id": 115724224, + "type": "Feature", + "geometry": null, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.12.13", + "comment": "Adding data with #MapComplete for theme #test", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-01-03T18:49: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": "test", + "answer": 1, + "imagery": "osm", + "language": "en" + }, + "id": 115724224 + } + }, + { + "id": 115724223, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -71.9729087, + -34.4616279 + ], + [ + -71.9729087, + -34.4616279 + ], + [ + -71.9729087, + -34.4616279 + ], + [ + -71.9729087, + -34.4616279 + ], + [ + -71.9729087, + -34.4616279 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "trees", + "imagery": "osm", + "language": "en", + "add-image": 1 + }, + "id": 115724223 + } + }, + { + "id": 115724187, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -73.9150194, + 40.7047174 + ], + [ + -73.9147178, + 40.7047174 + ], + [ + -73.9147178, + 40.7048834 + ], + [ + -73.9150194, + 40.7048834 + ], + [ + -73.9150194, + 40.7047174 + ] + ] + ] + }, + "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": 1, + "modify": 4, + "delete": 0, + "area": 5.00656000000723e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "surveillance", + "answer": 4, + "create": 5, + "imagery": "osm", + "language": "en", + "change_within_25m": 6 + }, + "id": 115724187 + } + }, + { + "id": 115723173, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2.2151721, + 41.5439108 + ], + [ + 2.2201663, + 41.5439108 + ], + [ + 2.2201663, + 41.5549571 + ], + [ + 2.2151721, + 41.5549571 + ], + [ + 2.2151721, + 41.5439108 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "aed", + "answer": 5, + "create": 5, + "imagery": "osm", + "language": "en" + }, + "id": 115723173 + } + }, + { + "id": 115718405, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2.9318308, + 50.4173424 + ], + [ + 2.9521733, + 50.4173424 + ], + [ + 2.9521733, + 50.4319027 + ], + [ + 2.9318308, + 50.4319027 + ], + [ + 2.9318308, + 50.4173424 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 166, + "imagery": "osm", + "language": "en" + }, + "id": 115718405 + } + }, + { + "id": 115717988, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 0.0599686, + 38.7210793 + ], + [ + 0.0599686, + 38.7210793 + ], + [ + 0.0599686, + 38.7210793 + ], + [ + 0.0599686, + 38.7210793 + ], + [ + 0.0599686, + 38.7210793 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "campersite", + "answer": 8, + "create": 1, + "imagery": "osm", + "language": "nl", + "add-image": 1, + "change_over_5000m": 1, + "change_within_25m": 9 + }, + "id": 115717988 + } + }, + { + "id": 115717311, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.7197304, + 51.056637 + ], + [ + 3.7210473, + 51.056637 + ], + [ + 3.7210473, + 51.0586179 + ], + [ + 3.7197304, + 51.0586179 + ], + [ + 3.7197304, + 51.056637 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "answer": 13, + "create": 2, + "imagery": "osm", + "language": "en" + }, + "id": 115717311 + } + }, + { + "id": 115715565, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2.2033998, + 41.5331041 + ], + [ + 2.2174028, + 41.5331041 + ], + [ + 2.2174028, + 41.5466753 + ], + [ + 2.2033998, + 41.5466753 + ], + [ + 2.2033998, + 41.5331041 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "aed", + "answer": 5, + "create": 9, + "imagery": "osm", + "language": "en", + "move:node/9388469173": "improve_accuracy" + }, + "id": 115715565 + } + }, + { + "id": 115714829, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 11.8015748, + 48.0167945 + ], + [ + 11.8100238, + 48.0167945 + ], + [ + 11.8100238, + 48.0229212 + ], + [ + 11.8015748, + 48.0229212 + ], + [ + 11.8015748, + 48.0167945 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "create": 6, + "imagery": "CartoDB.VoyagerNoLabels", + "language": "de", + "change_over_5000m": 6 + }, + "id": 115714829 + } + }, + { + "id": 115708435, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -0.0497738, + 38.603769 + ], + [ + -0.0497738, + 38.603769 + ], + [ + -0.0497738, + 38.603769 + ], + [ + -0.0497738, + 38.603769 + ], + [ + -0.0497738, + 38.603769 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "campersite", + "answer": 6, + "create": 1, + "imagery": "osm", + "language": "nl", + "add-image": 1, + "change_over_5000m": 1, + "change_within_25m": 7 + }, + "id": 115708435 + } + }, + { + "id": 115701407, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.1212196, + 50.9520755 + ], + [ + 3.1212196, + 50.9520755 + ], + [ + 3.1212196, + 50.9520755 + ], + [ + 3.1212196, + 50.9520755 + ], + [ + 3.1212196, + 50.9520755 + ] + ] + ] + }, + "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, + "metadata": { + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "hackerspaces", + "answer": 5, + "create": 1, + "imagery": "osm", + "language": "en", + "change_over_5000m": 6 + }, + "id": 115701407 + } + }, + { + "id": 115686930, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.2076481, + 51.2496923 + ], + [ + 3.2089415, + 51.2496923 + ], + [ + 3.2089415, + 51.2506589 + ], + [ + 3.2076481, + 51.2506589 + ], + [ + 3.2076481, + 51.2496923 + ] + ] + ] + }, + "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, + "metadata": { + "host": "pietervdvn.github.io", + "path": "mc/waste-theme/", + "theme": "waste", + "answer": 1, + "imagery": "AGIV", + "language": "nl" + }, + "id": 115686930 + } + }, + { + "id": 115685951, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 6.1320726, + 50.6674774 + ], + [ + 6.1324641, + 50.6674774 + ], + [ + 6.1324641, + 50.6676637 + ], + [ + 6.1320726, + 50.6676637 + ], + [ + 6.1320726, + 50.6674774 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "move": 10, + "theme": "grb", + "imagery": "osm", + "language": "en", + "conflation": 4 + }, + "id": 115685951 + } + }, + { + "id": 115681205, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 14.2640094, + 40.9390231 + ], + [ + 14.2776374, + 40.9390231 + ], + [ + 14.2776374, + 40.9468637 + ], + [ + 14.2640094, + 40.9468637 + ], + [ + 14.2640094, + 40.9390231 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 8, + "imagery": "osm", + "language": "en" + }, + "id": 115681205 + } + }, + { + "id": 115680001, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2.9503493, + 50.385791 + ], + [ + 3.1552182, + 50.385791 + ], + [ + 3.1552182, + 50.7488441 + ], + [ + 2.9503493, + 50.7488441 + ], + [ + 2.9503493, + 50.385791 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 120, + "imagery": "osm", + "language": "en" + }, + "id": 115680001 + } + }, + { + "id": 115676863, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 6.4611304, + 51.1024626 + ], + [ + 6.4611304, + 51.1024626 + ], + [ + 6.4611304, + 51.1024626 + ], + [ + 6.4611304, + 51.1024626 + ], + [ + 6.4611304, + 51.1024626 + ] + ] + ] + }, + "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, + "metadata": { + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "food", + "answer": 4, + "create": 1, + "imagery": "osm", + "language": "en", + "change_over_5000m": 1, + "change_within_25m": 4 + }, + "id": 115676863 + } + }, + { + "id": 115674924, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.7485918, + 51.161045 + ], + [ + 4.7492398, + 51.161045 + ], + [ + 4.7492398, + 51.161444 + ], + [ + 4.7485918, + 51.161444 + ], + [ + 4.7485918, + 51.161045 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "move": 14, + "theme": "grb", + "imagery": "AGIV", + "language": "nl", + "conflation": 8 + }, + "id": 115674924 + } + }, + { + "id": 115673330, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 6.5404004, + 53.0068628 + ], + [ + 6.5404004, + 53.0068628 + ], + [ + 6.5404004, + 53.0068628 + ], + [ + 6.5404004, + 53.0068628 + ], + [ + 6.5404004, + 53.0068628 + ] + ] + ] + }, + "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, + "metadata": { + "host": "pietervdvn.github.io", + "path": "mc/waste-theme/", + "theme": "waste", + "answer": 3, + "create": 1, + "imagery": "osm", + "language": "nl", + "change_over_5000m": 1, + "change_within_50m": 3 + }, + "id": 115673330 + } + }, + { + "id": 115672066, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 14.6332871, + 51.7322831 + ], + [ + 14.6373429, + 51.7322831 + ], + [ + 14.6373429, + 51.734292 + ], + [ + 14.6332871, + 51.734292 + ], + [ + 14.6332871, + 51.7322831 + ] + ] + ] + }, + "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, + "metadata": { + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "id": 115672066 + } + }, + { + "id": 115665991, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 6.093939, + 50.7782419 + ], + [ + 6.093939, + 50.7782419 + ], + [ + 6.093939, + 50.7782419 + ], + [ + 6.093939, + 50.7782419 + ], + [ + 6.093939, + 50.7782419 + ] + ] + ] + }, + "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, + "metadata": { + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "ghostbikes", + "imagery": "CartoDB.Positron", + "language": "en", + "add-image": 2, + "change_within_25m": 2 + }, + "id": 115665991 + } + }, + { + "id": 115658538, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -111.943619, + 33.4591777 + ], + [ + -111.943619, + 33.4591777 + ], + [ + -111.943619, + 33.4591777 + ], + [ + -111.943619, + 33.4591777 + ], + [ + -111.943619, + 33.4591777 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "binoculars", + "answer": 2, + "imagery": "osm", + "language": "en", + "change_within_5000m": 2 + }, + "id": 115658538 + } + }, + { + "id": 115656452, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -111.9454006, + 33.4624688 + ], + [ + -111.9454, + 33.4624688 + ], + [ + -111.9454, + 33.4624688 + ], + [ + -111.9454006, + 33.4624688 + ], + [ + -111.9454006, + 33.4624688 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 2, + "imagery": "CartoDB.Voyager", + "language": "en", + "change_within_5000m": 2 + }, + "id": 115656452 + } + }, + { + "id": 115649888, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 7.5244466, + 44.369468 + ], + [ + 7.5409776, + 44.369468 + ], + [ + 7.5409776, + 44.3774943 + ], + [ + 7.5244466, + 44.3774943 + ], + [ + 7.5244466, + 44.369468 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 26, + "imagery": "osm", + "language": "en" + }, + "id": 115649888 + } + }, + { + "id": 115648184, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 6.0975608, + 50.7829972 + ], + [ + 6.0975608, + 50.7829972 + ], + [ + 6.0975608, + 50.7829972 + ], + [ + 6.0975608, + 50.7829972 + ], + [ + 6.0975608, + 50.7829972 + ] + ] + ] + }, + "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, + "metadata": { + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "entrances", + "answer": 2, + "imagery": "osm", + "language": "en", + "change_within_25m": 2 + }, + "id": 115648184 + } + }, + { + "id": 115648155, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 6.0973638, + 50.7830792 + ], + [ + 6.0974471, + 50.7830792 + ], + [ + 6.0974471, + 50.7830871 + ], + [ + 6.0973638, + 50.7830871 + ], + [ + 6.0973638, + 50.7830792 + ] + ] + ] + }, + "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, + "metadata": { + "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" + }, + "id": 115648155 + } + }, + { + "id": 115642342, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 6.0977268, + 50.7679803 + ], + [ + 6.0977268, + 50.7679803 + ], + [ + 6.0977268, + 50.7679803 + ], + [ + 6.0977268, + 50.7679803 + ], + [ + 6.0977268, + 50.7679803 + ] + ] + ] + }, + "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, + "metadata": { + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "food", + "answer": 4, + "imagery": "osm", + "language": "en", + "change_within_500m": 4 + }, + "id": 115642342 + } + }, + { + "id": 115640953, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 6.572717, + 53.0172674 + ], + [ + 6.572717, + 53.0172674 + ], + [ + 6.572717, + 53.0172674 + ], + [ + 6.572717, + 53.0172674 + ], + [ + 6.572717, + 53.0172674 + ] + ] + ] + }, + "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, + "metadata": { + "host": "pietervdvn.github.io", + "path": "mc/waste-theme/", + "theme": "waste", + "answer": 2, + "create": 1, + "imagery": "Actueel_orthoHR_WMTS", + "language": "nl" + }, + "id": 115640953 + } + }, + { + "id": 115639107, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 6.1769118, + 50.7298742 + ], + [ + 6.1769118, + 50.7298742 + ], + [ + 6.1769118, + 50.7298742 + ], + [ + 6.1769118, + 50.7298742 + ], + [ + 6.1769118, + 50.7298742 + ] + ] + ] + }, + "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, + "metadata": { + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "cyclofix", + "imagery": "CartoDB.Voyager", + "language": "en", + "add-image": 1, + "change_within_25m": 1 + }, + "id": 115639107 + } + }, + { + "id": 115636703, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 6.1263102, + 50.6647302 + ], + [ + 6.1263102, + 50.6647302 + ], + [ + 6.1263102, + 50.6647302 + ], + [ + 6.1263102, + 50.6647302 + ], + [ + 6.1263102, + 50.6647302 + ] + ] + ] + }, + "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, + "metadata": { + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "toilets", + "answer": 7, + "create": 1, + "imagery": "osm", + "language": "en", + "add-image": 1, + "change_over_5000m": 1, + "change_within_25m": 8 + }, + "id": 115636703 + } + }, + { + "id": 115636600, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 6.1264417, + 50.6647132 + ], + [ + 6.1264417, + 50.6647132 + ], + [ + 6.1264417, + 50.6647132 + ], + [ + 6.1264417, + 50.6647132 + ], + [ + 6.1264417, + 50.6647132 + ] + ] + ] + }, + "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, + "metadata": { + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "cyclofix", + "answer": 7, + "create": 1, + "imagery": "osm", + "language": "nl", + "add-image": 1, + "change_over_5000m": 1, + "change_within_25m": 8 + }, + "id": 115636600 + } + }, + { + "id": 115635874, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 6.0905269, + 50.6637424 + ], + [ + 6.0905269, + 50.6637424 + ], + [ + 6.0905269, + 50.6637424 + ], + [ + 6.0905269, + 50.6637424 + ], + [ + 6.0905269, + 50.6637424 + ] + ] + ] + }, + "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, + "metadata": { + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "openwindpowermap", + "create": 1, + "imagery": "SPW_ORTHO_LAST", + "language": "nl", + "add-image": 1, + "change_over_5000m": 1, + "change_within_500m": 1 + }, + "id": 115635874 + } + }, + { + "id": 115634750, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -0.9572831, + 39.8917305 + ], + [ + -0.9570526, + 39.8917305 + ], + [ + -0.9570526, + 39.8917605 + ], + [ + -0.9572831, + 39.8917605 + ], + [ + -0.9572831, + 39.8917305 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "campersite", + "answer": 18, + "create": 2, + "imagery": "PNOA-Spain-TMS", + "language": "nl", + "add-image": 3, + "change_over_5000m": 2, + "change_within_50m": 13, + "change_within_500m": 8 + }, + "id": 115634750 + } + }, + { + "id": 115634157, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.0890042, + 51.0958494 + ], + [ + 4.0890042, + 51.0958494 + ], + [ + 4.0890042, + 51.0958494 + ], + [ + 4.0890042, + 51.0958494 + ], + [ + 4.0890042, + 51.0958494 + ] + ] + ] + }, + "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, + "metadata": { + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "test", + "answer": 1, + "imagery": "AGIVFlandersGRB", + "language": "nl" + }, + "id": 115634157 + } + }, + { + "id": 115633100, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.0890028, + 51.0958367 + ], + [ + 4.0890867, + 51.0958367 + ], + [ + 4.0890867, + 51.0958708 + ], + [ + 4.0890028, + 51.0958708 + ], + [ + 4.0890028, + 51.0958367 + ] + ] + ] + }, + "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, + "metadata": { + "host": "pietervdvn.github.io", + "move": 2, + "path": "mc/develop/", + "theme": "cyclofix", + "answer": 17, + "create": 3, + "imagery": "AGIVFlandersGRB", + "language": "nl", + "add-image": 3, + "move:node/9383390008": "improve_accuracy", + "move:node/9383440696": "improve_accuracy" + }, + "id": 115633100 + } + }, + { + "id": 115632852, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.0888227, + 51.0956304 + ], + [ + 4.0895985, + 51.0956304 + ], + [ + 4.0895985, + 51.0961212 + ], + [ + 4.0888227, + 51.0961212 + ], + [ + 4.0888227, + 51.0956304 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "move": 5, + "theme": "grb", + "import": 4, + "imagery": "osm", + "language": "nl", + "conflation": 2 + }, + "id": 115632852 + } + }, + { + "id": 115626287, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.0266954, + 51.0799031 + ], + [ + 4.0266954, + 51.0799031 + ], + [ + 4.0266954, + 51.0799031 + ], + [ + 4.0266954, + 51.0799031 + ], + [ + 4.0266954, + 51.0799031 + ] + ] + ] + }, + "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, + "metadata": { + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "cycle_infra", + "answer": 1, + "imagery": "CartoDB.Voyager", + "language": "nl", + "change_over_5000m": 1 + }, + "id": 115626287 + } + }, + { + "id": 115626265, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.0317769, + 51.0743574 + ], + [ + 4.0395672, + 51.0743574 + ], + [ + 4.0395672, + 51.077714 + ], + [ + 4.0317769, + 51.077714 + ], + [ + 4.0317769, + 51.0743574 + ] + ] + ] + }, + "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, + "metadata": { + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "cycle_infra", + "answer": 3, + "imagery": "CartoDB.Voyager", + "language": "nl", + "change_over_5000m": 3 + }, + "id": 115626265 + } + }, + { + "id": 115625603, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.0494652, + 51.0700309 + ], + [ + 4.050182, + 51.0700309 + ], + [ + 4.050182, + 51.0709517 + ], + [ + 4.0494652, + 51.0709517 + ], + [ + 4.0494652, + 51.0700309 + ] + ] + ] + }, + "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, + "metadata": { + "host": "mapcomplete.osm.be", + "move": 12, + "theme": "grb", + "import": 3, + "imagery": "osm", + "language": "nl", + "conflation": 6, + "change_over_5000m": 3 + }, + "id": 115625603 + } + } + ] +} \ No newline at end of file diff --git a/Docs/Tools/stats/stats.2022-2.json b/Docs/Tools/stats/stats.2022-2.json new file mode 100644 index 0000000000..e4f90e4f01 --- /dev/null +++ b/Docs/Tools/stats/stats.2022-2.json @@ -0,0 +1,23410 @@ +{ + "features": [ + { + "id": 117457096, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 0.0162016, + 38.8494188 + ], + [ + 0.0163551, + 38.8494188 + ], + [ + 0.0163551, + 38.8496073 + ], + [ + 0.0162016, + 38.8496073 + ], + [ + 0.0162016, + 38.8494188 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "paunofu", + "uid": "13779940", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #policia", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-16T02:04:06Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 2.89347500000227e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "policia", + "answer": 1, + "locale": "es", + "imagery": "osm" + }, + "id": 117457096 + } + }, + { + "id": 117453659, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1.7146612, + 41.2210967 + ], + [ + 1.7313976, + 41.2210967 + ], + [ + 1.7313976, + 41.2219279 + ], + [ + 1.7146612, + 41.2219279 + ], + [ + 1.7146612, + 41.2210967 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "hortacalaf", + "uid": "14495457", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/yopaseopor/mcquests/master/libraries.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-15T22:26:09Z", + "reviewed_features": [], + "create": 0, + "modify": 9, + "delete": 0, + "area": 0.000013911295680006, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "https://raw.githubusercontent.com/yopaseopor/mcquests/master/libraries.json", + "answer": 17, + "locale": "es", + "imagery": "osm" + }, + "id": 117453659 + } + }, + { + "id": 117452493, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -0.125785, + 38.9243329 + ], + [ + -0.1251229, + 38.9243329 + ], + [ + -0.1251229, + 38.9248805 + ], + [ + -0.125785, + 38.9248805 + ], + [ + -0.125785, + 38.9243329 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "yopaseopor", + "uid": "500572", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #policia", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-15T21:41:05Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 3.62565959998223e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "policia", + "answer": 1, + "locale": "es", + "imagery": "osm" + }, + "id": 117452493 + } + }, + { + "id": 117449421, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -1.5898884, + 54.6954026 + ], + [ + -1.5839008, + 54.6954026 + ], + [ + -1.5839008, + 54.7028354 + ], + [ + -1.5898884, + 54.7028354 + ], + [ + -1.5898884, + 54.6954026 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "confusedbuffalo", + "uid": "242345", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-15T19:49:54Z", + "reviewed_features": [], + "create": 0, + "modify": 13, + "delete": 0, + "area": 0.0000445046332799785, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 14, + "locale": "en", + "imagery": "osm" + }, + "id": 117449421 + } + }, + { + "id": 117449082, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.9863369, + 51.1217288 + ], + [ + 5.0341982, + 51.1217288 + ], + [ + 5.0341982, + 51.1608324 + ], + [ + 4.9863369, + 51.1608324 + ], + [ + 4.9863369, + 51.1217288 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-15T19:37:59Z", + "reviewed_features": [], + "create": 34, + "modify": 96, + "delete": 0, + "area": 0.00187154913067983, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "move": 86, + "theme": "grb", + "answer": 4, + "import": 3, + "locale": "nl", + "imagery": "osm", + "conflation": 18 + }, + "id": 117449082 + } + }, + { + "id": 117448329, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.0775303, + 50.7427874 + ], + [ + 5.0951479, + 50.7427874 + ], + [ + 5.0951479, + 50.7670678 + ], + [ + 5.0775303, + 50.7670678 + ], + [ + 5.0775303, + 50.7427874 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 2, + "name": "possible import" + }, + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "JensTi", + "uid": "57212", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-15T19:10:19Z", + "reviewed_features": [], + "create": 2792, + "modify": 9, + "delete": 0, + "area": 0.000427762375040024, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "grb", + "answer": 9, + "import": 339, + "locale": "nl", + "imagery": "AGIVFlandersGRB" + }, + "id": 117448329 + } + }, + { + "id": 117446527, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2.1052174, + 41.5009926 + ], + [ + 2.2098568, + 41.5009926 + ], + [ + 2.2098568, + 41.5375652 + ], + [ + 2.1052174, + 41.5375652 + ], + [ + 2.1052174, + 41.5009926 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Moisès", + "uid": "12884230", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/yopaseopor/mcquests/master/libraries.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-15T18:08:40Z", + "reviewed_features": [], + "create": 0, + "modify": 9, + "delete": 0, + "area": 0.00382693492044069, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "https://raw.githubusercontent.com/yopaseopor/mcquests/master/libraries.json", + "answer": 11, + "locale": "ca", + "imagery": "osm" + }, + "id": 117446527 + } + }, + { + "id": 117441334, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.0500179, + 52.2456512 + ], + [ + 8.0500179, + 52.2456512 + ], + [ + 8.0500179, + 52.2456512 + ], + [ + 8.0500179, + 52.2456512 + ], + [ + 8.0500179, + 52.2456512 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "wanderruderer", + "uid": "352135", + "editor": "MapComplete 0.16.0", + "comment": "Adding data with #MapComplete for theme #cycle_infra", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-15T15:36:20Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "cycle_infra", + "answer": 1, + "locale": "de", + "imagery": "CartoDB.Voyager", + "change_within_50m": 1 + }, + "id": 117441334 + } + }, + { + "id": 117440772, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 6.6372786, + 43.4425033 + ], + [ + 6.6403065, + 43.4425033 + ], + [ + 6.6403065, + 43.444198 + ], + [ + 6.6372786, + 43.444198 + ], + [ + 6.6372786, + 43.4425033 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Lenezir", + "uid": "299539", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-15T15:19:16Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.00000513138213000518, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "answer": 6, + "locale": "fr", + "imagery": "osm", + "change_within_5000m": 6 + }, + "id": 117440772 + } + }, + { + "id": 117439419, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 11.7883325, + 53.0267663 + ], + [ + 11.7883325, + 53.0267663 + ], + [ + 11.7883325, + 53.0267663 + ], + [ + 11.7883325, + 53.0267663 + ], + [ + 11.7883325, + 53.0267663 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "micjoe", + "uid": "15079427", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-15T14:42:15Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "EsriWorldImagery", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "id": 117439419 + } + }, + { + "id": 117438314, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.7182358, + 51.0537752 + ], + [ + 3.7182358, + 51.0537752 + ], + [ + 3.7182358, + 51.0537752 + ], + [ + 3.7182358, + 51.0537752 + ], + [ + 3.7182358, + 51.0537752 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-15T14:15:27Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "shops", + "answer": 1, + "locale": "en", + "imagery": "osm", + "change_within_25m": 1 + }, + "id": 117438314 + } + }, + { + "id": 117436964, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -0.1194025, + 38.6475892 + ], + [ + 0.030232, + 38.6475892 + ], + [ + 0.030232, + 38.844383 + ], + [ + -0.1194025, + 38.844383 + ], + [ + -0.1194025, + 38.6475892 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "paunofu", + "uid": "13779940", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #policia", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-15T13:38:32Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 0.0294471418661003, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "policia", + "answer": 5, + "create": 1, + "locale": "es", + "imagery": "osm" + }, + "id": 117436964 + } + }, + { + "id": 117436594, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2.9940041, + 51.2167584 + ], + [ + 2.9955303, + 51.2167584 + ], + [ + 2.9955303, + 51.2196136 + ], + [ + 2.9940041, + 51.2196136 + ], + [ + 2.9940041, + 51.2167584 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-15T13:28:18Z", + "reviewed_features": [], + "create": 7, + "modify": 17, + "delete": 0, + "area": 0.00000435760623999802, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "move": 16, + "theme": "grb", + "import": 1, + "locale": "nl", + "imagery": "osm", + "conflation": 2, + "change_over_5000m": 1 + }, + "id": 117436594 + } + }, + { + "id": 117436337, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.7251733, + 51.0537177 + ], + [ + 3.7251733, + 51.0537177 + ], + [ + 3.7251733, + 51.0537177 + ], + [ + 3.7251733, + 51.0537177 + ], + [ + 3.7251733, + 51.0537177 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-15T13:21:07Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "toilets", + "create": 1, + "locale": "en", + "imagery": "osm", + "change_over_5000m": 1 + }, + "id": 117436337 + } + }, + { + "id": 117435799, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.7041469, + 51.0508861 + ], + [ + 3.7041469, + 51.0508861 + ], + [ + 3.7041469, + 51.0508861 + ], + [ + 3.7041469, + 51.0508861 + ], + [ + 3.7041469, + 51.0508861 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.16.0", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-15T13:06:12Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "shops", + "answer": 1, + "locale": "en", + "imagery": "osm" + }, + "id": 117435799 + } + }, + { + "id": 117435769, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 0.9065032, + 41.1368577 + ], + [ + 0.9110071, + 41.1368577 + ], + [ + 0.9110071, + 41.1385954 + ], + [ + 0.9065032, + 41.1385954 + ], + [ + 0.9065032, + 41.1368577 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "ecabre4", + "uid": "554769", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #street_lighting", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-15T13:05:22Z", + "reviewed_features": [], + "create": 0, + "modify": 22, + "delete": 0, + "area": 0.0000078264270299983, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "street_lighting", + "answer": 23, + "locale": "en", + "imagery": "osm" + }, + "id": 117435769 + } + }, + { + "id": 117435681, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 0.9083937, + 41.1344916 + ], + [ + 0.9271422, + 41.1344916 + ], + [ + 0.9271422, + 41.1459559 + ], + [ + 0.9083937, + 41.1459559 + ], + [ + 0.9083937, + 41.1344916 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "ecabre4", + "uid": "554769", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #sport_pitches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-15T13:02:31Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.000214938428550002, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "sport_pitches", + "answer": 4, + "locale": "en", + "imagery": "osm" + }, + "id": 117435681 + } + }, + { + "id": 117435353, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 0.9086753, + 41.1375131 + ], + [ + 0.9100117, + 41.1375131 + ], + [ + 0.9100117, + 41.1389005 + ], + [ + 0.9086753, + 41.1389005 + ], + [ + 0.9086753, + 41.1375131 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "ecabre4", + "uid": "554769", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-15T12:53:47Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.00000185412135999829, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 2, + "locale": "en", + "imagery": "osm" + }, + "id": 117435353 + } + }, + { + "id": 117435150, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.7041469, + 51.0508861 + ], + [ + 3.7041469, + 51.0508861 + ], + [ + 3.7041469, + 51.0508861 + ], + [ + 3.7041469, + 51.0508861 + ], + [ + 3.7041469, + 51.0508861 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.16.0", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-15T12:48:52Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "shops", + "answer": 1, + "locale": "en", + "imagery": "osm", + "add-image": 1, + "change_within_25m": 2 + }, + "id": 117435150 + } + }, + { + "id": 117435015, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 0.9077338, + 41.1364911 + ], + [ + 0.9106379, + 41.1364911 + ], + [ + 0.9106379, + 41.137431 + ], + [ + 0.9077338, + 41.137431 + ], + [ + 0.9077338, + 41.1364911 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 42, + "name": "Invalid tag modification" + } + ], + "tags": [], + "features": [ + { + "url": "node-7113286712", + "name": "Font Vella", + "osm_id": 7113286712, + "reasons": [ + 42 + ], + "version": 4, + "primary_tags": { + "amenity": "drinking_water" + } + } + ], + "user": "ecabre4", + "uid": "554769", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-15T12:46:06Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 0.0000027295635899964, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "drinking_water", + "answer": 5, + "locale": "en", + "imagery": "CartoDB.Voyager" + }, + "id": 117435015 + } + }, + { + "id": 117434904, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 0.9090906, + 41.1383502 + ], + [ + 0.9090906, + 41.1383502 + ], + [ + 0.9090906, + 41.1383502 + ], + [ + 0.9090906, + 41.1383502 + ], + [ + 0.9090906, + 41.1383502 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "ecabre4", + "uid": "554769", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #cafes_and_pubs", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-15T12:44:00Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "cafes_and_pubs", + "answer": 3, + "locale": "en", + "imagery": "osm" + }, + "id": 117434904 + } + }, + { + "id": 117434769, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1.0921566, + 41.3943477 + ], + [ + 1.0921566, + 41.3943477 + ], + [ + 1.0921566, + 41.3943477 + ], + [ + 1.0921566, + 41.3943477 + ], + [ + 1.0921566, + 41.3943477 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "ecabre4", + "uid": "554769", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-15T12:40:18Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "aed", + "answer": 4, + "create": 1, + "locale": "en", + "imagery": "osm" + }, + "id": 117434769 + } + }, + { + "id": 117432037, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.3303544, + 51.1219586 + ], + [ + 4.3379812, + 51.1219586 + ], + [ + 4.3379812, + 51.1315694 + ], + [ + 4.3303544, + 51.1315694 + ], + [ + 4.3303544, + 51.1219586 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Rienux", + "uid": "11911273", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-15T11:33:46Z", + "reviewed_features": [], + "create": 0, + "modify": 18, + "delete": 0, + "area": 0.0000732996494399763, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 20, + "locale": "nl", + "imagery": "osm" + }, + "id": 117432037 + } + }, + { + "id": 117429886, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 12.9978749, + 52.0178661 + ], + [ + 12.9978749, + 52.0178661 + ], + [ + 12.9978749, + 52.0178661 + ], + [ + 12.9978749, + 52.0178661 + ], + [ + 12.9978749, + 52.0178661 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Oberfuzzi", + "uid": "14794109", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-15T10:39:12Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "id": 117429886 + } + }, + { + "id": 117428420, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.3865544, + 51.0771235 + ], + [ + 4.406313, + 51.0771235 + ], + [ + 4.406313, + 51.1117802 + ], + [ + 4.3865544, + 51.1117802 + ], + [ + 4.3865544, + 51.0771235 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Rienux", + "uid": "11911273", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-15T10:01:35Z", + "reviewed_features": [], + "create": 0, + "modify": 26, + "delete": 0, + "area": 0.000684767872619997, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 29, + "locale": "nl", + "imagery": "osm" + }, + "id": 117428420 + } + }, + { + "id": 117427613, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.8052089, + 44.1328896 + ], + [ + 4.8142873, + 44.1328896 + ], + [ + 4.8142873, + 44.1370722 + ], + [ + 4.8052089, + 44.1370722 + ], + [ + 4.8052089, + 44.1328896 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "JLZIMMERMANN", + "uid": "188930", + "editor": "MapComplete 0.16.0", + "comment": "Adding data with #MapComplete for theme #entrances", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-15T09:43:51Z", + "reviewed_features": [], + "create": 0, + "modify": 29, + "delete": 0, + "area": 0.00003797131584, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "entrances", + "answer": 22, + "locale": "en", + "imagery": "osm", + "add-image": 10, + "change_within_25m": 32 + }, + "id": 117427613 + } + }, + { + "id": 117427236, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2.7781999, + 39.6470007 + ], + [ + 2.7781999, + 39.6470007 + ], + [ + 2.7781999, + 39.6470007 + ], + [ + 2.7781999, + 39.6470007 + ], + [ + 2.7781999, + 39.6470007 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "benetj", + "uid": "2353661", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/yopaseopor/mcquests/master/libraries.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-15T09:35:09Z", + "reviewed_features": [], + "create": 0, + "modify": 27, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "https://raw.githubusercontent.com/yopaseopor/mcquests/master/libraries.json", + "answer": 32, + "locale": "ca", + "imagery": "osm" + }, + "id": 117427236 + } + }, + { + "id": 117427140, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.8198981, + 44.1290616 + ], + [ + 4.8198981, + 44.1290616 + ], + [ + 4.8198981, + 44.1290616 + ], + [ + 4.8198981, + 44.1290616 + ], + [ + 4.8198981, + 44.1290616 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "JLZIMMERMANN", + "uid": "188930", + "editor": "MapComplete 0.16.0", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-15T09:33:04Z", + "reviewed_features": [], + "create": 1, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "benches", + "answer": 6, + "create": 1, + "locale": "fr", + "imagery": "osm", + "add-image": 1, + "change_over_5000m": 1, + "change_within_25m": 7 + }, + "id": 117427140 + } + }, + { + "id": 117426633, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.0500179, + 52.2456512 + ], + [ + 8.0500179, + 52.2456512 + ], + [ + 8.0500179, + 52.2456512 + ], + [ + 8.0500179, + 52.2456512 + ], + [ + 8.0500179, + 52.2456512 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "wanderruderer", + "uid": "352135", + "editor": "MapComplete 0.16.0", + "comment": "Adding data with #MapComplete for theme #cycle_infra", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-15T09:19:54Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "cycle_infra", + "answer": 3, + "locale": "de", + "imagery": "CartoDB.Voyager" + }, + "id": 117426633 + } + }, + { + "id": 117426593, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2.2093785, + 41.5190465 + ], + [ + 2.2325186, + 41.5190465 + ], + [ + 2.2325186, + 41.5375652 + ], + [ + 2.2093785, + 41.5375652 + ], + [ + 2.2093785, + 41.5190465 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Moisès", + "uid": "12884230", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/yopaseopor/mcquests/master/libraries.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-15T09:18:45Z", + "reviewed_features": [], + "create": 0, + "modify": 20, + "delete": 0, + "area": 0.000428524569870031, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "https://raw.githubusercontent.com/yopaseopor/mcquests/master/libraries.json", + "answer": 30, + "locale": "ca", + "imagery": "osm" + }, + "id": 117426593 + } + }, + { + "id": 117426389, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.5878403, + 52.0747411 + ], + [ + 4.5878403, + 52.0747411 + ], + [ + 4.5878403, + 52.0747411 + ], + [ + 4.5878403, + 52.0747411 + ], + [ + 4.5878403, + 52.0747411 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "annuel", + "uid": "14551226", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #wandelknooppunten", + "comments_count": 1, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-15T09:14:01Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "wandelknooppunten", + "answer": 1, + "locale": "en", + "imagery": "osm" + }, + "id": 117426389 + } + }, + { + "id": 117426122, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 0.9090663, + 41.1373439 + ], + [ + 0.9092853, + 41.1373439 + ], + [ + 0.9092853, + 41.1384455 + ], + [ + 0.9090663, + 41.1384455 + ], + [ + 0.9090663, + 41.1373439 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "ecabre4", + "uid": "554769", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-15T09:07:04Z", + "reviewed_features": [], + "create": 2, + "modify": 4, + "delete": 0, + "area": 2.41250400001165e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "aed", + "answer": 6, + "create": 3, + "locale": "en", + "imagery": "osm" + }, + "id": 117426122 + } + }, + { + "id": 117425181, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.9942485, + 52.0905094 + ], + [ + 14.024241, + 52.0905094 + ], + [ + 14.024241, + 52.0913564 + ], + [ + 13.9942485, + 52.0913564 + ], + [ + 13.9942485, + 52.0905094 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "LFFMH", + "uid": "14449743", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-15T08:43:42Z", + "reviewed_features": [], + "create": 2, + "modify": 0, + "delete": 0, + "area": 0.0000254036475000084, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "id": 117425181 + } + }, + { + "id": 117424772, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 0.9082593, + 41.1380018 + ], + [ + 0.9092812, + 41.1380018 + ], + [ + 0.9092812, + 41.1385353 + ], + [ + 0.9082593, + 41.1385353 + ], + [ + 0.9082593, + 41.1380018 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "ecabre4", + "uid": "554769", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-15T08:33:38Z", + "reviewed_features": [], + "create": 0, + "modify": 8, + "delete": 0, + "area": 5.45183650003151e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "benches", + "answer": 8, + "locale": "en", + "imagery": "osm" + }, + "id": 117424772 + } + }, + { + "id": 117424226, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1.6053041, + 42.9629913 + ], + [ + 1.6087275, + 42.9629913 + ], + [ + 1.6087275, + 42.9674827 + ], + [ + 1.6053041, + 42.9674827 + ], + [ + 1.6053041, + 42.9629913 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "anticamfoix", + "uid": "15042359", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-15T08:19:24Z", + "reviewed_features": [], + "create": 2, + "modify": 5, + "delete": 0, + "area": 0.0000153758587599979, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "answer": 9, + "create": 4, + "locale": "fr", + "imagery": "osm" + }, + "id": 117424226 + } + }, + { + "id": 117422010, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.6825596, + 51.060074 + ], + [ + 13.6825596, + 51.060074 + ], + [ + 13.6825596, + 51.060074 + ], + [ + 13.6825596, + 51.060074 + ], + [ + 13.6825596, + 51.060074 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "brust84", + "uid": "1225756", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-15T07:23:07Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "answer": 1, + "create": 1, + "locale": "en", + "imagery": "GEOSN-DOP-RGB", + "change_over_5000m": 1, + "change_within_25m": 1 + }, + "id": 117422010 + } + }, + { + "id": 117422006, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2.17293, + 41.3926073 + ], + [ + 2.1738067, + 41.3926073 + ], + [ + 2.1738067, + 41.39311 + ], + [ + 2.17293, + 41.39311 + ], + [ + 2.17293, + 41.3926073 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pol Rojas", + "uid": "12632106", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-15T07:23:03Z", + "reviewed_features": [], + "create": 0, + "modify": 11, + "delete": 0, + "area": 4.4071708999864e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 13, + "locale": "en", + "imagery": "CartoDB.Voyager" + }, + "id": 117422006 + } + }, + { + "id": 117421559, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2.7717385, + 39.6509155 + ], + [ + 2.7717385, + 39.6509155 + ], + [ + 2.7717385, + 39.6509155 + ], + [ + 2.7717385, + 39.6509155 + ], + [ + 2.7717385, + 39.6509155 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "benetj", + "uid": "2353661", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-15T07:10:38Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "food", + "answer": 1, + "create": 1, + "locale": "en", + "imagery": "osm" + }, + "id": 117421559 + } + }, + { + "id": 117421407, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.8288869, + 44.0578503 + ], + [ + 4.8394489, + 44.0578503 + ], + [ + 4.8394489, + 44.0625519 + ], + [ + 4.8288869, + 44.0625519 + ], + [ + 4.8288869, + 44.0578503 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joseph83", + "uid": "10732704", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #street_lighting", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-15T07:06:30Z", + "reviewed_features": [], + "create": 0, + "modify": 6, + "delete": 0, + "area": 0.0000496582992000451, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "street_lighting", + "answer": 6, + "locale": "en", + "imagery": "osm" + }, + "id": 117421407 + } + }, + { + "id": 117421351, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2.1197808, + 41.3858675 + ], + [ + 2.1197808, + 41.3858675 + ], + [ + 2.1197808, + 41.3858675 + ], + [ + 2.1197808, + 41.3858675 + ], + [ + 2.1197808, + 41.3858675 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pol Rojas", + "uid": "12632106", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/yopaseopor/mcquests/master/libraries.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-15T07:04:54Z", + "reviewed_features": [], + "create": 0, + "modify": 14, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "https://raw.githubusercontent.com/yopaseopor/mcquests/master/libraries.json", + "answer": 18, + "locale": "ca", + "imagery": "osm" + }, + "id": 117421351 + } + }, + { + "id": 117414634, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 0.0872095, + 38.8366227 + ], + [ + 0.0878291, + 38.8366227 + ], + [ + 0.0878291, + 38.8369194 + ], + [ + 0.0872095, + 38.8369194 + ], + [ + 0.0872095, + 38.8366227 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "paunofu", + "uid": "13779940", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #Comisaria", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-15T00:20:12Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 1.83835319999886e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "Comisaria", + "answer": 1, + "locale": "ca", + "imagery": "osm" + }, + "id": 117414634 + } + }, + { + "id": 117414389, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.999034, + 51.1630267 + ], + [ + 5.0014768, + 51.1630267 + ], + [ + 5.0014768, + 51.1646599 + ], + [ + 4.999034, + 51.1646599 + ], + [ + 4.999034, + 51.1630267 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-15T00:01:13Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000398958095998377, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 2, + "locale": "nl", + "imagery": "osm" + }, + "id": 117414389 + } + }, + { + "id": 117413850, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 0.1163489, + 38.8326918 + ], + [ + 0.1163489, + 38.8326918 + ], + [ + 0.1163489, + 38.8326918 + ], + [ + 0.1163489, + 38.8326918 + ], + [ + 0.1163489, + 38.8326918 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "paunofu", + "uid": "13779940", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-14T23:23:25Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "answer": 3, + "create": 1, + "locale": "en", + "imagery": "PNOA-Spain-TMS" + }, + "id": 117413850 + } + }, + { + "id": 117413266, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -0.0017865, + 38.8223971 + ], + [ + 0.1051384, + 38.8223971 + ], + [ + 0.1051384, + 38.8403364 + ], + [ + -0.0017865, + 38.8403364 + ], + [ + -0.0017865, + 38.8223971 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "paunofu", + "uid": "13779940", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/yopaseopor/mcquests/master/libraries.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-14T22:48:53Z", + "reviewed_features": [], + "create": 0, + "modify": 24, + "delete": 0, + "area": 0.00191815785856944, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "https://raw.githubusercontent.com/yopaseopor/mcquests/master/libraries.json", + "answer": 32, + "locale": "es", + "imagery": "osm" + }, + "id": 117413266 + } + }, + { + "id": 117412442, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -1.871981, + 54.8387131 + ], + [ + -1.822356, + 54.8387131 + ], + [ + -1.822356, + 54.8728039 + ], + [ + -1.871981, + 54.8728039 + ], + [ + -1.871981, + 54.8387131 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "confusedbuffalo", + "uid": "242345", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-14T22:09:13Z", + "reviewed_features": [], + "create": 0, + "modify": 19, + "delete": 0, + "area": 0.00169175595000006, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 22, + "locale": "en", + "imagery": "osm" + }, + "id": 117412442 + } + }, + { + "id": 117410571, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 10.7262724, + 50.9420788 + ], + [ + 10.751086, + 50.9420788 + ], + [ + 10.751086, + 50.9461376 + ], + [ + 10.7262724, + 50.9461376 + ], + [ + 10.7262724, + 50.9420788 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "complete_gth", + "uid": "9837674", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #street_lighting", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-14T20:56:40Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.000100713439680076, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "street_lighting", + "answer": 2, + "locale": "en", + "imagery": "osm" + }, + "id": 117410571 + } + }, + { + "id": 117410300, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -3.5713944, + 37.1343799 + ], + [ + -3.5713944, + 37.1343799 + ], + [ + -3.5713944, + 37.1343799 + ], + [ + -3.5713944, + 37.1343799 + ], + [ + -3.5713944, + 37.1343799 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "alex_lofi", + "uid": "6816316", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/yopaseopor/mcquests/master/libraries.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-14T20:47:39Z", + "reviewed_features": [], + "create": 0, + "modify": 10, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "https://raw.githubusercontent.com/yopaseopor/mcquests/master/libraries.json", + "answer": 15, + "locale": "es", + "imagery": "osm", + "change_within_500m": 15 + }, + "id": 117410300 + } + }, + { + "id": 117410026, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.3450184, + 50.8483176 + ], + [ + 4.3721066, + 50.8483176 + ], + [ + 4.3721066, + 50.8485536 + ], + [ + 4.3450184, + 50.8485536 + ], + [ + 4.3450184, + 50.8483176 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-14T20:38:37Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.00000639281520002758, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 1, + "locale": "en", + "imagery": "CartoDB.Voyager", + "add-image": 2 + }, + "id": 117410026 + } + }, + { + "id": 117409761, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2.2191619, + 41.4438142 + ], + [ + 2.2196387, + 41.4438142 + ], + [ + 2.2196387, + 41.4442596 + ], + [ + 2.2191619, + 41.4442596 + ], + [ + 2.2191619, + 41.4438142 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Jose Luis Infante", + "uid": "126203", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/yopaseopor/mcquests/master/libraries.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-14T20:31:24Z", + "reviewed_features": [], + "create": 0, + "modify": 7, + "delete": 0, + "area": 2.12366720001794e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "https://raw.githubusercontent.com/yopaseopor/mcquests/master/libraries.json", + "answer": 10, + "locale": "ca", + "imagery": "osm", + "change_within_1000m": 10 + }, + "id": 117409761 + } + }, + { + "id": 117409709, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -0.8997309, + 41.6404171 + ], + [ + -0.7970211, + 41.6404171 + ], + [ + -0.7970211, + 41.7622752 + ], + [ + -0.8997309, + 41.7622752 + ], + [ + -0.8997309, + 41.6404171 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "msevilla00", + "uid": "240498", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-14T20:29:40Z", + "reviewed_features": [], + "create": 5, + "modify": 2, + "delete": 0, + "area": 0.0125160210793797, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "toilets", + "answer": 3, + "create": 5, + "locale": "en", + "imagery": "osm" + }, + "id": 117409709 + } + }, + { + "id": 117408885, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1.6053041, + 42.9611964 + ], + [ + 1.6089606, + 42.9611964 + ], + [ + 1.6089606, + 42.9677257 + ], + [ + 1.6053041, + 42.9677257 + ], + [ + 1.6053041, + 42.9611964 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "anticamfoix", + "uid": "15042359", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-14T20:03:54Z", + "reviewed_features": [], + "create": 8, + "modify": 16, + "delete": 0, + "area": 0.0000238743854500156, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "answer": 25, + "create": 15, + "locale": "fr", + "imagery": "osm" + }, + "id": 117408885 + } + }, + { + "id": 117408538, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2.2100316, + 41.4437324 + ], + [ + 2.2106133, + 41.4437324 + ], + [ + 2.2106133, + 41.4441833 + ], + [ + 2.2100316, + 41.4441833 + ], + [ + 2.2100316, + 41.4437324 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "jqngarcia", + "uid": "5126253", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/yopaseopor/mcquests/master/libraries.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-14T19:52:58Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 2.62288529998133e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "https://raw.githubusercontent.com/yopaseopor/mcquests/master/libraries.json", + "answer": 1, + "locale": "ca", + "imagery": "osm", + "change_within_500m": 1 + }, + "id": 117408538 + } + }, + { + "id": 117408411, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -0.7971125, + 41.7622362 + ], + [ + -0.7971125, + 41.7622362 + ], + [ + -0.7971125, + 41.7622362 + ], + [ + -0.7971125, + 41.7622362 + ], + [ + -0.7971125, + 41.7622362 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "msevilla00", + "uid": "240498", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/yopaseopor/mcquests/master/libraries.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-14T19:48:19Z", + "reviewed_features": [], + "create": 0, + "modify": 20, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "https://raw.githubusercontent.com/yopaseopor/mcquests/master/libraries.json", + "answer": 25, + "locale": "es", + "imagery": "osm" + }, + "id": 117408411 + } + }, + { + "id": 117408081, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -0.8985463, + 41.6400661 + ], + [ + -0.8977531, + 41.6400661 + ], + [ + -0.8977531, + 41.6405838 + ], + [ + -0.8985463, + 41.6405838 + ], + [ + -0.8985463, + 41.6400661 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Robot8A", + "uid": "393359", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/yopaseopor/mcquests/master/libraries.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-14T19:37:35Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 4.10639640002543e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "https://raw.githubusercontent.com/yopaseopor/mcquests/master/libraries.json", + "answer": 2, + "locale": "es", + "imagery": "osm" + }, + "id": 117408081 + } + }, + { + "id": 117407110, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1.0998289, + 41.1536636 + ], + [ + 1.1003397, + 41.1536636 + ], + [ + 1.1003397, + 41.1545752 + ], + [ + 1.0998289, + 41.1545752 + ], + [ + 1.0998289, + 41.1536636 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "ecabre4", + "uid": "554769", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/yopaseopor/mcquests/master/libraries.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-14T19:09:14Z", + "reviewed_features": [], + "create": 0, + "modify": 15, + "delete": 0, + "area": 4.65645279997226e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "https://raw.githubusercontent.com/yopaseopor/mcquests/master/libraries.json", + "answer": 25, + "locale": "es", + "imagery": "osm" + }, + "id": 117407110 + } + }, + { + "id": 117406747, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 0.1047871, + 38.8400339 + ], + [ + 0.1051384, + 38.8400339 + ], + [ + 0.1051384, + 38.8403364 + ], + [ + 0.1047871, + 38.8403364 + ], + [ + 0.1047871, + 38.8400339 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "paunofu", + "uid": "13779940", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/yopaseopor/mcquests/master/libraries.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-14T18:59:54Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 1.06268249998789e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "https://raw.githubusercontent.com/yopaseopor/mcquests/master/libraries.json", + "answer": 3, + "locale": "es", + "imagery": "osm", + "change_within_1000m": 3 + }, + "id": 117406747 + } + }, + { + "id": 117406606, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1.8121879, + 41.235172 + ], + [ + 1.8121879, + 41.235172 + ], + [ + 1.8121879, + 41.235172 + ], + [ + 1.8121879, + 41.235172 + ], + [ + 1.8121879, + 41.235172 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "hortacalaf", + "uid": "14495457", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/yopaseopor/mcquests/master/libraries.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-14T18:58:12Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "https://raw.githubusercontent.com/yopaseopor/mcquests/master/libraries.json", + "answer": 5, + "locale": "es", + "imagery": "osm" + }, + "id": 117406606 + } + }, + { + "id": 117404833, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.7000252, + 46.5786112 + ], + [ + 5.7007987, + 46.5786112 + ], + [ + 5.7007987, + 46.5796511 + ], + [ + 5.7000252, + 46.5796511 + ], + [ + 5.7000252, + 46.5786112 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "lmagreault", + "uid": "260065", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-14T18:21:50Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 8.04362650001831e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "benches", + "answer": 2, + "locale": "en", + "imagery": "osm", + "change_within_500m": 2 + }, + "id": 117404833 + } + }, + { + "id": 117399314, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -4.3557355, + 47.7970956 + ], + [ + -4.354866, + 47.7970956 + ], + [ + -4.354866, + 47.7977109 + ], + [ + -4.3557355, + 47.7977109 + ], + [ + -4.3557355, + 47.7970956 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "TedScouGV", + "uid": "75300", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-14T15:51:26Z", + "reviewed_features": [], + "create": 0, + "modify": 7, + "delete": 0, + "area": 5.35003349999433e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "aed", + "answer": 7, + "locale": "en", + "imagery": "osm", + "add-image": 1 + }, + "id": 117399314 + } + }, + { + "id": 117397830, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.9430156, + 51.9957185 + ], + [ + 14.0680361, + 51.9957185 + ], + [ + 14.0680361, + 52.06043 + ], + [ + 13.9430156, + 52.06043 + ], + [ + 13.9430156, + 51.9957185 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "LFFMH", + "uid": "14449743", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-14T15:12:29Z", + "reviewed_features": [], + "create": 27, + "modify": 30, + "delete": 0, + "area": 0.00809026408574927, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "id": 117397830 + } + }, + { + "id": 117397579, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 11.0224934, + 49.5839825 + ], + [ + 11.0299669, + 49.5839825 + ], + [ + 11.0299669, + 49.5927118 + ], + [ + 11.0224934, + 49.5927118 + ], + [ + 11.0224934, + 49.5839825 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "womped", + "uid": "1880469", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #climbing", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-14T15:05:58Z", + "reviewed_features": [], + "create": 0, + "modify": 8, + "delete": 0, + "area": 0.0000652384235499885, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "climbing", + "answer": 10, + "locale": "en", + "imagery": "osm" + }, + "id": 117397579 + } + }, + { + "id": 117396671, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.8090181, + 43.9481107 + ], + [ + 4.8090181, + 43.9481107 + ], + [ + 4.8090181, + 43.9481107 + ], + [ + 4.8090181, + 43.9481107 + ], + [ + 4.8090181, + 43.9481107 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "cabinetcourbi", + "uid": "6231864", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-14T14:43:08Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "food", + "answer": 1, + "locale": "en", + "imagery": "osm" + }, + "id": 117396671 + } + }, + { + "id": 117396402, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.5447577, + 47.0497303 + ], + [ + 8.5447577, + 47.0497303 + ], + [ + 8.5447577, + 47.0497303 + ], + [ + 8.5447577, + 47.0497303 + ], + [ + 8.5447577, + 47.0497303 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "cbeddow", + "uid": "2611295", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #cafes_and_pubs", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-14T14:36:26Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "cafes_and_pubs", + "create": 1, + "locale": "en", + "imagery": "osm", + "change_over_5000m": 1 + }, + "id": 117396402 + } + }, + { + "id": 117395644, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.8092148, + 43.9474749 + ], + [ + 4.8092148, + 43.9474749 + ], + [ + 4.8092148, + 43.9474749 + ], + [ + 4.8092148, + 43.9474749 + ], + [ + 4.8092148, + 43.9474749 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "JLZIMMERMANN", + "uid": "188930", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #facadegardens", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-14T14:19:05Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "facadegardens", + "answer": 3, + "create": 1, + "locale": "fr", + "imagery": "osm" + }, + "id": 117395644 + } + }, + { + "id": 117394914, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.7455652, + 44.0951958 + ], + [ + 4.7465028, + 44.0951958 + ], + [ + 4.7465028, + 44.0961663 + ], + [ + 4.7455652, + 44.0961663 + ], + [ + 4.7455652, + 44.0951958 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joseph83", + "uid": "10732704", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #street_lighting", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-14T14:01:17Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 9.09940800001334e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "street_lighting", + "answer": 2, + "locale": "en", + "imagery": "osm" + }, + "id": 117394914 + } + }, + { + "id": 117393993, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -73.2493381, + -39.8101576 + ], + [ + -73.2493381, + -39.8101576 + ], + [ + -73.2493381, + -39.8101576 + ], + [ + -73.2493381, + -39.8101576 + ], + [ + -73.2493381, + -39.8101576 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-14T13:37:14Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "trees", + "locale": "en", + "imagery": "cyclosm", + "add-image": 1 + }, + "id": 117393993 + } + }, + { + "id": 117393848, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.7303816, + 44.0920472 + ], + [ + 4.9117337, + 44.0920472 + ], + [ + 4.9117337, + 44.1365206 + ], + [ + 4.7303816, + 44.1365206 + ], + [ + 4.7303816, + 44.0920472 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joseph83", + "uid": "10732704", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #street_lighting", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-14T13:32:49Z", + "reviewed_features": [], + "create": 4, + "modify": 18, + "delete": 0, + "area": 0.0080653444841389, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "split": 5, + "theme": "street_lighting", + "answer": 16, + "locale": "en", + "imagery": "osm", + "relation-fix": 1 + }, + "id": 117393848 + } + }, + { + "id": 117393533, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.2296818, + 51.0595316 + ], + [ + 3.7098545, + 51.0595316 + ], + [ + 3.7098545, + 51.2205212 + ], + [ + 3.2296818, + 51.2205212 + ], + [ + 3.2296818, + 51.0595316 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #scales", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-14T13:24:36Z", + "reviewed_features": [], + "create": 2, + "modify": 2, + "delete": 0, + "area": 0.0773028109039203, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "scales", + "answer": 2, + "create": 2, + "locale": "en", + "imagery": "osm", + "add-image": 2 + }, + "id": 117393533 + } + }, + { + "id": 117393391, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.8109643, + 44.1372512 + ], + [ + 4.8109643, + 44.1372512 + ], + [ + 4.8109643, + 44.1372512 + ], + [ + 4.8109643, + 44.1372512 + ], + [ + 4.8109643, + 44.1372512 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joseph83", + "uid": "10732704", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-14T13:19:51Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "food", + "answer": 4, + "locale": "en", + "imagery": "osm" + }, + "id": 117393391 + } + }, + { + "id": 117392902, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.8092463, + 44.1279604 + ], + [ + 4.821585, + 44.1279604 + ], + [ + 4.821585, + 44.1354172 + ], + [ + 4.8092463, + 44.1354172 + ], + [ + 4.8092463, + 44.1279604 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "JLZIMMERMANN", + "uid": "188930", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-14T13:05:44Z", + "reviewed_features": [], + "create": 0, + "modify": 8, + "delete": 0, + "area": 0.0000920072181599986, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "benches", + "answer": 11, + "locale": "fr", + "imagery": "osm", + "add-image": 1, + "change_within_25m": 4, + "change_within_1000m": 2, + "change_within_5000m": 6 + }, + "id": 117392902 + } + }, + { + "id": 117392861, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.3991162, + 51.0999482 + ], + [ + 4.4074635, + 51.0999482 + ], + [ + 4.4074635, + 51.104009 + ], + [ + 4.3991162, + 51.104009 + ], + [ + 4.3991162, + 51.0999482 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Rienux", + "uid": "11911273", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-14T13:04:11Z", + "reviewed_features": [], + "create": 0, + "modify": 17, + "delete": 0, + "area": 0.0000338967158399833, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 18, + "locale": "nl", + "imagery": "osm" + }, + "id": 117392861 + } + }, + { + "id": 117387639, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.8041136, + 44.1362959 + ], + [ + 4.8041136, + 44.1362959 + ], + [ + 4.8041136, + 44.1362959 + ], + [ + 4.8041136, + 44.1362959 + ], + [ + 4.8041136, + 44.1362959 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "cabinetcourbi", + "uid": "6231864", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #entrances", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-14T10:50:04Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "entrances", + "answer": 2, + "locale": "en", + "imagery": "osm" + }, + "id": 117387639 + } + }, + { + "id": 117385529, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -3.6189493, + 37.1803457 + ], + [ + -3.6063303, + 37.1803457 + ], + [ + -3.6063303, + 37.1896378 + ], + [ + -3.6189493, + 37.1896378 + ], + [ + -3.6189493, + 37.1803457 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pipeton", + "uid": "11969052", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-14T09:54:28Z", + "reviewed_features": [], + "create": 0, + "modify": 15, + "delete": 0, + "area": 0.00011725700990004, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 18, + "locale": "en", + "imagery": "osm" + }, + "id": 117385529 + } + }, + { + "id": 117381876, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.2273985, + 50.9308739 + ], + [ + 4.2273985, + 50.9308739 + ], + [ + 4.2273985, + 50.9308739 + ], + [ + 4.2273985, + 50.9308739 + ], + [ + 4.2273985, + 50.9308739 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "jospyck", + "uid": "12128135", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #entrances", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-14T08:20:49Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "entrances", + "answer": 2, + "locale": "en", + "imagery": "osm" + }, + "id": 117381876 + } + }, + { + "id": 117374161, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.0614534, + 51.1419182 + ], + [ + 5.0614534, + 51.1419182 + ], + [ + 5.0614534, + 51.1419182 + ], + [ + 5.0614534, + 51.1419182 + ], + [ + 5.0614534, + 51.1419182 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #nature", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-14T02:09:42Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "nature", + "answer": 1, + "locale": "nl", + "imagery": "osm", + "change_within_50m": 1 + }, + "id": 117374161 + } + }, + { + "id": 117374142, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.0614835, + 51.1418862 + ], + [ + 5.0614835, + 51.1418862 + ], + [ + 5.0614835, + 51.1418862 + ], + [ + 5.0614835, + 51.1418862 + ], + [ + 5.0614835, + 51.1418862 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-14T02:06:25Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "toilets", + "answer": 1, + "locale": "nl", + "imagery": "osm", + "change_within_50m": 1 + }, + "id": 117374142 + } + }, + { + "id": 117374038, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.0518856, + 51.1191934 + ], + [ + 5.1390373, + 51.1191934 + ], + [ + 5.1390373, + 51.1378128 + ], + [ + 5.0518856, + 51.1378128 + ], + [ + 5.0518856, + 51.1191934 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-14T01:55:12Z", + "reviewed_features": [], + "create": 0, + "modify": 13, + "delete": 0, + "area": 0.00162271236297987, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 16, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 4, + "change_within_5000m": 12 + }, + "id": 117374038 + } + }, + { + "id": 117374015, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.0766775, + 51.1302271 + ], + [ + 5.077919, + 51.1302271 + ], + [ + 5.077919, + 51.1305728 + ], + [ + 5.0766775, + 51.1305728 + ], + [ + 5.0766775, + 51.1302271 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-14T01:52:26Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 4.29186550004931e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 1, + "locale": "nl", + "imagery": "osm", + "change_within_5000m": 1 + }, + "id": 117374015 + } + }, + { + "id": 117371343, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 10.7315329, + 50.9445605 + ], + [ + 10.7315329, + 50.9445605 + ], + [ + 10.7315329, + 50.9445605 + ], + [ + 10.7315329, + 50.9445605 + ], + [ + 10.7315329, + 50.9445605 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "complete_gth", + "uid": "9837674", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-13T22:27:05Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 5, + "locale": "de", + "imagery": "CartoDB.Voyager" + }, + "id": 117371343 + } + }, + { + "id": 117370208, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.2356964, + 50.7318568 + ], + [ + 4.2356964, + 50.7318568 + ], + [ + 4.2356964, + 50.7318568 + ], + [ + 4.2356964, + 50.7318568 + ], + [ + 4.2356964, + 50.7318568 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #entrances", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-13T21:32:38Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "entrances", + "answer": 2, + "locale": "en", + "imagery": "osm", + "change_within_5000m": 2 + }, + "id": 117370208 + } + }, + { + "id": 117369597, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 10.6725639, + 50.9294479 + ], + [ + 10.7323971, + 50.9294479 + ], + [ + 10.7323971, + 50.9677114 + ], + [ + 10.6725639, + 50.9677114 + ], + [ + 10.6725639, + 50.9294479 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 87, + "name": "Irrelevant tags on highway" + } + ], + "tags": [], + "features": [ + { + "url": "way-177394410", + "name": "Robert-Koch-Straße", + "osm_id": 177394410, + "reasons": [ + 87 + ], + "version": 3, + "primary_tags": { + "highway": "residential" + } + } + ], + "user": "complete_gth", + "uid": "9837674", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-13T21:14:43Z", + "reviewed_features": [], + "create": 0, + "modify": 152, + "delete": 0, + "area": 0.00228942764819996, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 233, + "locale": "de", + "imagery": "osm" + }, + "id": 117369597 + } + }, + { + "id": 117367225, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -1.5752106, + 54.6886895 + ], + [ + -1.2297228, + 54.6886895 + ], + [ + -1.2297228, + 54.8134828 + ], + [ + -1.5752106, + 54.8134828 + ], + [ + -1.5752106, + 54.6886895 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "confusedbuffalo", + "uid": "242345", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-13T19:49:25Z", + "reviewed_features": [], + "create": 0, + "modify": 63, + "delete": 0, + "area": 0.0431145626717401, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "etymology", + "answer": 78, + "locale": "en", + "imagery": "osm" + }, + "id": 117367225 + } + }, + { + "id": 117365388, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.4794074, + 51.0276134 + ], + [ + 4.4794074, + 51.0276134 + ], + [ + 4.4794074, + 51.0276134 + ], + [ + 4.4794074, + 51.0276134 + ], + [ + 4.4794074, + 51.0276134 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "philippec", + "uid": "76884", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-13T18:42:44Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "toilets", + "locale": "en", + "imagery": "osm", + "add-image": 4 + }, + "id": 117365388 + } + }, + { + "id": 117365307, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.482333, + 51.028025 + ], + [ + 4.482333, + 51.028025 + ], + [ + 4.482333, + 51.028025 + ], + [ + 4.482333, + 51.028025 + ], + [ + 4.482333, + 51.028025 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "philippec", + "uid": "76884", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-13T18:40:07Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "aed", + "answer": 1, + "locale": "nl", + "imagery": "osm", + "add-image": 1 + }, + "id": 117365307 + } + }, + { + "id": 117360267, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -3.6244448, + 37.172594 + ], + [ + -3.5973635, + 37.172594 + ], + [ + -3.5973635, + 37.1957839 + ], + [ + -3.6244448, + 37.1957839 + ], + [ + -3.6244448, + 37.172594 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pipeton", + "uid": "11969052", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-13T16:10:24Z", + "reviewed_features": [], + "create": 0, + "modify": 14, + "delete": 0, + "area": 0.000628012638870147, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 17, + "locale": "en", + "imagery": "osm" + }, + "id": 117360267 + } + }, + { + "id": 117359158, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.1964027, + 51.219974 + ], + [ + 4.4208718, + 51.219974 + ], + [ + 4.4208718, + 51.2248203 + ], + [ + 3.1964027, + 51.2248203 + ], + [ + 3.1964027, + 51.219974 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Hopperpop", + "uid": "3664604", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/Hopperpop/OpenAsianMap/main/OpenAsianMap.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-13T15:44:03Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.00593414459932629, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "https://raw.githubusercontent.com/Hopperpop/OpenAsianMap/main/OpenAsianMap.json", + "answer": 5, + "locale": "en", + "imagery": "osm" + }, + "id": 117359158 + } + }, + { + "id": 117357944, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.8671393, + 51.131753 + ], + [ + 4.8679609, + 51.131753 + ], + [ + 4.8679609, + 51.1323259 + ], + [ + 4.8671393, + 51.1323259 + ], + [ + 4.8671393, + 51.131753 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Frans_Napaters", + "uid": "3574538", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-13T15:13:32Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 4.70694639995571e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "answer": 3, + "locale": "nl", + "imagery": "osm", + "change_within_5000m": 3 + }, + "id": 117357944 + } + }, + { + "id": 117357360, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -1.5924856, + 54.5530219 + ], + [ + -1.2740745, + 54.5530219 + ], + [ + -1.2740745, + 54.8775568 + ], + [ + -1.5924856, + 54.8775568 + ], + [ + -1.5924856, + 54.5530219 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "confusedbuffalo", + "uid": "242345", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-13T14:58:58Z", + "reviewed_features": [], + "create": 0, + "modify": 107, + "delete": 0, + "area": 0.103335514497391, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "etymology", + "answer": 155, + "locale": "en", + "imagery": "osm" + }, + "id": 117357360 + } + }, + { + "id": 117356419, + "type": "Feature", + "geometry": null, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "jospyck", + "uid": "12128135", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-13T14:35:43Z", + "reviewed_features": [], + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 1, + "locale": "nl", + "imagery": "osm", + "change_within_25m": 1 + }, + "id": 117356419 + } + }, + { + "id": 117356414, + "type": "Feature", + "geometry": null, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "jospyck", + "uid": "12128135", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-13T14:35:38Z", + "reviewed_features": [], + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 1, + "locale": "nl", + "imagery": "osm", + "change_within_25m": 1 + }, + "id": 117356414 + } + }, + { + "id": 117356409, + "type": "Feature", + "geometry": null, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "jospyck", + "uid": "12128135", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-13T14:35:28Z", + "reviewed_features": [], + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 2, + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_within_25m": 3 + }, + "id": 117356409 + } + }, + { + "id": 117356403, + "type": "Feature", + "geometry": null, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "jospyck", + "uid": "12128135", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-13T14:35:16Z", + "reviewed_features": [], + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 2, + "locale": "nl", + "imagery": "osm", + "change_within_25m": 2 + }, + "id": 117356403 + } + }, + { + "id": 117356337, + "type": "Feature", + "geometry": null, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "jospyck", + "uid": "12128135", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-13T14:32:59Z", + "reviewed_features": [], + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 1, + "locale": "nl", + "imagery": "osm", + "change_within_25m": 1 + }, + "id": 117356337 + } + }, + { + "id": 117356318, + "type": "Feature", + "geometry": null, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "jospyck", + "uid": "12128135", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-13T14:32:40Z", + "reviewed_features": [], + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 1, + "locale": "nl", + "imagery": "osm", + "change_within_25m": 1 + }, + "id": 117356318 + } + }, + { + "id": 117356304, + "type": "Feature", + "geometry": null, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "jospyck", + "uid": "12128135", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-13T14:32:11Z", + "reviewed_features": [], + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 1, + "locale": "nl", + "imagery": "osm", + "change_within_25m": 1 + }, + "id": 117356304 + } + }, + { + "id": 117356301, + "type": "Feature", + "geometry": null, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "jospyck", + "uid": "12128135", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-13T14:32:02Z", + "reviewed_features": [], + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 2, + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_within_25m": 3 + }, + "id": 117356301 + } + }, + { + "id": 117356151, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.1083015, + 50.9184127 + ], + [ + 4.1083015, + 50.9184127 + ], + [ + 4.1083015, + 50.9184127 + ], + [ + 4.1083015, + 50.9184127 + ], + [ + 4.1083015, + 50.9184127 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "jospyck", + "uid": "12128135", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-13T14:28:14Z", + "reviewed_features": [], + "create": 1, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 5, + "create": 1, + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_over_5000m": 1, + "change_within_25m": 6 + }, + "id": 117356151 + } + }, + { + "id": 117354491, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.4812135, + 50.982616 + ], + [ + 4.5107567, + 50.982616 + ], + [ + 4.5107567, + 51.0292047 + ], + [ + 4.4812135, + 51.0292047 + ], + [ + 4.4812135, + 50.982616 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "philippec", + "uid": "76884", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-13T13:43:24Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 0.00137637928184003, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "toilets", + "answer": 8, + "locale": "nl", + "imagery": "osm", + "change_within_5000m": 1 + }, + "id": 117354491 + } + }, + { + "id": 117354388, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.0059036, + 52.2450926 + ], + [ + 8.0059036, + 52.2450926 + ], + [ + 8.0059036, + 52.2450926 + ], + [ + 8.0059036, + 52.2450926 + ], + [ + 8.0059036, + 52.2450926 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "wanderruderer", + "uid": "352135", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #cycle_infra", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-13T13:40:20Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "cycle_infra", + "answer": 2, + "locale": "de", + "imagery": "CartoDB.Voyager" + }, + "id": 117354388 + } + }, + { + "id": 117354149, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -1.59797, + 54.8547655 + ], + [ + -1.5737377, + 54.8547655 + ], + [ + -1.5737377, + 54.9247252 + ], + [ + -1.59797, + 54.9247252 + ], + [ + -1.59797, + 54.8547655 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "confusedbuffalo", + "uid": "242345", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-13T13:34:59Z", + "reviewed_features": [], + "create": 0, + "modify": 10, + "delete": 0, + "area": 0.00169528443830996, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "etymology", + "answer": 14, + "locale": "en", + "imagery": "osm" + }, + "id": 117354149 + } + }, + { + "id": 117354018, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.0052732, + 52.2448956 + ], + [ + 8.0056911, + 52.2448956 + ], + [ + 8.0056911, + 52.245076 + ], + [ + 8.0052732, + 52.245076 + ], + [ + 8.0052732, + 52.2448956 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + }, + { + "id": 42, + "name": "Invalid tag modification" + } + ], + "tags": [], + "features": [ + { + "url": "way-642622181", + "name": "Kinderspielplatz im Dütetal", + "osm_id": 642622181, + "reasons": [ + 42 + ], + "version": 6, + "primary_tags": {} + } + ], + "user": "wanderruderer", + "uid": "352135", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-13T13:31:17Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 7.53891599991806e-8, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "playgrounds", + "answer": 6, + "locale": "de", + "imagery": "osm", + "soft-delete": 1, + "soft-delete:way/642622181": "duplicate" + }, + "id": 117354018 + } + }, + { + "id": 117353930, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.005439, + 52.2449605 + ], + [ + 8.005439, + 52.2449605 + ], + [ + 8.005439, + 52.2449605 + ], + [ + 8.005439, + 52.2449605 + ], + [ + 8.005439, + 52.2449605 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "wanderruderer", + "uid": "352135", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-13T13:28:32Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "benches", + "answer": 7, + "create": 1, + "locale": "de", + "imagery": "osm" + }, + "id": 117353930 + } + }, + { + "id": 117350688, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1.0566118, + 51.268894 + ], + [ + 1.0566118, + 51.268894 + ], + [ + 1.0566118, + 51.268894 + ], + [ + 1.0566118, + 51.268894 + ], + [ + 1.0566118, + 51.268894 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Gregory Williams", + "uid": "7037", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #uk_addresses", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-13T11:50:29Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "uk_addresses", + "import": 1, + "locale": "en", + "imagery": "osm" + }, + "id": 117350688 + } + }, + { + "id": 117346566, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -1.8658723, + 54.8141396 + ], + [ + -1.500708, + 54.8141396 + ], + [ + -1.500708, + 54.8440043 + ], + [ + -1.8658723, + 54.8440043 + ], + [ + -1.8658723, + 54.8141396 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "confusedbuffalo", + "uid": "242345", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-13T09:43:13Z", + "reviewed_features": [], + "create": 0, + "modify": 15, + "delete": 0, + "area": 0.0109055222702116, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 16, + "locale": "en", + "imagery": "osm" + }, + "id": 117346566 + } + }, + { + "id": 117344110, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.0495579, + 52.2553818 + ], + [ + 8.0495579, + 52.2553818 + ], + [ + 8.0495579, + 52.2553818 + ], + [ + 8.0495579, + 52.2553818 + ], + [ + 8.0495579, + 52.2553818 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "wanderruderer", + "uid": "352135", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #cycle_infra", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-13T07:51:10Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "cycle_infra", + "answer": 2, + "locale": "de", + "imagery": "CartoDB.Voyager" + }, + "id": 117344110 + } + }, + { + "id": 117338550, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1.7146612, + 41.2214721 + ], + [ + 1.7150978, + 41.2214721 + ], + [ + 1.7150978, + 41.2219279 + ], + [ + 1.7146612, + 41.2219279 + ], + [ + 1.7146612, + 41.2214721 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "yopaseopor", + "uid": "500572", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #libraries", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-12T23:11:24Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 1.99002279998791e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "libraries", + "answer": 1, + "locale": "es", + "imagery": "osm" + }, + "id": 117338550 + } + }, + { + "id": 117338381, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -1.8732731, + 54.8352837 + ], + [ + -1.8615141, + 54.8352837 + ], + [ + -1.8615141, + 54.8415554 + ], + [ + -1.8732731, + 54.8415554 + ], + [ + -1.8732731, + 54.8352837 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "confusedbuffalo", + "uid": "242345", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-12T23:04:31Z", + "reviewed_features": [], + "create": 0, + "modify": 16, + "delete": 0, + "area": 0.0000737489202999912, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 16, + "locale": "en", + "imagery": "osm" + }, + "id": 117338381 + } + }, + { + "id": 117338372, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.008373, + 50.8387981 + ], + [ + 4.0091133, + 50.8387981 + ], + [ + 4.0091133, + 50.8390318 + ], + [ + 4.008373, + 50.8390318 + ], + [ + 4.008373, + 50.8387981 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-12T23:03:58Z", + "reviewed_features": [], + "create": 3, + "modify": 8, + "delete": 0, + "area": 1.73008110001977e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 14, + "create": 3, + "locale": "nl", + "imagery": "CartoDB.Voyager", + "add-image": 3, + "change_over_5000m": 20 + }, + "id": 117338372 + } + }, + { + "id": 117338341, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.9727818, + 50.8137419 + ], + [ + 3.9727818, + 50.8137419 + ], + [ + 3.9727818, + 50.8137419 + ], + [ + 3.9727818, + 50.8137419 + ], + [ + 3.9727818, + 50.8137419 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-12T23:02:33Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "answer": 2, + "locale": "nl", + "imagery": "CartoDB.Voyager", + "change_over_5000m": 2 + }, + "id": 117338341 + } + }, + { + "id": 117336229, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.9727818, + 50.8137419 + ], + [ + 3.9727818, + 50.8137419 + ], + [ + 3.9727818, + 50.8137419 + ], + [ + 3.9727818, + 50.8137419 + ], + [ + 3.9727818, + 50.8137419 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-12T21:19:41Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "answer": 4, + "locale": "nl", + "imagery": "AGIVFlandersGRB", + "change_within_100m": 4 + }, + "id": 117336229 + } + }, + { + "id": 117336171, + "type": "Feature", + "geometry": null, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-12T21:16:41Z", + "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", + "answer": 5, + "locale": "nl", + "imagery": "AGIVFlandersGRB", + "add-image": 2, + "change_within_5000m": 7 + }, + "id": 117336171 + } + }, + { + "id": 117336170, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.249092, + 50.7412338 + ], + [ + 4.249092, + 50.7412338 + ], + [ + 4.249092, + 50.7412338 + ], + [ + 4.249092, + 50.7412338 + ], + [ + 4.249092, + 50.7412338 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-12T21:16:41Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "bookcases", + "locale": "nl", + "imagery": "AGIVFlandersGRB", + "add-image": 1, + "change_within_25m": 1, + "change_within_50m": 1, + "move:node/9246056984": "improve_accuracy" + }, + "id": 117336170 + } + }, + { + "id": 117336169, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.9727818, + 50.8137419 + ], + [ + 3.9727818, + 50.8137419 + ], + [ + 3.9727818, + 50.8137419 + ], + [ + 3.9727818, + 50.8137419 + ], + [ + 3.9727818, + 50.8137419 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-12T21:16:41Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "answer": 1, + "create": 1, + "locale": "nl", + "imagery": "AGIVFlandersGRB", + "add-image": 1, + "change_over_5000m": 1, + "change_within_100m": 2 + }, + "id": 117336169 + } + }, + { + "id": 117335842, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.2431303, + 51.2060932 + ], + [ + 3.2431303, + 51.2060932 + ], + [ + 3.2431303, + 51.2060932 + ], + [ + 3.2431303, + 51.2060932 + ], + [ + 3.2431303, + 51.2060932 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #climbing", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-12T21:03:46Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "climbing", + "answer": 2, + "locale": "en", + "imagery": "osm", + "change_within_100m": 2 + }, + "id": 117335842 + } + }, + { + "id": 117335595, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.469936, + 51.4256114 + ], + [ + 5.47569, + 51.4256114 + ], + [ + 5.47569, + 51.4374715 + ], + [ + 5.469936, + 51.4374715 + ], + [ + 5.469936, + 51.4256114 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-12T20:53:30Z", + "reviewed_features": [], + "create": 0, + "modify": 17, + "delete": 0, + "area": 0.0000682430154000047, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 25, + "locale": "nl", + "imagery": "osm" + }, + "id": 117335595 + } + }, + { + "id": 117335414, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.9794904, + 51.2036087 + ], + [ + 4.9822531, + 51.2036087 + ], + [ + 4.9822531, + 51.2043205 + ], + [ + 4.9794904, + 51.2043205 + ], + [ + 4.9794904, + 51.2036087 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-12T20:45:32Z", + "reviewed_features": [], + "create": 0, + "modify": 6, + "delete": 0, + "area": 0.00000196648986001323, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "answer": 7, + "locale": "nl", + "imagery": "osm", + "add-image": 3 + }, + "id": 117335414 + } + }, + { + "id": 117334399, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.3705808, + 50.858798 + ], + [ + 4.3705808, + 50.858798 + ], + [ + 4.3705808, + 50.858798 + ], + [ + 4.3705808, + 50.858798 + ], + [ + 4.3705808, + 50.858798 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #artwork", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-12T20:03:51Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "artwork", + "answer": 1, + "locale": "en", + "imagery": "osm", + "add-image": 2 + }, + "id": 117334399 + } + }, + { + "id": 117331601, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -1.5929975, + 54.7944406 + ], + [ + -1.5901785, + 54.7944406 + ], + [ + -1.5901785, + 54.796181 + ], + [ + -1.5929975, + 54.796181 + ], + [ + -1.5929975, + 54.7944406 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "confusedbuffalo", + "uid": "242345", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-12T18:21:04Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.00000490618759998795, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 2, + "locale": "en", + "imagery": "osm" + }, + "id": 117331601 + } + }, + { + "id": 117331164, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2.6593589, + 51.058661 + ], + [ + 4.4166433, + 51.058661 + ], + [ + 4.4166433, + 51.1985802 + ], + [ + 2.6593589, + 51.1985802 + ], + [ + 2.6593589, + 51.058661 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Rienux", + "uid": "11911273", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-12T18:06:16Z", + "reviewed_features": [], + "create": 0, + "modify": 100, + "delete": 0, + "area": 0.245877827420482, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 126, + "locale": "nl", + "imagery": "osm" + }, + "id": 117331164 + } + }, + { + "id": 117329143, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.2053054, + 50.9045053 + ], + [ + 4.2053054, + 50.9045053 + ], + [ + 4.2053054, + 50.9045053 + ], + [ + 4.2053054, + 50.9045053 + ], + [ + 4.2053054, + 50.9045053 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "jospyck", + "uid": "12128135", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-12T16:58:56Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 4, + "create": 1, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 1, + "change_within_25m": 4 + }, + "id": 117329143 + } + }, + { + "id": 117327859, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.0603586, + 51.1418862 + ], + [ + 5.0614835, + 51.1418862 + ], + [ + 5.0614835, + 51.1432152 + ], + [ + 5.0603586, + 51.1432152 + ], + [ + 5.0603586, + 51.1418862 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-12T16:22:27Z", + "reviewed_features": [], + "create": 1, + "modify": 5, + "delete": 0, + "area": 0.00000149499209999784, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "toerisme_vlaanderen", + "answer": 12, + "create": 1, + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_over_5000m": 1, + "change_within_25m": 7, + "change_within_500m": 7, + "move:node/1708952679": "improve_accuracy" + }, + "id": 117327859 + } + }, + { + "id": 117327088, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2.9755501, + 51.200799 + ], + [ + 2.9755501, + 51.200799 + ], + [ + 2.9755501, + 51.200799 + ], + [ + 2.9755501, + 51.200799 + ], + [ + 2.9755501, + 51.200799 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Hopperpop", + "uid": "3664604", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #fritures", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-12T16:04:19Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "fritures", + "answer": 3, + "create": 1, + "locale": "nl", + "imagery": "AGIV" + }, + "id": 117327088 + } + }, + { + "id": 117325641, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.2716301, + 50.8312905 + ], + [ + 4.421836, + 50.8312905 + ], + [ + 4.421836, + 51.2190863 + ], + [ + 3.2716301, + 51.2190863 + ], + [ + 3.2716301, + 50.8312905 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Rienux", + "uid": "11911273", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-12T15:24:43Z", + "reviewed_features": [], + "create": 0, + "modify": 87, + "delete": 0, + "area": 0.446045017155219, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 118, + "locale": "en", + "imagery": "osm" + }, + "id": 117325641 + } + }, + { + "id": 117325420, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -1.6057565, + 52.287768 + ], + [ + -1.6050693, + 52.287768 + ], + [ + -1.6050693, + 52.2879334 + ], + [ + -1.6057565, + 52.2879334 + ], + [ + -1.6057565, + 52.287768 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "RobJN", + "uid": "411244", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #uk_addresses", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-12T15:19:27Z", + "reviewed_features": [], + "create": 6, + "modify": 3, + "delete": 0, + "area": 1.1366288000014e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "uk_addresses", + "answer": 13, + "import": 6, + "locale": "en", + "imagery": "osm", + "change_over_5000m": 5, + "change_within_25m": 7, + "change_within_50m": 4 + }, + "id": 117325420 + } + }, + { + "id": 117323869, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.389842, + 51.0924857 + ], + [ + 3.389842, + 51.0924857 + ], + [ + 3.389842, + 51.0924857 + ], + [ + 3.389842, + 51.0924857 + ], + [ + 3.389842, + 51.0924857 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #nature", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-12T14:38:09Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "nature", + "locale": "en", + "imagery": "osm", + "add-image": 1 + }, + "id": 117323869 + } + }, + { + "id": 117323851, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.3896566, + 51.0928654 + ], + [ + 3.3896566, + 51.0928654 + ], + [ + 3.3896566, + 51.0928654 + ], + [ + 3.3896566, + 51.0928654 + ], + [ + 3.3896566, + 51.0928654 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-12T14:37:37Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "benches", + "locale": "en", + "imagery": "osm", + "add-image": 1 + }, + "id": 117323851 + } + }, + { + "id": 117321792, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.0478948, + 50.9115886 + ], + [ + 4.1419483, + 50.9115886 + ], + [ + 4.1419483, + 50.9348498 + ], + [ + 4.0478948, + 50.9348498 + ], + [ + 4.0478948, + 50.9115886 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Rienux", + "uid": "11911273", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-12T13:38:15Z", + "reviewed_features": [], + "create": 0, + "modify": 70, + "delete": 0, + "area": 0.00218779727420004, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 95, + "locale": "nl", + "imagery": "osm" + }, + "id": 117321792 + } + }, + { + "id": 117319351, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -1.5714734, + 54.6501082 + ], + [ + -1.3935699, + 54.6501082 + ], + [ + -1.3935699, + 54.8711966 + ], + [ + -1.5714734, + 54.8711966 + ], + [ + -1.5714734, + 54.6501082 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "confusedbuffalo", + "uid": "242345", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-12T12:25:16Z", + "reviewed_features": [], + "create": 0, + "modify": 67, + "delete": 0, + "area": 0.0393324001693999, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 91, + "locale": "en", + "imagery": "osm" + }, + "id": 117319351 + } + }, + { + "id": 117318921, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.4802151, + 51.028069 + ], + [ + 4.4824346, + 51.028069 + ], + [ + 4.4824346, + 51.0334619 + ], + [ + 4.4802151, + 51.0334619 + ], + [ + 4.4802151, + 51.028069 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "philippec", + "uid": "76884", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-12T12:12:05Z", + "reviewed_features": [], + "create": 2, + "modify": 1, + "delete": 0, + "area": 0.0000119695415499967, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "toilets", + "answer": 5, + "create": 2, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 2, + "change_within_5000m": 5 + }, + "id": 117318921 + } + }, + { + "id": 117318583, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.1785784, + 50.8926614 + ], + [ + 4.1885585, + 50.8926614 + ], + [ + 4.1885585, + 50.9111978 + ], + [ + 4.1785784, + 50.9111978 + ], + [ + 4.1785784, + 50.8926614 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "jospyck", + "uid": "12128135", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-12T11:59:40Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 0.000184995125639949, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 7, + "create": 1, + "locale": "nl", + "imagery": "osm" + }, + "id": 117318583 + } + }, + { + "id": 117316426, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.0101024, + 51.1280572 + ], + [ + 5.0101024, + 51.1280572 + ], + [ + 5.0101024, + 51.1280572 + ], + [ + 5.0101024, + 51.1280572 + ], + [ + 5.0101024, + 51.1280572 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-12T10:51:15Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "answer": 2, + "locale": "nl", + "imagery": "osm", + "change_within_50m": 2 + }, + "id": 117316426 + } + }, + { + "id": 117315711, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.73588, + 51.1301988 + ], + [ + 3.7993656, + 51.1301988 + ], + [ + 3.7993656, + 51.1998874 + ], + [ + 3.73588, + 51.1998874 + ], + [ + 3.73588, + 51.1301988 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Rienux", + "uid": "11911273", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-12T10:26:11Z", + "reviewed_features": [], + "create": 0, + "modify": 10, + "delete": 0, + "area": 0.00442422258415994, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 14, + "locale": "nl", + "imagery": "osm" + }, + "id": 117315711 + } + }, + { + "id": 117314758, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.2225528, + 50.9298766 + ], + [ + 4.2230963, + 50.9298766 + ], + [ + 4.2230963, + 50.9302263 + ], + [ + 4.2225528, + 50.9302263 + ], + [ + 4.2225528, + 50.9298766 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "jospyck", + "uid": "12128135", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-12T09:56:01Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 1.90061950000558e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 1, + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_within_25m": 2 + }, + "id": 117314758 + } + }, + { + "id": 117307299, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.4067009, + 49.0058082 + ], + [ + 8.4067009, + 49.0058082 + ], + [ + 8.4067009, + 49.0058082 + ], + [ + 8.4067009, + 49.0058082 + ], + [ + 8.4067009, + 49.0058082 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "k4pl4n", + "uid": "11229531", + "editor": "MapComplete 0.2.3a", + "comment": "Adding data with #MapComplete for theme #vegan", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-12T01:05:22Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "theme": "vegan", + "language": "en", + "theme-creator": "Christian Neumann " + }, + "id": 117307299 + } + }, + { + "id": 117306917, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.3579497, + 50.8677288 + ], + [ + 4.3579497, + 50.8677288 + ], + [ + 4.3579497, + 50.8677288 + ], + [ + 4.3579497, + 50.8677288 + ], + [ + 4.3579497, + 50.8677288 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #climbing", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-12T00:27:57Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "climbing", + "locale": "en", + "imagery": "osm", + "add-image": 1 + }, + "id": 117306917 + } + }, + { + "id": 117306895, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.35786, + 50.8552406 + ], + [ + 4.3845343, + 50.8552406 + ], + [ + 4.3845343, + 50.8679295 + ], + [ + 4.35786, + 50.8679295 + ], + [ + 4.35786, + 50.8552406 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-12T00:25:36Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.000338467525270024, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 1, + "locale": "en", + "imagery": "CartoDB.Voyager", + "add-image": 3 + }, + "id": 117306895 + } + }, + { + "id": 117306735, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.3452659, + 50.8487309 + ], + [ + 4.3577352, + 50.8487309 + ], + [ + 4.3577352, + 50.8678398 + ], + [ + 4.3452659, + 50.8678398 + ], + [ + 4.3452659, + 50.8487309 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-12T00:12:49Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.000238274606769976, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "shops", + "locale": "en", + "imagery": "osm", + "add-image": 2 + }, + "id": 117306735 + } + }, + { + "id": 117305997, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.1295004, + 51.1832266 + ], + [ + 5.3181016, + 51.1832266 + ], + [ + 5.3181016, + 51.2512422 + ], + [ + 5.1295004, + 51.2512422 + ], + [ + 5.1295004, + 51.1832266 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-11T23:21:15Z", + "reviewed_features": [], + "create": 0, + "modify": 139, + "delete": 0, + "area": 0.0128278237787205, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 236, + "locale": "nl", + "imagery": "osm" + }, + "id": 117305997 + } + }, + { + "id": 117305884, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.083904, + 51.0973208 + ], + [ + 5.0893645, + 51.0973208 + ], + [ + 5.0893645, + 51.1005507 + ], + [ + 5.083904, + 51.1005507 + ], + [ + 5.083904, + 51.0973208 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-11T23:13:27Z", + "reviewed_features": [], + "create": 48, + "modify": 22, + "delete": 0, + "area": 0.0000176368689500045, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "move": 21, + "theme": "grb", + "locale": "nl", + "imagery": "osm", + "conflation": 2 + }, + "id": 117305884 + } + }, + { + "id": 117301022, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -70.7677225, + -33.489466 + ], + [ + -70.7674246, + -33.489466 + ], + [ + -70.7674246, + -33.4890496 + ], + [ + -70.7677225, + -33.4890496 + ], + [ + -70.7677225, + -33.489466 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-11T19:55:02Z", + "reviewed_features": [], + "create": 0, + "modify": 9, + "delete": 0, + "area": 1.24045560002469e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "trees", + "locale": "en", + "imagery": "cyclosm", + "add-image": 9, + "change_over_5000m": 8 + }, + "id": 117301022 + } + }, + { + "id": 117297205, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.7024106, + 51.0505662 + ], + [ + 3.7028538, + 51.0505662 + ], + [ + 3.7028538, + 51.0508728 + ], + [ + 3.7024106, + 51.0508728 + ], + [ + 3.7024106, + 51.0505662 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-11T17:49:13Z", + "reviewed_features": [], + "create": 0, + "modify": 17, + "delete": 0, + "area": 1.35885120000903e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "move": 16, + "theme": "grb", + "locale": "nl", + "imagery": "AGIVFlandersGRB", + "conflation": 2 + }, + "id": 117297205 + } + }, + { + "id": 117296852, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.7021297, + 51.050972 + ], + [ + 3.7022343, + 51.050972 + ], + [ + 3.7022343, + 51.0510582 + ], + [ + 3.7021297, + 51.0510582 + ], + [ + 3.7021297, + 51.050972 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-8024991201", + "osm_id": 8024991201, + "reasons": [ + 43 + ], + "version": 6, + "primary_tags": { + "shop": "brass_instruments" + } + } + ], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-11T17:38:10Z", + "reviewed_features": [], + "create": 0, + "modify": 7, + "delete": 0, + "area": 9.01651999984962e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "shops", + "answer": 5, + "locale": "en", + "imagery": "osm", + "add-image": 1, + "move:node/8024991201": "improve_accuracy" + }, + "id": 117296852 + } + }, + { + "id": 117296102, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -0.6137705, + 51.1867728 + ], + [ + -0.6086519, + 51.1867728 + ], + [ + -0.6086519, + 51.1883261 + ], + [ + -0.6137705, + 51.1883261 + ], + [ + -0.6137705, + 51.1867728 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "waylink", + "uid": "12132256", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-11T17:18:21Z", + "reviewed_features": [], + "create": 66, + "modify": 0, + "delete": 0, + "area": 0.00000795072137998792, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "trees", + "create": 66, + "locale": "en", + "imagery": "Surrey-Air_Survey", + "change_over_5000m": 28 + }, + "id": 117296102 + } + }, + { + "id": 117295625, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -0.6151875, + 51.1866476 + ], + [ + -0.6106373, + 51.1866476 + ], + [ + -0.6106373, + 51.1879111 + ], + [ + -0.6151875, + 51.1879111 + ], + [ + -0.6151875, + 51.1866476 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "waylink", + "uid": "12132256", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-11T17:05:04Z", + "reviewed_features": [], + "create": 30, + "modify": 0, + "delete": 0, + "area": 0.00000574917770000133, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "trees", + "create": 30, + "locale": "en", + "imagery": "Surrey-Air_Survey" + }, + "id": 117295625 + } + }, + { + "id": 117295023, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -68.1584275, + -16.5257601 + ], + [ + -68.1477905, + -16.5257601 + ], + [ + -68.1477905, + -16.5232639 + ], + [ + -68.1584275, + -16.5232639 + ], + [ + -68.1584275, + -16.5257601 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 83, + "name": "User has multiple blocks" + } + ], + "tags": [], + "features": [], + "user": "rodolfovargas", + "uid": "1217047", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #nature", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-11T16:49:51Z", + "reviewed_features": [], + "create": 0, + "modify": 12, + "delete": 0, + "area": 0.0000265520794000014, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "nature", + "answer": 14, + "locale": "nl", + "imagery": "osm" + }, + "id": 117295023 + } + }, + { + "id": 117292039, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.7362334, + 51.0546591 + ], + [ + 3.7365281, + 51.0546591 + ], + [ + 3.7365281, + 51.0548567 + ], + [ + 3.7362334, + 51.0548567 + ], + [ + 3.7362334, + 51.0546591 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #buurtnatuur", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-11T15:16:18Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 5.82327199999694e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "buurtnatuur", + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_within_25m": 1 + }, + "id": 117292039 + } + }, + { + "id": 117290881, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.7036753, + 51.0489713 + ], + [ + 3.7036753, + 51.0489713 + ], + [ + 3.7036753, + 51.0489713 + ], + [ + 3.7036753, + 51.0489713 + ], + [ + 3.7036753, + 51.0489713 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.15.7", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-11T14:45:51Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "cyclofix", + "answer": 5, + "locale": "en", + "imagery": "CartoDB.Voyager", + "change_within_50m": 5 + }, + "id": 117290881 + } + }, + { + "id": 117290798, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -0.6127403, + 51.1855992 + ], + [ + -0.612073, + 51.1855992 + ], + [ + -0.612073, + 51.1863184 + ], + [ + -0.6127403, + 51.1863184 + ], + [ + -0.6127403, + 51.1855992 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "waylink", + "uid": "12132256", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-11T14:43:40Z", + "reviewed_features": [], + "create": 6, + "modify": 0, + "delete": 0, + "area": 4.79922159999307e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "trees", + "create": 6, + "locale": "en", + "imagery": "Surrey-Air_Survey" + }, + "id": 117290798 + } + }, + { + "id": 117290651, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.7003531, + 51.0532936 + ], + [ + 3.70154, + 51.0532936 + ], + [ + 3.70154, + 51.0537809 + ], + [ + 3.7003531, + 51.0537809 + ], + [ + 3.7003531, + 51.0532936 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-11T14:39:23Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 5.78376369995346e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 1, + "locale": "en", + "imagery": "osm" + }, + "id": 117290651 + } + }, + { + "id": 117290521, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.0276535, + 51.15828 + ], + [ + 5.0510018, + 51.15828 + ], + [ + 5.0510018, + 51.1654343 + ], + [ + 5.0276535, + 51.1654343 + ], + [ + 5.0276535, + 51.15828 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 4, + "name": "mass modification" + } + ], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-11T14:35:12Z", + "reviewed_features": [], + "create": 80, + "modify": 510, + "delete": 10, + "area": 0.000167040742690075, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "move": 449, + "theme": "grb", + "answer": 2, + "delete": 10, + "import": 8, + "locale": "nl", + "imagery": "AGIV", + "conflation": 128 + }, + "id": 117290521 + } + }, + { + "id": 117290489, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -0.6077781, + 51.1889232 + ], + [ + -0.6077781, + 51.1889232 + ], + [ + -0.6077781, + 51.1889232 + ], + [ + -0.6077781, + 51.1889232 + ], + [ + -0.6077781, + 51.1889232 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-9498240425", + "osm_id": 9498240425, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "tourism": "map" + } + } + ], + "user": "waylink", + "uid": "12132256", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #maps", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-11T14:34:11Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "maps", + "create": 1, + "locale": "en", + "imagery": "osm" + }, + "id": 117290489 + } + }, + { + "id": 117290398, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.7017542, + 51.0585187 + ], + [ + 3.7025845, + 51.0585187 + ], + [ + 3.7025845, + 51.0590693 + ], + [ + 3.7017542, + 51.0590693 + ], + [ + 3.7017542, + 51.0585187 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-11T14:31:21Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 4.57163179997417e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "shops", + "answer": 1, + "locale": "en", + "imagery": "osm" + }, + "id": 117290398 + } + }, + { + "id": 117288194, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.2257699, + 50.955854 + ], + [ + 4.2315455, + 50.955854 + ], + [ + 4.2315455, + 50.9575472 + ], + [ + 4.2257699, + 50.9575472 + ], + [ + 4.2257699, + 50.955854 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-11T13:29:49Z", + "reviewed_features": [], + "create": 940, + "modify": 0, + "delete": 0, + "area": 0.00000977924591998971, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "grb", + "import": 145, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 145 + }, + "id": 117288194 + } + }, + { + "id": 117286674, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.0427031, + 51.1403737 + ], + [ + 5.0573365, + 51.1403737 + ], + [ + 5.0573365, + 51.1540915 + ], + [ + 5.0427031, + 51.1540915 + ], + [ + 5.0427031, + 51.1403737 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-11T12:41:44Z", + "reviewed_features": [], + "create": 61, + "modify": 65, + "delete": 3, + "area": 0.000200738054520031, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "move": 56, + "theme": "grb", + "answer": 1, + "delete": 3, + "import": 5, + "locale": "nl", + "imagery": "osm", + "conflation": 16 + }, + "id": 117286674 + } + }, + { + "id": 117285094, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.2337186, + 50.9497145 + ], + [ + 4.2353624, + 50.9497145 + ], + [ + 4.2353624, + 50.9516846 + ], + [ + 4.2337186, + 50.9516846 + ], + [ + 4.2337186, + 50.9497145 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.15.7", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-11T11:57:29Z", + "reviewed_features": [], + "create": 356, + "modify": 0, + "delete": 0, + "area": 0.00000323845038000038, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "grb", + "import": 45, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 45 + }, + "id": 117285094 + } + }, + { + "id": 117283702, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.2341676, + 51.0645934 + ], + [ + 4.2878118, + 51.0645934 + ], + [ + 4.2878118, + 51.0999262 + ], + [ + 4.2341676, + 51.0999262 + ], + [ + 4.2341676, + 51.0645934 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Rienux", + "uid": "11911273", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-11T11:22:06Z", + "reviewed_features": [], + "create": 0, + "modify": 39, + "delete": 0, + "area": 0.00189539978975995, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 72, + "locale": "nl", + "imagery": "osm" + }, + "id": 117283702 + } + }, + { + "id": 117273386, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -122.0543159, + 36.9786617 + ], + [ + -122.054105, + 36.9786617 + ], + [ + -122.054105, + 36.9983898 + ], + [ + -122.0543159, + 36.9983898 + ], + [ + -122.0543159, + 36.9786617 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joeybab3", + "uid": "8783843", + "editor": "MapComplete 0.15.8", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-11T06:32:26Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.00000416065628997944, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "answer": 4, + "locale": "en", + "imagery": "osm", + "add-image": 1 + }, + "id": 117273386 + } + }, + { + "id": 117269761, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.2297767, + 51.2019943 + ], + [ + 3.2309529, + 51.2019943 + ], + [ + 3.2309529, + 51.202217 + ], + [ + 3.2297767, + 51.202217 + ], + [ + 3.2297767, + 51.2019943 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.15.7", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-11T03:32:25Z", + "reviewed_features": [], + "create": 4, + "modify": 5, + "delete": 0, + "area": 2.61939739993927e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "pietervdvn.github.io", + "move": 4, + "path": "mc/develop/", + "theme": "grb", + "import": 1, + "locale": "nl", + "imagery": "osm", + "conflation": 2 + }, + "id": 117269761 + } + }, + { + "id": 117268208, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.2324498, + 50.9566027 + ], + [ + 4.2336453, + 50.9566027 + ], + [ + 4.2336453, + 50.9572926 + ], + [ + 4.2324498, + 50.9572926 + ], + [ + 4.2324498, + 50.9566027 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.15.7", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-11T01:50:29Z", + "reviewed_features": [], + "create": 99, + "modify": 0, + "delete": 0, + "area": 8.24775450005381e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "127.0.0.1:1234", + "theme": "grb", + "import": 16, + "locale": "nl", + "imagery": "osm" + }, + "id": 117268208 + } + }, + { + "id": 117265715, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.2203987, + 50.9536033 + ], + [ + 4.2299999, + 50.9536033 + ], + [ + 4.2299999, + 51.2158748 + ], + [ + 3.2203987, + 51.2158748 + ], + [ + 3.2203987, + 50.9536033 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 2, + "name": "possible import" + } + ], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.15.6", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 3, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-10T23:14:04Z", + "reviewed_features": [], + "create": 1363, + "modify": 11, + "delete": 0, + "area": 0.264789621125804, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "pietervdvn.github.io", + "move": 10, + "path": "mc/develop/", + "theme": "grb", + "import": 204, + "locale": "nl", + "imagery": "osm", + "conflation": 2 + }, + "id": 117265715 + } + }, + { + "id": 117265547, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.9151924, + 51.0875473 + ], + [ + 4.919482, + 51.0875473 + ], + [ + 4.919482, + 51.0908932 + ], + [ + 4.9151924, + 51.0908932 + ], + [ + 4.9151924, + 51.0875473 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.15.6", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-10T23:05:38Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.0000143525726399998, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 6, + "locale": "nl", + "imagery": "osm", + "change_within_5000m": 6 + }, + "id": 117265547 + } + }, + { + "id": 117265193, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.7096154, + 51.0349112 + ], + [ + 3.7096154, + 51.0349112 + ], + [ + 3.7096154, + 51.0349112 + ], + [ + 3.7096154, + 51.0349112 + ], + [ + 3.7096154, + 51.0349112 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.15.5", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-10T22:46:14Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 3, + "locale": "nl", + "imagery": "osm", + "change_within_5000m": 3 + }, + "id": 117265193 + } + }, + { + "id": 117261964, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -2.0072882, + 54.5213479 + ], + [ + -1.6452741, + 54.5213479 + ], + [ + -1.6452741, + 54.8724807 + ], + [ + -2.0072882, + 54.8724807 + ], + [ + -2.0072882, + 54.5213479 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "confusedbuffalo", + "uid": "242345", + "editor": "MapComplete 0.15.6", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-10T20:55:04Z", + "reviewed_features": [], + "create": 0, + "modify": 68, + "delete": 0, + "area": 0.127115024572478, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 103, + "locale": "en", + "imagery": "osm" + }, + "id": 117261964 + } + }, + { + "id": 117260011, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.9979324, + 51.1655666 + ], + [ + 4.9979324, + 51.1655666 + ], + [ + 4.9979324, + 51.1655666 + ], + [ + 4.9979324, + 51.1655666 + ], + [ + 4.9979324, + 51.1655666 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.15.6", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-10T19:56:14Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "create": 1, + "locale": "en", + "imagery": "AGIV", + "add-image": 1 + }, + "id": 117260011 + } + }, + { + "id": 117259394, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.942541, + 51.0934708 + ], + [ + 4.942541, + 51.0934708 + ], + [ + 4.942541, + 51.0934708 + ], + [ + 4.942541, + 51.0934708 + ], + [ + 4.942541, + 51.0934708 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.15.6", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-10T19:35:48Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "shops", + "locale": "en", + "imagery": "osm", + "add-image": 2 + }, + "id": 117259394 + } + }, + { + "id": 117259168, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.5588466, + 50.7861103 + ], + [ + 5.5588466, + 50.7861103 + ], + [ + 5.5588466, + 50.7861103 + ], + [ + 5.5588466, + 50.7861103 + ], + [ + 5.5588466, + 50.7861103 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.15.6", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-10T19:27:32Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "food", + "locale": "en", + "imagery": "osm", + "add-image": 1 + }, + "id": 117259168 + } + }, + { + "id": 117259010, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.9974884, + 50.8080349 + ], + [ + 5.6063929, + 50.8080349 + ], + [ + 5.6063929, + 51.1663155 + ], + [ + 4.9974884, + 51.1663155 + ], + [ + 4.9974884, + 50.8080349 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.15.6", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-10T19:20:49Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.2181586696027, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "locale": "en", + "imagery": "osm", + "add-image": 3 + }, + "id": 117259010 + } + }, + { + "id": 117258567, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.374147, + 50.8114932 + ], + [ + 5.5934371, + 50.8114932 + ], + [ + 5.5934371, + 50.8678918 + ], + [ + 4.374147, + 50.8678918 + ], + [ + 4.374147, + 50.8114932 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.15.6", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-10T19:04:11Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0.0687662546338617, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 5, + "create": 1, + "locale": "en", + "imagery": "CartoDB.Voyager", + "add-image": 2 + }, + "id": 117258567 + } + }, + { + "id": 117257353, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -3.6228028, + 37.1507631 + ], + [ + -3.5872273, + 37.1507631 + ], + [ + -3.5872273, + 37.204901 + ], + [ + -3.6228028, + 37.204901 + ], + [ + -3.6228028, + 37.1507631 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pipeton", + "uid": "11969052", + "editor": "MapComplete 0.15.6", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-10T18:26:12Z", + "reviewed_features": [], + "create": 0, + "modify": 43, + "delete": 0, + "area": 0.00192598286145003, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 58, + "locale": "en", + "imagery": "osm" + }, + "id": 117257353 + } + }, + { + "id": 117257071, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.7004163, + 51.0535894 + ], + [ + 3.7004163, + 51.0535894 + ], + [ + 3.7004163, + 51.0535894 + ], + [ + 3.7004163, + 51.0535894 + ], + [ + 3.7004163, + 51.0535894 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.15.6", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-10T18:15:44Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "shops", + "answer": 1, + "locale": "en", + "imagery": "osm", + "change_within_25m": 1 + }, + "id": 117257071 + } + }, + { + "id": 117256720, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.3219496, + 50.8316173 + ], + [ + 4.3578025, + 50.8316173 + ], + [ + 4.3578025, + 50.8677208 + ], + [ + 4.3219496, + 50.8677208 + ], + [ + 4.3219496, + 50.8316173 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.15.6", + "comment": "Adding data with #MapComplete for theme #climbing", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-10T18:03:04Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.00129441517515011, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "climbing", + "answer": 4, + "locale": "en", + "imagery": "osm" + }, + "id": 117256720 + } + }, + { + "id": 117256602, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.4495834, + 50.7865585 + ], + [ + 5.4503183, + 50.7865585 + ], + [ + 5.4503183, + 50.7869583 + ], + [ + 5.4495834, + 50.7869583 + ], + [ + 5.4495834, + 50.7865585 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.15.6", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-10T17:59:42Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 2.93813020002945e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "answer": 1, + "locale": "nl", + "imagery": "osm", + "add-image": 1 + }, + "id": 117256602 + } + }, + { + "id": 117256167, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.4338323, + 50.8163334 + ], + [ + 4.4338323, + 50.8163334 + ], + [ + 4.4338323, + 50.8163334 + ], + [ + 4.4338323, + 50.8163334 + ], + [ + 4.4338323, + 50.8163334 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "StefDeGreef", + "uid": "1860737", + "editor": "MapComplete 0.15.6", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-10T17:46:55Z", + "reviewed_features": [], + "create": 1, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 5, + "create": 1, + "locale": "fr", + "imagery": "CartoDB.Voyager", + "add-image": 2 + }, + "id": 117256167 + } + }, + { + "id": 117254536, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.228803, + 51.2007513 + ], + [ + 3.2304441, + 51.2007513 + ], + [ + 3.2304441, + 51.2017392 + ], + [ + 3.228803, + 51.2017392 + ], + [ + 3.228803, + 51.2007513 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.15.6", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-10T16:54:55Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 0.0000016212426899974, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 7, + "locale": "nl", + "imagery": "osm" + }, + "id": 117254536 + } + }, + { + "id": 117252707, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1.6593862, + 42.9134642 + ], + [ + 1.6599253, + 42.9134642 + ], + [ + 1.6599253, + 42.9137962 + ], + [ + 1.6593862, + 42.9137962 + ], + [ + 1.6593862, + 42.9134642 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Albin Gasparetto", + "uid": "1227542", + "editor": "MapComplete 0.15.6", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-10T16:13:19Z", + "reviewed_features": [], + "create": 2, + "modify": 0, + "delete": 0, + "area": 1.78981200000161e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "answer": 3, + "create": 2, + "locale": "fr", + "imagery": "osm" + }, + "id": 117252707 + } + }, + { + "id": 117251573, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1.6487646, + 42.9137829 + ], + [ + 1.6682535, + 42.9137829 + ], + [ + 1.6682535, + 42.9190556 + ], + [ + 1.6487646, + 42.9190556 + ], + [ + 1.6487646, + 42.9137829 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "anticamfoix", + "uid": "15042359", + "editor": "MapComplete 0.15.6", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-10T15:44:04Z", + "reviewed_features": [], + "create": 3, + "modify": 0, + "delete": 0, + "area": 0.000102759123029981, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "answer": 8, + "create": 3, + "locale": "fr", + "imagery": "osm" + }, + "id": 117251573 + } + }, + { + "id": 117250931, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.9982444, + 51.1569198 + ], + [ + 5.0029191, + 51.1569198 + ], + [ + 5.0029191, + 51.1608258 + ], + [ + 4.9982444, + 51.1608258 + ], + [ + 4.9982444, + 51.1569198 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.15.6", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-10T15:25:20Z", + "reviewed_features": [], + "create": 0, + "modify": 6, + "delete": 0, + "area": 0.0000182593782000022, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 13, + "locale": "nl", + "imagery": "osm" + }, + "id": 117250931 + } + }, + { + "id": 117248276, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.2258724, + 50.9540131 + ], + [ + 4.2270517, + 50.9540131 + ], + [ + 4.2270517, + 50.9551404 + ], + [ + 4.2258724, + 50.9551404 + ], + [ + 4.2258724, + 50.9540131 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.15.6", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-10T14:18:04Z", + "reviewed_features": [], + "create": 175, + "modify": 0, + "delete": 0, + "area": 0.00000132942488999982, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "127.0.0.1:1234", + "theme": "grb", + "import": 22, + "locale": "nl", + "imagery": "osm" + }, + "id": 117248276 + } + }, + { + "id": 117247272, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.7445464, + 51.041222 + ], + [ + 3.7445464, + 51.041222 + ], + [ + 3.7445464, + 51.041222 + ], + [ + 3.7445464, + 51.041222 + ], + [ + 3.7445464, + 51.041222 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.15.6", + "comment": "Adding data with #MapComplete for theme #climbing", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-10T13:52:36Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "climbing", + "answer": 1, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 1 + }, + "id": 117247272 + } + }, + { + "id": 117245437, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.2271065, + 50.9544801 + ], + [ + 4.2272033, + 50.9544801 + ], + [ + 4.2272033, + 50.9546127 + ], + [ + 4.2271065, + 50.9546127 + ], + [ + 4.2271065, + 50.9544801 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.15.6", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-10T13:06:48Z", + "reviewed_features": [], + "create": 11, + "modify": 0, + "delete": 0, + "area": 1.28356800001321e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "127.0.0.1:1234", + "theme": "grb", + "import": 2, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 2 + }, + "id": 117245437 + } + }, + { + "id": 117244900, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.4231233, + 51.3030606 + ], + [ + 9.4517505, + 51.3030606 + ], + [ + 9.4517505, + 51.3139779 + ], + [ + 9.4231233, + 51.3139779 + ], + [ + 9.4231233, + 51.3030606 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Lattenzaun", + "uid": "2603279", + "editor": "MapComplete 0.15.6", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-10T12:53:45Z", + "reviewed_features": [], + "create": 0, + "modify": 26, + "delete": 0, + "area": 0.000312531730559862, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 32, + "locale": "de", + "imagery": "osm" + }, + "id": 117244900 + } + }, + { + "id": 117238352, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 7.4287755, + 46.9516792 + ], + [ + 7.4300709, + 46.9516792 + ], + [ + 7.4300709, + 46.9527825 + ], + [ + 7.4287755, + 46.9527825 + ], + [ + 7.4287755, + 46.9516792 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "habi", + "uid": "15671", + "editor": "MapComplete 0.15.6", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-10T10:12:34Z", + "reviewed_features": [], + "create": 0, + "modify": 14, + "delete": 0, + "area": 0.00000142921481999509, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "trees", + "answer": 18, + "locale": "en", + "imagery": "osm", + "change_within_25m": 16, + "change_within_50m": 2 + }, + "id": 117238352 + } + }, + { + "id": 117237763, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.43106, + 51.3029186 + ], + [ + 9.4498972, + 51.3029186 + ], + [ + 9.4498972, + 51.3107455 + ], + [ + 9.43106, + 51.3107455 + ], + [ + 9.43106, + 51.3029186 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Lattenzaun", + "uid": "2603279", + "editor": "MapComplete 0.15.6", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-10T09:57:48Z", + "reviewed_features": [], + "create": 0, + "modify": 28, + "delete": 0, + "area": 0.000147436880680092, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 38, + "locale": "de", + "imagery": "osm" + }, + "id": 117237763 + } + }, + { + "id": 117236734, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 8.2858713, + 50.8866216 + ], + [ + 8.2858713, + 50.8866216 + ], + [ + 8.2858713, + 50.8866216 + ], + [ + 8.2858713, + 50.8866216 + ], + [ + 8.2858713, + 50.8866216 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Sparkofska", + "uid": "15028493", + "editor": "MapComplete 0.15.6", + "comment": "Adding data with #MapComplete for theme #drinking_water", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-10T09:34:40Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "drinking_water", + "answer": 1, + "locale": "en", + "imagery": "CartoDB.Voyager" + }, + "id": 117236734 + } + }, + { + "id": 117228304, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.8474009, + 51.0602351 + ], + [ + 4.9973272, + 51.0602351 + ], + [ + 4.9973272, + 51.1583943 + ], + [ + 4.8474009, + 51.1583943 + ], + [ + 4.8474009, + 51.0602351 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.15.6", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-10T05:50:15Z", + "reviewed_features": [], + "create": 0, + "modify": 109, + "delete": 0, + "area": 0.0147166456669596, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 193, + "locale": "nl", + "imagery": "osm" + }, + "id": 117228304 + } + }, + { + "id": 117226569, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -71.3379922, + -29.9535533 + ], + [ + -71.3379922, + -29.9535533 + ], + [ + -71.3379922, + -29.9535533 + ], + [ + -71.3379922, + -29.9535533 + ], + [ + -71.3379922, + -29.9535533 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.15.6", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-10T04:25:15Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "trees", + "locale": "en", + "imagery": "cyclosm", + "add-image": 1 + }, + "id": 117226569 + } + }, + { + "id": 117222929, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.5541946, + 52.0577699 + ], + [ + 13.5541946, + 52.0577699 + ], + [ + 13.5541946, + 52.0577699 + ], + [ + 13.5541946, + 52.0577699 + ], + [ + 13.5541946, + 52.0577699 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Marcel1109", + "uid": "14940118", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-09T23:32:39Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "id": 117222929 + } + }, + { + "id": 117222795, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1.6095722, + 42.960264 + ], + [ + 1.6095722, + 42.960264 + ], + [ + 1.6095722, + 42.960264 + ], + [ + 1.6095722, + 42.960264 + ], + [ + 1.6095722, + 42.960264 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "rejbzh", + "uid": "15051154", + "editor": "MapComplete 0.15.6", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-09T23:24:21Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "answer": 1, + "locale": "fr", + "imagery": "fr.ign.bdortho" + }, + "id": 117222795 + } + }, + { + "id": 117222384, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.9155991, + 51.0901667 + ], + [ + 4.9446527, + 51.0901667 + ], + [ + 4.9446527, + 51.0971925 + ], + [ + 4.9155991, + 51.0971925 + ], + [ + 4.9155991, + 51.0901667 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.15.6", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-09T23:03:38Z", + "reviewed_features": [], + "create": 0, + "modify": 21, + "delete": 0, + "area": 0.000204124782880029, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 27, + "locale": "nl", + "imagery": "osm", + "change_within_5000m": 27 + }, + "id": 117222384 + } + }, + { + "id": 117222003, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1.6478044, + 42.9187911 + ], + [ + 1.6485795, + 42.9187911 + ], + [ + 1.6485795, + 42.9198384 + ], + [ + 1.6478044, + 42.9198384 + ], + [ + 1.6478044, + 42.9187911 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "rejbzh", + "uid": "15051154", + "editor": "MapComplete 0.15.6", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-09T22:48:48Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 1, + "area": 8.11762230002591e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 1, + "create": 1, + "locale": "fr", + "imagery": "fr.ign.bdortho", + "deletion": 1, + "deletion:node/9493709466": "duplicate" + }, + "id": 117222003 + } + }, + { + "id": 117221882, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.2299395, + 50.9585116 + ], + [ + 4.2331176, + 50.9585116 + ], + [ + 4.2331176, + 50.9598897 + ], + [ + 4.2299395, + 50.9598897 + ], + [ + 4.2299395, + 50.9585116 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.15.6", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-09T22:43:28Z", + "reviewed_features": [], + "create": 533, + "modify": 13, + "delete": 0, + "area": 0.00000437973960998855, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "move": 10, + "theme": "grb", + "answer": 1, + "import": 70, + "locale": "nl", + "imagery": "AGIVFlandersGRB", + "conflation": 4 + }, + "id": 117221882 + } + }, + { + "id": 117221804, + "type": "Feature", + "geometry": null, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.15.6", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-09T22:40:23Z", + "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, + "locale": "nl", + "imagery": "osm" + }, + "id": 117221804 + } + }, + { + "id": 117221776, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.2313848, + 50.9592679 + ], + [ + 4.2320341, + 50.9592679 + ], + [ + 4.2320341, + 50.9594673 + ], + [ + 4.2313848, + 50.9594673 + ], + [ + 4.2313848, + 50.9592679 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.15.6", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-09T22:39:09Z", + "reviewed_features": [], + "create": 25, + "modify": 0, + "delete": 0, + "area": 1.29470419999773e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "grb", + "import": 2, + "locale": "nl", + "imagery": "osm" + }, + "id": 117221776 + } + }, + { + "id": 117221773, + "type": "Feature", + "geometry": null, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.15.6", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-09T22:39:05Z", + "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, + "locale": "nl", + "imagery": "osm" + }, + "id": 117221773 + } + }, + { + "id": 117221767, + "type": "Feature", + "geometry": null, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.15.6", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-09T22:38:57Z", + "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, + "locale": "nl", + "imagery": "osm" + }, + "id": 117221767 + } + }, + { + "id": 117221764, + "type": "Feature", + "geometry": null, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.15.6", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-09T22:38: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": "grb", + "import": 1, + "locale": "nl", + "imagery": "osm" + }, + "id": 117221764 + } + }, + { + "id": 117221761, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.2319579, + 50.9591851 + ], + [ + 4.2320417, + 50.9591851 + ], + [ + 4.2320417, + 50.9592187 + ], + [ + 4.2319579, + 50.9592187 + ], + [ + 4.2319579, + 50.9591851 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.15.6", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-09T22:38:45Z", + "reviewed_features": [], + "create": 5, + "modify": 0, + "delete": 0, + "area": 2.8156800001431e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "grb", + "import": 1, + "locale": "nl", + "imagery": "osm" + }, + "id": 117221761 + } + }, + { + "id": 117221755, + "type": "Feature", + "geometry": null, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.15.6", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-09T22:38: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": "grb", + "import": 2, + "locale": "nl", + "imagery": "osm" + }, + "id": 117221755 + } + }, + { + "id": 117221751, + "type": "Feature", + "geometry": null, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.15.6", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-09T22:38:33Z", + "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, + "locale": "nl", + "imagery": "osm" + }, + "id": 117221751 + } + }, + { + "id": 117221726, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.2320113, + 50.9585369 + ], + [ + 4.2322238, + 50.9585369 + ], + [ + 4.2322238, + 50.9587396 + ], + [ + 4.2320113, + 50.9587396 + ], + [ + 4.2320113, + 50.9585369 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.15.6", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-09T22:37:19Z", + "reviewed_features": [], + "create": 0, + "modify": 11, + "delete": 0, + "area": 4.30737500005559e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "move": 10, + "theme": "grb", + "locale": "nl", + "imagery": "osm", + "conflation": 2 + }, + "id": 117221726 + } + }, + { + "id": 117220765, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.6304636, + 51.3477836 + ], + [ + 4.6321288, + 51.3477836 + ], + [ + 4.6321288, + 51.3485302 + ], + [ + 4.6304636, + 51.3485302 + ], + [ + 4.6304636, + 51.3477836 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Stinus_Clasius", + "uid": "1086503", + "editor": "MapComplete 0.15.6", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-09T21:58:45Z", + "reviewed_features": [], + "create": 134, + "modify": 0, + "delete": 0, + "area": 0.0000012432383199994, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "grb", + "import": 20, + "locale": "nl", + "imagery": "osm" + }, + "id": 117220765 + } + }, + { + "id": 117219747, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -1.7019163, + 55.0824927 + ], + [ + -1.5878723, + 55.0824927 + ], + [ + -1.5878723, + 55.4339583 + ], + [ + -1.7019163, + 55.4339583 + ], + [ + -1.7019163, + 55.0824927 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 70, + "name": "Impossible angle in a highway" + } + ], + "tags": [], + "features": [ + { + "url": "way-736570673", + "name": "Westmorland Way", + "osm_id": 736570673, + "reasons": [ + 70 + ], + "version": 3, + "primary_tags": { + "highway": "primary" + } + }, + { + "url": "way-126044600", + "name": "Westmorland Way", + "osm_id": 126044600, + "reasons": [ + 70 + ], + "version": 2, + "primary_tags": { + "highway": "primary" + } + }, + { + "url": "way-736570670", + "name": "Westmorland Way", + "osm_id": 736570670, + "reasons": [ + 70 + ], + "version": 3, + "primary_tags": { + "highway": "primary" + } + } + ], + "user": "confusedbuffalo", + "uid": "242345", + "editor": "MapComplete 0.15.6", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-09T21:18:26Z", + "reviewed_features": [], + "create": 0, + "modify": 43, + "delete": 0, + "area": 0.0400825428863997, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 62, + "locale": "en", + "imagery": "osm" + }, + "id": 117219747 + } + }, + { + "id": 117218343, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.5531508, + 52.0544254 + ], + [ + 13.5531508, + 52.0544254 + ], + [ + 13.5531508, + 52.0544254 + ], + [ + 13.5531508, + 52.0544254 + ], + [ + 13.5531508, + 52.0544254 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Marvin Geisler", + "uid": "13424339", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-09T20:35:12Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "id": 117218343 + } + }, + { + "id": 117218067, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1.6485795, + 42.9187911 + ], + [ + 1.6485795, + 42.9187911 + ], + [ + 1.6485795, + 42.9187911 + ], + [ + 1.6485795, + 42.9187911 + ], + [ + 1.6485795, + 42.9187911 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "rejbzh", + "uid": "15051154", + "editor": "MapComplete 0.15.6", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-09T20:26:53Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 1, + "create": 1, + "locale": "fr", + "imagery": "CartoDB.Voyager" + }, + "id": 117218067 + } + }, + { + "id": 117218051, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1.6485997, + 42.9187699 + ], + [ + 1.6485997, + 42.9187699 + ], + [ + 1.6485997, + 42.9187699 + ], + [ + 1.6485997, + 42.9187699 + ], + [ + 1.6485997, + 42.9187699 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "rejbzh", + "uid": "15051154", + "editor": "MapComplete 0.15.6", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-09T20:26:09Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 1, + "create": 1, + "locale": "fr", + "imagery": "CartoDB.Voyager" + }, + "id": 117218051 + } + }, + { + "id": 117217034, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -1.6197403, + 55.0633319 + ], + [ + -1.5169966, + 55.0633319 + ], + [ + -1.5169966, + 55.2210879 + ], + [ + -1.6197403, + 55.2210879 + ], + [ + -1.6197403, + 55.0633319 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 70, + "name": "Impossible angle in a highway" + } + ], + "tags": [], + "features": [ + { + "url": "way-126044593", + "name": "Station Road", + "osm_id": 126044593, + "reasons": [ + 70 + ], + "version": 6, + "primary_tags": { + "highway": "primary" + } + }, + { + "url": "way-126044594", + "name": "Station Road", + "osm_id": 126044594, + "reasons": [ + 70 + ], + "version": 5, + "primary_tags": { + "highway": "secondary" + } + }, + { + "url": "way-125785869", + "name": "Stakeford Lane", + "osm_id": 125785869, + "reasons": [ + 70 + ], + "version": 4, + "primary_tags": { + "highway": "primary" + } + } + ], + "user": "confusedbuffalo", + "uid": "242345", + "editor": "MapComplete 0.15.6", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-09T19:51:05Z", + "reviewed_features": [], + "create": 0, + "modify": 98, + "delete": 0, + "area": 0.0162084351371999, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 143, + "locale": "en", + "imagery": "osm" + }, + "id": 117217034 + } + }, + { + "id": 117216564, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 9.4152775, + 51.3018083 + ], + [ + 9.4448682, + 51.3018083 + ], + [ + 9.4448682, + 51.3165842 + ], + [ + 9.4152775, + 51.3165842 + ], + [ + 9.4152775, + 51.3018083 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Lattenzaun", + "uid": "2603279", + "editor": "MapComplete 0.15.6", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-09T19:33:32Z", + "reviewed_features": [], + "create": 0, + "modify": 84, + "delete": 0, + "area": 0.000437229224130107, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 117, + "locale": "de", + "imagery": "osm" + }, + "id": 117216564 + } + }, + { + "id": 117213496, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1.6402526, + 42.9183576 + ], + [ + 1.6416534, + 42.9183576 + ], + [ + 1.6416534, + 42.918765 + ], + [ + 1.6402526, + 42.918765 + ], + [ + 1.6402526, + 42.9183576 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "anticamfoix", + "uid": "15042359", + "editor": "MapComplete 0.15.6", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-09T17:57:13Z", + "reviewed_features": [], + "create": 3, + "modify": 3, + "delete": 0, + "area": 5.70685920000429e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "answer": 8, + "create": 3, + "locale": "fr", + "imagery": "osm" + }, + "id": 117213496 + } + }, + { + "id": 117211444, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.4294978, + 50.8067103 + ], + [ + 4.4294978, + 50.8067103 + ], + [ + 4.4294978, + 50.8067103 + ], + [ + 4.4294978, + 50.8067103 + ], + [ + 4.4294978, + 50.8067103 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "StefDeGreef", + "uid": "1860737", + "editor": "MapComplete 0.15.6", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-09T17:03:43Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 3, + "create": 1, + "locale": "fr", + "imagery": "CartoDB.Voyager", + "add-image": 1, + "change_over_5000m": 1, + "change_within_25m": 4 + }, + "id": 117211444 + } + }, + { + "id": 117208566, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.4760257, + 51.0276134 + ], + [ + 4.4794074, + 51.0276134 + ], + [ + 4.4794074, + 51.0284867 + ], + [ + 4.4760257, + 51.0284867 + ], + [ + 4.4760257, + 51.0276134 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "philippec", + "uid": "76884", + "editor": "MapComplete 0.15.6", + "comment": "Adding data with #MapComplete for theme #toilets", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-09T15:43:41Z", + "reviewed_features": [], + "create": 2, + "modify": 3, + "delete": 0, + "area": 0.00000295323861000725, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "toilets", + "answer": 7, + "create": 2, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 2, + "change_within_1000m": 7 + }, + "id": 117208566 + } + }, + { + "id": 117206256, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.3936619, + 50.4801134 + ], + [ + 4.3936619, + 50.4801134 + ], + [ + 4.3936619, + 50.4801134 + ], + [ + 4.3936619, + 50.4801134 + ], + [ + 4.3936619, + 50.4801134 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "jas7100", + "uid": "15023699", + "editor": "MapComplete 0.15.6", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-09T14:48:31Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "answer": 3, + "create": 1, + "locale": "fr", + "imagery": "SPW_ORTHO_LAST" + }, + "id": 117206256 + } + }, + { + "id": 117205993, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 79.4691959, + 11.5993852 + ], + [ + 79.5493961, + 11.5993852 + ], + [ + 79.5493961, + 11.6250078 + ], + [ + 79.4691959, + 11.6250078 + ], + [ + 79.4691959, + 11.5993852 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "bponkishore", + "uid": "14062769", + "editor": "MapComplete 0.15.6", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-09T14:43:39Z", + "reviewed_features": [], + "create": 0, + "modify": 30, + "delete": 0, + "area": 0.00205493764451984, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 30, + "locale": "en", + "imagery": "osm" + }, + "id": 117205993 + } + }, + { + "id": 117205330, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1.6076993, + 42.9602758 + ], + [ + 1.6095829, + 42.9602758 + ], + [ + 1.6095829, + 42.9649003 + ], + [ + 1.6076993, + 42.9649003 + ], + [ + 1.6076993, + 42.9602758 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "anticamfoix", + "uid": "15042359", + "editor": "MapComplete 0.15.6", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-09T14:29:58Z", + "reviewed_features": [], + "create": 2, + "modify": 5, + "delete": 0, + "area": 0.00000871070819999706, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "answer": 8, + "create": 2, + "locale": "fr", + "imagery": "osm" + }, + "id": 117205330 + } + }, + { + "id": 117205328, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1.6095722, + 42.960264 + ], + [ + 1.6095722, + 42.960264 + ], + [ + 1.6095722, + 42.960264 + ], + [ + 1.6095722, + 42.960264 + ], + [ + 1.6095722, + 42.960264 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "anticamfoix", + "uid": "15042359", + "editor": "MapComplete 0.15.6", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-09T14:29:57Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "answer": 3, + "create": 1, + "locale": "fr", + "imagery": "osm" + }, + "id": 117205328 + } + }, + { + "id": 117205318, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1.6095936, + 42.960264 + ], + [ + 1.6095936, + 42.960264 + ], + [ + 1.6095936, + 42.960264 + ], + [ + 1.6095936, + 42.960264 + ], + [ + 1.6095936, + 42.960264 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "anticamfoix", + "uid": "15042359", + "editor": "MapComplete 0.15.6", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-09T14:29:49Z", + "reviewed_features": [], + "create": 1, + "modify": 5, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "answer": 6, + "create": 1, + "locale": "en", + "imagery": "osm" + }, + "id": 117205318 + } + }, + { + "id": 117205291, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1.6096097, + 42.960319 + ], + [ + 1.6096097, + 42.960319 + ], + [ + 1.6096097, + 42.960319 + ], + [ + 1.6096097, + 42.960319 + ], + [ + 1.6096097, + 42.960319 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Albin Gasparetto", + "uid": "1227542", + "editor": "MapComplete 0.15.6", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-09T14:29:14Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "answer": 3, + "create": 1, + "locale": "fr", + "imagery": "osm" + }, + "id": 117205291 + } + }, + { + "id": 117204967, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -1.2874715, + 51.6738011 + ], + [ + -1.2284376, + 51.6738011 + ], + [ + -1.2284376, + 51.7544391 + ], + [ + -1.2874715, + 51.7544391 + ], + [ + -1.2874715, + 51.6738011 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Mark Rogerson", + "uid": "14388354", + "editor": "MapComplete 0.15.6", + "comment": "Adding data with #MapComplete for theme #climbing", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-09T14:22:29Z", + "reviewed_features": [], + "create": 0, + "modify": 7, + "delete": 0, + "area": 0.00476037562820004, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "climbing", + "answer": 13, + "locale": "en", + "imagery": "osm" + }, + "id": 117204967 + } + }, + { + "id": 117204832, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 79.4677036, + 11.6005636 + ], + [ + 79.4897943, + 11.6005636 + ], + [ + 79.4897943, + 11.6160654 + ], + [ + 79.4677036, + 11.6160654 + ], + [ + 79.4677036, + 11.6005636 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "bponkishore", + "uid": "14062769", + "editor": "MapComplete 0.15.6", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-09T14:19:50Z", + "reviewed_features": [], + "create": 0, + "modify": 20, + "delete": 0, + "area": 0.000342445613260125, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 23, + "locale": "en", + "imagery": "osm" + }, + "id": 117204832 + } + }, + { + "id": 117204073, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.4032537, + 50.3472884 + ], + [ + 5.4045399, + 50.3472884 + ], + [ + 5.4045399, + 50.3475768 + ], + [ + 5.4032537, + 50.3475768 + ], + [ + 5.4032537, + 50.3472884 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "DNRvuP", + "uid": "15049065", + "editor": "MapComplete 0.15.6", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-09T14:02:05Z", + "reviewed_features": [], + "create": 2, + "modify": 0, + "delete": 0, + "area": 3.7094008000296e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "benches", + "answer": 3, + "create": 2, + "locale": "en", + "imagery": "osm" + }, + "id": 117204073 + } + }, + { + "id": 117204046, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.5382619, + 51.2226776 + ], + [ + 4.543658, + 51.2226776 + ], + [ + 4.543658, + 51.2243473 + ], + [ + 4.5382619, + 51.2243473 + ], + [ + 4.5382619, + 51.2226776 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Locatus_Raf", + "uid": "14799940", + "editor": "MapComplete 0.15.6", + "comment": "Adding data with #MapComplete for theme #https://gist.githubusercontent.com/joostschouppe/4f631b3f658b67bcfafd56b731c726dc/raw/d39021f0731179a8105531f2e4254d1fe4a6eacf/locatus.json", + "comments_count": 1, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-09T14:01:26Z", + "reviewed_features": [], + "create": 8, + "modify": 4, + "delete": 0, + "area": 0.00000900986817000346, + "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": 8, + "create": 9, + "locale": "nl", + "imagery": "osm", + "add-image": 2 + }, + "id": 117204046 + } + }, + { + "id": 117203387, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2.6076002, + 50.8489054 + ], + [ + 4.2658803, + 50.8489054 + ], + [ + 4.2658803, + 51.2340621 + ], + [ + 2.6076002, + 51.2340621 + ], + [ + 2.6076002, + 50.8489054 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Rienux", + "uid": "11911273", + "editor": "MapComplete 0.15.6", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-09T13:46:21Z", + "reviewed_features": [], + "create": 0, + "modify": 190, + "delete": 0, + "area": 0.638697690991675, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 276, + "locale": "nl", + "imagery": "osm" + }, + "id": 117203387 + } + }, + { + "id": 117201983, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -73.2450132, + -39.8149123 + ], + [ + -73.2450132, + -39.8149123 + ], + [ + -73.2450132, + -39.8149123 + ], + [ + -73.2450132, + -39.8149123 + ], + [ + -73.2450132, + -39.8149123 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.15.6", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-09T13:11:51Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "trees", + "answer": 1, + "locale": "en", + "imagery": "cyclosm" + }, + "id": 117201983 + } + }, + { + "id": 117199538, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.5184802, + 51.2308586 + ], + [ + 4.5209263, + 51.2308586 + ], + [ + 4.5209263, + 51.2317093 + ], + [ + 4.5184802, + 51.2317093 + ], + [ + 4.5184802, + 51.2308586 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Locatus_Raf", + "uid": "14799940", + "editor": "MapComplete 0.15.6", + "comment": "Adding data with #MapComplete for theme #https://gist.githubusercontent.com/joostschouppe/4f631b3f658b67bcfafd56b731c726dc/raw/d39021f0731179a8105531f2e4254d1fe4a6eacf/locatus.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-09T12:09:58Z", + "reviewed_features": [], + "create": 3, + "modify": 4, + "delete": 0, + "area": 0.00000208089727000232, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "https://gist.githubusercontent.com/joostschouppe/4f631b3f658b67bcfafd56b731c726dc/raw/d39021f0731179a8105531f2e4254d1fe4a6eacf/locatus.json", + "answer": 4, + "create": 3, + "locale": "nl", + "imagery": "osm", + "add-image": 3, + "change_over_5000m": 3, + "change_within_50m": 3, + "change_within_100m": 4 + }, + "id": 117199538 + } + }, + { + "id": 117199461, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.2410496, + 51.2064575 + ], + [ + 3.2410496, + 51.2064575 + ], + [ + 3.2410496, + 51.2064575 + ], + [ + 3.2410496, + 51.2064575 + ], + [ + 3.2410496, + 51.2064575 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.15.6", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/seppesantens/MapComplete-Themes/main/VerkeerdeBordenDatabank/VerkeerdeBordenDatabank.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-09T12:08:06Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "https://raw.githubusercontent.com/seppesantens/MapComplete-Themes/main/VerkeerdeBordenDatabank/VerkeerdeBordenDatabank.json", + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_within_5000m": 1 + }, + "id": 117199461 + } + }, + { + "id": 117196396, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2.4247664, + 48.8339249 + ], + [ + 2.4450072, + 48.8339249 + ], + [ + 2.4450072, + 48.844914 + ], + [ + 2.4247664, + 48.844914 + ], + [ + 2.4247664, + 48.8339249 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "nicolas2b54", + "uid": "14828783", + "editor": "MapComplete 0.15.6", + "comment": "Adding data with #MapComplete for theme #sidewalks", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-09T10:46:20Z", + "reviewed_features": [], + "create": 0, + "modify": 25, + "delete": 0, + "area": 0.000222428175280065, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "sidewalks", + "answer": 32, + "locale": "en", + "imagery": "osm" + }, + "id": 117196396 + } + }, + { + "id": 117195266, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.5082381, + 51.2291205 + ], + [ + 4.5171927, + 51.2291205 + ], + [ + 4.5171927, + 51.2334895 + ], + [ + 4.5082381, + 51.2334895 + ], + [ + 4.5082381, + 51.2291205 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Locatus_Raf", + "uid": "14799940", + "editor": "MapComplete 0.15.6", + "comment": "Adding data with #MapComplete for theme #https://gist.githubusercontent.com/joostschouppe/4f631b3f658b67bcfafd56b731c726dc/raw/d39021f0731179a8105531f2e4254d1fe4a6eacf/locatus.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-09T10:19:40Z", + "reviewed_features": [], + "create": 7, + "modify": 6, + "delete": 0, + "area": 0.0000391226473999729, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "https://gist.githubusercontent.com/joostschouppe/4f631b3f658b67bcfafd56b731c726dc/raw/d39021f0731179a8105531f2e4254d1fe4a6eacf/locatus.json", + "answer": 10, + "create": 7, + "locale": "nl", + "imagery": "osm", + "add-image": 3, + "change_over_5000m": 7, + "change_within_25m": 14, + "move:node/9492215009": "improve_accuracy" + }, + "id": 117195266 + } + }, + { + "id": 117195083, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.0949282, + 50.8748673 + ], + [ + 4.7823947, + 50.8748673 + ], + [ + 4.7823947, + 51.3817681 + ], + [ + 3.0949282, + 51.3817681 + ], + [ + 3.0949282, + 50.8748673 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Rienux", + "uid": "11911273", + "editor": "MapComplete 0.15.6", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-09T10:14:28Z", + "reviewed_features": [], + "create": 0, + "modify": 162, + "delete": 0, + "area": 0.855378118823207, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 217, + "locale": "nl", + "imagery": "osm" + }, + "id": 117195083 + } + }, + { + "id": 117194308, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.4918854, + 51.2255385 + ], + [ + 4.5492123, + 51.2255385 + ], + [ + 4.5492123, + 51.2386664 + ], + [ + 4.4918854, + 51.2386664 + ], + [ + 4.4918854, + 51.2255385 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Locatus_Jori", + "uid": "14800690", + "editor": "MapComplete 0.15.6", + "comment": "Adding data with #MapComplete for theme #https://gist.githubusercontent.com/joostschouppe/4f631b3f658b67bcfafd56b731c726dc/raw/d39021f0731179a8105531f2e4254d1fe4a6eacf/locatus.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-09T09:56:41Z", + "reviewed_features": [], + "create": 13, + "modify": 19, + "delete": 0, + "area": 0.000752581810510032, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "https://gist.githubusercontent.com/joostschouppe/4f631b3f658b67bcfafd56b731c726dc/raw/d39021f0731179a8105531f2e4254d1fe4a6eacf/locatus.json", + "answer": 8, + "create": 13, + "locale": "nl", + "imagery": "osm", + "add-image": 14, + "change_over_5000m": 13, + "change_within_25m": 18, + "change_within_50m": 4 + }, + "id": 117194308 + } + }, + { + "id": 117193831, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 7.4201187, + 46.9375204 + ], + [ + 7.4202203, + 46.9375204 + ], + [ + 7.4202203, + 46.9376317 + ], + [ + 7.4201187, + 46.9376317 + ], + [ + 7.4201187, + 46.9375204 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "habi", + "uid": "15671", + "editor": "MapComplete 0.15.6", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-09T09:46:54Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 1, + "area": 1.13080800001156e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "trees", + "answer": 3, + "locale": "en", + "imagery": "osm", + "deletion": 1, + "change_within_25m": 3, + "change_within_100m": 1, + "deletion:node/6119665025": "disused" + }, + "id": 117193831 + } + }, + { + "id": 117191011, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.4892173, + 51.2306411 + ], + [ + 4.5089154, + 51.2306411 + ], + [ + 4.5089154, + 51.2359003 + ], + [ + 4.4892173, + 51.2359003 + ], + [ + 4.4892173, + 51.2306411 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Locatus_Raf", + "uid": "14799940", + "editor": "MapComplete 0.15.6", + "comment": "Adding data with #MapComplete for theme #https://gist.githubusercontent.com/joostschouppe/4f631b3f658b67bcfafd56b731c726dc/raw/d39021f0731179a8105531f2e4254d1fe4a6eacf/locatus.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-09T08:40:02Z", + "reviewed_features": [], + "create": 14, + "modify": 17, + "delete": 0, + "area": 0.000103596247519954, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "https://gist.githubusercontent.com/joostschouppe/4f631b3f658b67bcfafd56b731c726dc/raw/d39021f0731179a8105531f2e4254d1fe4a6eacf/locatus.json", + "answer": 11, + "create": 14, + "locale": "nl", + "imagery": "osm", + "add-image": 13, + "change_over_5000m": 14, + "change_within_25m": 11, + "change_within_50m": 5, + "change_within_100m": 9, + "move:node/9491933424": "improve_accuracy" + }, + "id": 117191011 + } + }, + { + "id": 117189898, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.3811197, + 50.8581346 + ], + [ + 4.3811197, + 50.8581346 + ], + [ + 4.3811197, + 50.8581346 + ], + [ + 4.3811197, + 50.8581346 + ], + [ + 4.3811197, + 50.8581346 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.15.6", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-09T08:09:38Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "locale": "en", + "imagery": "CartoDB.Voyager", + "add-image": 1 + }, + "id": 117189898 + } + }, + { + "id": 117187792, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 11.6762339, + 48.0042683 + ], + [ + 11.7130619, + 48.0042683 + ], + [ + 11.7130619, + 48.0164679 + ], + [ + 11.6762339, + 48.0164679 + ], + [ + 11.6762339, + 48.0042683 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "bollyboll", + "uid": "12120321", + "editor": "MapComplete 0.15.6", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-09T07:03:17Z", + "reviewed_features": [], + "create": 38, + "modify": 2, + "delete": 0, + "area": 0.000449286868800087, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "answer": 17, + "create": 38, + "locale": "de", + "imagery": "osm", + "change_over_5000m": 38, + "change_within_25m": 11, + "change_within_50m": 3, + "change_within_100m": 1, + "change_within_500m": 2 + }, + "id": 117187792 + } + }, + { + "id": 117180667, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.235783, + 51.2077624 + ], + [ + 3.2875082, + 51.2077624 + ], + [ + 3.2875082, + 51.2292894 + ], + [ + 3.235783, + 51.2292894 + ], + [ + 3.235783, + 51.2077624 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.15.5", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-08T23:54:47Z", + "reviewed_features": [], + "create": 0, + "modify": 8, + "delete": 0, + "area": 0.00111348838039994, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 9, + "locale": "nl", + "imagery": "osm" + }, + "id": 117180667 + } + }, + { + "id": 117178203, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -1.91318, + 54.544246 + ], + [ + -1.8428746, + 54.544246 + ], + [ + -1.8428746, + 54.5486976 + ], + [ + -1.91318, + 54.5486976 + ], + [ + -1.91318, + 54.544246 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "confusedbuffalo", + "uid": "242345", + "editor": "MapComplete 0.15.5", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-08T21:41:30Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.000312971518639712, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 2, + "locale": "en", + "imagery": "osm" + }, + "id": 117178203 + } + }, + { + "id": 117178055, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.8364815, + 51.1846906 + ], + [ + 4.8364815, + 51.1846906 + ], + [ + 4.8364815, + 51.1846906 + ], + [ + 4.8364815, + 51.1846906 + ], + [ + 4.8364815, + 51.1846906 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Frans_Napaters", + "uid": "3574538", + "editor": "MapComplete 0.15.5", + "comment": "Adding data with #MapComplete for theme #charging_stations", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-08T21:35:34Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "charging_stations", + "answer": 1, + "create": 1, + "locale": "nl", + "imagery": "CartoDB.Voyager", + "change_over_5000m": 2 + }, + "id": 117178055 + } + }, + { + "id": 117175034, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.5492029, + 50.9430976 + ], + [ + 4.5492029, + 50.9430976 + ], + [ + 4.5492029, + 50.9430976 + ], + [ + 4.5492029, + 50.9430976 + ], + [ + 4.5492029, + 50.9430976 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.15.5", + "comment": "Adding data with #MapComplete for theme #waste_basket", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-08T19:47:02Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "waste_basket", + "answer": 1, + "locale": "en", + "imagery": "osm" + }, + "id": 117175034 + } + }, + { + "id": 117174875, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.0039372, + 51.1292317 + ], + [ + 5.0039372, + 51.1292317 + ], + [ + 5.0039372, + 51.1292317 + ], + [ + 5.0039372, + 51.1292317 + ], + [ + 5.0039372, + 51.1292317 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.15.5", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-08T19:41:50Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 4, + "create": 1, + "locale": "en", + "imagery": "AGIV", + "add-image": 1 + }, + "id": 117174875 + } + }, + { + "id": 117174624, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.5493613, + 50.9431886 + ], + [ + 5.0058976, + 50.9431886 + ], + [ + 5.0058976, + 51.1300524 + ], + [ + 4.5493613, + 51.1300524 + ], + [ + 4.5493613, + 50.9431886 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.15.5", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-08T19:32:47Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.0853101078559389, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "benches", + "answer": 1, + "locale": "en", + "imagery": "osm", + "add-image": 2 + }, + "id": 117174624 + } + }, + { + "id": 117174481, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.4207606, + 50.8464705 + ], + [ + 5.0101136, + 50.8464705 + ], + [ + 5.0101136, + 51.162952 + ], + [ + 4.4207606, + 51.162952 + ], + [ + 4.4207606, + 50.8464705 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-9490613102", + "osm_id": 9490613102, + "reasons": [ + 43 + ], + "version": 2, + "primary_tags": { + "tourism": "map" + } + } + ], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.15.5", + "comment": "Adding data with #MapComplete for theme #maps", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-08T19:28:28Z", + "reviewed_features": [], + "create": 3, + "modify": 1, + "delete": 0, + "area": 0.186519321469497, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "maps", + "create": 3, + "locale": "en", + "imagery": "osm", + "add-image": 3 + }, + "id": 117174481 + } + }, + { + "id": 117172449, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.2157024, + 51.2154692 + ], + [ + 3.2157024, + 51.2154692 + ], + [ + 3.2157024, + 51.2154692 + ], + [ + 3.2157024, + 51.2154692 + ], + [ + 3.2157024, + 51.2154692 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.15.5", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-08T18:21:22Z", + "reviewed_features": [], + "create": 0, + "modify": 0, + "delete": 1, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "locale": "nl", + "imagery": "osm", + "deletion": 1, + "change_within_5000m": 1, + "deletion:node/9490464167": "testing point" + }, + "id": 117172449 + } + }, + { + "id": 117172287, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.2157024, + 51.2154692 + ], + [ + 3.2157024, + 51.2154692 + ], + [ + 3.2157024, + 51.2154692 + ], + [ + 3.2157024, + 51.2154692 + ], + [ + 3.2157024, + 51.2154692 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "349499", + "uid": "7006347", + "editor": "MapComplete 0.15.5", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-08T18:15:43Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "create": 1, + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_over_5000m": 1, + "change_within_500m": 1 + }, + "id": 117172287 + } + }, + { + "id": 117172158, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.3719104, + 50.8495035 + ], + [ + 4.3719104, + 50.8495035 + ], + [ + 4.3719104, + 50.8495035 + ], + [ + 4.3719104, + 50.8495035 + ], + [ + 4.3719104, + 50.8495035 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.15.5", + "comment": "Adding data with #MapComplete for theme #cafes_and_pubs", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-08T18:12:20Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "cafes_and_pubs", + "locale": "en", + "imagery": "osm", + "add-image": 2 + }, + "id": 117172158 + } + }, + { + "id": 117172020, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.394691, + 50.8541611 + ], + [ + 4.3947936, + 50.8541611 + ], + [ + 4.3947936, + 50.8542007 + ], + [ + 4.394691, + 50.8542007 + ], + [ + 4.394691, + 50.8541611 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.15.5", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-08T18:08:34Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 4.06296000009218e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "locale": "en", + "imagery": "CartoDB.Voyager", + "add-image": 1 + }, + "id": 117172020 + } + }, + { + "id": 117171205, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.3580336, + 50.8448902 + ], + [ + 4.3581534, + 50.8448902 + ], + [ + 4.3581534, + 50.8449677 + ], + [ + 4.3580336, + 50.8449677 + ], + [ + 4.3580336, + 50.8448902 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.15.5", + "comment": "Adding data with #MapComplete for theme #food", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-08T17:45:23Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 9.28449999955957e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "food", + "locale": "en", + "imagery": "osm", + "add-image": 2 + }, + "id": 117171205 + } + }, + { + "id": 117167781, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2.5988831, + 50.8133359 + ], + [ + 5.1808282, + 50.8133359 + ], + [ + 5.1808282, + 51.3949055 + ], + [ + 2.5988831, + 51.3949055 + ], + [ + 2.5988831, + 50.8133359 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 4, + "name": "mass modification" + } + ], + "tags": [], + "features": [], + "user": "Rienux", + "uid": "11911273", + "editor": "MapComplete 0.15.4", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-08T16:12:42Z", + "reviewed_features": [], + "create": 0, + "modify": 439, + "delete": 0, + "area": 1.50158077902896, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 637, + "locale": "en", + "imagery": "osm" + }, + "id": 117167781 + } + }, + { + "id": 117164043, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.9471519, + 51.162022 + ], + [ + 4.9990879, + 51.162022 + ], + [ + 4.9990879, + 51.1638621 + ], + [ + 4.9471519, + 51.1638621 + ], + [ + 4.9471519, + 51.162022 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.15.4", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-08T14:38:31Z", + "reviewed_features": [], + "create": 31, + "modify": 46, + "delete": 0, + "area": 0.000095567433600134, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "move": 43, + "theme": "grb", + "answer": 2, + "import": 2, + "locale": "nl", + "imagery": "osm", + "conflation": 6 + }, + "id": 117164043 + } + }, + { + "id": 117162248, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.4814137, + 51.3948839 + ], + [ + 4.9855423, + 51.3948839 + ], + [ + 4.9855423, + 51.4207554 + ], + [ + 4.4814137, + 51.4207554 + ], + [ + 4.4814137, + 51.3948839 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.15.4", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-08T13:53:00Z", + "reviewed_features": [], + "create": 213, + "modify": 65, + "delete": 0, + "area": 0.0130425630748969, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "move": 53, + "theme": "grb", + "import": 22, + "locale": "nl", + "imagery": "osm", + "conflation": 24, + "change_over_5000m": 13 + }, + "id": 117162248 + } + }, + { + "id": 117160589, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.5083977, + 51.221038 + ], + [ + 4.5206085, + 51.221038 + ], + [ + 4.5206085, + 51.2258549 + ], + [ + 4.5083977, + 51.2258549 + ], + [ + 4.5083977, + 51.221038 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Locatus_Raf", + "uid": "14799940", + "editor": "MapComplete 0.15.4", + "comment": "Adding data with #MapComplete for theme #https://gist.githubusercontent.com/joostschouppe/4f631b3f658b67bcfafd56b731c726dc/raw/d39021f0731179a8105531f2e4254d1fe4a6eacf/locatus.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-08T13:09:12Z", + "reviewed_features": [], + "create": 7, + "modify": 10, + "delete": 1, + "area": 0.0000588182025200195, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "move": 4, + "theme": "https://gist.githubusercontent.com/joostschouppe/4f631b3f658b67bcfafd56b731c726dc/raw/d39021f0731179a8105531f2e4254d1fe4a6eacf/locatus.json", + "answer": 6, + "create": 7, + "locale": "nl", + "imagery": "osm", + "deletion": 1, + "add-image": 6, + "change_over_5000m": 7, + "change_within_25m": 3, + "change_within_50m": 4, + "change_within_100m": 5, + "change_within_500m": 5, + "move:node/7980623376": "improve_accuracy", + "move:node/9489869914": "improve_accuracy", + "move:node/9489892866": "improve_accuracy", + "deletion:node/7980623376": "testing point" + }, + "id": 117160589 + } + }, + { + "id": 117159099, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.1885303, + 50.9183966 + ], + [ + 4.4603666, + 50.9183966 + ], + [ + 4.4603666, + 51.0180682 + ], + [ + 4.1885303, + 51.0180682 + ], + [ + 4.1885303, + 50.9183966 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + }, + { + "id": 42, + "name": "Invalid tag modification" + } + ], + "tags": [], + "features": [ + { + "url": "way-125921816", + "name": "Verkeerstuin 'Biesieklette'", + "osm_id": 125921816, + "reasons": [ + 42 + ], + "version": 7, + "primary_tags": {} + } + ], + "user": "jospyck", + "uid": "12128135", + "editor": "MapComplete 0.15.4", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-08T12:32:11Z", + "reviewed_features": [], + "create": 2, + "modify": 8, + "delete": 0, + "area": 0.0270943589590802, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 9, + "create": 2, + "locale": "nl", + "imagery": "CartoDB.Voyager", + "soft-delete": 1, + "soft-delete:way/125921816": "dit is geen speeltuin, maar een verkeerstuin waar kinderen verkeersregels leren" + }, + "id": 117159099 + } + }, + { + "id": 117151884, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.5019772, + 51.2237098 + ], + [ + 4.5265355, + 51.2237098 + ], + [ + 4.5265355, + 51.2294389 + ], + [ + 4.5019772, + 51.2294389 + ], + [ + 4.5019772, + 51.2237098 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Locatus_Raf", + "uid": "14799940", + "editor": "MapComplete 0.15.4", + "comment": "Adding data with #MapComplete for theme #https://gist.githubusercontent.com/joostschouppe/4f631b3f658b67bcfafd56b731c726dc/raw/d39021f0731179a8105531f2e4254d1fe4a6eacf/locatus.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-08T09:35:59Z", + "reviewed_features": [], + "create": 23, + "modify": 21, + "delete": 0, + "area": 0.00014069695652991, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "move": 2, + "theme": "https://gist.githubusercontent.com/joostschouppe/4f631b3f658b67bcfafd56b731c726dc/raw/d39021f0731179a8105531f2e4254d1fe4a6eacf/locatus.json", + "answer": 27, + "create": 23, + "locale": "nl", + "imagery": "osm", + "add-image": 17, + "change_over_5000m": 23, + "change_within_25m": 28, + "change_within_50m": 3, + "change_within_100m": 8, + "change_within_500m": 7, + "move:node/9489430949": "improve_accuracy", + "move:node/9489646032": "improve_accuracy" + }, + "id": 117151884 + } + }, + { + "id": 117151836, + "type": "Feature", + "geometry": null, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Locatus_Raf", + "uid": "14799940", + "editor": "MapComplete 0.15.4", + "comment": "Adding data with #MapComplete for theme #https://gist.githubusercontent.com/joostschouppe/4f631b3f658b67bcfafd56b731c726dc/raw/d39021f0731179a8105531f2e4254d1fe4a6eacf/locatus.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-08T09:34:40Z", + "reviewed_features": [], + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "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, + "locale": "nl", + "imagery": "osm", + "change_within_25m": 1 + }, + "id": 117151836 + } + }, + { + "id": 117151819, + "type": "Feature", + "geometry": null, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Locatus_Raf", + "uid": "14799940", + "editor": "MapComplete 0.15.4", + "comment": "Adding data with #MapComplete for theme #https://gist.githubusercontent.com/joostschouppe/4f631b3f658b67bcfafd56b731c726dc/raw/d39021f0731179a8105531f2e4254d1fe4a6eacf/locatus.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-08T09:34:22Z", + "reviewed_features": [], + "create": 0, + "modify": 0, + "delete": 0, + "area": null, + "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": 2, + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_within_25m": 3 + }, + "id": 117151819 + } + }, + { + "id": 117151752, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.5110612, + 51.2254501 + ], + [ + 4.5110612, + 51.2254501 + ], + [ + 4.5110612, + 51.2254501 + ], + [ + 4.5110612, + 51.2254501 + ], + [ + 4.5110612, + 51.2254501 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Locatus_Raf", + "uid": "14799940", + "editor": "MapComplete 0.15.4", + "comment": "Adding data with #MapComplete for theme #https://gist.githubusercontent.com/joostschouppe/4f631b3f658b67bcfafd56b731c726dc/raw/d39021f0731179a8105531f2e4254d1fe4a6eacf/locatus.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-08T09:32:05Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "https://gist.githubusercontent.com/joostschouppe/4f631b3f658b67bcfafd56b731c726dc/raw/d39021f0731179a8105531f2e4254d1fe4a6eacf/locatus.json", + "answer": 2, + "create": 1, + "locale": "nl", + "imagery": "osm", + "add-image": 2, + "change_over_5000m": 1, + "change_within_25m": 3, + "change_within_50m": 1 + }, + "id": 117151752 + } + }, + { + "id": 117150611, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.5019129, + 51.2230856 + ], + [ + 4.5276289, + 51.2230856 + ], + [ + 4.5276289, + 51.2297074 + ], + [ + 4.5019129, + 51.2297074 + ], + [ + 4.5019129, + 51.2230856 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Locatus_Jori", + "uid": "14800690", + "editor": "MapComplete 0.15.4", + "comment": "Adding data with #MapComplete for theme #https://gist.githubusercontent.com/joostschouppe/4f631b3f658b67bcfafd56b731c726dc/raw/d39021f0731179a8105531f2e4254d1fe4a6eacf/locatus.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-08T09:02:46Z", + "reviewed_features": [], + "create": 44, + "modify": 48, + "delete": 1, + "area": 0.000170286208800126, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "https://gist.githubusercontent.com/joostschouppe/4f631b3f658b67bcfafd56b731c726dc/raw/d39021f0731179a8105531f2e4254d1fe4a6eacf/locatus.json", + "answer": 16, + "create": 44, + "locale": "nl", + "imagery": "osm", + "deletion": 1, + "add-image": 41, + "change_over_5000m": 44, + "change_within_25m": 58, + "deletion:node/9489217545": "testing point" + }, + "id": 117150611 + } + }, + { + "id": 117149982, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 7.8493904, + 47.9980541 + ], + [ + 7.8549796, + 47.9980541 + ], + [ + 7.8549796, + 48.0113066 + ], + [ + 7.8493904, + 48.0113066 + ], + [ + 7.8493904, + 47.9980541 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "kapiza", + "uid": "15040216", + "editor": "MapComplete 0.15.4", + "comment": "Adding data with #MapComplete for theme #cycle_infra", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-08T08:48:32Z", + "reviewed_features": [], + "create": 0, + "modify": 20, + "delete": 0, + "area": 0.000074070873000003, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "cycle_infra", + "answer": 20, + "locale": "en", + "imagery": "EsriWorldImagery" + }, + "id": 117149982 + } + }, + { + "id": 117149573, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.5111939, + 51.2251074 + ], + [ + 4.5213005, + 51.2251074 + ], + [ + 4.5213005, + 51.2272432 + ], + [ + 4.5111939, + 51.2272432 + ], + [ + 4.5111939, + 51.2251074 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Locatus_Raf", + "uid": "14799940", + "editor": "MapComplete 0.15.4", + "comment": "Adding data with #MapComplete for theme #https://gist.githubusercontent.com/joostschouppe/4f631b3f658b67bcfafd56b731c726dc/raw/d39021f0731179a8105531f2e4254d1fe4a6eacf/locatus.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-08T08:37:51Z", + "reviewed_features": [], + "create": 13, + "modify": 19, + "delete": 0, + "area": 0.0000215856762799765, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "move": 4, + "theme": "https://gist.githubusercontent.com/joostschouppe/4f631b3f658b67bcfafd56b731c726dc/raw/d39021f0731179a8105531f2e4254d1fe4a6eacf/locatus.json", + "answer": 19, + "create": 13, + "locale": "nl", + "imagery": "osm", + "add-image": 10, + "change_over_5000m": 13, + "change_within_25m": 6, + "change_within_50m": 17, + "change_within_100m": 10, + "move:node/9489129510": "improve_accuracy", + "move:node/9489261714": "improve_accuracy", + "move:node/9489269562": "improve_accuracy", + "move:node/9489300240": "improve_accuracy" + }, + "id": 117149573 + } + }, + { + "id": 117149227, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.9987267, + 51.127691 + ], + [ + 5.0089875, + 51.127691 + ], + [ + 5.0089875, + 51.1412877 + ], + [ + 4.9987267, + 51.1412877 + ], + [ + 4.9987267, + 51.127691 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.15.4", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-08T08:27:46Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.000139513019360011, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "benches", + "answer": 8, + "locale": "nl", + "imagery": "osm" + }, + "id": 117149227 + } + }, + { + "id": 117148021, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.9865156, + 51.1237229 + ], + [ + 5.009369, + 51.1237229 + ], + [ + 5.009369, + 51.1687037 + ], + [ + 4.9865156, + 51.1687037 + ], + [ + 4.9865156, + 51.1237229 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.15.4", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-08T07:54:22Z", + "reviewed_features": [], + "create": 0, + "modify": 42, + "delete": 0, + "area": 0.00102796421472014, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 57, + "locale": "nl", + "imagery": "osm" + }, + "id": 117148021 + } + }, + { + "id": 117147804, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 11.7116444, + 47.9865243 + ], + [ + 11.7403541, + 47.9865243 + ], + [ + 11.7403541, + 47.9936529 + ], + [ + 11.7116444, + 47.9936529 + ], + [ + 11.7116444, + 47.9865243 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "bollyboll", + "uid": "12120321", + "editor": "MapComplete 0.15.4", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-08T07:48:32Z", + "reviewed_features": [], + "create": 15, + "modify": 4, + "delete": 0, + "area": 0.000204659967420032, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "answer": 14, + "create": 15, + "locale": "de", + "imagery": "osm", + "change_over_5000m": 15, + "change_within_25m": 7, + "change_within_50m": 3, + "change_within_100m": 3, + "change_within_500m": 1 + }, + "id": 117147804 + } + }, + { + "id": 117147589, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.9994084, + 51.1216351 + ], + [ + 5.0220884, + 51.1216351 + ], + [ + 5.0220884, + 51.1500062 + ], + [ + 4.9994084, + 51.1500062 + ], + [ + 4.9994084, + 51.1216351 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.15.4", + "comment": "Adding data with #MapComplete for theme #nature", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-08T07:42:57Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.000643456548000032, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "nature", + "answer": 2, + "locale": "nl", + "imagery": "osm", + "add-image": 2 + }, + "id": 117147589 + } + }, + { + "id": 117139657, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.9890231, + 51.1645267 + ], + [ + 4.9906412, + 51.1645267 + ], + [ + 4.9906412, + 51.1650754 + ], + [ + 4.9890231, + 51.1650754 + ], + [ + 4.9890231, + 51.1645267 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.15.4", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-07T23:59:53Z", + "reviewed_features": [], + "create": 8, + "modify": 62, + "delete": 0, + "area": 8.8785146999344e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "move": 55, + "theme": "grb", + "answer": 1, + "locale": "nl", + "imagery": "osm", + "conflation": 12, + "change_within_500m": 1 + }, + "id": 117139657 + } + }, + { + "id": 117132736, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 6.1215835, + 46.2326336 + ], + [ + 6.1215835, + 46.2326336 + ], + [ + 6.1215835, + 46.2326336 + ], + [ + 6.1215835, + 46.2326336 + ], + [ + 6.1215835, + 46.2326336 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "dmx_valou", + "uid": "13908331", + "editor": "MapComplete 0.15.4", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-07T19:26:20Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "answer": 2, + "create": 1, + "locale": "fr", + "imagery": "osm" + }, + "id": 117132736 + } + }, + { + "id": 117127208, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.9121683, + 51.0913603 + ], + [ + 5.0941013, + 51.0913603 + ], + [ + 5.0941013, + 51.2462495 + ], + [ + 4.9121683, + 51.2462495 + ], + [ + 4.9121683, + 51.0913603 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 4, + "name": "mass modification" + } + ], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.15.4", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-07T16:43:09Z", + "reviewed_features": [], + "create": 0, + "modify": 540, + "delete": 0, + "area": 0.0281794568235999, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 886, + "locale": "nl", + "imagery": "AGIV", + "change_over_5000m": 1, + "change_within_5000m": 54 + }, + "id": 117127208 + } + }, + { + "id": 117126820, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.9281797, + 51.140005 + ], + [ + 4.9547198, + 51.140005 + ], + [ + 4.9547198, + 51.1467978 + ], + [ + 4.9281797, + 51.1467978 + ], + [ + 4.9281797, + 51.140005 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.15.4", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-07T16:33:09Z", + "reviewed_features": [], + "create": 0, + "modify": 44, + "delete": 0, + "area": 0.000180281591279987, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 59, + "locale": "nl", + "imagery": "AGIV" + }, + "id": 117126820 + } + }, + { + "id": 117125624, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 37.661374, + 55.7706285 + ], + [ + 37.6615548, + 55.7706285 + ], + [ + 37.6615548, + 55.7707726 + ], + [ + 37.661374, + 55.7707726 + ], + [ + 37.661374, + 55.7706285 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "trolleway", + "uid": "397326", + "editor": "MapComplete 0.15.4", + "comment": "Adding data with #MapComplete for theme #entrances", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-07T15:59:49Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 2.60532799993378e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "entrances", + "answer": 4, + "locale": "en", + "imagery": "osm", + "change_within_5000m": 4 + }, + "id": 117125624 + } + }, + { + "id": 117125249, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 34.7990064, + 50.8962661 + ], + [ + 34.7990064, + 50.8962661 + ], + [ + 34.7990064, + 50.8962661 + ], + [ + 34.7990064, + 50.8962661 + ], + [ + 34.7990064, + 50.8962661 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 43, + "name": "Invalid key value combination" + } + ], + "tags": [], + "features": [ + { + "url": "node-9487156863", + "osm_id": 9487156863, + "reasons": [ + 43 + ], + "version": 1, + "primary_tags": { + "tourism": "map" + } + } + ], + "user": "mike140", + "uid": "2471547", + "editor": "MapComplete 0.15.4", + "comment": "Adding data with #MapComplete for theme #maps", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-07T15:48:01Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "maps", + "create": 1, + "locale": "ru", + "imagery": "osm" + }, + "id": 117125249 + } + }, + { + "id": 117124054, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.0068996, + 51.1067639 + ], + [ + 5.1018922, + 51.1067639 + ], + [ + 5.1018922, + 51.1306956 + ], + [ + 5.0068996, + 51.1306956 + ], + [ + 5.0068996, + 51.1067639 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.15.4", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-07T15:14:19Z", + "reviewed_features": [], + "create": 0, + "modify": 16, + "delete": 0, + "area": 0.00227333440542055, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 22, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 12, + "change_within_5000m": 10 + }, + "id": 117124054 + } + }, + { + "id": 117122175, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -1.2965395, + 50.696603 + ], + [ + -1.2955724, + 50.696603 + ], + [ + -1.2955724, + 50.6981279 + ], + [ + -1.2965395, + 50.6981279 + ], + [ + -1.2965395, + 50.696603 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "CjMalone", + "uid": "6816132", + "editor": "MapComplete 0.15.5", + "comment": "Adding data with #MapComplete for theme #uk_addresses", + "comments_count": 2, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-07T14:25:59Z", + "reviewed_features": [], + "create": 11, + "modify": 8, + "delete": 0, + "area": 0.00000147473078999973, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "uk_addresses", + "answer": 16, + "import": 11, + "locale": "en", + "imagery": "osm" + }, + "id": 117122175 + } + }, + { + "id": 117120640, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.3912317, + 50.8534512 + ], + [ + 4.3947936, + 50.8534512 + ], + [ + 4.3947936, + 50.8542007 + ], + [ + 4.3912317, + 50.8542007 + ], + [ + 4.3912317, + 50.8534512 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.15.4", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-07T13:47:34Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.00000266964404999211, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 1, + "locale": "en", + "imagery": "CartoDB.Voyager", + "add-image": 2 + }, + "id": 117120640 + } + }, + { + "id": 117120081, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.9978845, + 51.1171758 + ], + [ + 5.0452177, + 51.1171758 + ], + [ + 5.0452177, + 51.1941443 + ], + [ + 4.9978845, + 51.1941443 + ], + [ + 4.9978845, + 51.1171758 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.15.4", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-07T13:35:32Z", + "reviewed_features": [], + "create": 0, + "modify": 29, + "delete": 0, + "area": 0.00364316540420003, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 39, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 13, + "change_within_5000m": 26 + }, + "id": 117120081 + } + }, + { + "id": 117118217, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.0033394, + 51.1249236 + ], + [ + 5.0114777, + 51.1249236 + ], + [ + 5.0114777, + 51.1307655 + ], + [ + 5.0033394, + 51.1307655 + ], + [ + 5.0033394, + 51.1249236 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.15.4", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-07T12:48:13Z", + "reviewed_features": [], + "create": 0, + "modify": 14, + "delete": 0, + "area": 0.000047543134770004, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "benches", + "answer": 20, + "locale": "nl", + "imagery": "osm", + "change_within_500m": 20 + }, + "id": 117118217 + } + }, + { + "id": 117107587, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 16.5751174, + 49.2333062 + ], + [ + 16.5751174, + 49.2333062 + ], + [ + 16.5751174, + 49.2333062 + ], + [ + 16.5751174, + 49.2333062 + ], + [ + 16.5751174, + 49.2333062 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Jakuje", + "uid": "1641564", + "editor": "MapComplete 0.15.4", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-07T08:23:47Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "trees", + "answer": 2, + "locale": "en", + "imagery": "osm" + }, + "id": 117107587 + } + }, + { + "id": 117106705, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 11.8003403, + 48.0193367 + ], + [ + 11.8389179, + 48.0193367 + ], + [ + 11.8389179, + 48.0292086 + ], + [ + 11.8003403, + 48.0292086 + ], + [ + 11.8003403, + 48.0193367 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "bollyboll", + "uid": "12120321", + "editor": "MapComplete 0.15.4", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-07T08:00:15Z", + "reviewed_features": [], + "create": 13, + "modify": 0, + "delete": 0, + "area": 0.00038083420944001, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "answer": 7, + "create": 13, + "locale": "de", + "imagery": "osm", + "change_over_5000m": 13, + "change_within_25m": 4, + "change_within_50m": 2, + "change_within_100m": 1 + }, + "id": 117106705 + } + }, + { + "id": 117098329, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.1836149, + 50.4649387 + ], + [ + 4.3373278, + 50.4649387 + ], + [ + 4.3373278, + 50.6062737 + ], + [ + 4.1836149, + 50.6062737 + ], + [ + 4.1836149, + 50.4649387 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "jas7100", + "uid": "15023699", + "editor": "MapComplete 0.15.4", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-07T00:01:17Z", + "reviewed_features": [], + "create": 7, + "modify": 2, + "delete": 0, + "area": 0.0217250127215007, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "answer": 16, + "create": 7, + "locale": "fr", + "imagery": "SPW_ORTHO_LAST", + "change_over_5000m": 8, + "change_within_5000m": 9 + }, + "id": 117098329 + } + }, + { + "id": 117092571, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.8060962, + 51.1712021 + ], + [ + 4.8093933, + 51.1712021 + ], + [ + 4.8093933, + 51.1720265 + ], + [ + 4.8060962, + 51.1720265 + ], + [ + 4.8060962, + 51.1712021 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.15.4", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-06T19:50:32Z", + "reviewed_features": [], + "create": 9, + "modify": 10, + "delete": 1, + "area": 0.00000271812923999703, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "move": 7, + "theme": "grb", + "answer": 1, + "delete": 1, + "locale": "nl", + "imagery": "osm", + "conflation": 4 + }, + "id": 117092571 + } + }, + { + "id": 117092124, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -3.6089637, + 37.1800358 + ], + [ + -3.6075618, + 37.1800358 + ], + [ + -3.6075618, + 37.1811233 + ], + [ + -3.6089637, + 37.1811233 + ], + [ + -3.6089637, + 37.1800358 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pipeton", + "uid": "11969052", + "editor": "MapComplete 0.15.4", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-06T19:33:01Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0.00000152456625000562, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 2, + "locale": "en", + "imagery": "osm" + }, + "id": 117092124 + } + }, + { + "id": 117086537, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.2503706, + 51.2378383 + ], + [ + 3.2504109, + 51.2378383 + ], + [ + 3.2504109, + 51.2379122 + ], + [ + 3.2503706, + 51.2379122 + ], + [ + 3.2503706, + 51.2378383 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.15.4", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-06T16:44:00Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 2.97816999985172e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "benches", + "answer": 1, + "create": 1, + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "move:node/9483811766": "improve_accuracy" + }, + "id": 117086537 + } + }, + { + "id": 117083441, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.953632, + 51.1447716 + ], + [ + 5.0131495, + 51.1447716 + ], + [ + 5.0131495, + 51.2367644 + ], + [ + 4.953632, + 51.2367644 + ], + [ + 4.953632, + 51.1447716 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.15.4", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-06T15:31:08Z", + "reviewed_features": [], + "create": 0, + "modify": 82, + "delete": 0, + "area": 0.005475181474, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 122, + "locale": "nl", + "imagery": "osm" + }, + "id": 117083441 + } + }, + { + "id": 117076107, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.9841892, + 51.1564028 + ], + [ + 5.0029191, + 51.1564028 + ], + [ + 5.0029191, + 51.1724997 + ], + [ + 4.9841892, + 51.1724997 + ], + [ + 4.9841892, + 51.1564028 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.15.4", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-06T11:47:44Z", + "reviewed_features": [], + "create": 0, + "modify": 38, + "delete": 0, + "area": 0.000301493327310007, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 45, + "locale": "nl", + "imagery": "osm" + }, + "id": 117076107 + } + }, + { + "id": 117075258, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.3069129, + 50.8342321 + ], + [ + 4.3069424, + 50.8342321 + ], + [ + 4.3069424, + 50.8342381 + ], + [ + 4.3069129, + 50.8342381 + ], + [ + 4.3069129, + 50.8342321 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Driesvr", + "uid": "4757701", + "editor": "MapComplete 0.15.4", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-06T11:23:13Z", + "reviewed_features": [], + "create": 1, + "modify": 5, + "delete": 0, + "area": 1.76999999967769e-10, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "cyclofix", + "answer": 6, + "create": 1, + "locale": "en", + "imagery": "CartoDB.Voyager", + "add-image": 1, + "move:node/9483033353": "improve_accuracy" + }, + "id": 117075258 + } + }, + { + "id": 117074726, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 12.6863261, + 51.0507916 + ], + [ + 12.7014004, + 51.0507916 + ], + [ + 12.7014004, + 51.1010766 + ], + [ + 12.6863261, + 51.1010766 + ], + [ + 12.6863261, + 51.0507916 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "shogun", + "uid": "94315", + "editor": "MapComplete 0.15.4", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-06T11:03:46Z", + "reviewed_features": [], + "create": 0, + "modify": 10, + "delete": 0, + "area": 0.000758011175500046, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "hailhydrant", + "answer": 11, + "locale": "en", + "imagery": "HDM_HOT" + }, + "id": 117074726 + } + }, + { + "id": 117074470, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.7388952, + 50.8125013 + ], + [ + 3.7390105, + 50.8125013 + ], + [ + 3.7390105, + 50.8125757 + ], + [ + 3.7388952, + 50.8125757 + ], + [ + 3.7388952, + 50.8125013 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "kbentekik", + "uid": "4495", + "editor": "MapComplete 0.15.4", + "comment": "Adding data with #MapComplete for theme #observation_towers", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-06T10:56:40Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 8.57831999948163e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "observation_towers", + "answer": 3, + "locale": "nl", + "imagery": "osm" + }, + "id": 117074470 + } + }, + { + "id": 117073294, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.559801, + 50.8492121 + ], + [ + 3.560135, + 50.8492121 + ], + [ + 3.560135, + 50.8493446 + ], + [ + 3.559801, + 50.8493446 + ], + [ + 3.559801, + 50.8492121 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "kbentekik", + "uid": "4495", + "editor": "MapComplete 0.15.4", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-06T10:23:06Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 4.42549999997565e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "answer": 2, + "locale": "nl", + "imagery": "osm" + }, + "id": 117073294 + } + }, + { + "id": 117073072, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.624339, + 50.8703127 + ], + [ + 3.624339, + 50.8703127 + ], + [ + 3.624339, + 50.8703127 + ], + [ + 3.624339, + 50.8703127 + ], + [ + 3.624339, + 50.8703127 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "kbentekik", + "uid": "4495", + "editor": "MapComplete 0.15.4", + "comment": "Adding data with #MapComplete for theme #fritures", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-06T10:15:47Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "fritures", + "answer": 6, + "locale": "nl", + "imagery": "osm" + }, + "id": 117073072 + } + }, + { + "id": 117072973, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.6139307, + 50.8442875 + ], + [ + 3.6158797, + 50.8442875 + ], + [ + 3.6158797, + 50.8464318 + ], + [ + 3.6139307, + 50.8464318 + ], + [ + 3.6139307, + 50.8442875 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "kbentekik", + "uid": "4495", + "editor": "MapComplete 0.15.4", + "comment": "Adding data with #MapComplete for theme #sport_pitches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-06T10:11:50Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.00000417924069999491, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "sport_pitches", + "answer": 4, + "locale": "en", + "imagery": "osm" + }, + "id": 117072973 + } + }, + { + "id": 117072647, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.5877942, + 50.7352587 + ], + [ + 3.5877942, + 50.7352587 + ], + [ + 3.5877942, + 50.7352587 + ], + [ + 3.5877942, + 50.7352587 + ], + [ + 3.5877942, + 50.7352587 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "kbentekik", + "uid": "4495", + "editor": "MapComplete 0.15.4", + "comment": "Adding data with #MapComplete for theme #climbing", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-06T10:00:32Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "climbing", + "answer": 5, + "locale": "en", + "imagery": "osm" + }, + "id": 117072647 + } + }, + { + "id": 117072390, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.6012411, + 50.8671691 + ], + [ + 3.6012411, + 50.8671691 + ], + [ + 3.6012411, + 50.8671691 + ], + [ + 3.6012411, + 50.8671691 + ], + [ + 3.6012411, + 50.8671691 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "kbentekik", + "uid": "4495", + "editor": "MapComplete 0.15.4", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 3, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-06T09:52:03Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "aed", + "answer": 4, + "create": 1, + "locale": "en", + "imagery": "osm" + }, + "id": 117072390 + } + }, + { + "id": 117071913, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.2344225, + 50.7377153 + ], + [ + 4.2344225, + 50.7377153 + ], + [ + 4.2344225, + 50.7377153 + ], + [ + 4.2344225, + 50.7377153 + ], + [ + 4.2344225, + 50.7377153 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.15.4", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-06T09:34:32Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 3, + "create": 1, + "locale": "nl", + "imagery": "AGIVFlandersGRB" + }, + "id": 117071913 + } + }, + { + "id": 117071461, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.5667178, + 50.7950119 + ], + [ + 3.6347119, + 50.7950119 + ], + [ + 3.6347119, + 50.8766053 + ], + [ + 3.5667178, + 50.8766053 + ], + [ + 3.5667178, + 50.7950119 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "kbentekik", + "uid": "4495", + "editor": "MapComplete 0.15.4", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-06T09:19:50Z", + "reviewed_features": [], + "create": 1, + "modify": 25, + "delete": 0, + "area": 0.00554786979894018, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 33, + "create": 1, + "locale": "en", + "imagery": "CartoDB.Voyager", + "change_over_5000m": 2, + "change_within_5000m": 18 + }, + "id": 117071461 + } + }, + { + "id": 117070044, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.0488154, + 52.3830947 + ], + [ + 13.0488154, + 52.3830947 + ], + [ + 13.0488154, + 52.3830947 + ], + [ + 13.0488154, + 52.3830947 + ], + [ + 13.0488154, + 52.3830947 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "hfs", + "uid": "9607", + "editor": "MapComplete 0.7.2l", + "comment": "Adding data with #MapComplete for theme #waldbrand", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-06T08:19:24Z", + "reviewed_features": [], + "create": 1, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "waldbrand-app.de", + "theme": "waldbrand", + "imagery": "osm", + "language": "de", + "theme-creator": "Sebastian Kürten" + }, + "id": 117070044 + } + }, + { + "id": 117067048, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 6.6332142, + 49.7415027 + ], + [ + 6.6418992, + 49.7415027 + ], + [ + 6.6418992, + 49.7473637 + ], + [ + 6.6332142, + 49.7473637 + ], + [ + 6.6332142, + 49.7415027 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "oudalricus", + "uid": "29752", + "editor": "MapComplete 0.15.4", + "comment": "Adding data with #MapComplete for theme #bookcases", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-06T04:49:30Z", + "reviewed_features": [], + "create": 2, + "modify": 2, + "delete": 0, + "area": 0.0000509027850000251, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "bookcases", + "answer": 5, + "create": 2, + "locale": "en", + "imagery": "osm", + "change_over_5000m": 2, + "change_within_500m": 3, + "change_within_5000m": 2 + }, + "id": 117067048 + } + }, + { + "id": 117066501, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -70.5763384, + -33.5892201 + ], + [ + -70.5761209, + -33.5892201 + ], + [ + -70.5761209, + -33.5891396 + ], + [ + -70.5763384, + -33.5891396 + ], + [ + -70.5763384, + -33.5892201 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.15.4", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-06T03:36:36Z", + "reviewed_features": [], + "create": 1, + "modify": 3, + "delete": 0, + "area": 1.75087499983324e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "trees", + "answer": 1, + "create": 1, + "locale": "en", + "imagery": "EsriWorldImagery", + "add-image": 3, + "change_over_5000m": 1, + "change_within_1000m": 4 + }, + "id": 117066501 + } + }, + { + "id": 117065334, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.3293576, + 50.9330894 + ], + [ + 4.3293576, + 50.9330894 + ], + [ + 4.3293576, + 50.9330894 + ], + [ + 4.3293576, + 50.9330894 + ], + [ + 4.3293576, + 50.9330894 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.15.4", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-06T01:28:05Z", + "reviewed_features": [], + "create": 1, + "modify": 4, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 4, + "create": 1, + "locale": "en", + "imagery": "osm", + "add-image": 1 + }, + "id": 117065334 + } + }, + { + "id": 117065156, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.3297518, + 50.9331187 + ], + [ + 4.3310669, + 50.9331187 + ], + [ + 4.3310669, + 50.9337452 + ], + [ + 4.3297518, + 50.9337452 + ], + [ + 4.3297518, + 50.9331187 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.15.4", + "comment": "Adding data with #MapComplete for theme #cyclestreets", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-06T01:11:22Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 8.23910149993863e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "cyclestreets", + "locale": "en", + "imagery": "osm", + "add-image": 2 + }, + "id": 117065156 + } + }, + { + "id": 117063791, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.0774627, + 51.0005565 + ], + [ + 5.3340983, + 51.0005565 + ], + [ + 5.3340983, + 51.0130005 + ], + [ + 4.0774627, + 51.0130005 + ], + [ + 4.0774627, + 51.0005565 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.15.4", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-05T23:19:52Z", + "reviewed_features": [], + "create": 87, + "modify": 99, + "delete": 0, + "area": 0.0156375734063937, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "move": 87, + "theme": "grb", + "answer": 3, + "import": 14, + "locale": "nl", + "imagery": "osm", + "conflation": 20, + "change_over_5000m": 14 + }, + "id": 117063791 + } + }, + { + "id": 117062931, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 2.9490609, + 51.2236122 + ], + [ + 2.9496488, + 51.2236122 + ], + [ + 2.9496488, + 51.2241226 + ], + [ + 2.9490609, + 51.2241226 + ], + [ + 2.9490609, + 51.2236122 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.15.4", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-05T22:31:34Z", + "reviewed_features": [], + "create": 12, + "modify": 40, + "delete": 0, + "area": 3.00064160001714e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "move": 38, + "theme": "grb", + "locale": "nl", + "imagery": "osm", + "conflation": 4 + }, + "id": 117062931 + } + }, + { + "id": 117062564, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.4708848, + 51.0389621 + ], + [ + 4.4766978, + 51.0389621 + ], + [ + 4.4766978, + 51.0439392 + ], + [ + 4.4708848, + 51.0439392 + ], + [ + 4.4708848, + 51.0389621 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.15.4", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-05T22:12:29Z", + "reviewed_features": [], + "create": 0, + "modify": 32, + "delete": 0, + "area": 0.0000289318822999867, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "etymology", + "answer": 33, + "locale": "nl", + "imagery": "osm" + }, + "id": 117062564 + } + }, + { + "id": 117061161, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.6995421, + 50.9461506 + ], + [ + 4.7022597, + 50.9461506 + ], + [ + 4.7022597, + 50.9475972 + ], + [ + 4.6995421, + 50.9475972 + ], + [ + 4.6995421, + 50.9461506 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.15.4", + "comment": "Adding data with #MapComplete for theme #cyclestreets", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-05T21:07:17Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000393128015998355, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "cyclestreets", + "locale": "en", + "imagery": "osm", + "add-image": 1 + }, + "id": 117061161 + } + }, + { + "id": 117061124, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.3505589, + 50.8534436 + ], + [ + 4.3505589, + 50.8534436 + ], + [ + 4.3505589, + 50.8534436 + ], + [ + 4.3505589, + 50.8534436 + ], + [ + 4.3505589, + 50.8534436 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.15.4", + "comment": "Adding data with #MapComplete for theme #bicycle_rental", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-05T21:05:37Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "bicycle_rental", + "answer": 2, + "locale": "en", + "imagery": "osm" + }, + "id": 117061124 + } + }, + { + "id": 117060916, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.3848027, + 50.8537825 + ], + [ + 4.3848027, + 50.8537825 + ], + [ + 4.3848027, + 50.8537825 + ], + [ + 4.3848027, + 50.8537825 + ], + [ + 4.3848027, + 50.8537825 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.15.4", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-05T20:57:19Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "locale": "en", + "imagery": "CartoDB.Voyager", + "add-image": 1 + }, + "id": 117060916 + } + }, + { + "id": 117060144, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.2003085, + 50.4646397 + ], + [ + 4.232723, + 50.4646397 + ], + [ + 4.232723, + 50.5009176 + ], + [ + 4.2003085, + 50.5009176 + ], + [ + 4.2003085, + 50.4646397 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "jas7100", + "uid": "15023699", + "editor": "MapComplete 0.15.4", + "comment": "Adding data with #MapComplete for theme #surveillance", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-05T20:30:50Z", + "reviewed_features": [], + "create": 3, + "modify": 0, + "delete": 0, + "area": 0.00117592998955005, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "surveillance", + "answer": 7, + "create": 3, + "locale": "fr", + "imagery": "osm" + }, + "id": 117060144 + } + }, + { + "id": 117057746, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -3.6082716, + 37.1758055 + ], + [ + -3.5975352, + 37.1758055 + ], + [ + -3.5975352, + 37.1931918 + ], + [ + -3.6082716, + 37.1931918 + ], + [ + -3.6082716, + 37.1758055 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pipeton", + "uid": "11969052", + "editor": "MapComplete 0.15.4", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-05T19:14:33Z", + "reviewed_features": [], + "create": 0, + "modify": 13, + "delete": 0, + "area": 0.000186666271319987, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 18, + "locale": "en", + "imagery": "osm" + }, + "id": 117057746 + } + }, + { + "id": 117055064, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -70.6200119, + -33.4152875 + ], + [ + -70.6199099, + -33.4152875 + ], + [ + -70.6199099, + -33.415181 + ], + [ + -70.6200119, + -33.415181 + ], + [ + -70.6200119, + -33.4152875 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Awo", + "uid": "196556", + "editor": "MapComplete 0.15.4", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-05T17:50:08Z", + "reviewed_features": [], + "create": 2, + "modify": 4, + "delete": 0, + "area": 1.086299999993e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "trees", + "answer": 2, + "create": 2, + "locale": "en", + "imagery": "EsriWorldImagery", + "add-image": 2, + "change_over_5000m": 2, + "change_within_25m": 4 + }, + "id": 117055064 + } + }, + { + "id": 117047039, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.6993572, + 51.0548482 + ], + [ + 3.6993572, + 51.0548482 + ], + [ + 3.6993572, + 51.0548482 + ], + [ + 3.6993572, + 51.0548482 + ], + [ + 3.6993572, + 51.0548482 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.15.4", + "comment": "Adding data with #MapComplete for theme #climbing", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-05T14:28:52Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "climbing", + "answer": 1, + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_within_50m": 1 + }, + "id": 117047039 + } + }, + { + "id": 117046304, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.4279919, + 50.8954137 + ], + [ + 3.4279919, + 50.8954137 + ], + [ + 3.4279919, + 50.8954137 + ], + [ + 3.4279919, + 50.8954137 + ], + [ + 3.4279919, + 50.8954137 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.15.4", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-05T14:11:48Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 2, + "locale": "en", + "imagery": "CartoDB.Voyager" + }, + "id": 117046304 + } + }, + { + "id": 117042748, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -3.6226222, + 37.1764844 + ], + [ + -3.597922, + 37.1764844 + ], + [ + -3.597922, + 37.2098153 + ], + [ + -3.6226222, + 37.2098153 + ], + [ + -3.6226222, + 37.1764844 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pipeton", + "uid": "11969052", + "editor": "MapComplete 0.15.4", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-05T12:28:57Z", + "reviewed_features": [], + "create": 0, + "modify": 34, + "delete": 0, + "area": 0.000823279896180065, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 49, + "locale": "en", + "imagery": "osm" + }, + "id": 117042748 + } + }, + { + "id": 117038736, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.5032707, + 50.8839614 + ], + [ + 4.5082809, + 50.8839614 + ], + [ + 4.5082809, + 50.8843848 + ], + [ + 4.5032707, + 50.8843848 + ], + [ + 4.5032707, + 50.8839614 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thierry1030", + "uid": "286563", + "editor": "MapComplete 0.15.4", + "comment": "Adding data with #MapComplete for theme #cyclestreets", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-05T10:30:35Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000212131868001264, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "cyclestreets", + "locale": "en", + "imagery": "osm", + "add-image": 1 + }, + "id": 117038736 + } + }, + { + "id": 117026389, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -0.4804213, + 38.3552983 + ], + [ + -0.0276139, + 38.3552983 + ], + [ + -0.0276139, + 39.983386 + ], + [ + -0.4804213, + 39.983386 + ], + [ + -0.4804213, + 38.3552983 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Jordi MF", + "uid": "8278438", + "editor": "MapComplete 0.15.4", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/yopaseopor/mcquests/master/nameca.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-04T23:08:30Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 0.737210158408981, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "https://raw.githubusercontent.com/yopaseopor/mcquests/master/nameca.json", + "answer": 3, + "locale": "ca", + "imagery": "osm" + }, + "id": 117026389 + } + }, + { + "id": 117024588, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -1.7458396, + 54.5353513 + ], + [ + -1.4974843, + 54.5353513 + ], + [ + -1.4974843, + 54.6969542 + ], + [ + -1.7458396, + 54.6969542 + ], + [ + -1.7458396, + 54.5353513 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "confusedbuffalo", + "uid": "242345", + "editor": "MapComplete 0.15.4", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-04T22:22:16Z", + "reviewed_features": [], + "create": 0, + "modify": 90, + "delete": 0, + "area": 0.0401349367103696, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 132, + "locale": "en", + "imagery": "osm" + }, + "id": 117024588 + } + }, + { + "id": 117024181, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -73.9586471, + 40.7358133 + ], + [ + -73.9586471, + 40.7358133 + ], + [ + -73.9586471, + 40.7358133 + ], + [ + -73.9586471, + 40.7358133 + ], + [ + -73.9586471, + 40.7358133 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Stereo", + "uid": "40611", + "editor": "MapComplete 0.15.4", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-04T22:09:40Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 1, + "locale": "en", + "imagery": "CartoDB.Voyager" + }, + "id": 117024181 + } + }, + { + "id": 117020965, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.7001051, + 51.0525401 + ], + [ + 3.7001051, + 51.0525401 + ], + [ + 3.7001051, + 51.0525401 + ], + [ + 3.7001051, + 51.0525401 + ], + [ + 3.7001051, + 51.0525401 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.15.4", + "comment": "Adding data with #MapComplete for theme #fritures", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-04T20:14:36Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "fritures", + "answer": 1, + "locale": "nl", + "imagery": "osm", + "change_within_25m": 1 + }, + "id": 117020965 + } + }, + { + "id": 117020021, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -1.5228447, + 54.7322004 + ], + [ + -1.317749, + 54.7322004 + ], + [ + -1.317749, + 54.8476547 + ], + [ + -1.5228447, + 54.8476547 + ], + [ + -1.5228447, + 54.7322004 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "confusedbuffalo", + "uid": "242345", + "editor": "MapComplete 0.15.4", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-04T19:40:45Z", + "reviewed_features": [], + "create": 0, + "modify": 116, + "delete": 0, + "area": 0.0236791804765092, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 165, + "locale": "en", + "imagery": "osm" + }, + "id": 117020021 + } + }, + { + "id": 117015486, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -1.8340356, + 54.8719747 + ], + [ + -1.3873431, + 54.8719747 + ], + [ + -1.3873431, + 55.0062506 + ], + [ + -1.8340356, + 55.0062506 + ], + [ + -1.8340356, + 54.8719747 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "confusedbuffalo", + "uid": "242345", + "editor": "MapComplete 0.15.4", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-04T17:22:57Z", + "reviewed_features": [], + "create": 0, + "modify": 142, + "delete": 0, + "area": 0.0599800374607494, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 218, + "locale": "en", + "imagery": "osm" + }, + "id": 117015486 + } + }, + { + "id": 117011429, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 11.8755227, + 47.9883074 + ], + [ + 11.8755227, + 47.9883074 + ], + [ + 11.8755227, + 47.9883074 + ], + [ + 11.8755227, + 47.9883074 + ], + [ + 11.8755227, + 47.9883074 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "bollyboll", + "uid": "12120321", + "editor": "MapComplete 0.15.4", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-04T15:35:16Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "answer": 1, + "create": 1, + "locale": "de", + "imagery": "osm", + "change_over_5000m": 1, + "change_within_100m": 1 + }, + "id": 117011429 + } + }, + { + "id": 117011189, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -3.6185387, + 37.1687518 + ], + [ + -3.5963848, + 37.1687518 + ], + [ + -3.5963848, + 37.1842364 + ], + [ + -3.6185387, + 37.1842364 + ], + [ + -3.6185387, + 37.1687518 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pipeton", + "uid": "11969052", + "editor": "MapComplete 0.15.4", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-04T15:28:35Z", + "reviewed_features": [], + "create": 0, + "modify": 51, + "delete": 0, + "area": 0.000343044279940017, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 69, + "locale": "en", + "imagery": "osm" + }, + "id": 117011189 + } + }, + { + "id": 117009200, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.5144967, + 51.2274513 + ], + [ + 4.5144967, + 51.2274513 + ], + [ + 4.5144967, + 51.2274513 + ], + [ + 4.5144967, + 51.2274513 + ], + [ + 4.5144967, + 51.2274513 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Locatus_Raf", + "uid": "14799940", + "editor": "MapComplete 0.15.4", + "comment": "Adding data with #MapComplete for theme #https://gist.githubusercontent.com/joostschouppe/4f631b3f658b67bcfafd56b731c726dc/raw/d39021f0731179a8105531f2e4254d1fe4a6eacf/locatus.json", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-04T14:32:33Z", + "reviewed_features": [], + "create": 0, + "modify": 0, + "delete": 1, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "https://gist.githubusercontent.com/joostschouppe/4f631b3f658b67bcfafd56b731c726dc/raw/d39021f0731179a8105531f2e4254d1fe4a6eacf/locatus.json", + "locale": "nl", + "imagery": "osm", + "deletion": 1, + "deletion:node/8264901851": "not found" + }, + "id": 117009200 + } + }, + { + "id": 117007591, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -58.4142745, + -34.60851 + ], + [ + -58.4142745, + -34.60851 + ], + [ + -58.4142745, + -34.60851 + ], + [ + -58.4142745, + -34.60851 + ], + [ + -58.4142745, + -34.60851 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.15.4", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-04T13:49:01Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", + "answer": 5, + "create": 1, + "locale": "es", + "imagery": "EsriWorldImageryClarity", + "change_over_5000m": 1, + "change_within_100m": 5 + }, + "id": 117007591 + } + }, + { + "id": 117003771, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.4143578, + 50.8202931 + ], + [ + 4.4143588, + 50.8202931 + ], + [ + 4.4143588, + 50.8202941 + ], + [ + 4.4143578, + 50.8202941 + ], + [ + 4.4143578, + 50.8202931 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "StefDeGreef", + "uid": "1860737", + "editor": "MapComplete 0.15.4", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-04T11:58:30Z", + "reviewed_features": [], + "create": 2, + "modify": 4, + "delete": 1, + "area": 9.99999996726842e-13, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 7, + "create": 2, + "locale": "fr", + "imagery": "AGIV", + "deletion": 1, + "add-image": 2, + "change_over_5000m": 2, + "change_within_25m": 10, + "deletion:node/9474148329": "mauvaise catégorie" + }, + "id": 117003771 + } + }, + { + "id": 117000670, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.2373959, + 51.078721 + ], + [ + 3.4913433, + 51.078721 + ], + [ + 3.4913433, + 51.1885224 + ], + [ + 3.2373959, + 51.1885224 + ], + [ + 3.2373959, + 51.078721 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "L'imaginaire", + "uid": "654234", + "editor": "MapComplete 0.15.4", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-04T10:50:55Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 0.0278837800463587, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "benches", + "locale": "nl", + "imagery": "osm", + "add-image": 5, + "change_within_5000m": 1 + }, + "id": 117000670 + } + }, + { + "id": 116999217, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.9999913, + 50.9139913 + ], + [ + 5.00031, + 50.9139913 + ], + [ + 5.00031, + 50.9142456 + ], + [ + 4.9999913, + 50.9142456 + ], + [ + 4.9999913, + 50.9139913 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Stinus_Clasius", + "uid": "1086503", + "editor": "MapComplete 0.15.4", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-04T10:18:16Z", + "reviewed_features": [], + "create": 21, + "modify": 0, + "delete": 0, + "area": 8.10454100006014e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "grb", + "import": 1, + "locale": "nl", + "imagery": "osm" + }, + "id": 116999217 + } + }, + { + "id": 116999189, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -0.047145, + 51.4930966 + ], + [ + -0.0466357, + 51.4930966 + ], + [ + -0.0466357, + 51.49325 + ], + [ + -0.047145, + 51.49325 + ], + [ + -0.047145, + 51.4930966 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "quantumstate", + "uid": "71337", + "editor": "MapComplete 0.15.4", + "comment": "Adding data with #MapComplete for theme #sidewalks", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-04T10:17:42Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 7.81266200010587e-8, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "sidewalks", + "answer": 3, + "locale": "en", + "imagery": "osm" + }, + "id": 116999189 + } + }, + { + "id": 116992786, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 11.8102665, + 48.019413 + ], + [ + 11.8116868, + 48.019413 + ], + [ + 11.8116868, + 48.0219524 + ], + [ + 11.8102665, + 48.0219524 + ], + [ + 11.8102665, + 48.019413 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "bollyboll", + "uid": "12120321", + "editor": "MapComplete 0.15.4", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-04T07:25:27Z", + "reviewed_features": [], + "create": 7, + "modify": 0, + "delete": 0, + "area": 0.00000360670982000805, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "answer": 3, + "create": 7, + "locale": "de", + "imagery": "osm", + "change_over_5000m": 7, + "change_within_25m": 2, + "change_within_50m": 1 + }, + "id": 116992786 + } + }, + { + "id": 116992590, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 10.7639762, + 49.6278908 + ], + [ + 10.7686397, + 49.6278908 + ], + [ + 10.7686397, + 49.6324979 + ], + [ + 10.7639762, + 49.6324979 + ], + [ + 10.7639762, + 49.6278908 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "womped", + "uid": "1880469", + "editor": "MapComplete 0.15.4", + "comment": "Adding data with #MapComplete for theme #openwindpowermap", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-04T07:18:58Z", + "reviewed_features": [], + "create": 0, + "modify": 5, + "delete": 0, + "area": 0.0000214852108499701, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "openwindpowermap", + "answer": 5, + "locale": "en", + "imagery": "CartoDB.Voyager" + }, + "id": 116992590 + } + }, + { + "id": 116985905, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.2006452, + 51.2102969 + ], + [ + 3.2243449, + 51.2102969 + ], + [ + 3.2243449, + 51.2496012 + ], + [ + 3.2006452, + 51.2496012 + ], + [ + 3.2006452, + 51.2102969 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.15.4", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-04T01:31:08Z", + "reviewed_features": [], + "create": 0, + "modify": 8, + "delete": 0, + "area": 0.000931500118709959, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "shops", + "answer": 8, + "locale": "en", + "imagery": "osm", + "change_within_1000m": 1, + "change_within_5000m": 7 + }, + "id": 116985905 + } + }, + { + "id": 116985783, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.7086034, + 51.0371267 + ], + [ + 3.7086034, + 51.0371267 + ], + [ + 3.7086034, + 51.0371267 + ], + [ + 3.7086034, + 51.0371267 + ], + [ + 3.7086034, + 51.0371267 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.15.4", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-04T01:20:24Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "cyclofix", + "answer": 1, + "locale": "nl", + "imagery": "CartoDB.Voyager", + "change_over_5000m": 1 + }, + "id": 116985783 + } + }, + { + "id": 116982670, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -1.8804471, + 54.8138866 + ], + [ + -1.5879136, + 54.8138866 + ], + [ + -1.5879136, + 54.9778917 + ], + [ + -1.8804471, + 54.9778917 + ], + [ + -1.8804471, + 54.8138866 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 91, + "name": "Motorway/trunk geometry modified" + } + ], + "tags": [], + "features": [ + { + "url": "way-975389803", + "name": "Consett Road", + "osm_id": 975389803, + "reasons": [ + 91 + ], + "version": 4, + "primary_tags": { + "highway": "trunk" + } + } + ], + "user": "confusedbuffalo", + "uid": "242345", + "editor": "MapComplete 0.15.3", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-03T22:29:42Z", + "reviewed_features": [], + "create": 0, + "modify": 81, + "delete": 0, + "area": 0.0479769859208512, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 123, + "locale": "en", + "imagery": "osm" + }, + "id": 116982670 + } + }, + { + "id": 116975972, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -1.7713918, + 54.6557743 + ], + [ + -1.5378977, + 54.6557743 + ], + [ + -1.5378977, + 54.7780057 + ], + [ + -1.7713918, + 54.7780057 + ], + [ + -1.7713918, + 54.6557743 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "confusedbuffalo", + "uid": "242345", + "editor": "MapComplete 0.15.3", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-03T18:30:09Z", + "reviewed_features": [], + "create": 0, + "modify": 109, + "delete": 0, + "area": 0.0285403107347409, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 165, + "locale": "en", + "imagery": "osm" + }, + "id": 116975972 + } + }, + { + "id": 116970091, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.3006754, + 50.8825968 + ], + [ + 4.3006754, + 50.8825968 + ], + [ + 4.3006754, + 50.8825968 + ], + [ + 4.3006754, + 50.8825968 + ], + [ + 4.3006754, + 50.8825968 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "milenasonneveld", + "uid": "8177639", + "editor": "MapComplete 0.15.3", + "comment": "Adding data with #MapComplete for theme #climbing", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-03T15:44:58Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "climbing", + "answer": 2, + "create": 1, + "locale": "en", + "imagery": "osm", + "add-image": 1, + "change_over_5000m": 1, + "change_within_25m": 3 + }, + "id": 116970091 + } + }, + { + "id": 116966319, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.3630863, + 50.9960832 + ], + [ + 5.3630863, + 50.9960832 + ], + [ + 5.3630863, + 50.9960832 + ], + [ + 5.3630863, + 50.9960832 + ], + [ + 5.3630863, + 50.9960832 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.15.3", + "comment": "Adding data with #MapComplete for theme #aed", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-03T14:04:40Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "aed", + "answer": 4, + "create": 1, + "locale": "nl", + "imagery": "osm", + "change_over_5000m": 1, + "change_within_5000m": 4 + }, + "id": 116966319 + } + }, + { + "id": 116963372, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -58.7921441, + -34.6497892 + ], + [ + -58.7921441, + -34.6497892 + ], + [ + -58.7921441, + -34.6497892 + ], + [ + -58.7921441, + -34.6497892 + ], + [ + -58.7921441, + -34.6497892 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "AgusQui", + "uid": "331218", + "editor": "MapComplete 0.15.3", + "comment": "Adding data with #MapComplete for theme #https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-03T13:00:07Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "https://raw.githubusercontent.com/AgusQui/MapCompleteRailway/main/Signals", + "answer": 4, + "create": 1, + "locale": "es", + "imagery": "osm", + "change_over_5000m": 1, + "change_within_25m": 4 + }, + "id": 116963372 + } + }, + { + "id": 116961725, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.2045793, + 51.2231139 + ], + [ + 3.2045793, + 51.2231139 + ], + [ + 3.2045793, + 51.2231139 + ], + [ + 3.2045793, + 51.2231139 + ], + [ + 3.2045793, + 51.2231139 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.15.3", + "comment": "Adding data with #MapComplete for theme #shops", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-03T12:22:28Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "shops", + "answer": 2, + "locale": "en", + "imagery": "osm", + "add-image": 1, + "change_within_100m": 3 + }, + "id": 116961725 + } + }, + { + "id": 116958998, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.5, + 51.2224491 + ], + [ + 4.5054352, + 51.2224491 + ], + [ + 4.5054352, + 51.2241332 + ], + [ + 4.5, + 51.2241332 + ], + [ + 4.5, + 51.2224491 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Locatus_Raf", + "uid": "14799940", + "editor": "MapComplete 0.15.3", + "comment": "Adding data with #MapComplete for theme #https://gist.githubusercontent.com/joostschouppe/4f631b3f658b67bcfafd56b731c726dc/raw/d39021f0731179a8105531f2e4254d1fe4a6eacf/locatus.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-03T11:18:10Z", + "reviewed_features": [], + "create": 6, + "modify": 11, + "delete": 0, + "area": 0.00000915342031999193, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "https://gist.githubusercontent.com/joostschouppe/4f631b3f658b67bcfafd56b731c726dc/raw/d39021f0731179a8105531f2e4254d1fe4a6eacf/locatus.json", + "answer": 8, + "create": 6, + "locale": "nl", + "imagery": "osm", + "add-image": 7, + "change_over_5000m": 6, + "change_within_25m": 1, + "change_within_50m": 3, + "change_within_100m": 6, + "change_within_500m": 5 + }, + "id": 116958998 + } + }, + { + "id": 116958369, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.8585203, + 51.1416444 + ], + [ + 4.9321125, + 51.1416444 + ], + [ + 4.9321125, + 51.1543244 + ], + [ + 4.8585203, + 51.1543244 + ], + [ + 4.8585203, + 51.1416444 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 57, + "name": "Feature overlaps with existing features" + } + ], + "tags": [], + "features": [ + { + "url": "way-1027348440", + "osm_id": 1027348440, + "reasons": [ + 57 + ], + "version": 1, + "primary_tags": { + "building": "yes" + } + } + ], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.15.3", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-03T11:03:53Z", + "reviewed_features": [], + "create": 65, + "modify": 82, + "delete": 1, + "area": 0.000933149096000222, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "move": 70, + "theme": "grb", + "answer": 1, + "delete": 1, + "import": 2, + "locale": "nl", + "imagery": "osm", + "conflation": 26 + }, + "id": 116958369 + } + }, + { + "id": 116957163, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 16.3646879, + 48.1690215 + ], + [ + 16.3768684, + 48.1690215 + ], + [ + 16.3768684, + 48.1711088 + ], + [ + 16.3646879, + 48.1711088 + ], + [ + 16.3646879, + 48.1690215 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "ladoga", + "uid": "827957", + "editor": "MapComplete 0.15.3", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-03T10:38:42Z", + "reviewed_features": [], + "create": 0, + "modify": 6, + "delete": 0, + "area": 0.0000254243576499923, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 8, + "locale": "de", + "imagery": "osm" + }, + "id": 116957163 + } + }, + { + "id": 116954133, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.0359338, + 51.144863 + ], + [ + 5.0365486, + 51.144863 + ], + [ + 5.0365486, + 51.1452192 + ], + [ + 5.0359338, + 51.1452192 + ], + [ + 5.0359338, + 51.144863 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.15.3", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-03T09:32:58Z", + "reviewed_features": [], + "create": 6, + "modify": 19, + "delete": 0, + "area": 2.18991759999316e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "move": 16, + "theme": "grb", + "locale": "nl", + "imagery": "osm", + "conflation": 6 + }, + "id": 116954133 + } + }, + { + "id": 116954048, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.498719, + 51.2202058 + ], + [ + 4.5088953, + 51.2202058 + ], + [ + 4.5088953, + 51.2247144 + ], + [ + 4.498719, + 51.2247144 + ], + [ + 4.498719, + 51.2202058 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Locatus_Raf", + "uid": "14799940", + "editor": "MapComplete 0.15.3", + "comment": "Adding data with #MapComplete for theme #https://gist.githubusercontent.com/joostschouppe/4f631b3f658b67bcfafd56b731c726dc/raw/d39021f0731179a8105531f2e4254d1fe4a6eacf/locatus.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-03T09:31:10Z", + "reviewed_features": [], + "create": 12, + "modify": 16, + "delete": 0, + "area": 0.0000458808661800098, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "move": 3, + "theme": "https://gist.githubusercontent.com/joostschouppe/4f631b3f658b67bcfafd56b731c726dc/raw/d39021f0731179a8105531f2e4254d1fe4a6eacf/locatus.json", + "answer": 12, + "create": 12, + "locale": "nl", + "imagery": "osm", + "add-image": 11, + "change_over_5000m": 12, + "change_within_25m": 14, + "change_within_100m": 8, + "change_within_500m": 4, + "move:node/9471164305": "improve_accuracy", + "move:node/9471270450": "improve_accuracy", + "move:node/9471273002": "improve_accuracy" + }, + "id": 116954048 + } + }, + { + "id": 116948018, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 11.7879398, + 48.0076587 + ], + [ + 11.7879398, + 48.0076587 + ], + [ + 11.7879398, + 48.0076587 + ], + [ + 11.7879398, + 48.0076587 + ], + [ + 11.7879398, + 48.0076587 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "bollyboll", + "uid": "12120321", + "editor": "MapComplete 0.15.3", + "comment": "Adding data with #MapComplete for theme #hailhydrant", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-03T06:49:21Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "hailhydrant", + "create": 1, + "locale": "de", + "imagery": "osm", + "change_over_5000m": 1 + }, + "id": 116948018 + } + }, + { + "id": 116938373, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.9730452, + 50.8484767 + ], + [ + 5.0140859, + 50.8484767 + ], + [ + 5.0140859, + 50.9795608 + ], + [ + 4.9730452, + 50.9795608 + ], + [ + 4.9730452, + 50.8484767 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Stinus_Clasius", + "uid": "1086503", + "editor": "MapComplete 0.15.3", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-02T22:28:13Z", + "reviewed_features": [], + "create": 78, + "modify": 0, + "delete": 0, + "area": 0.00537978322287021, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "grb", + "import": 10, + "locale": "nl", + "imagery": "osm" + }, + "id": 116938373 + } + }, + { + "id": 116935775, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.2316612, + 50.7323588 + ], + [ + 4.249092, + 50.7323588 + ], + [ + 4.249092, + 50.7412338 + ], + [ + 4.2316612, + 50.7412338 + ], + [ + 4.2316612, + 50.7323588 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "joost schouppe", + "uid": "67832", + "editor": "MapComplete 0.15.3", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-02T20:56:15Z", + "reviewed_features": [], + "create": 1, + "modify": 9, + "delete": 0, + "area": 0.000154698350000062, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "move": 6, + "theme": "cyclofix", + "answer": 4, + "create": 1, + "locale": "nl", + "imagery": "AGIV", + "add-image": 8, + "change_within_25m": 6, + "change_within_50m": 6, + "move:node/9246056984": "improve_accuracy" + }, + "id": 116935775 + } + }, + { + "id": 116935227, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.5063829, + 51.1189978 + ], + [ + 4.5457594, + 51.1189978 + ], + [ + 4.5457594, + 51.1486483 + ], + [ + 4.5063829, + 51.1486483 + ], + [ + 4.5063829, + 51.1189978 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Stinus_Clasius", + "uid": "1086503", + "editor": "MapComplete 0.15.3", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-02T20:41:45Z", + "reviewed_features": [], + "create": 83, + "modify": 6, + "delete": 0, + "area": 0.0011675329132498, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "move": 4, + "theme": "grb", + "answer": 2, + "import": 7, + "locale": "nl", + "imagery": "osm", + "conflation": 2 + }, + "id": 116935227 + } + }, + { + "id": 116925894, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.9946355, + 51.1334005 + ], + [ + 5.0379172, + 51.1334005 + ], + [ + 5.0379172, + 51.1450359 + ], + [ + 4.9946355, + 51.1450359 + ], + [ + 4.9946355, + 51.1334005 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.15.3", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-02T17:17:19Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 0.000503599892180124, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "benches", + "answer": 5, + "locale": "nl", + "imagery": "osm", + "move:node/1706000858": "improve_accuracy" + }, + "id": 116925894 + } + }, + { + "id": 116923770, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.0418765, + 51.1515337 + ], + [ + 5.0418975, + 51.1515337 + ], + [ + 5.0418975, + 51.1515359 + ], + [ + 5.0418765, + 51.1515359 + ], + [ + 5.0418765, + 51.1515337 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.15.3", + "comment": "Adding data with #MapComplete for theme #nature", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-02T16:52:31Z", + "reviewed_features": [], + "create": 0, + "modify": 6, + "delete": 0, + "area": 4.61999999436376e-11, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "nature", + "locale": "nl", + "imagery": "osm", + "add-image": 6 + }, + "id": 116923770 + } + }, + { + "id": 116920011, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.0341848, + 51.1492532 + ], + [ + 5.0351863, + 51.1492532 + ], + [ + 5.0351863, + 51.1514538 + ], + [ + 5.0341848, + 51.1514538 + ], + [ + 5.0341848, + 51.1492532 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.15.3", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-02T15:56:24Z", + "reviewed_features": [], + "create": 0, + "modify": 6, + "delete": 0, + "area": 0.00000220390090000211, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 7, + "locale": "nl", + "imagery": "osm", + "add-image": 1 + }, + "id": 116920011 + } + }, + { + "id": 116919912, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.0377786, + 51.144746 + ], + [ + 5.0414998, + 51.144746 + ], + [ + 5.0414998, + 51.145517 + ], + [ + 5.0377786, + 51.145517 + ], + [ + 5.0377786, + 51.144746 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.15.3", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-02T15:54:11Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0.00000286904520000127, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "etymology", + "locale": "nl", + "imagery": "osm", + "add-image": 1 + }, + "id": 116919912 + } + }, + { + "id": 116919820, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.0150035, + 51.1428292 + ], + [ + 5.0150035, + 51.1428292 + ], + [ + 5.0150035, + 51.1428292 + ], + [ + 5.0150035, + 51.1428292 + ], + [ + 5.0150035, + 51.1428292 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.15.3", + "comment": "Adding data with #MapComplete for theme #nature", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-02T15:51:54Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "nature", + "locale": "nl", + "imagery": "osm", + "add-image": 1 + }, + "id": 116919820 + } + }, + { + "id": 116919481, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.0149785, + 51.1428032 + ], + [ + 5.0149785, + 51.1428032 + ], + [ + 5.0149785, + 51.1428032 + ], + [ + 5.0149785, + 51.1428032 + ], + [ + 5.0149785, + 51.1428032 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.15.3", + "comment": "Adding data with #MapComplete for theme #benches", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-02T15:44:38Z", + "reviewed_features": [], + "create": 0, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "benches", + "answer": 5, + "locale": "nl", + "imagery": "osm", + "add-image": 1 + }, + "id": 116919481 + } + }, + { + "id": 116915898, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 18.9798036, + 47.6909891 + ], + [ + 18.9798478, + 47.6909891 + ], + [ + 18.9798478, + 47.6910172 + ], + [ + 18.9798036, + 47.6910172 + ], + [ + 18.9798036, + 47.6909891 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "GBAB", + "uid": "3335899", + "editor": "MapComplete 0.15.3", + "comment": "Adding data with #MapComplete for theme #observation_towers", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-02T14:21:11Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 1.24201999979239e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "observation_towers", + "answer": 2, + "locale": "en", + "imagery": "osm" + }, + "id": 116915898 + } + }, + { + "id": 116911694, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.2249977, + 51.210513 + ], + [ + 3.2249977, + 51.210513 + ], + [ + 3.2249977, + 51.210513 + ], + [ + 3.2249977, + 51.210513 + ], + [ + 3.2249977, + 51.210513 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.15.3", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-02T12:39:25Z", + "reviewed_features": [], + "create": 0, + "modify": 0, + "delete": 1, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "cyclofix", + "locale": "en", + "imagery": "CartoDB.Voyager", + "deletion": 1, + "change_within_500m": 1, + "deletion:node/9425818877": "duplicate" + }, + "id": 116911694 + } + }, + { + "id": 116909437, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.2367616, + 51.1883955 + ], + [ + 3.2375599, + 51.1883955 + ], + [ + 3.2375599, + 51.1887126 + ], + [ + 3.2367616, + 51.1887126 + ], + [ + 3.2367616, + 51.1883955 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.15.3", + "comment": "Adding data with #MapComplete for theme #test", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-02T11:42:42Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 2.5314093000299e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "test", + "answer": 1, + "locale": "nl", + "imagery": "osm", + "change_within_50m": 1 + }, + "id": 116909437 + } + }, + { + "id": 116909356, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.2264824, + 51.1883955 + ], + [ + 3.2375599, + 51.1883955 + ], + [ + 3.2375599, + 51.1991918 + ], + [ + 3.2264824, + 51.1991918 + ], + [ + 3.2264824, + 51.1883955 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.15.3", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-02T11:40:35Z", + "reviewed_features": [], + "create": 0, + "modify": 7, + "delete": 0, + "area": 0.000119596013250028, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "playgrounds", + "answer": 4, + "locale": "nl", + "imagery": "osm", + "add-image": 4, + "delete-image": 1, + "change_within_25m": 6, + "change_within_50m": 3 + }, + "id": 116909356 + } + }, + { + "id": 116908634, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.2302803, + 51.1795184 + ], + [ + 3.2572538, + 51.1795184 + ], + [ + 3.2572538, + 51.2006504 + ], + [ + 3.2302803, + 51.2006504 + ], + [ + 3.2302803, + 51.1795184 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.15.3", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-02T11:21:58Z", + "reviewed_features": [], + "create": 0, + "modify": 88, + "delete": 0, + "area": 0.00057000400200004, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "pietervdvn.github.io", + "path": "mc/develop/", + "theme": "etymology", + "answer": 127, + "locale": "nl", + "imagery": "osm", + "add-image": 1, + "change_within_25m": 6, + "change_within_50m": 7, + "change_within_100m": 18, + "change_within_500m": 59, + "change_within_1000m": 30, + "change_within_5000m": 8 + }, + "id": 116908634 + } + }, + { + "id": 116906468, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.3372978, + 50.9987722 + ], + [ + 3.4020574, + 50.9987722 + ], + [ + 3.4020574, + 51.0134531 + ], + [ + 3.3372978, + 51.0134531 + ], + [ + 3.3372978, + 50.9987722 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Thibaultmol", + "uid": "2916921", + "editor": "MapComplete 0.15.3", + "comment": "Adding data with #MapComplete for theme #etymology", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-02T10:31:16Z", + "reviewed_features": [], + "create": 0, + "modify": 7, + "delete": 0, + "area": 0.000950729211640121, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "etymology", + "answer": 9, + "locale": "nl", + "imagery": "osm" + }, + "id": 116906468 + } + }, + { + "id": 116882267, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.4669026, + 51.4670566 + ], + [ + 4.4669026, + 51.4670566 + ], + [ + 4.4669026, + 51.4670566 + ], + [ + 4.4669026, + 51.4670566 + ], + [ + 4.4669026, + 51.4670566 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "GeertDD", + "uid": "2776338", + "editor": "MapComplete 0.15.1", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-01T19:45:12Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 1, + "import": 1, + "imagery": "osm", + "language": "nl" + }, + "id": 116882267 + } + }, + { + "id": 116874502, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.5340151, + 51.4218319 + ], + [ + 4.5341133, + 51.4218319 + ], + [ + 4.5341133, + 51.4218935 + ], + [ + 4.5340151, + 51.4218935 + ], + [ + 4.5340151, + 51.4218319 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Pieter Vander Vennet", + "uid": "3818858", + "editor": "MapComplete 0.15.1", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-01T15:57:32Z", + "reviewed_features": [], + "create": 10, + "modify": 0, + "delete": 0, + "area": 6.04912000016582e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "grb", + "import": 2, + "imagery": "AGIVFlandersGRB", + "language": "nl", + "change_over_5000m": 2 + }, + "id": 116874502 + } + }, + { + "id": 116873429, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 7.6340412, + 46.7554728 + ], + [ + 7.6340412, + 46.7554728 + ], + [ + 7.6340412, + 46.7554728 + ], + [ + 7.6340412, + 46.7554728 + ], + [ + 7.6340412, + 46.7554728 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "habi", + "uid": "15671", + "editor": "MapComplete 0.15.1", + "comment": "Adding data with #MapComplete for theme #artwork", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-01T15:27:23Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "artwork", + "answer": 1, + "imagery": "osm", + "language": "en" + }, + "id": 116873429 + } + }, + { + "id": 116871277, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 5.0068088, + 51.1034188 + ], + [ + 5.0147423, + 51.1034188 + ], + [ + 5.0147423, + 51.1265577 + ], + [ + 5.0068088, + 51.1265577 + ], + [ + 5.0068088, + 51.1034188 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 4, + "name": "mass modification" + } + ], + "tags": [], + "features": [], + "user": "dentonny", + "uid": "4198737", + "editor": "MapComplete 0.15.1", + "comment": "Adding data with #MapComplete for theme #grb", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-01T14:28:34Z", + "reviewed_features": [], + "create": 94, + "modify": 236, + "delete": 6, + "area": 0.000183572463149995, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "move": 213, + "theme": "grb", + "answer": 1, + "delete": 6, + "import": 9, + "imagery": "osm", + "language": "nl", + "conflation": 68, + "change_within_500m": 9, + "change_within_1000m": 1 + }, + "id": 116871277 + } + }, + { + "id": 116868200, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.5719102, + 51.127015 + ], + [ + 4.5719102, + 51.127015 + ], + [ + 4.5719102, + 51.127015 + ], + [ + 4.5719102, + 51.127015 + ], + [ + 4.5719102, + 51.127015 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "jospyck", + "uid": "12128135", + "editor": "MapComplete 0.15.1", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-01T13:10:11Z", + "reviewed_features": [], + "create": 1, + "modify": 2, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 5, + "create": 1, + "imagery": "osm", + "language": "nl" + }, + "id": 116868200 + } + }, + { + "id": 116866356, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.5093539, + 51.2271718 + ], + [ + 4.5176245, + 51.2271718 + ], + [ + 4.5176245, + 51.2292261 + ], + [ + 4.5093539, + 51.2292261 + ], + [ + 4.5093539, + 51.2271718 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Locatus_Raf", + "uid": "14799940", + "editor": "MapComplete 0.15.1", + "comment": "Adding data with #MapComplete for theme #https://gist.githubusercontent.com/joostschouppe/4f631b3f658b67bcfafd56b731c726dc/raw/d39021f0731179a8105531f2e4254d1fe4a6eacf/locatus.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-01T12:23:54Z", + "reviewed_features": [], + "create": 19, + "modify": 36, + "delete": 0, + "area": 0.0000169902935799801, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "move": 3, + "theme": "https://gist.githubusercontent.com/joostschouppe/4f631b3f658b67bcfafd56b731c726dc/raw/d39021f0731179a8105531f2e4254d1fe4a6eacf/locatus.json", + "answer": 19, + "create": 19, + "imagery": "osm", + "language": "nl", + "add-image": 23, + "change_over_5000m": 19, + "change_within_25m": 33, + "change_within_50m": 5, + "change_within_100m": 7, + "move:node/9465980888": "improve_accuracy", + "move:node/9466180750": "improve_accuracy" + }, + "id": 116866356 + } + }, + { + "id": 116863788, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.7424285, + 50.9160986 + ], + [ + 4.7424285, + 50.9160986 + ], + [ + 4.7424285, + 50.9160986 + ], + [ + 4.7424285, + 50.9160986 + ], + [ + 4.7424285, + 50.9160986 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "pieterpaul", + "uid": "14539037", + "editor": "MapComplete 0.15.1", + "comment": "Adding data with #MapComplete for theme #playgrounds", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-01T11:20:00Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "playgrounds", + "answer": 1, + "create": 1, + "imagery": "AGIV", + "language": "en" + }, + "id": 116863788 + } + }, + { + "id": 116863619, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.5112514, + 51.2295137 + ], + [ + 4.5112514, + 51.2295137 + ], + [ + 4.5112514, + 51.2295137 + ], + [ + 4.5112514, + 51.2295137 + ], + [ + 4.5112514, + 51.2295137 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Locatus_Raf", + "uid": "14799940", + "editor": "MapComplete 0.15.1", + "comment": "Adding data with #MapComplete for theme #test", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-01T11:15:58Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 0, + "area": 0, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "test", + "answer": 1, + "imagery": "osm", + "language": "nl", + "change_within_25m": 1 + }, + "id": 116863619 + } + }, + { + "id": 116861180, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.1857858, + 50.9224714 + ], + [ + 4.2230963, + 50.9224714 + ], + [ + 4.2230963, + 50.9302263 + ], + [ + 4.1857858, + 50.9302263 + ], + [ + 4.1857858, + 50.9224714 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "jospyck", + "uid": "12128135", + "editor": "MapComplete 0.15.1", + "comment": "Adding data with #MapComplete for theme #toerisme_vlaanderen", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-01T10:19:54Z", + "reviewed_features": [], + "create": 0, + "modify": 1, + "delete": 1, + "area": 0.000289339196450073, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "toerisme_vlaanderen", + "answer": 4, + "imagery": "osm", + "deletion": 1, + "language": "nl", + "deletion:node/9420056262": "duplicate" + }, + "id": 116861180 + } + }, + { + "id": 116860089, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 7.4163521, + 46.922083 + ], + [ + 7.4164044, + 46.922083 + ], + [ + 7.4164044, + 46.9221885 + ], + [ + 7.4163521, + 46.9221885 + ], + [ + 7.4163521, + 46.922083 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "habi", + "uid": "15671", + "editor": "MapComplete 0.15.1", + "comment": "Adding data with #MapComplete for theme #trees", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-01T09:54:54Z", + "reviewed_features": [], + "create": 0, + "modify": 3, + "delete": 0, + "area": 5.51764999983124e-9, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "trees", + "answer": 3, + "imagery": "osm", + "language": "en", + "change_within_50m": 3 + }, + "id": 116860089 + } + }, + { + "id": 116859087, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.5041826, + 51.2278437 + ], + [ + 4.5113575, + 51.2278437 + ], + [ + 4.5113575, + 51.2295137 + ], + [ + 4.5041826, + 51.2295137 + ], + [ + 4.5041826, + 51.2278437 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "Locatus_Raf", + "uid": "14799940", + "editor": "MapComplete 0.15.1", + "comment": "Adding data with #MapComplete for theme #https://gist.githubusercontent.com/joostschouppe/4f631b3f658b67bcfafd56b731c726dc/raw/d39021f0731179a8105531f2e4254d1fe4a6eacf/locatus.json", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-01T09:31:33Z", + "reviewed_features": [], + "create": 4, + "modify": 12, + "delete": 0, + "area": 0.0000119820829999795, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "move": 1, + "theme": "https://gist.githubusercontent.com/joostschouppe/4f631b3f658b67bcfafd56b731c726dc/raw/d39021f0731179a8105531f2e4254d1fe4a6eacf/locatus.json", + "answer": 10, + "create": 4, + "imagery": "osm", + "language": "nl", + "add-image": 6, + "change_over_5000m": 4, + "change_within_25m": 15, + "change_within_50m": 2, + "move:node/9465521314": "improve_accuracy" + }, + "id": 116859087 + } + }, + { + "id": 116858693, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 7.3428155, + 53.1637274 + ], + [ + 7.3428155, + 53.1637274 + ], + [ + 7.3428155, + 53.1637274 + ], + [ + 7.3428155, + 53.1637274 + ], + [ + 7.3428155, + 53.1637274 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Robin van der Linde", + "uid": "5093765", + "editor": "MapComplete 0.15.1", + "comment": "Adding data with #MapComplete for theme #cycle_infra", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-01T09:23:09Z", + "reviewed_features": [], + "create": 1, + "modify": 0, + "delete": 0, + "area": 0, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "cycle_infra", + "answer": 2, + "create": 1, + "imagery": "CartoDB.Voyager", + "language": "en", + "change_over_5000m": 1, + "change_within_25m": 2 + }, + "id": 116858693 + } + }, + { + "id": 116858601, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 7.3425967, + 53.1635659 + ], + [ + 7.3433493, + 53.1635659 + ], + [ + 7.3433493, + 53.1638981 + ], + [ + 7.3425967, + 53.1638981 + ], + [ + 7.3425967, + 53.1635659 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [], + "tags": [], + "features": [], + "user": "Robin van der Linde", + "uid": "5093765", + "editor": "MapComplete 0.15.1", + "comment": "Adding data with #MapComplete for theme #cyclofix", + "comments_count": 0, + "source": "survey", + "imagery_used": "Not reported", + "date": "2022-02-01T09:20:56Z", + "reviewed_features": [], + "create": 2, + "modify": 6, + "delete": 1, + "area": 2.50013719996649e-7, + "is_suspect": false, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "cyclofix", + "answer": 12, + "create": 2, + "imagery": "CartoDB.Voyager", + "deletion": 1, + "language": "en", + "change_over_5000m": 2, + "change_within_25m": 13, + "deletion:node/5168101073": "disused" + }, + "id": 116858601 + } + }, + { + "id": 116850450, + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 15.6097537, + 51.1268452 + ], + [ + 15.610653, + 51.1268452 + ], + [ + 15.610653, + 51.1272331 + ], + [ + 15.6097537, + 51.1272331 + ], + [ + 15.6097537, + 51.1268452 + ] + ] + ] + }, + "properties": { + "check_user": null, + "reasons": [ + { + "id": 40, + "name": "New mapper" + } + ], + "tags": [], + "features": [], + "user": "art_m_wb", + "uid": "12876924", + "editor": "MapComplete 0.15.1", + "comment": "Adding data with #MapComplete for theme #climbing", + "comments_count": 0, + "source": "Not reported", + "imagery_used": "Not reported", + "date": "2022-02-01T06:09:39Z", + "reviewed_features": [], + "create": 0, + "modify": 4, + "delete": 0, + "area": 3.48838469999256e-7, + "is_suspect": true, + "harmful": null, + "checked": false, + "check_date": null, + "metadata": { + "host": "mapcomplete.osm.be", + "theme": "climbing", + "answer": 7, + "imagery": "osm", + "language": "en" + }, + "id": 116850450 + } + } + ] +} \ No newline at end of file diff --git a/Docs/URL_Parameters.md b/Docs/URL_Parameters.md index 47e54a29b8..c1eb483760 100644 --- a/Docs/URL_Parameters.md +++ b/Docs/URL_Parameters.md @@ -1,21 +1,60 @@ -URL-parameters and URL-hash -============================ + + URL-parameters and URL-hash +============================= + + + +## Table of contents + +1. [URL-parameters and URL-hash](#url-parameters-and-url-hash) + - [What is a URL parameter?](#what-is-a-url-parameter) + - [fs-userbadge](#fs-userbadge) + - [fs-search](#fs-search) + - [fs-background](#fs-background) + - [fs-filter](#fs-filter) + - [fs-add-new](#fs-add-new) + - [fs-welcome-message](#fs-welcome-message) + - [fs-iframe-popout](#fs-iframe-popout) + - [fs-more-quests](#fs-more-quests) + - [fs-share-screen](#fs-share-screen) + - [fs-geolocation](#fs-geolocation) + - [fs-all-questions](#fs-all-questions) + - [fs-export](#fs-export) + - [fs-pdf](#fs-pdf) + - [backend](#backend) + - [test](#test) + - [debug](#debug) + - [fake-user](#fake-user) + - [overpassUrl](#overpassurl) + - [overpassTimeout](#overpasstimeout) + - [overpassMaxZoom](#overpassmaxzoom) + - [osmApiTileSize](#osmapitilesize) + - [background](#background) + - [layer-<layer-id>](#layer-<layer-id>) + + 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: + 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: + + + + - 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 -- 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. @@ -45,7 +84,7 @@ Finally, the URL-hash is the part after the `#`. It is `node/1234` in this case. fs-filter ----------- - Disables/Enables the filter The default value is _true_ + Disables/Enables the filter view The default value is _true_ @@ -66,7 +105,7 @@ Finally, the URL-hash is the part after the `#`. It is `node/1234` in this case. 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 extraLink button. By default, 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 or another extraLink button is enabled) The default value is _true_ @@ -157,14 +196,14 @@ Finally, the URL-hash is the part after the `#`. It is `node/1234` in this case. 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_ @@ -175,9 +214,9 @@ Finally, the URL-hash is the part after the `#`. It is `node/1234` in this case. - layer- ------------------- + layer-<layer-id> +------------------------ Wether or not the layer with id is shown The default value is _true_ -This document is autogenerated from QueryParameters \ No newline at end of file +This document is autogenerated from [Logic/Web/QueryParameters.ts](https://github.com/pietervdvn/MapComplete/blob/develop/Logic/Web/QueryParameters.ts), [UI/QueryParameterDocumentation.ts](https://github.com/pietervdvn/MapComplete/blob/develop/UI/QueryParameterDocumentation.ts) \ No newline at end of file diff --git a/Docs/uk_address_import.png b/Docs/uk_address_import.png new file mode 100644 index 0000000000..ecef4b81c1 Binary files /dev/null and b/Docs/uk_address_import.png differ diff --git a/Docs/warning.svg b/Docs/warning.svg new file mode 100644 index 0000000000..f02006c9f3 --- /dev/null +++ b/Docs/warning.svg @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/Logic/Actors/AvailableBaseLayersImplementation.ts b/Logic/Actors/AvailableBaseLayersImplementation.ts index 880311eb49..6b12013feb 100644 --- a/Logic/Actors/AvailableBaseLayersImplementation.ts +++ b/Logic/Actors/AvailableBaseLayersImplementation.ts @@ -8,6 +8,7 @@ import {TileLayer} from "leaflet"; import * as X from "leaflet-providers"; import {Utils} from "../../Utils"; import {AvailableBaseLayersObj} from "./AvailableBaseLayers"; +import {BBox} from "../BBox"; export default class AvailableBaseLayersImplementation implements AvailableBaseLayersObj { @@ -22,11 +23,13 @@ export default class AvailableBaseLayersImplementation implements AvailableBaseL feature: null, max_zoom: 19, min_zoom: 0, - isBest: false, // This is a lie! Of course OSM is the best map! (But not in this context) + isBest: true, // Of course, OpenStreetMap is the best map! category: "osmbasedmap" } - public layerOverview = AvailableBaseLayersImplementation.LoadRasterIndex().concat(AvailableBaseLayersImplementation.LoadProviderIndex()); + public readonly layerOverview = AvailableBaseLayersImplementation.LoadRasterIndex().concat(AvailableBaseLayersImplementation.LoadProviderIndex()); + public readonly globalLayers = this.layerOverview.filter(layer => layer.feature?.geometry === undefined || layer.feature?.geometry === null) + public readonly localLayers = this.layerOverview.filter(layer => layer.feature?.geometry !== undefined && layer.featuer?.geometry !== null) private static LoadRasterIndex(): BaseLayer[] { const layers: BaseLayer[] = [] @@ -36,8 +39,8 @@ export default class AvailableBaseLayersImplementation implements AvailableBaseL const layer = features[i]; const props = layer.properties; - if (props.id === "Bing") { - // Doesnt work + if (props.type === "bing") { + // A lot of work to implement - see https://github.com/pietervdvn/MapComplete/issues/648 continue; } @@ -65,6 +68,7 @@ export default class AvailableBaseLayersImplementation implements AvailableBaseL continue } + const leafletLayer: () => TileLayer = () => AvailableBaseLayersImplementation.CreateBackgroundLayer( props.id, props.name, @@ -83,7 +87,7 @@ export default class AvailableBaseLayersImplementation implements AvailableBaseL min_zoom: props.min_zoom ?? 1, name: props.name, layer: leafletLayer, - feature: layer, + feature: layer.geometry !== null ? layer : null, isBest: props.best ?? false, category: props.category }); @@ -96,14 +100,17 @@ export default class AvailableBaseLayersImplementation implements AvailableBaseL X; // Import X to make sure the namespace is not optimized away function l(id: string, name: string): BaseLayer { try { - const layer: any = () => L.tileLayer.provider(id, undefined); + const layer: any = L.tileLayer.provider(id, undefined); return { feature: null, id: id, name: name, - layer: layer, - min_zoom: layer.minzoom, - max_zoom: layer.maxzoom, + layer: () => L.tileLayer.provider(id, { + maxNativeZoom: layer.options?.maxZoom, + maxZoom: Math.max(layer.options?.maxZoom ?? 19, 21) + }), + min_zoom: 1, + max_zoom: layer.options.maxZoom, category: "osmbasedmap", isBest: false } @@ -114,7 +121,6 @@ export default class AvailableBaseLayersImplementation implements AvailableBaseL } const layers = [ - l("CyclOSM", "CyclOSM - A bicycle oriented map"), l("Stamen.TonerLite", "Toner Lite (by Stamen)"), l("Stamen.TonerBackground", "Toner Background - no labels (by Stamen)"), l("Stamen.Watercolor", "Watercolor (by Stamen)"), @@ -156,11 +162,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,7 +193,8 @@ export default class AvailableBaseLayersImplementation implements AvailableBaseL return L.tileLayer(url, { attribution: attribution, - maxZoom: maxZoom, + maxZoom: Math.max(21, maxZoom ?? 19), + maxNativeZoom: maxZoom ?? 19, minZoom: 1, // @ts-ignore wmts: isWMTS ?? false, @@ -195,98 +203,81 @@ export default class AvailableBaseLayersImplementation implements AvailableBaseL } public AvailableLayersAt(location: UIEventSource): UIEventSource { - const source = location.map( + return UIEventSource.ListStabilized(location.map( (currentLocation) => { - if (currentLocation === undefined) { return this.layerOverview; } - - const currentLayers = source?.data; // A bit unorthodox - I know - const newLayers = this.CalculateAvailableLayersAt(currentLocation?.lon, currentLocation?.lat); - - if (currentLayers === undefined) { - return newLayers; - } - if (newLayers.length !== currentLayers.length) { - return newLayers; - } - for (let i = 0; i < newLayers.length; i++) { - if (newLayers[i].name !== currentLayers[i].name) { - return newLayers; - } - } - - return currentLayers; - }); - return source; + return this.CalculateAvailableLayersAt(currentLocation?.lon, currentLocation?.lat); + })); } public SelectBestLayerAccordingTo(location: UIEventSource, preferedCategory: UIEventSource): UIEventSource { - return this.AvailableLayersAt(location).map(available => { - // First float all 'best layers' to the top - available.sort((a, b) => { - if (a.isBest && b.isBest) { - return 0; - } - if (!a.isBest) { - return 1 - } - - return -1; - } - ) - - if (preferedCategory.data === undefined) { - return available[0] - } - - let prefered: string [] - if (typeof preferedCategory.data === "string") { - prefered = [preferedCategory.data] - } else { - prefered = preferedCategory.data; - } - - prefered.reverse(); - for (const category of prefered) { - //Then sort all 'photo'-layers to the top. Stability of the sorting will force a 'best' photo layer on top + return this.AvailableLayersAt(location) + .map(available => { + // First float all 'best layers' to the top available.sort((a, b) => { - if (a.category === category && b.category === category) { + if (a.isBest && b.isBest) { return 0; } - if (a.category !== category) { + if (!a.isBest) { return 1 } return -1; } ) - } - return available[0] - }) + + if (preferedCategory.data === undefined) { + return available[0] + } + + let prefered: string [] + if (typeof preferedCategory.data === "string") { + prefered = [preferedCategory.data] + } else { + prefered = preferedCategory.data; + } + + prefered.reverse(/*New list, inplace reverse is fine*/); + for (const category of prefered) { + //Then sort all 'photo'-layers to the top. Stability of the sorting will force a 'best' photo layer on top + available.sort((a, b) => { + if (a.category === category && b.category === category) { + return 0; + } + if (a.category !== category) { + return 1 + } + + return -1; + } + ) + } + return available[0] + }, [preferedCategory]) } + private CalculateAvailableLayersAt(lon: number, lat: number): BaseLayer[] { const availableLayers = [this.osmCarto] - const globalLayers = []; - for (const layerOverviewItem of this.layerOverview) { + if (lon === undefined || lat === undefined) { + return availableLayers.concat(this.globalLayers); + } + const lonlat = [lon, lat]; + for (const layerOverviewItem of this.localLayers) { const layer = layerOverviewItem; - - if (layer.feature?.geometry === undefined || layer.feature?.geometry === null) { - globalLayers.push(layer); - continue; + const bbox = BBox.get(layer.feature) + + if(!bbox.contains(lonlat)){ + continue } - if (lon === undefined || lat === undefined) { - continue; - } - - if (GeoOperations.inside([lon, lat], layer.feature)) { + if (GeoOperations.inside(lonlat, layer.feature)) { availableLayers.push(layer); } } - return availableLayers.concat(globalLayers); + return availableLayers.concat(this.globalLayers); } } \ No newline at end of file diff --git a/Logic/Actors/GeoLocationHandler.ts b/Logic/Actors/GeoLocationHandler.ts index 4d6561391a..7d3aca2c31 100644 --- a/Logic/Actors/GeoLocationHandler.ts +++ b/Logic/Actors/GeoLocationHandler.ts @@ -11,11 +11,11 @@ export interface GeoLocationPointProperties { "user:location": "yes", "date": string, "latitude": number - "longitude":number, + "longitude": number, "speed": number, "accuracy": number "heading": number - "altitude":number + "altitude": number } export default class GeoLocationHandler extends VariableUiElement { @@ -70,6 +70,7 @@ export default class GeoLocationHandler extends VariableUiElement { constructor( state: { + selectedElement: UIEventSource; currentUserLocation: FeatureSource, leafletMap: UIEventSource, layoutToUse: LayoutConfig, @@ -183,7 +184,8 @@ export default class GeoLocationHandler extends VariableUiElement { const latLonGiven = QueryParameters.wasInitialized("lat") && QueryParameters.wasInitialized("lon") - this.init(false, !latLonGiven && state.featureSwitchGeolocation.data); + const doAutoZoomToLocation = !latLonGiven && state.featureSwitchGeolocation.data && state.selectedElement.data !== undefined + this.init(false, doAutoZoomToLocation); isLocked.addCallbackAndRunD(isLocked => { if (isLocked) { 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 feb09f9524..fbd4bd911b 100644 --- a/Logic/Actors/OverpassFeatureSource.ts +++ b/Logic/Actors/OverpassFeatureSource.ts @@ -10,6 +10,9 @@ import RelationsTracker from "../Osm/RelationsTracker"; import {BBox} from "../BBox"; import Loc from "../../Models/Loc"; import LayerConfig from "../../Models/ThemeConfig/LayerConfig"; +import Constants from "../../Models/Constants"; +import TileFreshnessCalculator from "../FeatureSource/TileFreshnessCalculator"; +import {Tiles} from "../../Models/TileRange"; export default class OverpassFeatureSource implements FeatureSource { @@ -37,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, @@ -53,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) @@ -116,11 +130,15 @@ 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 (Constants.priviliged_layers.indexOf(layer.id) >= 0) { + continue + } if (this.state.locationControl.data.zoom < layer.minzoom) { continue; } @@ -131,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 @@ -184,7 +225,7 @@ export default class OverpassFeatureSource implements FeatureSource { if (data === undefined) { return undefined } - data.features.forEach(feature => SimpleMetaTagger.objectMetaInfo.applyMetaTagsOnFeature(feature, date, undefined)); + data.features.forEach(feature => SimpleMetaTagger.objectMetaInfo.applyMetaTagsOnFeature(feature, date, undefined, this.state)); self.features.setData(data.features.map(f => ({feature: f, freshness: date}))); return [bounds, date, layersToDownload]; } catch (e) { diff --git a/Logic/Actors/SelectedElementTagsUpdater.ts b/Logic/Actors/SelectedElementTagsUpdater.ts index 2aa2c942ef..beff7c21f3 100644 --- a/Logic/Actors/SelectedElementTagsUpdater.ts +++ b/Logic/Actors/SelectedElementTagsUpdater.ts @@ -117,7 +117,6 @@ export default class SelectedElementTagsUpdater { const localValue = currentTags[key] if (localValue !== osmValue) { - console.log("Local value for ", key, ":", localValue, "upstream", osmValue) somethingChanged = true; currentTags[key] = osmValue } diff --git a/Logic/Actors/SelectedFeatureHandler.ts b/Logic/Actors/SelectedFeatureHandler.ts index 204950ed97..c5598f346a 100644 --- a/Logic/Actors/SelectedFeatureHandler.ts +++ b/Logic/Actors/SelectedFeatureHandler.ts @@ -39,20 +39,6 @@ export default class SelectedFeatureHandler { hash.addCallback(() => self.setSelectedElementFromHash()) - // IF the selected element changes, set the hash correctly - state.selectedElement.addCallback(feature => { - if (feature === undefined) { - if (!SelectedFeatureHandler._no_trigger_on.has(hash.data)) { - hash.setData("") - } - } - - const h = feature?.properties?.id; - if (h !== undefined) { - hash.setData(h) - } - }) - state.featurePipeline?.newDataLoadedSignal?.addCallbackAndRunD(_ => { // New data was loaded. In initial startup, the hash might be set (via the URL) but might not be selected yet if (hash.data === undefined || SelectedFeatureHandler._no_trigger_on.has(hash.data)) { 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/BBox.ts b/Logic/BBox.ts index 436f001252..1aa9d08827 100644 --- a/Logic/BBox.ts +++ b/Logic/BBox.ts @@ -10,6 +10,10 @@ export class BBox { readonly minLat: number; readonly minLon: number; + /*** + * Coordinates should be [[lon, lat],[lon, lat]] + * @param coordinates + */ constructor(coordinates) { this.maxLat = -90; this.maxLon = -180; @@ -45,6 +49,21 @@ export class BBox { return feature.bbox; } + static bboxAroundAll(bboxes: BBox[]): BBox { + let maxLat: number = -90; + let maxLon: number = -180; + let minLat: number = 80; + let minLon: number = 180; + + for (const bbox of bboxes) { + maxLat = Math.max(maxLat, bbox.maxLat) + maxLon = Math.max(maxLon, bbox.maxLon) + minLat = Math.min(minLat, bbox.minLat) + minLon = Math.min(minLon, bbox.minLon) + } + return new BBox([[maxLon, maxLat], [minLon, minLat]]) + } + static fromTile(z: number, x: number, y: number): BBox { return new BBox(Tiles.tile_bounds_lon_lat(z, x, y)) } @@ -56,6 +75,14 @@ export class BBox { return BBox.fromTile(...Tiles.tile_from_index(i)) } + public unionWith(other: BBox) { + return new BBox([[ + Math.max(this.maxLon, other.maxLon), + Math.max(this.maxLat, other.maxLat)], + [Math.min(this.minLon, other.minLon), + Math.min(this.minLat, other.minLat)]]) + } + /** * Constructs a tilerange which fully contains this bbox (thus might be a bit larger) * @param zoomlevel @@ -126,6 +153,15 @@ export class BBox { this.maxLat + latDiff]]) } + padAbsolute(degrees: number): BBox { + + return new BBox([[ + this.minLon - degrees, + this.minLat - degrees + ], [this.maxLon + degrees, + this.maxLat + degrees]]) + } + toLeaflet() { return [[this.minLat, this.minLon], [this.maxLat, this.maxLon]] } diff --git a/Logic/DetermineLayout.ts b/Logic/DetermineLayout.ts index 872b5b3e95..734988583d 100644 --- a/Logic/DetermineLayout.ts +++ b/Logic/DetermineLayout.ts @@ -10,31 +10,36 @@ 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} 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"; +import {PrepareTheme} from "../Models/ThemeConfig/Conversion/PrepareTheme"; +import * as licenses from "../assets/generated/license_info.json" +import TagRenderingConfig from "../Models/ThemeConfig/TagRenderingConfig"; +import {FixImages} from "../Models/ThemeConfig/Conversion/FixImages"; +import Svg from "../Svg"; export default class DetermineLayout { + private static readonly _knownImages =new Set( Array.from(licenses).map(l => l.path)) + /** * 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")) { - // The userLayout is actually an url - 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 @@ -44,7 +49,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); @@ -62,13 +67,15 @@ export default class DetermineLayout { } } - return [layoutToUse, undefined] + return layoutToUse } public static LoadLayoutFromHash( userLayoutParam: UIEventSource - ): [LayoutConfig, string] | null { + ): (LayoutConfig & {definition: LayoutConfigJson}) | null { let hash = location.hash.substr(1); + let json: any; + try { // layoutFromBase64 contains the name of the theme. This is partly to do tracking with goat counter const dedicatedHashFromLocalStorage = LocalStorageSource.Get( @@ -91,7 +98,6 @@ export default class DetermineLayout { dedicatedHashFromLocalStorage.setData(hash); } - let json: any; try { json = JSON.parse(atob(hash)); } catch (e) { @@ -105,34 +111,73 @@ 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)))]; + const config = new LayoutConfig(layoutToUse, false); + config["definition"] = json + return config } catch (e) { console.error(e) if (hash === undefined || hash.length < 10) { - DetermineLayout.ShowErrorOnCustomTheme("Could not load a theme from the hash", new FixedUiElement("Hash does not contain data")) + DetermineLayout.ShowErrorOnCustomTheme("Could not load a theme from the hash", new FixedUiElement("Hash does not contain data"), json) } + this.ShowErrorOnCustomTheme("Could not parse the hash", new FixedUiElement(e), json) return null; } } public static ShowErrorOnCustomTheme( intro: string = "Error: could not parse the custom layout:", - error: BaseUIElement) { + error: BaseUIElement, + json?: any) { new Combine([ intro, error.SetClass("alert"), - new SubtleButton("./assets/svg/mapcomplete_logo.svg", + new SubtleButton(Svg.back_svg(), "Go back to the theme overview", - {url: window.location.protocol + "//" + window.location.hostname + "/index.html", newTab: false}) - + {url: window.location.protocol + "//" + window.location.hostname + "/index.html", newTab: false}), + json !== undefined ? new SubtleButton(Svg.download_svg(),"Download the JSON file").onClick(() => { + Utils.offerContentsAsDownloadableFile(JSON.stringify(json, null, " "), "theme_definition.json") + }) : undefined ]) .SetClass("flex flex-col clickable") .AttachTo("centermessage"); } + private static prepCustomTheme(json: any): LayoutConfigJson { + + if(json.layers === undefined && json.tagRenderings !== undefined){ + const iconTr = json.mapRendering.map(mr => mr.icon).find(icon => icon !== undefined) + const icon = new TagRenderingConfig(iconTr).render.txt + json = { + id: json.id, + description: json.description, + descriptionTail: { + en: "
Layer only mode.
The loaded custom theme actually isn't a custom theme, but only contains a layer." + }, + icon, + title: json.name, + layers: [json], + } + } + + + const knownLayersDict = new Map() + for (const key in known_layers.layers) { + const layer = known_layers.layers[key] + knownLayersDict.set(layer.id, layer) + } + const converState = { + tagRenderings: SharedTagRenderings.SharedTagRenderingJson, + sharedLayers: knownLayersDict + } + json = new FixLegacyTheme().convertStrict(json, "While loading a dynamic theme") + json = new FixImages(DetermineLayout._knownImages).convertStrict(json, "While fixing the images") + json = new PrepareTheme(converState).convertStrict(json, "While preparing a dynamic theme") + console.log("The layoutconfig is ", json) + return json + } + private static async LoadRemoteTheme(link: string): Promise { console.log("Downloading map theme from ", link); @@ -141,17 +186,18 @@ export default class DetermineLayout { try { - const parsed = await Utils.downloadJson(link) - console.log("Got ", parsed) - LegacyJsonConvert.fixThemeConfig(parsed) + let parsed = await Utils.downloadJson(link) try { parsed.id = link; - return new LayoutConfig(parsed, false).patchImages(link, JSON.stringify(parsed)); + console.log("Loaded remote link:", link) + const layoutToUse = DetermineLayout.prepCustomTheme(parsed) + return new LayoutConfig(layoutToUse, false) } catch (e) { console.error(e) DetermineLayout.ShowErrorOnCustomTheme( `${link} is invalid:`, - new FixedUiElement(e) + new FixedUiElement(e), + parsed ) return null; } diff --git a/Logic/ExtraFunction.ts b/Logic/ExtraFunction.ts deleted file mode 100644 index 3755153244..0000000000 --- a/Logic/ExtraFunction.ts +++ /dev/null @@ -1,372 +0,0 @@ -import {GeoOperations} from "./GeoOperations"; -import Combine from "../UI/Base/Combine"; -import RelationsTracker from "./Osm/RelationsTracker"; -import State from "../State"; -import BaseUIElement from "../UI/BaseUIElement"; -import List from "../UI/Base/List"; -import Title from "../UI/Base/Title"; -import {BBox} from "./BBox"; - -export interface ExtraFuncParams { - /** - * Gets all the features from the given layer within the given BBOX. - * Note that more features then requested can be given back. - * Format: [ [ geojson, geojson, geojson, ... ], [geojson, ...], ...] - */ - getFeaturesWithin: (layerId: string, bbox: BBox) => any[][], - memberships: RelationsTracker -} - - -export class ExtraFunction { - - - static readonly intro = new Combine([ - new Title("Calculating tags with Javascript", 2), - "In some cases, it is useful to have some tags calculated based on other properties. Some useful tags are available by default (e.g. `lat`, `lon`, `_country`), as detailed above.", - "It is also possible to calculate your own tags - but this requires some javascript knowledge.", - "", - "Before proceeding, some warnings:", - new List([ - "DO NOT DO THIS AS BEGINNER", - "**Only do this if all other techniques fail** This should _not_ be done to create a rendering effect, only to calculate a specific value", - "**THIS MIGHT BE DISABLED WITHOUT ANY NOTICE ON UNOFFICIAL THEMES** As unofficial themes might be loaded from the internet, this is the equivalent of injecting arbitrary code into the client. It'll be disabled if abuse occurs." - ]), - "To enable this feature, add a field `calculatedTags` in the layer object, e.g.:", - "````", - "\"calculatedTags\": [", - " \"_someKey=javascript-expression\",", - " \"name=feat.properties.name ?? feat.properties.ref ?? feat.properties.operator\",", - " \"_distanceCloserThen3Km=feat.distanceTo( some_lon, some_lat) < 3 ? 'yes' : 'no'\" ", - " ]", - "````", - "", - "The above code will be executed for every feature in the layer. The feature is accessible as `feat` and is an amended geojson object:", - - new List([ - "`area` contains the surface area (in square meters) of the object", - "`lat` and `lon` contain the latitude and longitude" - ]), - "Some advanced functions are available on **feat** as well:" - ]).SetClass("flex-col").AsMarkdown(); - - - private static readonly OverlapFunc = new ExtraFunction( - { - name: "overlapWith", - doc: "Gives a list of features from the specified layer which this feature (partly) overlaps with. A point which is embedded in the feature is detected as well." + - "If the current feature is a point, all features that this point is embeded in are given.\n\n" + - "The returned value is `{ feat: GeoJSONFeature, overlap: number}[]` where `overlap` is the overlapping surface are (in m²) for areas, the overlapping length (in meter) if the current feature is a line or `undefined` if the current feature is a point.\n" + - "The resulting list is sorted in descending order by overlap. The feature with the most overlap will thus be the first in the list\n" + - "\n" + - "For example to get all objects which overlap or embed from a layer, use `_contained_climbing_routes_properties=feat.overlapWith('climbing_route')`", - args: ["...layerIds - one or more layer ids of the layer from which every feature is checked for overlap)"] - }, - (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) { - continue; - } - if (otherLayers.length === 0) { - continue; - } - for (const otherLayer of otherLayers) { - result.push(...GeoOperations.calculateOverlap(feat, otherLayer)); - } - } - - result.sort((a, b) => b.overlap - a.overlap) - - return result; - } - } - ) - private static readonly DistanceToFunc = new ExtraFunction( - { - name: "distanceTo", - doc: "Calculates the distance between the feature and a specified point in meter. The input should either be a pair of coordinates, a geojson feature or the ID of an object", - args: ["feature OR featureID OR longitude", "undefined OR latitude"] - }, - (featuresPerLayer, feature) => { - return (arg0, lat) => { - if (arg0 === undefined) { - return undefined; - } - if (typeof arg0 === "number") { - // Feature._lon and ._lat is conveniently place by one of the other metatags - return GeoOperations.distanceBetween([arg0, lat], [feature._lon, feature._lat]); - } - if (typeof arg0 === "string") { - // This is an identifier - const feature = State.state.allElements.ContainingFeatures.get(arg0); - if (feature === undefined) { - return undefined; - } - arg0 = feature; - } - - // arg0 is probably a feature - return GeoOperations.distanceBetween(GeoOperations.centerpointCoordinates(arg0), [feature._lon, feature._lat]) - - } - } - ) - private static readonly ClosestObjectFunc = new ExtraFunction( - { - name: "closest", - doc: "Given either a list of geojson features or a single layer name, gives the single object which is nearest to the feature. In the case of ways/polygons, only the centerpoint is considered. Returns a single geojson feature or undefined if nothing is found (or not yet laoded)", - args: ["list of features or a layer name or '*' to get all features"] - }, - (params, feature) => { - return (features) => ExtraFunction.GetClosestNFeatures(params, feature, features)?.[0]?.feat - } - ) - - private static readonly ClosestNObjectFunc = new ExtraFunction( - { - name: "closestn", - doc: "Given either a list of geojson features or a single layer name, gives the n closest objects which are nearest to the feature (excluding the feature itself). In the case of ways/polygons, only the centerpoint is considered. " + - "Returns a list of `{feat: geojson, distance:number}` the empty list if nothing is found (or not yet loaded)\n\n" + - "If a 'unique tag key' is given, the tag with this key will only appear once (e.g. if 'name' is given, all features will have a different name)", - args: ["list of features or layer name or '*' to get all features", "amount of features", "unique tag key (optional)", "maxDistanceInMeters (optional)"] - }, - (params, feature) => { - - return (features, amount, uniqueTag, maxDistanceInMeters) => { - let distance: number = Number(maxDistanceInMeters) - if (isNaN(distance)) { - distance = undefined - } - return ExtraFunction.GetClosestNFeatures(params, feature, features, { - maxFeatures: Number(amount), - uniqueTag: uniqueTag, - maxDistance: distance - }); - } - } - ) - - private static readonly Memberships = new ExtraFunction( - { - name: "memberships", - doc: "Gives a list of `{role: string, relation: Relation}`-objects, containing all the relations that this feature is part of. " + - "\n\n" + - "For example: `_part_of_walking_routes=feat.memberships().map(r => r.relation.tags.name).join(';')`", - args: [] - }, - (params, feat) => { - return () => - params.memberships.knownRelations.data.get(feat.properties.id) ?? [] - - } - ) - - private static readonly GetParsed = new ExtraFunction( - { - name: "get", - doc: "Gets the property of the feature, parses it (as JSON) and returns it. Might return 'undefined' if not defined, null, ...", - args: ["key"] - }, - (params, feat) => { - return key => { - const value = feat.properties[key] - if (value === undefined) { - return undefined; - } - try { - const parsed = JSON.parse(value) - if (parsed === null) { - return undefined; - } - return parsed; - } catch (e) { - console.warn("Could not parse property " + key + " due to: " + e + ", the value is " + value) - return undefined; - } - - } - - } - ) - - private static readonly allFuncs: ExtraFunction[] = [ - ExtraFunction.DistanceToFunc, - ExtraFunction.OverlapFunc, - ExtraFunction.ClosestObjectFunc, - ExtraFunction.ClosestNObjectFunc, - ExtraFunction.Memberships, - ExtraFunction.GetParsed - ]; - private readonly _name: string; - private readonly _args: string[]; - private readonly _doc: string; - private readonly _f: (params: ExtraFuncParams, feat: any) => any; - - constructor(options: { name: string, doc: string, args: string[] }, - f: ((params: ExtraFuncParams, feat: any) => any)) { - this._name = options.name; - this._doc = options.doc; - this._args = options.args; - this._f = f; - } - - public static FullPatchFeature(params: ExtraFuncParams, feature) { - for (const func of ExtraFunction.allFuncs) { - func.PatchFeature(params, feature); - } - } - - public static HelpText(): BaseUIElement { - - const elems = [] - for (const func of ExtraFunction.allFuncs) { - elems.push(new Title(func._name, 3), - func._doc, - new List(func._args, true)) - } - - return new Combine([ - ExtraFunction.intro, - new List(ExtraFunction.allFuncs.map(func => `[${func._name}](#${func._name})`)), - ...elems - ]); - } - - /** - * Gets the closes N features, sorted by ascending distance. - * - * @param params: The link to mapcomplete state - * @param feature: The central feature under consideration - * @param features: The other features - * @param options: maxFeatures: The maximum amount of features to be returned. Default: 1; uniqueTag: returned features are not allowed to have the same value for this key; maxDistance: stop searching if it is too far away (in meter). Default: 500m - * @constructor - * @private - */ - private static GetClosestNFeatures(params: ExtraFuncParams, - feature: any, - features: string | any[], - options?: { maxFeatures?: number, uniqueTag?: string | undefined, maxDistance?: number }): { feat: any, distance: number }[] { - const maxFeatures = options?.maxFeatures ?? 1 - const maxDistance = options?.maxDistance ?? 500 - const uniqueTag: string | undefined = options?.uniqueTag - if (typeof features === "string") { - const name = features - const bbox = GeoOperations.bbox(GeoOperations.buffer(GeoOperations.bbox(feature), maxDistance)) - features = params.getFeaturesWithin(name, new BBox(bbox.geometry.coordinates)) - } else { - features = [features] - } - if (features === undefined) { - return; - } - - const selfCenter = GeoOperations.centerpointCoordinates(feature) - let closestFeatures: { feat: any, distance: number }[] = []; - for (const featureList of features) { - for (const otherFeature of featureList) { - if (otherFeature === feature || otherFeature.properties.id === feature.properties.id) { - continue; // We ignore self - } - const distance = GeoOperations.distanceBetween( - GeoOperations.centerpointCoordinates(otherFeature), - selfCenter - ) - if (distance === undefined || distance === null || isNaN(distance)) { - console.error("Could not calculate the distance between", feature, "and", otherFeature) - throw "Undefined distance!" - } - - if (distance === 0) { - console.trace("Got a suspiciously zero distance between", otherFeature, "and self-feature", feature) - } - - if (distance > maxDistance) { - continue - } - - if (closestFeatures.length === 0) { - closestFeatures.push({ - feat: otherFeature, - distance: distance - }) - continue; - } - - if (closestFeatures.length >= maxFeatures && closestFeatures[maxFeatures - 1].distance < distance) { - // The last feature of the list (and thus the furthest away is still closer - // No use for checking, as we already have plenty of features! - continue - } - - let targetIndex = closestFeatures.length - for (let i = 0; i < closestFeatures.length; i++) { - const closestFeature = closestFeatures[i]; - - if (uniqueTag !== undefined) { - const uniqueTagsMatch = otherFeature.properties[uniqueTag] !== undefined && - closestFeature.feat.properties[uniqueTag] === otherFeature.properties[uniqueTag] - if (uniqueTagsMatch) { - targetIndex = -1 - if (closestFeature.distance > distance) { - // This is a very special situation: - // We want to see the tag `uniquetag=some_value` only once in the entire list (e.g. to prevent road segements of identical names to fill up the list of 'names of nearby roads') - // AT this point, we have found a closer segment with the same, identical tag - // so we replace directly - closestFeatures[i] = {feat: otherFeature, distance: distance} - } - break; - } - } - - if (closestFeature.distance > distance) { - targetIndex = i - - if (uniqueTag !== undefined) { - const uniqueValue = otherFeature.properties[uniqueTag] - // We might still have some other values later one with the same uniquetag that have to be cleaned - for (let j = i; j < closestFeatures.length; j++) { - if (closestFeatures[j].feat.properties[uniqueTag] === uniqueValue) { - closestFeatures.splice(j, 1) - } - } - } - break; - } - } - - if (targetIndex == -1) { - continue; // value is already swapped by the unique tag - } - - if (targetIndex < maxFeatures) { - // insert and drop one - closestFeatures.splice(targetIndex, 0, { - feat: otherFeature, - distance: distance - }) - if (closestFeatures.length >= maxFeatures) { - closestFeatures.splice(maxFeatures, 1) - } - } else { - // Overwrite the last element - closestFeatures[targetIndex] = { - feat: otherFeature, - distance: distance - } - - } - } - } - return closestFeatures; - } - - public PatchFeature(params: ExtraFuncParams, feature: any) { - feature[this._name] = this._f(params, feature) - } -} diff --git a/Logic/ExtraFunctions.ts b/Logic/ExtraFunctions.ts new file mode 100644 index 0000000000..9a97ff39e9 --- /dev/null +++ b/Logic/ExtraFunctions.ts @@ -0,0 +1,429 @@ +import {GeoOperations} from "./GeoOperations"; +import Combine from "../UI/Base/Combine"; +import RelationsTracker from "./Osm/RelationsTracker"; +import BaseUIElement from "../UI/BaseUIElement"; +import List from "../UI/Base/List"; +import Title from "../UI/Base/Title"; +import {BBox} from "./BBox"; + +export interface ExtraFuncParams { + /** + * Gets all the features from the given layer within the given BBOX. + * Note that more features then requested can be given back. + * Format: [ [ geojson, geojson, geojson, ... ], [geojson, ...], ...] + */ + getFeaturesWithin: (layerId: string, bbox: BBox) => any[][], + memberships: RelationsTracker + getFeatureById: (id: string) => any +} + +/** + * Describes a function that is added to a geojson object in order to calculate calculated tags + */ +interface ExtraFunction { + readonly _name: string; + readonly _args: string[]; + readonly _doc: string; + readonly _f: (params: ExtraFuncParams, feat: any) => any; + +} + + +class OverlapFunc implements ExtraFunction { + + + _name = "overlapWith"; + _doc = "Gives a list of features from the specified layer which this feature (partly) overlaps with. A point which is embedded in the feature is detected as well." + + "If the current feature is a point, all features that this point is embeded in are given.\n\n" + + "The returned value is `{ feat: GeoJSONFeature, overlap: number}[]` where `overlap` is the overlapping surface are (in m²) for areas, the overlapping length (in meter) if the current feature is a line or `undefined` if the current feature is a point.\n" + + "The resulting list is sorted in descending order by overlap. The feature with the most overlap will thus be the first in the list\n" + + "\n" + + "For example to get all objects which overlap or embed from a layer, use `_contained_climbing_routes_properties=feat.overlapWith('climbing_route')`" + _args = ["...layerIds - one or more layer ids of the layer from which every feature is checked for overlap)"] + + _f(params, feat) { + return (...layerIds: string[]) => { + const result: { feat: any, overlap: number }[] = [] + const bbox = BBox.get(feat) + for (const layerId of layerIds) { + const otherLayers = params.getFeaturesWithin(layerId, bbox) + if (otherLayers === undefined) { + continue; + } + if (otherLayers.length === 0) { + continue; + } + for (const otherLayer of otherLayers) { + result.push(...GeoOperations.calculateOverlap(feat, otherLayer)); + } + } + + result.sort((a, b) => b.overlap - a.overlap) + + return result; + } + } +} + + +class IntersectionFunc implements ExtraFunction { + + + _name = "intersectionsWith"; + _doc = "Gives the intersection points with selected features. Only works with (Multi)Polygons and LineStrings.\n\n" + + "Returns a `{feat: GeoJson, intersections: [number,number][]}` where `feat` is the full, original feature. This list is in random order.\n\n" + + "If the current feature is a point, this function will return an empty list.\n" + + "Points from other layers are ignored - even if the points are parts of the current linestring." + _args = ["...layerIds - one or more layer ids of the layer from which every feature is checked for intersection)"] + + _f(params: ExtraFuncParams, feat) { + return (...layerIds: string[]) => { + const result: { feat: any, intersections: [number, number][] }[] = [] + + const bbox = BBox.get(feat) + + for (const layerId of layerIds) { + const otherLayers = params.getFeaturesWithin(layerId, bbox) + if (otherLayers === undefined) { + continue; + } + if (otherLayers.length === 0) { + continue; + } + for (const tile of otherLayers) { + for (const otherFeature of tile) { + + const intersections = GeoOperations.LineIntersections(feat, otherFeature) + if (intersections.length === 0) { + continue + } + result.push({feat: otherFeature, intersections}) + } + } + } + + return result; + } + } +} + + +class DistanceToFunc implements ExtraFunction { + + _name = "distanceTo"; + _doc = "Calculates the distance between the feature and a specified point in meter. The input should either be a pair of coordinates, a geojson feature or the ID of an object"; + _args = ["feature OR featureID OR longitude", "undefined OR latitude"] + + _f(featuresPerLayer, feature) { + return (arg0, lat) => { + if (arg0 === undefined) { + return undefined; + } + if (typeof arg0 === "number") { + // Feature._lon and ._lat is conveniently place by one of the other metatags + return GeoOperations.distanceBetween([arg0, lat], GeoOperations.centerpointCoordinates(feature)); + } + if (typeof arg0 === "string") { + // This is an identifier + const feature = featuresPerLayer.getFeatureById(arg0) + if (feature === undefined) { + return undefined; + } + arg0 = feature; + } + + // arg0 is probably a geojsonfeature + return GeoOperations.distanceBetween(GeoOperations.centerpointCoordinates(arg0), GeoOperations.centerpointCoordinates(feature)) + + } + } +} + + +class ClosestObjectFunc implements ExtraFunction { + _name = "closest" + _doc = "Given either a list of geojson features or a single layer name, gives the single object which is nearest to the feature. In the case of ways/polygons, only the centerpoint is considered. Returns a single geojson feature or undefined if nothing is found (or not yet laoded)" + + _args = ["list of features or a layer name or '*' to get all features"] + + _f(params, feature) { + return (features) => ClosestNObjectFunc.GetClosestNFeatures(params, feature, features)?.[0]?.feat + } + +} + + +class ClosestNObjectFunc implements ExtraFunction { + _name = "closestn" + _doc = "Given either a list of geojson features or a single layer name, gives the n closest objects which are nearest to the feature (excluding the feature itself). In the case of ways/polygons, only the centerpoint is considered. " + + "Returns a list of `{feat: geojson, distance:number}` the empty list if nothing is found (or not yet loaded)\n\n" + + "If a 'unique tag key' is given, the tag with this key will only appear once (e.g. if 'name' is given, all features will have a different name)" + _args = ["list of features or layer name or '*' to get all features", "amount of features", "unique tag key (optional)", "maxDistanceInMeters (optional)"] + + /** + * Gets the closes N features, sorted by ascending distance. + * + * @param params: The link to mapcomplete state + * @param feature: The central feature under consideration + * @param features: The other features + * @param options: maxFeatures: The maximum amount of features to be returned. Default: 1; uniqueTag: returned features are not allowed to have the same value for this key; maxDistance: stop searching if it is too far away (in meter). Default: 500m + * @constructor + * @private + */ + static GetClosestNFeatures(params: ExtraFuncParams, + feature: any, + features: string | any[], + options?: { maxFeatures?: number, uniqueTag?: string | undefined, maxDistance?: number }): { feat: any, distance: number }[] { + const maxFeatures = options?.maxFeatures ?? 1 + const maxDistance = options?.maxDistance ?? 500 + const uniqueTag: string | undefined = options?.uniqueTag + if (typeof features === "string") { + const name = features + const bbox = GeoOperations.bbox(GeoOperations.buffer(GeoOperations.bbox(feature), maxDistance)) + features = params.getFeaturesWithin(name, new BBox(bbox.geometry.coordinates)) + } else { + features = [features] + } + if (features === undefined) { + return; + } + + const selfCenter = GeoOperations.centerpointCoordinates(feature) + let closestFeatures: { feat: any, distance: number }[] = []; + + for (const featureList of features) { + // Features is provided by 'getFeaturesWithin' which returns a list of lists of features, hence the double loop here + for (const otherFeature of featureList) { + + if (otherFeature === feature || otherFeature.properties.id === feature.properties.id) { + continue; // We ignore self + } + const distance = GeoOperations.distanceBetween( + GeoOperations.centerpointCoordinates(otherFeature), + selfCenter + ) + if (distance === undefined || distance === null || isNaN(distance)) { + console.error("Could not calculate the distance between", feature, "and", otherFeature) + throw "Undefined distance!" + } + + if (distance === 0) { + console.trace("Got a suspiciously zero distance between", otherFeature, "and self-feature", feature) + } + + if (distance > maxDistance) { + continue + } + + if (closestFeatures.length === 0) { + // This is the first matching feature we find - always add it + closestFeatures.push({ + feat: otherFeature, + distance: distance + }) + continue; + } + + + if (closestFeatures.length >= maxFeatures && closestFeatures[maxFeatures - 1].distance < distance) { + // The last feature of the list (and thus the furthest away is still closer + // No use for checking, as we already have plenty of features! + continue + } + + let targetIndex = closestFeatures.length + for (let i = 0; i < closestFeatures.length; i++) { + const closestFeature = closestFeatures[i]; + + if (uniqueTag !== undefined) { + const uniqueTagsMatch = otherFeature.properties[uniqueTag] !== undefined && + closestFeature.feat.properties[uniqueTag] === otherFeature.properties[uniqueTag] + if (uniqueTagsMatch) { + targetIndex = -1 + if (closestFeature.distance > distance) { + // This is a very special situation: + // We want to see the tag `uniquetag=some_value` only once in the entire list (e.g. to prevent road segements of identical names to fill up the list of 'names of nearby roads') + // AT this point, we have found a closer segment with the same, identical tag + // so we replace directly + closestFeatures[i] = {feat: otherFeature, distance: distance} + } + break; + } + } + + if (closestFeature.distance > distance) { + targetIndex = i + + if (uniqueTag !== undefined) { + const uniqueValue = otherFeature.properties[uniqueTag] + // We might still have some other values later one with the same uniquetag that have to be cleaned + for (let j = i; j < closestFeatures.length; j++) { + if (closestFeatures[j].feat.properties[uniqueTag] === uniqueValue) { + closestFeatures.splice(j, 1) + } + } + } + break; + } + } + + if (targetIndex == -1) { + continue; // value is already swapped by the unique tag + } + + if (targetIndex < maxFeatures) { + // insert and drop one + closestFeatures.splice(targetIndex, 0, { + feat: otherFeature, + distance: distance + }) + if (closestFeatures.length >= maxFeatures) { + closestFeatures.splice(maxFeatures, 1) + } + } else { + // Overwrite the last element + closestFeatures[targetIndex] = { + feat: otherFeature, + distance: distance + } + + } + + + } + } + return closestFeatures; + } + + _f(params, feature) { + + return (features, amount, uniqueTag, maxDistanceInMeters) => { + let distance: number = Number(maxDistanceInMeters) + if (isNaN(distance)) { + distance = undefined + } + return ClosestNObjectFunc.GetClosestNFeatures(params, feature, features, { + maxFeatures: Number(amount), + uniqueTag: uniqueTag, + maxDistance: distance + }); + } + } + +} + + +class Memberships implements ExtraFunction { + _name = "memberships" + _doc = "Gives a list of `{role: string, relation: Relation}`-objects, containing all the relations that this feature is part of. " + + "\n\n" + + "For example: `_part_of_walking_routes=feat.memberships().map(r => r.relation.tags.name).join(';')`" + _args = [] + + _f(params, feat) { + return () => + params.memberships.knownRelations.data.get(feat.properties.id) ?? [] + + } +} + + +class GetParsed implements ExtraFunction { + _name = "get" + _doc = "Gets the property of the feature, parses it (as JSON) and returns it. Might return 'undefined' if not defined, null, ..." + _args = ["key"] + + _f(params, feat) { + return key => { + const value = feat.properties[key] + if (value === undefined) { + return undefined; + } + try { + const parsed = JSON.parse(value) + if (parsed === null) { + return undefined; + } + return parsed; + } catch (e) { + console.warn("Could not parse property " + key + " due to: " + e + ", the value is " + value) + return undefined; + } + + } + + } +} + + +export class ExtraFunctions { + + + static readonly intro = new Combine([ + new Title("Calculating tags with Javascript", 2), + "In some cases, it is useful to have some tags calculated based on other properties. Some useful tags are available by default (e.g. `lat`, `lon`, `_country`), as detailed above.", + "It is also possible to calculate your own tags - but this requires some javascript knowledge.", + "", + "Before proceeding, some warnings:", + new List([ + "DO NOT DO THIS AS BEGINNER", + "**Only do this if all other techniques fail** This should _not_ be done to create a rendering effect, only to calculate a specific value", + "**THIS MIGHT BE DISABLED WITHOUT ANY NOTICE ON UNOFFICIAL THEMES** As unofficial themes might be loaded from the internet, this is the equivalent of injecting arbitrary code into the client. It'll be disabled if abuse occurs." + ]), + "To enable this feature, add a field `calculatedTags` in the layer object, e.g.:", + "````", + "\"calculatedTags\": [", + " \"_someKey=javascript-expression\",", + " \"name=feat.properties.name ?? feat.properties.ref ?? feat.properties.operator\",", + " \"_distanceCloserThen3Km=feat.distanceTo( some_lon, some_lat) < 3 ? 'yes' : 'no'\" ", + " ]", + "````", + "", + "The above code will be executed for every feature in the layer. The feature is accessible as `feat` and is an amended geojson object:", + + new List([ + "`area` contains the surface area (in square meters) of the object", + "`lat` and `lon` contain the latitude and longitude" + ]), + "Some advanced functions are available on **feat** as well:" + ]).SetClass("flex-col").AsMarkdown(); + + + private static readonly allFuncs: ExtraFunction[] = [ + new DistanceToFunc(), + new OverlapFunc(), + new IntersectionFunc(), + new ClosestObjectFunc(), + new ClosestNObjectFunc(), + new Memberships(), + new GetParsed() + ]; + + 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) + } + } + + public static HelpText(): BaseUIElement { + + const elems = [] + for (const func of ExtraFunctions.allFuncs) { + elems.push(new Title(func._name, 3), + func._doc, + new List(func._args ?? [], true)) + } + + return new Combine([ + ExtraFunctions.intro, + new List(ExtraFunctions.allFuncs.map(func => `[${func._name}](#${func._name})`)), + ...elems + ]); + } + + +} diff --git a/Logic/FeatureSource/Actors/MetaTagRecalculator.ts b/Logic/FeatureSource/Actors/MetaTagRecalculator.ts new file mode 100644 index 0000000000..f17c27afe8 --- /dev/null +++ b/Logic/FeatureSource/Actors/MetaTagRecalculator.ts @@ -0,0 +1,124 @@ +import {FeatureSourceForLayer, Tiled} from "../FeatureSource"; +import MetaTagging from "../../MetaTagging"; +import {ElementStorage} from "../../ElementStorage"; +import {ExtraFuncParams} from "../../ExtraFunctions"; +import FeaturePipeline from "../FeaturePipeline"; +import {BBox} from "../../BBox"; +import {UIEventSource} from "../../UIEventSource"; + +/**** + * Concerned with the logic of updating the right layer at the right time + */ +class MetatagUpdater { + public readonly neededLayerBboxes = new Map() + private source: FeatureSourceForLayer & Tiled; + private readonly params: ExtraFuncParams + private state: { allElements?: ElementStorage }; + + private readonly isDirty = new UIEventSource(false) + + constructor(source: FeatureSourceForLayer & Tiled, state: { allElements?: ElementStorage }, featurePipeline: FeaturePipeline) { + this.state = state; + this.source = source; + const self = this; + this.params = { + getFeatureById(id) { + return state.allElements.ContainingFeatures.get(id) + }, + getFeaturesWithin(layerId, bbox) { + // We keep track of the BBOX that this source needs + let oldBbox: BBox = self.neededLayerBboxes.get(layerId) + if (oldBbox === undefined) { + self.neededLayerBboxes.set(layerId, bbox); + } else if (!bbox.isContainedIn(oldBbox)) { + self.neededLayerBboxes.set(layerId, oldBbox.unionWith(bbox)) + } + return featurePipeline.GetFeaturesWithin(layerId, bbox) + }, + memberships: featurePipeline.relationTracker + } + this.isDirty.stabilized(100).addCallback(dirty => { + if (dirty) { + self.updateMetaTags() + } + }) + this.source.features.addCallbackAndRunD(_ => self.isDirty.setData(true)) + + } + + public requestUpdate() { + this.isDirty.setData(true) + } + + public updateMetaTags() { + const features = this.source.features.data + + if (features.length === 0) { + this.isDirty.setData(false) + return + } + MetaTagging.addMetatags( + features, + this.params, + this.source.layer.layerDef, + this.state) + this.isDirty.setData(false) + + } + +} + +export default class MetaTagRecalculator { + private _state: { + allElements?: ElementStorage + }; + private _featurePipeline: FeaturePipeline; + private readonly _alreadyRegistered: Set = new Set() + private readonly _notifiers: MetatagUpdater[] = [] + + /** + * The meta tag recalculator receives tiles of layers via the 'registerSource'-function. + * It keeps track of which sources have had their share calculated, and which should be re-updated if some other data is loaded + */ + constructor(state: { allElements?: ElementStorage, currentView: FeatureSourceForLayer & Tiled }, featurePipeline: FeaturePipeline) { + this._featurePipeline = featurePipeline; + this._state = state; + + if(state.currentView !== undefined){ + const currentViewUpdater = new MetatagUpdater(state.currentView, this._state, this._featurePipeline) + this._alreadyRegistered.add(state.currentView) + this._notifiers.push(currentViewUpdater) + state.currentView.features.addCallback(_ => { + console.debug("Requesting an update for currentView") + currentViewUpdater.updateMetaTags(); + }) + } + + } + + public registerSource(source: FeatureSourceForLayer & Tiled, recalculateOnEveryChange = false) { + if (source === undefined) { + return; + } + if (this._alreadyRegistered.has(source)) { + return; + } + this._alreadyRegistered.add(source) + this._notifiers.push(new MetatagUpdater(source, this._state, this._featurePipeline)) + const self = this; + source.features.addCallbackAndRunD(_ => { + const layerName = source.layer.layerDef.id + for (const updater of self._notifiers) { + const neededBbox = updater.neededLayerBboxes.get(layerName) + if (neededBbox == undefined) { + continue + } + if (source.bbox === undefined || neededBbox.overlapsWith(source.bbox)) { + updater.requestUpdate() + } + } + }) + + } + +} \ No newline at end of file diff --git a/Logic/FeatureSource/Actors/RegisteringAllFromFeatureSourceActor.ts b/Logic/FeatureSource/Actors/RegisteringAllFromFeatureSourceActor.ts index 2408464700..7ee072d403 100644 --- a/Logic/FeatureSource/Actors/RegisteringAllFromFeatureSourceActor.ts +++ b/Logic/FeatureSource/Actors/RegisteringAllFromFeatureSourceActor.ts @@ -1,17 +1,20 @@ import FeatureSource from "../FeatureSource"; import {UIEventSource} from "../../UIEventSource"; -import State from "../../../State"; +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; - constructor(source: FeatureSource) { + constructor(source: FeatureSource, allElements: ElementStorage) { this.features = source.features; this.name = "RegisteringSource of " + source.name; this.features.addCallbackAndRunD(features => { for (const feature of features) { - State.state.allElements.addOrGetElement(feature.feature) + allElements.addOrGetElement(feature.feature) } }) } diff --git a/Logic/FeatureSource/Actors/SaveTileToLocalStorageActor.ts b/Logic/FeatureSource/Actors/SaveTileToLocalStorageActor.ts index 4bbba043f7..b49a554833 100644 --- a/Logic/FeatureSource/Actors/SaveTileToLocalStorageActor.ts +++ b/Logic/FeatureSource/Actors/SaveTileToLocalStorageActor.ts @@ -1,58 +1,132 @@ +import FeatureSource, {Tiled} from "../FeatureSource"; +import {Tiles} from "../../../Models/TileRange"; +import {IdbLocalStorage} from "../../Web/IdbLocalStorage"; +import {UIEventSource} from "../../UIEventSource"; +import LayerConfig from "../../../Models/ThemeConfig/LayerConfig"; +import {BBox} from "../../BBox"; +import SimpleFeatureSource from "../Sources/SimpleFeatureSource"; +import FilteredLayer from "../../../Models/FilteredLayer"; +import Loc from "../../../Models/Loc"; + /*** * Saves all the features that are passed in to localstorage, so they can be retrieved on the next run * * Technically, more an Actor then a featuresource, but it fits more neatly this ay */ -import {FeatureSourceForLayer} from "../FeatureSource"; -import {Tiles} from "../../../Models/TileRange"; - export default class SaveTileToLocalStorageActor { - public static readonly storageKey: string = "cached-features"; - public static readonly formatVersion: string = "2" + private readonly visitedTiles: UIEventSource> + private readonly _layer: LayerConfig; + private readonly _flayer: FilteredLayer + private readonly initializeTime = new Date() - constructor(source: FeatureSourceForLayer, tileIndex: number) { + constructor(layer: FilteredLayer) { + this._flayer = layer + this._layer = layer.layerDef + this.visitedTiles = IdbLocalStorage.Get("visited_tiles_" + this._layer.id, + {defaultValue: new Map(),}) + this.visitedTiles.stabilized(100).addCallbackAndRunD(tiles => { + for (const key of Array.from(tiles.keys())) { + const tileFreshness = tiles.get(key) - source.features.addCallbackAndRunD(features => { - const key = `${SaveTileToLocalStorageActor.storageKey}-${source.layer.layerDef.id}-${tileIndex}` - const now = new Date() - - try { - if (features.length > 0) { - localStorage.setItem(key, JSON.stringify(features)); + const toOld = (this.initializeTime.getTime() - tileFreshness.getTime()) > 1000 * this._layer.maxAgeOfCache + if (toOld) { + // Purge this tile + this.SetIdb(key, undefined) + console.debug("Purging tile", this._layer.id, key) + tiles.delete(key) } - // We _still_ write the time to know that this tile is empty! - SaveTileToLocalStorageActor.MarkVisited(source.layer.layerDef.id, tileIndex, now) - } catch (e) { - console.warn("Could not save the features to local storage:", e) } + this.visitedTiles.ping() + return true; }) } - public static MarkVisited(layerId: string, tileId: number, freshness: Date) { - const key = `${SaveTileToLocalStorageActor.storageKey}-${layerId}-${tileId}` - try { - localStorage.setItem(key + "-time", JSON.stringify(freshness.getTime())) - localStorage.setItem(key + "-format", SaveTileToLocalStorageActor.formatVersion) - } catch (e) { - console.error("Could not mark tile ", key, "as visited") - } + public LoadTilesFromDisk(currentBounds: UIEventSource, location: UIEventSource, + registerFreshness: (tileId: number, freshness: Date) => void, + registerTile: ((src: FeatureSource & Tiled) => void)) { + const self = this; + const loadedTiles = new Set() + this.visitedTiles.addCallbackD(tiles => { + if (tiles.size === 0) { + // We don't do anything yet as probably not yet loaded from disk + // We'll unregister later on + return; + } + currentBounds.addCallbackAndRunD(bbox => { + + if (self._layer.minzoomVisible > location.data.zoom) { + // Not enough zoom + return; + } + + // Iterate over all available keys in the local storage, check which are needed and fresh enough + for (const key of Array.from(tiles.keys())) { + const tileFreshness = tiles.get(key) + if (tileFreshness > self.initializeTime) { + // This tile is loaded by another source + continue + } + + registerFreshness(key, tileFreshness) + const tileBbox = BBox.fromTileIndex(key) + if (!bbox.overlapsWith(tileBbox)) { + continue; + } + if (loadedTiles.has(key)) { + // Already loaded earlier + continue + } + loadedTiles.add(key) + this.GetIdb(key).then((features: { feature: any, freshness: Date }[]) => { + console.debug("Loaded tile " + self._layer.id + "_" + key + " from disk") + const src = new SimpleFeatureSource(self._flayer, key, new UIEventSource<{ feature: any; freshness: Date }[]>(features)) + registerTile(src) + }) + } + }) + + return true; // Remove the callback + + }) } - public static poison(layers: string[], lon: number, lat: number) { - for (let z = 0; z < 25; z++) { + public addTile(tile: FeatureSource & Tiled) { + const self = this + tile.features.addCallbackAndRunD(features => { + const now = new Date() + if (features.length > 0) { + self.SetIdb(tile.tileIndex, features) + } + // We _still_ write the time to know that this tile is empty! + this.MarkVisited(tile.tileIndex, now) + }) + } + + public poison(lon: number, lat: number) { + for (let z = 0; z < 25; z++) { const {x, y} = Tiles.embedded_tile(lat, lon, z) const tileId = Tiles.tile_index(z, x, y) - - for (const layerId of layers) { - - const key = `${SaveTileToLocalStorageActor.storageKey}-${layerId}-${tileId}` - localStorage.removeItem(key + "-time"); - localStorage.removeItem(key + "-format") - localStorage.removeItem(key) - } + this.visitedTiles.data.delete(tileId) } } + + public MarkVisited(tileId: number, freshness: Date) { + this.visitedTiles.data.set(tileId, freshness) + this.visitedTiles.ping() + } + + private SetIdb(tileIndex, data) { + try { + IdbLocalStorage.SetDirectly(this._layer.id + "_" + tileIndex, data) + } catch (e) { + console.error("Could not save tile to indexed-db: ", e, "tileIndex is:", tileIndex, "for layer", this._layer.id) + } + } + + private GetIdb(tileIndex) { + return IdbLocalStorage.GetDirectly(this._layer.id + "_" + tileIndex) + } } \ No newline at end of file diff --git a/Logic/FeatureSource/FeaturePipeline.ts b/Logic/FeatureSource/FeaturePipeline.ts index 9d10ca94e2..87d4aedda7 100644 --- a/Logic/FeatureSource/FeaturePipeline.ts +++ b/Logic/FeatureSource/FeaturePipeline.ts @@ -5,13 +5,11 @@ import FeatureSource, {FeatureSourceForLayer, IndexedFeatureSource, Tiled} from import TiledFeatureSource from "./TiledFeatureSource/TiledFeatureSource"; import {UIEventSource} from "../UIEventSource"; import {TileHierarchyTools} from "./TiledFeatureSource/TileHierarchy"; -import MetaTagging from "../MetaTagging"; import RememberingSource from "./Sources/RememberingSource"; import OverpassFeatureSource from "../Actors/OverpassFeatureSource"; import GeoJsonSource from "./Sources/GeoJsonSource"; import Loc from "../../Models/Loc"; import RegisteringAllFromFeatureSourceActor from "./Actors/RegisteringAllFromFeatureSourceActor"; -import TiledFromLocalStorageSource from "./TiledFeatureSource/TiledFromLocalStorageSource"; import SaveTileToLocalStorageActor from "./Actors/SaveTileToLocalStorageActor"; import DynamicGeoJsonTileSource from "./TiledFeatureSource/DynamicGeoJsonTileSource"; import {TileHierarchyMerger} from "./TiledFeatureSource/TileHierarchyMerger"; @@ -24,6 +22,7 @@ import {Tiles} from "../../Models/TileRange"; import TileFreshnessCalculator from "./TileFreshnessCalculator"; import FullNodeDatabaseSource from "./TiledFeatureSource/FullNodeDatabaseSource"; import MapState from "../State/MapState"; +import {ElementStorage} from "../ElementStorage"; /** @@ -40,33 +39,43 @@ import MapState from "../State/MapState"; 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) - + public readonly relationTracker: RelationsTracker + /** + * Keeps track of all raw OSM-nodes. + * Only initialized if 'type_node' is defined as layer + */ + public readonly fullNodeDatabase?: FullNodeDatabaseSource 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; private readonly osmSourceZoomLevel + private readonly localStorageSavers = new Map() + + private readonly newGeometryHandler : NewGeometryFromChangesFeatureSource; constructor( handleFeatureSource: (source: FeatureSourceForLayer & Tiled) => void, - state: MapState) { + state: MapState, + options?: { + /*Used for metatagging - will receive all the sources with changeGeometry applied but without filtering*/ + handleRawFeatureSource: (source: FeatureSourceForLayer) => void + } + ) { this.state = state; const self = this - const expiryInSeconds = Math.min(...state.layoutToUse.layers.map(l => l.maxAgeOfCache)) - for (const layer of state.layoutToUse.layers) { - TiledFromLocalStorageSource.cleanCacheForLayer(layer) - } + const expiryInSeconds = Math.min(...state.layoutToUse?.layers?.map(l => l.maxAgeOfCache) ?? []) this.oldestAllowedDate = new Date(new Date().getTime() - expiryInSeconds); this.osmSourceZoomLevel = state.osmApiTileSize.data; const useOsmApi = state.locationControl.map(l => l.zoom > (state.overpassMaxZoom.data ?? 12)) @@ -77,7 +86,7 @@ export default class FeaturePipeline { .map(ch => ch.changes) .filter(coor => coor["lat"] !== undefined && coor["lon"] !== undefined) .forEach(coor => { - SaveTileToLocalStorageActor.poison(state.layoutToUse.layers.map(l => l.id), coor["lon"], coor["lat"]) + state.layoutToUse.layers.forEach(l => self.localStorageSavers.get(l.id)?.poison(coor["lon"], coor["lat"])) }) }) @@ -86,7 +95,7 @@ export default class FeaturePipeline { if (location?.zoom === undefined) { return false; } - let minzoom = Math.min(...state.layoutToUse.layers.map(layer => layer.minzoom ?? 18)); + let minzoom = Math.min(...state.filteredLayers.data.map(layer => layer.layerDef.minzoom ?? 18)); return location.zoom >= minzoom; } ); @@ -96,26 +105,28 @@ export default class FeaturePipeline { const perLayerHierarchy = new Map() this.perLayerHierarchy = perLayerHierarchy - function patchedHandleFeatureSource (src: FeatureSourceForLayer & IndexedFeatureSource & Tiled) { + // Given a tile, wraps it and passes it on to render (handled by 'handleFeatureSource' + function patchedHandleFeatureSource(src: FeatureSourceForLayer & IndexedFeatureSource & Tiled) { // This will already contain the merged features for this tile. In other words, this will only be triggered once for every tile - const srcFiltered = - new FilteringFeatureSource(state, src.tileIndex, - new ChangeGeometryApplicator(src, state.changes) - ) + const withChanges = new ChangeGeometryApplicator(src, state.changes); + const srcFiltered = new FilteringFeatureSource(state, src.tileIndex, withChanges) handleFeatureSource(srcFiltered) + if (options?.handleRawFeatureSource) { + options.handleRawFeatureSource(withChanges) + } self.somethingLoaded.setData(true) // We do not mark as visited here, this is the responsability of the code near the actual loader (e.g. overpassLoader and OSMApiFeatureLoader) } - function handlePriviligedFeatureSource(src: FeatureSourceForLayer & Tiled){ + function handlePriviligedFeatureSource(src: FeatureSourceForLayer & Tiled) { // Passthrough to passed function, except that it registers as well handleFeatureSource(src) src.features.addCallbackAndRunD(fs => { - fs.forEach(ff => state.allElements.addOrGetElement(ff.feature)) + fs.forEach(ff => state.allElements.addOrGetElement(ff.feature)) }) } - + for (const filteredLayer of state.filteredLayers.data) { const id = filteredLayer.layerDef.id @@ -127,7 +138,14 @@ export default class FeaturePipeline { this.freshnesses.set(id, new TileFreshnessCalculator()) if (id === "type_node") { - // Handles by the 'FullNodeDatabaseSource' + + this.fullNodeDatabase = new FullNodeDatabaseSource( + filteredLayer, + tile => { + new RegisteringAllFromFeatureSourceActor(tile, state.allElements) + perLayerHierarchy.get(tile.layer.layerDef.id).registerTile(tile) + tile.features.addCallbackAndRunD(_ => self.onNewDataLoaded(tile)) + }); continue; } @@ -151,20 +169,28 @@ export default class FeaturePipeline { continue } + if (id === "current_view") { + handlePriviligedFeatureSource(state.currentView) + continue + } + + const localTileSaver = new SaveTileToLocalStorageActor(filteredLayer) + this.localStorageSavers.set(filteredLayer.layerDef.id, localTileSaver) + if (source.geojsonSource === undefined) { // This is an OSM layer // We load the cached values and register them // Getting data from upstream happens a bit lower - new TiledFromLocalStorageSource(filteredLayer, - (src) => { - new RegisteringAllFromFeatureSourceActor(src) - hierarchy.registerTile(src); - src.features.addCallbackAndRunD(_ => self.newDataLoadedSignal.setData(src)) - }, state) - - TiledFromLocalStorageSource.GetFreshnesses(id).forEach((value, key) => { - self.freshnesses.get(id).addTileLoad(key, value) - }) + localTileSaver.LoadTilesFromDisk( + state.currentBounds, state.locationControl, + (tileIndex, freshness) => self.freshnesses.get(id).addTileLoad(tileIndex, freshness), + (tile) => { + console.debug("Loaded tile ", id, tile.tileIndex, "from local cache") + new RegisteringAllFromFeatureSourceActor(tile, state.allElements) + hierarchy.registerTile(tile); + tile.features.addCallbackAndRunD(_ => self.onNewDataLoaded(tile)) + } + ) continue } @@ -178,25 +204,25 @@ export default class FeaturePipeline { TiledFeatureSource.createHierarchy(src, { layer: src.layer, minZoomLevel: this.osmSourceZoomLevel, - dontEnforceMinZoom: true, + noDuplicates: true, registerTile: (tile) => { - new RegisteringAllFromFeatureSourceActor(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) + 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( filteredLayer, tile => { - new RegisteringAllFromFeatureSourceActor(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 ) @@ -208,34 +234,36 @@ export default class FeaturePipeline { isActive: useOsmApi, neededTiles: neededTilesFromOsm, handleTile: tile => { - new RegisteringAllFromFeatureSourceActor(tile) + new RegisteringAllFromFeatureSourceActor(tile, state.allElements) if (tile.layer.layerDef.maxAgeOfCache > 0) { - new SaveTileToLocalStorageActor(tile, tile.tileIndex) + const saver = self.localStorageSavers.get(tile.layer.layerDef.id) + if (saver === undefined) { + console.error("No localStorageSaver found for layer ", tile.layer.layerDef.id) + } + 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, markTileVisited: (tileId) => state.filteredLayers.data.forEach(flayer => { - if (flayer.layerDef.maxAgeOfCache > 0) { - SaveTileToLocalStorageActor.MarkVisited(flayer.layerDef.id, tileId, new Date()) + const layer = flayer.layerDef + if (layer.maxAgeOfCache > 0) { + const saver = self.localStorageSavers.get(layer.id) + if (saver === undefined) { + console.error("No local storage saver found for ", layer.id) + } else { + saver.MarkVisited(tileId, new Date()) + } } - self.freshnesses.get(flayer.layerDef.id).addTileLoad(tileId, new Date()) + self.freshnesses.get(layer.id).addTileLoad(tileId, new Date()) }) }) - if (state.layoutToUse.trackAllNodes) { - const fullNodeDb = new FullNodeDatabaseSource( - state.filteredLayers.data.filter(l => l.layerDef.id === "type_node")[0], - tile => { - new RegisteringAllFromFeatureSourceActor(tile) - perLayerHierarchy.get(tile.layer.layerDef.id).registerTile(tile) - tile.features.addCallbackAndRunD(_ => self.newDataLoadedSignal.setData(tile)) - }) - - osmFeatureSource.rawDataHandlers.push((osmJson, tileId) => fullNodeDb.handleOsmJson(osmJson, tileId)) + if (this.fullNodeDatabase !== undefined) { + osmFeatureSource.rawDataHandlers.push((osmJson, tileId) => this.fullNodeDatabase.handleOsmJson(osmJson, tileId)) } @@ -248,54 +276,65 @@ export default class FeaturePipeline { (source) => TiledFeatureSource.createHierarchy(source, { layer: source.layer, minZoomLevel: source.layer.layerDef.minzoom, - dontEnforceMinZoom: true, + noDuplicates: true, maxFeatureCount: state.layoutToUse.clustering.minNeededElements, maxZoomLevel: state.layoutToUse.clustering.maxZoom, registerTile: (tile) => { - // We save the tile data for the given layer to local storage - if (source.layer.layerDef.source.geojsonSource === undefined || source.layer.layerDef.source.isOsmCacheLayer == true) { - new SaveTileToLocalStorageActor(tile, tile.tileIndex) - } + // 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. - const newGeometry = new NewGeometryFromChangesFeatureSource(state.changes) - new RegisteringAllFromFeatureSourceActor(newGeometry) + const newGeometry = new NewGeometryFromChangesFeatureSource(state.changes, state.allElements, state.osmConnection._oauth_config.url) + this.newGeometryHandler = newGeometry; + newGeometry.features.addCallbackAndRun(geometries => { + console.debug("New geometries are:", geometries) + }) + + new RegisteringAllFromFeatureSourceActor(newGeometry, state.allElements) // A NewGeometryFromChangesFeatureSource does not split per layer, so we do this next new PerLayerFeatureSourceSplitter(state.filteredLayers, (perLayer) => { // We don't bother to split them over tiles as it'll contain little features by default, so we simply add them like this perLayerHierarchy.get(perLayer.layer.layerDef.id).registerTile(perLayer) // AT last, we always apply the metatags whenever possible - perLayer.features.addCallbackAndRunD(_ => self.applyMetaTags(perLayer)) - perLayer.features.addCallbackAndRunD(_ => self.newDataLoadedSignal.setData(perLayer)) + perLayer.features.addCallbackAndRunD(feats => { + 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(src => { - self.updateAllMetaTagging() - }) - - this.runningQuery = updater.runningQuery.map( overpass => { - console.log("FeaturePipeline: runningQuery state changed. Overpass", overpass ? "is querying," : "is idle,", + console.log("FeaturePipeline: runningQuery state changed: Overpass", overpass ? "is querying," : "is idle,", "osmFeatureSource is", osmFeatureSource.isRunning ? "is running and needs " + neededTilesFromOsm.data?.length + " tiles (already got " + osmFeatureSource.downloadedTiles.size + " tiles )" : "is idle") return overpass || osmFeatureSource.isRunning.data; }, [osmFeatureSource.isRunning] ) - } public GetAllFeaturesWithin(bbox: BBox): any[][] { @@ -306,6 +345,22 @@ export default class FeaturePipeline { return tiles; } + public GetAllFeaturesAndMetaWithin(bbox: BBox, layerIdWhitelist?: Set): {features: any[], layer: string}[] { + const self = this + const tiles :{features: any[], layer: string}[]= [] + Array.from(this.perLayerHierarchy.keys()) + .forEach(key => { + if(layerIdWhitelist !== undefined && !layerIdWhitelist.has(key)){ + return; + } + return tiles.push({ + layer: key, + features: [].concat(...self.GetFeaturesWithin(key, bbox)) + }); + }) + return tiles; + } + public GetFeaturesWithin(layerId: string, bbox: BBox): any[][] { if (layerId === "*") { return this.GetAllFeaturesWithin(bbox) @@ -326,16 +381,28 @@ export default class FeaturePipeline { }) } + private onNewDataLoaded(src: FeatureSource) { + this.newDataLoadedSignal.setData(src) + } + private freshnessForVisibleLayers(z: number, x: number, y: number): Date { let oldestDate = undefined; for (const flayer of this.state.filteredLayers.data) { - if (!flayer.isDisplayed.data) { + if (!flayer.isDisplayed.data && !flayer.layerDef.forceLoad) { continue } if (this.state.locationControl.data.zoom < flayer.layerDef.minzoom) { continue; } - const freshness = this.freshnesses.get(flayer.layerDef.id).freshnessFor(z, x, y) + if (flayer.layerDef.maxAgeOfCache === 0) { + return undefined; + } + const freshnessCalc = this.freshnesses.get(flayer.layerDef.id) + if (freshnessCalc === undefined) { + console.warn("No freshness tracker found for ", flayer.layerDef.id) + return undefined + } + const freshness = freshnessCalc.freshnessFor(z, x, y) if (freshness === undefined) { // SOmething is undefined --> we return undefined as we have to download return undefined @@ -347,6 +414,9 @@ export default class FeaturePipeline { return oldestDate } + /* + * Gives an UIEventSource containing the tileIndexes of the tiles that should be loaded from OSM + * */ private getNeededTilesFromOsm(isSufficientlyZoomed: UIEventSource): UIEventSource { const self = this return this.state.currentBounds.map(bbox => { @@ -378,6 +448,7 @@ export default class FeaturePipeline { } private initOverpassUpdater(state: { + allElements: ElementStorage; layoutToUse: LayoutConfig, currentBounds: UIEventSource, locationControl: UIEventSource, @@ -388,11 +459,13 @@ export default class FeaturePipeline { const minzoom = Math.min(...state.layoutToUse.layers.map(layer => layer.minzoom)) const overpassIsActive = state.currentBounds.map(bbox => { if (bbox === undefined) { + console.debug("Disabling overpass source: no bbox") return false } let zoom = state.locationControl.data.zoom if (zoom < minzoom) { // We are zoomed out over the zoomlevel of any layer + console.debug("Disabling overpass source: zoom < minzoom") return false; } @@ -412,12 +485,13 @@ 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) downloadedLayers.forEach(layer => { self.freshnesses.get(layer.id).addTileLoad(tileIndex, date) - SaveTileToLocalStorageActor.MarkVisited(layer.id, tileIndex, date) + self.localStorageSavers.get(layer.id)?.MarkVisited(tileIndex, date) }) }) @@ -426,43 +500,18 @@ export default class FeaturePipeline { // Register everything in the state' 'AllElements' - new RegisteringAllFromFeatureSourceActor(updater) + new RegisteringAllFromFeatureSourceActor(updater, state.allElements) return updater; } - private applyMetaTags(src: FeatureSourceForLayer) { - const self = this - window.setTimeout( - () => { - const layerDef = src.layer.layerDef; - const somethingChanged = MetaTagging.addMetatags( - src.features.data, - { - memberships: this.relationTracker, - getFeaturesWithin: (layerId, bbox: BBox) => self.GetFeaturesWithin(layerId, bbox) - }, - layerDef, - { - includeDates: true, - // We assume that the non-dated metatags are already set by the cache generator - includeNonDates: layerDef.source.geojsonSource === undefined || !layerDef.source.isOsmCacheLayer - } - ) - }, - 15 - ) - - } - - private updateAllMetaTagging() { - 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) - }) + /** + * Inject a new point + */ + InjectNewPoint(geojson) { + this.newGeometryHandler.features.data.push({ + feature: geojson, + freshness: new Date() }) - + this.newGeometryHandler.features.ping(); } - } \ No newline at end of file diff --git a/Logic/FeatureSource/PerLayerFeatureSourceSplitter.ts b/Logic/FeatureSource/PerLayerFeatureSourceSplitter.ts index 3e6f5f2a7f..8bf207aaaa 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; } @@ -36,28 +36,22 @@ export default class PerLayerFeatureSourceSplitter { const featuresPerLayer = new Map(); const noLayerFound = [] - function addTo(layer: FilteredLayer, feature: { feature, freshness }) { - const id = layer.layerDef.id - const list = featuresPerLayer.get(id) - if (list !== undefined) { - list.push(feature) - } else { - featuresPerLayer.set(id, [feature]) - } + for (const layer of layers.data) { + featuresPerLayer.set(layer.layerDef.id, []) } for (const f of features) { for (const layer of layers.data) { if (layer.layerDef.source.osmTags.matchesProperties(f.feature.properties)) { // We have found our matching layer! - addTo(layer, f) + featuresPerLayer.get(layer.layerDef.id).push(f) if (!layer.layerDef.passAllFeatures) { // If not 'passAllFeatures', we are done for this feature break; } } - noLayerFound.push(f) } + noLayerFound.push(f) } // At this point, we have our features per layer as a list diff --git a/Logic/FeatureSource/Sources/ChangeGeometryApplicator.ts b/Logic/FeatureSource/Sources/ChangeGeometryApplicator.ts index 83ab174bd4..d7d6c8b7ae 100644 --- a/Logic/FeatureSource/Sources/ChangeGeometryApplicator.ts +++ b/Logic/FeatureSource/Sources/ChangeGeometryApplicator.ts @@ -74,7 +74,7 @@ export default class ChangeGeometryApplicator implements FeatureSourceForLayer { // We only apply the last change as that one'll have the latest geometry const change = changesForFeature[changesForFeature.length - 1] copy.feature.geometry = ChangeDescriptionTools.getGeojsonGeometry(change) - console.log("Applying a geometry change onto ", feature, change, copy) + console.log("Applying a geometry change onto:", feature,"The change is:", change,"which becomes:", copy) newFeatures.push(copy) } this.features.setData(newFeatures) diff --git a/Logic/FeatureSource/Sources/FilteringFeatureSource.ts b/Logic/FeatureSource/Sources/FilteringFeatureSource.ts index d5ed4dc717..5609bfed6e 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,6 +19,7 @@ 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: { @@ -28,11 +28,12 @@ export default class FilteringFeatureSource implements FeatureSourceForLayer, Ti allElements: ElementStorage }, tileIndex, - upstream: FeatureSourceForLayer + upstream: FeatureSourceForLayer, + metataggingUpdated?: UIEventSource ) { this.name = "FilteringFeatureSource(" + upstream.name + ")" this.tileIndex = tileIndex - this.bbox = BBox.fromTileIndex(tileIndex) + this.bbox = tileIndex === undefined ? undefined : BBox.fromTileIndex(tileIndex) this.upstream = upstream this.state = state @@ -54,23 +55,21 @@ export default class FilteringFeatureSource implements FeatureSourceForLayer, Ti } }) + metataggingUpdated?.addCallback(_ => { + self._is_dirty.setData(true) + }) + this.update(); } - public update() { + 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, layer.layerDef) - - 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; - } + self.registerCallback(f.feature) const isShown = layer.layerDef.isShown; const tags = f.feature.properties; @@ -83,36 +82,56 @@ export default class FilteringFeatureSource implements FeatureSourceForLayer, Ti } } - const tagsFilter = layer.appliedFilters.data; - for (const filter of tagsFilter ?? []) { - const neededTags = filter.filter.options[filter.selected].osmTags - if (!neededTags.matchesProperties(f.feature.properties)) { + const tagsFilter = Array.from(layer.appliedFilters?.data?.values() ?? []) + for (const filter of tagsFilter) { + const neededTags: TagsFilter = filter?.currentFilter + if (neededTags !== undefined && !neededTags.matchesProperties(f.feature.properties)) { // Hidden by the filter on the layer itself - we want to hide it no matter wat 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, layer: LayerConfig) { - const src = this.state.allElements.addOrGetElement(feature) + private registerCallback(feature: any) { + const src = this.state?.allElements?.addOrGetElement(feature) + if (src == undefined) { + return + } if (this._alreadyRegistered.has(src)) { return } this._alreadyRegistered.add(src) - if (layer.isShown !== undefined) { - const self = this; - src.map(tags => layer.isShown?.GetRenderValue(tags, "yes").txt).addCallbackAndRunD(isShown => { - 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 e2269d6219..df7270255c 100644 --- a/Logic/FeatureSource/Sources/GeoJsonSource.ts +++ b/Logic/FeatureSource/Sources/GeoJsonSource.ts @@ -18,19 +18,13 @@ export default class GeoJsonSource implements FeatureSourceForLayer, Tiled { public readonly layer: FilteredLayer; public readonly tileIndex public readonly bbox; - private readonly seenids: Set = new Set() - /** - * Only used if the actual source is a tiled geojson. - * A big feature might be contained in multiple tiles. - * However, we only want to load them once. The blacklist thus contains all ids of all features previously seen - * @private - */ - private readonly featureIdBlacklist?: UIEventSource> + private readonly seenids: Set; + private readonly idKey ?: string; public constructor(flayer: FilteredLayer, - zxy?: [number, number, number], + zxy?: [number, number, number] | BBox, options?: { - featureIdBlacklist?: UIEventSource> + featureIdBlacklist?: Set }) { if (flayer.layerDef.source.geojsonZoomLevel !== undefined && zxy === undefined) { @@ -38,26 +32,36 @@ export default class GeoJsonSource implements FeatureSourceForLayer, Tiled { } this.layer = flayer; - this.featureIdBlacklist = options?.featureIdBlacklist + this.idKey = flayer.layerDef.source.idKey + this.seenids = options?.featureIdBlacklist ?? new Set() let url = flayer.layerDef.source.geojsonSource.replace("{layer}", flayer.layerDef.id); if (zxy !== undefined) { - const [z, x, y] = zxy; - let tile_bbox = BBox.fromTile(z, x, y) + let tile_bbox: BBox; + if (zxy instanceof BBox) { + tile_bbox = zxy; + } else { + const [z, x, y] = zxy; + tile_bbox = BBox.fromTile(z, x, y); + + this.tileIndex = Tiles.tile_index(z, x, y) + this.bbox = BBox.fromTile(z, x, y) + url = url + .replace('{z}', "" + z) + .replace('{x}', "" + x) + .replace('{y}', "" + y) + } let bounds: { minLat: number, maxLat: number, minLon: number, maxLon: number } = tile_bbox if (this.layer.layerDef.source.mercatorCrs) { bounds = tile_bbox.toMercator() } + url = url - .replace('{z}', "" + z) - .replace('{x}', "" + x) - .replace('{y}', "" + y) .replace('{y_min}', "" + bounds.minLat) .replace('{y_max}', "" + bounds.maxLat) .replace('{x_min}', "" + bounds.minLon) .replace('{x_max}', "" + bounds.maxLon) - this.tileIndex = Tiles.tile_index(z, x, y) - this.bbox = BBox.fromTile(z, x, y) + } else { this.tileIndex = Tiles.tile_index(0, 0, 0) this.bbox = BBox.global; @@ -91,12 +95,21 @@ export default class GeoJsonSource implements FeatureSourceForLayer, Tiled { for (const feature of json.features) { const props = feature.properties for (const key in props) { + + if(props[key] === null){ + delete props[key] + } + 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]) } } + if(self.idKey !== undefined){ + props.id = props[self.idKey] + } + if (props.id === undefined) { props.id = url + "/" + i; feature.id = url + "/" + i; @@ -108,10 +121,6 @@ export default class GeoJsonSource implements FeatureSourceForLayer, Tiled { } self.seenids.add(props.id) - if (self.featureIdBlacklist?.data?.has(props.id)) { - continue; - } - let freshness: Date = time; if (feature.properties["_last_edit:timestamp"] !== undefined) { freshness = new Date(props["_last_edit:timestamp"]) @@ -126,7 +135,7 @@ export default class GeoJsonSource implements FeatureSourceForLayer, Tiled { eventSource.setData(eventSource.data.concat(newFeatures)) - }).catch(msg => console.error("Could not load geojon layer", url, "due to", msg)) + }).catch(msg => console.debug("Could not load geojson layer", url, "due to", msg)) } } diff --git a/Logic/FeatureSource/Sources/NewGeometryFromChangesFeatureSource.ts b/Logic/FeatureSource/Sources/NewGeometryFromChangesFeatureSource.ts index 6b8611d507..ee2bd2cf41 100644 --- a/Logic/FeatureSource/Sources/NewGeometryFromChangesFeatureSource.ts +++ b/Logic/FeatureSource/Sources/NewGeometryFromChangesFeatureSource.ts @@ -1,9 +1,9 @@ import {Changes} from "../../Osm/Changes"; -import {OsmNode, OsmRelation, OsmWay} from "../../Osm/OsmObject"; +import {OsmNode, OsmObject, OsmRelation, OsmWay} from "../../Osm/OsmObject"; import FeatureSource from "../FeatureSource"; import {UIEventSource} from "../../UIEventSource"; import {ChangeDescription} from "../../Osm/Actions/ChangeDescription"; -import State from "../../../State"; +import {ElementStorage} from "../../ElementStorage"; export class NewGeometryFromChangesFeatureSource implements FeatureSource { // This class name truly puts the 'Java' into 'Javascript' @@ -14,80 +14,115 @@ export class NewGeometryFromChangesFeatureSource implements FeatureSource { public readonly features: UIEventSource<{ feature: any; freshness: Date }[]> = new UIEventSource<{ feature: any; freshness: Date }[]>([]); public readonly name: string = "newFeatures"; - constructor(changes: Changes) { + constructor(changes: Changes, allElementStorage: ElementStorage, backendUrl: string) { const seenChanges = new Set(); const features = this.features.data; const self = this; - changes.pendingChanges - .map(changes => changes.filter(ch => - // only new objects allowed - ch.id < 0 && - // The change is an update to the object (e.g. tags or geometry) - not the actual create - ch.changes !== undefined && - // If tags is undefined, this is probably a new point that is part of a split road - ch.tags !== undefined && - // Already handled - !seenChanges.has(ch))) - .addCallbackAndRunD(changes => { - if (changes.length === 0) { - return; + changes.pendingChanges.stabilized(100).addCallbackAndRunD(changes => { + if (changes.length === 0) { + return; + } + + const now = new Date(); + let somethingChanged = false; + + function add(feature) { + feature.id = feature.properties.id + features.push({ + feature: feature, + freshness: now + }) + somethingChanged = true; + } + + for (const change of changes) { + if (seenChanges.has(change)) { + // Already handled + continue; + } + seenChanges.add(change) + + if (change.tags === undefined) { + // If tags is undefined, this is probably a new point that is part of a split road + continue } - const now = new Date(); - - function add(feature) { - feature.id = feature.properties.id - features.push({ - feature: feature, - freshness: now - }) - console.warn("Added a new feature: ", JSON.stringify(feature)) - } - - for (const change of changes) { - seenChanges.add(change) - try { - const tags = {} - for (const kv of change.tags) { - tags[kv.k] = kv.v - } - tags["id"] = change.type + "/" + change.id - - tags["_backend"] = State.state.osmConnection._oauth_config.url - - switch (change.type) { - case "node": - const n = new OsmNode(change.id) - n.tags = tags - n.lat = change.changes["lat"] - n.lon = change.changes["lon"] - const geojson = n.asGeoJson() - add(geojson) - break; - case "way": - const w = new OsmWay(change.id) - w.tags = tags - w.nodes = change.changes["nodes"] - w.coordinates = change.changes["coordinates"].map(coor => [coor[1], coor[0]]) - add(w.asGeoJson()) - break; - case "relation": - const r = new OsmRelation(change.id) - r.tags = tags - r.members = change.changes["members"] - add(r.asGeoJson()) - break; - } - } catch (e) { - console.error("Could not generate a new geometry to render on screen for:", e) + if (change.id > 0) { + // This is an already existing object + // In _most_ of the cases, this means that this _isn't_ a new object + // However, when a point is snapped to an already existing point, we have to create a representation for this point! + // For this, we introspect the change + if (allElementStorage.has(change.id)) { + // const currentTags = allElementStorage.getEventSourceById(change.id).data + continue; } + console.debug("Detected a reused point") + // The 'allElementsStore' does _not_ have this point yet, so we have to create it + OsmObject.DownloadObjectAsync(change.type + "/" + change.id).then(feat => { + console.log("Got the reused point:", feat) + for (const kv of change.tags) { + feat.tags[kv.k] = kv.v + } + const geojson = feat.asGeoJson(); + allElementStorage.addOrGetElement(geojson) + self.features.data.push({feature: geojson, freshness: new Date()}) + self.features.ping() + }) + continue + + } else if (change.id < 0 && change.changes === undefined) { + // The geometry is not described - not a new point + if (change.id < 0) { + console.error("WARNING: got a new point without geometry!") + } + continue; } + + try { + const tags = {} + for (const kv of change.tags) { + tags[kv.k] = kv.v + } + tags["id"] = change.type + "/" + change.id + + tags["_backend"] = backendUrl + + switch (change.type) { + case "node": + const n = new OsmNode(change.id) + n.tags = tags + n.lat = change.changes["lat"] + n.lon = change.changes["lon"] + const geojson = n.asGeoJson() + add(geojson) + break; + case "way": + const w = new OsmWay(change.id) + w.tags = tags + w.nodes = change.changes["nodes"] + w.coordinates = change.changes["coordinates"].map(([lon, lat]) => [lat, lon]) + add(w.asGeoJson()) + break; + case "relation": + const r = new OsmRelation(change.id) + r.tags = tags + r.members = change.changes["members"] + add(r.asGeoJson()) + break; + } + } catch (e) { + console.error("Could not generate a new geometry to render on screen for:", e) + } + + } + if (somethingChanged) { self.features.ping() - }) + } + }) } } \ No newline at end of file diff --git a/Logic/FeatureSource/Sources/RenderingMultiPlexerFeatureSource.ts b/Logic/FeatureSource/Sources/RenderingMultiPlexerFeatureSource.ts index 9971dbc469..5349d8d431 100644 --- a/Logic/FeatureSource/Sources/RenderingMultiPlexerFeatureSource.ts +++ b/Logic/FeatureSource/Sources/RenderingMultiPlexerFeatureSource.ts @@ -60,7 +60,7 @@ export default class RenderingMultiPlexerFeatureSource { } if (feat.geometry.type === "LineString") { - + // Add start- and endpoints const coordinates = feat.geometry.coordinates for (const rendering of startRenderings) { @@ -70,40 +70,16 @@ export default class RenderingMultiPlexerFeatureSource { const coordinate = coordinates[coordinates.length - 1] addAsPoint(feat, rendering, coordinate) } - + } - - if (feat.geometry.type === "MultiLineString") { - // Multilinestrings get a special treatment: we split them into their subparts before rendering - const lineList: [number, number][][] = feat.geometry.coordinates - - for (let i1 = 0; i1 < lineList.length; i1++) { - const coordinates = lineList[i1]; - - for (let i = 0; i < lineRenderObjects.length; i++) { - const orig = { - ...feat, - lineRenderingIndex: i, - multiLineStringIndex: i1 - } - orig.geometry.coordinates = coordinates - orig.geometry.type = "LineString" - withIndex.push(orig) - } - } - - }else{ - - // AT last, add it 'as is' to what we should render - for (let i = 0; i < lineRenderObjects.length; i++) { - withIndex.push({ - ...feat, - lineRenderingIndex: i - }) - } + // AT last, add it 'as is' to what we should render + for (let i = 0; i < lineRenderObjects.length; i++) { + withIndex.push({ + ...feat, + lineRenderingIndex: i + }) } - } } diff --git a/Logic/FeatureSource/Sources/SimpleFeatureSource.ts b/Logic/FeatureSource/Sources/SimpleFeatureSource.ts index 138a3465e6..52007d2f5b 100644 --- a/Logic/FeatureSource/Sources/SimpleFeatureSource.ts +++ b/Logic/FeatureSource/Sources/SimpleFeatureSource.ts @@ -10,7 +10,7 @@ export default class SimpleFeatureSource implements FeatureSourceForLayer, Tiled public readonly bbox: BBox = BBox.global; public readonly tileIndex: number; - constructor(layer: FilteredLayer, tileIndex: number, featureSource?: UIEventSource<{ feature:any; freshness: Date }[]>) { + constructor(layer: FilteredLayer, tileIndex: number, featureSource?: UIEventSource<{ feature: any; freshness: Date }[]>) { this.name = "SimpleFeatureSource(" + layer.layerDef.id + ")" this.layer = layer this.tileIndex = tileIndex ?? 0; diff --git a/Logic/FeatureSource/Sources/StaticFeatureSource.ts b/Logic/FeatureSource/Sources/StaticFeatureSource.ts index d5795a1d51..2d8aef37df 100644 --- a/Logic/FeatureSource/Sources/StaticFeatureSource.ts +++ b/Logic/FeatureSource/Sources/StaticFeatureSource.ts @@ -10,17 +10,20 @@ export default class StaticFeatureSource implements FeatureSource { constructor(features: any[] | UIEventSource>, useFeaturesDirectly) { const now = new Date(); + if(features === undefined){ + throw "Static feature source received undefined as source" + } if (useFeaturesDirectly) { // @ts-ignore this.features = features } else if (features instanceof UIEventSource) { // @ts-ignore - this.features = features.map(features => features.map(f => ({feature: f, freshness: now}))) + this.features = features.map(features => features?.map(f => ({feature: f, freshness: now}) ?? [])) } else { - this.features = new UIEventSource(features.map(f => ({ + this.features = new UIEventSource(features?.map(f => ({ feature: f, freshness: now - }))) + }))??[]) } } diff --git a/Logic/FeatureSource/TiledFeatureSource/DynamicGeoJsonTileSource.ts b/Logic/FeatureSource/TiledFeatureSource/DynamicGeoJsonTileSource.ts index 21aeec1c1d..0c37711ce4 100644 --- a/Logic/FeatureSource/TiledFeatureSource/DynamicGeoJsonTileSource.ts +++ b/Logic/FeatureSource/TiledFeatureSource/DynamicGeoJsonTileSource.ts @@ -5,13 +5,17 @@ import Loc from "../../../Models/Loc"; import DynamicTileSource from "./DynamicTileSource"; import {Utils} from "../../../Utils"; import GeoJsonSource from "../Sources/GeoJsonSource"; +import {BBox} from "../../BBox"; export default class DynamicGeoJsonTileSource extends DynamicTileSource { + + private static whitelistCache = new Map() + constructor(layer: FilteredLayer, registerLayer: (layer: FeatureSourceForLayer & Tiled) => void, state: { locationControl: UIEventSource - leafletMap: any + currentBounds: UIEventSource }) { const source = layer.layerDef.source if (source.geojsonZoomLevel === undefined) { @@ -29,22 +33,29 @@ export default class DynamicGeoJsonTileSource extends DynamicTileSource { .replace("{x}_{y}.geojson", "overview.json") .replace("{layer}", layer.layerDef.id) - Utils.downloadJson(whitelistUrl).then( - json => { - const data = new Map>(); - for (const x in json) { - data.set(Number(x), new Set(json[x])) + if (DynamicGeoJsonTileSource.whitelistCache.has(whitelistUrl)) { + whitelist = DynamicGeoJsonTileSource.whitelistCache.get(whitelistUrl) + } else { + Utils.downloadJsonCached(whitelistUrl, 1000 * 60 * 60).then( + json => { + const data = new Map>(); + for (const x in json) { + if (x === "zoom") { + continue + } + data.set(Number(x), new Set(json[x])) + } + console.log("The whitelist is", data, "based on ", json, "from", whitelistUrl) + whitelist = data + DynamicGeoJsonTileSource.whitelistCache.set(whitelistUrl, whitelist) } - console.log("The whitelist is", data, "based on ", json, "from", whitelistUrl) - whitelist = data - } - ).catch(err => { - console.warn("No whitelist found for ", layer.layerDef.id, err) - }) + ).catch(err => { + console.warn("No whitelist found for ", layer.layerDef.id, err) + }) + } } - const seenIds = new Set(); - const blackList = new UIEventSource(seenIds) + const blackList = (new Set()) super( layer, source.geojsonZoomLevel, @@ -52,7 +63,7 @@ export default class DynamicGeoJsonTileSource extends DynamicTileSource { if (whitelist !== undefined) { const isWhiteListed = whitelist.get(zxy[1])?.has(zxy[2]) if (!isWhiteListed) { - console.log("Not downloading tile", ...zxy, "as it is not on the whitelist") + console.debug("Not downloading tile", ...zxy, "as it is not on the whitelist") return undefined; } } @@ -64,10 +75,7 @@ export default class DynamicGeoJsonTileSource extends DynamicTileSource { featureIdBlacklist: blackList } ) - src.features.addCallbackAndRunD(feats => { - feats.forEach(feat => seenIds.add(feat.feature.properties.id)) - blackList.ping(); - }) + registerLayer(src) return src }, @@ -76,4 +84,15 @@ export default class DynamicGeoJsonTileSource extends DynamicTileSource { } + public static RegisterWhitelist(url: string, json: any) { + const data = new Map>(); + for (const x in json) { + if (x === "zoom") { + continue + } + data.set(Number(x), new Set(json[x])) + } + DynamicGeoJsonTileSource.whitelistCache.set(url, data) + } + } \ No newline at end of file diff --git a/Logic/FeatureSource/TiledFeatureSource/DynamicTileSource.ts b/Logic/FeatureSource/TiledFeatureSource/DynamicTileSource.ts index dcc415f31e..b974687307 100644 --- a/Logic/FeatureSource/TiledFeatureSource/DynamicTileSource.ts +++ b/Logic/FeatureSource/TiledFeatureSource/DynamicTileSource.ts @@ -4,6 +4,7 @@ import {UIEventSource} from "../../UIEventSource"; import Loc from "../../../Models/Loc"; import TileHierarchy from "./TileHierarchy"; import {Tiles} from "../../../Models/TileRange"; +import {BBox} from "../../BBox"; /*** * A tiled source which dynamically loads the required tiles at a fixed zoom level @@ -17,8 +18,8 @@ export default class DynamicTileSource implements TileHierarchy (FeatureSourceForLayer & Tiled), state: { + currentBounds: UIEventSource; locationControl: UIEventSource - leafletMap: any } ) { const self = this; @@ -26,7 +27,7 @@ export default class DynamicTileSource implements TileHierarchy() const neededTiles = state.locationControl.map( location => { - if (!layer.isDisplayed.data) { + if (!layer.isDisplayed.data && !layer.layerDef.forceLoad) { // No need to download! - the layer is disabled return undefined; } @@ -37,12 +38,16 @@ 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) { @@ -50,7 +55,7 @@ export default class DynamicTileSource implements TileHierarchy { console.log("Tiled geojson source ", layer.layerDef.id, " needs", neededIndexes) diff --git a/Logic/FeatureSource/TiledFeatureSource/FullNodeDatabaseSource.ts b/Logic/FeatureSource/TiledFeatureSource/FullNodeDatabaseSource.ts index d02ae5858a..6561b234d0 100644 --- a/Logic/FeatureSource/TiledFeatureSource/FullNodeDatabaseSource.ts +++ b/Logic/FeatureSource/TiledFeatureSource/FullNodeDatabaseSource.ts @@ -3,12 +3,15 @@ import FeatureSource, {FeatureSourceForLayer, Tiled} from "../FeatureSource"; import {OsmNode, OsmObject, OsmWay} from "../../Osm/OsmObject"; import SimpleFeatureSource from "../Sources/SimpleFeatureSource"; import FilteredLayer from "../../../Models/FilteredLayer"; +import {UIEventSource} from "../../UIEventSource"; export default class FullNodeDatabaseSource implements TileHierarchy { public readonly loadedTiles = new Map() private readonly onTileLoaded: (tile: (Tiled & FeatureSourceForLayer)) => void; private readonly layer: FilteredLayer + private readonly nodeByIds = new Map(); + private readonly parentWays = new Map>() constructor( layer: FilteredLayer, @@ -31,9 +34,9 @@ export default class FullNodeDatabaseSource implements TileHierarchyosmObj; nodesById.set(osmNode.id, osmNode) + this.nodeByIds.set(osmNode.id, osmNode) } - const parentWaysByNodeId = new Map() for (const osmObj of allObjects) { if (osmObj.type !== "way") { continue @@ -41,15 +44,20 @@ export default class FullNodeDatabaseSource implements TileHierarchyosmObj; for (const nodeId of osmWay.nodes) { - if (!parentWaysByNodeId.has(nodeId)) { - parentWaysByNodeId.set(nodeId, []) + if (!this.parentWays.has(nodeId)) { + const src = new UIEventSource([]) + this.parentWays.set(nodeId, src) + src.addCallback(parentWays => { + const tgs = nodesById.get(nodeId).tags + tgs ["parent_ways"] = JSON.stringify(parentWays.map(w => w.tags)) + tgs["parent_way_ids"] = JSON.stringify(parentWays.map(w => w.id)) + }) } - parentWaysByNodeId.get(nodeId).push(osmWay) + const src = this.parentWays.get(nodeId) + src.data.push(osmWay) + src.ping(); } } - parentWaysByNodeId.forEach((allWays, nodeId) => { - nodesById.get(nodeId).tags["parent_ways"] = JSON.stringify(allWays.map(w => w.tags)) - }) const now = new Date() const asGeojsonFeatures = Array.from(nodesById.values()).map(osmNode => ({ feature: osmNode.asGeoJson(), freshness: now @@ -62,6 +70,24 @@ export default class FullNodeDatabaseSource implements TileHierarchy { + return this.parentWays.get(nodeId) + } } diff --git a/Logic/FeatureSource/TiledFeatureSource/OsmFeatureSource.ts b/Logic/FeatureSource/TiledFeatureSource/OsmFeatureSource.ts index b7e11e8345..a9bd149b55 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() @@ -63,22 +66,20 @@ export default class OsmFeatureSource { try { for (const neededTile of neededTiles) { - console.log("Tile download", Tiles.tile_from_index(neededTile).join("/"), "started") self.downloadedTiles.add(neededTile) self.LoadTile(...Tiles.tile_from_index(neededTile)).then(_ => { - console.debug("Tile ", Tiles.tile_from_index(neededTile).join("/"), "loaded") + console.debug("Tile ", Tiles.tile_from_index(neededTile).join("/"), "loaded from OSM") }) } } catch (e) { console.error(e) } finally { - console.log("Done") self.isRunning.setData(false) } }) - const neededLayers = options.state.layoutToUse.layers + const neededLayers = (options.state.layoutToUse?.layers ?? []) .filter(layer => !layer.doNotDownload) .filter(layer => layer.source.geojsonSource === undefined || layer.source.isOsmCacheLayer) this.allowedTags = new Or(neededLayers.map(l => l.source.osmTags)) @@ -89,11 +90,14 @@ export default class OsmFeatureSource { 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}` try { - console.log("Attempting to get tile", z, x, y, "from the osm api") const osmJson = await Utils.downloadJson(url) try { console.debug("Got tile", z, x, y, "from the osm api") @@ -108,7 +112,9 @@ export default class OsmFeatureSource { // We only keep what is needed geojson.features = geojson.features.filter(feature => this.allowedTags.matchesProperties(feature.properties)) - geojson.features.forEach(f => f.properties["_backend"] = this._backend) + geojson.features.forEach(f => { + f.properties["_backend"] = this._backend + }) const index = Tiles.tile_index(z, x, y); new PerLayerFeatureSourceSplitter(this.filteredLayers, diff --git a/Logic/FeatureSource/TiledFeatureSource/TileHierarchyMerger.ts b/Logic/FeatureSource/TiledFeatureSource/TileHierarchyMerger.ts index 716aefde00..c65decf9f2 100644 --- a/Logic/FeatureSource/TiledFeatureSource/TileHierarchyMerger.ts +++ b/Logic/FeatureSource/TiledFeatureSource/TileHierarchyMerger.ts @@ -21,7 +21,6 @@ export class TileHierarchyMerger implements TileHierarchy root.addFeatures(feats)) return root; @@ -142,7 +146,10 @@ export default class TiledFeatureSource implements Tiled, IndexedFeatureSource, for (const feature of features) { const bbox = BBox.get(feature.feature) - if (this.options.dontEnforceMinZoom) { + // There are a few strategies to deal with features that cross tile boundaries + + if (this.options.noDuplicates) { + // Strategy 1: We put the feature into a somewhat matching tile if (bbox.overlapsWith(this.upper_left.bbox)) { ulf.push(feature) } else if (bbox.overlapsWith(this.upper_right.bbox)) { @@ -155,6 +162,7 @@ export default class TiledFeatureSource implements Tiled, IndexedFeatureSource, overlapsboundary.push(feature) } } else if (this.options.minZoomLevel === undefined) { + // Strategy 2: put it into a strictly matching tile (or in this tile, which is slightly too big) if (bbox.isContainedIn(this.upper_left.bbox)) { ulf.push(feature) } else if (bbox.isContainedIn(this.upper_right.bbox)) { @@ -167,7 +175,7 @@ export default class TiledFeatureSource implements Tiled, IndexedFeatureSource, overlapsboundary.push(feature) } } else { - // We duplicate a feature on a boundary into every tile as we need to get to the minZoomLevel + // Strategy 3: We duplicate a feature on a boundary into every tile as we need to get to the minZoomLevel if (bbox.overlapsWith(this.upper_left.bbox)) { ulf.push(feature) } @@ -197,9 +205,9 @@ export interface TiledFeatureSourceOptions { readonly minZoomLevel?: number, /** * IF minZoomLevel is set, and if a feature runs through a tile boundary, it would normally be duplicated. - * Setting 'dontEnforceMinZoomLevel' will still allow bigger zoom levels for those features + * Setting 'dontEnforceMinZoomLevel' will assign to feature to some matching subtile. */ - readonly dontEnforceMinZoom?: boolean, - readonly registerTile?: (tile: TiledFeatureSource & Tiled) => void, + readonly noDuplicates?: boolean, + readonly registerTile?: (tile: TiledFeatureSource & FeatureSourceForLayer & Tiled) => void, readonly layer?: FilteredLayer } \ No newline at end of file diff --git a/Logic/FeatureSource/TiledFeatureSource/TiledFromLocalStorageSource.ts b/Logic/FeatureSource/TiledFeatureSource/TiledFromLocalStorageSource.ts deleted file mode 100644 index c473491b26..0000000000 --- a/Logic/FeatureSource/TiledFeatureSource/TiledFromLocalStorageSource.ts +++ /dev/null @@ -1,133 +0,0 @@ -import FilteredLayer from "../../../Models/FilteredLayer"; -import {FeatureSourceForLayer, Tiled} from "../FeatureSource"; -import {UIEventSource} from "../../UIEventSource"; -import TileHierarchy from "./TileHierarchy"; -import SaveTileToLocalStorageActor from "../Actors/SaveTileToLocalStorageActor"; -import {Tiles} from "../../../Models/TileRange"; -import {BBox} from "../../BBox"; -import LayerConfig from "../../../Models/ThemeConfig/LayerConfig"; - -export default class TiledFromLocalStorageSource implements TileHierarchy { - public readonly loadedTiles: Map = new Map(); - private readonly layer: FilteredLayer; - private readonly handleFeatureSource: (src: FeatureSourceForLayer & Tiled, index: number) => void; - private readonly undefinedTiles: Set; - - constructor(layer: FilteredLayer, - handleFeatureSource: (src: FeatureSourceForLayer & Tiled, index: number) => void, - state: { - currentBounds: UIEventSource - }) { - this.layer = layer; - this.handleFeatureSource = handleFeatureSource; - - - this.undefinedTiles = new Set() - const prefix = SaveTileToLocalStorageActor.storageKey + "-" + layer.layerDef.id + "-" - const knownTiles: number[] = Object.keys(localStorage) - .filter(key => { - return key.startsWith(prefix) && !key.endsWith("-time") && !key.endsWith("-format"); - }) - .map(key => { - return Number(key.substring(prefix.length)); - }) - .filter(i => !isNaN(i)) - - console.debug("Layer", layer.layerDef.id, "has following tiles in available in localstorage", knownTiles.map(i => Tiles.tile_from_index(i).join("/")).join(", ")) - for (const index of knownTiles) { - - const prefix = SaveTileToLocalStorageActor.storageKey + "-" + layer.layerDef.id + "-" + index; - const version = localStorage.getItem(prefix + "-format") - if (version === undefined || version !== SaveTileToLocalStorageActor.formatVersion) { - // Invalid version! Remove this tile from local storage - localStorage.removeItem(prefix) - localStorage.removeItem(prefix + "-time") - localStorage.removeItem(prefix + "-format") - this.undefinedTiles.add(index) - console.log("Dropped old format tile", prefix) - } - } - - const self = this - state.currentBounds.map(bounds => { - - if (bounds === undefined) { - return; - } - for (const knownTile of knownTiles) { - - if (this.loadedTiles.has(knownTile)) { - continue; - } - if (this.undefinedTiles.has(knownTile)) { - continue; - } - - if (!bounds.overlapsWith(BBox.fromTileIndex(knownTile))) { - continue; - } - self.loadTile(knownTile) - } - }) - - } - - public static GetFreshnesses(layerId: string): Map { - const prefix = SaveTileToLocalStorageActor.storageKey + "-" + layerId + "-" - const freshnesses = new Map() - for (const key of Object.keys(localStorage)) { - if (!(key.startsWith(prefix) && key.endsWith("-time"))) { - continue - } - const index = Number(key.substring(prefix.length, key.length - "-time".length)) - const time = Number(localStorage.getItem(key)) - const freshness = new Date() - freshness.setTime(time) - freshnesses.set(index, freshness) - } - return freshnesses - } - - static cleanCacheForLayer(layer: LayerConfig) { - const now = new Date() - const prefix = SaveTileToLocalStorageActor.storageKey + "-" + layer.id + "-" - console.log("Cleaning tiles of ", prefix, "with max age", layer.maxAgeOfCache) - for (const key of Object.keys(localStorage)) { - if (!(key.startsWith(prefix) && key.endsWith("-time"))) { - continue - } - const index = Number(key.substring(prefix.length, key.length - "-time".length)) - const time = Number(localStorage.getItem(key)) - const timeDiff = (now.getTime() - time) / 1000 - - if (timeDiff >= layer.maxAgeOfCache) { - const k = prefix + index; - localStorage.removeItem(k) - localStorage.removeItem(k + "-format") - localStorage.removeItem(k + "-time") - } - } - } - - private loadTile(neededIndex: number) { - try { - const key = SaveTileToLocalStorageActor.storageKey + "-" + this.layer.layerDef.id + "-" + neededIndex - const data = localStorage.getItem(key) - const features = JSON.parse(data) - const src = { - layer: this.layer, - features: new UIEventSource<{ feature: any; freshness: Date }[]>(features), - name: "FromLocalStorage(" + key + ")", - tileIndex: neededIndex, - bbox: BBox.fromTileIndex(neededIndex) - } - this.handleFeatureSource(src, neededIndex) - this.loadedTiles.set(neededIndex, src) - } catch (e) { - console.error("Could not load data tile from local storage due to", e) - this.undefinedTiles.add(neededIndex) - } - } - - -} \ No newline at end of file diff --git a/Logic/GeoOperations.ts b/Logic/GeoOperations.ts index 4d89faa9f2..9c0bad52c4 100644 --- a/Logic/GeoOperations.ts +++ b/Logic/GeoOperations.ts @@ -25,8 +25,7 @@ export class GeoOperations { } static centerpointCoordinates(feature: any): [number, number] { - // @ts-ignore - return turf.center(feature).geometry.coordinates; + return <[number, number]>turf.center(feature).geometry.coordinates; } /** @@ -35,7 +34,11 @@ export class GeoOperations { * @param lonlat1 */ static distanceBetween(lonlat0: [number, number], lonlat1: [number, number]) { - return turf.distance(lonlat0, lonlat1) * 1000 + return turf.distance(lonlat0, lonlat1, {units: "meters"}) + } + + static convexHull(featureCollection, options: { concavity?: number }) { + return turf.convex(featureCollection, options) } /** @@ -56,7 +59,7 @@ export class GeoOperations { const coor = feature.geometry.coordinates; for (const otherFeature of otherFeatures) { - if (feature.id !== undefined && feature.id === otherFeature.id) { + if (feature.properties.id !== undefined && feature.properties.id === otherFeature.properties.id) { continue; } @@ -76,11 +79,11 @@ export class GeoOperations { for (const otherFeature of otherFeatures) { - if (feature.id !== undefined && feature.id === otherFeature.id) { + if (feature.properties.id !== undefined && feature.properties.id === otherFeature.properties.id) { continue; } - const intersection = this.calculateInstersection(feature, otherFeature, featureBBox) + const intersection = GeoOperations.calculateInstersection(feature, otherFeature, featureBBox) if (intersection === null) { continue } @@ -94,7 +97,7 @@ export class GeoOperations { for (const otherFeature of otherFeatures) { - if (feature.id === otherFeature.id) { + if (feature.properties.id !== undefined && feature.properties.id === otherFeature.properties.id) { continue; } @@ -121,6 +124,20 @@ export class GeoOperations { return result; } + public static pointInPolygonCoordinates(x: number, y: number, coordinates: [number, number][][]) { + const inside = GeoOperations.pointWithinRing(x, y, /*This is the outer ring of the polygon */coordinates[0]) + if (!inside) { + return false; + } + for (let i = 1; i < coordinates.length; i++) { + const inHole = GeoOperations.pointWithinRing(x, y, coordinates[i] /* These are inner rings, aka holes*/) + if (inHole) { + return false; + } + } + return true; + } + public static inside(pointCoordinate, feature): boolean { // ray-casting algorithm based on // http://www.ecse.rpi.edu/Homepages/wrf/Research/Short_Notes/pnpoly.html @@ -133,62 +150,31 @@ export class GeoOperations { pointCoordinate = pointCoordinate.geometry.coordinates } - if (feature.geometry.type === "MultiPolygon") { - const coordinates = feature.geometry.coordinates[0]; - const outerPolygon = coordinates[0]; - const inside = GeoOperations.inside(pointCoordinate, { - geometry: { - type: 'Polygon', - coordinates: [outerPolygon] - } - }) - if (!inside) { - return false; - } - for (let i = 1; i < coordinates.length; i++) { - const inHole = GeoOperations.inside(pointCoordinate, { - geometry: { - type: 'Polygon', - coordinates: [coordinates[i]] - } - }) - if (inHole) { - return false; - } - } - return true; - } - - const x: number = pointCoordinate[0]; const y: number = pointCoordinate[1]; - for (let i = 0; i < feature.geometry.coordinates.length; i++) { - let poly = feature.geometry.coordinates[i]; - let inside = false; - for (let i = 0, j = poly.length - 1; i < poly.length; j = i++) { - const coori = poly[i]; - const coorj = poly[j]; - - const xi = coori[0]; - const yi = coori[1]; - const xj = coorj[0]; - const yj = coorj[1]; - - const intersect = ((yi > y) != (yj > y)) - && (x < (xj - xi) * (y - yi) / (yj - yi) + xi); - if (intersect) { - inside = !inside; + if (feature.geometry.type === "MultiPolygon") { + const coordinatess = feature.geometry.coordinates; + for (const coordinates of coordinatess) { + const inThisPolygon = GeoOperations.pointInPolygonCoordinates(x, y, coordinates) + if (inThisPolygon) { + return true; } + } - if (inside) { - return true; - } + return false; } - return false; - }; + + if (feature.geometry.type === "Polygon") { + return GeoOperations.pointInPolygonCoordinates(x, y, feature.geometry.coordinates) + } + + throw "GeoOperations.inside: unsupported geometry type "+feature.geometry.type + + + } static lengthInMeters(feature: any) { return turf.length(feature) * 1000 @@ -348,250 +334,165 @@ export class GeoOperations { } /** - * Calculates the intersection between two features. - * Returns the length if intersecting a linestring and a (multi)polygon (in meters), returns a surface area (in m²) if intersecting two (multi)polygons - * Returns 0 if both are linestrings - * Returns null if the features are not intersecting + * Calculates line intersection between two features. */ - private static calculateInstersection(feature, otherFeature, featureBBox: BBox, otherFeatureBBox?: BBox): number { - try { - if (feature.geometry.type === "LineString") { - - - otherFeatureBBox = otherFeatureBBox ?? BBox.get(otherFeature); - const overlaps = featureBBox.overlapsWith(otherFeatureBBox) - if (!overlaps) { - return null; - } - - // Calculate the length of the intersection - - - let intersectionPoints = turf.lineIntersect(feature, otherFeature); - if (intersectionPoints.features.length == 0) { - // No intersections. - // If one point is inside of the polygon, all points are - - - const coors = feature.geometry.coordinates; - const startCoor = coors[0] - if (this.inside(startCoor, otherFeature)) { - return this.lengthInMeters(feature) - } - - return null; - } - let intersectionPointsArray = intersectionPoints.features.map(d => { - return d.geometry.coordinates - }); - - if (otherFeature.geometry.type === "LineString") { - if (intersectionPointsArray.length > 0) { - return 0 - } - return null; - } - if (intersectionPointsArray.length == 1) { - // We need to add the start- or endpoint of the current feature, depending on which one is embedded - const coors = feature.geometry.coordinates; - const startCoor = coors[0] - if (this.inside(startCoor, otherFeature)) { - // The startpoint is embedded - intersectionPointsArray.push(startCoor) - } else { - intersectionPointsArray.push(coors[coors.length - 1]) - } - } - - let intersection = turf.lineSlice(turf.point(intersectionPointsArray[0]), turf.point(intersectionPointsArray[1]), feature); - - if (intersection == null) { - return null; - } - const intersectionSize = turf.length(intersection); // in km - return intersectionSize * 1000 - - - } - - if (feature.geometry.type === "Polygon" || feature.geometry.type === "MultiPolygon") { - const otherFeatureBBox = BBox.get(otherFeature); - const overlaps = featureBBox.overlapsWith(otherFeatureBBox) - if (!overlaps) { - return null; - } - if (otherFeature.geometry.type === "LineString") { - return this.calculateInstersection(otherFeature, feature, otherFeatureBBox, featureBBox) - } - - const intersection = turf.intersect(feature, otherFeature); - if (intersection == null) { - return null; - } - return turf.area(intersection); // in m² - - } - - } catch (exception) { - console.warn("EXCEPTION CAUGHT WHILE INTERSECTING: ", exception); - return undefined - } - return undefined; + public static LineIntersections(feature, otherFeature): [number, number][] { + return turf.lineIntersect(feature, otherFeature).features.map(p => <[number, number]>p.geometry.coordinates) } - public static AsGpx(feature, generatedWithLayer?: LayerConfig){ - + public static AsGpx(feature, generatedWithLayer?: LayerConfig) { + const metadata = {} const tags = feature.properties - - if(generatedWithLayer !== undefined){ - + + if (generatedWithLayer !== undefined) { + metadata["name"] = generatedWithLayer.title?.GetRenderValue(tags)?.Subs(tags)?.txt - metadata["desc"] = "Generated with MapComplete layer "+generatedWithLayer.id - if(tags._backend?.contains("openstreetmap")){ - metadata["copyright"]= "Data copyrighted by OpenStreetMap-contributors, freely available under ODbL. See https://www.openstreetmap.org/copyright" + metadata["desc"] = "Generated with MapComplete layer " + generatedWithLayer.id + if (tags._backend?.contains("openstreetmap")) { + metadata["copyright"] = "Data copyrighted by OpenStreetMap-contributors, freely available under ODbL. See https://www.openstreetmap.org/copyright" metadata["author"] = tags["_last_edit:contributor"] - metadata["link"]= "https://www.openstreetmap.org/"+tags.id + metadata["link"] = "https://www.openstreetmap.org/" + tags.id metadata["time"] = tags["_last_edit:timestamp"] - }else{ + } else { metadata["time"] = new Date().toISOString() } } - + return togpx(feature, { - creator: "MapComplete "+Constants.vNumber, + creator: "MapComplete " + Constants.vNumber, metadata }) } - - public static IdentifieCommonSegments(coordinatess: [number,number][][] ): { + + public static IdentifieCommonSegments(coordinatess: [number, number][][]): { originalIndex: number, segmentShardWith: number[], coordinates: [] - }[]{ - + }[] { + // An edge. Note that the edge might be reversed to fix the sorting condition: start[0] < end[0] && (start[0] != end[0] || start[0] < end[1]) - type edge = {start: [number, number], end: [number, number], intermediate: [number,number][], members: {index:number, isReversed: boolean}[]} + type edge = { start: [number, number], end: [number, number], intermediate: [number, number][], members: { index: number, isReversed: boolean }[] } // The strategy: // 1. Index _all_ edges from _every_ linestring. Index them by starting key, gather which relations run over them // 2. Join these edges back together - as long as their membership groups are the same // 3. Convert to results - + const allEdgesByKey = new Map() - for (let index = 0; index < coordinatess.length; index++){ + for (let index = 0; index < coordinatess.length; index++) { const coordinates = coordinatess[index]; - for (let i = 0; i < coordinates.length - 1; i++){ - + for (let i = 0; i < coordinates.length - 1; i++) { + const c0 = coordinates[i]; const c1 = coordinates[i + 1] const isReversed = (c0[0] > c1[0]) || (c0[0] == c1[0] && c0[1] > c1[1]) - - let key : string - if(isReversed){ - key = ""+c1+";"+c0 - }else{ - key = ""+c0+";"+c1 + + let key: string + if (isReversed) { + key = "" + c1 + ";" + c0 + } else { + key = "" + c0 + ";" + c1 } const member = {index, isReversed} - if(allEdgesByKey.has(key)){ + if (allEdgesByKey.has(key)) { allEdgesByKey.get(key).members.push(member) continue } - - let edge : edge; - if(!isReversed){ + + let edge: edge; + if (!isReversed) { edge = { - start : c0, + start: c0, end: c1, members: [member], intermediate: [] } - }else{ + } else { edge = { - start : c1, + start: c1, end: c0, members: [member], intermediate: [] } } allEdgesByKey.set(key, edge) - + } } // Lets merge them back together! - + let didMergeSomething = false; let allMergedEdges = Array.from(allEdgesByKey.values()) const allEdgesByStartPoint = new Map() for (const edge of allMergedEdges) { - + edge.members.sort((m0, m1) => m0.index - m1.index) - - const kstart = edge.start+"" - if(!allEdgesByStartPoint.has(kstart)){ + + const kstart = edge.start + "" + if (!allEdgesByStartPoint.has(kstart)) { allEdgesByStartPoint.set(kstart, []) } allEdgesByStartPoint.get(kstart).push(edge) } - - - function membersAreCompatible(first:edge, second:edge): boolean{ + + + function membersAreCompatible(first: edge, second: edge): boolean { // There must be an exact match between the members - if(first.members === second.members){ + if (first.members === second.members) { return true } - - if(first.members.length !== second.members.length){ + + if (first.members.length !== second.members.length) { return false } - + // Members are sorted and have the same length, so we can check quickly for (let i = 0; i < first.members.length; i++) { const m0 = first.members[i] const m1 = second.members[i] - if(m0.index !== m1.index || m0.isReversed !== m1.isReversed){ + if (m0.index !== m1.index || m0.isReversed !== m1.isReversed) { return false } } - + // Allrigth, they are the same, lets mark this permanently second.members = first.members return true - + } - - do{ + + do { didMergeSomething = false // We use 'allMergedEdges' as our running list const consumed = new Set() for (const edge of allMergedEdges) { // Can we make this edge longer at the end? - if(consumed.has(edge)){ + if (consumed.has(edge)) { continue } - + console.log("Considering edge", edge) - const matchingEndEdges = allEdgesByStartPoint.get(edge.end+"") + const matchingEndEdges = allEdgesByStartPoint.get(edge.end + "") console.log("Matchign endpoints:", matchingEndEdges) - if(matchingEndEdges === undefined){ + if (matchingEndEdges === undefined) { continue } - - - for (let i = 0; i < matchingEndEdges.length; i++){ + + + for (let i = 0; i < matchingEndEdges.length; i++) { const endEdge = matchingEndEdges[i]; - - if(consumed.has(endEdge)){ + + if (consumed.has(endEdge)) { continue } - - if(!membersAreCompatible(edge, endEdge)){ + + if (!membersAreCompatible(edge, endEdge)) { continue } - + // We can make the segment longer! didMergeSomething = true console.log("Merging ", edge, "with ", endEdge) @@ -602,13 +503,191 @@ export class GeoOperations { break; } } - + allMergedEdges = allMergedEdges.filter(edge => !consumed.has(edge)); - - }while(didMergeSomething) - + + } while (didMergeSomething) + return [] } + + /** + * Removes points that do not contribute to the geometry from linestrings and the outer ring of polygons. + * Returs a new copy of the feature + * @param feature + */ + static removeOvernoding(feature: any) { + if (feature.geometry.type !== "LineString" && feature.geometry.type !== "Polygon") { + throw "Overnode removal is only supported on linestrings and polygons" + } + + const copy = { + ...feature, + geometry: {...feature.geometry} + } + let coordinates: [number, number][] + if (feature.geometry.type === "LineString") { + coordinates = [...feature.geometry.coordinates] + copy.geometry.coordinates = coordinates + } else { + coordinates = [...feature.geometry.coordinates[0]] + copy.geometry.coordinates[0] = coordinates + } + + // inline replacement in the coordinates list + for (let i = coordinates.length - 2; i >= 1; i--) { + const coordinate = coordinates[i]; + const nextCoordinate = coordinates[i + 1] + const prevCoordinate = coordinates[i - 1] + + const distP = GeoOperations.distanceBetween(coordinate, prevCoordinate) + if (distP < 0.1) { + coordinates.splice(i, 1) + continue + } + + if (i == coordinates.length - 2) { + const distN = GeoOperations.distanceBetween(coordinate, nextCoordinate) + if (distN < 0.1) { + coordinates.splice(i, 1) + continue + } + } + + const bearingN = turf.bearing(coordinate, nextCoordinate) + const bearingP = turf.bearing(prevCoordinate, coordinate) + const diff = Math.abs(bearingN - bearingP) + if (diff < 4) { + // If the diff is low, this point is hardly relevant + coordinates.splice(i, 1) + } else if (360 - diff < 4) { + // In case that the line is going south, e.g. bearingN = 179, bearingP = -179 + coordinates.splice(i, 1) + } + + } + return copy; + + } + + private static pointWithinRing(x: number, y: number, ring: [number, number][]) { + let inside = false; + for (let i = 0, j = ring.length - 1; i < ring.length; j = i++) { + const coori = ring[i]; + const coorj = ring[j]; + + const xi = coori[0]; + const yi = coori[1]; + const xj = coorj[0]; + const yj = coorj[1]; + + const intersect = ((yi > y) != (yj > y)) + && (x < (xj - xi) * (y - yi) / (yj - yi) + xi); + if (intersect) { + inside = !inside; + } + } + return inside; + } + + /** + * Calculates the intersection between two features. + * Returns the length if intersecting a linestring and a (multi)polygon (in meters), returns a surface area (in m²) if intersecting two (multi)polygons + * Returns 0 if both are linestrings + * Returns null if the features are not intersecting + */ + private static calculateInstersection(feature, otherFeature, featureBBox: BBox, otherFeatureBBox?: BBox): number { + if (feature.geometry.type === "LineString") { + + + otherFeatureBBox = otherFeatureBBox ?? BBox.get(otherFeature); + const overlaps = featureBBox.overlapsWith(otherFeatureBBox) + if (!overlaps) { + return null; + } + + // Calculate the length of the intersection + + + let intersectionPoints = turf.lineIntersect(feature, otherFeature); + if (intersectionPoints.features.length == 0) { + // No intersections. + // If one point is inside of the polygon, all points are + + + const coors = feature.geometry.coordinates; + const startCoor = coors[0] + if (this.inside(startCoor, otherFeature)) { + return this.lengthInMeters(feature) + } + + return null; + } + let intersectionPointsArray = intersectionPoints.features.map(d => { + return d.geometry.coordinates + }); + + if (otherFeature.geometry.type === "LineString") { + if (intersectionPointsArray.length > 0) { + return 0 + } + return null; + } + if (intersectionPointsArray.length == 1) { + // We need to add the start- or endpoint of the current feature, depending on which one is embedded + const coors = feature.geometry.coordinates; + const startCoor = coors[0] + if (this.inside(startCoor, otherFeature)) { + // The startpoint is embedded + intersectionPointsArray.push(startCoor) + } else { + intersectionPointsArray.push(coors[coors.length - 1]) + } + } + + let intersection = turf.lineSlice(turf.point(intersectionPointsArray[0]), turf.point(intersectionPointsArray[1]), feature); + + if (intersection == null) { + return null; + } + const intersectionSize = turf.length(intersection); // in km + return intersectionSize * 1000 + + + } + + if (feature.geometry.type === "Polygon" || feature.geometry.type === "MultiPolygon") { + const otherFeatureBBox = BBox.get(otherFeature); + const overlaps = featureBBox.overlapsWith(otherFeatureBBox) + if (!overlaps) { + return null; + } + if (otherFeature.geometry.type === "LineString") { + return this.calculateInstersection(otherFeature, feature, otherFeatureBBox, featureBBox) + } + + try { + + const intersection = turf.intersect(feature, otherFeature); + if (intersection == null) { + return null; + } + return turf.area(intersection); // in m² + } catch (e) { + if (e.message === "Each LinearRing of a Polygon must have 4 or more Positions.") { + // WORKAROUND TIME! + // See https://github.com/Turfjs/turf/pull/2238 + return null; + } + throw e; + } + + } + throw "CalculateIntersection fallthrough: can not calculate an intersection between features" + + } + + } diff --git a/Logic/ImageProviders/ImageProvider.ts b/Logic/ImageProviders/ImageProvider.ts index c1d90578e4..dded72a0b1 100644 --- a/Logic/ImageProviders/ImageProvider.ts +++ b/Logic/ImageProviders/ImageProvider.ts @@ -35,7 +35,7 @@ export default abstract class ImageProvider { }): UIEventSource { const prefixes = options?.prefixes ?? this.defaultKeyPrefixes if (prefixes === undefined) { - throw "The image provider" + this.constructor.name + " doesn't define `defaultKeyPrefixes`" + throw "No `defaultKeyPrefixes` defined by this image provider" } const relevantUrls = new UIEventSource<{ url: string; key: string; provider: ImageProvider }[]>([]) const seenValues = new Set() diff --git a/Logic/ImageProviders/Imgur.ts b/Logic/ImageProviders/Imgur.ts index b06b2a6c0e..d7de993c00 100644 --- a/Logic/ImageProviders/Imgur.ts +++ b/Logic/ImageProviders/Imgur.ts @@ -44,7 +44,7 @@ export class Imgur extends ImageProvider { } - static uploadImage(title: string, description: string, blob, + static uploadImage(title: string, description: string, blob: File, handleSuccessfullUpload: ((imageURL: string) => void), onFail: (reason: string) => void) { diff --git a/Logic/MetaTagging.ts b/Logic/MetaTagging.ts index 0ac9ba4e1e..a73476d36f 100644 --- a/Logic/MetaTagging.ts +++ b/Logic/MetaTagging.ts @@ -1,7 +1,7 @@ -import SimpleMetaTagger from "./SimpleMetaTagger"; -import {ExtraFuncParams, ExtraFunction} from "./ExtraFunction"; +import SimpleMetaTaggers, {SimpleMetaTagger} from "./SimpleMetaTagger"; +import {ExtraFuncParams, ExtraFunctions} from "./ExtraFunctions"; import LayerConfig from "../Models/ThemeConfig/LayerConfig"; -import State from "../State"; +import {ElementStorage} from "./ElementStorage"; /** @@ -14,6 +14,7 @@ export default class MetaTagging { private static errorPrintCount = 0; private static readonly stopErrorOutputAt = 10; + private static retaggingFuncCache = new Map void)[]>() /** * This method (re)calculates all metatags and calculated tags on every given object. @@ -24,31 +25,31 @@ export default class MetaTagging { public static addMetatags(features: { feature: any; freshness: Date }[], params: ExtraFuncParams, layer: LayerConfig, + state?: { allElements?: ElementStorage }, options?: { includeDates?: true | boolean, - includeNonDates?: true | boolean + includeNonDates?: true | boolean, + evaluateStrict?: false | boolean }): boolean { - if (features === undefined || features.length === 0) { return; } - - const metatagsToApply: SimpleMetaTagger [] = [] - for (const metatag of SimpleMetaTagger.metatags) { + const metatagsToApply: SimpleMetaTagger[] = [] + for (const metatag of SimpleMetaTaggers.metatags) { if (metatag.includesDates) { - if (options.includeDates ?? true) { + if (options?.includeDates ?? true) { metatagsToApply.push(metatag) } } else { - if (options.includeNonDates ?? true) { + if (options?.includeNonDates ?? true) { metatagsToApply.push(metatag) } } } // The calculated functions - per layer - which add the new keys - const layerFuncs = this.createRetaggingFunc(layer) + const layerFuncs = this.createRetaggingFunc(layer, state) let atLeastOneFeatureChanged = false; @@ -57,6 +58,7 @@ export default class MetaTagging { const feature = ff.feature const freshness = ff.freshness let somethingChanged = false + let definedTags = new Set(Object.getOwnPropertyNames(feature.properties)) for (const metatag of metatagsToApply) { try { if (!metatag.keys.some(key => feature.properties[key] === undefined)) { @@ -65,14 +67,19 @@ export default class MetaTagging { } if (metatag.isLazy) { + if (!metatag.keys.some(key => !definedTags.has(key))) { + // All keys are defined - lets skip! + continue + } somethingChanged = true; - - metatag.applyMetaTagsOnFeature(feature, freshness, layer) - + metatag.applyMetaTagsOnFeature(feature, freshness, layer, state) + if(options?.evaluateStrict){ + for (const key of metatag.keys) { + feature.properties[key] + } + } } else { - - - const newValueAdded = metatag.applyMetaTagsOnFeature(feature, freshness, layer) + const newValueAdded = metatag.applyMetaTagsOnFeature(feature, freshness, layer, state) /* Note that the expression: * `somethingChanged = newValueAdded || metatag.applyMetaTagsOnFeature(feature, freshness)` * Is WRONG @@ -88,68 +95,76 @@ export default class MetaTagging { } if (layerFuncs !== undefined) { + let retaggingChanged = false; try { - layerFuncs(params, feature) + retaggingChanged = layerFuncs(params, feature) } catch (e) { console.error(e) } - somethingChanged = true + somethingChanged = somethingChanged || retaggingChanged } if (somethingChanged) { - State.state?.allElements?.getEventSourceById(feature.properties.id)?.ping() + state?.allElements?.getEventSourceById(feature.properties.id)?.ping() atLeastOneFeatureChanged = true } } return atLeastOneFeatureChanged } - - private static createFunctionsForFeature(calculatedTags: [string, string][]): ((feature: any) => void)[] { - const functions: ((feature: any) => void)[] = []; + private 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]; + const isStrict = entry[2] if (code === undefined) { continue; } - const func = new Function("feat", "return " + code + ";"); + const calculateAndAssign: ((feat: any) => any) = (feat) => { + try { + let result = new Function("feat", "return " + code + ";")(feat); + if (result === "") { + result === undefined + } + if (result !== undefined && typeof result !== "string") { + // Make sure it is a string! + result = JSON.stringify(result); + } + delete feat.properties[key] + feat.properties[key] = result; + 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) + MetaTagging.errorPrintCount++; + if (MetaTagging.errorPrintCount == MetaTagging.stopErrorOutputAt) { + console.error("Got ", MetaTagging.stopErrorOutputAt, " errors calculating this metatagging - stopping output now") + } + } + return undefined; + } + } + + if (isStrict) { + functions.push(calculateAndAssign) + continue + } + + // 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 () { - try { - // Lazyness for the win! - let result = func(feature); - - if (result === "") { - result === undefined - } - if (result !== undefined && typeof result !== "string") { - // Make sure it is a string! - result = JSON.stringify(result); - } - delete feature.properties[key] - feature.properties[key] = result; - return result; - } catch (e) { - if (MetaTagging.errorPrintCount < MetaTagging.stopErrorOutputAt) { - console.warn("Could not calculate a calculated tag defined by " + code + " due to " + e + ". This is code defined in the theme. Are you the theme creator? Doublecheck your code. Note that the metatags might not be stable on new features", e, e.stack) - MetaTagging.errorPrintCount++; - if (MetaTagging.errorPrintCount == MetaTagging.stopErrorOutputAt) { - console.error("Got ", MetaTagging.stopErrorOutputAt, " errors calculating this metatagging - stopping output now") - } - } - } - + return calculateAndAssign(feature) } }) - + return undefined } @@ -158,14 +173,27 @@ export default class MetaTagging { return functions; } - private static createRetaggingFunc(layer: LayerConfig): - ((params: ExtraFuncParams, feature: any) => void) { + /** + * Creates the function which adds all the calculated tags to a feature. Called once per layer + * @param layer + * @param state + * @private + */ + private static createRetaggingFunc(layer: LayerConfig, state): + ((params: ExtraFuncParams, feature: any) => boolean) { - const calculatedTags: [string, string][] = layer.calculatedTags; + const calculatedTags: [string, string, boolean][] = layer.calculatedTags; if (calculatedTags === undefined || calculatedTags.length === 0) { return undefined; } + 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) + } + + return (params: ExtraFuncParams, feature) => { const tags = feature.properties if (tags === undefined) { @@ -173,17 +201,15 @@ export default class MetaTagging { } try { - const functions = MetaTagging.createFunctionsForFeature(calculatedTags) - - - ExtraFunction.FullPatchFeature(params, feature); + ExtraFunctions.FullPatchFeature(params, feature); for (const f of functions) { f(feature); } - State.state?.allElements?.getEventSourceById(feature.properties.id)?.ping(); + state?.allElements?.getEventSourceById(feature.properties.id)?.ping(); } catch (e) { console.error("Invalid syntax in calculated tags or some other error: ", e) } + return true; // Something changed } } diff --git a/Logic/Osm/Actions/ChangeDescription.ts b/Logic/Osm/Actions/ChangeDescription.ts index 0f03caf0b6..42df3f4a04 100644 --- a/Logic/Osm/Actions/ChangeDescription.ts +++ b/Logic/Osm/Actions/ChangeDescription.ts @@ -81,7 +81,7 @@ export class ChangeDescriptionTools { case "way": const w = new OsmWay(change.id) w.nodes = change.changes["nodes"] - w.coordinates = change.changes["coordinates"].map(coor => coor.reverse()) + w.coordinates = change.changes["coordinates"].map(([lon, lat]) => [lat, lon]) return w.asGeoJson().geometry case "relation": const r = new OsmRelation(change.id) diff --git a/Logic/Osm/Actions/ChangeLocationAction.ts b/Logic/Osm/Actions/ChangeLocationAction.ts index 54141d5489..429bfb596d 100644 --- a/Logic/Osm/Actions/ChangeLocationAction.ts +++ b/Logic/Osm/Actions/ChangeLocationAction.ts @@ -11,7 +11,7 @@ export default class ChangeLocationAction extends OsmChangeAction { theme: string, reason: string }) { - super(id,true); + super(id, true); if (!id.startsWith("node/")) { throw "Invalid ID: only 'node/number' is accepted" } @@ -19,7 +19,7 @@ export default class ChangeLocationAction extends OsmChangeAction { this._newLonLat = newLonLat; this._meta = meta; } - + protected async CreateChangeDescriptions(changes: Changes): Promise { const d: ChangeDescription = { diff --git a/Logic/Osm/Actions/ChangeTagAction.ts b/Logic/Osm/Actions/ChangeTagAction.ts index 013b90a461..963e8e9468 100644 --- a/Logic/Osm/Actions/ChangeTagAction.ts +++ b/Logic/Osm/Actions/ChangeTagAction.ts @@ -19,7 +19,7 @@ export default class ChangeTagAction extends OsmChangeAction { this._currentTags = currentTags; this._meta = meta; } - + /** * Doublechecks that no stupid values are added */ diff --git a/Logic/Osm/Actions/CreateMultiPolygonWithPointReuseAction.ts b/Logic/Osm/Actions/CreateMultiPolygonWithPointReuseAction.ts new file mode 100644 index 0000000000..73eb1f3a1f --- /dev/null +++ b/Logic/Osm/Actions/CreateMultiPolygonWithPointReuseAction.ts @@ -0,0 +1,103 @@ +import {OsmCreateAction} from "./OsmChangeAction"; +import {Tag} from "../../Tags/Tag"; +import {Changes} from "../Changes"; +import {ChangeDescription} from "./ChangeDescription"; +import FeaturePipelineState from "../../State/FeaturePipelineState"; +import FeatureSource from "../../FeatureSource/FeatureSource"; +import CreateNewWayAction from "./CreateNewWayAction"; +import CreateWayWithPointReuseAction, {MergePointConfig} from "./CreateWayWithPointReuseAction"; +import {And} from "../../Tags/And"; +import {TagUtils} from "../../Tags/TagUtils"; + + +/** + * More or less the same as 'CreateNewWay', except that it'll try to reuse already existing points + */ +export default class CreateMultiPolygonWithPointReuseAction extends OsmCreateAction { + public newElementId: string = undefined; + public newElementIdNumber: number = undefined; + private readonly _tags: Tag[]; + private readonly createOuterWay: CreateWayWithPointReuseAction + private readonly createInnerWays: CreateNewWayAction[] + private readonly geojsonPreview: any; + private readonly theme: string; + private readonly changeType: "import" | "create" | string; + + constructor(tags: Tag[], + outerRingCoordinates: [number, number][], + innerRingsCoordinates: [number, number][][], + state: FeaturePipelineState, + config: MergePointConfig[], + changeType: "import" | "create" | string + ) { + super(null, true); + this._tags = [...tags, new Tag("type", "multipolygon")]; + this.changeType = changeType; + this.theme = state?.layoutToUse?.id ?? "" + this.createOuterWay = new CreateWayWithPointReuseAction([], outerRingCoordinates, state, config) + this.createInnerWays = innerRingsCoordinates.map(ringCoordinates => + new CreateNewWayAction([], + ringCoordinates.map(([lon, lat]) => ({lat, lon})), + {theme: state?.layoutToUse?.id})) + + this.geojsonPreview = { + type: "Feature", + properties: TagUtils.changeAsProperties(new And(this._tags).asChange({})), + geometry: { + type: "Polygon", + coordinates: [ + outerRingCoordinates, + ...innerRingsCoordinates + ] + } + } + + } + + public async getPreview(): Promise { + const outerPreview = await this.createOuterWay.getPreview() + outerPreview.features.data.push({ + freshness: new Date(), + feature: this.geojsonPreview + }) + return outerPreview + } + + protected async CreateChangeDescriptions(changes: Changes): Promise { + console.log("Running CMPWPRA") + const descriptions: ChangeDescription[] = [] + descriptions.push(...await this.createOuterWay.CreateChangeDescriptions(changes)); + for (const innerWay of this.createInnerWays) { + descriptions.push(...await innerWay.CreateChangeDescriptions(changes)) + } + + + this.newElementIdNumber = changes.getNewID(); + this.newElementId = "relation/" + this.newElementIdNumber + descriptions.push({ + type: "relation", + id: this.newElementIdNumber, + tags: new And(this._tags).asChange({}), + meta: { + theme: this.theme, + changeType: this.changeType + }, + changes: { + members: [ + { + type: "way", + ref: this.createOuterWay.newElementIdNumber, + role: "outer" + }, + // @ts-ignore + ...this.createInnerWays.map(a => ({type: "way", ref: a.newElementIdNumber, role: "inner"})) + ] + } + }) + + + return descriptions + } + + +} \ No newline at end of file diff --git a/Logic/Osm/Actions/CreateNewNodeAction.ts b/Logic/Osm/Actions/CreateNewNodeAction.ts index 304db374f7..844463ec11 100644 --- a/Logic/Osm/Actions/CreateNewNodeAction.ts +++ b/Logic/Osm/Actions/CreateNewNodeAction.ts @@ -1,12 +1,12 @@ import {Tag} from "../../Tags/Tag"; -import OsmChangeAction from "./OsmChangeAction"; +import {OsmCreateAction} from "./OsmChangeAction"; import {Changes} from "../Changes"; import {ChangeDescription} from "./ChangeDescription"; import {And} from "../../Tags/And"; import {OsmWay} from "../OsmObject"; import {GeoOperations} from "../../GeoOperations"; -export default class CreateNewNodeAction extends OsmChangeAction { +export default class CreateNewNodeAction extends OsmCreateAction { /** * Maps previously created points onto their assigned ID, to reuse the point if uplaoded @@ -20,18 +20,21 @@ export default class CreateNewNodeAction extends OsmChangeAction { private readonly _lon: number; private readonly _snapOnto: OsmWay; private readonly _reusePointDistance: number; - private meta: { changeType: "create" | "import"; theme: string }; + private meta: { changeType: "create" | "import"; theme: string; specialMotivation?: string }; private readonly _reusePreviouslyCreatedPoint: boolean; + constructor(basicTags: Tag[], lat: number, lon: number, options: { allowReuseOfPreviouslyCreatedPoints?: boolean, snapOnto?: OsmWay, reusePointWithinMeters?: number, - theme: string, changeType: "create" | "import" | null + theme: string, + changeType: "create" | "import" | null, + specialMotivation?: string }) { - super(null,basicTags !== undefined && basicTags.length > 0) + super(null, basicTags !== undefined && basicTags.length > 0) this._basicTags = basicTags; this._lat = lat; this._lon = lon; @@ -43,7 +46,8 @@ export default class CreateNewNodeAction extends OsmChangeAction { this._reusePreviouslyCreatedPoint = options?.allowReuseOfPreviouslyCreatedPoints ?? (basicTags.length === 0) this.meta = { theme: options.theme, - changeType: options.changeType + changeType: options.changeType, + specialMotivation: options.specialMotivation } } @@ -64,6 +68,7 @@ export default class CreateNewNodeAction extends OsmChangeAction { } async CreateChangeDescriptions(changes: Changes): Promise { + if (this._reusePreviouslyCreatedPoint) { const key = this._lat + "," + this._lon @@ -107,21 +112,29 @@ export default class CreateNewNodeAction extends OsmChangeAction { const geojson = this._snapOnto.asGeoJson() const projected = GeoOperations.nearestPoint(geojson, [this._lon, this._lat]) + const projectedCoor= <[number, number]>projected.geometry.coordinates const index = projected.properties.index // We check that it isn't close to an already existing point let reusedPointId = undefined; - const prev = <[number, number]>geojson.geometry.coordinates[index] - if (GeoOperations.distanceBetween(prev, <[number, number]>projected.geometry.coordinates) < this._reusePointDistance) { + let outerring : [number,number][]; + + if(geojson.geometry.type === "LineString"){ + outerring = <[number, number][]> geojson.geometry.coordinates + }else if(geojson.geometry.type === "Polygon"){ + outerring =<[number, number][]> geojson.geometry.coordinates[0] + } + + const prev= outerring[index] + if (GeoOperations.distanceBetween(prev, projectedCoor) < this._reusePointDistance) { // We reuse this point instead! reusedPointId = this._snapOnto.nodes[index] } - const next = <[number, number]>geojson.geometry.coordinates[index + 1] - if (GeoOperations.distanceBetween(next, <[number, number]>projected.geometry.coordinates) < this._reusePointDistance) { + const next = outerring[index + 1] + if (GeoOperations.distanceBetween(next, projectedCoor) < this._reusePointDistance) { // We reuse this point instead! reusedPointId = this._snapOnto.nodes[index + 1] } if (reusedPointId !== undefined) { - console.log("Reusing an existing point:", reusedPointId) this.setElementId(reusedPointId) return [{ tags: new And(this._basicTags).asChange(properties), @@ -131,14 +144,12 @@ export default class CreateNewNodeAction extends OsmChangeAction { }] } - const locations = [...this._snapOnto.coordinates] - locations.forEach(coor => coor.reverse()) - console.log("Locations are: ", locations) + const locations = [...this._snapOnto.coordinates.map(([lat, lon]) =><[number,number]> [lon, lat])] const ids = [...this._snapOnto.nodes] locations.splice(index + 1, 0, [this._lon, this._lat]) ids.splice(index + 1, 0, id) - + // Allright, we have to insert a new point in the way return [ newPointChange, diff --git a/Logic/Osm/Actions/CreateNewWayAction.ts b/Logic/Osm/Actions/CreateNewWayAction.ts index ef10d417fd..edc6dd0bfd 100644 --- a/Logic/Osm/Actions/CreateNewWayAction.ts +++ b/Logic/Osm/Actions/CreateNewWayAction.ts @@ -1,12 +1,13 @@ import {ChangeDescription} from "./ChangeDescription"; -import OsmChangeAction from "./OsmChangeAction"; +import {OsmCreateAction} from "./OsmChangeAction"; import {Changes} from "../Changes"; import {Tag} from "../../Tags/Tag"; import CreateNewNodeAction from "./CreateNewNodeAction"; import {And} from "../../Tags/And"; -export default class CreateNewWayAction extends OsmChangeAction { +export default class CreateNewWayAction extends OsmCreateAction { public newElementId: string = undefined + public newElementIdNumber: number = undefined; private readonly coordinates: ({ nodeId?: number, lat: number, lon: number })[]; private readonly tags: Tag[]; private readonly _options: { @@ -24,8 +25,23 @@ export default class CreateNewWayAction extends OsmChangeAction { options: { theme: string }) { - super(null,true) - this.coordinates = coordinates; + super(null, true) + this.coordinates = []; + + for (const coordinate of coordinates) { + /* The 'PointReuseAction' is a bit buggy and might generate duplicate ids. + We filter those here, as the CreateWayWithPointReuseAction delegates the actual creation to here. + Filtering here also prevents similar bugs in other actions + */ + if(this.coordinates.length > 0 && coordinate.nodeId !== undefined && this.coordinates[this.coordinates.length - 1].nodeId === coordinate.nodeId){ + // This is a duplicate id + console.warn("Skipping a node in createWay to avoid a duplicate node:", coordinate,"\nThe previous coordinates are: ", this.coordinates) + continue + } + + this.coordinates.push(coordinate) + } + this.tags = tags; this._options = options; } @@ -55,7 +71,7 @@ export default class CreateNewWayAction extends OsmChangeAction { const id = changes.getNewID() - + this.newElementIdNumber = id const newWay = { id, type: "way", diff --git a/Logic/Osm/Actions/CreateWayWithPointReuseAction.ts b/Logic/Osm/Actions/CreateWayWithPointReuseAction.ts index 0ed45ae3d3..95911f432f 100644 --- a/Logic/Osm/Actions/CreateWayWithPointReuseAction.ts +++ b/Logic/Osm/Actions/CreateWayWithPointReuseAction.ts @@ -1,4 +1,4 @@ -import OsmChangeAction from "./OsmChangeAction"; +import {OsmCreateAction} from "./OsmChangeAction"; import {Tag} from "../../Tags/Tag"; import {Changes} from "../Changes"; import {ChangeDescription} from "./ChangeDescription"; @@ -18,10 +18,34 @@ export interface MergePointConfig { mode: "reuse_osm_point" | "move_osm_point" } +/** + * CreateWayWithPointreuse will create a 'CoordinateInfo' for _every_ point in the way to be created. + * + * The CoordinateInfo indicates the action to take, e.g.: + * + * - Create a new point + * - Reuse an existing OSM point (and don't move it) + * - Reuse an existing OSM point (and leave it where it is) + * - Reuse another Coordinate info (and don't do anything else with it) + * + */ interface CoordinateInfo { + /** + * The new coordinate + */ lngLat: [number, number], + /** + * If set: indicates that this point is identical to an earlier point in the way and that that point should be used. + * This is especially needed in closed ways, where the last CoordinateInfo will have '0' as identicalTo + */ identicalTo?: number, + /** + * Information about the closebyNode which might be reused + */ closebyNodes?: { + /** + * Distance in meters between the target coordinate and this candidate coordinate + */ d: number, node: any, config: MergePointConfig @@ -31,7 +55,9 @@ interface CoordinateInfo { /** * More or less the same as 'CreateNewWay', except that it'll try to reuse already existing points */ -export default class CreateWayWithPointReuseAction extends OsmChangeAction { +export default class CreateWayWithPointReuseAction extends OsmCreateAction { + public newElementId: string = undefined; + public newElementIdNumber: number = undefined private readonly _tags: Tag[]; /** * lngLat-coordinates @@ -46,10 +72,12 @@ export default class CreateWayWithPointReuseAction extends OsmChangeAction { state: FeaturePipelineState, config: MergePointConfig[] ) { - super(null,true); + super(null, true); this._tags = tags; this._state = state; this._config = config; + + // The main logic of this class: the coordinateInfo contains all the changes this._coordinateInfo = this.CalculateClosebyNodes(coordinates); } @@ -87,7 +115,8 @@ export default class CreateWayWithPointReuseAction extends OsmChangeAction { properties: { "move": "yes", "osm-id": reusedPoint.node.properties.id, - "id": "new-geometry-move-existing" + i + "id": "new-geometry-move-existing" + i, + "distance": GeoOperations.distanceBetween(coordinateInfo.lngLat, reusedPoint.node.geometry.coordinates) }, geometry: { type: "LineString", @@ -97,8 +126,23 @@ export default class CreateWayWithPointReuseAction extends OsmChangeAction { features.push(moveDescription) } else { - // The geometry is moved + // The geometry is moved, the point is reused geometryMoved = true + + const reuseDescription = { + type: "Feature", + properties: { + "move": "no", + "osm-id": reusedPoint.node.properties.id, + "id": "new-geometry-reuse-existing" + i, + "distance": GeoOperations.distanceBetween(coordinateInfo.lngLat, reusedPoint.node.geometry.coordinates) + }, + geometry: { + type: "LineString", + coordinates: [coordinateInfo.lngLat, reusedPoint.node.geometry.coordinates] + } + } + features.push(reuseDescription) } } @@ -138,12 +182,11 @@ export default class CreateWayWithPointReuseAction extends OsmChangeAction { features.push(newGeometry) } - console.log("Preview:", features) return new StaticFeatureSource(features, false) } - protected async CreateChangeDescriptions(changes: Changes): Promise { - const theme = this._state.layoutToUse.id + public async CreateChangeDescriptions(changes: Changes): Promise { + const theme = this._state?.layoutToUse?.id const allChanges: ChangeDescription[] = [] const nodeIdsToUse: { lat: number, lon: number, nodeId?: number }[] = [] for (let i = 0; i < this._coordinateInfo.length; i++) { @@ -194,18 +237,24 @@ export default class CreateWayWithPointReuseAction extends OsmChangeAction { const newWay = new CreateNewWayAction(this._tags, nodeIdsToUse, { theme }) - + allChanges.push(...(await newWay.CreateChangeDescriptions(changes))) + this.newElementId = newWay.newElementId + this.newElementIdNumber = newWay.newElementIdNumber return allChanges } + /** + * Calculates the main changes. + */ private CalculateClosebyNodes(coordinates: [number, number][]): CoordinateInfo[] { const bbox = new BBox(coordinates) const state = this._state - const allNodes = [].concat(...state.featurePipeline.GetFeaturesWithin("type_node", bbox.pad(1.2))) + const allNodes = [].concat(...state?.featurePipeline?.GetFeaturesWithin("type_node", bbox.pad(1.2))??[]) const maxDistance = Math.max(...this._config.map(c => c.withinRangeOfM)) + // Init coordianteinfo with undefined but the same length as coordinates const coordinateInfo: { lngLat: [number, number], identicalTo?: number, @@ -216,6 +265,8 @@ export default class CreateWayWithPointReuseAction extends OsmChangeAction { }[] }[] = coordinates.map(_ => undefined) + + // First loop: gather all information... for (let i = 0; i < coordinates.length; i++) { if (coordinateInfo[i] !== undefined) { @@ -223,8 +274,11 @@ export default class CreateWayWithPointReuseAction extends OsmChangeAction { continue } const coor = coordinates[i] - // Check closeby (and probably identical) point further in the coordinate list, mark them as duplicate + // Check closeby (and probably identical) points further in the coordinate list, mark them as duplicate for (let j = i + 1; j < coordinates.length; j++) { + // We look into the 'future' of the way and mark those 'future' locations as being the same as this location + // The continue just above will make sure they get ignored + // This code is important to 'close' ways if (GeoOperations.distanceBetween(coor, coordinates[j]) < 0.1) { coordinateInfo[j] = { lngLat: coor, @@ -260,6 +314,7 @@ export default class CreateWayWithPointReuseAction extends OsmChangeAction { } } + // Sort by distance, closest first closebyNodes.sort((n0, n1) => { return n0.d - n1.d }) @@ -272,8 +327,9 @@ export default class CreateWayWithPointReuseAction extends OsmChangeAction { } - let conflictFree = true; + // Second loop: figure out which point moves where without creating conflicts + let conflictFree = true; do { conflictFree = true; for (let i = 0; i < coordinateInfo.length; i++) { @@ -292,6 +348,10 @@ export default class CreateWayWithPointReuseAction extends OsmChangeAction { continue } + if (coorInfo.closebyNodes[0] === undefined) { + continue + } + if (other.closebyNodes[0].node === coorInfo.closebyNodes[0].node) { conflictFree = false // We have found a conflict! diff --git a/Logic/Osm/Actions/DeleteAction.ts b/Logic/Osm/Actions/DeleteAction.ts index a5be01448d..e5cd05ddb6 100644 --- a/Logic/Osm/Actions/DeleteAction.ts +++ b/Logic/Osm/Actions/DeleteAction.ts @@ -1,4 +1,3 @@ -import State from "../../../State"; import {OsmObject} from "../OsmObject"; import OsmChangeAction from "./OsmChangeAction"; import {Changes} from "../Changes"; @@ -27,7 +26,7 @@ export default class DeleteAction extends OsmChangeAction { specialMotivation: string }, hardDelete: boolean) { - super(id,true) + super(id, true) this._id = id; this._hardDelete = hardDelete; this.meta = {...meta, changeType: "deletion"}; @@ -37,7 +36,7 @@ export default class DeleteAction extends OsmChangeAction { } - protected async CreateChangeDescriptions(changes: Changes): Promise { + public async CreateChangeDescriptions(changes: Changes): Promise { const osmObject = await OsmObject.DownloadObjectAsync(this._id) @@ -52,7 +51,7 @@ export default class DeleteAction extends OsmChangeAction { return await new ChangeTagAction( this._id, this._softDeletionTags, osmObject.tags, { - theme: State.state?.layoutToUse?.id ?? "unkown", + ...this.meta, changeType: "soft-delete" } ).CreateChangeDescriptions(changes) diff --git a/Logic/Osm/Actions/OsmChangeAction.ts b/Logic/Osm/Actions/OsmChangeAction.ts index 13a31a76af..1754a91bc8 100644 --- a/Logic/Osm/Actions/OsmChangeAction.ts +++ b/Logic/Osm/Actions/OsmChangeAction.ts @@ -7,15 +7,15 @@ import {ChangeDescription} from "./ChangeDescription"; export default abstract class OsmChangeAction { - private isUsed = false public readonly trackStatistics: boolean; /** * The ID of the object that is the center of this change. - * Null if the action creates a new object + * Null if the action creates a new object (at initialization) * Undefined if such an id does not make sense */ public readonly mainObjectId: string; - + private isUsed = false + constructor(mainObjectId: string, trackStatistics: boolean = true) { this.trackStatistics = trackStatistics; this.mainObjectId = mainObjectId @@ -23,11 +23,18 @@ export default abstract class OsmChangeAction { public Perform(changes: Changes) { if (this.isUsed) { - throw "This ChangeAction is already used: " + this.constructor.name + throw "This ChangeAction is already used" } this.isUsed = true; return this.CreateChangeDescriptions(changes) } protected abstract CreateChangeDescriptions(changes: Changes): Promise -} \ No newline at end of file +} + +export abstract class OsmCreateAction extends OsmChangeAction { + + public newElementId: string + public newElementIdNumber: number + +} diff --git a/Logic/Osm/Actions/RelationSplitHandler.ts b/Logic/Osm/Actions/RelationSplitHandler.ts index 4cc5a0d0e8..8e8f081faf 100644 --- a/Logic/Osm/Actions/RelationSplitHandler.ts +++ b/Logic/Osm/Actions/RelationSplitHandler.ts @@ -16,10 +16,11 @@ abstract class AbstractRelationSplitHandler extends OsmChangeAction { protected readonly _theme: string; constructor(input: RelationSplitInput, theme: string) { - super("relation/"+input.relation.id, false) + super("relation/" + input.relation.id, false) this._input = input; this._theme = theme; } + /** * Returns which node should border the member at the given index */ diff --git a/Logic/Osm/Actions/ReplaceGeometryAction.ts b/Logic/Osm/Actions/ReplaceGeometryAction.ts index 7c7202d233..f642b2d042 100644 --- a/Logic/Osm/Actions/ReplaceGeometryAction.ts +++ b/Logic/Osm/Actions/ReplaceGeometryAction.ts @@ -11,28 +11,36 @@ import ChangeTagAction from "./ChangeTagAction"; import {And} from "../../Tags/And"; import {Utils} from "../../../Utils"; import {OsmConnection} from "../OsmConnection"; +import {GeoJSONObject} from "@turf/turf"; +import FeaturePipeline from "../../FeatureSource/FeaturePipeline"; export default class ReplaceGeometryAction extends OsmChangeAction { + /** + * The target feature - mostly used for the metadata + */ private readonly feature: any; private readonly state: { - osmConnection: OsmConnection + osmConnection: OsmConnection, + featurePipeline: FeaturePipeline }; private readonly wayToReplaceId: string; private readonly theme: string; /** - * The target coordinates that should end up in OpenStreetMap + * The target coordinates that should end up in OpenStreetMap. + * This is identical to either this.feature.geometry.coordinates or -in case of a polygon- feature.geometry.coordinates[0] + * Format: [lon, lat] */ private readonly targetCoordinates: [number, number][]; /** * If a target coordinate is close to another target coordinate, 'identicalTo' will point to the first index. - * @private */ private readonly identicalTo: number[] private readonly newTags: Tag[] | undefined; constructor( state: { - osmConnection: OsmConnection + osmConnection: OsmConnection, + featurePipeline: FeaturePipeline }, feature: any, wayToReplaceId: string, @@ -54,6 +62,7 @@ export default class ReplaceGeometryAction extends OsmChangeAction { } else if (geom.type === "Polygon") { coordinates = geom.coordinates[0] } + this.targetCoordinates = coordinates this.identicalTo = coordinates.map(_ => undefined) @@ -64,32 +73,27 @@ export default class ReplaceGeometryAction extends OsmChangeAction { for (let j = i + 1; j < coordinates.length; j++) { const d = GeoOperations.distanceBetween(coordinates[i], coordinates[j]) if (d < 0.1) { - console.log("Identical coordinates detected: ", i, " and ", j, ": ", coordinates[i], coordinates[j], "distance is", d) this.identicalTo[j] = i } } } - - - this.targetCoordinates = coordinates this.newTags = options.newTags } + // noinspection JSUnusedGlobalSymbols public async getPreview(): Promise { - const {closestIds, allNodesById} = await this.GetClosestIds(); - console.log("Generating preview, identicals are ",) - const preview = closestIds.map((newId, i) => { + const {closestIds, allNodesById, detachedNodes, reprojectedNodes} = await this.GetClosestIds(); + const preview: GeoJSONObject[] = closestIds.map((newId, i) => { if (this.identicalTo[i] !== undefined) { return undefined } - if (newId === undefined) { return { type: "Feature", properties: { "newpoint": "yes", - "id": "replace-geometry-move-" + i + "id": "replace-geometry-move-" + i, }, geometry: { type: "Point", @@ -97,31 +101,316 @@ export default class ReplaceGeometryAction extends OsmChangeAction { } }; } - const origPoint = allNodesById.get(newId).centerpoint() + + const origNode = allNodesById.get(newId); return { type: "Feature", properties: { "move": "yes", "osm-id": newId, - "id": "replace-geometry-move-" + i + "id": "replace-geometry-move-" + i, + "original-node-tags": JSON.stringify(origNode.tags) }, geometry: { type: "LineString", - coordinates: [[origPoint[1], origPoint[0]], this.targetCoordinates[i]] + coordinates: [[origNode.lon, origNode.lat], this.targetCoordinates[i]] } }; }) + + + reprojectedNodes.forEach(({newLat, newLon, nodeId}) => { + + const origNode = allNodesById.get(nodeId); + const feature = { + type: "Feature", + properties: { + "move": "yes", + "reprojection": "yes", + "osm-id": nodeId, + "id": "replace-geometry-reproject-" + nodeId, + "original-node-tags": JSON.stringify(origNode.tags) + }, + geometry: { + type: "LineString", + coordinates: [[origNode.lon, origNode.lat], [newLon, newLat]] + } + }; + preview.push(feature) + }) + + + detachedNodes.forEach(({reason}, id) => { + const origNode = allNodesById.get(id); + const feature = { + type: "Feature", + properties: { + "detach": "yes", + "id": "replace-geometry-detach-" + id, + "detach-reason": reason, + "original-node-tags": JSON.stringify(origNode.tags) + }, + geometry: { + type: "Point", + coordinates: [origNode.lon, origNode.lat] + } + }; + preview.push(feature) + }) + + return new StaticFeatureSource(Utils.NoNull(preview), false) } - protected async CreateChangeDescriptions(changes: Changes): Promise { + /** + * For 'this.feature`, gets a corresponding closest node that alreay exsists. + * + * This method contains the main logic for this module, as it decides which node gets moved where. + * + */ + public async GetClosestIds(): Promise<{ + // A list of the same length as targetCoordinates, containing which OSM-point to move. If undefined, a new point will be created + closestIds: number[], + allNodesById: Map, + osmWay: OsmWay, + detachedNodes: Map, + reprojectedNodes: Map + }> { + // TODO FIXME: if a new point has to be created, snap to already existing ways + + const nodeDb = this.state.featurePipeline.fullNodeDatabase; + if (nodeDb === undefined) { + throw "PANIC: replaceGeometryAction needs the FullNodeDatabase, which is undefined. This should be initialized by having the 'type_node'-layer enabled in your theme. (NB: the replacebutton has type_node as dependency)" + } + const self = this; + let parsed: OsmObject[]; + { + // Gather the needed OsmObjects + const splitted = this.wayToReplaceId.split("/"); + const type = splitted[0]; + const idN = Number(splitted[1]); + if (idN < 0 || type !== "way") { + throw "Invalid ID to conflate: " + this.wayToReplaceId + } + const url = `${this.state.osmConnection?._oauth_config?.url ?? "https://openstreetmap.org"}/api/0.6/${this.wayToReplaceId}/full`; + const rawData = await Utils.downloadJsonCached(url, 1000) + parsed = OsmObject.ParseObjects(rawData.elements); + } + const allNodes = parsed.filter(o => o.type === "node") + const osmWay = parsed[parsed.length - 1] + if (osmWay.type !== "way") { + throw "WEIRD: expected an OSM-way as last element here!" + } + const allNodesById = new Map() + for (const node of allNodes) { + allNodesById.set(node.id, node) + } + /** + * For every already existing OSM-point, we calculate: + * + * - the distance to every target point. + * - Wether this node has (other) parent ways, which might restrict movement + * - Wether this node has tags set + * + * Having tags and/or being connected to another way indicate that there is some _relation_ with objects in the neighbourhood. + * + * The Replace-geometry action should try its best to honour these. Some 'wiggling' is allowed (e.g. moving an entrance a bit), but these relations should not be broken.l + */ + const distances = new Map distance (or undefined if a duplicate)*/ + number[]>(); + + const nodeInfo = new Map() + + for (const node of allNodes) { + + const parentWays = nodeDb.GetParentWays(node.id) + if (parentWays === undefined) { + throw "PANIC: the way to replace has a node which has no parents at all. Is it deleted in the meantime?" + } + const parentWayIds = parentWays.data.map(w => w.type + "/" + w.id) + const idIndex = parentWayIds.indexOf(this.wayToReplaceId) + if (idIndex < 0) { + throw "PANIC: the way to replace has a node, which is _not_ part of this was according to the node..." + } + parentWayIds.splice(idIndex, 1) + const partOfSomeWay = parentWayIds.length > 0 + const hasTags = Object.keys(node.tags).length > 1; + + const nodeDistances = this.targetCoordinates.map(_ => undefined) + for (let i = 0; i < this.targetCoordinates.length; i++) { + if (this.identicalTo[i] !== undefined) { + continue; + } + const targetCoordinate = this.targetCoordinates[i]; + const cp = node.centerpoint() + const d = GeoOperations.distanceBetween(targetCoordinate, [cp[1], cp[0]]) + if (d > 25) { + // This is too much to move + continue + } + if (d < 3 || !(hasTags || partOfSomeWay)) { + // If there is some relation: cap the move distance to 3m + nodeDistances[i] = d; + } + + } + distances.set(node.id, nodeDistances) + nodeInfo.set(node.id, { + distances: nodeDistances, + partOfWay: partOfSomeWay, + hasTags + }) + } + + const closestIds = this.targetCoordinates.map(_ => undefined) + const unusedIds = new Map(); + { + // Search best merge candidate + /** + * Then, we search the node that has to move the least distance and add this as mapping. + * We do this until no points are left + */ + let candidate: number; + let moveDistance: number; + /** + * The list of nodes that are _not_ used anymore, typically if there are less targetCoordinates then source coordinates + */ + do { + candidate = undefined; + moveDistance = Infinity; + distances.forEach((distances, nodeId) => { + const minDist = Math.min(...Utils.NoNull(distances)) + if (moveDistance > minDist) { + // We have found a candidate to move + candidate = nodeId + moveDistance = minDist + } + }) + + if (candidate !== undefined) { + // We found a candidate... Search the corresponding target id: + let targetId: number = undefined; + let lowestDistance = Number.MAX_VALUE + let nodeDistances = distances.get(candidate) + for (let i = 0; i < nodeDistances.length; i++) { + const d = nodeDistances[i] + if (d !== undefined && d < lowestDistance) { + lowestDistance = d; + targetId = i; + } + } + + // This candidates role is done, it can be removed from the distance matrix + distances.delete(candidate) + + if (targetId !== undefined) { + // At this point, we have our target coordinate index: targetId! + // Lets map it... + closestIds[targetId] = candidate + + // To indicate that this targetCoordinate is taken, we remove them from the distances matrix + distances.forEach(dists => { + dists[targetId] = undefined + }) + } else { + // Seems like all the targetCoordinates have found a source point + unusedIds.set(candidate, { + reason: "Unused by new way", + hasTags: nodeInfo.get(candidate).hasTags + }) + } + } + } while (candidate !== undefined) + } + + // If there are still unused values in 'distances', they are definitively unused + distances.forEach((_, nodeId) => { + unusedIds.set(nodeId, { + reason: "Unused by new way", + hasTags: nodeInfo.get(nodeId).hasTags + }) + }) + + const reprojectedNodes = new Map(); + { + // Lets check the unused ids: can they be detached or do they signify some relation with the object? + unusedIds.forEach(({}, id) => { + const info = nodeInfo.get(id) + if (!(info.hasTags || info.partOfWay)) { + // Nothing special here, we detach + return + } + + // The current node has tags and/or has an attached other building. + // We should project them and move them onto the building on an appropriate place + const node = allNodesById.get(id) + + // Project the node onto the target way to calculate the new coordinates + const way = { + type: "Feature", + properties: {}, + geometry: { + type: "LineString", + coordinates: self.targetCoordinates + } + }; + const projected = GeoOperations.nearestPoint( + way, [node.lon, node.lat] + ) + reprojectedNodes.set(id, { + newLon: projected.geometry.coordinates[0], + newLat: projected.geometry.coordinates[1], + projectAfterIndex: projected.properties.index, + distance: projected.properties.dist, + nodeId: id + }) + }) + + reprojectedNodes.forEach((_, nodeId) => unusedIds.delete(nodeId)) + + } + + + return {closestIds, allNodesById, osmWay, detachedNodes: unusedIds, reprojectedNodes}; + } + + protected async CreateChangeDescriptions(changes: Changes): Promise { + const nodeDb = this.state.featurePipeline.fullNodeDatabase; + if (nodeDb === undefined) { + throw "PANIC: replaceGeometryAction needs the FullNodeDatabase, which is undefined. This should be initialized by having the 'type_node'-layer enabled in your theme. (NB: the replacebutton has type_node as dependency)" + } + + const {closestIds, osmWay, detachedNodes, reprojectedNodes} = await this.GetClosestIds() const allChanges: ChangeDescription[] = [] const actualIdsToUse: number[] = [] - - const {closestIds, osmWay} = await this.GetClosestIds() - for (let i = 0; i < closestIds.length; i++) { if (this.identicalTo[i] !== undefined) { const j = this.identicalTo[i] @@ -171,13 +460,46 @@ export default class ReplaceGeometryAction extends OsmChangeAction { allChanges.push(...await addExtraTags.CreateChangeDescriptions(changes)) } - // AT the very last: actually change the nodes of the way! + const newCoordinates = [...this.targetCoordinates] + + { + // Add reprojected nodes to the way + + const proj = Array.from(reprojectedNodes.values()) + proj.sort((a, b) => { + // Sort descending + const diff = b.projectAfterIndex - a.projectAfterIndex; + if (diff !== 0) { + return diff + } + return b.distance - a.distance; + + + }) + + for (const reprojectedNode of proj) { + const change = { + id: reprojectedNode.nodeId, + type: "node", + meta: { + theme: this.theme, + changeType: "move" + }, + changes: {lon: reprojectedNode.newLon, lat: reprojectedNode.newLat} + } + allChanges.push(change) + actualIdsToUse.splice(reprojectedNode.projectAfterIndex + 1, 0, reprojectedNode.nodeId) + newCoordinates.splice(reprojectedNode.projectAfterIndex + 1, 0, [reprojectedNode.newLon, reprojectedNode.newLat]) + } + } + + // Actually change the nodes of the way! allChanges.push({ type: "way", id: osmWay.id, changes: { nodes: actualIdsToUse, - coordinates: this.targetCoordinates + coordinates: newCoordinates }, meta: { theme: this.theme, @@ -186,93 +508,43 @@ export default class ReplaceGeometryAction extends OsmChangeAction { }) + // Some nodes might need to be deleted + if (detachedNodes.size > 0) { + detachedNodes.forEach(({hasTags, reason}, nodeId) => { + const parentWays = nodeDb.GetParentWays(nodeId) + const index = parentWays.data.map(w => w.id).indexOf(osmWay.id) + if (index < 0) { + console.error("ReplaceGeometryAction is trying to detach node " + nodeId + ", but it isn't listed as being part of way " + osmWay.id) + return; + } + // We detachted this node - so we unregister + parentWays.data.splice(index, 1) + parentWays.ping(); + + if (hasTags) { + // Has tags: we leave this node alone + return; + } + if (parentWays.data.length != 0) { + // Still part of other ways: we leave this node alone! + return; + } + + console.log("Removing node " + nodeId, "as it isn't needed anymore by any way") + allChanges.push({ + meta: { + theme: this.theme, + changeType: "delete" + }, + doDelete: true, + type: "node", + id: nodeId, + }) + }) + } + return allChanges } - /** - * For 'this.feature`, gets a corresponding closest node that alreay exsists - * @constructor - * @private - */ - private async GetClosestIds(): Promise<{ closestIds: number[], allNodesById: Map, osmWay: OsmWay }> { - // TODO FIXME: cap move length on points which are embedded into other ways (ev. disconnect them) - // TODO FIXME: if a new point has to be created, snap to already existing ways - // TODO FIXME: detect intersections with other ways if moved - const splitted = this.wayToReplaceId.split("/"); - const type = splitted[0]; - const idN = Number(splitted[1]); - if (idN < 0 || type !== "way") { - throw "Invalid ID to conflate: " + this.wayToReplaceId - } - const url = `${this.state.osmConnection._oauth_config.url}/api/0.6/${this.wayToReplaceId}/full`; - const rawData = await Utils.downloadJsonCached(url, 1000) - const parsed = OsmObject.ParseObjects(rawData.elements); - const allNodesById = new Map() - const allNodes = parsed.filter(o => o.type === "node") - for (const node of allNodes) { - allNodesById.set(node.id, node) - } - - - /** - * Allright! We know all the nodes of the original way and all the nodes of the target coordinates. - * For each of the target coordinates, we search the closest, already existing point and reuse this point - */ - - const closestIds = [] - const distances = [] - for (let i = 0; i < this.targetCoordinates.length; i++) { - const target = this.targetCoordinates[i]; - let closestDistance = undefined - let closestId = undefined; - for (const osmNode of allNodes) { - - const cp = osmNode.centerpoint() - const d = GeoOperations.distanceBetween(target, [cp[1], cp[0]]) - if (closestId === undefined || closestDistance > d) { - closestId = osmNode.id - closestDistance = d - } - } - closestIds.push(closestId) - distances.push(closestDistance) - } - - // Next step: every closestId can only occur once in the list - // We skip the ones which are identical - console.log("Erasing double ids") - for (let i = 0; i < closestIds.length; i++) { - if (this.identicalTo[i] !== undefined) { - closestIds[i] = closestIds[this.identicalTo[i]] - continue - } - const closestId = closestIds[i] - for (let j = i + 1; j < closestIds.length; j++) { - if (this.identicalTo[j] !== undefined) { - continue - } - const otherClosestId = closestIds[j] - if (closestId !== otherClosestId) { - continue - } - // We have two occurences of 'closestId' - we only keep the closest instance! - const di = distances[i] - const dj = distances[j] - if (di < dj) { - closestIds[j] = undefined - } else { - closestIds[i] = undefined - } - } - } - - - const osmWay = parsed[parsed.length - 1] - if (osmWay.type !== "way") { - throw "WEIRD: expected an OSM-way as last element here!" - } - return {closestIds, allNodesById, osmWay}; - } - } \ No newline at end of file diff --git a/Logic/Osm/Actions/SplitAction.ts b/Logic/Osm/Actions/SplitAction.ts index 3928ed4055..0b97e593f0 100644 --- a/Logic/Osm/Actions/SplitAction.ts +++ b/Logic/Osm/Actions/SplitAction.ts @@ -26,7 +26,7 @@ export default class SplitAction extends OsmChangeAction { * @param toleranceInMeters: if a splitpoint closer then this amount of meters to an existing point, the existing point will be used to split the line instead of a new point */ constructor(wayId: string, splitPointCoordinates: [number, number][], meta: { theme: string }, toleranceInMeters = 5) { - super(wayId,true) + super(wayId, true) this.wayId = wayId; this._splitPointsCoordinates = splitPointCoordinates this._toleranceInMeters = toleranceInMeters; diff --git a/Logic/Osm/Changes.ts b/Logic/Osm/Changes.ts index ccbb9e9d94..c8cfb83bce 100644 --- a/Logic/Osm/Changes.ts +++ b/Logic/Osm/Changes.ts @@ -1,5 +1,4 @@ import {OsmNode, OsmObject, OsmRelation, OsmWay} from "./OsmObject"; -import State from "../../State"; import {UIEventSource} from "../UIEventSource"; import Constants from "../../Models/Constants"; import OsmChangeAction from "./Actions/OsmChangeAction"; @@ -12,7 +11,8 @@ import FeatureSource from "../FeatureSource/FeatureSource"; import {ElementStorage} from "../ElementStorage"; import {GeoLocationPointProperties} from "../Actors/GeoLocationHandler"; import {GeoOperations} from "../GeoOperations"; -import {ChangesetTag} from "./ChangesetHandler"; +import {ChangesetHandler, ChangesetTag} from "./ChangesetHandler"; +import {OsmConnection} from "./OsmConnection"; /** * Handles all changes made to OSM. @@ -27,27 +27,36 @@ export class Changes { public features = new UIEventSource<{ feature: any, freshness: Date }[]>([]); public readonly pendingChanges: UIEventSource = LocalStorageSource.GetParsed("pending-changes", []) public readonly allChanges = new UIEventSource(undefined) + public readonly state: { allElements: ElementStorage; osmConnection: OsmConnection } + public readonly extraComment: UIEventSource = new UIEventSource(undefined) + + private historicalUserLocations: FeatureSource private _nextId: number = -1; // Newly assigned ID's are negative private readonly isUploading = new UIEventSource(false); - private readonly previouslyCreated: OsmObject[] = [] private readonly _leftRightSensitive: boolean; - - private _state : { allElements: ElementStorage; historicalUserLocations: FeatureSource } + private _changesetHandler: ChangesetHandler; - constructor(leftRightSensitive: boolean = false) { + constructor( + state?: { + allElements: ElementStorage, + osmConnection: OsmConnection + }, + leftRightSensitive: boolean = false) { this._leftRightSensitive = leftRightSensitive; // We keep track of all changes just as well this.allChanges.setData([...this.pendingChanges.data]) // If a pending change contains a negative ID, we save that this._nextId = Math.min(-1, ...this.pendingChanges.data?.map(pch => pch.id) ?? []) + this.state = state; + this._changesetHandler = state?.osmConnection?.CreateChangesetHandler(state.allElements, this) // Note: a changeset might be reused which was opened just before and might have already used some ids // This doesn't matter however, as the '-1' is per piecewise upload, not global per changeset } - private static createChangesetFor(csId: string, - allChanges: { + static createChangesetFor(csId: string, + allChanges: { modifiedObjects: OsmObject[], newObjects: OsmObject[], deletedObjects: OsmObject[] @@ -98,7 +107,7 @@ export class Changes { * Uploads all the pending changes in one go. * Triggered by the 'PendingChangeUploader'-actor in Actors */ - public flushChanges(flushreason: string = undefined) { + public async flushChanges(flushreason: string = undefined): Promise { if (this.pendingChanges.data.length === 0) { return; } @@ -106,77 +115,20 @@ export class Changes { console.log("Is already uploading... Abort") return; } + + console.log("Uploading changes due to: ", flushreason) this.isUploading.setData(true) - - this.flushChangesAsync() - .then(_ => { - this.isUploading.setData(false) - console.log("Changes flushed!"); - }) - .catch(e => { - this.isUploading.setData(false) - console.error("Flushing changes failed due to", e); - }) + try { + const csNumber = await this.flushChangesAsync() + this.isUploading.setData(false) + console.log("Changes flushed. Your changeset is " + csNumber); + } catch (e) { + this.isUploading.setData(false) + console.error("Flushing changes failed due to", e); + } } - private calculateDistanceToChanges(change: OsmChangeAction, changeDescriptions: ChangeDescription[]){ - - if (this._state === undefined) { - // No state loaded -> we can't calculate... - return; - } - if(!change.trackStatistics){ - // Probably irrelevant, such as a new helper node - return; - } - const now = new Date() - const recentLocationPoints = this._state.historicalUserLocations.features.data.map(ff => ff.feature) - .filter(feat => feat.geometry.type === "Point") - .filter(feat => { - const visitTime = new Date((feat.properties).date) - // In seconds - const diff = (now.getTime() - visitTime.getTime()) / 1000 - return diff < Constants.nearbyVisitTime; - }) - if(recentLocationPoints.length === 0){ - // Probably no GPS enabled/no fix - return; - } - - // The applicable points, contain information in their properties about location, time and GPS accuracy - // They are all GeoLocationPointProperties - // We walk every change and determine the closest distance possible - // Only if the change itself does _not_ contain any coordinates, we fall back and search the original feature in the state - - const changedObjectCoordinates : [number, number][] = [] - - const feature = this._state.allElements.ContainingFeatures.get(change.mainObjectId) - if(feature !== undefined){ - changedObjectCoordinates.push(GeoOperations.centerpointCoordinates(feature)) - } - - for (const changeDescription of changeDescriptions) { - const chng : {lat: number, lon: number} | {coordinates : [number,number][]} | {members} = changeDescription.changes - if(chng === undefined){ - continue - } - if(chng["lat"] !== undefined){ - changedObjectCoordinates.push([chng["lat"],chng["lon"]]) - } - if(chng["coordinates"] !== undefined){ - changedObjectCoordinates.push(...chng["coordinates"]) - } - } - - return Math.min(...changedObjectCoordinates.map(coor => - Math.min(...recentLocationPoints.map(gpsPoint => { - const otherCoor = GeoOperations.centerpointCoordinates(gpsPoint) - return GeoOperations.distanceBetween(coor, otherCoor) - })) - )) - } - public async applyAction(action: OsmChangeAction): Promise { const changeDescriptions = await action.Perform(this) changeDescriptions[0].meta.distanceToObject = this.calculateDistanceToChanges(action, changeDescriptions) @@ -190,29 +142,84 @@ export class Changes { this.allChanges.data.push(...changes) this.allChanges.ping() } - - public useLocationHistory(state: { - allElements: ElementStorage, - historicalUserLocations: FeatureSource - }){ - this._state= state - } public registerIdRewrites(mappings: Map): void { CreateNewNodeAction.registerIdRewrites(mappings) } + private calculateDistanceToChanges(change: OsmChangeAction, changeDescriptions: ChangeDescription[]) { + + const locations = this.historicalUserLocations?.features?.data + if (locations === undefined) { + // No state loaded or no locations -> we can't calculate... + return; + } + if (!change.trackStatistics) { + // Probably irrelevant, such as a new helper node + return; + } + + const now = new Date() + const recentLocationPoints = locations.map(ff => ff.feature) + .filter(feat => feat.geometry.type === "Point") + .filter(feat => { + const visitTime = new Date((feat.properties).date) + // In seconds + const diff = (now.getTime() - visitTime.getTime()) / 1000 + return diff < Constants.nearbyVisitTime; + }) + if (recentLocationPoints.length === 0) { + // Probably no GPS enabled/no fix + return; + } + + // The applicable points, contain information in their properties about location, time and GPS accuracy + // They are all GeoLocationPointProperties + // We walk every change and determine the closest distance possible + // Only if the change itself does _not_ contain any coordinates, we fall back and search the original feature in the state + + const changedObjectCoordinates: [number, number][] = [] + + const feature = this.state.allElements.ContainingFeatures.get(change.mainObjectId) + if (feature !== undefined) { + changedObjectCoordinates.push(GeoOperations.centerpointCoordinates(feature)) + } + + for (const changeDescription of changeDescriptions) { + const chng: { lat: number, lon: number } | { coordinates: [number, number][] } | { members } = changeDescription.changes + if (chng === undefined) { + continue + } + if (chng["lat"] !== undefined) { + changedObjectCoordinates.push([chng["lat"], chng["lon"]]) + } + if (chng["coordinates"] !== undefined) { + changedObjectCoordinates.push(...chng["coordinates"]) + } + } + + return Math.min(...changedObjectCoordinates.map(coor => + Math.min(...recentLocationPoints.map(gpsPoint => { + const otherCoor = GeoOperations.centerpointCoordinates(gpsPoint) + return GeoOperations.distanceBetween(coor, otherCoor) + })) + )) + } /** * UPload the selected changes to OSM. * Returns 'true' if successfull and if they can be removed - * @param pending - * @private */ - private async flushSelectChanges(pending: ChangeDescription[]): Promise { + private async flushSelectChanges(pending: ChangeDescription[], openChangeset: UIEventSource): Promise { const self = this; const neededIds = Changes.GetNeededIds(pending) - const osmObjects = await Promise.all(neededIds.map(id => OsmObject.DownloadObjectAsync(id))); + + const osmObjects = Utils.NoNull(await Promise.all(neededIds.map(async id => + OsmObject.DownloadObjectAsync(id).catch(e => { + console.error("Could not download OSM-object", id, " dropping it from the changes ("+e+")") + pending = pending.filter(ch => ch.type + "/" + ch.id !== id) + return undefined; + })))); if (this._leftRightSensitive) { osmObjects.forEach(obj => SimpleMetaTagger.removeBothTagging(obj.tags)) @@ -243,43 +250,48 @@ export class Changes { key: descr.meta.changeType + ":" + descr.type + "/" + descr.id, value: descr.meta.specialMotivation })) - + const distances = Utils.NoNull(pending.map(descr => descr.meta.distanceToObject)); distances.sort((a, b) => a - b) const perBinCount = Constants.distanceToChangeObjectBins.map(_ => 0) let j = 0; const maxDistances = Constants.distanceToChangeObjectBins - for (let i = 0; i < maxDistances.length; i++){ + for (let i = 0; i < maxDistances.length; i++) { const maxDistance = maxDistances[i]; // distances is sorted in ascending order, so as soon as one is to big, all the resting elements will be bigger too - while(j < distances.length && distances[j] < maxDistance){ - perBinCount[i] ++ + while (j < distances.length && distances[j] < maxDistance) { + perBinCount[i]++ j++ } } const perBinMessage = Utils.NoNull(perBinCount.map((count, i) => { - if(count === 0){ + if (count === 0) { return undefined } - const maxD =maxDistances[i] + const maxD = maxDistances[i] let key = `change_within_${maxD}m` - if(maxD === Number.MAX_VALUE){ + if (maxD === Number.MAX_VALUE) { key = `change_over_${maxDistances[i - 1]}m` } return { - key , + key, value: count, - aggregate:true + aggregate: true } })) - + // This method is only called with changedescriptions for this theme const theme = pending[0].meta.theme - const metatags : ChangesetTag[] = [{ + let comment = "Adding data with #MapComplete for theme #" + theme + if (this.extraComment.data !== undefined) { + comment += "\n\n" + this.extraComment.data + } + + const metatags: ChangesetTag[] = [{ key: "comment", - value: "Adding data with #MapComplete for theme #" + theme + value: comment }, { key: "theme", @@ -290,9 +302,10 @@ export class Changes { ...perBinMessage ] - await State.state.osmConnection.changesetHandler.UploadChangeset( + await this._changesetHandler.UploadChangeset( (csId) => Changes.createChangesetFor("" + csId, changes), - metatags + metatags, + openChangeset ) console.log("Upload successfull!") @@ -314,10 +327,21 @@ export class Changes { pendingPerTheme.get(theme).push(changeDescription) } - const successes = await Promise.all(Array.from(pendingPerTheme, ([_, value]) => value) - .map(async pendingChanges => { + const successes = await Promise.all(Array.from(pendingPerTheme, + async ([theme, pendingChanges]) => { try { - return await self.flushSelectChanges(pendingChanges); + const openChangeset = this.state.osmConnection.GetPreference("current-open-changeset-" + theme).map( + str => { + const n = Number(str); + if (isNaN(n)) { + return undefined + } + return n + }, [], n => "" + n + ); + console.log("Using current-open-changeset-" + theme + " from the preferences, got " + openChangeset.data) + + return await self.flushSelectChanges(pendingChanges, openChangeset); } catch (e) { console.error("Could not upload some changes:", e) return false @@ -358,13 +382,19 @@ export class Changes { states.set(o.type + "/" + o.id, "unchanged") } - let changed = false; for (const change of changes) { + let changed = false; const id = change.type + "/" + change.id if (!objects.has(id)) { + // The object hasn't been seen before, so it doesn't exist yet and is newly created by its very definition if (change.id >= 0) { + // Might be a failed fetch for simply this object throw "Did not get an object that should be known: " + id } + if (change.changes === undefined) { + // This object is a change to a newly created object. However, we have not seen the creation changedescription yet! + throw "Not a creation of the object" + } // This is a new object that should be created states.set(id, "created") console.log("Creating object for changeDescription", change) @@ -461,7 +491,7 @@ export class Changes { } - if (changed && state === "unchanged") { + if (changed && states.get(id) === "unchanged") { states.set(id, "modified") } } @@ -488,6 +518,11 @@ export class Changes { }) + console.debug("Calculated the pending changes: ", result.newObjects.length, "new; ", result.modifiedObjects.length, "modified;", result.deletedObjects, "deleted") return result } + + public setHistoricalUserLocations(locations: FeatureSource ){ + this.historicalUserLocations = locations + } } \ No newline at end of file diff --git a/Logic/Osm/ChangesetHandler.ts b/Logic/Osm/ChangesetHandler.ts index 866c61faac..21fc42dd2f 100644 --- a/Logic/Osm/ChangesetHandler.ts +++ b/Logic/Osm/ChangesetHandler.ts @@ -1,9 +1,7 @@ import escapeHtml from "escape-html"; -// @ts-ignore -import {OsmConnection, UserDetails} from "./OsmConnection"; +import UserDetails, {OsmConnection} from "./OsmConnection"; import {UIEventSource} from "../UIEventSource"; import {ElementStorage} from "../ElementStorage"; -import State from "../../State"; import Locale from "../../UI/i18n/Locale"; import Constants from "../../Models/Constants"; import {Changes} from "./Changes"; @@ -17,16 +15,23 @@ export interface ChangesetTag { export class ChangesetHandler { - public readonly currentChangeset: UIEventSource; private readonly allElements: ElementStorage; private osmConnection: OsmConnection; private readonly changes: Changes; - private readonly _dryRun: boolean; + private readonly _dryRun: UIEventSource; private readonly userDetails: UIEventSource; private readonly auth: any; private readonly backend: string; - constructor(layoutName: string, dryRun: boolean, + /** + * Use 'osmConnection.CreateChangesetHandler' instead + * @param dryRun + * @param osmConnection + * @param allElements + * @param changes + * @param auth + */ + constructor(dryRun: UIEventSource, osmConnection: OsmConnection, allElements: ElementStorage, changes: Changes, @@ -38,19 +43,35 @@ export class ChangesetHandler { this.userDetails = osmConnection.userDetails; this.backend = osmConnection._oauth_config.url this.auth = auth; - this.currentChangeset = osmConnection.GetPreference("current-open-changeset-" + layoutName).map( - str => { - const n = Number(str); - if (isNaN(n)) { - return undefined - } - return n - }, [], n => "" + n - ); if (dryRun) { console.log("DRYRUN ENABLED"); } + + } + + /** + * If the metatags contain a special motivation of the format ":node/-", this method will rewrite this negative number to the actual ID + * The key is changed _in place_; true will be returned if a change has been applied + * @param extraMetaTags + * @param rewriteIds + * @private + */ + private static rewriteMetaTags(extraMetaTags: ChangesetTag[], rewriteIds: Map) { + let hasChange = false; + for (const tag of extraMetaTags) { + const match = tag.key.match(/^([a-zA-Z0-9_]+):(node\/-[0-9])$/) + if (match == null) { + continue + } + // This is a special motivation which has a negative ID -> we check for rewrites + const [_, reason, id] = match + if (rewriteIds.has(id)) { + tag.key = reason + ":" + rewriteIds.get(id) + hasChange = true + } + } + return hasChange } /** @@ -65,7 +86,8 @@ export class ChangesetHandler { */ public async UploadChangeset( generateChangeXML: (csid: number) => string, - extraMetaTags: ChangesetTag[]): Promise { + extraMetaTags: ChangesetTag[], + openChangeset: UIEventSource): Promise { if (!extraMetaTags.some(tag => tag.key === "comment") || !extraMetaTags.some(tag => tag.key === "theme")) { throw "The meta tags should at least contain a `comment` and a `theme`" @@ -76,83 +98,128 @@ export class ChangesetHandler { this.userDetails.data.csCount = 1; this.userDetails.ping(); } - if (this._dryRun) { + if (this._dryRun.data) { const changesetXML = generateChangeXML(123456); console.log("Metatags are", extraMetaTags) console.log(changesetXML); return; } - if (this.currentChangeset.data === undefined) { + if (openChangeset.data === undefined) { // We have to open a new changeset try { const csId = await this.OpenChangeset(extraMetaTags) - this.currentChangeset.setData(csId); + openChangeset.setData(csId); const changeset = generateChangeXML(csId); - console.log("Current changeset is:", changeset); - await this.AddChange(csId, changeset) + console.trace("Opened a new changeset (openChangeset.data is undefined):", changeset); + const changes = await this.AddChange(csId, changeset) + const hasSpecialMotivationChanges = ChangesetHandler.rewriteMetaTags(extraMetaTags, changes) + if(hasSpecialMotivationChanges){ + // At this point, 'extraMetaTags' will have changed - we need to set the tags again + this.UpdateTags(csId, extraMetaTags) + } + } catch (e) { console.error("Could not open/upload changeset due to ", e) - this.currentChangeset.setData(undefined) + openChangeset.setData(undefined) } } else { // There still exists an open changeset (or at least we hope so) // Let's check! - const csId = this.currentChangeset.data; + const csId = openChangeset.data; try { const oldChangesetMeta = await this.GetChangesetMeta(csId) if (!oldChangesetMeta.open) { // Mark the CS as closed... - this.currentChangeset.setData(undefined); + console.log("Could not fetch the metadata from the already open changeset") + openChangeset.setData(undefined); // ... and try again. As the cs is closed, no recursive loop can exist - await this.UploadChangeset(generateChangeXML, extraMetaTags) + await this.UploadChangeset(generateChangeXML, extraMetaTags, openChangeset) return; } - const extraTagsById = new Map() - for (const extraMetaTag of extraMetaTags) { - extraTagsById.set(extraMetaTag.key, extraMetaTag) - } - const oldCsTags = oldChangesetMeta.tags - for (const key in oldCsTags) { - const newMetaTag = extraTagsById.get(key) - if (newMetaTag === undefined) { - extraMetaTags.push({ - key: key, - value: oldCsTags[key] - }) - } else if (newMetaTag.aggregate) { - let n = Number(newMetaTag.value) - if (isNaN(n)) { - n = 0 - } - let o = Number(oldCsTags[key]) - if (isNaN(o)) { - o = 0 - } - // We _update_ the tag itself, as it'll be updated in 'extraMetaTags' straight away - newMetaTag.value = "" + (n + o) - } else { - // The old value is overwritten, thus we drop - } - } - - await this.UpdateTags(csId, extraMetaTags.map(csTag => <[string, string]>[csTag.key, csTag.value])) - - - await this.AddChange( + const rewritings = await this.AddChange( csId, generateChangeXML(csId)) + await this.RewriteTagsOf(extraMetaTags, rewritings, oldChangesetMeta) } catch (e) { console.warn("Could not upload, changeset is probably closed: ", e); - this.currentChangeset.setData(undefined); + openChangeset.setData(undefined); } } } + /** + * Updates the metatag of a changeset - + * @param extraMetaTags: new changeset tags to add/fuse with this changeset + * @param oldChangesetMeta: the metadata-object of the already existing changeset + * @constructor + * @private + */ + private async RewriteTagsOf(extraMetaTags: ChangesetTag[], + rewriteIds: Map, + oldChangesetMeta: { + open: boolean, + id: number + uid: number, // User ID + changes_count: number, + tags: any + }) { + + const csId = oldChangesetMeta.id + + // Note: extraMetaTags is where all the tags are collected into + + // same as 'extraMetaTag', but indexed + // Note that updates to 'extraTagsById.get().value = XYZ' is shared with extraMetatags + const extraTagsById = new Map() + for (const extraMetaTag of extraMetaTags) { + extraTagsById.set(extraMetaTag.key, extraMetaTag) + } + + const oldCsTags = oldChangesetMeta.tags + for (const key in oldCsTags) { + const newMetaTag = extraTagsById.get(key) + const existingValue = oldCsTags[key] + + if (newMetaTag !== undefined && newMetaTag.value === existingValue) { + continue + } + if (newMetaTag === undefined) { + extraMetaTags.push({ + key: key, + value: oldCsTags[key] + }) + continue + } + + if (newMetaTag.aggregate) { + let n = Number(newMetaTag.value) + if (isNaN(n)) { + n = 0 + } + let o = Number(oldCsTags[key]) + if (isNaN(o)) { + o = 0 + } + // We _update_ the tag itself, as it'll be updated in 'extraMetaTags' straight away + newMetaTag.value = "" + (n + o) + } else { + // The old value is overwritten, thus we drop this old key + } + } + + + ChangesetHandler.rewriteMetaTags(extraMetaTags, rewriteIds) + + await this.UpdateTags(csId, extraMetaTags) + + + } + private handleIdRewrite(node: any, type: string): [string, string] { const oldId = parseInt(node.attributes.old_id.value); if (node.attributes.new_id === undefined) { @@ -172,7 +239,6 @@ export class ChangesetHandler { if (oldId == newId) { return undefined; } - console.log("Rewriting id: ", type + "/" + oldId, "-->", type + "/" + newId); const element = this.allElements.getEventSourceById("node/" + oldId); if (element === undefined) { // Element to rewrite not found, probably a node or relation that is not rendered @@ -185,7 +251,7 @@ export class ChangesetHandler { return result; } - private parseUploadChangesetResponse(response: XMLDocument): void { + private parseUploadChangesetResponse(response: XMLDocument): Map { const nodes = response.getElementsByTagName("node"); const mappings = new Map() // @ts-ignore @@ -205,20 +271,16 @@ export class ChangesetHandler { } } this.changes.registerIdRewrites(mappings) + return mappings } private async CloseChangeset(changesetId: number = undefined): Promise { const self = this return new Promise(function (resolve, reject) { - if (changesetId === undefined) { - changesetId = self.currentChangeset.data; - } if (changesetId === undefined) { return; } - console.log("closing changeset", changesetId); - self.currentChangeset.setData(undefined); self.auth.xhr({ method: 'PUT', path: '/api/0.6/changeset/' + changesetId + '/close', @@ -245,15 +307,21 @@ export class ChangesetHandler { return csData.elements[0] } + + /** + * Puts the specified tags onto the changesets as they are. + * This method will erase previously set tags + */ private async UpdateTags( csId: number, - tags: [string, string][]) { + tags: ChangesetTag[]) { + console.trace("Updating tags of " + csId) const self = this; return new Promise(function (resolve, reject) { - tags = Utils.NoNull(tags).filter(([k, v]) => k !== undefined && v !== undefined && k !== "" && v !== "") - const metadata = tags.map(kv => ``) + tags = Utils.NoNull(tags).filter(tag => tag.key !== undefined && tag.value !== undefined && tag.key !== "" && tag.value !== "") + const metadata = tags.map(kv => ``) self.auth.xhr({ method: 'PUT', @@ -271,7 +339,6 @@ export class ChangesetHandler { } }); }) - } private OpenChangeset( @@ -284,11 +351,11 @@ export class ChangesetHandler { path = path.substr(1, path.lastIndexOf("/")); const metadata = [ ["created_by", `MapComplete ${Constants.vNumber}`], - ["language", Locale.language.data], + ["locale", Locale.language.data], ["host", window.location.host], ["path", path], - ["source", State.state.currentUserLocation.features.data.length > 0 ? "survey" : undefined], - ["imagery", State.state.backgroundLayer.data.id], + ["source", self.changes.state["currentUserLocation"]?.features?.data?.length > 0 ? "survey" : undefined], + ["imagery", self.changes.state["backgroundLayer"]?.data?.id], ...changesetTags.map(cstag => [cstag.key, cstag.value]) ] .filter(kv => (kv[1] ?? "") !== "") @@ -319,7 +386,7 @@ export class ChangesetHandler { * Upload a changesetXML */ private AddChange(changesetId: number, - changesetXML: string): Promise { + changesetXML: string): Promise> { const self = this; return new Promise(function (resolve, reject) { self.auth.xhr({ @@ -332,9 +399,9 @@ export class ChangesetHandler { console.log("err", err); reject(err); } - self.parseUploadChangesetResponse(response); + const changes = self.parseUploadChangesetResponse(response); console.log("Uploaded changeset ", changesetId); - resolve(changesetId); + resolve(changes); }); }) diff --git a/Logic/Osm/OsmConnection.ts b/Logic/Osm/OsmConnection.ts index 3ef0593c44..93164ca2f4 100644 --- a/Logic/Osm/OsmConnection.ts +++ b/Logic/Osm/OsmConnection.ts @@ -19,7 +19,6 @@ export default class UserDetails { public img: string; public unreadMessages = 0; public totalMessages = 0; - public dryRun: boolean; home: { lon: number; lat: number }; public backend: string; @@ -47,14 +46,14 @@ export class OsmConnection { public auth; public userDetails: UIEventSource; public isLoggedIn: UIEventSource - _dryRun: boolean; + public loadingStatus = new UIEventSource<"not-attempted" | "loading" | "error" | "logged-in">("not-attempted") public preferencesHandler: OsmPreferences; - public changesetHandler: ChangesetHandler; public readonly _oauth_config: { oauth_consumer_key: string, oauth_secret: string, url: string }; + private readonly _dryRun: UIEventSource; private fakeUser: boolean; private _onLoggedIn: ((userDetails: UserDetails) => void)[] = []; private readonly _iframeMode: Boolean | boolean; @@ -62,15 +61,13 @@ export class OsmConnection { private isChecking = false; constructor(options: { - dryRun?: false | boolean, + dryRun?: UIEventSource, fakeUser?: false | boolean, - allElements: ElementStorage, - changes: Changes, oauth_token?: UIEventSource, // Used to keep multiple changesets open and to write to the correct changeset - layoutName: string, singlePage?: boolean, - osmConfiguration?: "osm" | "osm-test" + osmConfiguration?: "osm" | "osm-test", + attemptLogin?: true | boolean } ) { this.fakeUser = options.fakeUser ?? false; @@ -81,7 +78,6 @@ export class OsmConnection { this._iframeMode = Utils.runningFromConsole ? false : window !== window.top; this.userDetails = new UIEventSource(new UserDetails(this._oauth_config.url), "userDetails"); - this.userDetails.data.dryRun = (options.dryRun ?? false) || (options.fakeUser ?? false); if (options.fakeUser) { const ud = this.userDetails.data; ud.csCount = 5678 @@ -98,13 +94,12 @@ export class OsmConnection { self.AttemptLogin() } }); - this._dryRun = options.dryRun; + this._dryRun = options.dryRun ?? new UIEventSource(false); this.updateAuthObject(); this.preferencesHandler = new OsmPreferences(this.auth, this); - this.changesetHandler = new ChangesetHandler(options.layoutName, options.dryRun, this, options.allElements, options.changes, this.auth); if (options.oauth_token?.data !== undefined) { console.log(options.oauth_token.data) const self = this; @@ -117,12 +112,16 @@ export class OsmConnection { options.oauth_token.setData(undefined); } - if (this.auth.authenticated()) { + if (this.auth.authenticated() && (options.attemptLogin !== false)) { this.AttemptLogin(); // Also updates the user badge } else { console.log("Not authenticated"); } } + + public CreateChangesetHandler(allElements: ElementStorage, changes: Changes){ + return new ChangesetHandler(this._dryRun, this, allElements, changes, this.auth); + } public GetPreference(key: string, prefix: string = "mapcomplete-"): UIEventSource { return this.preferencesHandler.GetPreference(key, prefix); @@ -143,10 +142,13 @@ export class OsmConnection { this.userDetails.data.name = ""; this.userDetails.ping(); console.log("Logged out") + this.loadingStatus.setData("not-attempted") } public AttemptLogin() { + this.loadingStatus.setData("loading") if (this.fakeUser) { + this.loadingStatus.setData("logged-in") console.log("AttemptLogin called, but ignored as fakeUser is set") return; } @@ -159,6 +161,7 @@ export class OsmConnection { }, function (err, details) { if (err != null) { console.log(err); + self.loadingStatus.setData("error") if (err.status == 401) { console.log("Clearing tokens...") // Not authorized - our token probably got revoked @@ -173,6 +176,7 @@ export class OsmConnection { } if (details == null) { + self.loadingStatus.setData("error") return; } @@ -204,6 +208,7 @@ export class OsmConnection { data.home = {lat: lat, lon: lon}; } + self.loadingStatus.setData("logged-in") const messages = userInfo.getElementsByTagName("messages")[0].getElementsByTagName("received")[0]; data.unreadMessages = parseInt(messages.getAttribute("unread")); data.totalMessages = parseInt(messages.getAttribute("count")); @@ -217,6 +222,125 @@ export class OsmConnection { }); } + public closeNote(id: number | string, text?: string): Promise { + let textSuffix = "" + if ((text ?? "") !== "") { + textSuffix = "?text=" + encodeURIComponent(text) + } + if (this._dryRun.data) { + 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.data) { + 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.data) { + console.warn("Dryrun enabled - not actually opening note with text ", text) + return new Promise<{ id: number }>((ok, error) => { + window.setTimeout(() => ok({id: Math.floor(Math.random() * 1000)}), Math.random() * 5000) + }); + } + 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: string) { + console.log("RESPONSE IS", response) + if (err !== null) { + error(err) + } else { + const parsed = JSON.parse(response) + const id = parsed.properties.id + console.log("OPENED NOTE", id) + ok({id}) + } + }) + + }) + + } + + public addCommentToNode(id: number | string, text: string): Promise { + if (this._dryRun.data) { + console.warn("Dryrun enabled - not actually adding comment ", text, "to note ", id) + return new Promise((ok, error) => { + ok() + }); + } + if ((text ?? "") === "") { + throw "Invalid text!" + } + + return new Promise((ok, error) => { + this.auth.xhr({ + method: 'POST', + + path: `/api/0.6/notes/${id}/comment?text=${encodeURIComponent(text)}` + }, function (err, response) { + if (err !== null) { + error(err) + } else { + ok() + } + }) + + }) + + } + private updateAuthObject() { let pwaStandAloneMode = false; try { @@ -259,6 +383,4 @@ export class OsmConnection { }); } - - } \ No newline at end of file diff --git a/Logic/Osm/OsmObject.ts b/Logic/Osm/OsmObject.ts index d28d8f165b..bb5a8e9972 100644 --- a/Logic/Osm/OsmObject.ts +++ b/Logic/Osm/OsmObject.ts @@ -207,27 +207,36 @@ export abstract class OsmObject { return objects; } + /** + * Uses the list of polygon features to determine if the given tags are a polygon or not. + * */ protected static isPolygon(tags: any): boolean { for (const tagsKey in tags) { if (!tags.hasOwnProperty(tagsKey)) { continue } - const polyGuide = OsmObject.polygonFeatures.get(tagsKey) + const polyGuide : { values: Set; blacklist: boolean } = OsmObject.polygonFeatures.get(tagsKey) if (polyGuide === undefined) { continue } if ((polyGuide.values === null)) { - // We match all + // .values is null, thus merely _having_ this key is enough to be a polygon (or if blacklist, being a line) return !polyGuide.blacklist } - // is the key contained? - return polyGuide.values.has(tags[tagsKey]) + // is the key contained? Then we have a match if the value is contained + const doesMatch = polyGuide.values.has(tags[tagsKey]) + if(polyGuide.blacklist){ + return !doesMatch + } + return doesMatch } + + return false; } private static constructPolygonFeatures(): Map, blacklist: boolean }> { const result = new Map, blacklist: boolean }>(); - for (const polygonFeature of polygon_features) { + for (const polygonFeature of (polygon_features["default"] ?? polygon_features)) { const key = polygonFeature.key; if (polygonFeature.polygon === "all") { @@ -381,7 +390,7 @@ export class OsmWay extends OsmObject { } if (element.nodes === undefined) { - console.log("PANIC") + console.error("PANIC: no nodes!") } for (const nodeId of element.nodes) { @@ -391,10 +400,9 @@ export class OsmWay extends OsmObject { // This is probably part of a relation which hasn't been fully downloaded continue; } - const cp = node.centerpoint(); - this.coordinates.push(cp); - latSum += cp[0] - lonSum += cp[1] + this.coordinates.push(node.centerpoint()); + latSum += node.lat + lonSum += node.lon } let count = this.coordinates.length; this.lat = latSum / count; @@ -403,7 +411,7 @@ export class OsmWay extends OsmObject { } public asGeoJson() { - let coordinates: ([number, number][] | [number, number][][]) = this.coordinates.map(c => [c[1], c[0]]); + let coordinates: ([number, number][] | [number, number][][]) = this.coordinates.map(([lat, lon]) => [lon, lat]); if (this.isPolygon()) { coordinates = [coordinates] } @@ -418,7 +426,9 @@ export class OsmWay extends OsmObject { } private isPolygon(): boolean { - if (this.coordinates[0] !== this.coordinates[this.coordinates.length - 1]) { + // Compare lat and lon seperately, as the coordinate array might not be a reference to the same object + if (this.coordinates[0][0] !== this.coordinates[this.coordinates.length - 1][0] || + this.coordinates[0][1] !== this.coordinates[this.coordinates.length - 1][1] ) { return false; // Not closed } return OsmObject.isPolygon(this.tags) diff --git a/Logic/Osm/OsmPreferences.ts b/Logic/Osm/OsmPreferences.ts index fadd9c1059..7e06bdfc64 100644 --- a/Logic/Osm/OsmPreferences.ts +++ b/Logic/Osm/OsmPreferences.ts @@ -5,7 +5,7 @@ import {Utils} from "../../Utils"; export class OsmPreferences { public preferences = new UIEventSource({}, "all-osm-preferences"); - public preferenceSources: any = {} + private readonly preferenceSources = new Map>() private auth: any; private userDetails: UIEventSource; private longPreferences = {}; @@ -29,6 +29,7 @@ export class OsmPreferences { return this.longPreferences[prefix + key]; } + const source = new UIEventSource(undefined, "long-osm-preference:" + prefix + key); this.longPreferences[prefix + key] = source; @@ -36,6 +37,10 @@ export class OsmPreferences { // Gives the number of combined preferences const length = this.GetPreference(allStartWith + "-length", ""); + if( (allStartWith + "-length").length > 255){ + throw "This preference key is too long, it has "+key.length+" characters, but at most "+(255 - "-length".length - "-combined".length - prefix.length)+" characters are allowed" + } + const self = this; source.addCallback(str => { if (str === undefined || str === "") { @@ -101,27 +106,51 @@ export class OsmPreferences { if (key.length >= 255) { throw "Preferences: key length to big"; } - if (this.preferenceSources[key] !== undefined) { - return this.preferenceSources[key]; + const cached = this.preferenceSources.get(key) + if (cached !== undefined) { + return cached; } if (this.userDetails.data.loggedIn && this.preferences.data[key] === undefined) { this.UpdatePreferences(); } + const pref = new UIEventSource(this.preferences.data[key], "osm-preference:" + key); pref.addCallback((v) => { - this.SetPreference(key, v); + this.UploadPreference(key, v); }); - this.preferences.addCallback((prefs) => { - if (prefs[key] !== undefined) { - pref.setData(prefs[key]); - } - }); - - this.preferenceSources[key] = pref; + + this.preferenceSources.set(key, pref) return pref; } + public ClearPreferences() { + let isRunning = false; + const self = this; + this.preferences.addCallbackAndRun(prefs => { + if (Object.keys(prefs).length == 0) { + return; + } + if (isRunning) { + return + } + isRunning = true + const prefixes = ["mapcomplete-installed-theme", "mapcomplete-installed-themes-", "mapcomplete-current-open-changeset", "mapcomplete-personal-theme-layer"] + for (const key in prefs) { + for (const prefix of prefixes) { + if (key.startsWith(prefix)) { + console.log("Clearing ", key) + self.GetPreference(key, "").setData("") + + } + } + } + isRunning = false; + return true; + + }) + } + private UpdatePreferences() { const self = this; this.auth.xhr({ @@ -139,11 +168,26 @@ export class OsmPreferences { const v = pref.getAttribute("v"); self.preferences.data[k] = v; } + + // We merge all the preferences: new keys are uploaded + // For differing values, the server overrides local changes + self.preferenceSources.forEach((preference, key) => { + const osmValue = self.preferences.data[key] + console.log("Sending value to osm:", key," osm has: ", osmValue, " local has: ", preference.data) + if(osmValue === undefined && preference.data !== undefined){ + // OSM doesn't know this value yet + self.UploadPreference(key, preference.data) + } else { + // OSM does have a value - set it + preference.setData(osmValue) + } + }) + self.preferences.ping(); }); } - private SetPreference(k: string, v: string) { + private UploadPreference(k: string, v: string) { if (!this.userDetails.data.loggedIn) { console.debug(`Not saving preference ${k}: user not logged in`); return; @@ -178,10 +222,10 @@ export class OsmPreferences { content: v }, function (error) { if (error) { - console.log(`Could not set preference "${k}"'`, error); + console.warn(`Could not set preference "${k}"'`, error); return; } - console.log(`Preference ${k} written!`); + console.debug(`Preference ${k} written!`); }); } diff --git a/Logic/Osm/Overpass.ts b/Logic/Osm/Overpass.ts index f13f7a29b4..f941fe2ba9 100644 --- a/Logic/Osm/Overpass.ts +++ b/Logic/Osm/Overpass.ts @@ -1,15 +1,14 @@ -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 */ export class Overpass { - public static testUrl: string = null private _filter: TagsFilter private readonly _interpreterUrl: string; private readonly _timeout: UIEventSource; @@ -36,10 +35,6 @@ export class Overpass { let query = this.buildQuery("[bbox:" + bounds.getSouth() + "," + bounds.getWest() + "," + bounds.getNorth() + "," + bounds.getEast() + "]") - if (Overpass.testUrl !== null) { - console.log("Using testing URL") - query = Overpass.testUrl; - } const self = this; const json = await Utils.downloadJson(query) @@ -52,8 +47,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/SimpleMetaTagger.ts b/Logic/SimpleMetaTagger.ts index c27240cf9e..af00de028a 100644 --- a/Logic/SimpleMetaTagger.ts +++ b/Logic/SimpleMetaTagger.ts @@ -1,5 +1,4 @@ import {GeoOperations} from "./GeoOperations"; -import State from "../State"; import {Utils} from "../Utils"; import opening_hours from "opening_hours"; import Combine from "../UI/Base/Combine"; @@ -7,18 +6,83 @@ import BaseUIElement from "../UI/BaseUIElement"; import Title from "../UI/Base/Title"; import {FixedUiElement} from "../UI/Base/FixedUiElement"; import LayerConfig from "../Models/ThemeConfig/LayerConfig"; +import {CountryCoder} from "latlon2country" -const cardinalDirections = { - N: 0, NNE: 22.5, NE: 45, ENE: 67.5, - E: 90, ESE: 112.5, SE: 135, SSE: 157.5, - S: 180, SSW: 202.5, SW: 225, WSW: 247.5, - W: 270, WNW: 292.5, NW: 315, NNW: 337.5 +export class SimpleMetaTagger { + public readonly keys: string[]; + public readonly doc: string; + public readonly isLazy: boolean; + public readonly includesDates: boolean + public readonly applyMetaTagsOnFeature: (feature: any, freshness: Date, layer: LayerConfig, state) => boolean; + + /*** + * A function that adds some extra data to a feature + * @param docs: what does this extra data do? + * @param f: apply the changes. Returns true if something changed + */ + constructor(docs: { keys: string[], doc: string, includesDates?: boolean, isLazy?: boolean, cleanupRetagger?: boolean }, + f: ((feature: any, freshness: Date, layer: LayerConfig, state) => boolean)) { + this.keys = docs.keys; + this.doc = docs.doc; + this.isLazy = docs.isLazy + this.applyMetaTagsOnFeature = f; + this.includesDates = docs.includesDates ?? false; + if (!docs.cleanupRetagger) { + for (const key of docs.keys) { + if (!key.startsWith('_') && key.toLowerCase().indexOf("theme") < 0) { + throw `Incorrect metakey ${key}: it should start with underscore (_)` + } + } + } + } + } +export class CountryTagger extends SimpleMetaTagger { + private static readonly coder = new CountryCoder("https://raw.githubusercontent.com/pietervdvn/MapComplete-data/main/latlon2country", Utils.downloadJson); + public runningTasks: Set; + + constructor() { + const runningTasks = new Set(); + super + ( + { + keys: ["_country"], + doc: "The country code of the property (with latlon2country)", + includesDates: false + }, + ((feature, _, __, state) => { + let centerPoint: any = GeoOperations.centerpoint(feature); + const lat = centerPoint.geometry.coordinates[1]; + const lon = centerPoint.geometry.coordinates[0]; + runningTasks.add(feature) + CountryTagger.coder.GetCountryCodeAsync(lon, lat).then( + countries => { + runningTasks.delete(feature) + try { + const oldCountry = feature.properties["_country"]; + feature.properties["_country"] = countries[0].trim().toLowerCase(); + if (oldCountry !== feature.properties["_country"]) { + const tagsSource = state?.allElements?.getEventSourceById(feature.properties.id); + tagsSource?.ping(); + } + } catch (e) { + console.warn(e) + } + } + ).catch(_ => { + runningTasks.delete(feature) + }) + return false; + }) + ) + this.runningTasks = runningTasks; + } +} + +export default class SimpleMetaTaggers { -export default class SimpleMetaTagger { - public static coder: any; public static readonly objectMetaInfo = new SimpleMetaTagger( { keys: ["_last_edit:contributor", @@ -49,7 +113,24 @@ export default class SimpleMetaTagger { return true; } ) - + public static country = new CountryTagger() + public static geometryType = new SimpleMetaTagger( + { + keys: ["_geometry:type"], + doc: "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`", + }, + (feature, _) => { + const changed = feature.properties["_geometry:type"] === feature.geometry.type; + feature.properties["_geometry:type"] = feature.geometry.type; + return changed + } + ) + private static readonly cardinalDirections = { + N: 0, NNE: 22.5, NE: 45, ENE: 67.5, + E: 90, ESE: 112.5, SE: 135, SSE: 157.5, + S: 180, SSW: 202.5, SW: 225, WSW: 247.5, + W: 270, WNW: 292.5, NW: 315, NNW: 337.5 + } private static latlon = new SimpleMetaTagger({ keys: ["_lat", "_lon"], doc: "The latitude and longitude of the point (or centerpoint in the case of a way/area)" @@ -92,7 +173,7 @@ export default class SimpleMetaTagger { return; } - return SimpleMetaTagger.removeBothTagging(feature.properties) + return SimpleMetaTaggers.removeBothTagging(feature.properties) }) ) private static surfaceArea = new SimpleMetaTagger( @@ -129,15 +210,14 @@ export default class SimpleMetaTagger { return true; }) ); - private static canonicalize = new SimpleMetaTagger( { doc: "If 'units' is defined in the layoutConfig, then this metatagger will rewrite the specified keys to have the canonical form (e.g. `1meter` will be rewritten to `1m`)", keys: ["Theme-defined keys"], }, - (feature => { - const units = Utils.NoNull([].concat(...State.state?.layoutToUse?.layers?.map(layer => layer.units ?? []))); + ((feature, _, __, state) => { + const units = Utils.NoNull([].concat(...state?.layoutToUse?.layers?.map(layer => layer.units ?? []))); if (units.length == 0) { return; } @@ -182,7 +262,6 @@ export default class SimpleMetaTagger { return rewritten }) ) - private static lngth = new SimpleMetaTagger( { keys: ["_length", "_length:km"], @@ -197,114 +276,61 @@ export default class SimpleMetaTagger { return true; }) ) - private static country = new SimpleMetaTagger( - { - keys: ["_country"], - doc: "The country code of the property (with latlon2country)", - includesDates: false - }, - ((feature, _) => { - let centerPoint: any = GeoOperations.centerpoint(feature); - const lat = centerPoint.geometry.coordinates[1]; - const lon = centerPoint.geometry.coordinates[0]; - - SimpleMetaTagger.coder?.GetCountryCodeFor(lon, lat, (countries: string[]) => { - try { - const oldCountry = feature.properties["_country"]; - feature.properties["_country"] = countries[0].trim().toLowerCase(); - if (oldCountry !== feature.properties["_country"]) { - const tagsSource = State.state.allElements.getEventSourceById(feature.properties.id); - tagsSource.ping(); - } - } catch (e) { - console.warn(e) - } - }) - return false; - }) - ) private static isOpen = new SimpleMetaTagger( { - keys: ["_isOpen", "_isOpen:description"], + keys: ["_isOpen"], doc: "If 'opening_hours' is present, it will add the current state of the feature (being 'yes' or 'no')", includesDates: true, isLazy: true }, - (feature => { + ((feature, _, __, state) => { if (Utils.runningFromConsole) { // We are running from console, thus probably creating a cache // isOpen is irrelevant return false } + if (feature.properties.opening_hours === "24/7") { + feature.properties._isOpen = "yes" + return true; + } + // _isOpen is calculated dynamically on every call Object.defineProperty(feature.properties, "_isOpen", { enumerable: false, configurable: true, get: () => { - delete feature.properties._isOpen - feature.properties._isOpen = undefined - const tagsSource = State.state.allElements.getEventSourceById(feature.properties.id); - tagsSource.addCallbackAndRunD(tags => { - if (tags.opening_hours === undefined || tags._country === undefined) { - return; - } - try { - const [lon, lat] = GeoOperations.centerpointCoordinates(feature) - const oh = new opening_hours(tags["opening_hours"], { - lat: lat, - lon: lon, - address: { - country_code: tags._country.toLowerCase() - } - }, {tag_key: "opening_hours"}); - // AUtomatically triggered on the next change - const updateTags = () => { - const oldValueIsOpen = tags["_isOpen"]; - const oldNextChange = tags["_isOpen:nextTrigger"] ?? 0; + const tags = feature.properties + if (tags.opening_hours === undefined) { + return; + } + if (tags._country === undefined) { + return; + } - if (oldNextChange > (new Date()).getTime() && - tags["_isOpen:oldvalue"] === tags["opening_hours"] - && tags["_isOpen"] !== undefined) { - // Already calculated and should not yet be triggered - return false; - } - - tags["_isOpen"] = oh.getState() ? "yes" : "no"; - const comment = oh.getComment(); - if (comment) { - tags["_isOpen:description"] = comment; - } - - if (oldValueIsOpen !== tags._isOpen) { - tagsSource.ping(); - } - - const nextChange = oh.getNextChange(); - if (nextChange !== undefined) { - const timeout = nextChange.getTime() - (new Date()).getTime(); - tags["_isOpen:nextTrigger"] = nextChange.getTime(); - tags["_isOpen:oldvalue"] = tags.opening_hours - window.setTimeout( - () => { - console.log("Updating the _isOpen tag for ", tags.id, ", it's timer expired after", timeout); - updateTags(); - }, - timeout - ) - } + try { + const [lon, lat] = GeoOperations.centerpointCoordinates(feature) + const oh = new opening_hours(tags["opening_hours"], { + lat: lat, + lon: lon, + address: { + country_code: tags._country.toLowerCase() } - updateTags(); - return true; // Our job is done, lets unregister! - } catch (e) { - console.warn("Error while parsing opening hours of ", tags.id, e); - delete tags._isOpen - tags["_isOpen"] = "parse_error"; - } + }, {tag_key: "opening_hours"}); - }) - return undefined - } - }) + // Recalculate! + return oh.getState() ? "yes" : "no"; + + } catch (e) { + console.warn("Error while parsing opening hours of ", tags.id, e); + delete tags._isOpen + tags["_isOpen"] = "parse_error"; + } + }}); + + + const tagsSource = state.allElements.getEventSourceById(feature.properties.id); + + }) ) @@ -319,7 +345,7 @@ export default class SimpleMetaTagger { if (direction === undefined) { return false; } - const n = cardinalDirections[direction] ?? Number(direction); + const n = SimpleMetaTaggers.cardinalDirections[direction] ?? Number(direction); if (isNaN(n)) { return false; } @@ -332,7 +358,6 @@ export default class SimpleMetaTagger { return true; }) ) - private static currentTime = new SimpleMetaTagger( { keys: ["_now:date", "_now:datetime", "_loaded:date", "_loaded:_datetime"], @@ -360,50 +385,24 @@ export default class SimpleMetaTagger { feature.properties["_loaded:datetime"] = datetime(freshness); return true; } - ) - public static metatags = [ - SimpleMetaTagger.latlon, - SimpleMetaTagger.layerInfo, - SimpleMetaTagger.surfaceArea, - SimpleMetaTagger.lngth, - SimpleMetaTagger.canonicalize, - SimpleMetaTagger.country, - SimpleMetaTagger.isOpen, - SimpleMetaTagger.directionSimplified, - SimpleMetaTagger.currentTime, - SimpleMetaTagger.objectMetaInfo, - SimpleMetaTagger.noBothButLeftRight + ); + public static metatags: SimpleMetaTagger[] = [ + SimpleMetaTaggers.latlon, + SimpleMetaTaggers.layerInfo, + SimpleMetaTaggers.surfaceArea, + SimpleMetaTaggers.lngth, + SimpleMetaTaggers.canonicalize, + SimpleMetaTaggers.country, + SimpleMetaTaggers.isOpen, + SimpleMetaTaggers.directionSimplified, + SimpleMetaTaggers.currentTime, + SimpleMetaTaggers.objectMetaInfo, + SimpleMetaTaggers.noBothButLeftRight, + SimpleMetaTaggers.geometryType ]; - public readonly keys: string[]; - public readonly doc: string; - public readonly isLazy: boolean; - public readonly includesDates: boolean - public readonly applyMetaTagsOnFeature: (feature: any, freshness: Date, layer: LayerConfig) => boolean; - - public static readonly lazyTags: string[] = [].concat(...SimpleMetaTagger.metatags.filter(tagger => tagger.isLazy) + public static readonly lazyTags: string[] = [].concat(...SimpleMetaTaggers.metatags.filter(tagger => tagger.isLazy) .map(tagger => tagger.keys)); - - /*** - * A function that adds some extra data to a feature - * @param docs: what does this extra data do? - * @param f: apply the changes. Returns true if something changed - */ - constructor(docs: { keys: string[], doc: string, includesDates?: boolean, isLazy?: boolean, cleanupRetagger?: boolean }, - f: ((feature: any, freshness: Date, layer: LayerConfig) => boolean)) { - this.keys = docs.keys; - this.doc = docs.doc; - this.isLazy = docs.isLazy - this.applyMetaTagsOnFeature = f; - this.includesDates = docs.includesDates ?? false; - if (!docs.cleanupRetagger) { - for (const key of docs.keys) { - if (!key.startsWith('_') && key.toLowerCase().indexOf("theme") < 0) { - throw `Incorrect metakey ${key}: it should start with underscore (_)` - } - } - } - } /** * Edits the given object to rewrite 'both'-tagging into a 'left-right' tagging scheme. @@ -485,7 +484,6 @@ export default class SimpleMetaTagger { public static HelpText(): BaseUIElement { const subElements: (string | BaseUIElement)[] = [ new Combine([ - new Title("Metatags", 1), "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.", "**Hint:** when using metatags, add the [query parameter](URL_Parameters.md) `debug=true` to the URL. This will include a box in the popup for features which shows all the properties of the object" @@ -495,7 +493,7 @@ export default class SimpleMetaTagger { subElements.push(new Title("Metatags calculated by MapComplete", 2)) subElements.push(new FixedUiElement("The following values are always calculated, by default, by MapComplete and are available automatically on all elements in every theme")) - for (const metatag of SimpleMetaTagger.metatags) { + for (const metatag of SimpleMetaTaggers.metatags) { subElements.push( new Title(metatag.keys.join(", "), 3), metatag.doc, diff --git a/Logic/State/ElementsState.ts b/Logic/State/ElementsState.ts index 345ada2443..c7fc1dbbf4 100644 --- a/Logic/State/ElementsState.ts +++ b/Logic/State/ElementsState.ts @@ -10,8 +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"; -import FeatureSource from "../FeatureSource/FeatureSource"; /** * The part of the state keeping track of where the elements, loading them, configuring the feature pipeline etc @@ -22,11 +20,7 @@ export default class ElementsState extends FeatureSwitchState { The mapping from id -> UIEventSource */ public allElements: ElementStorage = new ElementStorage(); - /** - THe change handler - */ - public changes: Changes; - + /** The latest element that was selected */ @@ -50,8 +44,6 @@ export default class ElementsState extends FeatureSwitchState { constructor(layoutToUse: LayoutConfig) { super(layoutToUse); - this.changes = new Changes(layoutToUse?.isLeftRightSensitive() ?? false) - { // -- Location control initialization const zoom = UIEventSource.asFloat( QueryParameters.GetQueryParameter( @@ -86,11 +78,7 @@ export default class ElementsState extends FeatureSwitchState { lat.setData(latlonz.lat); lon.setData(latlonz.lon); }); - } - - 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 96a29beb6f..62f4616057 100644 --- a/Logic/State/FeaturePipelineState.ts +++ b/Logic/State/FeaturePipelineState.ts @@ -8,6 +8,10 @@ import {UIEventSource} from "../UIEventSource"; import MapState from "./MapState"; import SelectedFeatureHandler from "../Actors/SelectedFeatureHandler"; import Hash from "../Web/Hash"; +import {BBox} from "../BBox"; +import FeatureInfoBox from "../../UI/Popup/FeatureInfoBox"; +import {FeatureSourceForLayer, Tiled} from "../FeatureSource/FeatureSource"; +import MetaTagRecalculator from "../FeatureSource/Actors/MetaTagRecalculator"; export default class FeaturePipelineState extends MapState { @@ -16,86 +20,115 @@ export default class FeaturePipelineState extends MapState { */ public readonly featurePipeline: FeaturePipeline; private readonly featureAggregator: TileHierarchyAggregator; + private readonly metatagRecalculator: MetaTagRecalculator constructor(layoutToUse: LayoutConfig) { super(layoutToUse); - const clustering = layoutToUse.clustering + const clustering = layoutToUse?.clustering this.featureAggregator = TileHierarchyAggregator.createHierarchy(this); const clusterCounter = this.featureAggregator const self = this; - this.featurePipeline = new FeaturePipeline( - source => { - clusterCounter.addTile(source) + /** + * We are a bit in a bind: + * There is the featurePipeline, which creates some sources during construction + * THere is the metatagger, which needs to have these sources registered AND which takes a FeaturePipeline as argument + * + * This is a bit of a catch-22 (except that it isn't) + * The sources that are registered in the constructor are saved into 'registeredSources' temporary + * + */ + const sourcesToRegister = [] - // Do show features indicates if the 'showDataLayer' should be shown - const doShowFeatures = source.features.map( - f => { - const z = self.locationControl.data.zoom + function registerRaw(source: FeatureSourceForLayer & Tiled) { + if (self.metatagRecalculator === undefined) { + sourcesToRegister.push(source) + } else { + self.metatagRecalculator.registerSource(source) + } + } - if (!source.layer.isDisplayed.data) { - return false; - } + function registerSource(source: FeatureSourceForLayer & Tiled) { - const bounds = self.currentBounds.data - if (bounds === undefined) { - // Map is not yet displayed - return false; - } + clusterCounter.addTile(source) + const sourceBBox = source.features.map(allFeatures => BBox.bboxAroundAll(allFeatures.map(f => BBox.get(f.feature)))) - if (!source.bbox.overlapsWith(bounds)) { - // Not within range -> features are hidden - return false - } + // 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 - - if (z < source.layer.layerDef.minzoom) { - // Layer is always hidden for this zoom level - return false; - } - - if (z > clustering.maxZoom) { - return true - } - - if (f.length > clustering.minNeededElements) { - // This tile alone already has too much features - return false - } - - let [tileZ, tileX, tileY] = Tiles.tile_from_index(source.tileIndex); - if (tileZ >= z) { - - while (tileZ > z) { - tileZ-- - tileX = Math.floor(tileX / 2) - tileY = Math.floor(tileY / 2) - } - - if (clusterCounter.getTile(Tiles.tile_index(tileZ, tileX, tileY))?.totalValue > clustering.minNeededElements) { - // To much elements - return false - } - } - - - return true - }, [this.currentBounds, source.layer.isDisplayed] - ) - - new ShowDataLayer( - { - features: source, - leafletMap: self.leafletMap, - layerToShow: source.layer.layerDef, - doShowLayer: doShowFeatures, - allElements: self.allElements, - selectedElement: self.selectedElement + if (!source.layer.isDisplayed.data) { + return false; } - ); - }, this - ); + + const bounds = self.currentBounds.data + if (bounds === undefined) { + // Map is not yet displayed + return false; + } + + if (!sourceBBox.data.overlapsWith(bounds)) { + // Not within range -> features are hidden + return false + } + + + if (z < source.layer.layerDef.minzoom) { + // Layer is always hidden for this zoom level + return false; + } + + if (z > clustering.maxZoom) { + return true + } + + if (f.length > clustering.minNeededElements) { + // This tile alone already has too much features + return false + } + + let [tileZ, tileX, tileY] = Tiles.tile_from_index(source.tileIndex); + if (tileZ >= z) { + + while (tileZ > z) { + tileZ-- + tileX = Math.floor(tileX / 2) + tileY = Math.floor(tileY / 2) + } + + if (clusterCounter.getTile(Tiles.tile_index(tileZ, tileX, tileY))?.totalValue > clustering.minNeededElements) { + // To much elements + return false + } + } + + + return true + }, [self.currentBounds, source.layer.isDisplayed, sourceBBox] + ) + + new ShowDataLayer( + { + features: source, + leafletMap: self.leafletMap, + layerToShow: source.layer.layerDef, + doShowLayer: doShowFeatures, + selectedElement: self.selectedElement, + state: self, + popup: (tags, layer) => new FeatureInfoBox(tags, layer, self) + } + ) + } + + + this.featurePipeline = new FeaturePipeline(registerSource, this, {handleRawFeatureSource: registerRaw}); + this.metatagRecalculator = new MetaTagRecalculator(this, this.featurePipeline) + this.metatagRecalculator.registerSource(this.currentView, true) + + sourcesToRegister.forEach(source => self.metatagRecalculator.registerSource(source)) + new SelectedFeatureHandler(Hash.hash, this) this.AddClusteringToMap(this.leafletMap) @@ -109,11 +142,13 @@ export default class FeaturePipelineState extends MapState { */ public AddClusteringToMap(leafletMap: UIEventSource) { const clustering = this.layoutToUse.clustering + const self = this; new ShowDataLayer({ features: this.featureAggregator.getCountsForZoom(clustering, this.locationControl, clustering.minNeededElements), leafletMap: leafletMap, layerToShow: ShowTileInfo.styling, - enablePopups: this.featureSwitchIsDebugging.data, + popup: this.featureSwitchIsDebugging.data ? (tags, layer) => new FeatureInfoBox(tags, layer, self) : undefined, + state: this }) } diff --git a/Logic/State/FeatureSwitchState.ts b/Logic/State/FeatureSwitchState.ts index 32aca82949..787d6a4eed 100644 --- a/Logic/State/FeatureSwitchState.ts +++ b/Logic/State/FeatureSwitchState.ts @@ -16,10 +16,10 @@ export default class FeatureSwitchState { public readonly featureSwitchUserbadge: UIEventSource; public readonly featureSwitchSearch: UIEventSource; - public readonly featureSwitchBackgroundSlection: UIEventSource; + public readonly featureSwitchBackgroundSelection: UIEventSource; public readonly featureSwitchAddNew: UIEventSource; public readonly featureSwitchWelcomeMessage: UIEventSource; - public readonly featureSwitchIframePopoutEnabled: UIEventSource; + public readonly featureSwitchExtraLinkEnabled: UIEventSource; public readonly featureSwitchMoreQuests: UIEventSource; public readonly featureSwitchShareScreen: UIEventSource; public readonly featureSwitchGeolocation: UIEventSource; @@ -72,7 +72,7 @@ export default class FeatureSwitchState { (layoutToUse) => layoutToUse?.enableSearch ?? true, "Disables/Enables the search bar" ); - this.featureSwitchBackgroundSlection = featSw( + this.featureSwitchBackgroundSelection = featSw( "fs-background", (layoutToUse) => layoutToUse?.enableBackgroundLayerSelection ?? true, "Disables/Enables the background layer control" @@ -81,7 +81,7 @@ export default class FeatureSwitchState { this.featureSwitchFilter = featSw( "fs-filter", (layoutToUse) => layoutToUse?.enableLayers ?? true, - "Disables/Enables the filter" + "Disables/Enables the filter view" ); this.featureSwitchAddNew = featSw( "fs-add-new", @@ -93,10 +93,10 @@ export default class FeatureSwitchState { () => true, "Disables/enables the help menu or welcome message" ); - this.featureSwitchIframePopoutEnabled = featSw( + this.featureSwitchExtraLinkEnabled = featSw( "fs-iframe-popout", - (layoutToUse) => layoutToUse?.enableIframePopout, - "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)" + _ => true, + "Disables/Enables the extraLink button. By default, 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 or another extraLink button is enabled)" ); this.featureSwitchMoreQuests = featSw( "fs-more-quests", @@ -146,17 +146,17 @@ export default class FeatureSwitchState { this.featureSwitchIsTesting = QueryParameters.GetBooleanQueryParameter( "test", - "" + testingDefaultValue, + testingDefaultValue, "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" ) this.featureSwitchIsDebugging = QueryParameters.GetBooleanQueryParameter( "debug", - "false", + false, "If true, shows some extra debugging help such as all the available tags on every object" ) - this.featureSwitchFakeUser = QueryParameters.GetBooleanQueryParameter("fake-user", "false", + this.featureSwitchFakeUser = QueryParameters.GetBooleanQueryParameter("fake-user", false, "If true, 'dryrun' mode is activated and a fake user account is loaded") diff --git a/Logic/State/MapState.ts b/Logic/State/MapState.ts index 319c3547a4..32aba550d6 100644 --- a/Logic/State/MapState.ts +++ b/Logic/State/MapState.ts @@ -3,21 +3,21 @@ import {UIEventSource} from "../UIEventSource"; import BaseLayer from "../../Models/BaseLayer"; import LayoutConfig from "../../Models/ThemeConfig/LayoutConfig"; import AvailableBaseLayers from "../Actors/AvailableBaseLayers"; -import BackgroundLayerResetter from "../Actors/BackgroundLayerResetter"; 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"; +import {BBox} from "../BBox"; +import LayerConfig from "../../Models/ThemeConfig/LayerConfig"; /** * Contains all the leaflet-map related state @@ -45,6 +45,10 @@ export default class MapState extends UserRelatedState { lon: number; }> = new UIEventSource<{ lat: number; lon: number }>(undefined); + /** + * The bounds of the current map view + */ + public currentView: FeatureSourceForLayer & Tiled; /** * The location as delivered by the GPS */ @@ -55,7 +59,8 @@ export default class MapState extends UserRelatedState { */ public historicalUserLocations: FeatureSourceForLayer & Tiled; /** - * The number of seconds that the GPS-locations are stored in memory + * The number of seconds that the GPS-locations are stored in memory. + * Time in seconds */ public gpsLocationHistoryRetentionTime = new UIEventSource(7 * 24 * 60 * 60, "gps_location_retention") public historicalUserLocationsTrack: FeatureSourceForLayer & Tiled; @@ -69,7 +74,7 @@ export default class MapState extends UserRelatedState { /** - * WHich layers are enabled in the current theme + * Which layers are enabled in the current theme and what filters are applied onto them */ public filteredLayers: UIEventSource = new UIEventSource([], "filteredLayers"); /** @@ -78,39 +83,21 @@ export default class MapState extends UserRelatedState { public overlayToggles: { config: TilesourceConfig, isDisplayed: UIEventSource }[] - constructor(layoutToUse: LayoutConfig) { - super(layoutToUse); + constructor(layoutToUse: LayoutConfig, options?: { attemptLogin: true | boolean }) { + super(layoutToUse, options); this.availableBackgroundLayers = AvailableBaseLayers.AvailableLayersAt(this.locationControl); - this.backgroundLayer = this.backgroundLayerId.map( - (selectedId: string) => { - if (selectedId === undefined) { - return AvailableBaseLayers.osmCarto; - } - - const available = this.availableBackgroundLayers.data; - for (const layer of available) { - if (layer.id === selectedId) { - return layer; - } - } - return AvailableBaseLayers.osmCarto; - }, - [this.availableBackgroundLayers], - (layer) => layer.id - ); - - - /* - * Selects a different background layer if the background layer has no coverage at the current location - */ - new BackgroundLayerResetter( - this.backgroundLayer, - this.locationControl, - this.availableBackgroundLayers, - this.layoutToUse.defaultBackgroundId - ); + let defaultLayer = AvailableBaseLayers.osmCarto + const available = this.availableBackgroundLayers.data; + for (const layer of available) { + if (this.backgroundLayerId.data === layer.id) { + defaultLayer = layer; + } + } + const self = this + this.backgroundLayer = new UIEventSource(defaultLayer) + this.backgroundLayer.addCallbackAndRunD(layer => self.backgroundLayerId.setData(layer.id)) const attr = new Attribution( this.locationControl, @@ -130,10 +117,12 @@ export default class MapState extends UserRelatedState { }) - this.overlayToggles = this.layoutToUse.tileLayerSources.filter(c => c.name !== undefined).map(c => ({ + this.overlayToggles = this.layoutToUse?.tileLayerSources + ?.filter(c => c.name !== undefined) + ?.map(c => ({ config: c, - isDisplayed: QueryParameters.GetBooleanQueryParameter("overlay-" + c.id, "" + c.defaultState, "Wether or not the overlay " + c.id + " is shown") - })) + isDisplayed: QueryParameters.GetBooleanQueryParameter("overlay-" + c.id, c.defaultState, "Wether or not the overlay " + c.id + " is shown") + })) ?? [] this.filteredLayers = this.InitializeFilteredLayers() @@ -143,6 +132,9 @@ export default class MapState extends UserRelatedState { this.initHomeLocation() this.initGpsLocation() this.initUserLocationTrail() + this.initCurrentView() + + new TitleHandler(this); } public AddAllOverlaysToMap(leafletMap: UIEventSource) { @@ -152,7 +144,7 @@ export default class MapState extends UserRelatedState { initialized.add(overlayToggle.config) } - for (const tileLayerSource of this.layoutToUse.tileLayerSources) { + for (const tileLayerSource of this.layoutToUse?.tileLayerSources ?? []) { if (initialized.has(tileLayerSource)) { continue } @@ -163,34 +155,65 @@ export default class MapState extends UserRelatedState { private lockBounds() { const layout = this.layoutToUse; - if (layout.lockLocation) { - if (layout.lockLocation === true) { - const tile = Tiles.embedded_tile( - layout.startLat, - layout.startLon, - layout.startZoom - 1 - ); - const bounds = Tiles.tile_bounds(tile.z, tile.x, tile.y); - // We use the bounds to get a sense of distance for this zoom level - const latDiff = bounds[0][0] - bounds[1][0]; - const lonDiff = bounds[0][1] - bounds[1][1]; - layout.lockLocation = [ - [layout.startLat - latDiff, layout.startLon - lonDiff], - [layout.startLat + latDiff, layout.startLon + lonDiff], - ]; - } - console.warn("Locking the bounds to ", layout.lockLocation); - this.leafletMap.addCallbackAndRunD(map => { - // @ts-ignore - map.setMaxBounds(layout.lockLocation); - map.setMinZoom(layout.startZoom); - }) + if (!layout?.lockLocation) { + return; } + console.warn("Locking the bounds to ", layout.lockLocation); + this.mainMapObject.installBounds( + new BBox(layout.lockLocation), + this.featureSwitchIsTesting.data + ) + } + + private initCurrentView() { + let currentViewLayer: FilteredLayer = this.filteredLayers.data.filter(l => l.layerDef.id === "current_view")[0] + + if (currentViewLayer === undefined) { + // This layer is not needed by the theme and thus unloaded + return; + } + + + let i = 0 + const self = this; + const features: UIEventSource<{ feature: any, freshness: Date }[]> = this.currentBounds.map(bounds => { + if (bounds === undefined) { + return [] + } + i++ + const feature = { + freshness: new Date(), + feature: { + type: "Feature", + properties: { + id: "current_view-" + i, + "current_view": "yes", + "zoom": "" + self.locationControl.data.zoom + }, + geometry: { + type: "Polygon", + coordinates: [[ + [bounds.maxLon, bounds.maxLat], + [bounds.minLon, bounds.maxLat], + [bounds.minLon, bounds.minLat], + [bounds.maxLon, bounds.minLat], + [bounds.maxLon, bounds.maxLat], + ]] + } + } + } + return [feature] + }) + + 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)); } @@ -199,11 +222,11 @@ export default class MapState extends UserRelatedState { const now = new Date().getTime() features.data = features.data .map(ff => ({feature: ff.feature, freshness: new Date(ff.freshness)})) - .filter(ff => (now - ff.freshness.getTime()) < this.gpsLocationHistoryRetentionTime.data) + .filter(ff => (now - ff.freshness.getTime()) < 1000 * this.gpsLocationHistoryRetentionTime.data) features.ping() const self = this; let i = 0 - this.currentUserLocation.features.addCallbackAndRunD(([location]) => { + this.currentUserLocation?.features?.addCallbackAndRunD(([location]) => { if (location === undefined) { return; } @@ -217,7 +240,7 @@ export default class MapState extends UserRelatedState { let timeDiff = Number.MAX_VALUE // in seconds const olderLocation = features.data[features.data.length - 2] if (olderLocation !== undefined) { - timeDiff = (previousLocation.freshness.getTime() - olderLocation.freshness.getTime()) / 1000 + timeDiff = (new Date(previousLocation.freshness).getTime() - new Date(olderLocation.freshness).getTime()) / 1000 } if (d < 20 && timeDiff < 60) { // Do not append changes less then 20m - it's probably noise anyway @@ -234,8 +257,10 @@ 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); - this.changes.useLocationHistory(this) + if (gpsLayerDef !== undefined) { + this.historicalUserLocations = new SimpleFeatureSource(gpsLayerDef, Tiles.tile_index(0, 0, 0), features); + this.changes.setHistoricalUserLocations(this.historicalUserLocations) + } const asLine = features.map(allPoints => { @@ -263,7 +288,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() { @@ -300,55 +327,82 @@ 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() { + private getPref(key: string, layer: LayerConfig): UIEventSource { + const pref = this.osmConnection + .GetPreference(key) + .map(v => { + if(v === undefined){ + return undefined + } + return v === "true"; + }, [], b => { + if(b === undefined){ + return undefined + } + return "" + b; + }) + pref.setData(layer.shownByDefault) + return pref + } + private InitializeFilteredLayers() { const layoutToUse = this.layoutToUse; - const empty = [] + if(layoutToUse === undefined){ + return new UIEventSource([]) + } const flayers: FilteredLayer[] = []; for (const layer of layoutToUse.layers) { let isDisplayed: UIEventSource - if (layoutToUse.id === personal.id) { - isDisplayed = this.osmConnection.GetPreference("personal-theme-layer-" + layer.id + "-enabled") - .map(value => value === "yes", [], enabled => { - return enabled ? "yes" : ""; - }) + if (layer.syncSelection === "local") { + isDisplayed = LocalStorageSource.GetParsed(layoutToUse.id + "-layer-" + layer.id + "-enabled", layer.shownByDefault) + } else if (layer.syncSelection === "theme-only") { + isDisplayed = this.getPref(layoutToUse.id+ "-layer-" + layer.id + "-enabled", layer) + } else if (layer.syncSelection === "global") { + isDisplayed = this.getPref("layer-" + layer.id + "-enabled", layer) } else { - isDisplayed = QueryParameters.GetBooleanQueryParameter( - "layer-" + layer.id, - "true", - "Wether or not layer " + layer.id + " is shown" - ) + isDisplayed = QueryParameters.GetBooleanQueryParameter("layer-" + layer.id, layer.shownByDefault, "Wether or not layer "+layer.id+" is shown") } - const flayer = { + + + 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 = filters ?? [] - return 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); } + + for (const layer of layoutToUse.layers) { + if (layer.filterIsSameAs === undefined) { + continue + } + const toReuse = flayers.find(l => l.layerDef.id === layer.filterIsSameAs) + if (toReuse === undefined) { + throw "Error in layer " + layer.id + ": it defines that it should be use the filters of " + layer.filterIsSameAs + ", but this layer was not loaded" + } + console.warn("Linking filter and isDisplayed-states of " + layer.id + " and " + layer.filterIsSameAs) + const selfLayer = flayers.findIndex(l => l.layerDef.id === layer.id) + flayers[selfLayer] = { + isDisplayed: toReuse.isDisplayed, + layerDef: layer, + appliedFilters: toReuse.appliedFilters + }; + } + return new UIEventSource(flayers); } diff --git a/Logic/State/UserRelatedState.ts b/Logic/State/UserRelatedState.ts index 19d1eba858..6d6f8ae892 100644 --- a/Logic/State/UserRelatedState.ts +++ b/Logic/State/UserRelatedState.ts @@ -3,15 +3,14 @@ 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"; import ElementsState from "./ElementsState"; import SelectedElementTagsUpdater from "../Actors/SelectedElementTagsUpdater"; -import StaticFeatureSource from "../FeatureSource/Sources/StaticFeatureSource"; -import FeatureSource from "../FeatureSource/FeatureSource"; -import {Feature} from "@turf/turf"; +import {Changes} from "../Osm/Changes"; +import ChangeToElementsActor from "../Actors/ChangeToElementsActor"; +import PendingChangesUploader from "../Actors/PendingChangesUploader"; /** * The part of the state which keeps track of user-related stuff, e.g. the OSM-connection, @@ -24,6 +23,10 @@ export default class UserRelatedState extends ElementsState { The user credentials */ public osmConnection: OsmConnection; + /** + THe change handler + */ + public changes: Changes; /** * The key for mangrove */ @@ -33,29 +36,28 @@ export default class UserRelatedState extends ElementsState { */ public favouriteLayers: UIEventSource; - /** - * WHich other themes the user previously visited - */ - public installedThemes: UIEventSource<{ layout: LayoutConfig; definition: string }[]>; - - - constructor(layoutToUse: LayoutConfig) { + constructor(layoutToUse: LayoutConfig, options?: { attemptLogin: true | boolean }) { super(layoutToUse); this.osmConnection = new OsmConnection({ - changes: this.changes, - dryRun: this.featureSwitchIsTesting.data, + dryRun: this.featureSwitchIsTesting, fakeUser: this.featureSwitchFakeUser.data, - allElements: this.allElements, oauth_token: QueryParameters.GetQueryParameter( "oauth_token", undefined, "Used to complete the login" ), - layoutName: layoutToUse?.id, - osmConfiguration: <'osm' | 'osm-test'>this.featureSwitchApiURL.data + osmConfiguration: <'osm' | 'osm-test'>this.featureSwitchApiURL.data, + attemptLogin: options?.attemptLogin }) + + this.changes = new Changes(this, layoutToUse?.isLeftRightSensitive() ?? false) + + + new ChangeToElementsActor(this.changes, this.allElements) + new PendingChangesUploader(this.changes, this.selectedElement); + this.mangroveIdentity = new MangroveIdentity( this.osmConnection.GetLongPreference("identity", "mangrove") ); @@ -71,9 +73,18 @@ export default class UserRelatedState extends ElementsState { }) } - this.installedThemes = new InstalledThemes( - this.osmConnection - ).installedThemes; + if (this.layoutToUse !== undefined && !this.layoutToUse.official) { + console.log("Marking unofficial theme as visited") + this.osmConnection.GetLongPreference("unofficial-theme-" + this.layoutToUse.id) + .setData(JSON.stringify({ + id: this.layoutToUse.id, + icon: this.layoutToUse.icon, + title: this.layoutToUse.title.translations, + shortDescription: this.layoutToUse.shortDescription.translations, + definition: this.layoutToUse["definition"] + })) + } + // Important: the favourite layers are initialized _after_ the installed themes, as these might contain an installedTheme this.favouriteLayers = LocalStorageSource.Get("favouriteLayers") @@ -84,7 +95,6 @@ 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 a5161b90fd..3a4a8e20f9 100644 --- a/Logic/Tags/And.ts +++ b/Logic/Tags/And.ts @@ -59,7 +59,7 @@ export class And extends TagsFilter { } asHumanString(linkToWiki: boolean, shorten: boolean, properties) { - return this.and.map(t => t.asHumanString(linkToWiki, shorten, properties)).join("&"); + return this.and.map(t => t.asHumanString(linkToWiki, shorten, properties)).filter(x => x !== "").join("&"); } isUsableAsAnswer(): boolean { @@ -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..36979f71b9 100644 --- a/Logic/Tags/ComparingTag.ts +++ b/Logic/Tags/ComparingTag.ts @@ -39,4 +39,8 @@ export default class ComparingTag implements TagsFilter { 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..341cfc030a 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..53357d6047 100644 --- a/Logic/Tags/RegexTag.ts +++ b/Logic/Tags/RegexTag.ts @@ -10,6 +10,13 @@ export class RegexTag extends TagsFilter { constructor(key: string | RegExp, value: RegExp | string, invert: boolean = false) { super(); this.key = key; + if (typeof value === "string") { + if (value.indexOf("^") < 0 && value.indexOf("$") < 0) { + value = "^" + value + "$" + } + value = new RegExp(value) + } + this.value = value; this.invert = invert; this.matchesEmpty = RegexTag.doesMatch("", this.value); @@ -109,4 +116,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 567693c78e..9e7fb2effa 100644 --- a/Logic/Tags/SubstitutingTag.ts +++ b/Logic/Tags/SubstitutingTag.ts @@ -12,13 +12,15 @@ import {TagsFilter} from "./TagsFilter"; export default class SubstitutingTag implements TagsFilter { private readonly _key: string; private readonly _value: string; + private readonly _invert: boolean - constructor(key: string, value: string) { + constructor(key: string, value: string, invert = false) { this._key = key; this._value = value; + this._invert = invert } - public static substituteString(template: string, dict: any): string { + private static substituteString(template: string, dict: any): string { for (const k in dict) { template = template.replace(new RegExp("\\{" + k + "\\}", 'g'), dict[k]) } @@ -26,7 +28,7 @@ export default class SubstitutingTag implements TagsFilter { } asHumanString(linkToWiki: boolean, shorten: boolean, properties) { - return this._key + "=" + SubstitutingTag.substituteString(this._value, properties); + return this._key + (this._invert ? '!' : '') + "=" + SubstitutingTag.substituteString(this._value, properties); } asOverpass(): string[] { @@ -37,11 +39,11 @@ export default class SubstitutingTag implements TagsFilter { if (!(other instanceof SubstitutingTag)) { return false; } - return other._key === this._key && other._value === this._value; + return other._key === this._key && other._value === this._value && other._invert === this._invert; } isUsableAsAnswer(): boolean { - return true; + return !this._invert; } matchesProperties(properties: any): boolean { @@ -50,7 +52,7 @@ export default class SubstitutingTag implements TagsFilter { return false; } const expectedValue = SubstitutingTag.substituteString(this._value, properties); - return value === expectedValue; + return (value === expectedValue) !== this._invert; } usedKeys(): string[] { @@ -58,10 +60,17 @@ export default class SubstitutingTag implements TagsFilter { } asChange(properties: any): { k: string; v: string }[] { + 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 f2539e1bc6..d2fd818e37 100644 --- a/Logic/Tags/Tag.ts +++ b/Logic/Tags/Tag.ts @@ -41,11 +41,19 @@ export class Tag extends TagsFilter { return [`["${this.key}"="${this.value}"]`]; } - asHumanString(linkToWiki?: boolean, shorten?: boolean) { + asHumanString(linkToWiki?: boolean, shorten?: boolean, currentProperties?: any) { let v = this.value; if (shorten) { v = Utils.EllipsesAfter(v, 25); } + if (v === "" || v === undefined) { + // This tag will be removed if in the properties, so we indicate this with special rendering + if (currentProperties !== undefined && (currentProperties[this.key] ?? "") === "") { + // This tag is not present in the current properties, so this tag doesn't change anything + return "" + } + return "" + this.key + "" + } if (linkToWiki) { return `${this.key}` + `=` + @@ -75,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 dd54d011a3..927205fc16 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,22 @@ 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)) { + b = Utils.ParseDate(value).getTime() + if (isNaN(b)) { + return false + } + } return comparator(b, val) } return new ComparingTag(split[0], f, operator + val) @@ -212,7 +215,7 @@ export class TagUtils { } return new RegexTag( split[0], - new RegExp("^" + split[1] + "$"), + split[1], true ); } @@ -222,10 +225,14 @@ export class TagUtils { split[1] = "..*" } return new RegexTag( - new RegExp("^" + split[0] + "$"), - new RegExp("^" + split[1] + "$") + split[0], + split[1] ); } + if (tag.indexOf("!:=") >= 0) { + const split = Utils.SplitFirst(tag, "!:="); + return new SubstitutingTag(split[0], split[1], true); + } if (tag.indexOf(":=") >= 0) { const split = Utils.SplitFirst(tag, ":="); return new SubstitutingTag(split[0], split[1]); @@ -249,18 +256,21 @@ export class TagUtils { } return new RegexTag( split[0], - new RegExp("^" + split[1] + "$"), + split[1], true ); } 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] === "*") { split[1] = "..*" } return new RegexTag( split[0], - new RegExp("^" + split[1] + "$") + split[1] ); } if (tag.indexOf("=") >= 0) { @@ -275,6 +285,10 @@ export class TagUtils { throw `Error while parsing tag '${tag}' in ${context}: no key part and value part were found` } + + if(json.and !== undefined && json.or !== undefined){ + throw `Error while parsing a TagConfig: got an object where both 'and' and 'or' are defined`} + if (json.and !== undefined) { return new And(json.and.map(t => TagUtils.Tag(t, context))); } diff --git a/Logic/Tags/TagsFilter.ts b/Logic/Tags/TagsFilter.ts index da8fa94c17..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); + 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/UIEventSource.ts b/Logic/UIEventSource.ts index bb862a94a8..fad6e07374 100644 --- a/Logic/UIEventSource.ts +++ b/Logic/UIEventSource.ts @@ -11,6 +11,10 @@ export class UIEventSource { constructor(data: T, tag: string = "") { this.tag = tag; this.data = data; + if (tag === undefined || tag === "") { + const callstack = new Error().stack.split("\n") + this.tag = callstack[1] + } UIEventSource.allSources.push(this); } @@ -37,6 +41,12 @@ export class UIEventSource { source.addCallback((latestData) => { sink.setData(latestData?.data); + latestData.addCallback(data => { + if (source.data !== latestData) { + return true; + } + sink.setData(data) + }) }); for (const possibleSource of possibleSources ?? []) { @@ -220,9 +230,11 @@ export class UIEventSource { public ping(): void { let toDelete = undefined + let startTime = new Date().getTime() / 1000; for (const callback of this._callbacks) { if (callback(this.data) === true) { // This callback wants to be deleted + // Note: it has to return precisely true in order to avoid accidental deletions if (toDelete === undefined) { toDelete = [callback] } else { @@ -230,6 +242,10 @@ export class UIEventSource { } } } + let endTime = new Date().getTime() / 1000 + if ((endTime - startTime) > 500) { + console.trace("Warning: a ping of ", this.tag, " took more then 500ms; this is probably a performance issue") + } if (toDelete !== undefined) { for (const toDeleteElement of toDelete) { this._callbacks.splice(this._callbacks.indexOf(toDeleteElement), 1) @@ -271,22 +287,28 @@ export class UIEventSource { * @param f: The transforming function * @param extraSources: also trigger the update if one of these sources change * @param g: a 'backfunction to let the sync run in two directions. (data of the new UIEVEntSource, currentData) => newData + * @param allowUnregister: if set, the update will be halted if no listeners are registered */ public map(f: ((t: T) => J), extraSources: UIEventSource[] = [], - g: ((j: J, t: T) => T) = undefined): UIEventSource { + g: ((j: J, t: T) => T) = undefined, + allowUnregister = false): UIEventSource { const self = this; + const stack = new Error().stack.split("\n"); + const callee = stack[1] + const newSource = new UIEventSource( f(this.data), - "map(" + this.tag + ")" + "map(" + this.tag + ")@" + callee ); const update = function () { newSource.setData(f(self.data)); + return allowUnregister && newSource._callbacks.length === 0 } - this.addCallbackAndRun(update); + this.addCallback(update); for (const extraSource of extraSources) { extraSource?.addCallback(update); } @@ -304,8 +326,10 @@ export class UIEventSource { this.addCallback((latest) => otherSource.setData(latest)); const self = this; otherSource.addCallback((latest) => self.setData(latest)); - if (reverseOverride && otherSource.data !== undefined) { - this.setData(otherSource.data); + if (reverseOverride) { + if(otherSource.data !== undefined){ + this.setData(otherSource.data); + } } else if (this.data === undefined) { this.setData(otherSource.data); } else { diff --git a/Logic/Web/IdbLocalStorage.ts b/Logic/Web/IdbLocalStorage.ts new file mode 100644 index 0000000000..1a7ac4544e --- /dev/null +++ b/Logic/Web/IdbLocalStorage.ts @@ -0,0 +1,34 @@ +import {UIEventSource} from "../UIEventSource"; +import * as idb from "idb-keyval" +import {Utils} from "../../Utils"; + +/** + * UIEventsource-wrapper around indexedDB key-value + */ +export class IdbLocalStorage { + + + public static Get(key: string, options?: { defaultValue?: T, whenLoaded?: (t: T) => void }): UIEventSource { + const src = new UIEventSource(options?.defaultValue, "idb-local-storage:" + key) + if (Utils.runningFromConsole) { + return src; + } + idb.get(key).then(v => { + src.setData(v ?? options?.defaultValue); + if (options?.whenLoaded !== undefined) { + options?.whenLoaded(v) + } + }) + src.addCallback(v => idb.set(key, v)) + return src; + + } + + public static SetDirectly(key: string, value) { + idb.set(key, value) + } + + static GetDirectly(key: string) { + return idb.get(key) + } +} diff --git a/Logic/Web/MangroveReviews.ts b/Logic/Web/MangroveReviews.ts index 0362282480..328e6d6af6 100644 --- a/Logic/Web/MangroveReviews.ts +++ b/Logic/Web/MangroveReviews.ts @@ -1,6 +1,7 @@ import * as mangrove from 'mangrove-reviews' import {UIEventSource} from "../UIEventSource"; import {Review} from "./Review"; +import {Utils} from "../../Utils"; export class MangroveIdentity { public keypair: any = undefined; @@ -23,7 +24,7 @@ export class MangroveIdentity { }) }) try { - if ((mangroveIdentity.data ?? "") === "") { + if (!Utils.runningFromConsole && (mangroveIdentity.data ?? "") === "") { this.CreateIdentity(); } } catch (e) { diff --git a/Logic/Web/QueryParameters.ts b/Logic/Web/QueryParameters.ts index 6a34e46bbd..6dc084305a 100644 --- a/Logic/Web/QueryParameters.ts +++ b/Logic/Web/QueryParameters.ts @@ -4,38 +4,15 @@ import {UIEventSource} from "../UIEventSource"; import Hash from "./Hash"; import {Utils} from "../../Utils"; -import Title from "../../UI/Base/Title"; -import Combine from "../../UI/Base/Combine"; export class QueryParameters { + static defaults = {} + static documentation = {} private static order: string [] = ["layout", "test", "z", "lat", "lon"]; private static _wasInitialized: Set = new Set() private static knownSources = {}; private static initialized = false; - private static defaults = {} - - private static documentation = {} - private static QueryParamDocsIntro = "\n" + - "URL-parameters and URL-hash\n" + - "============================\n" + - "\n" + - "This document gives an overview of which URL-parameters can be used to influence MapComplete.\n" + - "\n" + - "What is a URL parameter?\n" + - "------------------------\n" + - "\n" + - "URL-parameters are extra parts of the URL used to set the state.\n" + - "\n" + - "For example, if the url is `https://mapcomplete.osm.be/cyclofix?lat=51.0&lon=4.3&z=5&test=true#node/1234`,\n" + - "the URL-parameters are stated in the part between the `?` and the `#`. There are multiple, all separated by `&`, namely:\n" + - "\n" + - "- The url-parameter `lat` is `51.0` in this instance\n" + - "- The url-parameter `lon` is `4.3` in this instance\n" + - "- The url-parameter `z` is `5` in this instance\n" + - "- The url-parameter `test` is `true` in this instance\n" + - "\n" + - "Finally, the URL-hash is the part after the `#`. It is `node/1234` in this case." public static GetQueryParameter(key: string, deflt: string, documentation?: string): UIEventSource { if (!this.initialized) { @@ -55,23 +32,10 @@ export class QueryParameters { return source; } - public static GetBooleanQueryParameter(key: string, deflt: string, documentation?: string): UIEventSource { - return QueryParameters.GetQueryParameter(key, deflt, documentation).map(str => str === "true", [], b => "" + b) + public static GetBooleanQueryParameter(key: string, deflt: boolean, documentation?: string): UIEventSource { + return QueryParameters.GetQueryParameter(key, ""+ deflt, documentation).map(str => str === "true", [], b => "" + b) } - public static GenerateQueryParameterDocs(): string { - const docs = [QueryParameters.QueryParamDocsIntro]; - for (const key in QueryParameters.documentation) { - const c = new Combine([ - new Title(key, 2), - QueryParameters.documentation[key], - QueryParameters.defaults[key] === undefined ? "No default value set" : `The default value is _${QueryParameters.defaults[key]}_` - - ]) - docs.push(c.AsMarkdown()) - } - return docs.join("\n\n"); - } public static wasInitialized(key: string): boolean { return QueryParameters._wasInitialized.has(key) @@ -107,10 +71,7 @@ export class QueryParameters { QueryParameters.knownSources[key] = source; } } - - window["mapcomplete_query_parameter_overview"] = () => { - console.log(QueryParameters.GenerateQueryParameterDocs()) - } + } private static Serialize() { diff --git a/Models/Constants.ts b/Models/Constants.ts index ec5e574a22..a8bec17f01 100644 --- a/Models/Constants.ts +++ b/Models/Constants.ts @@ -2,9 +2,9 @@ import {Utils} from "../Utils"; export default class Constants { - public static vNumber = "0.12.8"; + public static vNumber = "0.16.1"; + public static ImgurApiKey = '7070e7167f0a25a' - public static readonly mapillary_client_token_v3 = 'TXhLaWthQ1d4RUg0czVxaTVoRjFJZzowNDczNjUzNmIyNTQyYzI2' public static readonly mapillary_client_token_v4 = "MLY|4441509239301885|b40ad2d3ea105435bd40c7e76993ae85" public static defaultOverpassUrls = [ @@ -18,6 +18,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", "import_candidate", ...Constants.no_include] + + // The user journey states thresholds when a new feature gets unlocked public static userJourney = { moreScreenUnlock: 1, @@ -33,6 +41,7 @@ export default class Constants { addNewPointWithUnreadMessagesUnlock: 500, minZoomLevelToAddNewPoints: (Constants.isRetina() ? 18 : 19), + importHelperUnlock: 5000 }; /** * Used by 'PendingChangesUploader', which waits this amount of seconds to upload changes. @@ -45,13 +54,14 @@ export default class Constants { * The point closest to the changed feature will be considered and this distance will be tracked. * ALl these distances are used to calculate a nearby-score */ - static nearbyVisitTime: number= 30 * 60; + static nearbyVisitTime: number = 30 * 60; /** * If a user makes a change, the distance to the changed object is calculated. * If a user makes multiple changes, all these distances are put into multiple bins, depending on this distance. * For every bin, the totals are uploaded as metadata */ - static distanceToChangeObjectBins = [25,50,100,500,1000,5000, Number.MAX_VALUE] + static distanceToChangeObjectBins = [25, 50, 100, 500, 1000, 5000, Number.MAX_VALUE] + static themeOrder = ["personal", "cyclofix", "waste" , "etymology", "food","cafes_and_pubs", "playgrounds", "hailhydrant", "toilets", "aed", "bookcases"]; private static isRetina(): boolean { if (Utils.runningFromConsole) { diff --git a/Models/FilteredLayer.ts b/Models/FilteredLayer.ts index f57cea8919..6890915f8d 100644 --- a/Models/FilteredLayer.ts +++ b/Models/FilteredLayer.ts @@ -1,9 +1,14 @@ 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/Conversion.ts b/Models/ThemeConfig/Conversion/Conversion.ts new file mode 100644 index 0000000000..051f004652 --- /dev/null +++ b/Models/ThemeConfig/Conversion/Conversion.ts @@ -0,0 +1,183 @@ +import {TagRenderingConfigJson} from "../Json/TagRenderingConfigJson"; +import {LayerConfigJson} from "../Json/LayerConfigJson"; +import {Utils} from "../../../Utils"; + +export interface DesugaringContext { + tagRenderings: Map + sharedLayers: Map +} + +export abstract class Conversion { + public readonly modifiedAttributes: string[]; + protected readonly doc: string; + public readonly name: string + + constructor(doc: string, modifiedAttributes: string[] = [], name: string) { + this.modifiedAttributes = modifiedAttributes; + this.doc = doc + "\n\nModified attributes are\n" + modifiedAttributes.join(", "); + this.name = name + } + + public static strict(fixed: { errors?: string[], warnings?: string[], information?: string[], result?: T }): T { + if (fixed?.errors !== undefined && fixed?.errors?.length > 0) { + throw fixed.errors.join("\n\n"); + } + fixed.information?.forEach(i => console.log(" ", i)) + const yellow = (s) => "\x1b[33m"+s+"\x1b[0m" + const red = s => '\x1b[31m'+s+'\x1b[0m' + + fixed.warnings?.forEach(w => console.warn(red(` `), yellow (w))) + return fixed.result; + } + + public convertStrict(json: TIn, context: string): TOut { + const fixed = this.convert(json, context) + return DesugaringStep.strict(fixed) + } + + abstract convert(json: TIn, context: string): { result: TOut, errors?: string[], warnings?: string[], information?: string[] } + + public convertAll(jsons: TIn[], context: string): { result: TOut[], errors: string[], warnings: string[], information?: string[] } { + if(jsons === undefined){ + throw "convertAll received undefined - don't do this (at "+context+")" + } + const result = [] + const errors = [] + const warnings = [] + const information = [] + for (let i = 0; i < jsons.length; i++) { + const json = jsons[i]; + const r = this.convert(json, context + "[" + i + "]") + result.push(r.result) + errors.push(...r.errors ?? []) + warnings.push(...r.warnings ?? []) + information.push(...r.information ?? []) + } + return { + result, + errors, + warnings, + information + } + } + +} + +export abstract class DesugaringStep extends Conversion { +} + +export class OnEvery extends DesugaringStep { + private readonly key: string; + private readonly step: DesugaringStep; + + constructor(key: string, step: DesugaringStep) { + super("Applies " + step.name + " onto every object of the list `key`", [key], "OnEvery("+step.name+")"); + this.step = step; + this.key = key; + } + + convert(json: T, context: string): { result: T; errors?: string[]; warnings?: string[], information?: string[] } { + json = {...json} + const step = this.step + const key = this.key; + const r = step.convertAll((json[key]), context + "." + key) + json[key] = r.result + return { + ...r, + result: json, + }; + } +} + +export class OnEveryConcat extends DesugaringStep { + private readonly key: string; + private readonly step: Conversion; + + constructor(key: string, step: Conversion) { + super(`Applies ${step.name} onto every object of the list \`${key}\`. The results are concatenated and used as new list`, [key], + "OnEvery("+key+").Concat("+step.name+")"); + this.step = step; + this.key = key; + } + + convert(json: T, context: string): { result: T; errors?: string[]; warnings?: string[], information?: string[] } { + json = {...json} + const step = this.step + const key = this.key; + const values = json[key] + if (values === undefined) { + // Move on - nothing to see here! + return { + result: json, + } + } + const r = step.convertAll((values), context + "." + key) + const vals: X[][] = r.result + json[key] = [].concat(...vals) + return { + ...r, + result: json, + }; + + } +} + +export 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.name).join(", "), + Utils.Dedup([].concat(...steps.map(step => step.modifiedAttributes))), + "Fuse of "+steps.map(s => s.name).join(", ") + ); + this.steps = Utils.NoNull(steps); + } + + convert(json: T, context: string): { result: T; errors: string[]; warnings: string[], information: string[] } { + const errors = [] + const warnings = [] + const information = [] + for (let i = 0; i < this.steps.length; i++) { + const step = this.steps[i]; + let r = step.convert(json, "While running step " +step.name + ": " + context) + errors.push(...r.errors ?? []) + warnings.push(...r.warnings ?? []) + information.push(...r.information ?? []) + json = r.result + if (errors.length > 0) { + break; + } + } + return { + result: json, + errors, + warnings, + information + }; + } + +} + +export 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", [], "SetDefault of "+key); + this.key = key; + this.value = value; + this._overrideEmptyString = overrideEmptyString; + } + + convert(json: T, context: string): { result: T } { + if (json[this.key] === undefined || (json[this.key] === "" && this._overrideEmptyString)) { + json = {...json} + json[this.key] = this.value + } + + return { + result: json + }; + } +} \ 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..49d7af5b9e --- /dev/null +++ b/Models/ThemeConfig/Conversion/CreateNoteImportLayer.ts @@ -0,0 +1,188 @@ +import {Conversion} from "./Conversion"; +import LayerConfig from "../LayerConfig"; +import {LayerConfigJson} from "../Json/LayerConfigJson"; +import Translations from "../../../UI/i18n/Translations"; +import PointRenderingConfigJson from "../Json/PointRenderingConfigJson"; +import {Translation} from "../../../UI/i18n/Translation"; + +export default class CreateNoteImportLayer extends Conversion { + /** + * A closed note is included if it is less then 'n'-days closed + * @private + */ + private readonly _includeClosedNotesDays: number; + + constructor(includeClosedNotesDays = 0) { + 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"), [],"CreateNoteImportLayer") + this._includeClosedNotesDays = includeClosedNotesDays; + } + + convert(layerJson: LayerConfigJson, context: string): { result: LayerConfigJson } { + const t = Translations.t.importLayer; + + /** + * The note itself will contain `tags=k=v;k=v;k=v;... + * This must be matched with a regex. + * This is a simple JSON-object as how it'll be put into the layerConfigJson directly + */ + const isShownIfAny: any[] = [] + const layer = new LayerConfig(layerJson, "while constructing a note-import layer") + for (const preset of layer.presets) { + const mustMatchAll = [] + for (const tag of preset.tags) { + const key = tag.key + const value = tag.value + const condition = "_tags~(^|.*;)" + key + "\=" + value + "($|;.*)" + mustMatchAll.push(condition) + } + isShownIfAny.push({and: mustMatchAll}) + } + + const pointRenderings = (layerJson.mapRendering ?? []).filter(r => r !== null && r["location"] !== undefined); + const firstRender = (pointRenderings [0]) + if(firstRender === undefined){ + throw `Layer ${layerJson.id} does not have a pointRendering: `+context + } + const icon = firstRender.icon + const iconBadges = [] + const title = layer.presets[0].title + if (icon !== undefined) { + iconBadges.push({ + if: {and: []}, + then: icon + }) + } + + const importButton = {} + { + const translations = t.importButton.Subs({layerId: layer.id, title: layer.presets[0].title}).translations + for (const key in translations) { + importButton[key] = "{" + translations[key] + "}" + } + } + + function embed(prefix, translation: Translation, postfix) { + const result = {} + for (const language in translation.translations) { + result[language] = prefix + translation.translations[language] + postfix + } + return result + } + + const result: LayerConfigJson = { + "id": "note_import_" + layer.id, + // By disabling the name, the import-layers won't pollute the filter view "name": t.layerName.Subs({title: layer.title.render}).translations, + "description": t.description.Subs({title: layer.title.render}).translations, + "source": { + "osmTags": { + "and": [ + "id~*" + ] + }, + "geoJson": "https://api.openstreetmap.org/api/0.6/notes.json?limit=10000&closed=" + this._includeClosedNotesDays + "&bbox={x_min},{y_min},{x_max},{y_max}", + "geoJsonZoomLevel": 10, + "maxCacheAge": 0 + }, + "minzoom": Math.min(12, layerJson.minzoom - 2), + "title": { + "render": t.popupTitle.Subs({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] })()", + "_comments_count=feat.get('comments').length", + "_intro=(() => {const lines = feat.get('comments')[0].text.split('\\n'); lines.splice(feat.get('_trigger_index')-1, lines.length); return lines.filter(l => l !== '').join('
');})()", + "_tags=(() => {let lines = feat.properties['_first_comment'].split('\\n').map(l => l.trim()); lines.splice(0, feat.get('_trigger_index') + 1); lines = lines.filter(l => l != ''); return lines.join(';');})()" + ], + "isShown": { + "render": "no", + "mappings": [ + { + "if": "comments!~.*https://mapcomplete.osm.be.*", + "then": "no" + }, + { + "if": { + and: + ["_trigger_index~*", + {or: isShownIfAny} + ] + }, + "then": "yes" + } + ] + }, + "titleIcons": [ + { + "render": "" + } + ], + "tagRenderings": [ + { + "id": "Intro", + "render": "{_intro}" + }, + { + "id": "conversation", + "render": "{visualize_note_comments(comments,1)}", + condition: "_comments_count>1" + }, + { + "id": "import", + "render": importButton, + condition: "closed_at=" + }, + { + "id": "close_note_", + "render": embed( + "{close_note(", t.notFound.Subs({title}), ", ./assets/svg/close.svg, id, This feature does not exist)}"), + condition: "closed_at=" + }, + { + "id": "close_note_mapped", + "render": embed("{close_note(", t.alreadyMapped.Subs({title}), ", ./assets/svg/checkmark.svg, id, Already mapped)}"), + condition: "closed_at=" + }, + { + "id": "handled", + "render": t.importHandled.translations, + condition: "closed_at~*" + }, + { + "id": "comment", + "render": "{add_note_comment()}" + }, + { + "id": "add_image", + "render": "{add_image_to_note()}" + } + ], + "mapRendering": [ + { + "location": [ + "point" + ], + "icon": { + "render": "circle:white;help:black", + mappings: [{ + if: {or: ["closed_at~*", "_imported=yes"]}, + then: "circle:white;checkmark:black" + }] + }, + iconBadges, + "iconSize": "40,40,center" + } + ] + } + + + return { + result + }; + } + + +} \ No newline at end of file diff --git a/Models/ThemeConfig/Conversion/FixImages.ts b/Models/ThemeConfig/Conversion/FixImages.ts new file mode 100644 index 0000000000..0b8bb1de01 --- /dev/null +++ b/Models/ThemeConfig/Conversion/FixImages.ts @@ -0,0 +1,159 @@ +import {Conversion, DesugaringStep} from "./Conversion"; +import {LayoutConfigJson} from "../Json/LayoutConfigJson"; +import {Utils} from "../../../Utils"; +import * as metapaths from "../../../assets/layoutconfigmeta.json"; +import * as tagrenderingmetapaths from "../../../assets/tagrenderingconfigmeta.json"; + +export class ExtractImages extends Conversion { + private _isOfficial: boolean; + private _sharedTagRenderings: Map; + + private static readonly layoutMetaPaths = (metapaths["default"] ?? metapaths).filter(mp => mp.typeHint !== undefined && (mp.typeHint === "image" || mp.typeHint === "icon")) + private static readonly tagRenderingMetaPaths = (tagrenderingmetapaths["default"] ?? tagrenderingmetapaths).filter(trpath => trpath.typeHint === "rendered") + + + constructor(isOfficial: boolean, sharedTagRenderings: Map) { + super("Extract all images from a layoutConfig using the meta paths",[],"ExctractImages"); + this._isOfficial = isOfficial; + this._sharedTagRenderings = sharedTagRenderings; + } + + convert(json: LayoutConfigJson, context: string): { result: string[], errors: string[], warnings: string[] } { + const allFoundImages : string[] = [] + const errors = [] + const warnings = [] + for (const metapath of ExtractImages.layoutMetaPaths) { + const mightBeTr = Array.isArray(metapath.type) && metapath.type.some(t => t["$ref"] == "#/definitions/TagRenderingConfigJson") + const found = Utils.CollectPath(metapath.path, json) + if (mightBeTr) { + // We might have tagRenderingConfigs containing icons here + for (const el of found) { + const path = el.path + const foundImage = el.leaf; + if (typeof foundImage === "string") { + + if(foundImage == ""){ + warnings.push(context+"."+path.join(".")+" Found an empty image") + } + + if(this._sharedTagRenderings?.has(foundImage)){ + // This is not an image, but a shared tag rendering + continue + } + + allFoundImages.push(foundImage) + } else{ + // This is a tagRendering where every rendered value might be an icon! + for (const trpath of ExtractImages.tagRenderingMetaPaths) { + const fromPath = Utils.CollectPath(trpath.path, foundImage) + for (const img of fromPath) { + if (typeof img.leaf !== "string") { + (this._isOfficial ? errors: warnings).push(context+"."+img.path.join(".")+": found an image path that is not a string: " + JSON.stringify(img.leaf)) + } + } + allFoundImages.push(...fromPath.map(i => i.leaf).filter(i => typeof i=== "string")) + for (const pathAndImg of fromPath) { + if(pathAndImg.leaf === "" || pathAndImg.leaf["path"] == ""){ + warnings.push(context+[...path,...pathAndImg.path].join(".")+": Found an empty image at ") + } + } + } + + } + } + } else { + for (const foundElement of found) { + if(foundElement.leaf === ""){ + warnings.push(context+"."+foundElement.path.join(".")+" Found an empty image") + continue + } + allFoundImages.push(foundElement.leaf) + } + + } + } + + const splitParts = [].concat(...Utils.NoNull(allFoundImages) + .map(img => img["path"] ?? img) + .map(img => img.split(";"))) + .map(img => img.split(":")[0]) + .filter(img => img !== "") + return {result: Utils.Dedup(splitParts), errors, warnings}; + } + +} + +export class FixImages extends DesugaringStep { + private readonly _knownImages: Set; + + constructor(knownImages: Set) { + super("Walks over the entire theme and replaces images to the relative URL. Only works if the ID of the theme is an URL",[],"fixImages"); + this._knownImages = knownImages; + } + + convert(json: LayoutConfigJson, context: string): { result: LayoutConfigJson } { + let url: URL; + try { + url = new URL(json.id) + } catch (e) { + // Not a URL, we don't rewrite + return {result: json} + } + + const absolute = url.protocol + "//" + url.host + let relative = url.protocol + "//" + url.host + url.pathname + relative = relative.substring(0, relative.lastIndexOf("/")) + const self = this; + + function replaceString(leaf: string) { + if (self._knownImages.has(leaf)) { + return leaf; + } + if (leaf.startsWith("./")) { + return relative + leaf.substring(1) + } + if (leaf.startsWith("/")) { + return absolute + leaf + } + return leaf; + } + + json = Utils.Clone(json) + + let paths = metapaths["default"] ?? metapaths + let trpaths = tagrenderingmetapaths["default"] ?? tagrenderingmetapaths + + for (const metapath of paths) { + if (metapath.typeHint !== "image" && metapath.typeHint !== "icon") { + continue + } + const mightBeTr = Array.isArray(metapath.type) && metapath.type.some(t => t["$ref"] == "#/definitions/TagRenderingConfigJson") + Utils.WalkPath(metapath.path, json, (leaf, path) => { + if (typeof leaf === "string") { + return replaceString(leaf) + } + + if (mightBeTr) { + // We might have reached a tagRenderingConfig containing icons + // lets walk every rendered value and fix the images in there + for (const trpath of trpaths) { + if (trpath.typeHint !== "rendered") { + continue + } + Utils.WalkPath(trpath.path, leaf, (rendered => { + return replaceString(rendered) + })) + } + } + + + return leaf; + }) + } + + + return { + result: json + }; + } +} \ 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..c1bbcec37d --- /dev/null +++ b/Models/ThemeConfig/Conversion/LegacyJsonConvert.ts @@ -0,0 +1,167 @@ +import {LayoutConfigJson} from "../Json/LayoutConfigJson"; +import {Utils} from "../../../Utils"; +import LineRenderingConfigJson from "../Json/LineRenderingConfigJson"; +import {LayerConfigJson} from "../Json/LayerConfigJson"; +import {DesugaringStep, Fuse, OnEvery} from "./Conversion"; + +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"], + "UpdateLegacyLayer"); + } + + convert(json: LayerConfigJson, context: string): { result: LayerConfigJson; errors: string[]; warnings: string[] } { + const warnings = [] + if (typeof json === "string" || json["builtin"] !== undefined) { + // Reuse of an already existing layer; return as-is + return {result: json, errors: [], warnings: []} + } + 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 || tagRendering["rewrite"] !== 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"],"UpdateLegacyTheme"); + } + + convert(json: LayoutConfigJson, context: string): { result: LayoutConfigJson; errors: string[]; warnings: string[] } { + const oldThemeConfig = {...json} + + if(oldThemeConfig.socialImage === ""){ + delete oldThemeConfig.socialImage + } + + 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: [] + } + } + } + + oldThemeConfig.layers = Utils.NoNull(oldThemeConfig.layers) + delete oldThemeConfig["language"] + 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()) + ); + } +} + + diff --git a/Models/ThemeConfig/Conversion/PrepareLayer.ts b/Models/ThemeConfig/Conversion/PrepareLayer.ts new file mode 100644 index 0000000000..88fc0276e3 --- /dev/null +++ b/Models/ThemeConfig/Conversion/PrepareLayer.ts @@ -0,0 +1,309 @@ +import {Conversion, DesugaringContext, Fuse, OnEveryConcat, SetDefault} from "./Conversion"; +import {LayerConfigJson} from "../Json/LayerConfigJson"; +import {TagRenderingConfigJson} from "../Json/TagRenderingConfigJson"; +import {Utils} from "../../../Utils"; +import Translations from "../../../UI/i18n/Translations"; +import {Translation} from "../../../UI/i18n/Translation"; + +class ExpandTagRendering extends Conversion { + private readonly _state: DesugaringContext; + constructor(state: DesugaringContext) { + super("Converts a tagRenderingSpec into the full tagRendering", [],"ExpandTagRendering"); + this._state = state; + } + + convert(json: string | TagRenderingConfigJson | { builtin: string | string[]; override: any }, context: string): { result: TagRenderingConfigJson[]; errors: string[]; warnings: string[] } { + const errors = [] + const warnings = [] + + return { + result: this.convertUntilStable(json, warnings, errors, context), + errors, warnings + }; + } + + private lookup(name: string): TagRenderingConfigJson[] { + const state = this._state; + 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(tr: string | any, warnings: string[], errors: string[], ctx: string): TagRenderingConfigJson[] { + const state = this._state + if (tr === "questions") { + return [{ + id: "questions" + }] + } + + + if (typeof tr === "string") { + const lookup = this.lookup(tr); + if (lookup === undefined) { + warnings.push(ctx + "A literal rendering was detected: " + tr) + return [{ + render: tr, + id: tr.replace(/![a-zA-Z0-9]/g, "") + }] + } + return lookup + } + + 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(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(spec: string | any, warnings: string[], errors: string[], ctx: string): TagRenderingConfigJson[] { + const trs = this.convertOnce(spec, warnings, errors, ctx); + + const result = [] + for (const tr of trs) { + if (typeof tr === "string" || tr["builtin"] !== undefined) { + const stable = this.convertUntilStable(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 _expandSubTagRenderings; + + constructor(state: DesugaringContext) { + super( + "Converts a rewrite config for tagRenderings into the expanded form",[], + "ExpandGroupRewrite" + ); + this._expandSubTagRenderings = new ExpandTagRendering(state) + } + + convert( 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 | any)[][] }; + renderings: (string | { builtin: string; override: any } | TagRenderingConfigJson)[] + }>json; + + + { + const errors = [] + + if(!Array.isArray(config.rewrite.sourceString)){ + let extra = ""; + if(typeof config.rewrite.sourceString === "string"){ + extra=`
Try "sourceString": [ "${config.rewrite.sourceString}" ] instead (note the [ and ])` + } + const msg = context+"
Invalid format: a rewrite block is defined, but the 'sourceString' should be an array of strings, but it is a "+typeof config.rewrite.sourceString + extra + errors.push(msg) + } + + + const expectedLength = config.rewrite.sourceString.length + for (let i = 0; i < config.rewrite.into.length; i++){ + const targets = config.rewrite.into[i]; + if(!Array.isArray(targets)){ + errors.push(`${context}.rewrite.into[${i}] should be an array of values, but it is a `+typeof targets) + } else if(targets.length !== expectedLength){ + errors.push(`${context}.rewrite.into[${i}]:
The rewrite specified ${config.rewrite.sourceString} as sourcestring, which consists of ${expectedLength} values. The target ${JSON.stringify(targets)} has ${targets.length} items`) + if(typeof targets[0] !== "string"){ + errors.push(context+".rewrite.into["+i+"]: expected a string as first rewrite value values, but got "+targets[0]) + + } + } + } + + if (errors.length > 0) { + return { + errors, + warnings: [], + result: undefined + } + } + } + + const subRenderingsRes = <{ result: TagRenderingConfigJson[][], errors, warnings }> this._expandSubTagRenderings.convertAll(config.renderings, context); + const subRenderings: TagRenderingConfigJson[] = [].concat(...subRenderingsRes.result); + const errors = subRenderingsRes.errors; + const warnings = subRenderingsRes.warnings; + + + const rewrittenPerGroup = new Map() + + // The actual rewriting + const sourceStrings = config.rewrite.sourceString; + for (const targets of config.rewrite.into) { + const groupName = targets[0]; + if(typeof groupName !== "string"){ + throw "The first string of 'targets' should always be a string" + } + const trs: TagRenderingConfigJson[] = [] + + for (const tr of subRenderings) { + let rewritten = tr; + for (let i = 0; i < sourceStrings.length; i++) { + const source = sourceStrings[i] + const target = targets[i] // This is a string OR a translation + rewritten = this.prepConfig(source, target, rewritten) + } + rewritten.group = rewritten.group ?? groupName + trs.push(rewritten) + } + + 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; the tagrendering is: "+JSON.stringify(tr)) + } + }) + }) + + return { + result: [].concat(...Array.from(rewrittenPerGroup.values())), + errors, warnings + }; + } + + /* Used for left|right group creation and replacement. + * Every 'keyToRewrite' will be replaced with 'target' recursively. This substitution will happen in place in the object 'tr' */ + private prepConfig(keyToRewrite: string, target: string | any, tr: TagRenderingConfigJson): TagRenderingConfigJson { + + const isTranslation = typeof target !== "string" + + function replaceRecursive(transl: string | any) { + if (typeof transl === "string") { + // This is a simple string - we do a simple replace + return transl.replace(keyToRewrite, target) + } + if (transl.map !== undefined) { + // This is a list of items + return transl.map(o => replaceRecursive(o)) + } + + if (Translations.isProbablyATranslation(transl) && isTranslation) { + return Translations.T(transl).Fuse(new Translation(target), keyToRewrite).translations + } + + transl = {...transl} + for (const key in transl) { + transl[key] = replaceRecursive(transl[key]) + } + return transl + } + + return replaceRecursive(tr) + } +} + + +export class PrepareLayer extends Fuse { + constructor(state: DesugaringContext) { + super( + "Fully prepares and expands a layer for the LayerConfig.", + new OnEveryConcat("tagRenderings", new ExpandGroupRewrite(state)), + new OnEveryConcat("tagRenderings", new ExpandTagRendering(state)), + new SetDefault("titleIcons", ["defaults"]), + new OnEveryConcat("titleIcons", new ExpandTagRendering(state)) + ); + } +} \ No newline at end of file diff --git a/Models/ThemeConfig/Conversion/PrepareTheme.ts b/Models/ThemeConfig/Conversion/PrepareTheme.ts new file mode 100644 index 0000000000..d3fb215195 --- /dev/null +++ b/Models/ThemeConfig/Conversion/PrepareTheme.ts @@ -0,0 +1,447 @@ +import {Conversion, DesugaringContext, DesugaringStep, Fuse, OnEvery, OnEveryConcat, SetDefault} from "./Conversion"; +import {LayoutConfigJson} from "../Json/LayoutConfigJson"; +import {PrepareLayer} from "./PrepareLayer"; +import {LayerConfigJson} from "../Json/LayerConfigJson"; +import {Utils} from "../../../Utils"; +import Constants from "../../Constants"; +import {AllKnownLayouts} from "../../../Customizations/AllKnownLayouts"; +import CreateNoteImportLayer from "./CreateNoteImportLayer"; +import LayerConfig from "../LayerConfig"; +import {TagRenderingConfigJson} from "../Json/TagRenderingConfigJson"; +import {SubstitutedTranslation} from "../../../UI/SubstitutedTranslation"; +import DependencyCalculator from "../DependencyCalculator"; + +class SubstituteLayer extends Conversion<(string | LayerConfigJson), LayerConfigJson[]> { + private readonly _state: DesugaringContext; + constructor( + state: DesugaringContext, + ) { + super("Converts the identifier of a builtin layer into the actual layer, or converts a 'builtin' syntax with override in the fully expanded form", [],"SubstituteLayer"); + this._state = state; + } + + convert(json: string | LayerConfigJson, context: string): { result: LayerConfigJson[]; errors: string[], information?: string[] } { + const errors = [] + const information = [] + const state= this._state + function reportNotFound(name: string){ + const knownLayers = Array.from(state.sharedLayers.keys()) + const withDistance = knownLayers.map(lname => [lname, Utils.levenshteinDistance(name, lname)]) + withDistance.sort((a, b) => a[1] - b[1]) + const ids = withDistance.map(n => n[0]) + // Known builtin layers are "+.join(",")+"\n For more information, see " + errors.push(`${context}: The layer with name ${name} was not found as a builtin layer. Perhaps you meant ${ids[0]}, ${ids[1]} or ${ids[2]}? + For an overview of all available layers, refer to https://github.com/pietervdvn/MapComplete/blob/develop/Docs/BuiltinLayers.md`) + } + + + if (typeof json === "string") { + const found = state.sharedLayers.get(json) + if (found === undefined) { + reportNotFound(json) + return { + result: null, + errors, + } + } + return { + result: [found], + errors + } + } + + 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) { + reportNotFound(name) + 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"],)}`) + } + + if(json["hideTagRenderingsWithLabels"]){ + const hideLabels: Set = new Set(json["hideTagRenderingsWithLabels"]) + // These labels caused at least one deletion + const usedLabels : Set = new Set(); + const filtered = [] + for (const tr of found.tagRenderings) { + const labels = tr["labels"] + if(labels !== undefined){ + const forbiddenLabel = labels.findIndex(l => hideLabels.has(l)) + if(forbiddenLabel >= 0){ + usedLabels.add(labels[forbiddenLabel]) + information.push(context+": Dropping tagRendering "+tr["id"]+" as it has a forbidden label: "+labels[forbiddenLabel]) + continue + } + } + + if(hideLabels.has(tr["id"])){ + usedLabels.add(tr["id"]) + information.push(context+": Dropping tagRendering "+tr["id"]+" as its id is a forbidden label") + continue + } + + if(hideLabels.has(tr["group"])){ + usedLabels.add(tr["group"]) + information.push(context+": Dropping tagRendering "+tr["id"]+" as its group `"+tr["group"]+"` is a forbidden label") + continue + } + + filtered.push(tr) + } + const unused = Array.from(hideLabels).filter(l => !usedLabels.has(l)) + if(unused.length > 0){ + errors.push("This theme specifies that certain tagrenderings have to be removed based on forbidden layers. One or more of these layers did not match any tagRenderings and caused no deletions: "+unused.join(", ")+"\n This means that this label can be removed or that the original tagRendering that should be deleted does not have this label anymore") + } + found.tagRenderings = filtered + } + } + return { + result: layers, + errors, + information + } + + } + + return { + result: [json], + errors + }; + } + +} + +class AddDefaultLayers extends DesugaringStep { + private _state: DesugaringContext; + + constructor(state: DesugaringContext) { + super("Adds the default layers, namely: " + Constants.added_by_default.join(", "), ["layers"],"AddDefaultLayers"); + this._state = state; + } + + convert(json: LayoutConfigJson, context: string): { result: LayoutConfigJson; errors: string[]; warnings: string[] } { + const errors = [] + const warnings = [] + const state = this._state + json.layers = [...json.layers] + const alreadyLoaded = new Set(json.layers.map(l => l["id"])) + + 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") + } + if(alreadyLoaded.has(v.id)){ + warnings.push("Layout "+context+" already has a layer with name "+v.id+"; skipping inclusion of this builtin layer") + continue + } + json.layers.push(v) + } + + return { + result: json, + errors, + warnings + }; + } + +} + +class AddImportLayers extends DesugaringStep { + constructor() { + super("For every layer in the 'layers'-list, create a new layer which'll import notes. (Note that priviliged layers and layers which have a geojson-source set are ignored)", ["layers"],"AddImportLayers"); + } + + convert(json: LayoutConfigJson, context: string): { result: LayoutConfigJson; errors: string[] } { + const errors = [] + + json = {...json} + const allLayers: LayerConfigJson[] = json.layers; + json.layers = [...json.layers] + + + if(json.enableNoteImports ?? true) { + const creator = new CreateNoteImportLayer() + for (let i1 = 0; i1 < allLayers.length; i1++) { + const layer = allLayers[i1]; + if (Constants.priviliged_layers.indexOf(layer.id) >= 0) { + // Priviliged layers are skipped + continue + } + + if (layer.source["geoJson"] !== undefined) { + // Layer which don't get their data from OSM are skipped + continue + } + + if (layer.title === undefined || layer.name === undefined) { + // Anonymous layers and layers without popup are skipped + continue + } + + if (layer.presets === undefined || layer.presets.length == 0) { + // A preset is needed to be able to generate a new point + continue; + } + + try { + + const importLayerResult = creator.convert(layer, context + ".(noteimportlayer)[" + i1 + "]") + if (importLayerResult.result !== undefined) { + json.layers.push(importLayerResult.result) + } + } catch (e) { + errors.push("Could not generate an import-layer for " + layer.id + " due to " + e) + } + } + } + + return { + errors, + result: json + }; + } +} + + +export class AddMiniMap extends DesugaringStep { + private readonly _state: DesugaringContext; + constructor(state: DesugaringContext, ) { + super("Adds a default 'minimap'-element to the tagrenderings if none of the elements define such a minimap", ["tagRenderings"],"AddMiniMap"); + this._state = state; + } + + /** + * Returns true if this tag rendering has a minimap in some language. + * Note: this minimap can be hidden by conditions + */ + static hasMinimap(renderingConfig: TagRenderingConfigJson): boolean { + const translations: any[] = Utils.NoNull([renderingConfig.render, ...(renderingConfig.mappings ?? []).map(m => m.then)]); + for (let translation of translations) { + if (typeof translation == "string") { + translation = {"*": translation} + } + + for (const key in translation) { + if (!translation.hasOwnProperty(key)) { + continue + } + const template = translation[key] + const parts = SubstitutedTranslation.ExtractSpecialComponents(template) + const hasMiniMap = parts.filter(part => part.special !== undefined).some(special => special.special.func.funcName === "minimap") + if (hasMiniMap) { + return true; + } + } + } + return false; + } + + convert(layerConfig: LayerConfigJson, context: string): { result: LayerConfigJson } { + + const state = this._state; + const hasMinimap = layerConfig.tagRenderings?.some(tr => AddMiniMap.hasMinimap(tr)) ?? true + if (!hasMinimap) { + layerConfig = {...layerConfig} + layerConfig.tagRenderings = [...layerConfig.tagRenderings] + layerConfig.tagRenderings.push(state.tagRenderings.get("questions")) + layerConfig.tagRenderings.push(state.tagRenderings.get("minimap")) + } + + return { + result: layerConfig + }; + } +} + + +class ApplyOverrideAll extends DesugaringStep { + + constructor() { + super("Applies 'overrideAll' onto every 'layer'. The 'overrideAll'-field is removed afterwards", ["overrideAll", "layers"],"ApplyOverrideAll"); + } + + convert(json: LayoutConfigJson, context: string): { result: LayoutConfigJson; errors: string[]; warnings: string[] } { + + const overrideAll = json.overrideAll; + if (overrideAll === undefined) { + return {result: json, warnings: [], errors: []} + } + + json = {...json} + + delete json.overrideAll + const newLayers = [] + for (let layer of json.layers) { + layer = {...layer} + Utils.Merge(overrideAll, layer) + newLayers.push(layer) + } + json.layers = newLayers + + + return {result: json, warnings: [], errors: []}; + } + +} + +class AddDependencyLayersToTheme extends DesugaringStep { + private readonly _state: DesugaringContext; + constructor(state: DesugaringContext, ) { + 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"],"AddDependencyLayersToTheme"); + this._state = state; + } + + 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) + } + + for (const dependency of dependencies) { + if(loadedLayerIds.has(dependency.neededLayer)){ + // We mark the needed layer as 'mustLoad' + alreadyLoaded.find(l => l.id === dependency.neededLayer).forceLoad = true + } + } + + // 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.map(dep => { + dep = Utils.Clone(dep); + dep.forceLoad = true + return dep + }); + } + + convert(theme: LayoutConfigJson, context: string): { result: LayoutConfigJson; information: string[] } { + const state = this._state + const allKnownLayers: Map = state.sharedLayers; + const knownTagRenderings: Map = state.tagRenderings; + const information = []; + 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) { + + information.push(context + ": added " + dependencies.map(d => d.id).join(", ") + " to the theme as they are needed") + } + layers.unshift(...dependencies); + + return { + result: { + ...theme, + layers: layers + }, + information + }; + } +} + +class PreparePersonalTheme extends DesugaringStep { + private readonly _state: DesugaringContext; + constructor(state: DesugaringContext) { + super("Adds every public layer to the personal theme",["layers"],"PreparePersonalTheme"); + this._state = state; + } + + convert(json: LayoutConfigJson, context: string): { result: LayoutConfigJson; errors?: string[]; warnings?: string[]; information?: string[] } { + if(json.id !== "personal"){ + return {result: json} + } + + json.layers = Array.from(this._state.sharedLayers.keys()).filter(l => Constants.priviliged_layers.indexOf(l) < 0) + + return {result: json}; + } + +} + +export class PrepareTheme extends Fuse { + constructor(state: DesugaringContext) { + super( + "Fully prepares and expands a theme", + new PreparePersonalTheme(state), + new OnEveryConcat("layers", new SubstituteLayer(state)), + new SetDefault("socialImage", "assets/SocialImage.png", true), + // We expand all tagrenderings first... + new OnEvery("layers", new PrepareLayer(state)), + // Then we apply the override all + new ApplyOverrideAll(), + // And then we prepare all the layers _again_ in case that an override all contained unexpanded tagrenderings! + new OnEvery("layers", new PrepareLayer(state)), + new AddDefaultLayers(state), + new AddDependencyLayersToTheme(state), + new AddImportLayers(), + new OnEvery("layers", new AddMiniMap(state)) + ); + } +} \ No newline at end of file diff --git a/Models/ThemeConfig/Conversion/Validation.ts b/Models/ThemeConfig/Conversion/Validation.ts new file mode 100644 index 0000000000..f8174c5b0e --- /dev/null +++ b/Models/ThemeConfig/Conversion/Validation.ts @@ -0,0 +1,472 @@ +import {DesugaringStep, Fuse, OnEvery} from "./Conversion"; +import {LayerConfigJson} from "../Json/LayerConfigJson"; +import LayerConfig from "../LayerConfig"; +import {Utils} from "../../../Utils"; +import Constants from "../../Constants"; +import {Translation} from "../../../UI/i18n/Translation"; +import {LayoutConfigJson} from "../Json/LayoutConfigJson"; +import LayoutConfig from "../LayoutConfig"; +import {TagRenderingConfigJson} from "../Json/TagRenderingConfigJson"; +import {TagUtils} from "../../../Logic/Tags/TagUtils"; +import {ExtractImages} from "./FixImages"; +import ScriptUtils from "../../../scripts/ScriptUtils"; +import {And} from "../../../Logic/Tags/And"; +import Translations from "../../../UI/i18n/Translations"; +import Svg from "../../../Svg"; + + +class ValidateLanguageCompleteness extends DesugaringStep { + private readonly _languages: string[]; + + constructor(...languages: string[]) { + super("Checks that the given object is fully translated in the specified languages", [], "ValidateLanguageCompleteness"); + this._languages = languages; + } + + convert(obj: any, context: string): { result: LayerConfig; errors: string[] } { + const errors = [] + const translations = Translation.ExtractAllTranslationsFrom( + obj + ) + for (const neededLanguage of this._languages ?? ["en"]) { + 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 known translation is " + missing.tr.textFor('en')) + }) + } + + return { + result: obj, + 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; + private _sharedTagRenderings: Map; + + constructor(knownImagePaths: Set, path: string, isBuiltin: boolean, sharedTagRenderings: Map) { + super("Doesn't change anything, but emits warnings and errors", [], "ValidateTheme"); + this.knownImagePaths = knownImagePaths; + this._path = path; + this._isBuiltin = isBuiltin; + this._sharedTagRenderings = sharedTagRenderings; + } + + convert(json: LayoutConfigJson, context: string): { result: LayoutConfigJson; errors: string[], warnings: string[], information: string[] } { + const errors = [] + const warnings = [] + const information = [] + + const theme = new LayoutConfig(json, true, "test") + + { + // Legacy format checks + if (this._isBuiltin) { + 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") + } + } + } + { + // Check images: are they local, are the licenses there, is the theme icon square, ... + const images = new ExtractImages(this._isBuiltin, this._sharedTagRenderings).convertStrict(json, "validation") + const remoteImages = images.filter(img => img.indexOf("http") == 0) + for (const remoteImage of remoteImages) { + errors.push("Found a remote image: " + remoteImage + " in theme " + json.id + ", please download it.") + } + for (const image of images) { + if (image.indexOf("{") >= 0) { + information.push("Ignoring image with { in the path: " + image) + continue + } + + if (image === "assets/SocialImage.png") { + continue + } + if (image.match(/[a-z]*/)) { + + if(Svg.All[image + ".svg"] !== undefined){ + // This is a builtin img, e.g. 'checkmark' or 'crosshair' + continue; + } + } + + if (this.knownImagePaths !== undefined && !this.knownImagePaths.has(image)) { + const ctx = context === undefined ? "" : ` in a layer defined in the theme ${context}` + errors.push(`Image with path ${image} not found or not attributed; it is used in ${json.id}${ctx}`) + } + } + + if (json.icon.endsWith(".svg")) { + try { + ScriptUtils.ReadSvgSync(json.icon, svg => { + const width: string = svg.$.width; + const height: string = svg.$.height; + if (width !== height) { + const e = `the icon for theme ${json.id} is not square. Please square the icon at ${json.icon}` + + ` Width = ${width} height = ${height}`; + (json.hideFromOverview ? warnings : errors).push(e) + } + }) + } catch (e) { + console.error("Could not read " + json.icon + " due to " + e) + } + } + + } + + try { + 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(theme, theme.id) + errors.push(...checked.errors) + } + if (!json.hideFromOverview && theme.id !== "personal") { + // Official, public themes must have a full english translation + const checked = new ValidateLanguageCompleteness("en") + .convert(theme, theme.id) + errors.push(...checked.errors) + } + + } catch (e) { + errors.push(e) + } + + return { + result: json, + errors, + warnings, + information + }; + } +} + +export class ValidateThemeAndLayers extends Fuse { + constructor(knownImagePaths: Set, path: string, isBuiltin: boolean, sharedTagRenderings: Map) { + super("Validates a theme and the contained layers", + new ValidateTheme(knownImagePaths, path, isBuiltin, sharedTagRenderings), + new OnEvery("layers", new ValidateLayer(undefined, false)) + ); + } +} + + +class OverrideShadowingCheck extends DesugaringStep { + + constructor() { + super("Checks that an 'overrideAll' does not override a single override", [], "OverrideShadowingCheck"); + } + + convert(json: LayoutConfigJson, context: string): { result: LayoutConfigJson; errors?: string[]; warnings?: string[] } { + + const overrideAll = json.overrideAll; + if (overrideAll === undefined) { + return {result: json} + } + + const errors = [] + const withOverride = json.layers.filter(l => l["override"] !== undefined) + + for (const layer of withOverride) { + for (const key in overrideAll) { + if (layer["override"][key] !== undefined || layer["override"]["=" + key] !== undefined) { + const w = "The override of layer " + JSON.stringify(layer["builtin"]) + " has a shadowed property: " + key + " is overriden by overrideAll of the theme"; + errors.push(w) + } + } + } + + return {result: json, errors} + } + +} + +class MiscThemeChecks extends DesugaringStep{ + constructor() { + super("Miscelleanous checks on the theme", [],"MiscThemesChecks"); + } + + convert(json: LayoutConfigJson, context: string): { result: LayoutConfigJson; errors?: string[]; warnings?: string[]; information?: string[] } { + const warnings = [] + if(json.socialImage === ""){ + warnings.push("Social image for theme "+json.id+" is the emtpy string") + } + return { + result :json, + warnings + }; + } +} + +export class PrevalidateTheme extends Fuse { + + constructor() { + super("Various consistency checks on the raw JSON", + new OverrideShadowingCheck(), + new MiscThemeChecks() + ); + + } + +} + +export class DetectShadowedMappings extends DesugaringStep { + constructor() { + super("Checks that the mappings don't shadow each other", [], "DetectShadowedMappings"); + } + + convert(json: TagRenderingConfigJson, context: string): { result: TagRenderingConfigJson; errors?: string[]; warnings?: string[] } { + const errors = [] + const warnings = [] + if (json.mappings === undefined || json.mappings.length === 0) { + return {result: json} + } + const parsedConditions = json.mappings.map(m => { + const ifTags = TagUtils.Tag(m.if); + if(m.hideInAnswer !== undefined && m.hideInAnswer !== false && m.hideInAnswer !== true){ + let conditionTags = TagUtils.Tag( m.hideInAnswer) + // Merge the condition too! + return new And([conditionTags, ifTags]) + } + return ifTags + }) + for (let i = 0; i < json.mappings.length; i++) { + if(!parsedConditions[i].isUsableAsAnswer()){ + // There is no straightforward way to convert this mapping.if into a properties-object, so we simply skip this one + // Yes, it might be shadowed, but running this check is to difficult right now + continue + } + const keyValues = parsedConditions[i].asChange({}); + const properties = {} + keyValues.forEach(({k, v}) => { + properties[k] = v + }) + for (let j = 0; j < i; j++) { + const doesMatch = parsedConditions[j].matchesProperties(properties) + if (doesMatch) { + // The current mapping is shadowed! + errors.push(`At ${context}: Mapping ${i} is shadowed by mapping ${j} and will thus never be shown: + The mapping ${parsedConditions[i].asHumanString(false, false, {})} is fully matched by a previous mapping (namely ${j}), which matches: + ${parsedConditions[j].asHumanString(false, false, {})}. + + Move the mapping up to fix this problem +`) + } + } + + } + + // TODO make this errors again + warnings.push(...errors) + errors.splice(0, errors.length) + + return { + errors, + warnings, + result: json + }; + } +} + +export class DetectMappingsWithImages extends DesugaringStep { + constructor() { + super("Checks that 'then'clauses in mappings don't have images, but use 'icon' instead", [], "DetectMappingsWithImages"); + } + + convert(json: TagRenderingConfigJson, context: string): { result: TagRenderingConfigJson; errors?: string[]; warnings?: string[], information?: string[] } { + const errors = [] + const warnings = [] + const information = [] + if (json.mappings === undefined || json.mappings.length === 0) { + return {result: json} + } + const ignoreToken = "ignore-image-in-then" + for (let i = 0; i < json.mappings.length; i++) { + + const mapping = json.mappings[i] + const ignore = mapping["#"]?.indexOf(ignoreToken) >=0 + const images = Utils.Dedup(Translations.T(mapping.then).ExtractImages()) + const ctx = `${context}.mappings[${i}]` + if (images.length > 0) { + if(!ignore){ + errors.push(`${ctx}: A mapping has an image in the 'then'-clause. Remove the image there and use \`"icon": \` instead. The images found are ${images.join(", ")}. (This check can be turned of by adding "#": "${ignoreToken}" in the mapping, but this is discouraged`) + }else{ + information.push(`${ctx}: Ignored image ${images.join(", ")} in 'then'-clause of a mapping as this check has been disabled`) + } + }else if (ignore){ + warnings.push(`${ctx}: unused '${ignoreToken}' - please remove this`) + } + } + + return { + errors, + warnings, + information, + result: json + }; + } +} + +export class ValidateTagRenderings extends Fuse { + constructor() { + super("Various validation on tagRenderingConfigs", + new DetectShadowedMappings(), + new DetectMappingsWithImages() + ); + } +} + +export class ValidateLayer extends DesugaringStep { + /** + * The paths where this layer is originally saved. Triggers some extra checks + * @private + */ + private readonly _path?: string; + private readonly _isBuiltin: boolean; + + constructor(path: string, isBuiltin: boolean) { + super("Doesn't change anything, but emits warnings and errors", [], "ValidateLayer"); + this._path = path; + this._isBuiltin = isBuiltin; + } + + convert(json: LayerConfigJson, context: string): { result: LayerConfigJson; errors: string[]; warnings?: string[], information?: string[] } { + const errors = [] + const warnings = [] + const information = [] + if (typeof json === "string") { + errors.push(context + ": This layer hasn't been expanded: " + json) + return { + result: null, + errors + } + } + + if (json["builtin"] !== undefined) { + errors.push(context + ": This layer hasn't been expanded: " + json) + return { + result: null, + 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'") + } + } + { + // CHeck location of layer file + 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) { + // Check for correct IDs + 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" + ) + } + } + } + if (json.tagRenderings !== undefined) { + const r = new OnEvery("tagRenderings", new ValidateTagRenderings()).convert(json, context) + warnings.push(...(r.warnings??[])) + errors.push(...(r.errors??[])) + information.push(...(r.information??[])) + } + + if (json.presets !== undefined) { + + // Check that a preset will be picked up by the layer itself + const baseTags = TagUtils.Tag(json.source.osmTags) + for (let i = 0; i < json.presets.length; i++) { + const preset = json.presets[i]; + const tags: { k: string, v: string }[] = new And(preset.tags.map(t => TagUtils.Tag(t))).asChange({id: "node/-1"}) + const properties = {} + for (const tag of tags) { + properties[tag.k] = tag.v + } + const doMatch = baseTags.matchesProperties(properties) + if (!doMatch) { + errors.push(context + ".presets[" + i + "]: This preset does not match the required tags of this layer. This implies that a newly added point will not show up.\n A newly created point will have properties: " + JSON.stringify(properties) + "\n The required tags are: " + baseTags.asHumanString(false, false, {})) + } + } + } + + } catch (e) { + errors.push(e) + } + + + return { + result: json, + errors, + warnings, + information + }; + } +} \ No newline at end of file diff --git a/Models/ThemeConfig/DependencyCalculator.ts b/Models/ThemeConfig/DependencyCalculator.ts new file mode 100644 index 0000000000..c4d3663d3c --- /dev/null +++ b/Models/ThemeConfig/DependencyCalculator.ts @@ -0,0 +1,112 @@ +import {SpecialVisualization} from "../../UI/SpecialVisualizations"; +import {SubstitutedTranslation} from "../../UI/SubstitutedTranslation"; +import TagRenderingConfig from "./TagRenderingConfig"; +import {ExtraFuncParams, ExtraFunctions} from "../../Logic/ExtraFunctions"; +import LayerConfig from "./LayerConfig"; + +export default class DependencyCalculator { + + public static GetTagRenderingDependencies(tr: TagRenderingConfig): string[] { + + if (tr === undefined) { + throw "Got undefined tag rendering in getTagRenderingDependencies" + } + const deps: string[] = [] + + // All translated snippets + const parts: string[] = [].concat(...(tr.EnumerateTranslations().map(tr => tr.AllValues()))) + + for (const part of parts) { + const specialVizs: { func: SpecialVisualization, args: string[] }[] + = SubstitutedTranslation.ExtractSpecialComponents(part).map(o => o.special) + .filter(o => o?.func?.getLayerDependencies !== undefined) + for (const specialViz of specialVizs) { + deps.push(...specialViz.func.getLayerDependencies(specialViz.args)) + } + } + return deps; + } + + /** + * Returns a set of all other layer-ids that this layer needs to function. + * E.g. if this layers does snap to another layer in the preset, this other layer id will be mentioned + */ + public static getLayerDependencies(layer: LayerConfig): { neededLayer: string, reason: string, context?: string, neededBy: string }[] { + const deps: { neededLayer: string, reason: string, context?: string, neededBy: string }[] = [] + + for (let i = 0; layer.presets !== undefined && i < layer.presets.length; i++) { + const preset = layer.presets[i]; + preset.preciseInput?.snapToLayers?.forEach(id => { + deps.push({ + neededLayer: id, + reason: "a preset snaps to this layer", + context: "presets[" + i + "]", + neededBy: layer.id + }); + }) + } + + for (const tr of layer.AllTagRenderings()) { + for (const dep of DependencyCalculator.GetTagRenderingDependencies(tr)) { + deps.push({ + neededLayer: dep, + reason: "a tagrendering needs this layer", + context: tr.id, + neededBy: layer.id + }) + } + } + + if (layer.calculatedTags?.length > 0) { + const obj = { + type: "Feature", + geometry: { + type: "Point", + coordinates: [0, 0] + }, + properties: { + id: "node/1" + } + } + let currentKey = undefined + let currentLine = undefined + const params: ExtraFuncParams = { + getFeatureById: _ => undefined, + getFeaturesWithin: (layerId, _) => { + + if (layerId === '*') { + // This is a wildcard + return [] + } + + // The important line: steal the dependencies! + deps.push({ + neededLayer: layerId, reason: "A calculated tag loads features from this layer", + context: "calculatedTag[" + currentLine + "] which calculates the value for " + currentKey, + neededBy: layer.id + }) + + return [] + }, + memberships: undefined + } + // Init the extra patched functions... + ExtraFunctions.FullPatchFeature(params, obj) + // ... Run the calculated tag code, which will trigger the getFeaturesWithin above... + for (let i = 0; i < layer.calculatedTags.length; i++) { + const [key, code] = layer.calculatedTags[i]; + currentLine = i; // Leak the state... + currentKey = key; + try { + + const func = new Function("feat", "return " + code + ";"); + const result = func(obj) + obj.properties[key] = JSON.stringify(result); + } catch (e) { + } + } + } + + return deps + } +} \ No newline at end of file diff --git a/Models/ThemeConfig/ExtraLinkConfig.ts b/Models/ThemeConfig/ExtraLinkConfig.ts new file mode 100644 index 0000000000..641029f6fb --- /dev/null +++ b/Models/ThemeConfig/ExtraLinkConfig.ts @@ -0,0 +1,31 @@ +import ExtraLinkConfigJson from "./Json/ExtraLinkConfigJson"; +import {Translation} from "../../UI/i18n/Translation"; +import Translations from "../../UI/i18n/Translations"; + +export default class ExtraLinkConfig { + public readonly icon?: string + public readonly text?: Translation + public readonly href: string + public readonly newTab?: false | boolean + public readonly requirements?: Set<("iframe" | "no-iframe" | "welcome-message" | "no-welcome-message")> + + constructor(configJson: ExtraLinkConfigJson, context) { + this.icon = configJson.icon + this.text = Translations.T(configJson.text) + this.href = configJson.href + this.newTab = configJson.newTab + this.requirements = new Set(configJson.requirements) + + for (let requirement of configJson.requirements) { + + if (this.requirements.has(("no-" + requirement))) { + throw "Conflicting requirements found for " + context + ".extraLink: both '" + requirement + "' and 'no-" + requirement + "' found" + } + } + + if (this.icon === undefined && this.text === undefined) { + throw "At " + context + ".extraLink: define at least an icon or a text to show. Both are undefined, this is not allowed" + } + } + +} \ No newline at end of file diff --git a/Models/ThemeConfig/FilterConfig.ts b/Models/ThemeConfig/FilterConfig.ts index 833ae50500..b9060b3cd6 100644 --- a/Models/ThemeConfig/FilterConfig.ts +++ b/Models/ThemeConfig/FilterConfig.ts @@ -3,13 +3,22 @@ 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 }[] }[]; + public readonly defaultSelection? : number constructor(json: FilterConfigJson, context: string) { if (json.options === undefined) { @@ -27,24 +36,148 @@ export default class FilterConfig { throw `A filter was given where the options aren't a list at ${context}` } this.id = json.id; + let defaultSelection : number = undefined 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.ForType(type) === undefined) { + throw `Invalid filter: ${type} is not a valid validated textfield type (at ${ctx}.fields[${i}])\n\tTry one of ${Array.from(ValidatedTextField.AvailableTypes()).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 + } + }) - if (this.options.length > 1 && this.options[0].osmTags["and"]?.length !== 0) { + if(option.default){ + if(defaultSelection === undefined){ + defaultSelection = i; + }else{ + throw `Invalid filter: multiple filters are set as default, namely ${i} and ${defaultSelection} at ${context}` + } + } + + return {question: question, osmTags: osmTags, fields, originalTagsSpec: option.osmTags}; + }); + + this.defaultSelection = defaultSelection + + 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 + } + + let defaultValue = "" + if(this.options.length > 1){ + defaultValue = ""+(this.defaultSelection ?? 0) + }else{ + // Only a single option + if(this.defaultSelection === 0){ + defaultValue = "true" + } + } + 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/ExtraLinkConfigJson.ts b/Models/ThemeConfig/Json/ExtraLinkConfigJson.ts new file mode 100644 index 0000000000..c48455aeb2 --- /dev/null +++ b/Models/ThemeConfig/Json/ExtraLinkConfigJson.ts @@ -0,0 +1,7 @@ +export default interface ExtraLinkConfigJson { + icon?: string, + text?: string | any, + href: string, + newTab?: false | boolean, + requirements?: ("iframe" | "no-iframe" | "welcome-message" | "no-welcome-message")[] +} \ No newline at end of file diff --git a/Models/ThemeConfig/Json/FilterConfigJson.ts b/Models/ThemeConfig/Json/FilterConfigJson.ts index 7151e38542..493bf74c90 100644 --- a/Models/ThemeConfig/Json/FilterConfigJson.ts +++ b/Models/ThemeConfig/Json/FilterConfigJson.ts @@ -11,5 +11,13 @@ 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, + default?: boolean, + 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 c45548bb9c..5c32c19865 100644 --- a/Models/ThemeConfig/Json/LayerConfigJson.ts +++ b/Models/ThemeConfig/Json/LayerConfigJson.ts @@ -33,44 +33,65 @@ export interface LayerConfigJson { /** - * This determines where the data for the layer is fetched. - * There are some options: + * This determines where the data for the layer is fetched: from OSM or from an external geojson dataset. * - * # Query OSM directly - * source: {osmTags: "key=value"} - * will fetch all objects with given tags from OSM. - * Currently, this will create a query to overpass and fetch the data - in the future this might fetch from the OSM API + * If no 'geojson' is defined, data will be fetched from overpass and the OSM-API. * - * # Query OSM Via the overpass API with a custom script - * source: {overpassScript: ""} when you want to do special things. _This should be really rare_. - * This means that the data will be pulled from overpass with this script, and will ignore the osmTags for the query - * However, for the rest of the pipeline, the OsmTags will _still_ be used. This is important to enable layers etc... + * Every source _must_ define which tags _must_ be present in order to be picked up. * - * - * # A single geojson-file - * source: {geoJson: "https://my.source.net/some-geo-data.geojson"} - * fetches a geojson from a third party source - * - * # A tiled geojson source - * source: {geoJson: "https://my.source.net/some-tile-geojson-{layer}-{z}-{x}-{y}.geojson", geoJsonZoomLevel: 14} - * to use a tiled geojson source. The web server must offer multiple geojsons. {z}, {x} and {y} are substituted by the location; {layer} is substituted with the id of the loaded layer - * - * Some API's use a BBOX instead of a tile, this can be used by specifying {y_min}, {y_max}, {x_min} and {x_max} - * Some API's use a mercator-projection (EPSG:900913) instead of WGS84. Set the flag `mercatorCrs: true` in the source for this - * - * Note that both geojson-options might set a flag 'isOsmCache' indicating that the data originally comes from OSM too - * - * - * NOTE: the previous format was 'overpassTags: AndOrTagConfigJson | string', which is interpreted as a shorthand for source: {osmTags: "key=value"} - * While still supported, this is considered deprecated */ - source: ({ osmTags: AndOrTagConfigJson | string, overpassScript?: string } | - { osmTags: AndOrTagConfigJson | string, geoJson: string, geoJsonZoomLevel?: number, isOsmCache?: boolean, mercatorCrs?: boolean }) & ({ - /** - * The maximum amount of seconds that a tile is allowed to linger in the cache - */ - maxCacheAge?: number - }) + source: + ({ + /** + * Every source must set which tags have to be present in order to load the given layer. + */ + osmTags: AndOrTagConfigJson | string + /** + * The maximum amount of seconds that a tile is allowed to linger in the cache + */ + maxCacheAge?: number + }) & + ({ /* # Query OSM Via the overpass API with a custom script + * source: {overpassScript: ""} when you want to do special things. _This should be really rare_. + * This means that the data will be pulled from overpass with this script, and will ignore the osmTags for the query + * However, for the rest of the pipeline, the OsmTags will _still_ be used. This is important to enable layers etc... + */ + overpassScript?: string + } | + { + /** + * The actual source of the data to load, if loaded via geojson. + * + * # A single geojson-file + * source: {geoJson: "https://my.source.net/some-geo-data.geojson"} + * fetches a geojson from a third party source + * + * # A tiled geojson source + * source: {geoJson: "https://my.source.net/some-tile-geojson-{layer}-{z}-{x}-{y}.geojson", geoJsonZoomLevel: 14} + * to use a tiled geojson source. The web server must offer multiple geojsons. {z}, {x} and {y} are substituted by the location; {layer} is substituted with the id of the loaded layer + * + * Some API's use a BBOX instead of a tile, this can be used by specifying {y_min}, {y_max}, {x_min} and {x_max} + */ + geoJson: string, + /** + * To load a tiled geojson layer, set the zoomlevel of the tiles + */ + geoJsonZoomLevel?: number, + /** + * Indicates that the upstream geojson data is OSM-derived. + * Useful for e.g. merging or for scripts generating this cache + */ + isOsmCache?: boolean, + /** + * Some API's use a mercator-projection (EPSG:900913) instead of WGS84. Set the flag `mercatorCrs: true` in the source for this + */ + mercatorCrs?: boolean, + /** + * Some API's have an id-field, but give it a different name. + * Setting this key will rename this field into 'id' + */ + idKey?: string + }) /** * @@ -82,6 +103,15 @@ export interface LayerConfigJson { * "_max_overlap_ratio=Number(feat._max_overlap_m2)/feat.area * ] * + * The specified tags are evaluated lazily. E.g. if a calculated tag is only used in the popup (e.g. the number of nearby features), + * the expensive calculation will only be performed then for that feature. This avoids clogging up the contributors PC when all features are loaded. + * + * If a tag has to be evaluated strictly, use ':=' instead: + * + * [ + * "_some_key:=some_javascript_expression" + * ] + * */ calculatedTags?: string[]; @@ -102,6 +132,13 @@ export interface LayerConfigJson { */ isShown?: TagRenderingConfigJson; + /** + * Advanced option - might be set by the theme compiler + * + * If true, this data will _always_ be loaded, even if the theme is disabled + */ + forceLoad?: false | boolean + /** * The minimum needed zoomlevel required before loading of the data start @@ -109,6 +146,13 @@ export interface LayerConfigJson { */ minzoom?: number; + + /** + * Indicates if this layer is shown by default; + * can be used to hide a layer from start, or to load the layer but only to show it where appropriate (e.g. for snapping to it) + */ + shownByDefault?: true | boolean; + /** * The zoom level at which point the data is hidden again * Default: 100 (thus: always visible @@ -124,12 +168,14 @@ 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) + * + * Type: icon[] */ - titleIcons?: (string | TagRenderingConfigJson)[]; + titleIcons?: (string | TagRenderingConfigJson)[] | ["defaults"]; - mapRendering: (PointRenderingConfigJson | LineRenderingConfigJson)[] + mapRendering: null | (PointRenderingConfigJson | LineRenderingConfigJson)[] /** * If set, this layer will pass all the features it receives onto the next layer. @@ -167,6 +213,13 @@ export interface LayerConfigJson { */ description?: string | any, + /** + * Example images, which show real-life pictures of what such a feature might look like + * + * Type: image + */ + exampleImages?: string[] + /** * If set, the user will prompted to confirm the location before actually adding the data. * This will be with a 'drag crosshair'-method. @@ -209,9 +262,9 @@ export interface LayerConfigJson { */ tagRenderings?: (string | { builtin: string, override: any } | TagRenderingConfigJson | { rewrite: { - sourceString: string, - into: string[] - }[], + sourceString: string[], + into: (string | any)[][] + }, renderings: (string | { builtin: string, override: any } | TagRenderingConfigJson)[] }) [], @@ -219,7 +272,7 @@ export interface LayerConfigJson { /** * All the extra questions for filtering */ - filter?: (FilterConfigJson) [], + filter?: (FilterConfigJson) [] | { sameAs: string }, /** * This block defines under what circumstances the delete dialog is shown for objects of this layer. @@ -346,4 +399,13 @@ export interface LayerConfigJson { */ units?: UnitConfigJson[] + /** + * If set, synchronizes wether or not this layer is selected. + * + * no: Do not sync at all, always revert to default + * local: keep selection on local storage + * theme-only: sync via OSM, but this layer will only be toggled in this theme + * global: all layers with this ID will be synced accross all themes + */ + syncSelection?: "no" | "local" | "theme-only" | "global" } \ No newline at end of file diff --git a/Models/ThemeConfig/Json/LayoutConfigJson.ts b/Models/ThemeConfig/Json/LayoutConfigJson.ts index 27d10823e3..2128499dbb 100644 --- a/Models/ThemeConfig/Json/LayoutConfigJson.ts +++ b/Models/ThemeConfig/Json/LayoutConfigJson.ts @@ -1,5 +1,6 @@ import {LayerConfigJson} from "./LayerConfigJson"; import TilesourceConfigJson from "./TilesourceConfigJson"; +import ExtraLinkConfigJson from "./ExtraLinkConfigJson"; /** * Defines the entire theme. @@ -32,7 +33,7 @@ export interface LayoutConfigJson { credits?: string; /** - * Who does maintian this preset? + * Who does maintain this preset? */ maintainer: string; @@ -41,20 +42,16 @@ export interface LayoutConfigJson { * Should be sortable, where the higher value is the later version */ version: string; - /** - * The supported language(s). - * This should be a two-letter, lowercase code which identifies the language, e.g. "en", "nl", ... - * If the theme supports multiple languages, use a list: `["en","nl","fr"]` to allow the user to pick any of them - */ - language: string | string[]; /** - * Only used in 'generateLayerOverview': if present, every translation will be checked to make sure it is fully translated + * Only used in 'generateLayerOverview': if present, every translation will be checked to make sure it is fully translated. + * + * This must be a list of two-letter, lowercase codes which identifies the language, e.g. "en", "nl", ... */ mustHaveLanguage?: string[] /** - * The title, as shown in the welcome message and the more-screen + * The title, as shown in the welcome message and the more-screen. */ title: string | any; @@ -78,13 +75,17 @@ export interface LayoutConfigJson { * The icon representing this theme. * Used as logo in the more-screen and (for official themes) as favicon, webmanifest logo, ... * Either a URL or a base64 encoded value (which should include 'data:image/svg+xml;base64) + * + * Type: icon */ icon: string; /** * Link to a 'social image' which is included as og:image-tag on official themes. * Useful to share the theme on social media. - * See https://www.h3xed.com/web-and-internet/how-to-use-og-image-meta-tag-facebook-reddit for more information + * See https://www.h3xed.com/web-and-internet/how-to-use-og-image-meta-tag-facebook-reddit for more information$ + * + * Type: image */ socialImage?: string; @@ -202,7 +203,14 @@ export interface LayoutConfigJson { * } *``` */ - layers: (LayerConfigJson | string | { builtin: string | string[], override: any })[], + layers: (LayerConfigJson | string | + { builtin: string | string[], + override: any, + /** + * TagRenderings with any of these labels will be removed from the layer. + * Note that the 'id' and 'group' are considered labels too + */ + hideTagRenderingsWithLabels?: string[]})[], /** * If defined, data will be clustered. @@ -216,10 +224,10 @@ export interface LayoutConfigJson { maxZoom?: number, /** * The number of elements per tile needed to start clustering - * If clustering is defined, defaults to 25 + * If clustering is defined, defaults to 250 */ minNeededElements?: number - }, + } | false, /** * The URL of a custom CSS stylesheet to modify the layout @@ -232,23 +240,76 @@ export interface LayoutConfigJson { /** * If set to true, the basemap will not scroll outside of the area visible on initial zoom. - * If set to [[lat0, lon0], [lat1, lon1]], the map will not scroll outside of those bounds. + * If set to [[lon, lat], [lon, lat]], the map will not scroll outside of those bounds. * Off by default, which will enable panning to the entire world */ - lockLocation?: boolean | [[number, number], [number, number]] | number[][]; + lockLocation?: [[number, number], [number, number]] | number[][]; - enableUserBadge?: boolean; - enableShareScreen?: boolean; - enableMoreQuests?: boolean; - enableLayers?: boolean; - enableSearch?: boolean; - enableAddNewPoints?: boolean; - enableGeolocation?: boolean; - enableBackgroundLayerSelection?: boolean; - enableShowAllQuestions?: boolean; - enableDownload?: boolean; - enablePdfDownload?: boolean; - enableIframePopout?: true | boolean; + /** + * Adds an additional button on the top-left of the application. + * This can link to an arbitrary location. + * + * Note that {lat},{lon},{zoom}, {language} and {theme} will be replaced + * + * Default: {icon: "./assets/svg/pop-out.svg", href: 'https://mapcomplete.osm.be/{theme}.html?lat={lat}&lon={lon}&z={zoom}, requirements: ["iframe","no-welcome-message]}, + * + */ + extraLink?: ExtraLinkConfigJson + + /** + * If set to false, disables logging in. + * The userbadge will be hidden, all login-buttons will be hidden and editing will be disabled + */ + enableUserBadge?: true | boolean; + /** + * If false, hides the tab 'share'-tab in the welcomeMessage + */ + enableShareScreen?: true | boolean; + /** + * Hides the tab with more themes in the welcomeMessage + */ + enableMoreQuests?: true | boolean; + /** + * If false, the layer selection/filter view will be hidden + * The corresponding URL-parameter is 'fs-filters' instead of 'fs-layers' + */ + enableLayers?: true | boolean; + /** + * If set to false, hides the search bar + */ + enableSearch?: true | boolean; + /** + * If set to false, the ability to add new points or nodes will be disabled. + * Editing already existing features will still be possible + */ + enableAddNewPoints?: true | boolean; + /** + * If set to false, the 'geolocation'-button will be hidden. + */ + enableGeolocation?: true | boolean; + /** + * Enable switching the backgroundlayer. + * If false, the quickswitch-buttons are removed (bottom left) and the dropdown in the layer selection is removed as well + */ + enableBackgroundLayerSelection?: true | boolean; + /** + * If set to true, will show _all_ unanswered questions in a popup instead of just the next one + */ + enableShowAllQuestions?: false | boolean; + /** + * If set to true, download button for the data will be shown (offers downloading as geojson and csv) + */ + enableDownload?: false | boolean; + /** + * If set to true, exporting a pdf is enabled + */ + enablePdfDownload?: false | boolean; + + /** + * If true, notes will be loaded and parsed. If a note is an import (as created by the import_helper.html-tool from mapcomplete), + * these notes will be shown if a relevant layer is present. + */ + enableNoteImports?: true | boolean; /** * Set one or more overpass URLs to use for this theme.. 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/Json/PointRenderingConfigJson.ts b/Models/ThemeConfig/Json/PointRenderingConfigJson.ts index 75e6633618..5170f89534 100644 --- a/Models/ThemeConfig/Json/PointRenderingConfigJson.ts +++ b/Models/ThemeConfig/Json/PointRenderingConfigJson.ts @@ -15,7 +15,7 @@ export default interface PointRenderingConfigJson { * All the locations that this point should be rendered at. * Using `location: ["point", "centroid"] will always render centerpoint */ - location: ("point" | "centroid" | "start" | "end")[] + location: ("point" | "centroid" | "start" | "end" | string)[] /** * The icon for an element. @@ -26,7 +26,8 @@ export default interface PointRenderingConfigJson { * As a result, on could use a generic pin, then overlay it with a specific icon. * To make things even more practical, one can use all SVG's from the folder "assets/svg" and _substitute the color_ in it. * E.g. to draw a red pin, use "pin:#f00", to have a green circle with your icon on top, use `circle:#0f0;` - * + + * Type: icon */ icon?: string | TagRenderingConfigJson; @@ -36,7 +37,14 @@ export default interface PointRenderingConfigJson { * * Note: strings are interpreted as icons, so layering and substituting is supported. You can use `circle:white;./my_icon.svg` to add a background circle */ - iconBadges?: { if: string | AndOrTagConfigJson, then: string | TagRenderingConfigJson }[] + iconBadges?: { + if: string | AndOrTagConfigJson, + /** + * Badge to show + * Type: icon + */ + then: string | TagRenderingConfigJson + }[] /** diff --git a/Models/ThemeConfig/Json/TagRenderingConfigJson.ts b/Models/ThemeConfig/Json/TagRenderingConfigJson.ts index 75f91018cb..0b08218b50 100644 --- a/Models/ThemeConfig/Json/TagRenderingConfigJson.ts +++ b/Models/ThemeConfig/Json/TagRenderingConfigJson.ts @@ -9,7 +9,7 @@ export interface TagRenderingConfigJson { /** * The id of the tagrendering, should be an unique string. * Used to keep the translations in sync. Only used in the tagRenderings-array of a layerConfig, not requered otherwise. - * + * * Use 'questions' to trigger the question box of this group (if a group is defined) */ id?: string, @@ -20,14 +20,20 @@ export interface TagRenderingConfigJson { */ group?: string + /** + * A list of labels. These are strings that are used for various purposes, e.g. to filter them away + */ + labels?: string[] + /** * Renders this value. Note that "{key}"-parts are substituted by the corresponding values of the element. * If neither 'textFieldQuestion' nor 'mappings' are defined, this text is simply shown as default value. * * Note that this is a HTML-interpreted value, so you can add links as e.g. '{website}' or include images such as `This is of type A
` + * type: rendered */ render?: string | any, - + /** * If it turns out that this tagRendering doesn't match _any_ value, then we show this question. * If undefined, the question is never asked and this tagrendering is read-only @@ -56,6 +62,11 @@ export interface TagRenderingConfigJson { * See Docs/SpecialInputElements.md and UI/Input/ValidatedTextField.ts for supported values */ type?: string, + /** + * A (translated) text that is shown (as gray text) within the textfield + */ + placeholder?: string | any + /** * Extra parameters to initialize the input helper arguments. * For semantics, see the 'SpecialInputElements.md' @@ -104,8 +115,25 @@ export interface TagRenderingConfigJson { /** * If the condition `if` is met, the text `then` will be rendered. * If not known yet, the user will be presented with `then` as an option + * Type: rendered */ then: string | any, + /** + * An icon supporting this mapping; typically shown pretty small + * Type: icon + */ + icon?: string | { + /** + * The path to the icon + * Type: icon + */ + path: string, + /** + * A hint to mapcomplete on how to render this icon within the mapping. + * This is translated to 'mapping-icon-', so defining your own in combination with a custom CSS is possible (but discouraged) + */ + class: "small" | "medium" | "large" | string + } /** * In some cases, multiple taggings exist (e.g. a default assumption, or a commonly mapped abbreviation and a fully written variation). * diff --git a/Models/ThemeConfig/LayerConfig.ts b/Models/ThemeConfig/LayerConfig.ts index 34245bd7b7..f650aef5d5 100644 --- a/Models/ThemeConfig/LayerConfig.ts +++ b/Models/ThemeConfig/LayerConfig.ts @@ -1,7 +1,7 @@ import {Translation} from "../../UI/i18n/Translation"; import SourceConfig from "./SourceConfig"; import TagRenderingConfig from "./TagRenderingConfig"; -import PresetConfig from "./PresetConfig"; +import PresetConfig, {PreciseInput} from "./PresetConfig"; import {LayerConfigJson} from "./Json/LayerConfigJson"; import Translations from "../../UI/i18n/Translations"; import {TagUtils} from "../../Logic/Tags/TagUtils"; @@ -15,30 +15,31 @@ import LineRenderingConfig from "./LineRenderingConfig"; import PointRenderingConfigJson from "./Json/PointRenderingConfigJson"; import LineRenderingConfigJson from "./Json/LineRenderingConfigJson"; import {TagRenderingConfigJson} from "./Json/TagRenderingConfigJson"; -import {UIEventSource} from "../../Logic/UIEventSource"; import BaseUIElement from "../../UI/BaseUIElement"; import Combine from "../../UI/Base/Combine"; 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"; +import FilterConfigJson from "./Json/FilterConfigJson"; export default class LayerConfig extends WithContextLoader { - id: string; - name: Translation; - description: Translation; - source: SourceConfig; - calculatedTags: [string, string][]; - doNotDownload: boolean; - passAllFeatures: boolean; - isShown: TagRenderingConfig; - minzoom: number; - minzoomVisible: number; - maxzoom: number; - title?: TagRenderingConfig; - titleIcons: TagRenderingConfig[]; + public readonly id: string; + public readonly name: Translation; + public readonly description: Translation; + public readonly source: SourceConfig; + public readonly calculatedTags: [string, string, boolean][]; + public readonly doNotDownload: boolean; + public readonly passAllFeatures: boolean; + public readonly isShown: TagRenderingConfig; + public minzoom: number; + public minzoomVisible: number; + public readonly maxzoom: number; + public readonly title?: TagRenderingConfig; + public readonly titleIcons: TagRenderingConfig[]; public readonly mapRendering: PointRenderingConfig[] public readonly lineRendering: LineRenderingConfig[] @@ -47,16 +48,21 @@ export default class LayerConfig extends WithContextLoader { public readonly deletion: DeleteConfig | null; public readonly allowMove: MoveConfig | null public readonly allowSplit: boolean + public readonly shownByDefault: boolean; /** * In seconds */ public readonly maxAgeOfCache: number - presets: PresetConfig[]; - - tagRenderings: TagRenderingConfig[]; - filters: FilterConfig[]; + public readonly presets: PresetConfig[]; + public readonly tagRenderings: TagRenderingConfig[]; + public readonly filters: FilterConfig[]; + public readonly filterIsSameAs: string; + public readonly forceLoad: boolean; + + public readonly syncSelection: "no" | "local" | "theme-only" | "global" + constructor( json: LayerConfigJson, context?: string, @@ -66,17 +72,27 @@ export default class LayerConfig extends WithContextLoader { 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 + ")" } if (json.source.osmTags === undefined) { throw "Layer " + this.id + " does not define a osmTags in the source section - these should always be present, even for geojson layers (" + context + ")" + } + 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) { + throw `${context}: The id of a layer should match [a-z0-9-_]*: ${json.id}` } this.maxAgeOfCache = json.source.maxCacheAge ?? 24 * 60 * 60 * 30 - + this.syncSelection = json.syncSelection; const osmTags = TagUtils.Tag( json.source.osmTags, context + "source.osmTags" @@ -93,11 +109,13 @@ export default class LayerConfig extends WithContextLoader { this.source = new SourceConfig( { osmTags: osmTags, - geojsonSource: json.source["geoJson"], - geojsonSourceLevel: json.source["geoJsonZoomLevel"], + geojsonSource: json.source["geoJson"], + geojsonSourceLevel: json.source["geoJsonZoomLevel"], overpassScript: json.source["overpassScript"], isOsmCache: json.source["isOsmCache"], - mercatorCrs: json.source["mercatorCrs"] + mercatorCrs: json.source["mercatorCrs"], + idKey: json.source["idKey"] + }, json.id ); @@ -129,7 +147,11 @@ export default class LayerConfig extends WithContextLoader { this.calculatedTags = []; for (const kv of json.calculatedTags) { const index = kv.indexOf("="); - const key = kv.substring(0, index); + let key = kv.substring(0, index); + const isStrict = key.endsWith(':') + if (isStrict) { + key = key.substr(0, key.length - 1) + } const code = kv.substring(index + 1); try { @@ -139,7 +161,7 @@ export default class LayerConfig extends WithContextLoader { } - this.calculatedTags.push([key, code]); + this.calculatedTags.push([key, code, isStrict]); } } @@ -147,12 +169,13 @@ export default class LayerConfig extends WithContextLoader { this.passAllFeatures = json.passAllFeatures ?? false; this.minzoom = json.minzoom ?? 0; this.minzoomVisible = json.minzoomVisible ?? this.minzoom; + this.shownByDefault = json.shownByDefault ?? true; + this.forceLoad = json.forceLoad ?? false; if (json.presets !== undefined && json.presets?.map === undefined) { throw "Presets should be a list of items (at " + context + ")" } this.presets = (json.presets ?? []).map((pr, i) => { - - let preciseInput: any = { + let preciseInput: PreciseInput = { preferredBackground: ["photo"], snapToLayers: undefined, maxSnapDistance: undefined @@ -163,6 +186,7 @@ export default class LayerConfig extends WithContextLoader { preferredBackground: undefined } } + let snapToLayers: string[]; if (typeof pr.preciseInput.snapToLayer === "string") { snapToLayers = [pr.preciseInput.snapToLayer] @@ -178,7 +202,7 @@ export default class LayerConfig extends WithContextLoader { } preciseInput = { preferredBackground: preferredBackground, - snapToLayers: snapToLayers, + snapToLayers, maxSnapDistance: pr.preciseInput.maxSnapDistance ?? 10 } } @@ -188,6 +212,7 @@ export default class LayerConfig extends WithContextLoader { tags: pr.tags.map((t) => TagUtils.SimpleTag(t)), description: Translations.T(pr.description, `${context}.presets[${i}].description`), preciseInput: preciseInput, + exampleImages: pr.exampleImages } return config; }); @@ -213,37 +238,30 @@ export default class LayerConfig extends WithContextLoader { if (this.lineRendering.length === 0 && this.mapRendering.length === 0) { console.log(json.mapRendering) throw("The layer " + this.id + " does not have any maprenderings defined and will thus not show up on the map at all. If this is intentional, set maprenderings to 'null' instead of '[]'") - } else if (!hasCenterRendering && this.lineRendering.length === 0) { - throw "The layer " + this.id + " might not render ways. This might result in dropped information" + } else if (!hasCenterRendering && this.lineRendering.length === 0 && !this.source.geojsonSource?.startsWith("https://api.openstreetmap.org/api/0.6/notes.json")) { + throw "The layer " + this.id + " might not render ways. This might result in dropped information (at "+context+")" } } - 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) { + this.tagRenderings = (Utils.NoNull(json.tagRenderings) ?? []).map((tr, i) => new TagRenderingConfig(tr, this.id + ".tagRenderings[" + i + "]")) - 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)` - } + if(json.filter !== undefined && json.filter !== null && json.filter["sameAs"] !== undefined){ + this.filterIsSameAs = json.filter["sameAs"] + this.filters = [] + }else{ + this.filters = (json.filter ?? []).map((option, i) => { + return new FilterConfig(option, `${context}.filter-[${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)` } @@ -253,17 +271,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 }); @@ -305,121 +314,32 @@ export default class LayerConfig extends WithContextLoader { if (mapRendering === undefined) { return undefined } - const defaultTags = new UIEventSource(TagUtils.changeAsProperties(this.source.osmTags.asChange({id: "node/-1"}))) - return mapRendering.GenerateLeafletStyle(defaultTags, false, {noSize: true}).html + return mapRendering.GetBaseIcon(this.GetBaseTags()) + } + + public GetBaseTags(): any{ + return TagUtils.changeAsProperties(this.source.osmTags.asChange({id: "node/-1"})) } - 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[], addedByDefault = false, canBeIncluded = true): BaseUIElement { + public GenerateDocumentation(usedInThemes: string[], layerIsNeededBy: Map, dependencies: { + context?: string; + reason: string; + neededLayer: string; + }[], addedByDefault = false, canBeIncluded = true): BaseUIElement { const extraProps = [] if (canBeIncluded) { if (addedByDefault) { extraProps.push("**This layer is included automatically in every theme. This layer might contain no points**") } + 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("Not clickable by default. If you import this layer in your theme, override `title` to make this clickable") + 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) { + 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) { extraProps.push("Not visible in the layer selection by default. If you want to make this layer toggable, override `name`") @@ -427,6 +347,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.") } @@ -439,15 +363,75 @@ 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 + ".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)])) + } + + 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") + } + + const icon = this.mapRendering + .filter(mr => mr.location.has("point")) + .map(mr => mr.icon?.render?.txt) + .find(i => i !== undefined) + let iconImg = "" + if (icon !== undefined) { + // This is for the documentation, so we have to use raw HTML + iconImg = ` ` + } + 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[] { @@ -457,22 +441,8 @@ export default class LayerConfig extends WithContextLoader { return this.calculatedTags.map((code) => code[1]); } - public ExtractImages(): Set { - const parts: Set[] = []; - parts.push(...this.tagRenderings?.map((tr) => tr.ExtractImages(false))); - parts.push(...this.titleIcons?.map((tr) => tr.ExtractImages(true))); - for (const preset of this.presets) { - parts.push(new Set(preset.description?.ExtractImages(false))); - } - for (const pointRenderingConfig of this.mapRendering) { - parts.push(pointRenderingConfig.ExtractImages()) - } - const allIcons = new Set(); - for (const part of parts) { - part?.forEach(allIcons.add, allIcons); - } - - return allIcons; + AllTagRenderings(): TagRenderingConfig[] { + return Utils.NoNull([...this.tagRenderings, ...this.titleIcons, this.title, this.isShown]) } public isLeftRightSensitive(): boolean { diff --git a/Models/ThemeConfig/LayoutConfig.ts b/Models/ThemeConfig/LayoutConfig.ts index 61efd85203..eb22b8443e 100644 --- a/Models/ThemeConfig/LayoutConfig.ts +++ b/Models/ThemeConfig/LayoutConfig.ts @@ -1,11 +1,11 @@ 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 {ExtractImages} from "./Conversion/FixImages"; +import ExtraLinkConfig from "./ExtraLinkConfig"; export default class LayoutConfig { public readonly id: string; @@ -14,7 +14,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; @@ -43,7 +43,6 @@ export default class LayoutConfig { public readonly enableShowAllQuestions: boolean; public readonly enableExportButton: boolean; public readonly enablePdfDownload: boolean; - public readonly enableIframePopout: boolean; public readonly customCss?: string; @@ -52,31 +51,52 @@ export default class LayoutConfig { public readonly overpassMaxZoom: number public readonly osmApiTileSize: number public readonly official: boolean; - public readonly trackAllNodes: boolean; + + public readonly usedImages: string[] + public readonly extraLink?: ExtraLinkConfig constructor(json: LayoutConfigJson, official = true, context?: string) { this.official = official; this.id = json.id; + if (official) { + if (json.id.toLowerCase() !== json.id) { + throw "The id of a theme should be lowercase: " + json.id + } + if (json.id.match(/[a-z0-9-_]/) == null) { + throw "The id of a theme should match [a-z0-9-_]*: " + json.id + } + } context = (context ?? "") + "." + this.id; this.maintainer = json.maintainer; this.credits = json.credits; this.version = json.version; - this.language = []; - this.trackAllNodes = false - - if (typeof json.language === "string") { - this.language = [json.language]; - } 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; + this.language = json.mustHaveLanguage ?? Array.from(Object.keys(json.title)); + this.usedImages = Array.from(new ExtractImages(official, undefined).convertStrict(json, "while extracting the images of " + json.id + " " + context ?? "")).sort() + { + if (typeof json.title === "string") { + throw `The title of a theme should always be a translation, as it sets the corresponding languages (${context}.title). The themenID is ${this.id}; the offending object is ${JSON.stringify(json.title)} which is a ${typeof json.title})` + } + 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"); @@ -84,28 +104,32 @@ 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 - this.trackAllNodes = layerInfo.extractAllNodes + // At this point, layers should be expanded and validated either by the generateScript or the LegacyJsonConvert + this.layers = json.layers.map(lyrJson => new LayerConfig(lyrJson, json.id + ".layers." + lyrJson["id"], official)); + this.extraLink = new ExtraLinkConfig(json.extraLink ?? { + icon: "./assets/svg/pop-out.svg", + href: "https://mapcomplete.osm.be/{theme}.html?lat={lat}&lon={lon}&z={zoom}&language={language}", + newTab: true, + requirements: ["iframe","no-welcome-message"] + }, context) + this.clustering = { maxZoom: 16, - minNeededElements: 25, + minNeededElements: 250, }; if (json.clustering === false) { this.clustering = { @@ -115,15 +139,11 @@ export default class LayoutConfig { } else if (json.clustering) { this.clustering = { maxZoom: json.clustering.maxZoom ?? 18, - minNeededElements: json.clustering.minNeededElements ?? 25, + minNeededElements: json.clustering.minNeededElements ?? 250, } } 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; @@ -136,7 +156,6 @@ export default class LayoutConfig { this.enableShowAllQuestions = json.enableShowAllQuestions ?? false; this.enableExportButton = json.enableDownload ?? false; this.enablePdfDownload = json.enablePdfDownload ?? false; - this.enableIframePopout = json.enableIframePopout ?? true this.customCss = json.customCss; this.overpassUrl = Constants.defaultOverpassUrls if (json.overpassUrl !== undefined) { @@ -147,83 +166,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 - 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] - } - names.forEach(name => { - - if (name === "type_node") { - // This is a very special layer which triggers special behaviour - exportAllNodes = true; - } - - 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 - } - result.push(AllKnownLayers.sharedLayers.get(defaultLayer)) - } - - return {layers: result, extractAllNodes: exportAllNodes} - } - public CustomCodeSnippets(): string[] { if (this.official) { return []; @@ -240,69 +187,12 @@ export default class LayoutConfig { return custom; } - public ExtractImages(): Set { - const icons = new Set() - for (const layer of this.layers) { - layer.ExtractImages().forEach(icons.add, icons) - } - icons.add(this.icon) - icons.add(this.socialImage) - return icons - } - - /** - * Replaces all the relative image-urls with a fixed image url - * This is to fix loading from external sources - * - * It should be passed the location where the original theme file is hosted. - * - * If no images are rewritten, the same object is returned, otherwise a new copy is returned - */ - public patchImages(originalURL: string, originalJson: string): LayoutConfig { - const allImages = Array.from(this.ExtractImages()) - const rewriting = new Map() - - // Needed for absolute urls: note that it doesn't contain a trailing slash - const origin = new URL(originalURL).origin - let path = new URL(originalURL).href - path = path.substring(0, path.lastIndexOf("/")) - for (const image of allImages) { - if (image == "" || image == undefined) { - continue - } - if (image.startsWith("http://") || image.startsWith("https://")) { - continue - } - if (image.startsWith("/")) { - // This is an absolute path - rewriting.set(image, origin + image) - } else if (image.startsWith("./assets/themes")) { - // Legacy workaround - rewriting.set(image, path + image.substring(image.lastIndexOf("/"))) - } else if (image.startsWith("./")) { - // This is a relative url - rewriting.set(image, path + image.substring(1)) - } else { - // This is a relative URL with only the path - rewriting.set(image, path + image) - } - } - if (rewriting.size == 0) { - return this; - } - rewriting.forEach((value, key) => { - console.log("Rewriting", key, "==>", value) - originalJson = originalJson.replace(new RegExp(key, "g"), value) - }) - return new LayoutConfig(JSON.parse(originalJson), false, "Layout rewriting") - } - public isLeftRightSensitive() { return this.layers.some(l => l.isLeftRightSensitive()) } - - public getMatchingLayer(tags: any) : LayerConfig | undefined{ - if(tags === undefined){ + + public getMatchingLayer(tags: any): LayerConfig | undefined { + if (tags === undefined) { return undefined } for (const layer of this.layers) { diff --git a/Models/ThemeConfig/LegacyJsonConvert.ts b/Models/ThemeConfig/LegacyJsonConvert.ts deleted file mode 100644 index 5a691e0a29..0000000000 --- a/Models/ThemeConfig/LegacyJsonConvert.ts +++ /dev/null @@ -1,107 +0,0 @@ -import LineRenderingConfigJson from "./Json/LineRenderingConfigJson"; - -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.id !== "sidewalks") { - // 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"] - } - config.mapRendering = [ - { - icon: config["icon"], - iconBadges: config["iconOverlays"], - label: config["label"], - iconSize: config["iconSize"], - location, - rotation: config["rotation"] - } - ] - - if (wayHandling !== 1) { - const lineRenderConfig = { - color: config["color"], - width: config["width"], - dashArray: config["dashArray"] - } - if (Object.keys(lineRenderConfig).length > 0) { - config.mapRendering.push(lineRenderConfig) - } - } - - } - - 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"] - - 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/LineRenderingConfig.ts b/Models/ThemeConfig/LineRenderingConfig.ts index f2eed60d14..6b7f8082b2 100644 --- a/Models/ThemeConfig/LineRenderingConfig.ts +++ b/Models/ThemeConfig/LineRenderingConfig.ts @@ -44,7 +44,9 @@ export default class LineRenderingConfig extends WithContextLoader { if (tags === undefined) { return deflt } - if(tr === undefined){return deflt} + if (tr === undefined) { + return deflt + } const str = tr?.GetRenderValue(tags)?.txt ?? deflt; if (str === "") { return deflt @@ -59,7 +61,7 @@ export default class LineRenderingConfig extends WithContextLoader { "--catch-detail-color" ); } - + const style = { color, dashArray, @@ -73,13 +75,13 @@ export default class LineRenderingConfig extends WithContextLoader { if (fillStr !== undefined && fillStr !== "") { style["fill"] = fillStr === "yes" || fillStr === "true" } - + const fillColorStr = render(this.fillColor, undefined) - if(fillColorStr !== undefined){ + if (fillColorStr !== undefined) { style["fillColor"] = fillColorStr } return style - + } } \ No newline at end of file diff --git a/Models/ThemeConfig/PointRenderingConfig.ts b/Models/ThemeConfig/PointRenderingConfig.ts index 8e047c24bc..0a02149b84 100644 --- a/Models/ThemeConfig/PointRenderingConfig.ts +++ b/Models/ThemeConfig/PointRenderingConfig.ts @@ -16,7 +16,7 @@ import {VariableUiElement} from "../../UI/Base/VariableUIElement"; export default class PointRenderingConfig extends WithContextLoader { private static readonly allowed_location_codes = new Set(["point", "centroid", "start", "end"]) - public readonly location: Set<"point" | "centroid" | "start" | "end"> + public readonly location: Set<"point" | "centroid" | "start" | "end" | string> public readonly icon: TagRenderingConfig; public readonly iconBadges: { if: TagsFilter; then: TagRenderingConfig }[]; @@ -47,7 +47,7 @@ export default class PointRenderingConfig extends WithContextLoader { if (this.location.size == 0) { throw "A pointRendering should have at least one 'location' to defined where it should be rendered. (At " + context + ".location)" } - this.icon = this.tr("icon", ""); + this.icon = this.tr("icon", undefined); this.iconBadges = (json.iconBadges ?? []).map((overlay, i) => { let tr: TagRenderingConfig; if (typeof overlay.then === "string" && @@ -65,11 +65,11 @@ export default class PointRenderingConfig extends WithContextLoader { }; }); - const iconPath = this.icon.GetRenderValue({id: "node/-1"}).txt; - if (iconPath.startsWith(Utils.assets_path)) { + const iconPath = this.icon?.GetRenderValue({id: "node/-1"})?.txt; + if (iconPath !== undefined && iconPath.startsWith(Utils.assets_path)) { const iconKey = iconPath.substr(Utils.assets_path.length); if (Svg.All[iconKey] === undefined) { - throw "Builtin SVG asset not found: " + iconPath; + throw context + ": builtin SVG asset not found: " + iconPath; } } this.iconSize = this.tr("iconSize", "40,40,center"); @@ -89,7 +89,16 @@ export default class PointRenderingConfig extends WithContextLoader { if (match !== null && Svg.All[match[1] + ".svg"] !== undefined) { const svg = (Svg.All[match[1] + ".svg"] as string) const targetColor = match[2] - const img = new Img(svg.replace(/#000000/g, targetColor), true) + const img = new Img(svg + .replace(/(rgb\(0%,0%,0%\)|#000000|#000)/g, targetColor), true) + .SetStyle(style) + if (isBadge) { + img.SetClass("badge") + } + return img + } else if (Svg.All[htmlSpec + ".svg"] !== undefined) { + const svg = (Svg.All[htmlSpec + ".svg"] as string) + const img = new Img(svg, true) .SetStyle(style) if (isBadge) { img.SetClass("badge") @@ -115,18 +124,15 @@ export default class PointRenderingConfig extends WithContextLoader { } } - public ExtractImages(): Set { - const parts: Set[] = []; - parts.push(this.icon?.ExtractImages(true)); - parts.push( - ...this.iconBadges?.map((overlay) => overlay.then.ExtractImages(true)) - ); - - const allIcons = new Set(); - for (const part of parts) { - part?.forEach(allIcons.add, allIcons); + public GetBaseIcon(tags?: any): BaseUIElement { + tags = tags ?? {id: "node/-1"} + const rotation = Utils.SubstituteKeys(this.rotation?.GetRenderValue(tags)?.txt ?? "0deg", tags) + const htmlDefs = Utils.SubstituteKeys(this.icon?.GetRenderValue(tags)?.txt, tags) + let defaultPin: BaseUIElement = undefined + if (this.label === undefined) { + defaultPin = Svg.teardrop_with_hole_green_svg() } - return allIcons; + return PointRenderingConfig.FromHtmlMulti(htmlDefs, rotation, false, defaultPin) } public GetSimpleIcon(tags: UIEventSource): BaseUIElement { @@ -134,23 +140,15 @@ export default class PointRenderingConfig extends WithContextLoader { if (this.icon === undefined) { return undefined; } - return new VariableUiElement(tags.map(tags => { - const rotation = Utils.SubstituteKeys(self.rotation?.GetRenderValue(tags)?.txt ?? "0deg", tags) - - const htmlDefs = Utils.SubstituteKeys(self.icon.GetRenderValue(tags)?.txt, tags) - let defaultPin: BaseUIElement = undefined - if (self.label === undefined) { - defaultPin = Svg.teardrop_with_hole_green_svg() - } - return PointRenderingConfig.FromHtmlMulti(htmlDefs, rotation, false, defaultPin) - })).SetClass("w-full h-full block") + return new VariableUiElement(tags.map(tags => self.GetBaseIcon(tags))).SetClass("w-full h-full block") } public GenerateLeafletStyle( tags: UIEventSource, clickable: boolean, options?: { - noSize: false | boolean + noSize?: false | boolean, + includeBadges?: true | boolean } ): { @@ -200,7 +198,12 @@ export default class PointRenderingConfig extends WithContextLoader { } - const iconAndBadges = new Combine([this.GetSimpleIcon(tags), this.GetBadges(tags)]) + const icon = this.GetSimpleIcon(tags) + let badges = undefined; + if (options?.includeBadges ?? true) { + badges = this.GetBadges(tags) + } + const iconAndBadges = new Combine([icon, badges]) .SetClass("block relative") if (!options?.noSize) { @@ -209,8 +212,20 @@ export default class PointRenderingConfig extends WithContextLoader { iconAndBadges.SetClass("w-full h-full") } + let label = this.GetLabel(tags) + let htmlEl: BaseUIElement; + if (icon === undefined && label === undefined) { + htmlEl = undefined + } else if (icon === undefined) { + htmlEl = new Combine([label]) + } else if (label === undefined) { + htmlEl = new Combine([iconAndBadges]) + } else { + htmlEl = new Combine([iconAndBadges, label]).SetStyle("flex flex-col") + } + return { - html: new Combine([iconAndBadges, this.GetLabel(tags)]).SetStyle("flex flex-col"), + html: htmlEl, iconSize: [iconW, iconH], iconAnchor: [anchorW, anchorH], popupAnchor: [0, 3 - anchorH], diff --git a/Models/ThemeConfig/PresetConfig.ts b/Models/ThemeConfig/PresetConfig.ts index 9f198289bb..4522d90792 100644 --- a/Models/ThemeConfig/PresetConfig.ts +++ b/Models/ThemeConfig/PresetConfig.ts @@ -1,16 +1,19 @@ import {Translation} from "../../UI/i18n/Translation"; import {Tag} from "../../Logic/Tags/Tag"; +export interface PreciseInput { + preferredBackground?: string[], + snapToLayers?: string[], + maxSnapDistance?: number +} + export default interface PresetConfig { title: Translation, tags: Tag[], description?: Translation, + exampleImages?: string[], /** * If precise input is set, then an extra map is shown in which the user can drag the map to the precise location */ - preciseInput?: { - preferredBackground?: string[], - snapToLayers?: string[], - maxSnapDistance?: number - } + preciseInput?: PreciseInput } \ No newline at end of file diff --git a/Models/ThemeConfig/SourceConfig.ts b/Models/ThemeConfig/SourceConfig.ts index 7cb58124be..0edd9b7b2c 100644 --- a/Models/ThemeConfig/SourceConfig.ts +++ b/Models/ThemeConfig/SourceConfig.ts @@ -5,10 +5,11 @@ export default class SourceConfig { public readonly osmTags?: TagsFilter; public readonly overpassScript?: string; - public readonly geojsonSource?: string; - public readonly geojsonZoomLevel?: number; - public readonly isOsmCacheLayer: boolean; + public geojsonSource?: string; + public geojsonZoomLevel?: number; + public isOsmCacheLayer: boolean; public readonly mercatorCrs: boolean; + public readonly idKey : string constructor(params: { mercatorCrs?: boolean; @@ -17,6 +18,7 @@ export default class SourceConfig { geojsonSource?: string, isOsmCache?: boolean, geojsonSourceLevel?: number, + idKey?: string }, context?: string) { let defined = 0; @@ -47,5 +49,6 @@ export default class SourceConfig { this.geojsonZoomLevel = params.geojsonSourceLevel; this.isOsmCacheLayer = params.isOsmCache ?? false; this.mercatorCrs = params.mercatorCrs ?? false; + this.idKey= params.idKey } } \ No newline at end of file diff --git a/Models/ThemeConfig/TagRenderingConfig.ts b/Models/ThemeConfig/TagRenderingConfig.ts index c1374b7eef..f0e797aae5 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 @@ -14,34 +19,41 @@ import {Tag} from "../../Logic/Tags/Tag"; */ export default class TagRenderingConfig { - readonly id: string; - readonly group: string; - readonly render?: Translation; - readonly question?: Translation; - readonly condition?: TagsFilter; + public readonly id: string; + public readonly group: string; + public readonly render?: Translation; + public readonly question?: Translation; + public readonly condition?: TagsFilter; - readonly configuration_warnings: string[] = [] + public readonly configuration_warnings: string[] = [] - readonly freeform?: { + public readonly freeform?: { readonly key: string, readonly type: string, + readonly placeholder: Translation, readonly addExtraTags: TagsFilter[]; readonly inline: boolean, readonly default?: string, readonly helperArgs?: (string | number | boolean)[] }; - readonly multiAnswer: boolean; + public readonly multiAnswer: boolean; - readonly mappings?: { + public readonly mappings?: { readonly if: TagsFilter, readonly ifnot?: TagsFilter, - readonly then: Translation + readonly then: Translation, + readonly icon: string, + readonly iconClass: string readonly hideInAnswer: boolean | TagsFilter readonly addExtraTags: Tag[] }[] + public readonly labels: string[] constructor(json: string | TagRenderingConfigJson, context?: string) { + if (json === undefined) { + throw "Initing a TagRenderingConfig with undefined in " + context; + } if (json === "questions") { // Very special value @@ -55,14 +67,10 @@ export default class TagRenderingConfig { if (typeof json === "number") { - this.render = Translations.T("" + json, context + ".render") - return; + json = "" + json } - if (json === undefined) { - throw "Initing a TagRenderingConfig with undefined in " + context; - } if (typeof json === "string") { this.render = Translations.T(json, context + ".render"); this.multiAnswer = false; @@ -70,12 +78,14 @@ export default class TagRenderingConfig { } - this.id = json.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 + 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 } - + + this.group = json.group ?? ""; + this.labels = json.labels ?? [] this.render = Translations.T(json.render, context + ".render"); this.question = Translations.T(json.question, context + ".question"); this.condition = TagUtils.Tag(json.condition ?? {"and": []}, `${context}.condition`); @@ -84,9 +94,21 @@ export default class TagRenderingConfig { if (json.freeform.addExtraTags !== undefined && json.freeform.addExtraTags.map === undefined) { throw `Freeform.addExtraTags should be a list of strings - not a single string (at ${context})` } + const type = json.freeform.type ?? "string" + + let placeholder = Translations.T(json.freeform.placeholder) + if (placeholder === undefined) { + const typeDescription = Translations.t.validation[type]?.description + placeholder = Translations.T(json.freeform.key+" ("+type+")") + if(typeDescription !== undefined){ + placeholder = placeholder.Fuse(typeDescription, type) + } + } + this.freeform = { key: json.freeform.key, - type: json.freeform.type ?? "string", + type, + placeholder, addExtraTags: json.freeform.addExtraTags?.map((tg, i) => TagUtils.Tag(tg, `${context}.extratag[${i}]`)) ?? [], inline: json.freeform.inline ?? false, @@ -104,16 +126,16 @@ export default class TagRenderingConfig { throw `Freeform.args is defined. This should probably be 'freeform.helperArgs' (at ${context})` } - - if(json.freeform.key === "questions"){ - if(this.id !== "questions"){ + + if (json.freeform.key === "questions") { + if (this.id !== "questions") { throw `If you use a freeform key 'questions', the ID must be 'questions' too to trigger the special behaviour. The current id is '${this.id}' (at ${context})` } } - if (ValidatedTextField.AllTypes[this.freeform.type] === undefined) { - const knownKeys = ValidatedTextField.tpList.map(tp => tp.name).join(", "); + if (!ValidatedTextField.ForType(this.freeform.key) === undefined) { + const knownKeys = ValidatedTextField.AvailableTypes().join(", "); throw `Freeform.key ${this.freeform.key} is an invalid type. Known keys are ${knownKeys}` } if (this.freeform.addExtraTags) { @@ -158,11 +180,23 @@ export default class TagRenderingConfig { } else if (mapping.hideInAnswer !== undefined) { hideInAnswer = TagUtils.Tag(mapping.hideInAnswer, `${context}.mapping[${i}].hideInAnswer`); } + let icon = undefined; + let iconClass = "small" + if(mapping.icon !== undefined){ + if (typeof mapping.icon === "string" && mapping.icon !== "") { + icon = mapping.icon + }else{ + icon = mapping.icon["path"] + iconClass = mapping.icon["class"] ?? iconClass + } + } const mp = { if: TagUtils.Tag(mapping.if, `${ctx}.if`), ifnot: (mapping.ifnot !== undefined ? TagUtils.Tag(mapping.ifnot, `${ctx}.ifnot`) : undefined), then: Translations.T(mapping.then, `${ctx}.then`), - hideInAnswer: hideInAnswer, + hideInAnswer, + icon, + iconClass, addExtraTags: (mapping.addExtraTags ?? []).map((str, j) => TagUtils.SimpleTag(str, `${ctx}.addExtraTags[${j}]`)) }; if (this.question) { @@ -185,53 +219,52 @@ export default class TagRenderingConfig { if (this.id === "questions" && this.render !== undefined) { for (const ln in this.render.translations) { - const txt :string = this.render.translations[ln] - if(txt.indexOf("{questions}") >= 0){ + const txt: string = this.render.translations[ln] + if (txt.indexOf("{questions}") >= 0) { continue } throw `${context}: The rendering for language ${ln} does not contain {questions}. This is a bug, as this rendering should include exactly this to trigger those questions to be shown!` } - if(this.freeform?.key !== undefined && this.freeform?.key !== "questions"){ + if (this.freeform?.key !== undefined && this.freeform?.key !== "questions") { throw `${context}: If the ID is questions to trigger a question box, the only valid freeform value is 'questions' as well. Set freeform to questions or remove the freeform all together` } } if (this.freeform) { - if(this.render === undefined){ + if (this.render === undefined) { throw `${context}: Detected a freeform key without rendering... Key: ${this.freeform.key} in ${context}` } for (const ln in this.render.translations) { - const txt :string = this.render.translations[ln] - if(txt === ""){ - throw context+" Rendering for language "+ln+" is empty" + const txt: string = this.render.translations[ln] + if (txt === "") { + throw context + " Rendering for language " + ln + " is empty" } - if(txt.indexOf("{"+this.freeform.key+"}") >= 0){ + if (txt.indexOf("{" + this.freeform.key + "}") >= 0) { continue } - if(txt.indexOf("{"+this.freeform.key+":") >= 0){ + if (txt.indexOf("{" + this.freeform.key + ":") >= 0) { continue } - if(txt.indexOf("{canonical("+this.freeform.key+")") >= 0){ + if (txt.indexOf("{canonical(" + this.freeform.key + ")") >= 0) { continue } - if(this.freeform.type === "opening_hours" && txt.indexOf("{opening_hours_table(") >= 0){ + if (this.freeform.type === "opening_hours" && txt.indexOf("{opening_hours_table(") >= 0) { continue } - if(this.freeform.type === "wikidata" && txt.indexOf("{wikipedia("+this.freeform.key) >= 0){ + if (this.freeform.type === "wikidata" && txt.indexOf("{wikipedia(" + this.freeform.key) >= 0) { continue } - if(this.freeform.key === "wikidata" && txt.indexOf("{wikipedia()") >= 0){ + if (this.freeform.key === "wikidata" && txt.indexOf("{wikipedia()") >= 0) { continue } throw `${context}: The rendering for language ${ln} does not contain the freeform key {${this.freeform.key}}. This is a bug, as this rendering should show exactly this freeform key!\nThe rendering is ${txt} ` - + } } - if (this.render && this.question && this.freeform === undefined) { throw `${context}: Detected a tagrendering which takes input without freeform key in ${context}; the question is ${this.question.txt}` } @@ -305,7 +338,8 @@ export default class TagRenderingConfig { const free = this.freeform?.key if (free !== undefined) { - return tags[free] !== undefined + const value = tags[free] + return value !== undefined && value !== "" } return false @@ -325,18 +359,18 @@ export default class TagRenderingConfig { * @param tags * @constructor */ - public GetRenderValues(tags: any): Translation[] { + public GetRenderValues(tags: any): { then: Translation, icon?: string, iconClass?: string }[] { if (!this.multiAnswer) { - return [this.GetRenderValue(tags)] + return [this.GetRenderValueWithImage(tags)] } // A flag to check that the freeform key isn't matched multiple times // If it is undefined, it is "used" already, or at least we don't have to check for it anymore let freeformKeyUsed = this.freeform?.key === undefined; // We run over all the mappings first, to check if the mapping matches - const applicableMappings: Translation[] = Utils.NoNull((this.mappings ?? [])?.map(mapping => { + const applicableMappings: { then: Translation, img?: string }[] = Utils.NoNull((this.mappings ?? [])?.map(mapping => { if (mapping.if === undefined) { - return mapping.then; + return mapping; } if (TagUtils.MatchesMultiAnswer(mapping.if, tags)) { if (!freeformKeyUsed) { @@ -345,7 +379,7 @@ export default class TagRenderingConfig { freeformKeyUsed = true; } } - return mapping.then; + return mapping; } return undefined; })) @@ -353,53 +387,139 @@ export default class TagRenderingConfig { if (!freeformKeyUsed && tags[this.freeform.key] !== undefined) { - applicableMappings.push(this.render) + applicableMappings.push({then: this.render}) } return applicableMappings } + public GetRenderValue(tags: any, defltValue: any = undefined): Translation { + return this.GetRenderValueWithImage(tags, defltValue).then + } + /** * Gets the correct rendering value (or undefined if not known) * Not compatible with multiAnswer - use GetRenderValueS instead in that case * @constructor */ - public GetRenderValue(tags: any, defltValue: any = undefined): Translation { + public GetRenderValueWithImage(tags: any, defltValue: any = undefined): { then: Translation, icon?: string } { if (this.mappings !== undefined && !this.multiAnswer) { for (const mapping of this.mappings) { if (mapping.if === undefined) { - return mapping.then; + return mapping; } if (mapping.if.matchesProperties(tags)) { - return mapping.then; + return mapping; } } } - if(this.id === "questions"){ - return this.render + if (this.id === "questions" || + this.freeform?.key === undefined || + tags[this.freeform.key] !== undefined + ) { + return {then: this.render} } - if (this.freeform?.key === undefined) { - return this.render; - } - - if (tags[this.freeform.key] !== undefined) { - return this.render; - } - return defltValue; + return {then: defltValue}; } - public ExtractImages(isIcon: boolean): Set { - - const usedIcons = new Set() - this.render?.ExtractImages(isIcon)?.forEach(usedIcons.add, usedIcons) - - for (const mapping of this.mappings ?? []) { - mapping.then.ExtractImages(isIcon).forEach(usedIcons.add, usedIcons) + /** + * Gets all translations that might be rendered in all languages + * USed for static analysis + * @constructor + * @private + */ + EnumerateTranslations(): Translation[] { + const translations: Translation[] = [] + for (const key in this) { + if (!this.hasOwnProperty(key)) { + continue; + } + const o = this[key] + if (o instanceof Translation) { + translations.push(o) + } } - - return usedIcons; + return translations; } + 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 ed9e2580a2..5f59e65c84 100644 --- a/Models/ThemeConfig/WithContextLoader.ts +++ b/Models/ThemeConfig/WithContextLoader.ts @@ -1,15 +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) { - return SharedTagRenderings.SharedTagRenderingJson.get(id) -} constructor(json: any, context: string) { this._json = json; @@ -48,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) { @@ -64,43 +59,21 @@ export default class WithContextLoader { } const context = this._context - const renderings: TagRenderingConfig[] = [] options = options ?? {} if (options.prepConfig === undefined) { options.prepConfig = c => c } + const renderings: TagRenderingConfig[] = [] for (let i = 0; i < tagRenderings.length; i++) { - let renderingJson = tagRenderings[i] - if (typeof renderingJson === "string") { - renderingJson = {builtin: renderingJson, override: undefined} + 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 (renderingJson["builtin"] !== undefined) { - const renderingId = renderingJson["builtin"] - let sharedJson = WithContextLoader.getKnownTagRenderings(renderingId) - if (sharedJson === undefined) { - 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"}`; - } - if (renderingJson["override"] !== undefined) { - sharedJson = Utils.Merge(renderingJson["override"], JSON.parse(JSON.stringify(sharedJson))) - } - renderingJson = sharedJson - } - - - const patchedConfig = options.prepConfig(renderingJson) - - const tr = new TagRenderingConfig(patchedConfig, `${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.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/README.md b/README.md index cd024056a1..ae266060b1 100644 --- a/README.md +++ b/README.md @@ -21,8 +21,8 @@ sent back to directly to OpenStreetMap. Furthermore, it shows images present in the `image` tag or, if a `wikidata` or `wikimedia_commons`-tag is present, it follows those to get these images too. -**An explicit non-goal** of MapComplete is to modify geometries of ways. Although adding a point to a way or splitting a -way in two parts might be added one day. +**An explicit non-goal** of MapComplete is to modify geometries of ways, especially generic geometry-editing. (Splitting +roads is possible and in some restricted themes is geometry-conflation possible too) **More about MapComplete:** [Watch Pieter's talk on the 2021 State Of The Map Conference](https://media.ccc.de/v/sotm2021-9448-introduction-and-review-of-mapcomplete) ([YouTube](https://www.youtube.com/watch?v=zTtMn6fNbYY)) @@ -36,15 +36,15 @@ It is possible to quickly make and distribute your own theme ## Examples -- [An overview of all official themes](https://pietervdvn.github.io/mc/develop/index.html). +- [An overview of all official themes](https://mapcomplete.osm.be). - [Buurtnatuur.be](http://buurtnatuur.be), developed for the Belgian [Green party](https://www.groen.be/). They also funded the initial development! -- [Cyclofix](https://pietervdvn.github.io/MapComplete/index.html?layout=cyclofix), further development +- [Cyclofix](https://mapcomplete.osm.be/cyclofix.html), further development on [Open Summer of Code](https://summerofcode.be/) funded by [Brussels Mobility](https://mobilite-mobiliteit.brussels/en). Landing page at https://cyclofix.osm.be/ -- [Bookcases](https://pietervdvn.github.io/MapComplete/index.html?quests=bookcases#element) cause I like to collect +- [Bookcases](https://mapcomplete.osm.be/bookcases.html) cause I like to collect them. -- [Map of Maps](https://pietervdvn.github.io/MapComplete/index.html?layout=maps&z=14&lat=50.650&lon=4.2668#element), +- [Map of Maps](https://mapcomplete.osm.be/maps.html), after a tweet There are plenty more. [Discover them in the app](https://mapcomplete.osm.be/index.html). diff --git a/UI/AllThemesGui.ts b/UI/AllThemesGui.ts index 0113ddbc1f..eb5e738f1d 100644 --- a/UI/AllThemesGui.ts +++ b/UI/AllThemesGui.ts @@ -1,30 +1,48 @@ +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"; import FeaturedMessage from "./BigComponents/FeaturedMessage"; +import Toggle from "./Input/Toggle"; +import {SubtleButton} from "./Base/SubtleButton"; +import {VariableUiElement} from "./Base/VariableUIElement"; +import Svg from "../Svg"; export default class AllThemesGui { constructor() { - try { new FixedUiElement("").AttachTo("centermessage") - const state = new UserRelatedState(undefined, undefined); + const state = new UserRelatedState(undefined); const intro = new Combine([ + LanguagePicker.CreateLanguagePicker(Translations.t.index.title.SupportedLanguages()) - .SetClass("absolute top-2 right-3"), + + .SetClass("flex absolute top-2 right-3"), new IndexText() ]); new Combine([ intro, - new FeaturedMessage(), + new FeaturedMessage().SetClass("mb-4 block"), new MoreScreen(state, true), + new Toggle( + undefined, + new SubtleButton(undefined, Translations.t.index.logIn).SetStyle("height:min-content").onClick(() => state.osmConnection.AttemptLogin()), + state.osmConnection.isLoggedIn), + new VariableUiElement(state.osmConnection.userDetails.map(ud => { + if (ud.csCount < Constants.userJourney.importHelperUnlock) { + return undefined; + } + return new Combine([ + new SubtleButton(undefined, Translations.t.importHelper.title, {url: "import_helper.html"}), + new SubtleButton(Svg.note_svg(), Translations.t.importInspector.title, {url: "import_viewer.html"}) + ]).SetClass("p-4 border-2 border-gray-500 m-4 block") + })), Translations.t.general.aboutMapcomplete .Subs({"osmcha_link": Utils.OsmChaLinkFor(7)}) .SetClass("link-underline"), @@ -33,6 +51,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 new file mode 100644 index 0000000000..bc69b44769 --- /dev/null +++ b/UI/AutomatonGui.ts @@ -0,0 +1,379 @@ +import BaseUIElement from "./BaseUIElement"; +import Combine from "./Base/Combine"; +import Svg from "../Svg"; +import Title from "./Base/Title"; +import Toggle from "./Input/Toggle"; +import {SubtleButton} from "./Base/SubtleButton"; +import LayoutConfig from "../Models/ThemeConfig/LayoutConfig"; +import ValidatedTextField from "./Input/ValidatedTextField"; +import {Utils} from "../Utils"; +import {UIEventSource} from "../Logic/UIEventSource"; +import {VariableUiElement} from "./Base/VariableUIElement"; +import {FixedUiElement} from "./Base/FixedUiElement"; +import {Tiles} from "../Models/TileRange"; +import {LocalStorageSource} from "../Logic/Web/LocalStorageSource"; +import {DropDown} from "./Input/DropDown"; +import {AllKnownLayouts} from "../Customizations/AllKnownLayouts"; +import MinimapImplementation from "./Base/MinimapImplementation"; +import {OsmConnection} from "../Logic/Osm/OsmConnection"; +import {BBox} from "../Logic/BBox"; +import MapState from "../Logic/State/MapState"; +import FeaturePipeline from "../Logic/FeatureSource/FeaturePipeline"; +import LayerConfig from "../Models/ThemeConfig/LayerConfig"; +import TagRenderingConfig from "../Models/ThemeConfig/TagRenderingConfig"; +import FeatureSource from "../Logic/FeatureSource/FeatureSource"; +import List from "./Base/List"; +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 { + private static readonly openChangeset = new UIEventSource(undefined); + + constructor(layoutToUse: LayoutConfig, indices: number[], extraCommentText: UIEventSource, tagRenderingToAutomate: { layer: LayerConfig, tagRendering: TagRenderingConfig }) { + const layerId = tagRenderingToAutomate.layer.id + const trId = tagRenderingToAutomate.tagRendering.id + const tileState = LocalStorageSource.GetParsed("automation-tile_state-" + layerId + "-" + trId, {}) + const logMessages = new UIEventSource([]) + if (indices === undefined) { + throw ("No tiles loaded - can not automate") + } + const openChangeset = AutomationPanel.openChangeset; + + openChangeset.addCallbackAndRun(cs => console.trace("Sync current open changeset to:", cs)) + + const nextTileToHandle = tileState.map(handledTiles => { + for (const index of indices) { + if (handledTiles[index] !== undefined) { + // Already handled + continue + } + return index + } + return undefined + }) + nextTileToHandle.addCallback(t => console.warn("Next tile to handle is", t)) + + const neededTimes = new UIEventSource([]) + const automaton = new VariableUiElement(nextTileToHandle.map(tileIndex => { + if (tileIndex === undefined) { + return new FixedUiElement("All done!").SetClass("thanks") + } + console.warn("Triggered map on nextTileToHandle", tileIndex) + const start = new Date() + return AutomationPanel.TileHandler(layoutToUse, tileIndex, layerId, tagRenderingToAutomate.tagRendering, extraCommentText, + openChangeset, + (result, logMessage) => { + const end = new Date() + const timeNeeded = (end.getTime() - start.getTime()) / 1000; + neededTimes.data.push(timeNeeded) + neededTimes.ping() + tileState.data[tileIndex] = result + tileState.ping(); + if (logMessage !== undefined) { + logMessages.data.push(logMessage) + logMessages.ping(); + } + }); + })) + + + const statistics = new VariableUiElement(tileState.map(states => { + let total = 0 + const perResult = new Map() + for (const key in states) { + total++ + const result = states[key] + perResult.set(result, (perResult.get(result) ?? 0) + 1) + } + + let sum = 0 + neededTimes.data.forEach(v => { + sum = sum + v + }) + let timePerTile = sum / neededTimes.data.length + + return new Combine(["Handled " + total + "/" + indices.length + " tiles: ", + new List(Array.from(perResult.keys()).map(key => key + ": " + perResult.get(key))), + "Handling one tile needs " + (Math.floor(timePerTile * 100) / 100) + "s on average. Estimated time left: " + Utils.toHumanTime((indices.length - total) * timePerTile) + ]).SetClass("flex flex-col") + })) + + super([statistics, automaton, + new SubtleButton(undefined, "Clear fixed").onClick(() => { + const st = tileState.data + for (const tileIndex in st) { + if (st[tileIndex] === "fixed") { + delete st[tileIndex] + } + } + + tileState.ping(); + }), + new VariableUiElement(logMessages.map(logMessages => new List(logMessages)))]) + this.SetClass("flex flex-col") + } + + private static TileHandler(layoutToUse: LayoutConfig, tileIndex: number, targetLayer: string, targetAction: TagRenderingConfig, extraCommentText: UIEventSource, + openChangeset: UIEventSource, + whenDone: ((result: string, logMessage?: string) => void)): BaseUIElement { + + const state = new MapState(layoutToUse, {attemptLogin: false}) + extraCommentText.syncWith(state.changes.extraComment) + const [z, x, y] = Tiles.tile_from_index(tileIndex) + state.locationControl.setData({ + zoom: z, + lon: x, + lat: y + }) + state.currentBounds.setData( + BBox.fromTileIndex(tileIndex) + ) + + let targetTiles: UIEventSource = new UIEventSource([]) + const pipeline = new FeaturePipeline((tile => { + const layerId = tile.layer.layerDef.id + if (layerId === targetLayer) { + targetTiles.data.push(tile) + targetTiles.ping() + } + }), state) + + state.locationControl.ping(); + state.currentBounds.ping(); + const stateToShow = new UIEventSource("") + + pipeline.runningQuery.map( + async isRunning => { + if (targetTiles.data.length === 0) { + stateToShow.setData("No data loaded yet...") + return; + } + if (isRunning) { + stateToShow.setData("Waiting for all layers to be loaded... Has " + targetTiles.data.length + " tiles already") + return; + } + if (targetTiles.data.length === 0) { + stateToShow.setData("No features found to apply the action") + whenDone("empty") + return true; + } + stateToShow.setData("Gathering applicable elements") + + let handled = 0 + let inspected = 0 + let log = [] + for (const targetTile of targetTiles.data) { + + for (const ffs of targetTile.features.data) { + inspected++ + if (inspected % 10 === 0) { + stateToShow.setData("Inspected " + inspected + " features, updated " + handled + " features") + } + const feature = ffs.feature + const renderingTr = targetAction.GetRenderValue(feature.properties) + const rendering = renderingTr.txt + log.push("" + feature.properties.id + ": " + new SubstitutedTranslation(renderingTr, new UIEventSource(feature.properties), undefined).ConstructElement().innerText) + const actions = Utils.NoNull(SubstitutedTranslation.ExtractSpecialComponents(rendering) + .map(obj => obj.special)) + for (const action of actions) { + const auto = action.func + if (auto.supportsAutoAction !== true) { + continue + } + + await auto.applyActionOn({ + layoutToUse: state.layoutToUse, + changes: state.changes + }, state.allElements.getEventSourceById(feature.properties.id), action.args) + handled++ + } + } + } + stateToShow.setData("Done! Inspected " + inspected + " features, updated " + handled + " features") + + if (inspected === 0) { + whenDone("empty") + return true; + } + + if (handled === 0) { + whenDone("no-action", "Inspected " + inspected + " elements: " + log.join("; ")) + } else { + state.osmConnection.AttemptLogin() + state.changes.flushChanges("handled tile automatically, time to flush!", openChangeset) + whenDone("fixed", "Updated " + handled + " elements, inspected " + inspected + ": " + log.join("; ")) + } + return true; + + }, [targetTiles]) + + return new Combine([ + new Title("Performing action for tile " + tileIndex, 1), + new VariableUiElement(stateToShow)]).SetClass("flex flex-col") + } + +} + + +class AutomatonGui { + + constructor() { + + const osmConnection = new OsmConnection({ + singlePage: false, + oauth_token: QueryParameters.GetQueryParameter("oauth_token", "OAuth token") + }); + + new Combine([ + new Combine([Svg.robot_svg().SetClass("w-24 h-24 p-4 rounded-full subtle-background"), + new Combine([new Title("MapComplete Automaton", 1), + "This page helps to automate certain tasks for a theme. Expert use only." + ]).SetClass("flex flex-col m-4") + ]).SetClass("flex"), + new Toggle( + AutomatonGui.GenerateMainPanel(), + new SubtleButton(Svg.osm_logo_svg(), "Login to get started").onClick(() => osmConnection.AttemptLogin()), + osmConnection.isLoggedIn + )]).SetClass("block p-4") + .AttachTo("main") + } + + + private static GenerateMainPanel(): BaseUIElement { + + const themeSelect = new DropDown("Select a theme", + Array.from(themeOverview).map(l => ({value: l.id, shown: l.id})) + ) + + LocalStorageSource.Get("automation-theme-id", "missing_streets").syncWith(themeSelect.GetValue()) + + const tilepath = ValidatedTextField.ForType("url").ConstructInputElement({ + placeholder: "Specifiy the path of the overview", + inputStyle: "width: 100%" + }) + tilepath.SetClass("w-full") + LocalStorageSource.Get("automation-tile_path").syncWith(tilepath.GetValue(), true) + + + let tilesToRunOver = tilepath.GetValue().bind(path => { + if (path === undefined) { + return undefined + } + return UIEventSource.FromPromiseWithErr(Utils.downloadJsonCached(path, 1000 * 60 * 60)) + }) + + const targetZoom = 14 + + const tilesPerIndex = tilesToRunOver.map(tiles => { + + if (tiles === undefined || tiles["error"] !== undefined) { + return undefined + } + let indexes: number[] = []; + const tilesS = tiles["success"] + DynamicGeoJsonTileSource.RegisterWhitelist(tilepath.GetValue().data, tilesS) + const z = Number(tilesS["zoom"]) + for (const key in tilesS) { + if (key === "zoom") { + continue + } + const x = Number(key) + const ys = tilesS[key] + indexes.push(...ys.map(y => Tiles.tile_index(z, x, y))) + } + + console.log("Got ", indexes.length, "indexes") + let rezoomed = new Set() + for (const index of indexes) { + let [z, x, y] = Tiles.tile_from_index(index) + while (z > targetZoom) { + z-- + x = Math.floor(x / 2) + y = Math.floor(y / 2) + } + rezoomed.add(Tiles.tile_index(z, x, y)) + } + + + return Array.from(rezoomed) + }) + + const extraComment = ValidatedTextField.ForType("text").ConstructInputElement() + LocalStorageSource.Get("automaton-extra-comment").syncWith(extraComment.GetValue()) + + return new Combine([ + themeSelect, + "Specify the path to a tile overview. This is a hosted .json of the format {x : [y0, y1, y2], x1: [y0, ...]} where x is a string and y are numbers", + tilepath, + "Add an extra comment:", + extraComment, + new VariableUiElement(extraComment.GetValue().map(c => "Your comment is " + (c?.length ?? 0) + "/200 characters long")).SetClass("subtle"), + new VariableUiElement(tilesToRunOver.map(t => { + if (t === undefined) { + return "No path given or still loading..." + } + if (t["error"] !== undefined) { + return new FixedUiElement("Invalid URL or data: " + t["error"]).SetClass("alert") + } + + return new FixedUiElement("Loaded " + tilesPerIndex.data.length + " tiles to automated over").SetClass("thanks") + })), + new VariableUiElement(themeSelect.GetValue().map(id => AllKnownLayouts.allKnownLayouts.get(id)).map(layoutToUse => { + if (layoutToUse === undefined) { + return new FixedUiElement("Select a valid layout") + } + if (tilesPerIndex.data === undefined || tilesPerIndex.data.length === 0) { + return "No tiles given" + } + + const automatableTagRenderings: { layer: LayerConfig, tagRendering: TagRenderingConfig }[] = [] + for (const layer of layoutToUse.layers) { + for (const tagRendering of layer.tagRenderings) { + if (tagRendering.group === "auto") { + automatableTagRenderings.push({layer, tagRendering: tagRendering}) + } + } + } + console.log("Automatable tag renderings:", automatableTagRenderings) + if (automatableTagRenderings.length === 0) { + return new FixedUiElement('This theme does not have any tagRendering with "group": "auto" set').SetClass("alert") + } + const pickAuto = new DropDown("Pick the action to automate", + [ + { + value: undefined, + shown: "Pick an option" + }, + ...automatableTagRenderings.map(config => ( + { + shown: config.layer.id + " - " + config.tagRendering.id, + value: config + } + )) + ] + ) + + + return new Combine([ + pickAuto, + new VariableUiElement(pickAuto.GetValue().map(auto => auto === undefined ? undefined : new AutomationPanel(layoutToUse, tilesPerIndex.data, extraComment.GetValue(), auto)))]) + + }, [tilesPerIndex])).SetClass("flex flex-col") + + + ]).SetClass("flex flex-col") + + + } + +} + + +MinimapImplementation.initialize() + +new AutomatonGui() + diff --git a/UI/Base/Combine.ts b/UI/Base/Combine.ts index e714092f62..87eb30f5b4 100644 --- a/UI/Base/Combine.ts +++ b/UI/Base/Combine.ts @@ -17,15 +17,27 @@ 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() { + super.Destroy(); + for (const uiElement of this.uiElements) { + uiElement.Destroy() + } + } + + public getElements(): BaseUIElement[] { + return this.uiElements } protected InnerConstructElement(): HTMLElement { const el = document.createElement("span") - try { - - for (const subEl of this.uiElements) { if (subEl === undefined || subEl === null) { continue; @@ -49,4 +61,5 @@ export default class Combine extends BaseUIElement { return el; } + } \ No newline at end of file diff --git a/UI/Base/FixedUiElement.ts b/UI/Base/FixedUiElement.ts index f221ba7edc..4600d26ff6 100644 --- a/UI/Base/FixedUiElement.ts +++ b/UI/Base/FixedUiElement.ts @@ -1,25 +1,26 @@ import BaseUIElement from "../BaseUIElement"; export class FixedUiElement extends BaseUIElement { - private _html: string; + public readonly content: string; constructor(html: string) { super(); - this._html = html ?? ""; + this.content = html ?? ""; } InnerRender(): string { - return this._html; + return this.content; } AsMarkdown(): string { - return this._html; + return this.content; } protected InnerConstructElement(): HTMLElement { const e = document.createElement("span") - e.innerHTML = this._html + 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..96d93593e3 100644 --- a/UI/Base/Img.ts +++ b/UI/Base/Img.ts @@ -29,6 +29,18 @@ export default class Img extends BaseUIElement { return ``; } + 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 + ")"; + } + protected InnerConstructElement(): HTMLElement { const self = this; if (this._rawSvg) { diff --git a/UI/Base/LeftIndex.ts b/UI/Base/LeftIndex.ts new file mode 100644 index 0000000000..9cd61c6c25 --- /dev/null +++ b/UI/Base/LeftIndex.ts @@ -0,0 +1,25 @@ +import BaseUIElement from "../BaseUIElement"; +import Combine from "./Combine"; +import BackToIndex from "../BigComponents/BackToIndex"; + +export default class LeftIndex extends Combine { + + + constructor(leftContents: BaseUIElement[], mainContent: BaseUIElement, options?: { + hideBackButton: false | boolean + }) { + + let back: BaseUIElement = undefined; + if (options?.hideBackButton ?? true) { + back = new BackToIndex() + } + super([ + new Combine([ + new Combine([back, ...leftContents]).SetClass("sticky top-4"), + ]).SetClass("ml-4 block w-full md:w-2/6 lg:w-1/6"), + mainContent.SetClass("m-8 w-full mb-24") + ]) + this.SetClass("h-full block md:flex") + } + +} \ No newline at end of file diff --git a/UI/Base/Link.ts b/UI/Base/Link.ts index cf5f41a9fd..d0c40faa42 100644 --- a/UI/Base/Link.ts +++ b/UI/Base/Link.ts @@ -13,9 +13,23 @@ 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" + } } + 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) + } + AsMarkdown(): string { // @ts-ignore return `[${this._embeddedShow.AsMarkdown()}](${this._href.data ?? this._href})`; diff --git a/UI/Base/List.ts b/UI/Base/List.ts index 248d210836..b2e4e8f268 100644 --- a/UI/Base/List.ts +++ b/UI/Base/List.ts @@ -10,7 +10,7 @@ export default class List extends BaseUIElement { super(); this._ordered = ordered; this.uiElements = Utils.NoNull(uiElements) - .map(Translations.W); + .map(s => Translations.W(s)); } AsMarkdown(): string { diff --git a/UI/Base/Loading.ts b/UI/Base/Loading.ts index e577f28471..835670534b 100644 --- a/UI/Base/Loading.ts +++ b/UI/Base/Loading.ts @@ -1,14 +1,16 @@ -import {Translation} from "../i18n/Translation"; import Combine from "./Combine"; import Svg from "../../Svg"; import Translations from "../i18n/Translations"; +import BaseUIElement from "../BaseUIElement"; export default class Loading extends Combine { - constructor(msg?: Translation | string) { - const t = Translations.T(msg) ?? Translations.t.general.loading.Clone(); + constructor(msg?: BaseUIElement | string) { + const t = Translations.W(msg) ?? Translations.t.general.loading; t.SetClass("pl-2") super([ - Svg.loading_svg().SetClass("animate-spin").SetStyle("width: 1.5rem; height: 1.5rem;"), + Svg.loading_svg() + .SetClass("animate-spin self-center") + .SetStyle("width: 1.5rem; height: 1.5rem; min-width: 1.5rem;"), t ]) this.SetClass("flex p-1") diff --git a/UI/Base/Minimap.ts b/UI/Base/Minimap.ts index 1a0fd4c029..03480a61ca 100644 --- a/UI/Base/Minimap.ts +++ b/UI/Base/Minimap.ts @@ -13,15 +13,19 @@ export interface MinimapOptions { attribution?: BaseUIElement | boolean, onFullyLoaded?: (leaflet: L.Map) => void, leafletMap?: UIEventSource, - lastClickLocation?: UIEventSource<{ lat: number, lon: number }> + lastClickLocation?: UIEventSource<{ lat: number, lon: number }>, + addLayerControl?: boolean | false } export interface MinimapObj { readonly leafletMap: UIEventSource, + readonly location: UIEventSource; + readonly bounds: UIEventSource; installBounds(factor: number | BBox, showRange?: boolean): void TakeScreenshot(): Promise; + } export default class Minimap { @@ -30,11 +34,15 @@ export default class Minimap { * importing leaflet crashes node-ts, which is pretty annoying considering the fact that a lot of scripts use it */ + private constructor() { + } + /** * Construct a minimap */ - public static createMiniMap: (options: MinimapOptions) => (BaseUIElement & MinimapObj) = (_) => { + public static createMiniMap: (options?: MinimapOptions) => (BaseUIElement & MinimapObj) = (_) => { throw "CreateMinimap hasn't been initialized yet. Please call MinimapImplementation.initialize()" } + } \ No newline at end of file diff --git a/UI/Base/MinimapImplementation.ts b/UI/Base/MinimapImplementation.ts index 3ade20f176..4a240bd56b 100644 --- a/UI/Base/MinimapImplementation.ts +++ b/UI/Base/MinimapImplementation.ts @@ -10,52 +10,59 @@ import Minimap, {MinimapObj, MinimapOptions} from "./Minimap"; import {BBox} from "../../Logic/BBox"; import 'leaflet-polylineoffset' import {SimpleMapScreenshoter} from "leaflet-simple-map-screenshoter"; +import BackgroundMapSwitch from "../BigComponents/BackgroundMapSwitch"; +import AvailableBaseLayersImplementation from "../../Logic/Actors/AvailableBaseLayersImplementation"; export default class MinimapImplementation extends BaseUIElement implements MinimapObj { private static _nextId = 0; public readonly leafletMap: UIEventSource + public readonly location: UIEventSource; + public readonly bounds: UIEventSource | undefined; private readonly _id: string; private readonly _background: UIEventSource; - private readonly _location: UIEventSource; private _isInited = false; private _allowMoving: boolean; 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) { + private constructor(options?: MinimapOptions) { super() options = options ?? {} this.leafletMap = options.leafletMap ?? new UIEventSource(undefined) this._background = options?.background ?? new UIEventSource(AvailableBaseLayers.osmCarto) - this._location = options?.location ?? new UIEventSource({lat: 0, lon: 0, zoom: 1}) - this._bounds = options?.bounds; + this.location = options?.location ?? new UIEventSource({lat: 0, lon: 0, zoom: 1}) + this.bounds = options?.bounds; this._id = "minimap" + MinimapImplementation._nextId; this._allowMoving = options.allowMoving ?? true; this._leafletoptions = options.leafletOptions ?? {} this._onFullyLoaded = options.onFullyLoaded this._attribution = options.attribution - this._lastClickLocation = options.lastClickLocation; + this._addLayerControl = options.addLayerControl ?? false + this._options = options MinimapImplementation._nextId++ + this.SetClass("relative") } public static initialize() { + AvailableBaseLayers.implement(new AvailableBaseLayersImplementation()) Minimap.createMiniMap = options => new MinimapImplementation(options) } public installBounds(factor: number | BBox, showRange?: boolean) { this.leafletMap.addCallbackD(leaflet => { - let bounds; + let bounds : {getEast(), getNorth(), getWest(), getSouth()}; if (typeof factor === "number") { - bounds = leaflet.getBounds() - leaflet.setMaxBounds(bounds.pad(factor)) + const lbounds = leaflet.getBounds().pad(factor) + leaflet.setMaxBounds(lbounds) + bounds = lbounds; } else { // @ts-ignore leaflet.setMaxBounds(factor.toLeaflet()) - bounds = leaflet.getBounds() + bounds = factor } if (showRange) { @@ -94,15 +101,24 @@ export default class MinimapImplementation extends BaseUIElement implements Mini // @ts-ignore L.geoJSON(data, { style: { - color: "#f00", - weight: 2, - opacity: 0.4 + color: "#f44", + weight: 4, + opacity: 0.7 } }).addTo(leaflet) } }) } + Destroy() { + super.Destroy(); + console.warn("Decomissioning minimap", this._id) + const mp = this.leafletMap.data + this.leafletMap.setData(null) + mp.off() + mp.remove() + } + public async TakeScreenshot() { const screenshotter = new SimpleMapScreenshoter(); screenshotter.addTo(this.leafletMap.data); @@ -122,6 +138,13 @@ export default class MinimapImplementation extends BaseUIElement implements Mini const self = this; // @ts-ignore const resizeObserver = new ResizeObserver(_ => { + if (wrapper.clientHeight === 0 || wrapper.clientWidth === 0) { + return; + } + if (wrapper.offsetParent === null || window.getComputedStyle(wrapper).display === 'none') { + // Not visible + return; + } try { self.InitMap(); self.leafletMap?.data?.invalidateSize() @@ -131,6 +154,17 @@ export default class MinimapImplementation extends BaseUIElement implements Mini }); resizeObserver.observe(div); + + if (this._addLayerControl) { + const switcher = new BackgroundMapSwitch({ + locationControl: this.location, + backgroundLayer: this._background + }, + this._background + ).SetClass("top-0 right-0 z-above-map absolute") + wrapper.appendChild(switcher.ConstructElement()) + } + return wrapper; } @@ -150,7 +184,7 @@ export default class MinimapImplementation extends BaseUIElement implements Mini return; } this._isInited = true; - const location = this._location; + const location = this.location; const self = this; let currentLayer = this._background.data.layer() let latLon = <[number, number]>[location.data?.lat ?? 0, location.data?.lon ?? 0] @@ -170,6 +204,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) @@ -214,7 +249,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') } @@ -238,8 +272,8 @@ export default class MinimapImplementation extends BaseUIElement implements Mini isRecursing = true; location.ping(); - if (self._bounds !== undefined) { - self._bounds.setData(BBox.fromLeafletBounds(map.getBounds())) + if (self.bounds !== undefined) { + self.bounds.setData(BBox.fromLeafletBounds(map.getBounds())) } @@ -258,20 +292,14 @@ export default class MinimapImplementation extends BaseUIElement implements Mini map.setView([loc.lat, loc.lon], loc.zoom) }) - location.map(loc => loc.zoom) - .addCallback(zoom => { - if (Math.abs(map.getZoom() - zoom) > 0.1) { - map.setZoom(zoom, {}); - } - }) - if (self._bounds !== undefined) { - self._bounds.setData(BBox.fromLeafletBounds(map.getBounds())) + if (self.bounds !== undefined) { + self.bounds.setData(BBox.fromLeafletBounds(map.getBounds())) } - 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 b5b15229fc..c6dc803a50 100644 --- a/UI/Base/ScrollableFullScreen.ts +++ b/UI/Base/ScrollableFullScreen.ts @@ -5,7 +5,7 @@ import {FixedUiElement} from "./FixedUiElement"; import {UIEventSource} from "../../Logic/UIEventSource"; import Hash from "../../Logic/Web/Hash"; import BaseUIElement from "../BaseUIElement"; -import Img from "./Img"; +import Title from "./Title"; /** * @@ -23,8 +23,10 @@ export default class ScrollableFullScreen extends UIElement { private hashToShow: string; private _component: BaseUIElement; private _fullscreencomponent: BaseUIElement; + private _resetScrollSignal: UIEventSource = new UIEventSource(undefined); - constructor(title: ((mode: string) => BaseUIElement), content: ((mode: string) => BaseUIElement), + constructor(title: ((options: { mode: string }) => BaseUIElement), + content: ((options: { mode: string, resetScrollSignal: UIEventSource }) => BaseUIElement), hashToShow: string, isShown: UIEventSource = new UIEventSource(false) ) { @@ -35,28 +37,43 @@ export default class ScrollableFullScreen extends UIElement { if (hashToShow === undefined) { throw "HashToShow should be defined as it is vital for the 'back' key functionality" } + + const desktopOptions = { + mode: "desktop", + resetScrollSignal: this._resetScrollSignal + } + + const mobileOptions = { + mode: "mobile", + resetScrollSignal: this._resetScrollSignal + } - this._component = this.BuildComponent(title("desktop"), content("desktop"), isShown) - .SetClass("hidden md:block"); - this._fullscreencomponent = this.BuildComponent(title("mobile"), content("mobile").SetClass("pb-20"), isShown); + this._component = this.BuildComponent(title(desktopOptions), content(desktopOptions)) .SetClass("hidden md:block"); + this._fullscreencomponent = this.BuildComponent(title(mobileOptions), content(mobileOptions).SetClass("pb-20")); const self = this; - isShown.addCallback(isShown => { - if (isShown) { - self.Activate(); - Hash.hash.setData(hashToShow) - } else { - self.clear(); + Hash.hash.addCallback(h => { + if (h === undefined) { + isShown.setData(false) } }) + isShown.addCallback(isShown => { + if (isShown) { + // We first must set the hash, then activate the panel + // If the order is wrong, this will cause the panel to disactivate again + Hash.hash.setData(hashToShow) + self.Activate(); + } else { + // Some cleanup... - Hash.hash.addCallback(hash => { - if (!isShown.data) { - return; - } - if (hash === undefined || hash === "" || hash !== hashToShow) { - isShown.setData(false) + const fs = document.getElementById("fullscreen"); + if (fs !== null) { + ScrollableFullScreen.empty.AttachTo("fullscreen") + fs.classList.add("hidden") + } + + ScrollableFullScreen._currentlyOpen?.isShown?.setData(false); } }) } @@ -65,6 +82,12 @@ export default class ScrollableFullScreen extends UIElement { return this._component; } + Destroy() { + super.Destroy(); + this._component.Destroy() + this._fullscreencomponent.Destroy() + } + Activate(): void { this.isShown.setData(true) this._fullscreencomponent.AttachTo("fullscreen"); @@ -73,33 +96,32 @@ export default class ScrollableFullScreen extends UIElement { fs.classList.remove("hidden") } - private clear() { - ScrollableFullScreen.empty.AttachTo("fullscreen") - const fs = document.getElementById("fullscreen"); - ScrollableFullScreen._currentlyOpen?.isShown?.setData(false); - fs.classList.add("hidden") - } - - private BuildComponent(title: BaseUIElement, content: BaseUIElement, isShown: UIEventSource) { + private BuildComponent(title: BaseUIElement, content: BaseUIElement) :BaseUIElement { const returnToTheMap = new Combine([ - new Img(Svg.back.replace(/#000000/g, "#cccccc"), true) - .SetClass("block md:hidden w-12 h-12 p-2"), - new Img(Svg.close.replace(/#000000/g, "#cccccc"), true) - .SetClass("hidden md:block w-12 h-12 p-3") + Svg.back_svg().SetClass("block md:hidden w-12 h-12 p-2 svg-foreground"), + Svg.close_svg() .SetClass("hidden md:block w-12 h-12 p-3 svg-foreground") ]).SetClass("rounded-full p-0 flex-shrink-0 self-center") returnToTheMap.onClick(() => { - isShown.setData(false) + this.isShown.setData(false) + Hash.hash.setData(undefined) }) - title.SetClass("block text-l sm:text-xl md:text-2xl w-full font-bold p-0 max-h-20vh overflow-y-auto") - return new Combine([ + title = new Title(title, 2) + title.SetClass("text-l sm:text-xl md:text-2xl w-full p-0 max-h-20vh overflow-y-auto self-center") + const contentWrapper = new Combine([content]) + .SetClass("block p-2 md:pt-4 w-full h-full overflow-y-auto md:max-h-65vh") + + this._resetScrollSignal.addCallback(_ => { + contentWrapper.ScrollToTop(); + }) + + return new Combine([ new Combine([ new Combine([returnToTheMap, title]) .SetClass("border-b-1 border-black shadow bg-white flex flex-shrink-0 pt-1 pb-1 md:pt-0 md:pb-0"), - new Combine([content]) - .SetClass("block p-2 md:pt-4 w-full h-full overflow-y-auto md:max-h-65vh"), + contentWrapper , // We add an ornament which takes around 5em. This is in order to make sure the Web UI doesn't hide ]).SetClass("flex flex-col h-full relative bg-white") ]).SetClass("fixed top-0 left-0 right-0 h-screen w-screen md:max-h-65vh md:w-auto md:relative z-above-controls md:rounded-xl overflow-hidden"); diff --git a/UI/Base/SubtleButton.ts b/UI/Base/SubtleButton.ts index a324505f77..f41680d5d4 100644 --- a/UI/Base/SubtleButton.ts +++ b/UI/Base/SubtleButton.ts @@ -5,55 +5,84 @@ import Link from "./Link"; import Img from "./Img"; import {UIEventSource} from "../../Logic/UIEventSource"; import {UIElement} from "../UIElement"; +import {VariableUiElement} from "./VariableUIElement"; +import Lazy from "./Lazy"; +import Loading from "./Loading"; 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-subtle rounded-lg hover:shadow-xl hover:bg-unsubtle transition-colors transition-shadow 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]) + const image = new Combine([img?.SetClass("block flex items-center justify-center h-11 w-11 flex-shrink0 mr-4")]) .SetClass("flex-shrink-0"); - if (linkTo == undefined) { - return new Combine([ - image, - message?.SetClass("block overflow-ellipsis"), - ]).SetClass("flex group w-full"); + message?.SetClass("block overflow-ellipsis no-images") + + const button = new Combine([ + image, + message + ]).SetClass("flex group w-full") + + if (this.linkTo == undefined) { + this.SetClass(classes) + return button } return new Link( - new Combine([ - image, - message?.SetClass("block overflow-ellipsis") - ]).SetClass("flex group w-full"), - linkTo.url, - linkTo.newTab ?? false - ) + button, + this.linkTo.url, + this.linkTo.newTab ?? false + ).SetClass(classes) + } - protected InnerRender(): string | BaseUIElement { - return this._element; + public OnClickWithLoading( + loadingText: BaseUIElement | string, + action: () => Promise ) : BaseUIElement{ + const state = new UIEventSource<"idle" | "running">("idle") + const button = this; + + button.onClick(async() => { + state.setData("running") + try{ + await action() + }catch(e){ + console.error(e) + }finally { + state.setData("idle") + } + + }) + const loading = new Lazy(() => new Loading(loadingText) ) + return new VariableUiElement(state.map(st => { + console.log("State is: ", st) + if(st === "idle"){ + return button + } + return loading + })) } - } \ No newline at end of file diff --git a/UI/Base/TableOfContents.ts b/UI/Base/TableOfContents.ts new file mode 100644 index 0000000000..b9f284fc81 --- /dev/null +++ b/UI/Base/TableOfContents.ts @@ -0,0 +1,126 @@ +import Combine from "./Combine"; +import BaseUIElement from "../BaseUIElement"; +import {Translation} from "../i18n/Translation"; +import {FixedUiElement} from "./FixedUiElement"; +import Title from "./Title"; +import List from "./List"; +import Hash from "../../Logic/Web/Hash"; +import Link from "./Link"; +import {Utils} from "../../Utils"; + +export default class TableOfContents extends Combine { + + private readonly titles: Title[] + + constructor(elements: Combine | Title[], options?: { + noTopLevel: false | boolean, + maxDepth?: number + }) { + let titles: Title[] + if (elements instanceof Combine) { + titles = TableOfContents.getTitles(elements.getElements()) ?? [] + } else { + titles = elements ?? [] + } + + let els: { level: number, content: BaseUIElement }[] = [] + for (const title of titles) { + let content: BaseUIElement + if (title.title instanceof Translation) { + content = title.title.Clone() + } else if (title.title instanceof FixedUiElement) { + content = new FixedUiElement(title.title.content) + } else if (Utils.runningFromConsole) { + content = new FixedUiElement(title.AsMarkdown()) + } else if (title["title"] !== undefined) { + content = new FixedUiElement(title.title.ConstructElement().innerText) + } else { + console.log("Not generating a title for ", title) + continue + } + + const vis = new Link(content, "#" + title.id) + + Hash.hash.addCallbackAndRun(h => { + if (h === title.id) { + vis.SetClass("font-bold") + } else { + vis.RemoveClass("font-bold") + } + }) + els.push({level: title.level, content: vis}) + + } + const minLevel = Math.min(...els.map(e => e.level)) + if (options?.noTopLevel) { + els = els.filter(e => e.level !== minLevel) + } + + if (options?.maxDepth) { + els = els.filter(e => e.level <= (options.maxDepth + minLevel)) + } + + + super(TableOfContents.mergeLevel(els).map(el => el.SetClass("mt-2"))); + this.SetClass("flex flex-col") + this.titles = titles; + } + + private static getTitles(elements: BaseUIElement[]): Title[] { + const titles = [] + for (const uiElement of elements) { + if (uiElement instanceof Combine) { + titles.push(...TableOfContents.getTitles(uiElement.getElements())) + } 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)) + if (maxLevel === minLevel) { + return elements.map(e => e.content) + } + const result: { level: number, content: BaseUIElement } [] = [] + let running: BaseUIElement[] = [] + for (const element of elements) { + if (element.level === maxLevel) { + running.push(element.content) + continue + } + if (running.length !== undefined) { + result.push({ + content: new List(running), + level: maxLevel - 1 + }) + running = [] + } + result.push(element) + } + if (running.length !== undefined) { + result.push({ + content: new List(running), + level: maxLevel - 1 + }) + } + + return TableOfContents.mergeLevel(result) + } + + AsMarkdown(): string { + 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 link = title.id + lines.push(prefix + " [" + text + "](#" + link + ")") + } + + 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 adf4b2dd73..8c4d3f8f19 100644 --- a/UI/Base/Title.ts +++ b/UI/Base/Title.ts @@ -1,41 +1,66 @@ import BaseUIElement from "../BaseUIElement"; import {FixedUiElement} from "./FixedUiElement"; +import {Utils} from "../../Utils"; export default class Title extends BaseUIElement { - private readonly _embedded: BaseUIElement; - private readonly _level: number; + private static readonly defaultClassesPerLevel = ["", "text-3xl font-bold", "text-2xl font-bold", "text-xl font-bold", "text-lg font-bold"] + public readonly title: BaseUIElement; + public readonly level: number; + public readonly id: string constructor(embedded: string | BaseUIElement, level: number = 3) { super() - if (typeof embedded === "string") { - this._embedded = new FixedUiElement(embedded) - } else { - this._embedded = embedded + if (embedded === undefined) { + throw "A title should have some content. Undefined is not allowed" } - this._level = level; + if (typeof embedded === "string") { + this.title = new FixedUiElement(embedded) + } else { + this.title = embedded + } + this.level = level; + + let innerText: string = undefined; + if (typeof embedded === "string") { + innerText = embedded + } 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 { + innerText = embedded.ConstructElement()?.innerText + } + } + + this.id = innerText?.replace(/ /g, '-') + ?.replace(/[?#.;:/]/, "") + ?.toLowerCase() ?? "" + this.SetClass(Title.defaultClassesPerLevel[level] ?? "") } AsMarkdown(): string { - const embedded = " " + this._embedded.AsMarkdown() + " "; + const embedded = " " + this.title.AsMarkdown() + " "; - if (this._level == 1) { + if (this.level == 1) { return "\n\n" + embedded + "\n" + "=".repeat(embedded.length) + "\n\n" } - if (this._level == 2) { + if (this.level == 2) { return "\n\n" + embedded + "\n" + "-".repeat(embedded.length) + "\n\n" } - return "\n\n" + "#".repeat(this._level) + embedded + "\n\n"; + return "\n\n" + "#".repeat(this.level) + embedded + "\n\n"; } protected InnerConstructElement(): HTMLElement { - const el = this._embedded.ConstructElement() + const el = this.title.ConstructElement() if (el === undefined) { return undefined; } - const h = document.createElement("h" + this._level) + const h = document.createElement("h" + this.level) h.appendChild(el) + el.id = this.id return h; } } \ No newline at end of file diff --git a/UI/Base/Toggleable.ts b/UI/Base/Toggleable.ts new file mode 100644 index 0000000000..848fc80b65 --- /dev/null +++ b/UI/Base/Toggleable.ts @@ -0,0 +1,90 @@ +import BaseUIElement from "../BaseUIElement"; +import {UIEventSource} from "../../Logic/UIEventSource"; +import Combine from "./Combine"; +import Title from "./Title"; +import Hash from "../../Logic/Web/Hash"; + +export class Accordeon extends Combine { + + constructor(toggles: Toggleable[]) { + + for (const el of toggles) { + el.isVisible.addCallbackAndRun(isVisible => toggles.forEach(toggle => { + if (toggle !== el && isVisible) { + toggle.isVisible.setData(false) + } + })) + } + + super(toggles); + } + +} + + +export default class Toggleable extends Combine { + public readonly isVisible = new UIEventSource(false) + + constructor(title: Title | Combine | BaseUIElement, content: BaseUIElement, options?: { + closeOnClick: true | boolean + }) { + super([title, content]) + content.SetClass("animate-height border-l-4 pl-2 block") + title.SetClass("background-subtle rounded-lg") + const self = this + this.onClick(() => { + if (self.isVisible.data) { + if (options?.closeOnClick ?? true) { + self.isVisible.setData(false) + } + } else { + self.isVisible.setData(true) + } + }) + const contentElement = content.ConstructElement() + + if (title instanceof Combine) { + for (const el of title.getElements()) { + if (el instanceof Title) { + title = el; + break; + } + } + } + + if (title instanceof Title) { + Hash.hash.addCallbackAndRun(h => { + if (h === (title).id) { + self.isVisible.setData(true) + content.RemoveClass("border-gray-300") + content.SetClass("border-red-300") + } else { + content.SetClass("border-gray-300") + content.RemoveClass("border-red-300") + } + }) + this.isVisible.addCallbackAndRun(isVis => { + if (isVis) { + Hash.hash.setData((<Title>title).id) + } + }) + } + + this.isVisible.addCallbackAndRun(isVisible => { + if (isVisible) { + contentElement.style.maxHeight = "100vh" + contentElement.style.overflowY = "auto" + contentElement.style["-webkit-mask-image"] = "unset" + } else { + contentElement.style["-webkit-mask-image"] = "-webkit-gradient(linear, left top, left bottom, from(rgba(0,0,0,1)), to(rgba(0,0,0,0)))" + contentElement.style.maxHeight = "2rem" + } + }) + } + + public Collapse(): Toggleable { + this.isVisible.setData(false) + return this; + } + +} \ No newline at end of file diff --git a/UI/Base/VariableUIElement.ts b/UI/Base/VariableUIElement.ts index 6ee720627e..55538f2ce3 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<string | BaseUIElement | BaseUIElement[]>; @@ -9,9 +10,29 @@ export class VariableUiElement extends BaseUIElement { this._contents = contents; } + Destroy() { + super.Destroy(); + this.isDestroyed = true; + } + + AsMarkdown(): string { + const d = this._contents.data; + if (typeof d === "string") { + return d; + } + if (d instanceof BaseUIElement) { + return d.AsMarkdown() + } + return new Combine(<BaseUIElement[]>d).AsMarkdown() + } + protected InnerConstructElement(): HTMLElement { const el = document.createElement("span"); + const self = this; this._contents.addCallbackAndRun((contents) => { + if (self.isDestroyed) { + return true; + } while (el.firstChild) { el.removeChild(el.lastChild); } diff --git a/UI/BaseUIElement.ts b/UI/BaseUIElement.ts index b9c085fa54..2157fb2f12 100644 --- a/UI/BaseUIElement.ts +++ b/UI/BaseUIElement.ts @@ -1,5 +1,4 @@ import {Utils} from "../Utils"; -import {UIEventSource} from "../Logic/UIEventSource"; /** * A thin wrapper around a html element, which allows to generate a HTML-element. @@ -9,10 +8,10 @@ import {UIEventSource} from "../Logic/UIEventSource"; export default abstract class BaseUIElement { protected _constructedHtmlElement: HTMLElement; + protected isDestroyed = false; private clss: Set<string> = new Set<string>(); private style: string; private _onClick: () => void; - private _onHover: UIEventSource<boolean>; public onClick(f: (() => void)) { this._onClick = f; @@ -40,6 +39,10 @@ export default abstract class BaseUIElement { return this; } + + public ScrollToTop(){ + this._constructedHtmlElement?.scrollTo(0,0) + } /** * Adds all the relevant classes, space separated @@ -99,11 +102,6 @@ export default abstract class BaseUIElement { return this._constructedHtmlElement } - if (this.InnerConstructElement === undefined) { - throw "ERROR! This is not a correct baseUIElement: " + this.constructor.name - } - - try { const el = this.InnerConstructElement(); @@ -138,18 +136,6 @@ export default abstract class BaseUIElement { el.classList.add("pointer-events-none", "cursor-pointer"); } - if (this._onHover !== undefined) { - const self = this; - el.addEventListener('mouseover', () => self._onHover.setData(true)); - el.addEventListener('mouseout', () => self._onHover.setData(false)); - } - - if (this._onHover !== undefined) { - const self = this; - el.addEventListener('mouseover', () => self._onHover.setData(true)); - el.addEventListener('mouseout', () => self._onHover.setData(false)); - } - return el } catch (e) { const domExc = e as DOMException; @@ -161,7 +147,11 @@ export default abstract class BaseUIElement { } public AsMarkdown(): string { - throw "AsMarkdown is not implemented by " + this.constructor.name+"; implement it in the subclass" + throw "AsMarkdown is not implemented; implement it in the subclass" + } + + public Destroy() { + this.isDestroyed = true; } protected abstract InnerConstructElement(): HTMLElement; diff --git a/UI/BigComponents/AddNewMarker.ts b/UI/BigComponents/AddNewMarker.ts index e51152c7db..9bd89e3f53 100644 --- a/UI/BigComponents/AddNewMarker.ts +++ b/UI/BigComponents/AddNewMarker.ts @@ -14,6 +14,9 @@ export default class AddNewMarker extends Combine { let last = undefined; for (const filteredLayer of filteredLayers) { const layer = filteredLayer.layerDef; + if(layer.name === undefined){ + continue + } for (const preset of filteredLayer.layerDef.presets) { const tags = TagUtils.KVtoProperties(preset.tags) const icon = layer.mapRendering[0].GenerateLeafletStyle(new UIEventSource<any>(tags), false).html @@ -27,6 +30,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/AllDownloads.ts b/UI/BigComponents/AllDownloads.ts index 2586fef3f1..2d2fc66987 100644 --- a/UI/BigComponents/AllDownloads.ts +++ b/UI/BigComponents/AllDownloads.ts @@ -1,4 +1,3 @@ -import State from "../../State"; import Combine from "../Base/Combine"; import ScrollableFullScreen from "../Base/ScrollableFullScreen"; import Translations from "../i18n/Translations"; @@ -9,11 +8,39 @@ import {DownloadPanel} from "./DownloadPanel"; import {SubtleButton} from "../Base/SubtleButton"; import Svg from "../../Svg"; import ExportPDF from "../ExportPDF"; +import FilteredLayer from "../../Models/FilteredLayer"; +import FeaturePipeline from "../../Logic/FeatureSource/FeaturePipeline"; +import LayoutConfig from "../../Models/ThemeConfig/LayoutConfig"; +import {BBox} from "../../Logic/BBox"; +import BaseLayer from "../../Models/BaseLayer"; +import Loc from "../../Models/Loc"; + +interface DownloadState { + filteredLayers: UIEventSource<FilteredLayer[]> + featurePipeline: FeaturePipeline, + layoutToUse: LayoutConfig, + currentBounds: UIEventSource<BBox>, + backgroundLayer:UIEventSource<BaseLayer>, + locationControl: UIEventSource<Loc>, + featureSwitchExportAsPdf: UIEventSource<boolean>, + featureSwitchEnableExport: UIEventSource<boolean>, +} + + export default class AllDownloads extends ScrollableFullScreen { - constructor(isShown: UIEventSource<boolean>) { - super(AllDownloads.GenTitle, AllDownloads.GeneratePanel, "downloads", isShown); + constructor(isShown: UIEventSource<boolean>,state: { + filteredLayers: UIEventSource<FilteredLayer[]> + featurePipeline: FeaturePipeline, + layoutToUse: LayoutConfig, + currentBounds: UIEventSource<BBox>, + backgroundLayer:UIEventSource<BaseLayer>, + locationControl: UIEventSource<Loc>, + featureSwitchExportAsPdf: UIEventSource<boolean>, + featureSwitchEnableExport: UIEventSource<boolean>, + }) { + super(AllDownloads.GenTitle, () => AllDownloads.GeneratePanel(state), "downloads", isShown); } private static GenTitle(): BaseUIElement { @@ -22,17 +49,18 @@ export default class AllDownloads extends ScrollableFullScreen { .SetClass("text-2xl break-words font-bold p-2"); } - private static GeneratePanel(): BaseUIElement { + private static GeneratePanel(state: DownloadState): BaseUIElement { + const isExporting = new UIEventSource(false, "Pdf-is-exporting") const generatePdf = () => { isExporting.setData(true) new ExportPDF( { freeDivId: "belowmap", - background: State.state.backgroundLayer, - location: State.state.locationControl, - features: State.state.featurePipeline, - layout: State.state.layoutToUse, + background: state.backgroundLayer, + location: state.locationControl, + features: state.featurePipeline, + layout: state.layoutToUse, }).isRunning.addCallbackAndRun(isRunning => isExporting.setData(isRunning)) } @@ -57,13 +85,13 @@ export default class AllDownloads extends ScrollableFullScreen { text), undefined, - State.state.featureSwitchExportAsPdf + state.featureSwitchExportAsPdf ) const exportPanel = new Toggle( - new DownloadPanel(), + new DownloadPanel(state), undefined, - State.state.featureSwitchEnableExport + state.featureSwitchEnableExport ) return new Combine([pdf, exportPanel]).SetClass("flex flex-col"); diff --git a/UI/BigComponents/BackToIndex.ts b/UI/BigComponents/BackToIndex.ts new file mode 100644 index 0000000000..40f866bc48 --- /dev/null +++ b/UI/BigComponents/BackToIndex.ts @@ -0,0 +1,19 @@ +import {SubtleButton} from "../Base/SubtleButton"; +import Svg from "../../Svg"; +import Translations from "../i18n/Translations"; +import BaseUIElement from "../BaseUIElement"; + +export default class BackToIndex extends SubtleButton { + + constructor(message?: string | BaseUIElement) { + super( + Svg.back_svg().SetStyle("height: 1.5rem;"), + message ?? Translations.t.general.backToMapcomplete, + { + url: "index.html" + } + ) + } + + +} \ No newline at end of file diff --git a/UI/BigComponents/BackgroundMapSwitch.ts b/UI/BigComponents/BackgroundMapSwitch.ts new file mode 100644 index 0000000000..fa601b3d39 --- /dev/null +++ b/UI/BigComponents/BackgroundMapSwitch.ts @@ -0,0 +1,203 @@ +import Combine from "../Base/Combine"; +import {UIEventSource} from "../../Logic/UIEventSource"; +import Loc from "../../Models/Loc"; +import Svg from "../../Svg"; +import Toggle from "../Input/Toggle"; +import BaseLayer from "../../Models/BaseLayer"; +import AvailableBaseLayers from "../../Logic/Actors/AvailableBaseLayers"; +import BaseUIElement from "../BaseUIElement"; +import {GeoOperations} from "../../Logic/GeoOperations"; + +class SingleLayerSelectionButton extends Toggle { + + public readonly activate: () => void + + /** + * + * The SingeLayerSelectionButton also acts as an actor to keep the layers in check + * + * It works the following way: + * + * - It has a boolean state to indicate wether or not the button is active + * - It keeps track of the available layers + */ + constructor( + locationControl: UIEventSource<Loc>, + options: { + currentBackground: UIEventSource<BaseLayer>, + preferredType: string, + preferredLayer?: BaseLayer, + notAvailable?: () => void + }) { + + + const prefered = options.preferredType + const previousLayer = new UIEventSource(options.preferredLayer) + + const unselected = SingleLayerSelectionButton.getIconFor(prefered) + .SetClass("rounded-lg p-1 h-12 w-12 overflow-hidden subtle-background border-invisible") + + const selected = SingleLayerSelectionButton.getIconFor(prefered) + .SetClass("rounded-lg p-1 h-12 w-12 overflow-hidden subtle-background border-attention-catch") + + + const available = AvailableBaseLayers + .SelectBestLayerAccordingTo(locationControl, new UIEventSource<string | string[]>(options.preferredType)) + + let toggle: BaseUIElement = new Toggle( + selected, + unselected, + options.currentBackground.map(bg => bg.category === options.preferredType) + ) + + + super( + toggle, + undefined, + available.map(av => av.category === options.preferredType) + ); + + /** + * Checks that the previous layer is still usable on the current location. + * If not, clears the 'previousLayer' + */ + function checkPreviousLayer() { + if (previousLayer.data === undefined) { + return + } + if (previousLayer.data.feature === null || previousLayer.data.feature === undefined) { + // Global layer + return + } + const loc = locationControl.data + if (!GeoOperations.inside([loc.lon, loc.lat], previousLayer.data.feature)) { + // The previous layer is out of bounds + previousLayer.setData(undefined) + } + } + + unselected.onClick(() => { + // Note: a check if 'available' has the correct type is not needed: + // Unselected will _not_ be visible if availableBaseLayer has a wrong type! + checkPreviousLayer() + + previousLayer.setData(previousLayer.data ?? available.data) + options.currentBackground.setData(previousLayer.data) + }) + + options.currentBackground.addCallbackAndRunD(background => { + if (background.category === options.preferredType) { + previousLayer.setData(background) + } + }) + + + available.addCallbackD(availableLayer => { + // Called whenever a better layer is available + + if (previousLayer.data === undefined) { + // PreviousLayer is unset -> we definitively weren't using this category -> no need to switch + return; + } + if (options.currentBackground.data?.id !== previousLayer.data?.id) { + // The previously used layer doesn't match the current layer -> no need to switch + return; + } + + // Is the previous layer still valid? If so, we don't bother to switch + if (previousLayer.data.feature === null || GeoOperations.inside(locationControl.data, previousLayer.data.feature)) { + return + } + + if (availableLayer.category === options.preferredType) { + // Allright, we can set this different layer + options.currentBackground.setData(availableLayer) + previousLayer.setData(availableLayer) + } else { + // Uh oh - no correct layer is available... We pass the torch! + if (options.notAvailable !== undefined) { + options.notAvailable() + } else { + // Fallback to OSM carto + options.currentBackground.setData(AvailableBaseLayers.osmCarto) + } + } + }) + + this.activate = () => { + checkPreviousLayer() + if (available.data.category !== options.preferredType) { + // This object can't help either - pass the torch! + if (options.notAvailable !== undefined) { + options.notAvailable() + } else { + // Fallback to OSM carto + options.currentBackground.setData(AvailableBaseLayers.osmCarto) + } + return; + } + + previousLayer.setData(previousLayer.data ?? available.data) + options.currentBackground.setData(previousLayer.data) + } + + } + + private static getIconFor(type: string) { + switch (type) { + case "map": + return Svg.generic_map_svg() + case "photo": + return Svg.satellite_svg() + case "osmbasedmap": + return Svg.osm_logo_svg() + default: + return Svg.generic_map_svg() + } + } +} + +export default class BackgroundMapSwitch extends Combine { + + constructor( + state: { + locationControl: UIEventSource<Loc>, + backgroundLayer: UIEventSource<BaseLayer> + }, + currentBackground: UIEventSource<BaseLayer>, + preferredCategory?: string + ) { + const allowedCategories = ["osmbasedmap", "photo", "map"] + + const previousLayer = state.backgroundLayer.data + const buttons = [] + let activatePrevious: () => void = undefined + for (const category of allowedCategories) { + let preferredLayer = undefined + if (previousLayer.category === category) { + preferredLayer = previousLayer + } + + const button = new SingleLayerSelectionButton( + state.locationControl, + { + preferredType: category, + preferredLayer: preferredLayer, + currentBackground: currentBackground, + notAvailable: activatePrevious + }) + // Fall back to the first option: OSM + activatePrevious = activatePrevious ?? button.activate + if (category === preferredCategory) { + button.activate() + } + buttons.push(button) + } + + // Selects the initial map + + super(buttons) + this.SetClass("flex") + } + +} \ No newline at end of file diff --git a/UI/BigComponents/CopyrightPanel.ts b/UI/BigComponents/CopyrightPanel.ts index ceef210e75..73475b6478 100644 --- a/UI/BigComponents/CopyrightPanel.ts +++ b/UI/BigComponents/CopyrightPanel.ts @@ -1,7 +1,5 @@ import Combine from "../Base/Combine"; import Translations from "../i18n/Translations"; -import Attribution from "./Attribution"; -import State from "../../State"; import {UIEventSource} from "../../Logic/UIEventSource"; import {FixedUiElement} from "../Base/FixedUiElement"; import * as licenses from "../../assets/generated/license_info.json" @@ -10,6 +8,7 @@ import {Utils} from "../../Utils"; import Link from "../Base/Link"; import {VariableUiElement} from "../Base/VariableUIElement"; import * as contributors from "../../assets/contributors.json" +import * as translators from "../../assets/translators.json" import BaseUIElement from "../BaseUIElement"; import LayoutConfig from "../../Models/ThemeConfig/LayoutConfig"; import Title from "../Base/Title"; @@ -21,6 +20,83 @@ import Loc from "../../Models/Loc"; import Toggle from "../Input/Toggle"; import {OsmConnection} from "../../Logic/Osm/OsmConnection"; import Constants from "../../Models/Constants"; +import ContributorCount from "../../Logic/ContributorCount"; +import Img from "../Base/Img"; +import {Translation} from "../i18n/Translation"; + +export class OpenIdEditor extends VariableUiElement { + constructor(state: { locationControl: UIEventSource<Loc> }, iconStyle?: string, objectId?: string) { + const t = Translations.t.general.attribution + super(state.locationControl.map(location => { + let elementSelect = ""; + if (objectId !== undefined) { + const parts = objectId.split("/") + const tp = parts[0] + if (parts.length === 2 && !isNaN(Number(parts[1])) && (tp === "node" || tp === "way" || tp === "relation")) { + elementSelect = "&" + tp + "=" + parts[1] + } + } + const idLink = `https://www.openstreetmap.org/edit?editor=id${elementSelect}#map=${location?.zoom ?? 0}/${location?.lat ?? 0}/${location?.lon ?? 0}` + return new SubtleButton(Svg.pencil_ui().SetStyle(iconStyle), t.editId, {url: idLink, newTab: true}) + })); + } + +} + +export class OpenMapillary extends VariableUiElement { + constructor(state: { locationControl: UIEventSource<Loc> }, iconStyle?: string) { + const t = Translations.t.general.attribution + super(state.locationControl.map(location => { + const mapillaryLink = `https://www.mapillary.com/app/?focus=map&lat=${location?.lat ?? 0}&lng=${location?.lon ?? 0}&z=${Math.max((location?.zoom ?? 2) - 1, 1)}` + return new SubtleButton(Svg.mapillary_black_ui().SetStyle(iconStyle), t.openMapillary, { + url: mapillaryLink, + newTab: true + }) + })) + } +} + +export class OpenJosm extends Combine { + + constructor(state: { osmConnection: OsmConnection, currentBounds: UIEventSource<BBox>, }, iconStyle?: string) { + const t = Translations.t.general.attribution + + const josmState = new UIEventSource<string>(undefined) + // Reset after 15s + josmState.stabilized(15000).addCallbackD(_ => josmState.setData(undefined)) + + const stateIndication = new VariableUiElement(josmState.map(state => { + if (state === undefined) { + return undefined + } + state = state.toUpperCase() + if (state === "OK") { + return t.josmOpened.SetClass("thanks") + } + return t.josmNotOpened.SetClass("alert") + })); + + const toggle = new Toggle( + new SubtleButton(Svg.josm_logo_ui().SetStyle(iconStyle), t.editJosm).onClick(() => { + const bounds: any = state.currentBounds.data; + if (bounds === undefined) { + return undefined + } + const top = bounds.getNorth(); + const bottom = bounds.getSouth(); + const right = bounds.getEast(); + const left = bounds.getWest(); + const josmLink = `http://127.0.0.1:8111/load_and_zoom?left=${left}&right=${right}&top=${top}&bottom=${bottom}` + Utils.download(josmLink).then(answer => josmState.setData(answer.replace(/\n/g, '').trim())).catch(_ => josmState.setData("ERROR")) + }), undefined, state.osmConnection.userDetails.map(ud => ud.loggedIn && ud.csCount >= Constants.userJourney.historyLinkVisible)) + + super([stateIndication, toggle]); + + } + + +} + /** * The attribution panel shown on mobile @@ -35,13 +111,10 @@ export default class CopyrightPanel extends Combine { currentBounds: UIEventSource<BBox>, locationControl: UIEventSource<Loc>, osmConnection: OsmConnection - }, contributions: UIEventSource<Map<string, number>>) { + }) { const t = Translations.t.general.attribution const layoutToUse = state.layoutToUse - const josmState = new UIEventSource<string>(undefined) - // Reset after 15s - josmState.stabilized(15000).addCallbackD(_ => josmState.setData(undefined)) const iconStyle = "height: 1.5rem; width: auto" const actionButtons = [ new SubtleButton(Svg.liberapay_ui().SetStyle(iconStyle), t.donate, { @@ -56,55 +129,23 @@ export default class CopyrightPanel extends Combine { url: Utils.OsmChaLinkFor(31, state.layoutToUse.id), newTab: true }), - new VariableUiElement(state.locationControl.map(location => { - const idLink = `https://www.openstreetmap.org/edit?editor=id#map=${location?.zoom ?? 0}/${location?.lat ?? 0}/${location?.lon ?? 0}` - return new SubtleButton(Svg.pencil_ui().SetStyle(iconStyle), t.editId, {url: idLink, newTab: true}) - })), - - new VariableUiElement(state.locationControl.map(location => { - const mapillaryLink = `https://www.mapillary.com/app/?focus=map&lat=${location?.lat ?? 0}&lng=${location?.lon ?? 0}&z=${Math.max((location?.zoom ?? 2) - 1, 1)}` - return new SubtleButton(Svg.mapillary_black_ui().SetStyle(iconStyle), t.openMapillary, { - url: mapillaryLink, - newTab: true - }) - })), - new VariableUiElement(josmState.map(state => { - if (state === undefined) { - return undefined - } - state = state.toUpperCase() - if (state === "OK") { - return t.josmOpened.SetClass("thanks") - } - return t.josmNotOpened.SetClass("alert") - })), - new Toggle( - new SubtleButton(Svg.josm_logo_ui().SetStyle(iconStyle), t.editJosm).onClick(() => { - const bounds: any = state.currentBounds.data; - if (bounds === undefined) { - return undefined - } - const top = bounds.getNorth(); - const bottom = bounds.getSouth(); - const right = bounds.getEast(); - const left = bounds.getWest(); - const josmLink = `http://127.0.0.1:8111/load_and_zoom?left=${left}&right=${right}&top=${top}&bottom=${bottom}` - Utils.download(josmLink).then(answer => josmState.setData(answer.replace(/\n/g, '').trim())).catch(_ => josmState.setData("ERROR")) - }), undefined, state.osmConnection.userDetails.map(ud => ud.loggedIn && ud.csCount >= Constants.userJourney.historyLinkVisible)), - + new OpenIdEditor(state, iconStyle), + new OpenMapillary(state, iconStyle), + new OpenJosm(state, iconStyle) ] - const iconAttributions = Utils.NoNull(Array.from(layoutToUse.ExtractImages())) - .map(CopyrightPanel.IconAttribution) + const iconAttributions = layoutToUse.usedImages.map(CopyrightPanel.IconAttribution) let maintainer: BaseUIElement = undefined if (layoutToUse.maintainer !== undefined && layoutToUse.maintainer !== "" && layoutToUse.maintainer.toLowerCase() !== "mapcomplete") { maintainer = Translations.t.general.attribution.themeBy.Subs({author: layoutToUse.maintainer}) } + const contributions = new ContributorCount(state).Contributors + super([ Translations.t.general.attribution.attributionContent, - new FixedUiElement("MapComplete "+Constants.vNumber).SetClass("font-bold"), + new FixedUiElement("MapComplete " + Constants.vNumber).SetClass("font-bold"), maintainer, new Combine(actionButtons).SetClass("block w-full"), new FixedUiElement(layoutToUse.credits), @@ -141,15 +182,16 @@ export default class CopyrightPanel extends Combine { })), - CopyrightPanel.CodeContributors(), + CopyrightPanel.CodeContributors(contributors, Translations.t.general.attribution.codeContributionsBy), + CopyrightPanel.CodeContributors(translators, Translations.t.general.attribution.translatedBy), new Title(t.iconAttribution.title, 3), ...iconAttributions ].map(e => e?.SetClass("mt-4"))); this.SetClass("flex flex-col link-underline overflow-hidden") - this.SetStyle("max-width: calc(100vw - 3em); width: 40rem; margin-left: 0.75rem; margin-right: 0.5rem") + this.SetStyle("max-width:100%; width: 40rem; margin-left: 0.75rem; margin-right: 0.5rem") } - private static CodeContributors(): BaseUIElement { + private static CodeContributors(contributors, translation: Translation): BaseUIElement { const total = contributors.contributors.length; let filtered = [...contributors.contributors] @@ -163,7 +205,7 @@ export default class CopyrightPanel extends Combine { return undefined; } - return Translations.t.general.attribution.codeContributionsBy.Subs({ + return translation.Subs({ contributors: contribsStr, hiddenCount: total - 10 }); @@ -171,7 +213,11 @@ export default class CopyrightPanel extends Combine { private static IconAttribution(iconPath: string): BaseUIElement { if (iconPath.startsWith("http")) { - iconPath = "." + new URL(iconPath).pathname; + try{ + iconPath = "." + new URL(iconPath).pathname; + }catch(e){ + console.warn(e) + } } const license: SmallLicense = CopyrightPanel.LicenseObject[iconPath] @@ -185,23 +231,19 @@ export default class CopyrightPanel extends Combine { const sources = Utils.NoNull(Utils.NoEmpty(license.sources)) return new Combine([ - `<img src='${iconPath}' style="width: 50px; height: 50px; min-width: 50px; min-height: 50px; margin-right: 0.5em;">`, + new Img(iconPath).SetClass("w-12 min-h-12 mr-2 mb-2"), new Combine([ new FixedUiElement(license.authors.join("; ")).SetClass("font-bold"), - new Combine([license.license, - sources.length > 0 ? " - " : "", - ...sources.map(lnk => { + license.license, + new Combine([ ...sources.map(lnk => { let sourceLinkContent = lnk; try { sourceLinkContent = new URL(lnk).hostname } catch { console.error("Not a valid URL:", lnk) } - return new Link(sourceLinkContent, lnk, true); - }) - ] - ).SetClass("block m-2") - + return new Link(sourceLinkContent, lnk, true).SetClass("mr-2 mb-2"); + })]).SetClass("flex flex-wrap") ]).SetClass("flex flex-col").SetStyle("width: calc(100% - 50px - 0.5em); min-width: 12rem;") ]).SetClass("flex flex-wrap border-b border-gray-300 m-2 border-box") } diff --git a/UI/BigComponents/DownloadPanel.ts b/UI/BigComponents/DownloadPanel.ts index 5204736258..fefdeb64a4 100644 --- a/UI/BigComponents/DownloadPanel.ts +++ b/UI/BigComponents/DownloadPanel.ts @@ -13,15 +13,16 @@ import {UIEventSource} from "../../Logic/UIEventSource"; import SimpleMetaTagger from "../../Logic/SimpleMetaTagger"; import LayoutConfig from "../../Models/ThemeConfig/LayoutConfig"; import {BBox} from "../../Logic/BBox"; +import FilteredLayer, {FilterState} from "../../Models/FilteredLayer"; export class DownloadPanel extends Toggle { - constructor() { - const state: { - featurePipeline: FeaturePipeline, - layoutToUse: LayoutConfig, - currentBounds: UIEventSource<BBox> - } = State.state + constructor(state: { + filteredLayers: UIEventSource<FilteredLayer[]> + featurePipeline: FeaturePipeline, + layoutToUse: LayoutConfig, + currentBounds: UIEventSource<BBox> + }) { const t = Translations.t.general.download @@ -34,7 +35,7 @@ export class DownloadPanel extends Toggle { const buttonGeoJson = new SubtleButton(Svg.floppy_ui(), new Combine([t.downloadGeojson.Clone().SetClass("font-bold"), t.downloadGeoJsonHelper.Clone()]).SetClass("flex flex-col")) - .onClick(() => { + .OnClickWithLoading(t.exporting,async () => { const geojson = DownloadPanel.getCleanGeoJson(state, metaisIncluded.data) Utils.offerContentsAsDownloadableFile(JSON.stringify(geojson, null, " "), `MapComplete_${name}_export_${new Date().toISOString().substr(0, 19)}.geojson`, { @@ -46,7 +47,7 @@ export class DownloadPanel extends Toggle { const buttonCSV = new SubtleButton(Svg.floppy_ui(), new Combine( [t.downloadCSV.Clone().SetClass("font-bold"), t.downloadCSVHelper.Clone()]).SetClass("flex flex-col")) - .onClick(() => { + .OnClickWithLoading(t.exporting, async () => { const geojson = DownloadPanel.getCleanGeoJson(state, metaisIncluded.data) const csv = GeoOperations.toCSV(geojson.features) @@ -72,13 +73,41 @@ export class DownloadPanel extends Toggle { private static getCleanGeoJson(state: { featurePipeline: FeaturePipeline, - currentBounds: UIEventSource<BBox> + currentBounds: UIEventSource<BBox>, + filteredLayers: UIEventSource<FilteredLayer[]> }, includeMetaData: boolean) { const resultFeatures = [] - const featureList = state.featurePipeline.GetAllFeaturesWithin(state.currentBounds.data); + const neededLayers = state.filteredLayers.data.map(l => l.layerDef.id) + const bbox = state.currentBounds.data + const featureList = state.featurePipeline.GetAllFeaturesAndMetaWithin(bbox, new Set(neededLayers)); for (const tile of featureList) { - for (const feature of tile) { + const layer = state.filteredLayers.data.find(fl => fl.layerDef.id === tile.layer) + const filters = layer.appliedFilters.data + for (const feature of tile.features) { + + if(!bbox.overlapsWith(BBox.get(feature))){ + continue + } + + + if (filters !== undefined) { + let featureDoesMatchAllFilters = true; + for (let key of Array.from(filters.keys())) { + const filter: FilterState = filters.get(key) + if(filter?.currentFilter === undefined){ + continue + } + if (!filter.currentFilter.matchesProperties(feature.properties)) { + featureDoesMatchAllFilters = false; + break + } + } + if(!featureDoesMatchAllFilters){ + continue; // the outer loop + } + } + const cleaned = { type: feature.type, geometry: feature.geometry, diff --git a/UI/BigComponents/ExtraLinkButton.ts b/UI/BigComponents/ExtraLinkButton.ts new file mode 100644 index 0000000000..4d7c6e06c2 --- /dev/null +++ b/UI/BigComponents/ExtraLinkButton.ts @@ -0,0 +1,81 @@ +import {UIElement} from "../UIElement"; +import BaseUIElement from "../BaseUIElement"; +import {UIEventSource} from "../../Logic/UIEventSource"; +import ExtraLinkConfig from "../../Models/ThemeConfig/ExtraLinkConfig"; +import MapControlButton from "../MapControlButton"; +import Link from "../Base/Link"; +import Img from "../Base/Img"; +import {SubtleButton} from "../Base/SubtleButton"; +import Toggle from "../Input/Toggle"; +import Loc from "../../Models/Loc"; +import Locale from "../i18n/Locale"; +import {Utils} from "../../Utils"; + +export default class ExtraLinkButton extends UIElement{ + private readonly _config: ExtraLinkConfig; + private readonly state: { + layoutToUse: {id: string}; + featureSwitchWelcomeMessage: UIEventSource<boolean>, locationControl: UIEventSource<Loc>}; + + constructor(state: {featureSwitchWelcomeMessage: UIEventSource<boolean>, locationControl: UIEventSource<Loc>, layoutToUse: {id: string}}, + config: ExtraLinkConfig) { + super(); + this.state = state; + this._config = config; + } + + protected InnerRender(): BaseUIElement { + if(this._config === undefined){ + return undefined; + } + + const c = this._config; + + const isIframe = window !== window.top + + if(c.requirements.has("iframe") && !isIframe){ + return undefined + } + + if(c.requirements.has("no-iframe") && isIframe){ + return undefined + } + + let link : BaseUIElement + const theme = this.state.layoutToUse?.id ?? "" + const href = this.state.locationControl.map(loc => { + const subs = { + ...loc, + theme: theme, + language: Locale.language.data + } + return Utils.SubstituteKeys(c.href, subs) + }) + + if(c.text === undefined){ + link = new MapControlButton( + new Link(new Img(c.icon), href, c.newTab).SetClass("block w-full h-full p-1.5") + ) + }else { + let img : BaseUIElement = undefined + if(c.icon !== undefined){ + img = new Img(c.icon).SetClass("h-6") + } + + link = new SubtleButton(img,c.text, {url: + href, + newTab: c.newTab}) + } + + if(c.requirements.has("no-welcome-message")){ + link = new Toggle(undefined, link, this.state.featureSwitchWelcomeMessage) + } + + if(c.requirements.has("welcome-message")){ + link = new Toggle(link, undefined, this.state.featureSwitchWelcomeMessage) + } + + return link; + } + +} \ No newline at end of file diff --git a/UI/BigComponents/FeaturedMessage.ts b/UI/BigComponents/FeaturedMessage.ts index aede8e4168..aa3e2cf7d8 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,20 +33,22 @@ 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 }[] = [] - console.log("Constructing the list...", welcome_messages) + + const themesById = new Map<string, { id: string, title: any, shortDescription: any }>(); + for (const theme of themeOverview["default"]) { + themesById.set(theme.id, theme); + } + for (const i in welcome_messages) { - console.log(i) if (isNaN(Number(i))) { continue } - console.log("> ", i) const wm = welcome_messages[i] - console.log(wm) - 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 } @@ -76,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 3bbfccb905..9c83a98895 100644 --- a/UI/BigComponents/FilterView.ts +++ b/UI/BigComponents/FilterView.ts @@ -10,22 +10,36 @@ 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"; +import {InputElement} from "../Input/InputElement"; +import {DropDown} from "../Input/DropDown"; export default class FilterView extends VariableUiElement { - constructor(filteredLayer: UIEventSource<FilteredLayer[]>, tileLayers: { config: TilesourceConfig, isDisplayed: UIEventSource<boolean> }[]) { + constructor(filteredLayer: UIEventSource<FilteredLayer[]>, + tileLayers: { config: TilesourceConfig, isDisplayed: UIEventSource<boolean> }[]) { const backgroundSelector = new Toggle( new BackgroundSelector(), undefined, - State.state.featureSwitchBackgroundSlection + State.state.featureSwitchBackgroundSelection ) super( filteredLayer.map((filteredLayers) => { - let elements = filteredLayers?.map(l => FilterView.createOneFilteredLayerElement(l)) + // Create the views which toggle layers (and filters them) ... + let elements = filteredLayers + ?.map(l => FilterView.createOneFilteredLayerElement(l)?.SetClass("filter-panel")) + ?.filter(l => l !== undefined) + elements[0].SetClass("first-filter-panel") + + // ... create views for non-interactive layers ... elements = elements.concat(tileLayers.map(tl => FilterView.createOverlayToggle(tl))) + // ... and add the dropdown to select a different background return elements.concat(backgroundSelector); } ) @@ -87,11 +101,6 @@ export default class FilterView extends VariableUiElement { iconStyle ); - if (filteredLayer.layerDef.name === undefined) { - return; - } - - const name: Translation = Translations.WT( filteredLayer.layerDef.name ); @@ -110,17 +119,16 @@ export default class FilterView extends VariableUiElement { ) - const style = - "display:flex;align-items:center;padding:0.5rem 0;"; - const layerIcon = layer.defaultIcon()?.SetClass("w-8 h-8 ml-2") - const layerIconUnchecked = layer.defaultIcon()?.SetClass("opacity-50 w-8 h-8 ml-2") + const toggleClasses = "layer-toggle flex flex-wrap items-center pt-2 pb-2 px-0"; + const layerIcon = layer.defaultIcon()?.SetClass("flex-shrink-0 w-8 h-8 ml-2") + const layerIconUnchecked = layer.defaultIcon()?.SetClass("flex-shrink-0 opacity-50 w-8 h-8 ml-2") const layerChecked = new Combine([icon, layerIcon, styledNameChecked, zoomStatus]) - .SetStyle(style) + .SetClass(toggleClasses) .onClick(() => filteredLayer.isDisplayed.setData(false)); const layerNotChecked = new Combine([iconUnselected, layerIconUnchecked, styledNameUnChecked]) - .SetStyle(style) + .SetClass(toggleClasses) .onClick(() => filteredLayer.isDisplayed.setData(true)); @@ -140,102 +148,153 @@ export default class FilterView extends VariableUiElement { return undefined; } - const filterIndexes = new Map<string, number>() - layer.filters.forEach((f, i) => filterIndexes.set(f.id, i)) - let listFilterElements: [BaseUIElement, UIEventSource<{ filter: FilterConfig, selected: number }>][] = layer.filters.map( - FilterView.createFilter - ); + const toShow: BaseUIElement [] = [] - listFilterElements.forEach((inputElement, i) => - inputElement[1].addCallback((changed) => { - const oldValue = flayer.appliedFilters.data + for (const filter of layer.filters) { - 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) - ); + const [ui, actualTags] = FilterView.createFilter(filter) - flayer.appliedFilters.setData(listTagsFilters); + ui.SetClass("mt-1") + 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"))) - .SetClass("flex flex-col ml-8 bg-gray-300 rounded-xl p-2") + return new Combine(toShow) + .SetClass("flex flex-col p-2 ml-12 pl-1 pt-0 layer-filters") } - private static createFilter(filterConfig: FilterConfig): [BaseUIElement, UIEventSource<{ filter: FilterConfig, selected: number }>] { - if (filterConfig.options.length === 1) { - let option = filterConfig.options[0]; + // Filter which uses one or more textfields + private static createFilterWithFields(filterConfig: FilterConfig): [BaseUIElement, UIEventSource<FilterState>] { - const icon = Svg.checkbox_filled_svg().SetClass("block mr-2"); - const iconUnselected = Svg.checkbox_empty_svg().SetClass("block mr-2"); - - 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<string, BaseUIElement>() + let allValid = new UIEventSource(true) + const properties = new UIEventSource<any>({}) + for (const {name, type} of filter.fields) { + const value = QueryParameters.GetQueryParameter("filter-" + filterConfig.id + "-" + name, "", "Value for filter " + filterConfig.id) + const field = ValidatedTextField.ForType(type).ConstructInputElement({ + 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<any>({id: filterConfig.id}), State.state, mappings) + const trigger: UIEventSource<FilterState> = 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 = (<string>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<FilterState>] { + 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<FilterState>] { 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( - (option, i) => - new FixedInputElement(option.question.Clone().SetClass("block"), i) - ), - { - dontStyle: true - } - ); - return [radio, - radio.GetValue().map( + let filterPicker: InputElement<number> + + if (options.length <= 6) { + filterPicker = new RadioButton( + options.map( + (option, i) => + new FixedInputElement(option.question.Clone().SetClass("block"), i) + ), + { + dontStyle: true + } + ); + } else { + filterPicker = new DropDown("", options.map((option, i) => ({ + value: i, shown: option.question.Clone() + }))) + } + + return [filterPicker, + filterPicker.GetValue().map( 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<FilterState>] { + + if (filterConfig.options[0].fields.length > 0) { + return FilterView.createFilterWithFields(filterConfig) + } + + + if (filterConfig.options.length === 1) { + return FilterView.createCheckboxFilter(filterConfig) + } + + const filter = FilterView.createMultiFilter(filterConfig) + filter[0].SetClass("pl-2") + return filter + } } diff --git a/UI/BigComponents/FullWelcomePaneWithTabs.ts b/UI/BigComponents/FullWelcomePaneWithTabs.ts index 38ad51ddb7..b9e149800f 100644 --- a/UI/BigComponents/FullWelcomePaneWithTabs.ts +++ b/UI/BigComponents/FullWelcomePaneWithTabs.ts @@ -17,6 +17,9 @@ import UserRelatedState from "../../Logic/State/UserRelatedState"; import Loc from "../../Models/Loc"; import BaseLayer from "../../Models/BaseLayer"; import FilteredLayer from "../../Models/FilteredLayer"; +import CopyrightPanel from "./CopyrightPanel"; +import FeaturePipeline from "../../Logic/FeatureSource/FeaturePipeline"; +import PrivacyPolicy from "./PrivacyPolicy"; export default class FullWelcomePaneWithTabs extends ScrollableFullScreen { @@ -29,6 +32,7 @@ export default class FullWelcomePaneWithTabs extends ScrollableFullScreen { featureSwitchShareScreen: UIEventSource<boolean>, featureSwitchMoreQuests: UIEventSource<boolean>, locationControl: UIEventSource<Loc>, + featurePipeline: FeaturePipeline, backgroundLayer: UIEventSource<BaseLayer>, filteredLayers: UIEventSource<FilteredLayer[]> } & UserRelatedState) { @@ -46,25 +50,16 @@ export default class FullWelcomePaneWithTabs extends ScrollableFullScreen { osmConnection: OsmConnection, featureSwitchShareScreen: UIEventSource<boolean>, featureSwitchMoreQuests: UIEventSource<boolean>, + featurePipeline: FeaturePipeline, locationControl: UIEventSource<Loc>, backgroundLayer: UIEventSource<BaseLayer>, filteredLayers: UIEventSource<FilteredLayer[]> } & UserRelatedState, isShown: UIEventSource<boolean>): { header: string | BaseUIElement; content: BaseUIElement }[] { - let welcome: BaseUIElement = new ThemeIntroductionPanel(isShown); - const tabs: { header: string | BaseUIElement, content: BaseUIElement }[] = [ - {header: `<img src='${state.layoutToUse.icon}'>`, content: welcome}, - { - header: Svg.osm_logo_img, - content: Translations.t.general.openStreetMapIntro.SetClass("link-underline") - }, - + {header: `<img src='${state.layoutToUse.icon}'>`, content: new ThemeIntroductionPanel(isShown)}, ] - if (state.featureSwitchShareScreen.data) { - tabs.push({header: Svg.share_img, content: new ShareScreen(state)}); - } if (state.featureSwitchMoreQuests.data) { tabs.push({ @@ -77,6 +72,31 @@ export default class FullWelcomePaneWithTabs extends ScrollableFullScreen { }); } + + if (state.featureSwitchShareScreen.data) { + tabs.push({header: Svg.share_img, content: new ShareScreen(state)}); + } + + const copyright = { + header: Svg.copyright_svg(), + content: + new Combine( + [ + Translations.t.general.openStreetMapIntro.SetClass("link-underline"), + Translations.t.general.attribution.attributionTitle, + new CopyrightPanel(state) + + ] + ) + } + tabs.push(copyright) + + const privacy = { + header: Svg.eye_svg(), + content: new PrivacyPolicy() + } + tabs.push(privacy) + return tabs; } @@ -85,6 +105,7 @@ export default class FullWelcomePaneWithTabs extends ScrollableFullScreen { osmConnection: OsmConnection, featureSwitchShareScreen: UIEventSource<boolean>, featureSwitchMoreQuests: UIEventSource<boolean>, + featurePipeline: FeaturePipeline, locationControl: UIEventSource<Loc>, backgroundLayer: UIEventSource<BaseLayer>, filteredLayers: UIEventSource<FilteredLayer[]> } & UserRelatedState, currentTab: UIEventSource<number>, isShown: UIEventSource<boolean>) { diff --git a/UI/BigComponents/Histogram.ts b/UI/BigComponents/Histogram.ts index 994a1ebe84..d786fbf5da 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<T> extends VariableUiElement { @@ -13,17 +13,65 @@ export default class Histogram<T> extends VariableUiElement { "#ff5858", "#ffad48", "#ffff59", - "#9d62d9", "#56bd56", "#63a9ff", + "#9d62d9", "#fa61fa" ] constructor(values: UIEventSource<string[]>, title: string | BaseUIElement, countTitle: string | BaseUIElement, - assignColor?: (t0: string) => string + options?: { + assignColor?: (t0: string) => string, + sortMode?: "name" | "name-rev" | "count" | "count-rev" + } ) { + const sortMode = new UIEventSource<"name" | "name-rev" | "count" | "count-rev">(options?.sortMode ?? "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 +87,21 @@ export default class Histogram<T> extends VariableUiElement { } const keys = Array.from(counts.keys()); - keys.sort() + + switch (sortMode.data) { + case "name": + keys.sort() + break; + case "name-rev": + keys.sort().reverse(/*Copy of array, inplace reverse if fine*/) + 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())) @@ -48,16 +110,16 @@ export default class Histogram<T> extends VariableUiElement { return Histogram.defaultPalette[index % Histogram.defaultPalette.length] }; let actualAssignColor = undefined; - if (assignColor === undefined) { + if (options?.assignColor === undefined) { actualAssignColor = fallbackColor; } else { actualAssignColor = (keyValue: string) => { - return assignColor(keyValue) ?? fallbackColor(keyValue) + return options.assignColor(keyValue) ?? fallbackColor(keyValue) } } return new Table( - [Translations.W(title), countTitle], + header, keys.map(key => [ key, new Combine([ @@ -68,7 +130,7 @@ export default class Histogram<T> extends VariableUiElement { ]), keys.map(_ => ["width: 20%"]) - ).SetClass("w-full"); - })); + ).SetClass("w-full zebra-table"); + }, [sortMode])); } } \ No newline at end of file diff --git a/UI/BigComponents/ImportButton.ts b/UI/BigComponents/ImportButton.ts deleted file mode 100644 index d03bfc45d2..0000000000 --- a/UI/BigComponents/ImportButton.ts +++ /dev/null @@ -1,446 +0,0 @@ -import BaseUIElement from "../BaseUIElement"; -import {SubtleButton} from "../Base/SubtleButton"; -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 {Tag} from "../../Logic/Tags/Tag"; -import Loading from "../Base/Loading"; -import LayoutConfig from "../../Models/ThemeConfig/LayoutConfig"; -import {OsmConnection} from "../../Logic/Osm/OsmConnection"; -import {Changes} from "../../Logic/Osm/Changes"; -import {ElementStorage} from "../../Logic/ElementStorage"; -import FeaturePipeline from "../../Logic/FeatureSource/FeaturePipeline"; -import Lazy from "../Base/Lazy"; -import ConfirmLocationOfPoint from "../NewPoint/ConfirmLocationOfPoint"; -import {PresetInfo} from "./SimpleAddUI"; -import Img from "../Base/Img"; -import {Translation} from "../i18n/Translation"; -import FilteredLayer from "../../Models/FilteredLayer"; -import SpecialVisualizations, {SpecialVisualization} from "../SpecialVisualizations"; -import {FixedUiElement} from "../Base/FixedUiElement"; -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 BaseLayer from "../../Models/BaseLayer"; -import ReplaceGeometryAction from "../../Logic/Osm/Actions/ReplaceGeometryAction"; -import CreateWayWithPointReuseAction from "../../Logic/Osm/Actions/CreateWayWithPointReuseAction"; -import OsmChangeAction from "../../Logic/Osm/Actions/OsmChangeAction"; -import FeatureSource from "../../Logic/FeatureSource/FeatureSource"; - - -export interface ImportButtonState { - description?: Translation; - image: () => BaseUIElement, - message: string | BaseUIElement, - originalTags: UIEventSource<any>, - newTags: UIEventSource<Tag[]>, - targetLayer: FilteredLayer, - feature: any, - minZoom: number, - state: { - backgroundLayer: UIEventSource<BaseLayer>; - filteredLayers: UIEventSource<FilteredLayer[]>; - featureSwitchUserbadge: UIEventSource<boolean>; - featurePipeline: FeaturePipeline; - allElements: ElementStorage; - selectedElement: UIEventSource<any>; - layoutToUse: LayoutConfig, - osmConnection: OsmConnection, - changes: Changes, - locationControl: UIEventSource<{ zoom: number }> - }, - guiState: { filterViewIsOpened: UIEventSource<boolean> }, - - snapSettings?: { - snapToLayers: string[], - snapToLayersMaxDist?: number - }, - conflationSettings?: { - conflateWayId: string - } -} - -export class ImportButtonSpecialViz implements SpecialVisualization { - funcName = "import_button" - docs = `This button will copy the data from an external dataset into OpenStreetMap. It is only functional in official themes but can be tested in unofficial themes. - -#### Importing a dataset into OpenStreetMap: requirements - -If you want to import a dataset, make sure that: - -1. The dataset to import has a suitable license -2. The community has been informed of the import -3. All other requirements of the [import guidelines](https://wiki.openstreetmap.org/wiki/Import/Guidelines) have been followed - -There are also some technicalities in your theme to keep in mind: - -1. The new feature will be added and will flow through the program as any other new point as if it came from OSM. - This means that there should be a layer which will match the new tags and which will display it. -2. The original feature from your geojson layer will gain the tag '_imported=yes'. - This should be used to change the appearance or even to hide it (eg by changing the icon size to zero) -3. There should be a way for the theme to detect previously imported points, even after reloading. - A reference number to the original dataset is an excellent way to do this -4. When importing ways, the theme creator is also responsible of avoiding overlapping ways. - -#### Disabled in unofficial themes - -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 ${OsmConnection.oauth_configs["osm-test"].url} - - -#### Specifying which tags to copy or add - -The argument \`tags\` of the import button takes a \`;\`-seperated list of tags to add. - -${Utils.Special_visualizations_tagsToApplyHelpText} - - -` - args = [ - { - name: "targetLayer", - doc: "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" - }, - { - name: "tags", - doc: "The tags to add onto the new object - see specification above" - }, - { - name: "text", - doc: "The text to show on the button", - defaultValue: "Import this data into OpenStreetMap" - }, - { - name: "icon", - doc: "A nice icon to show in the button", - defaultValue: "./assets/svg/addSmall.svg" - }, - { - name: "minzoom", - doc: "How far the contributor must zoom in before being able to import the point", - defaultValue: "18" - }, { - name: "Snap onto layer(s)/replace geometry with this other way", - doc: " - If the value corresponding with this key starts with 'way/' and the feature is a LineString or Polygon, the original OSM-way geometry will be changed to match the new geometry\n" + - " - 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", - }, { - name: "snap max distance", - doc: "The maximum distance that this point will move to snap onto a layer (in meters)", - defaultValue: "5" - }] - - constr(state, tagSource, args, guiState) { - if (!state.layoutToUse.official && !(state.featureSwitchIsTesting.data || state.osmConnection._oauth_config.url === OsmConnection.oauth_configs["osm-test"].url)) { - return new Combine([new FixedUiElement("The import button is disabled for unofficial themes to prevent accidents.").SetClass("alert"), - new FixedUiElement("To test, add <b>test=true</b> or <b>backend=osm-test</b> 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.")]) - } - const newTags = SpecialVisualizations.generateTagsToApply(args[1], tagSource) - const id = tagSource.data.id; - const feature = state.allElements.ContainingFeatures.get(id) - let minZoom = args[4] == "" ? 18 : Number(args[4]) - if (isNaN(minZoom)) { - console.warn("Invalid minzoom:", minZoom) - minZoom = 18 - } - const message = args[2] - const imageUrl = args[3] - let img: () => BaseUIElement - const targetLayer: FilteredLayer = state.filteredLayers.data.filter(fl => fl.layerDef.id === args[0])[0] - - if (imageUrl !== undefined && imageUrl !== "") { - img = () => new Img(imageUrl) - } else { - img = () => Svg.add_ui() - } - - let snapSettings = undefined - let conflationSettings = undefined - const possibleWayId = tagSource.data[args[5]] - if (possibleWayId?.startsWith("way/")) { - // This is a conflation - conflationSettings = { - conflateWayId: possibleWayId - } - } else { - - - const snapToLayers = args[5]?.split(";").filter(s => s !== "") - const snapToLayersMaxDist = Number(args[6] ?? 6) - - if (targetLayer === undefined) { - const e = "Target layer not defined: error in import button for theme: " + state.layoutToUse.id + ": layer " + args[0] + " not found" - console.error(e) - return new FixedUiElement(e).SetClass("alert") - } - snapSettings = { - snapToLayers, - snapToLayersMaxDist - } - } - - return new ImportButton( - { - state, guiState, image: img, - feature, newTags, message, minZoom, - originalTags: tagSource, - targetLayer, - snapSettings, - conflationSettings - } - ); - } -} - -export default class ImportButton extends Toggle { - - constructor(o: ImportButtonState) { - const t = Translations.t.general.add; - const isImported = o.originalTags.map(tags => tags._imported === "yes") - const appliedTags = new Toggle( - new VariableUiElement( - o.newTags.map(tgs => { - const parts = [] - for (const tag of tgs) { - parts.push(tag.key + "=" + tag.value) - } - const txt = parts.join(" & ") - return t.presetInfo.Subs({tags: txt}).SetClass("subtle") - })), undefined, - o.state.osmConnection.userDetails.map(ud => ud.csCount >= Constants.userJourney.tagsVisibleAt) - ) - const button = new SubtleButton(o.image(), o.message) - - o.minZoom = Math.max(16, o.minZoom ?? 19) - - - const withLoadingCheck = new Toggle(new Toggle( - new Loading(t.stillLoading.Clone()), - new Combine([button, appliedTags]).SetClass("flex flex-col"), - o.state.featurePipeline.runningQuery - ), t.zoomInFurther.Clone(), - o.state.locationControl.map(l => l.zoom >= o.minZoom) - ) - const importButton = new Toggle(t.hasBeenImported, withLoadingCheck, isImported) - - - const importClicked = new UIEventSource(false); - const importFlow = new Toggle( - ImportButton.createConfirmPanel(o, isImported, importClicked), - importButton, - importClicked - ) - - button.onClick(() => { - importClicked.setData(true); - }) - - - const pleaseLoginButton = - new Toggle(t.pleaseLogin.Clone() - .onClick(() => o.state.osmConnection.AttemptLogin()) - .SetClass("login-button-friendly"), - undefined, - o.state.featureSwitchUserbadge) - - - super(new Toggle(importFlow, - pleaseLoginButton, - o.state.osmConnection.isLoggedIn - ), - t.wrongType, - new UIEventSource(ImportButton.canBeImported(o.feature)) - ) - } - - public static createConfirmPanel(o: ImportButtonState, - isImported: UIEventSource<boolean>, - importClicked: UIEventSource<boolean>) { - const geometry = o.feature.geometry - if (geometry.type === "Point") { - return new Lazy(() => ImportButton.createConfirmPanelForPoint(o, isImported, importClicked)) - } - - - if (geometry.type === "Polygon" || geometry.type == "LineString") { - return new Lazy(() => ImportButton.createConfirmForWay(o, isImported, importClicked)) - } - console.error("Invalid type to import", geometry.type) - return new FixedUiElement("Invalid geometry type:" + geometry.type).SetClass("alert") - - - } - - public static createConfirmForWay(o: ImportButtonState, - isImported: UIEventSource<boolean>, - importClicked: UIEventSource<boolean>): BaseUIElement { - - const confirmationMap = Minimap.createMiniMap({ - allowMoving: true, - background: o.state.backgroundLayer - }) - confirmationMap.SetStyle("height: 20rem; overflow: hidden").SetClass("rounded-xl") - - const relevantFeatures = Utils.NoNull([o.feature, o.state.allElements?.ContainingFeatures?.get(o.conflationSettings?.conflateWayId)]) - // SHow all relevant data - including (eventually) the way of which the geometry will be replaced - new ShowDataMultiLayer({ - leafletMap: confirmationMap.leafletMap, - enablePopups: false, - zoomToFeatures: true, - features: new StaticFeatureSource(relevantFeatures, false), - allElements: o.state.allElements, - layers: o.state.filteredLayers - }) - - let action: OsmChangeAction & { getPreview(): Promise<FeatureSource> } - - const theme = o.state.layoutToUse.id - const changes = o.state.changes - let confirm: () => Promise<string> - if (o.conflationSettings !== undefined) { - - action = new ReplaceGeometryAction( - o.state, - o.feature, - o.conflationSettings.conflateWayId, - { - theme: o.state.layoutToUse.id, - newTags: o.newTags.data - } - ) - - confirm = async () => { - changes.applyAction(action) - return o.feature.properties.id - } - - } else { - const geom = o.feature.geometry - let coordinates: [number, number][] - if (geom.type === "LineString") { - coordinates = geom.coordinates - } else if (geom.type === "Polygon") { - coordinates = geom.coordinates[0] - } - - - action = new CreateWayWithPointReuseAction( - o.newTags.data, - coordinates, - // @ts-ignore - o.state, - [{ - withinRangeOfM: 1, - ifMatches: new Tag("_is_part_of_building", "true"), - mode: "move_osm_point" - - }] - ) - - - confirm = async () => { - changes.applyAction(action) - return undefined - } - } - - - action.getPreview().then(changePreview => { - new ShowDataLayer({ - leafletMap: confirmationMap.leafletMap, - enablePopups: false, - zoomToFeatures: false, - features: changePreview, - allElements: o.state.allElements, - layerToShow: AllKnownLayers.sharedLayers.get("conflation") - }) - }) - - const confirmButton = new SubtleButton(o.image(), o.message) - confirmButton.onClick(async () => { - { - if (isImported.data) { - return - } - o.originalTags.data["_imported"] = "yes" - o.originalTags.ping() // will set isImported as per its definition - - const idToSelect = await confirm() - - o.state.selectedElement.setData(o.state.allElements.ContainingFeatures.get(idToSelect)) - - } - }) - - const cancel = new SubtleButton(Svg.close_ui(), Translations.t.general.cancel).onClick(() => { - importClicked.setData(false) - }) - - - return new Combine([confirmationMap, confirmButton, cancel]).SetClass("flex flex-col") - } - - public static createConfirmPanelForPoint( - o: ImportButtonState, - isImported: UIEventSource<boolean>, - importClicked: UIEventSource<boolean>): BaseUIElement { - - async function confirm() { - if (isImported.data) { - return - } - o.originalTags.data["_imported"] = "yes" - o.originalTags.ping() // will set isImported as per its definition - const geometry = o.feature.geometry - const lat = geometry.coordinates[1] - const lon = geometry.coordinates[0]; - const newElementAction = new CreateNewNodeAction(o.newTags.data, lat, lon, { - theme: o.state.layoutToUse.id, - changeType: "import" - }) - - await o.state.changes.applyAction(newElementAction) - o.state.selectedElement.setData(o.state.allElements.ContainingFeatures.get( - newElementAction.newElementId - )) - } - - function cancel() { - importClicked.setData(false) - } - - const presetInfo = <PresetInfo>{ - tags: o.newTags.data, - icon: o.image, - description: o.description, - layerToAddTo: o.targetLayer, - name: o.message, - title: o.message, - preciseInput: { - snapToLayers: o.snapSettings?.snapToLayers, - maxSnapDistance: o.snapSettings?.snapToLayersMaxDist - } - } - - const [lon, lat] = o.feature.geometry.coordinates - return new ConfirmLocationOfPoint(o.state, o.guiState.filterViewIsOpened, presetInfo, Translations.W(o.message), { - lon, - lat - }, confirm, cancel) - - } - - - private static canBeImported(feature: any) { - const type = feature.geometry.type - return type === "Point" || type === "LineString" || (type === "Polygon" && feature.geometry.coordinates.length === 1) - } -} \ No newline at end of file diff --git a/UI/BigComponents/LeftControls.ts b/UI/BigComponents/LeftControls.ts index b0fc84da23..ea29a3e5a5 100644 --- a/UI/BigComponents/LeftControls.ts +++ b/UI/BigComponents/LeftControls.ts @@ -1,65 +1,79 @@ import Combine from "../Base/Combine"; import ScrollableFullScreen from "../Base/ScrollableFullScreen"; import Translations from "../i18n/Translations"; -import CopyrightPanel from "./CopyrightPanel"; -import ContributorCount from "../../Logic/ContributorCount"; import Toggle from "../Input/Toggle"; import MapControlButton from "../MapControlButton"; import Svg from "../../Svg"; import AllDownloads from "./AllDownloads"; import FilterView from "./FilterView"; import {UIEventSource} from "../../Logic/UIEventSource"; -import FeaturePipeline from "../../Logic/FeatureSource/FeaturePipeline"; -import Loc from "../../Models/Loc"; -import {BBox} from "../../Logic/BBox"; -import LayoutConfig from "../../Models/ThemeConfig/LayoutConfig"; -import FilteredLayer from "../../Models/FilteredLayer"; -import BaseLayer from "../../Models/BaseLayer"; -import {OsmConnection} from "../../Logic/Osm/OsmConnection"; +import BackgroundMapSwitch from "./BackgroundMapSwitch"; +import Lazy from "../Base/Lazy"; +import {VariableUiElement} from "../Base/VariableUIElement"; +import FeatureInfoBox from "../Popup/FeatureInfoBox"; +import CopyrightPanel from "./CopyrightPanel"; +import FeaturePipelineState from "../../Logic/State/FeaturePipelineState"; export default class LeftControls extends Combine { - constructor(state: { - layoutToUse: LayoutConfig, - featurePipeline: FeaturePipeline, - currentBounds: UIEventSource<BBox>, - locationControl: UIEventSource<Loc>, - overlayToggles: any, - featureSwitchEnableExport: UIEventSource<boolean>, - featureSwitchExportAsPdf: UIEventSource<boolean>, - filteredLayers: UIEventSource<FilteredLayer[]>, - featureSwitchFilter: UIEventSource<boolean>, - backgroundLayer: UIEventSource<BaseLayer>, - osmConnection: OsmConnection - }, + constructor(state: FeaturePipelineState, guiState: { + currentViewControlIsOpened: UIEventSource<boolean>; downloadControlIsOpened: UIEventSource<boolean>, filterViewIsOpened: UIEventSource<boolean>, copyrightViewIsOpened: UIEventSource<boolean> }) { - const toggledCopyright = new ScrollableFullScreen( - () => Translations.t.general.attribution.attributionTitle.Clone(), - () => - new CopyrightPanel( - state, - new ContributorCount(state).Contributors - ), - "copyright", - guiState.copyrightViewIsOpened - ); - const copyrightButton = new Toggle( - toggledCopyright, - new MapControlButton(Svg.copyright_svg()) - .onClick(() => toggledCopyright.isShown.setData(true)), - toggledCopyright.isShown - ).SetClass("p-0.5"); + const currentViewFL = state.currentView?.layer + const currentViewAction = new Toggle( + new Lazy(() => { + const feature: UIEventSource<any> = state.currentView.features.map(ffs => ffs[0]?.feature) + const icon = new VariableUiElement(feature.map(feature => { + const defaultIcon = Svg.checkbox_empty_svg() + if (feature === undefined) { + return defaultIcon; + } + const tags = {...feature.properties, button: "yes"} + const elem = currentViewFL.layerDef.mapRendering[0]?.GetSimpleIcon(new UIEventSource(tags)); + if (elem === undefined) { + return defaultIcon + } + return elem + })).SetClass("inline-block w-full h-full") + + const featureBox = new VariableUiElement(feature.map(feature => { + if (feature === undefined) { + return undefined + } + return new Lazy(() => { + const tagsSource = state.allElements.getEventSourceById(feature.properties.id) + return new FeatureInfoBox(tagsSource, currentViewFL.layerDef, state, "currentview", guiState.currentViewControlIsOpened) + .SetClass("md:floating-element-width") + }) + })).SetStyle("width: 40rem").SetClass("block") + + + return new Toggle( + featureBox, + new MapControlButton(icon), + guiState.currentViewControlIsOpened + ) + + }).onClick(() => { + guiState.currentViewControlIsOpened.setData(true) + }), + + + undefined, + new UIEventSource<boolean>(currentViewFL !== undefined && currentViewFL?.layerDef?.tagRenderings !== null) + ) const toggledDownload = new Toggle( new AllDownloads( - guiState.downloadControlIsOpened - ).SetClass("block p-1 rounded-full"), + guiState.downloadControlIsOpened, + state + ).SetClass("block p-1 rounded-full md:floating-element-width"), new MapControlButton(Svg.download_svg()) .onClick(() => guiState.downloadControlIsOpened.setData(true)), guiState.downloadControlIsOpened @@ -81,8 +95,8 @@ export default class LeftControls extends Combine { ), "filters", guiState.filterViewIsOpened - ).SetClass("rounded-lg"), - new MapControlButton(Svg.filter_svg()) + ).SetClass("rounded-lg md:floating-element-width"), + new MapControlButton(Svg.layers_svg()) .onClick(() => guiState.filterViewIsOpened.setData(true)), guiState.filterViewIsOpened ) @@ -93,10 +107,37 @@ export default class LeftControls extends Combine { state.featureSwitchFilter ); + const mapSwitch = new Toggle( + new BackgroundMapSwitch(state, state.backgroundLayer), + undefined, + state.featureSwitchBackgroundSelection + ) - super([filterButton, + // If the welcomeMessage is disabled, the copyright is hidden (as that is where the copyright is located + const copyright = new Toggle( + undefined, + new Lazy(() => + new Toggle( + new ScrollableFullScreen( + () => Translations.t.general.attribution.attributionTitle, + () => new CopyrightPanel(state), + "copyright", + guiState.copyrightViewIsOpened + ), + new MapControlButton(Svg.copyright_svg()).onClick(() => guiState.copyrightViewIsOpened.setData(true)), + guiState.copyrightViewIsOpened + ) + ), + state.featureSwitchWelcomeMessage + ) + + super([ + currentViewAction, + filterButton, downloadButtonn, - copyrightButton]) + copyright, + mapSwitch + ]) this.SetClass("flex flex-col") diff --git a/UI/BigComponents/LicensePicker.ts b/UI/BigComponents/LicensePicker.ts index 7e92e48455..19c608141a 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<string> { - 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<string>("CC0") + state?.osmConnection?.GetPreference("pictures-license") ?? new UIEventSource<string>("CC0") ) this.SetClass("flex flex-col sm:flex-row").SetStyle("float:left"); } + public static LicenseExplanations(): Map<string, Translation> { + let dict = new Map<string, Translation>(); + + 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..1d3820cbe7 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"; @@ -10,11 +9,13 @@ import BaseUIElement from "../BaseUIElement"; import LayoutConfig from "../../Models/ThemeConfig/LayoutConfig"; import {UIEventSource} from "../../Logic/UIEventSource"; import Loc from "../../Models/Loc"; -import {OsmConnection} from "../../Logic/Osm/OsmConnection"; +import UserDetails, {OsmConnection} from "../../Logic/Osm/OsmConnection"; 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,13 @@ export default class MoreScreen extends Combine { state: { locationControl?: UIEventSource<Loc>, layoutToUse?: LayoutConfig - }, layout: LayoutConfig, customThemeDefinition: string = undefined + }, layout: { + id: string, + icon: string, + title: any, + shortDescription: any, + definition?: any + }, isCustom: boolean = false ): BaseUIElement { if (layout === undefined) { @@ -73,16 +80,19 @@ 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}&` } + let hash = "" + if(layout.definition !== undefined){ + hash = "#"+btoa(JSON.stringify(layout.definition)) + } + const linkText = currentLocation?.map(currentLocation => { const params = [ ["z", currentLocation?.zoom], @@ -91,58 +101,122 @@ export default class MoreScreen extends Combine { ].filter(part => part[1] !== undefined) .map(part => part[0] + "=" + part[1]) .join("&") - return `${linkPrefix}${params}${linkSuffix}`; - }) ?? new UIEventSource<string>(`${linkPrefix}${linkSuffix}`) + return `${linkPrefix}${params}${hash}`; + }) ?? new UIEventSource<string>(`${linkPrefix}`) + return new SubtleButton(layout.icon, new Combine([ `<dt class='text-lg leading-6 font-medium text-gray-900 group-hover:text-blue-800'>`, - Translations.WT(layout.title), + new Translation(layout.title), `</dt>`, `<dd class='mt-1 text-base text-gray-500 group-hover:text-blue-900 overflow-ellipsis'>`, - Translations.WT(layout.shortDescription)?.SetClass("subtle") ?? "", + new Translation(layout.shortDescription)?.SetClass("subtle") ?? "", `</dd>`, ]), {url: linkText, newTab: false}); } + public 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 createUnofficialButtonFor(state: UserRelatedState, id: string): BaseUIElement { + const allPreferences = state.osmConnection.preferencesHandler.preferences.data; + const length = Number(allPreferences[id + "-length"]) + let str = ""; + for (let i = 0; i < length; i++) { + str += allPreferences[id + "-" + i] + } + if(str === undefined || str === "undefined"){ + return undefined + } + try { + const value: { + id: string + icon: string, + title: any, + shortDescription: any, + definition?: any + } = JSON.parse(str) + + return MoreScreen.createLinkButton(state, value, true) + } catch (e) { + console.debug("Could not parse unofficial theme information for " + id, "The json is: ", str, e) + return undefined + } + } + 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)) - return new Combine([ - Translations.t.general.customThemeIntro.Clone(), - new Combine(customThemeButtons).SetClass(themeListClasses) - ]); - })); + const prefix = "mapcomplete-unofficial-theme-"; + + var currentIds: UIEventSource<string[]> = state.osmConnection.preferencesHandler.preferences + .map(allPreferences => { + const ids: string[] = [] + + for (const key in allPreferences) { + if (key.startsWith(prefix) && key.endsWith("-combined-length")) { + const id = key.substring(0, key.length - "-length".length) + ids.push(id) + } + } + + return ids + }); + + var stableIds = UIEventSource.ListStabilized<string>(currentIds) + + return new VariableUiElement( + stableIds.map(ids => { + const allThemes: BaseUIElement[] = [] + for (const id of ids) { + const link = this.createUnofficialButtonFor(state, id) + if (link !== undefined) { + allThemes.push(link.SetClass(buttonClass)) + } + } + + if (allThemes.length <= 0) { + return undefined; + } + return new Combine([ + Translations.t.general.customThemeIntro.Clone(), + new Combine(allThemes).SetClass(themeListClasses) + ]); + })); } 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<string> = 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 +232,7 @@ export default class MoreScreen extends Combine { } private static createOfficialThemesList(state: { osmConnection: OsmConnection, locationControl?: UIEventSource<Loc> }, buttonClass: string): BaseUIElement { - let officialThemes = AllKnownLayouts.layoutsList + let officialThemes = themeOverview["default"]; let buttons = officialThemes.map((layout) => { if (layout === undefined) { @@ -184,8 +258,9 @@ 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/PrivacyPolicy.ts b/UI/BigComponents/PrivacyPolicy.ts new file mode 100644 index 0000000000..b6955cb36d --- /dev/null +++ b/UI/BigComponents/PrivacyPolicy.ts @@ -0,0 +1,26 @@ +import Combine from "../Base/Combine"; +import Translations from "../i18n/Translations"; +import Title from "../Base/Title"; + +export default class PrivacyPolicy extends Combine { + constructor() { + const t = Translations.t.privacy + super([ + new Title(t.title, 2), + t.intro, + + new Title(t.trackingTitle), + t.tracking, + new Title(t.geodataTitle), + t.geodata, + new Title(t.editingTitle), + t.editing, + new Title(t.miscCookiesTitle), + t.miscCookies, + new Title(t.whileYoureHere), + t.surveillance, + + ]); + this.SetClass("link-underline") + } +} \ No newline at end of file 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 04a3aa3145..cd86e1d52d 100644 --- a/UI/BigComponents/SimpleAddUI.ts +++ b/UI/BigComponents/SimpleAddUI.ts @@ -22,6 +22,8 @@ import {Changes} from "../../Logic/Osm/Changes"; import FeaturePipeline from "../../Logic/FeatureSource/FeaturePipeline"; import {ElementStorage} from "../../Logic/ElementStorage"; import ConfirmLocationOfPoint from "../NewPoint/ConfirmLocationOfPoint"; +import BaseLayer from "../../Models/BaseLayer"; +import Loading from "../Base/Loading"; /* * The SimpleAddUI is a single panel, which can have multiple states: @@ -34,14 +36,17 @@ import ConfirmLocationOfPoint from "../NewPoint/ConfirmLocationOfPoint"; export interface PresetInfo extends PresetConfig { name: string | BaseUIElement, icon: () => BaseUIElement, - layerToAddTo: FilteredLayer + layerToAddTo: FilteredLayer, + boundsFactor?: 0.25 | number } export default class SimpleAddUI extends Toggle { constructor(isShown: UIEventSource<boolean>, + resetScrollSignal: UIEventSource<void>, filterViewIsOpened: UIEventSource<boolean>, state: { + featureSwitchIsTesting: UIEventSource<boolean>, layoutToUse: LayoutConfig, osmConnection: OsmConnection, changes: Changes, @@ -52,6 +57,7 @@ export default class SimpleAddUI extends Toggle { locationControl: UIEventSource<Loc>, filteredLayers: UIEventSource<FilteredLayer[]>, featureSwitchFilter: UIEventSource<boolean>, + backgroundLayer: UIEventSource<BaseLayer> }) { const loginButton = new SubtleButton(Svg.osm_logo_ui(), Translations.t.general.add.pleaseLogin.Clone()) .onClick(() => state.osmConnection.AttemptLogin()); @@ -63,6 +69,11 @@ export default class SimpleAddUI extends Toggle { const selectedPreset = new UIEventSource<PresetInfo>(undefined); + selectedPreset.addCallback(_ => { + resetScrollSignal.ping(); + }) + + isShown.addCallback(_ => selectedPreset.setData(undefined)) // Clear preset selection when the UI is closed/opened state.LastClickLocation.addCallback(_ => selectedPreset.setData(undefined)) @@ -89,8 +100,7 @@ export default class SimpleAddUI extends Toggle { return presetsOverview } - - function confirm(tags, location, snapOntoWayId?: string) { + function confirm(tags: any[], location: { lat: number, lon: number }, snapOntoWayId?: string) { if (snapOntoWayId === undefined) { createNewPoint(tags, location, undefined) } else { @@ -110,7 +120,10 @@ export default class SimpleAddUI extends Toggle { message, state.LastClickLocation.data, confirm, - cancel) + cancel, + () => { + isShown.setData(false) + }) } )) @@ -119,7 +132,7 @@ export default class SimpleAddUI extends Toggle { new Toggle( new Toggle( new Toggle( - Translations.t.general.add.stillLoading.Clone().SetClass("alert"), + new Loading(Translations.t.general.add.stillLoading).SetClass("alert"), addUi, state.featurePipeline.runningQuery ), @@ -134,9 +147,6 @@ export default class SimpleAddUI extends Toggle { loginButton, state.osmConnection.isLoggedIn ) - - - this.SetStyle("font-size:large"); } @@ -154,6 +164,7 @@ export default class SimpleAddUI extends Toggle { private static CreateAllPresetsPanel(selectedPreset: UIEventSource<PresetInfo>, state: { + featureSwitchIsTesting: UIEventSource<boolean>; filteredLayers: UIEventSource<FilteredLayer[]>, featureSwitchFilter: UIEventSource<boolean>, osmConnection: OsmConnection @@ -161,26 +172,23 @@ export default class SimpleAddUI extends Toggle { const presetButtons = SimpleAddUI.CreatePresetButtons(state, selectedPreset) let intro: BaseUIElement = Translations.t.general.add.intro; - let testMode: BaseUIElement = undefined; - if (state.osmConnection?.userDetails?.data?.dryRun) { - testMode = Translations.t.general.testing.Clone().SetClass("alert") - } + let testMode: BaseUIElement = new Toggle(Translations.t.general.testing.SetClass("alert"), + undefined, + state.featureSwitchIsTesting); return new Combine([intro, testMode, presetButtons]).SetClass("flex flex-col") } - private static CreatePresetSelectButton(preset: PresetInfo, osmConnection: OsmConnection) { + private static CreatePresetSelectButton(preset: PresetInfo) { - const tagInfo = SimpleAddUI.CreateTagInfoFor(preset, osmConnection, false); return new SubtleButton( preset.icon(), new Combine([ Translations.t.general.add.addNew.Subs({ category: preset.name }).SetClass("font-bold"), - Translations.WT(preset.description)?.FirstSentence(), - tagInfo?.SetClass("subtle") + Translations.WT(preset.description)?.FirstSentence() ]).SetClass("flex flex-col") ) } @@ -214,16 +222,15 @@ export default class SimpleAddUI extends Toggle { let icon: () => BaseUIElement = () => layer.layerDef.mapRendering[0].GenerateLeafletStyle(new UIEventSource<any>(tags), false).html .SetClass("w-12 h-12 block relative"); const presetInfo: PresetInfo = { - tags: preset.tags, layerToAddTo: layer, name: preset.title, title: preset.title, - description: preset.description, icon: icon, - preciseInput: preset.preciseInput + preciseInput: preset.preciseInput, + ...preset } - const button = SimpleAddUI.CreatePresetSelectButton(presetInfo, state.osmConnection); + const button = SimpleAddUI.CreatePresetSelectButton(presetInfo); button.onClick(() => { selectedPreset.setData(presetInfo) }) diff --git a/UI/BigComponents/ThemeIntroductionPanel.ts b/UI/BigComponents/ThemeIntroductionPanel.ts index ae37813252..def06d7a91 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<boolean>) { + 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( + undefined, + 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..82adbe12ea 100644 --- a/UI/BigComponents/UserBadge.ts +++ b/UI/BigComponents/UserBadge.ts @@ -8,20 +8,12 @@ import Link from "../Base/Link"; import Toggle from "../Input/Toggle"; import Img from "../Base/Img"; import MapState from "../../Logic/State/MapState"; +import {LoginToggle} from "../Popup/LoginButton"; -export default class UserBadge extends Toggle { +export default class UserBadge extends LoginToggle { constructor(state: MapState) { - - const userDetails = state.osmConnection.userDetails; - - const loginButton = Translations.t.general.loginWithOpenStreetMap - .Clone() - .SetClass("userbadge-login inline-flex justify-center items-center w-full h-full text-lg font-bold min-w-[20em]") - .onClick(() => state.osmConnection.AttemptLogin()); - - const logout = Svg.logout_svg() .onClick(() => { @@ -34,7 +26,7 @@ export default class UserBadge extends Toggle { const homeButton = new VariableUiElement( userDetails.map((userinfo) => { if (userinfo.home) { - return Svg.home_ui(); + return Svg.home_svg(); } return " "; }) @@ -43,7 +35,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" @@ -73,13 +65,14 @@ export default class UserBadge extends Toggle { ).SetClass("alert") } - let dryrun = new FixedUiElement(""); - if (user.dryRun) { - dryrun = new FixedUiElement("TESTING").SetClass("alert font-xs p-0 max-h-4"); - } + let dryrun = new Toggle( + new FixedUiElement("TESTING").SetClass("alert font-xs p-0 max-h-4"), + undefined, + state.featureSwitchIsTesting + ) const settings = - new Link(Svg.gear_svg(), + new Link(Svg.gear, `${user.backend}/user/${encodeURIComponent(user.name)}/account`, true) @@ -125,16 +118,14 @@ export default class UserBadge extends Toggle { } })); - userBadge.SetClass("inline-block m-0 w-full").SetStyle("pointer-events: all") + super( - userBadge, - loginButton, - state.osmConnection.isLoggedIn + new Combine([userBadge.SetClass("inline-block m-0 w-full").SetStyle("pointer-events: all")]) + .SetClass("shadow rounded-full h-min overflow-hidden block w-full md:w-max"), + Translations.t.general.loginWithOpenStreetMap, + state ) - - this.SetClass("shadow rounded-full h-min overflow-hidden block w-full md:w-max") - } diff --git a/UI/CenterMessageBox.ts b/UI/CenterMessageBox.ts index 500fc4609d..a05b091a5e 100644 --- a/UI/CenterMessageBox.ts +++ b/UI/CenterMessageBox.ts @@ -1,6 +1,7 @@ import Translations from "./i18n/Translations"; import {VariableUiElement} from "./Base/VariableUIElement"; import FeaturePipelineState from "../Logic/State/FeaturePipelineState"; +import Loading from "./Base/Loading"; export default class CenterMessageBox extends VariableUiElement { @@ -10,7 +11,7 @@ export default class CenterMessageBox extends VariableUiElement { const message = updater.runningQuery.map( isRunning => { if (isRunning) { - return {el: t.loadingData}; + return {el: new Loading(t.loadingData)}; } if (!updater.sufficientlyZoomed.data) { return {el: t.zoomIn} @@ -26,8 +27,8 @@ export default class CenterMessageBox extends VariableUiElement { super(message.map(toShow => toShow.el)) - this.SetClass("block " + - "rounded-3xl bg-white text-xl font-bold text-center pointer-events-none p-4") + this.SetClass("flex justify-center " + + "rounded-3xl bg-white text-xl font-bold pointer-events-none p-4") this.SetStyle("transition: opacity 750ms linear") message.addCallbackAndRun(toShow => { diff --git a/UI/DefaultGUI.ts b/UI/DefaultGUI.ts index a4ac2ddee0..7a9786787c 100644 --- a/UI/DefaultGUI.ts +++ b/UI/DefaultGUI.ts @@ -8,20 +8,23 @@ import Svg from "../Svg"; import Toggle from "./Input/Toggle"; import UserBadge from "./BigComponents/UserBadge"; import SearchAndGo from "./BigComponents/SearchAndGo"; -import Link from "./Base/Link"; import BaseUIElement from "./BaseUIElement"; -import {VariableUiElement} from "./Base/VariableUIElement"; 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"; +import ExtraLinkButton from "./BigComponents/ExtraLinkButton"; /** @@ -44,54 +47,79 @@ 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<boolean>, 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<boolean>) => BaseUIElement = undefined; + if (noteLayer !== undefined) { + addNewNoteDialog = (isShown) => new NewNoteUi(noteLayer, isShown, state) + } + function setup() { + if (!hasPresets && addNewNoteDialog === undefined) { + return; // nothing to do + } const newPointDialogIsShown = new UIEventSource<boolean>(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, + ({resetScrollSignal}) => { + let addNew = undefined; + if (hasPresets) { + addNew = new SimpleAddUI(newPointDialogIsShown, resetScrollSignal, 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,9 +139,10 @@ 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, + popup: undefined, + state }) state.leafletMap.addCallbackAndRunD(_ => { @@ -130,31 +159,26 @@ export default class DefaultGUI { const guiState = this._guiState; const self = this - Toggle.If(state.featureSwitchUserbadge, - () => new UserBadge(state) - ).AttachTo("userbadge") + new Combine([ + Toggle.If(state.featureSwitchUserbadge, + () => new UserBadge(state) + ), + Toggle.If(state.featureSwitchExtraLinkEnabled, + () => new ExtraLinkButton(state, state.layoutToUse.extraLink) + ) + ]).SetClass("flex flex-col") + .AttachTo("userbadge") Toggle.If(state.featureSwitchSearch, () => new SearchAndGo(state)) .AttachTo("searchbox"); - let iframePopout: () => BaseUIElement = undefined; - - if (window !== window.top) { - // MapComplete is running in an iframe - iframePopout = () => new VariableUiElement(state.locationControl.map(loc => { - const url = `${window.location.origin}${window.location.pathname}?z=${loc.zoom ?? 0}&lat=${loc.lat ?? 0}&lon=${loc.lon ?? 0}`; - const link = new Link(Svg.pop_out_img, url, true).SetClass("block w-full h-full p-1.5") - return new MapControlButton(link) - })) - - } - - new Toggle(new Lazy(() => self.InitWelcomeMessage()), - Toggle.If(state.featureSwitchIframePopoutEnabled, iframePopout), - state.featureSwitchWelcomeMessage - ).AttachTo("messagesbox"); + Toggle.If( + state.featureSwitchWelcomeMessage, + () => self.InitWelcomeMessage() + ) + .AttachTo("messagesbox"); new LeftControls(state, guiState).AttachTo("bottom-left"); @@ -197,6 +221,7 @@ export default class DefaultGUI { return; } isOpened.setData(false); + return true; // Unregister this caller - we only autoclose once }); this.state.selectedElement.addCallbackAndRunD((_) => { diff --git a/UI/DefaultGuiState.ts b/UI/DefaultGuiState.ts index 537eb4b70b..b67723c108 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 { @@ -9,6 +8,7 @@ export class DefaultGuiState { public readonly downloadControlIsOpened: UIEventSource<boolean>; public readonly filterViewIsOpened: UIEventSource<boolean>; public readonly copyrightViewIsOpened: UIEventSource<boolean>; + public readonly currentViewControlIsOpened: UIEventSource<boolean>; public readonly welcomeMessageOpenedTab: UIEventSource<number> public readonly allFullScreenStates: UIEventSource<boolean>[] = [] @@ -18,42 +18,50 @@ export class DefaultGuiState { this.welcomeMessageOpenedTab = UIEventSource.asFloat(QueryParameters.GetQueryParameter( "tab", "0", - `The tab that is shown in the welcome-message. 0 = the explanation of the theme,1 = OSM-credits, 2 = sharescreen, 3 = more themes, 4 = about mapcomplete (user must be logged in and have >${Constants.userJourney.mapCompleteHelpUnlock} changesets)` + `The tab that is shown in the welcome-message.` )); this.welcomeMessageIsOpened = QueryParameters.GetBooleanQueryParameter( "welcome-control-toggle", - "false", + false, "Whether or not the welcome panel is shown" ) this.downloadControlIsOpened = QueryParameters.GetBooleanQueryParameter( "download-control-toggle", - "false", + false, "Whether or not the download panel is shown" ) this.filterViewIsOpened = QueryParameters.GetBooleanQueryParameter( "filter-toggle", - "false", + false, "Whether or not the filter view is shown" ) this.copyrightViewIsOpened = QueryParameters.GetBooleanQueryParameter( "copyright-toggle", - "false", + false, "Whether or not the copyright view is shown" ) - if (Hash.hash.data === "download") { - this.downloadControlIsOpened.setData(true) + this.currentViewControlIsOpened = QueryParameters.GetBooleanQueryParameter( + "currentview-toggle", + false, + "Whether or not the current view box is shown" + ) + 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 === "" || 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) } - this.allFullScreenStates.push(this.downloadControlIsOpened, this.filterViewIsOpened, this.copyrightViewIsOpened, this.welcomeMessageIsOpened) + this.allFullScreenStates.push(this.downloadControlIsOpened, this.filterViewIsOpened, this.copyrightViewIsOpened, this.welcomeMessageIsOpened, this.currentViewControlIsOpened) for (let i = 0; i < this.allFullScreenStates.length; i++) { const fullScreenState = this.allFullScreenStates[i]; diff --git a/UI/ExportPDF.ts b/UI/ExportPDF.ts index 6f27794f85..c4b9f6b4bc 100644 --- a/UI/ExportPDF.ts +++ b/UI/ExportPDF.ts @@ -86,13 +86,18 @@ export default class ExportPDF { if (tile.layer.layerDef.minzoom > l.zoom) { return } + if(tile.layer.layerDef.id.startsWith("note_import")){ + // Don't export notes to import + return; + } new ShowDataLayer( { features: tile, leafletMap: minimap.leafletMap, layerToShow: tile.layer.layerDef, - enablePopups: false, - doShowLayer: tile.layer.isDisplayed + popup: undefined, + doShowLayer: tile.layer.isDisplayed, + state: undefined } ) }) diff --git a/UI/Image/DeleteImage.ts b/UI/Image/DeleteImage.ts index eca3dc7381..03f8d7d9ba 100644 --- a/UI/Image/DeleteImage.ts +++ b/UI/Image/DeleteImage.ts @@ -2,23 +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<any>) { + constructor(key: string, tags: UIEventSource<any>, 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 })) }); @@ -26,10 +27,10 @@ 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" + theme: state.layoutToUse.id }) ) }); @@ -54,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..92a7136fb8 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 }[]>, tags: UIEventSource<any>, - 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..743b1b2c28 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<string, UIEventSource<number>>() - constructor(tagsSource: UIEventSource<any>, imagePrefix: string = "image", text: string = undefined) { + constructor(tagsSource: UIEventSource<any>, + state: { + osmConnection: OsmConnection; + layoutToUse: LayoutConfig; + changes: Changes, + featureSwitchUserbadge: UIEventSource<boolean>; + }, + 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; @@ -64,7 +75,7 @@ export class ImageUploadFlow extends Toggle { const label = new Combine([ Svg.camera_plus_ui().SetClass("block w-12 h-12 p-1 text-4xl "), labelContent - ]).SetClass("p-2 border-4 border-black rounded-full font-bold h-full align-middle w-full flex justify-center") + ]).SetClass("p-2 border-4 border-detail rounded-full font-bold h-full align-middle w-full flex justify-center") const fileSelector = new FileSelectorButton(label) fileSelector.GetValue().addCallback(filelist => { @@ -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/ImportFlow/AskMetadata.ts b/UI/ImportFlow/AskMetadata.ts new file mode 100644 index 0000000000..46562be4c2 --- /dev/null +++ b/UI/ImportFlow/AskMetadata.ts @@ -0,0 +1,100 @@ +import Combine from "../Base/Combine"; +import {FlowStep} from "./FlowStep"; +import {UIEventSource} from "../../Logic/UIEventSource"; +import ValidatedTextField from "../Input/ValidatedTextField"; +import {LocalStorageSource} from "../../Logic/Web/LocalStorageSource"; +import Title from "../Base/Title"; +import {AllKnownLayouts} from "../../Customizations/AllKnownLayouts"; +import {DropDown} from "../Input/DropDown"; +import LayerConfig from "../../Models/ThemeConfig/LayerConfig"; +import BaseUIElement from "../BaseUIElement"; +import {FixedUiElement} from "../Base/FixedUiElement"; + +export class AskMetadata extends Combine implements FlowStep<{ + features: any[], + wikilink: string, + intro: string, + source: string, + theme: string +}> { + + public readonly Value: UIEventSource<{ + features: any[], + wikilink: string, + intro: string, + source: string, + theme: string + }>; + public readonly IsValid: UIEventSource<boolean>; + + constructor(params: ({ features: any[], layer: LayerConfig })) { + + const introduction = ValidatedTextField.ForType("text").ConstructInputElement({ + value: LocalStorageSource.Get("import-helper-introduction-text"), + inputStyle: "width: 100%" + }) + + const wikilink = ValidatedTextField.ForType("string").ConstructInputElement({ + value: LocalStorageSource.Get("import-helper-wikilink-text"), + inputStyle: "width: 100%" + }) + + const source = ValidatedTextField.ForType("string").ConstructInputElement({ + value: LocalStorageSource.Get("import-helper-source-text"), + inputStyle: "width: 100%" + }) + + let options: { value: string, shown: BaseUIElement }[] = AllKnownLayouts.layoutsList + .filter(th => th.layers.some(l => l.id === params.layer.id)) + .filter(th => th.id !== "personal") + .map(th => ({ + value: th.id, + shown: th.title + })) + + options.splice(0, 0, { + shown: new FixedUiElement("Select a theme"), + value: undefined + }) + + const theme = new DropDown("Which theme should be linked in the note?", options) + + ValidatedTextField.ForType("string").ConstructInputElement({ + value: LocalStorageSource.Get("import-helper-theme-text"), + inputStyle: "width: 100%" + }) + + super([ + new Title("Set metadata"), + "Before adding " + params.features.length + " notes, please provide some extra information.", + "Please, write an introduction for someone who sees the note", + introduction.SetClass("w-full border border-black"), + "What is the source of this data? If 'source' is set in the feature, this value will be ignored", + source.SetClass("w-full border border-black"), + "On what wikipage can one find more information about this import?", + wikilink.SetClass("w-full border border-black"), + theme + ]); + this.SetClass("flex flex-col") + + this.Value = introduction.GetValue().map(intro => { + return { + features: params.features, + wikilink: wikilink.GetValue().data, + intro, + source: source.GetValue().data, + theme: theme.GetValue().data + + } + }, [wikilink.GetValue(), source.GetValue(), theme.GetValue()]) + + this.IsValid = this.Value.map(obj => { + if (obj === undefined) { + return false; + } + return obj.theme !== undefined && obj.features !== undefined && obj.wikilink !== undefined && obj.intro !== undefined && obj.source !== undefined; + }) + } + + +} \ No newline at end of file diff --git a/UI/ImportFlow/CompareToAlreadyExistingNotes.ts b/UI/ImportFlow/CompareToAlreadyExistingNotes.ts new file mode 100644 index 0000000000..6054e34349 --- /dev/null +++ b/UI/ImportFlow/CompareToAlreadyExistingNotes.ts @@ -0,0 +1,150 @@ +import Combine from "../Base/Combine"; +import {FlowStep} from "./FlowStep"; +import {BBox} from "../../Logic/BBox"; +import LayerConfig from "../../Models/ThemeConfig/LayerConfig"; +import {UIEventSource} from "../../Logic/UIEventSource"; +import {DesugaringContext} from "../../Models/ThemeConfig/Conversion/Conversion"; +import CreateNoteImportLayer from "../../Models/ThemeConfig/Conversion/CreateNoteImportLayer"; +import FilteredLayer, {FilterState} from "../../Models/FilteredLayer"; +import GeoJsonSource from "../../Logic/FeatureSource/Sources/GeoJsonSource"; +import MetaTagging from "../../Logic/MetaTagging"; +import RelationsTracker from "../../Logic/Osm/RelationsTracker"; +import FilteringFeatureSource from "../../Logic/FeatureSource/Sources/FilteringFeatureSource"; +import Minimap from "../Base/Minimap"; +import ShowDataLayer from "../ShowDataLayer/ShowDataLayer"; +import FeatureInfoBox from "../Popup/FeatureInfoBox"; +import {ImportUtils} from "./ImportUtils"; +import * as import_candidate from "../../assets/layers/import_candidate/import_candidate.json"; +import StaticFeatureSource from "../../Logic/FeatureSource/Sources/StaticFeatureSource"; +import Title from "../Base/Title"; +import Toggle from "../Input/Toggle"; +import Loading from "../Base/Loading"; +import {FixedUiElement} from "../Base/FixedUiElement"; +import {VariableUiElement} from "../Base/VariableUIElement"; +import * as known_layers from "../../assets/generated/known_layers.json" +import {LayerConfigJson} from "../../Models/ThemeConfig/Json/LayerConfigJson"; + +/** + * Filters out points for which the import-note already exists, to prevent duplicates + */ +export class CompareToAlreadyExistingNotes extends Combine implements FlowStep<{ bbox: BBox, layer: LayerConfig, geojson: any }> { + + public IsValid: UIEventSource<boolean> + public Value: UIEventSource<{ bbox: BBox, layer: LayerConfig, geojson: any }> + + + constructor(state, params: { bbox: BBox, layer: LayerConfig, geojson: { features: any[] } }) { + + const layerConfig = known_layers.layers.filter(l => l.id === params.layer.id)[0] + if (layerConfig === undefined) { + console.error("WEIRD: layer not found in the builtin layer overview") + } + const importLayerJson = new CreateNoteImportLayer(365).convertStrict(<LayerConfigJson>layerConfig, "CompareToAlreadyExistingNotes") + const importLayer = new LayerConfig(importLayerJson, "import-layer-dynamic") + const flayer: FilteredLayer = { + appliedFilters: new UIEventSource<Map<string, FilterState>>(new Map<string, FilterState>()), + isDisplayed: new UIEventSource<boolean>(true), + layerDef: importLayer + } + const allNotesWithinBbox = new GeoJsonSource(flayer, params.bbox.padAbsolute(0.0001)) + allNotesWithinBbox.features.map(f => MetaTagging.addMetatags( + f, + { + memberships: new RelationsTracker(), + getFeaturesWithin: (layerId, bbox: BBox) => [], + getFeatureById: (id: string) => undefined + }, + importLayer, + state, + { + includeDates: true, + // We assume that the non-dated metatags are already set by the cache generator + includeNonDates: true + } + ) + ) + const alreadyOpenImportNotes = new FilteringFeatureSource(state, undefined, allNotesWithinBbox) + alreadyOpenImportNotes.features.addCallbackD(features => console.log("Loaded and filtered features are", features)) + const map = Minimap.createMiniMap() + map.SetClass("w-full").SetStyle("height: 500px") + + const comparisonMap = Minimap.createMiniMap({ + location: map.location, + + }) + comparisonMap.SetClass("w-full").SetStyle("height: 500px") + + new ShowDataLayer({ + layerToShow: importLayer, + state, + zoomToFeatures: true, + leafletMap: map.leafletMap, + features: alreadyOpenImportNotes, + popup: (tags, layer) => new FeatureInfoBox(tags, layer, state) + }) + + + const maxDistance = new UIEventSource<number>(5) + + const partitionedImportPoints = ImportUtils.partitionFeaturesIfNearby(params.geojson, alreadyOpenImportNotes.features + .map(ff => ({features: ff.map(ff => ff.feature)})), maxDistance) + + + new ShowDataLayer({ + layerToShow: new LayerConfig(import_candidate), + state, + zoomToFeatures: true, + leafletMap: comparisonMap.leafletMap, + features: new StaticFeatureSource(partitionedImportPoints.map(p => p.hasNearby), false), + popup: (tags, layer) => new FeatureInfoBox(tags, layer, state) + }) + + super([ + new Title("Compare with already existing 'to-import'-notes"), + new VariableUiElement( + alreadyOpenImportNotes.features.map(notesWithImport => { + if (allNotesWithinBbox.features.data === undefined || allNotesWithinBbox.features.data.length === 0) { + return new Loading("Fetching notes from OSM") + } + if (notesWithImport.length === 0) { + return new FixedUiElement("No previous note to import found").SetClass("thanks") + } + return new Combine([ + map, + "The following (red) elements are elements to import which are nearby a matching element that is already up for import. These won't be imported", + + new Toggle( + new FixedUiElement("All of the proposed points have (or had) an import note already").SetClass("alert w-full block").SetStyle("padding: 0.5rem"), + new VariableUiElement(partitionedImportPoints.map(({noNearby}) => noNearby.length + " elements can be imported")).SetClass("thanks p-8"), + partitionedImportPoints.map(({noNearby}) => noNearby.length === 0) + ).SetClass("w-full"), + comparisonMap, + ]).SetClass("flex flex-col") + + }, [allNotesWithinBbox.features]) + ), + + + ]); + this.SetClass("flex flex-col") + this.Value = partitionedImportPoints.map(({noNearby}) => ({ + geojson: {features: noNearby, type: "FeatureCollection"}, + bbox: params.bbox, + layer: params.layer + })) + + this.IsValid = alreadyOpenImportNotes.features.map(ff => { + if (allNotesWithinBbox.features.data.length === 0) { + // Not yet loaded + return false + } + if (ff.length == 0) { + // No import notes at all + return true; + } + + return partitionedImportPoints.data.noNearby.length > 0; // at least _something_ can be imported + }, [partitionedImportPoints, allNotesWithinBbox.features]) + } + +} \ No newline at end of file diff --git a/UI/ImportFlow/ConfirmProcess.ts b/UI/ImportFlow/ConfirmProcess.ts new file mode 100644 index 0000000000..d541b94803 --- /dev/null +++ b/UI/ImportFlow/ConfirmProcess.ts @@ -0,0 +1,32 @@ +import Combine from "../Base/Combine"; +import {FlowStep} from "./FlowStep"; +import {UIEventSource} from "../../Logic/UIEventSource"; +import Link from "../Base/Link"; +import {FixedUiElement} from "../Base/FixedUiElement"; +import CheckBoxes from "../Input/Checkboxes"; +import Title from "../Base/Title"; + +export class ConfirmProcess<T> extends Combine implements FlowStep<T> { + + public IsValid: UIEventSource<boolean> + public Value: UIEventSource<T> + + constructor(v: T) { + + const toConfirm = [ + new Combine(["I have read the ", new Link("import guidelines on the OSM wiki", "https://wiki.openstreetmap.org/wiki/Import_guidelines", true)]), + new FixedUiElement("I did contact the (local) community about this import"), + new FixedUiElement("The license of the data to import allows it to be imported into OSM. They are allowed to be redistributed commercially, with only minimal attribution"), + new FixedUiElement("The process is documented on the OSM-wiki (you'll need this link later)") + ]; + + const licenseClear = new CheckBoxes(toConfirm) + super([ + new Title("Did you go through the import process?"), + licenseClear + ]); + this.SetClass("link-underline") + this.IsValid = licenseClear.GetValue().map(selected => toConfirm.length == selected.length) + this.Value = new UIEventSource<T>(v) + } +} \ No newline at end of file diff --git a/UI/ImportFlow/ConflationChecker.ts b/UI/ImportFlow/ConflationChecker.ts new file mode 100644 index 0000000000..b197d42684 --- /dev/null +++ b/UI/ImportFlow/ConflationChecker.ts @@ -0,0 +1,253 @@ +import {BBox} from "../../Logic/BBox"; +import LayerConfig from "../../Models/ThemeConfig/LayerConfig"; +import Combine from "../Base/Combine"; +import Title from "../Base/Title"; +import {Overpass} from "../../Logic/Osm/Overpass"; +import {UIEventSource} from "../../Logic/UIEventSource"; +import Constants from "../../Models/Constants"; +import RelationsTracker from "../../Logic/Osm/RelationsTracker"; +import {VariableUiElement} from "../Base/VariableUIElement"; +import {FixedUiElement} from "../Base/FixedUiElement"; +import {FlowStep} from "./FlowStep"; +import Loading from "../Base/Loading"; +import {SubtleButton} from "../Base/SubtleButton"; +import Svg from "../../Svg"; +import {Utils} from "../../Utils"; +import {IdbLocalStorage} from "../../Logic/Web/IdbLocalStorage"; +import Minimap from "../Base/Minimap"; +import BaseLayer from "../../Models/BaseLayer"; +import AvailableBaseLayers from "../../Logic/Actors/AvailableBaseLayers"; +import Loc from "../../Models/Loc"; +import Attribution from "../BigComponents/Attribution"; +import ShowDataLayer from "../ShowDataLayer/ShowDataLayer"; +import StaticFeatureSource from "../../Logic/FeatureSource/Sources/StaticFeatureSource"; +import ValidatedTextField from "../Input/ValidatedTextField"; +import {LocalStorageSource} from "../../Logic/Web/LocalStorageSource"; +import * as currentview from "../../assets/layers/current_view/current_view.json" +import * as import_candidate from "../../assets/layers/import_candidate/import_candidate.json" +import {GeoOperations} from "../../Logic/GeoOperations"; +import FeatureInfoBox from "../Popup/FeatureInfoBox"; +import {ImportUtils} from "./ImportUtils"; + +/** + * Given the data to import, the bbox and the layer, will query overpass for similar items + */ +export default class ConflationChecker extends Combine implements FlowStep<{ features: any[], layer: LayerConfig }> { + + public readonly IsValid + public readonly Value + + constructor( + state, + params: { bbox: BBox, layer: LayerConfig, geojson: any }) { + + + const bbox = params.bbox.padAbsolute(0.0001) + const layer = params.layer; + const toImport = params.geojson; + let overpassStatus = new UIEventSource<{ error: string } | "running" | "success" | "idle" | "cached">("idle") + const cacheAge = new UIEventSource<number>(undefined); + const fromLocalStorage = IdbLocalStorage.Get<[any, Date]>("importer-overpass-cache-" + layer.id, { + whenLoaded: (v) => { + if (v !== undefined) { + console.log("Loaded from local storage:", v) + const [geojson, date] = v; + const timeDiff = (new Date().getTime() - date.getTime()) / 1000; + console.log("Loaded ", geojson.features.length, " features; cache is ", timeDiff, "seconds old") + cacheAge.setData(timeDiff) + if (timeDiff < 24 * 60 * 60) { + // Recently cached! + overpassStatus.setData("cached") + return; + } + cacheAge.setData(-1) + } + // Load the data! + const url = Constants.defaultOverpassUrls[1] + const relationTracker = new RelationsTracker() + const overpass = new Overpass(params.layer.source.osmTags, [], url, new UIEventSource<number>(180), relationTracker, true) + console.log("Loading from overpass!") + overpassStatus.setData("running") + overpass.queryGeoJson(bbox).then( + ([data, date]) => { + console.log("Received overpass-data: ", data.features.length, "features are loaded at ", date); + overpassStatus.setData("success") + fromLocalStorage.setData([data, date]) + }, + (error) => { + overpassStatus.setData({error}) + }) + + } + }); + + + const geojson: UIEventSource<any> = fromLocalStorage.map(d => { + if (d === undefined) { + return undefined + } + return d[0] + }) + + const background = new UIEventSource<BaseLayer>(AvailableBaseLayers.osmCarto) + const location = new UIEventSource<Loc>({lat: 0, lon: 0, zoom: 1}) + const currentBounds = new UIEventSource<BBox>(undefined) + const zoomLevel = ValidatedTextField.ForType("pnat").ConstructInputElement() + zoomLevel.SetClass("ml-1 border border-black") + zoomLevel.GetValue().syncWith(LocalStorageSource.Get("importer-zoom-level", "14"), true) + const osmLiveData = Minimap.createMiniMap({ + allowMoving: true, + location, + background, + bounds: currentBounds, + attribution: new Attribution(location, state.osmConnection.userDetails, undefined, currentBounds) + }) + osmLiveData.SetClass("w-full").SetStyle("height: 500px") + const preview = new StaticFeatureSource(geojson.map(geojson => { + if (geojson?.features === undefined) { + return [] + } + const zoomedEnough: boolean = osmLiveData.location.data.zoom >= Number(zoomLevel.GetValue().data) + if (!zoomedEnough) { + return [] + } + const bounds = osmLiveData.bounds.data + return geojson.features.filter(f => BBox.get(f).overlapsWith(bounds)) + }, [osmLiveData.bounds, zoomLevel.GetValue()]), false); + + + new ShowDataLayer({ + layerToShow: new LayerConfig(currentview), + state, + leafletMap: osmLiveData.leafletMap, + popup: undefined, + zoomToFeatures: true, + features: new StaticFeatureSource([ + bbox.asGeoJson({}) + ], false) + }) + + + new ShowDataLayer({ + layerToShow: layer, + state, + leafletMap: osmLiveData.leafletMap, + popup: (tags, layer) => new FeatureInfoBox(tags, layer, state), + zoomToFeatures: false, + features: preview + }) + + new ShowDataLayer({ + layerToShow: new LayerConfig(import_candidate), + state, + leafletMap: osmLiveData.leafletMap, + popup: (tags, layer) => new FeatureInfoBox(tags, layer, state), + zoomToFeatures: false, + features: new StaticFeatureSource(toImport.features, false) + }) + + const nearbyCutoff = ValidatedTextField.ForType("pnat").ConstructInputElement() + nearbyCutoff.SetClass("ml-1 border border-black") + nearbyCutoff.GetValue().syncWith(LocalStorageSource.Get("importer-cutoff", "25"), true) + + const matchedFeaturesMap = Minimap.createMiniMap({ + allowMoving: true, + background + }) + matchedFeaturesMap.SetClass("w-full").SetStyle("height: 500px") + + // Featuresource showing OSM-features which are nearby a toImport-feature + const nearbyFeatures = new StaticFeatureSource(geojson.map(osmData => { + if (osmData?.features === undefined) { + return [] + } + const maxDist = Number(nearbyCutoff.GetValue().data) + return osmData.features.filter(f => + toImport.features.some(imp => + maxDist >= GeoOperations.distanceBetween(imp.geometry.coordinates, GeoOperations.centerpointCoordinates(f)))) + }, [nearbyCutoff.GetValue()]), false); + const paritionedImport = ImportUtils.partitionFeaturesIfNearby(toImport, geojson, nearbyCutoff.GetValue().map(Number)); + + // Featuresource showing OSM-features which are nearby a toImport-feature + const toImportWithNearby = new StaticFeatureSource(paritionedImport.map(els => els?.hasNearby ?? []), false); + + new ShowDataLayer({ + layerToShow: layer, + state, + leafletMap: matchedFeaturesMap.leafletMap, + popup: (tags, layer) => new FeatureInfoBox(tags, layer, state), + zoomToFeatures: true, + features: nearbyFeatures + }) + + new ShowDataLayer({ + layerToShow: new LayerConfig(import_candidate), + state, + leafletMap: matchedFeaturesMap.leafletMap, + popup: (tags, layer) => new FeatureInfoBox(tags, layer, state), + zoomToFeatures: false, + features: toImportWithNearby + }) + + + const conflationMaps = new Combine([ + new VariableUiElement( + geojson.map(geojson => { + if (geojson === undefined) { + return undefined; + } + return new SubtleButton(Svg.download_svg(), "Download the loaded geojson from overpass").onClick(() => { + Utils.offerContentsAsDownloadableFile(JSON.stringify(geojson, null, " "), "mapcomplete-" + layer.id + ".geojson", { + mimetype: "application/json+geo" + }) + }); + })), + new VariableUiElement(cacheAge.map(age => { + if (age === undefined) { + return undefined; + } + if (age < 0) { + return new FixedUiElement("Cache was expired") + } + return new FixedUiElement("Loaded data is from the cache and is " + Utils.toHumanTime(age) + " old") + })), + + new Title("Live data on OSM"), + osmLiveData, + new Combine(["The live data is shown if the zoomlevel is at least ", zoomLevel, ". The current zoom level is ", new VariableUiElement(osmLiveData.location.map(l => "" + l.zoom))]).SetClass("flex"), + + new Title("Nearby features"), + new Combine(["The following map shows features to import which have an OSM-feature within ", nearbyCutoff, "meter"]).SetClass("flex"), + new FixedUiElement("The red elements on the following map will <b>not</b> be imported!").SetClass("alert"), + "Set the range to 0 or 1 if you want to import them all", + matchedFeaturesMap]).SetClass("flex flex-col") + + super([ + new Title("Comparison with existing data"), + new VariableUiElement(overpassStatus.map(d => { + if (d === "idle") { + return new Loading("Checking local storage...") + } + if (d["error"] !== undefined) { + return new FixedUiElement("Could not load latest data from overpass: " + d["error"]).SetClass("alert") + } + if (d === "running") { + return new Loading("Querying overpass...") + } + if (d === "cached") { + return conflationMaps + } + if (d === "success") { + return conflationMaps + } + return new FixedUiElement("Unexpected state " + d).SetClass("alert") + })) + + ]) + + this.Value = paritionedImport.map(feats => ({features: feats?.noNearby, layer: params.layer})) + this.Value.addCallbackAndRun(v => console.log("ConflationChecker-step value is ", v)) + this.IsValid = this.Value.map(v => v?.features !== undefined && v.features.length > 0) + } + +} \ No newline at end of file diff --git a/UI/ImportFlow/CreateNotes.ts b/UI/ImportFlow/CreateNotes.ts new file mode 100644 index 0000000000..f364196f0f --- /dev/null +++ b/UI/ImportFlow/CreateNotes.ts @@ -0,0 +1,89 @@ +import Combine from "../Base/Combine"; +import {OsmConnection} from "../../Logic/Osm/OsmConnection"; +import {UIEventSource} from "../../Logic/UIEventSource"; +import Title from "../Base/Title"; +import Toggle from "../Input/Toggle"; +import Loading from "../Base/Loading"; +import {VariableUiElement} from "../Base/VariableUIElement"; +import {FixedUiElement} from "../Base/FixedUiElement"; +import {SubtleButton} from "../Base/SubtleButton"; +import Svg from "../../Svg"; + +export class CreateNotes extends Combine { + + constructor(state: { osmConnection: OsmConnection }, v: { features: any[]; wikilink: string; intro: string; source: string, theme: string }) { + + const createdNotes: UIEventSource<number[]> = new UIEventSource<number[]>([]) + const failed = new UIEventSource<string[]>([]) + const currentNote = createdNotes.map(n => n.length) + + for (const f of v.features) { + + const src = f.properties["source"] ?? f.properties["src"] ?? v.source + delete f.properties["source"] + delete f.properties["src"] + let extraNote = "" + if (f.properties["note"]) { + extraNote = f.properties["note"] + "\n" + delete f.properties["note"] + } + + const tags: string [] = [] + for (const key in f.properties) { + if (f.properties[key] === "") { + continue + } + tags.push(key + "=" + f.properties[key].replace(/=/, "\\=").replace(/;/g, "\\;").replace(/\n/g, "\\n")) + } + const lat = f.geometry.coordinates[1] + const lon = f.geometry.coordinates[0] + const text = [v.intro, + extraNote, + "Source: " + src, + 'More information at ' + v.wikilink, + '', + 'Import this point easily with', + `https://mapcomplete.osm.be/${v.theme}.html?z=18&lat=${lat}&lon=${lon}#import`, + ...tags].join("\n") + + state.osmConnection.openNote( + lat, lon, text) + .then(({id}) => { + createdNotes.data.push(id) + createdNotes.ping() + }, err => { + failed.data.push(err) + failed.ping() + }) + } + + super([ + new Title("Creating notes"), + "Hang on while we are importing...", + new Toggle( + new Loading(new VariableUiElement(currentNote.map(count => new FixedUiElement("Imported <b>" + count + "</b> out of " + v.features.length + " notes")))), + new Combine([ + new FixedUiElement("All done!").SetClass("thanks"), + new SubtleButton(Svg.note_svg(), "Inspect the progress of your notes in the 'import_viewer'", { + url: "import_viewer.html" + }) + ] + ), + currentNote.map(count => count < v.features.length) + ), + new VariableUiElement(failed.map(failed => { + + if (failed.length === 0) { + return undefined + } + return new Combine([ + new FixedUiElement("Some entries failed").SetClass("alert"), + ...failed + ]).SetClass("flex flex-col") + + })) + ]) + this.SetClass("flex flex-col"); + } + +} \ No newline at end of file diff --git a/UI/ImportFlow/FlowStep.ts b/UI/ImportFlow/FlowStep.ts new file mode 100644 index 0000000000..e0fde7b604 --- /dev/null +++ b/UI/ImportFlow/FlowStep.ts @@ -0,0 +1,146 @@ +import {UIEventSource} from "../../Logic/UIEventSource"; +import Combine from "../Base/Combine"; +import BaseUIElement from "../BaseUIElement"; +import {SubtleButton} from "../Base/SubtleButton"; +import Svg from "../../Svg"; +import Translations from "../i18n/Translations"; +import {VariableUiElement} from "../Base/VariableUIElement"; +import Toggle from "../Input/Toggle"; +import {UIElement} from "../UIElement"; +import {FixedUiElement} from "../Base/FixedUiElement"; + +export interface FlowStep<T> extends BaseUIElement { + readonly IsValid: UIEventSource<boolean> + readonly Value: UIEventSource<T> +} + +export class FlowPanelFactory<T> { + private _initial: FlowStep<any>; + private _steps: ((x: any) => FlowStep<any>)[]; + private _stepNames: (string | BaseUIElement)[]; + + private constructor(initial: FlowStep<any>, steps: ((x: any) => FlowStep<any>)[], stepNames: (string | BaseUIElement)[]) { + this._initial = initial; + this._steps = steps; + this._stepNames = stepNames; + } + + public static start<TOut>(name: string | BaseUIElement, step: FlowStep<TOut>): FlowPanelFactory<TOut> { + return new FlowPanelFactory(step, [], [name]) + } + + public then<TOut>(name: string | BaseUIElement, construct: ((t: T) => FlowStep<TOut>)): FlowPanelFactory<TOut> { + return new FlowPanelFactory<TOut>( + this._initial, + this._steps.concat([construct]), + this._stepNames.concat([name]) + ) + } + + public finish(name: string | BaseUIElement, construct: ((t: T, backButton?: BaseUIElement) => BaseUIElement)): { + flow: BaseUIElement, + furthestStep: UIEventSource<number>, + titles: (string | BaseUIElement)[] + } { + const furthestStep = new UIEventSource(0) + // Construct all the flowpanels step by step (in reverse order) + const nextConstr: ((t: any, back?: UIElement) => BaseUIElement)[] = this._steps.map(_ => undefined) + nextConstr.push(construct) + for (let i = this._steps.length - 1; i >= 0; i--) { + const createFlowStep: (value) => FlowStep<any> = this._steps[i]; + const isConfirm = i == this._steps.length - 1; + nextConstr[i] = (value, backButton) => { + const flowStep = createFlowStep(value) + furthestStep.setData(i + 1); + const panel = new FlowPanel(flowStep, nextConstr[i + 1], backButton, isConfirm); + panel.isActive.addCallbackAndRun(active => { + if (active) { + furthestStep.setData(i + 1); + } + }) + return panel + } + } + + const flow = new FlowPanel(this._initial, nextConstr[0]) + flow.isActive.addCallbackAndRun(active => { + if (active) { + furthestStep.setData(0); + } + }) + return { + flow, + furthestStep, + titles: this._stepNames + } + } + +} + +export class FlowPanel<T> extends Toggle { + public isActive: UIEventSource<boolean> + + constructor( + initial: (FlowStep<T>), + constructNextstep: ((input: T, backButton: BaseUIElement) => BaseUIElement), + backbutton?: BaseUIElement, + isConfirm = false + ) { + const t = Translations.t.general; + + const currentStepActive = new UIEventSource(true); + + let nextStep: UIEventSource<BaseUIElement> = new UIEventSource<BaseUIElement>(undefined) + const backButtonForNextStep = new SubtleButton(Svg.back_svg(), t.back).onClick(() => { + currentStepActive.setData(true) + }) + + let elements: (BaseUIElement | string)[] = [] + const isError = new UIEventSource(false) + if (initial !== undefined) { + // Startup the flow + elements = [ + initial, + + new Combine([ + backbutton, + new Toggle( + new SubtleButton( + isConfirm ? Svg.checkmark_svg() : + Svg.back_svg().SetStyle("transform: rotate(180deg);"), + isConfirm ? t.confirm : t.next + ).onClick(() => { + try { + + const v = initial.Value.data; + nextStep.setData(constructNextstep(v, backButtonForNextStep)) + currentStepActive.setData(false) + } catch (e) { + console.error(e) + isError.setData(true) + } + }), + "Select a valid value to continue", + initial.IsValid + ), + new Toggle( + new FixedUiElement("Something went wrong...").SetClass("alert"), + undefined, + isError), + ]).SetClass("flex w-full justify-end space-x-2"), + + + ] + } + + + super( + new Combine(elements).SetClass("h-full flex flex-col justify-between"), + new VariableUiElement(nextStep), + currentStepActive + ); + this.isActive = currentStepActive + } + + +} \ No newline at end of file diff --git a/UI/ImportFlow/ImportHelperGui.ts b/UI/ImportFlow/ImportHelperGui.ts new file mode 100644 index 0000000000..294a28049f --- /dev/null +++ b/UI/ImportFlow/ImportHelperGui.ts @@ -0,0 +1,77 @@ +import Combine from "../Base/Combine"; +import Toggle from "../Input/Toggle"; +import LanguagePicker from "../LanguagePicker"; +import UserRelatedState from "../../Logic/State/UserRelatedState"; +import BaseUIElement from "../BaseUIElement"; +import MinimapImplementation from "../Base/MinimapImplementation"; +import Translations from "../i18n/Translations"; +import {FlowPanelFactory} from "./FlowStep"; +import {RequestFile} from "./RequestFile"; +import {PreviewPanel} from "./PreviewPanel"; +import ConflationChecker from "./ConflationChecker"; +import {AskMetadata} from "./AskMetadata"; +import LayerConfig from "../../Models/ThemeConfig/LayerConfig"; +import {ConfirmProcess} from "./ConfirmProcess"; +import {CreateNotes} from "./CreateNotes"; +import {FixedUiElement} from "../Base/FixedUiElement"; +import {VariableUiElement} from "../Base/VariableUIElement"; +import List from "../Base/List"; +import {CompareToAlreadyExistingNotes} from "./CompareToAlreadyExistingNotes"; +import Introdution from "./Introdution"; +import LoginToImport from "./LoginToImport"; +import {MapPreview} from "./MapPreview"; +import LeftIndex from "../Base/LeftIndex"; +import {SubtleButton} from "../Base/SubtleButton"; + +export default class ImportHelperGui extends LeftIndex { + constructor() { + const state = new UserRelatedState(undefined) + + const {flow, furthestStep, titles} = + FlowPanelFactory + .start("Introduction", new Introdution()) + .then("Login", _ => new LoginToImport(state)) + .then("Select file", _ => new RequestFile()) + .then("Inspect attributes", geojson => new PreviewPanel(state, geojson)) + .then("Inspect data", geojson => new MapPreview(state, geojson)) + .then("Compare with open notes", v => new CompareToAlreadyExistingNotes(state, v)) + .then("Compare with existing data", v => new ConflationChecker(state, v)) + .then("License and community check", v => new ConfirmProcess(v)) + .then("Metadata", (v: { features: any[], layer: LayerConfig }) => new AskMetadata(v)) + .finish("Note creation", v => new CreateNotes(state, v)); + + const toc = new List( + titles.map((title, i) => new VariableUiElement(furthestStep.map(currentStep => { + if (i > currentStep) { + return new Combine([title]).SetClass("subtle"); + } + if (i == currentStep) { + return new Combine([title]).SetClass("font-bold"); + } + if (i < currentStep) { + return title + } + + + }))) + , true) + + const leftContents: BaseUIElement[] = [ + new SubtleButton(undefined, "Inspect your preview imports", { + url: "import_viewer.html" + }), + toc, + new Toggle(new FixedUiElement("Testmode - won't actually import notes").SetClass("alert"), undefined, state.featureSwitchIsTesting), + LanguagePicker.CreateLanguagePicker(Translations.t.importHelper.title.SupportedLanguages())?.SetClass("mt-4 self-end flex-col"), + ].map(el => el?.SetClass("pl-4")) + + super( + leftContents, + flow) + + } + +} + +MinimapImplementation.initialize() +new ImportHelperGui().AttachTo("main") \ No newline at end of file diff --git a/UI/ImportFlow/ImportUtils.ts b/UI/ImportFlow/ImportUtils.ts new file mode 100644 index 0000000000..db881a7097 --- /dev/null +++ b/UI/ImportFlow/ImportUtils.ts @@ -0,0 +1,30 @@ +import {UIEventSource} from "../../Logic/UIEventSource"; +import {GeoOperations} from "../../Logic/GeoOperations"; + +export class ImportUtils { + public static partitionFeaturesIfNearby(toPartitionFeatureCollection: ({ features: any[] }), compareWith: UIEventSource<{ features: any[] }>, cutoffDistanceInMeters: UIEventSource<number>): UIEventSource<{ hasNearby: any[], noNearby: any[] }> { + return compareWith.map(osmData => { + if (osmData?.features === undefined) { + return undefined + } + if (osmData.features.length === 0) { + return {noNearby: toPartitionFeatureCollection.features, hasNearby: []} + } + const maxDist = cutoffDistanceInMeters.data + + const hasNearby = [] + const noNearby = [] + for (const toImportElement of toPartitionFeatureCollection.features) { + const hasNearbyFeature = osmData.features.some(f => + maxDist >= GeoOperations.distanceBetween(toImportElement.geometry.coordinates, GeoOperations.centerpointCoordinates(f))) + if (hasNearbyFeature) { + hasNearby.push(toImportElement) + } else { + noNearby.push(toImportElement) + } + } + + return {hasNearby, noNearby} + }, [cutoffDistanceInMeters]); + } +} \ No newline at end of file diff --git a/UI/ImportFlow/ImportViewerGui.ts b/UI/ImportFlow/ImportViewerGui.ts new file mode 100644 index 0000000000..f0af1f059d --- /dev/null +++ b/UI/ImportFlow/ImportViewerGui.ts @@ -0,0 +1,325 @@ +import Combine from "../Base/Combine"; +import UserRelatedState from "../../Logic/State/UserRelatedState"; +import {VariableUiElement} from "../Base/VariableUIElement"; +import {Utils} from "../../Utils"; +import {UIEventSource} from "../../Logic/UIEventSource"; +import Title from "../Base/Title"; +import Translations from "../i18n/Translations"; +import Loading from "../Base/Loading"; +import {FixedUiElement} from "../Base/FixedUiElement"; +import Link from "../Base/Link"; +import {DropDown} from "../Input/DropDown"; +import BaseUIElement from "../BaseUIElement"; +import ValidatedTextField from "../Input/ValidatedTextField"; +import {SubtleButton} from "../Base/SubtleButton"; +import Svg from "../../Svg"; +import Toggle from "../Input/Toggle"; +import Table from "../Base/Table"; +import LeftIndex from "../Base/LeftIndex"; +import Toggleable, {Accordeon} from "../Base/Toggleable"; +import TableOfContents from "../Base/TableOfContents"; +import {LoginToggle} from "../Popup/LoginButton"; +import {QueryParameters} from "../../Logic/Web/QueryParameters"; + +interface NoteProperties { + "id": number, + "url": string, + "date_created": string, + closed_at?: string, + "status": "open" | "closed", + "comments": { + date: string, + uid: number, + user: string, + text: string, + html: string + }[] +} + +interface NoteState { + props: NoteProperties, + theme: string, + intro: string, + dateStr: string, + status: "imported" | "already_mapped" | "invalid" | "closed" | "not_found" | "open" | "has_comments" +} + +class MassAction extends Combine { + constructor(state: UserRelatedState, props: NoteProperties[]) { + const textField = ValidatedTextField.ForType("text").ConstructInputElement() + + const actions = new DropDown<{ + predicate: (p: NoteProperties) => boolean, + action: (p: NoteProperties) => Promise<void> + }>("On which notes should an action be performed?", [ + { + value: undefined, + shown: <string | BaseUIElement>"Pick an option..." + }, + { + value: { + predicate: p => p.status === "open", + action: async p => { + const txt = textField.GetValue().data + state.osmConnection.closeNote(p.id, txt) + } + }, + shown: "Add comment to every open note and close all notes" + }, + { + value: { + predicate: p => p.status === "open", + action: async p => { + const txt = textField.GetValue().data + state.osmConnection.addCommentToNode(p.id, txt) + } + }, + shown: "Add comment to every open note" + }, + /* + { + // This was a one-off for one of the first imports + value:{ + predicate: p => p.status === "open" && p.comments[0].text.split("\n").find(l => l.startsWith("note=")) !== undefined, + action: async p => { + const note = p.comments[0].text.split("\n").find(l => l.startsWith("note=")).substr("note=".length) + state.osmConnection.addCommentToNode(p.id, note) + } + }, + shown:"On every open note, read the 'note='-tag and and this note as comment. (This action ignores the textfield)" + },//*/ + + ]) + + const handledNotesCounter = new UIEventSource<number>(undefined) + const apply = new SubtleButton(Svg.checkmark_svg(), "Apply action") + .onClick(async () => { + const {predicate, action} = actions.GetValue().data + for (let i = 0; i < props.length; i++) { + handledNotesCounter.setData(i) + const prop = props[i] + if (!predicate(prop)) { + continue + } + await action(prop) + } + handledNotesCounter.setData(props.length) + }) + super([ + + actions, + textField.SetClass("w-full border border-black"), + new Toggle( + new Toggle( + apply, + + new Toggle( + new Loading(new VariableUiElement(handledNotesCounter.map(state => { + if (state === props.length) { + return "All done!" + } + return "Handling note " + (state + 1) + " out of " + props.length; + }))), + new Combine([Svg.checkmark_svg().SetClass("h-8"), "All done!"]).SetClass("thanks flex p-4"), + handledNotesCounter.map(s => s < props.length) + ), + handledNotesCounter.map(s => s === undefined) + ) + + , new VariableUiElement(textField.GetValue().map(txt => "Type a text of at least 15 characters to apply the action. Currently, there are " + (txt?.length ?? 0) + " characters")).SetClass("alert"), + actions.GetValue().map(v => v !== undefined && textField.GetValue()?.data?.length > 15, [textField.GetValue()]) + ), + new Toggle( + new FixedUiElement("Testmode enable").SetClass("alert"), undefined, + state.featureSwitchIsTesting + ) + ]); + } + +} + + +class BatchView extends Toggleable { + + private static icons = { + open: Svg.compass_svg, + has_comments: Svg.speech_bubble_svg, + imported: Svg.addSmall_svg, + already_mapped: Svg.checkmark_svg, + invalid: Svg.invalid_svg, + closed: Svg.close_svg, + not_found: Svg.not_found_svg, + } + + constructor(noteStates: NoteState[], state?: UserRelatedState) { + + noteStates.sort((a, b) => a.props.id - b.props.id) + + const {theme, intro, dateStr} = noteStates[0] + + const statusHist = new Map<string, number>() + for (const noteState of noteStates) { + const st = noteState.status + const c = statusHist.get(st) ?? 0 + statusHist.set(st, c + 1) + } + + const badges: (BaseUIElement)[] = [new FixedUiElement(dateStr).SetClass("literal-code rounded-full")] + statusHist.forEach((count, status) => { + const icon = BatchView.icons[status]().SetClass("h-6 m-1") + badges.push(new Combine([icon, count + " " + status]) + .SetClass("flex ml-1 mb-1 pl-1 pr-3 items-center rounded-full border border-black")) + }) + + const typicalComment = noteStates[0].props.comments[0].html + + + super( + new Combine([ + new Title(theme + ": " + intro, 2), + new Combine(badges).SetClass("flex flex-wrap"), + ]), + new Combine([ + new Title("Example note", 4), + new FixedUiElement(typicalComment).SetClass("literal-code link-underline"), + new Title("Mass apply an action"), + state !== undefined ? new MassAction(state, noteStates.map(ns => ns.props)).SetClass("block") : undefined, + new Table( + ["id", "status", "last comment"], + noteStates.map(ns => { + const link = new Link( + "" + ns.props.id, + "https://openstreetmap.org/note/" + ns.props.id, true + ) + let last_comment = ""; + if (ns.props.comments.length > 1) { + last_comment = ns.props.comments[ns.props.comments.length - 1].text + } + const statusIcon = BatchView.icons[ns.status]().SetClass("h-4 w-4 shrink-0") + return [link, new Combine([statusIcon, ns.status]).SetClass("flex"), last_comment] + }) + ).SetClass("zebra-table link-underline") + ]).SetClass("flex flex-col"), + { + closeOnClick: false + }) + + } +} + +class ImportInspector extends VariableUiElement { + + constructor(userDetails: { uid: number } | { display_name: string, search?: string }, state: UserRelatedState) { + let url; + + if (userDetails["uid"] !== undefined) { + url = "https://api.openstreetmap.org/api/0.6/notes/search.json?user=" + userDetails["uid"] + "&closed=730&limit=10000&sort=created_at&q=%23import" + } else { + url = "https://api.openstreetmap.org/api/0.6/notes/search.json?display_name=" + + encodeURIComponent(userDetails["display_name"]) + "&limit=10000&closed=730&sort=created_at&q=" + encodeURIComponent(userDetails["search"] ?? "#import") + } + + + const notes: UIEventSource<{ error: string } | { success: { features: { properties: NoteProperties }[] } }> = UIEventSource.FromPromiseWithErr(Utils.downloadJson(url)) + super(notes.map(notes => { + + if (notes === undefined) { + return new Loading("Loading notes which mention '#import'") + } + if (notes["error"] !== undefined) { + return new FixedUiElement("Something went wrong: " + notes["error"]).SetClass("alert") + } + // We only care about the properties here + const props: NoteProperties[] = notes["success"].features.map(f => f.properties) + const perBatch: NoteState[][] = Array.from(ImportInspector.SplitNotesIntoBatches(props).values()); + const els: Toggleable[] = perBatch.map(noteStates => new BatchView(noteStates, state)) + + const accordeon = new Accordeon(els) + let contents = []; + if (state?.osmConnection?.isLoggedIn?.data) { + contents = + [ + new Title(Translations.t.importInspector.title, 1), + new SubtleButton(undefined, "Create a new batch of imports", {url: 'import_helper.html'})] + } + contents.push(accordeon) + const content = new Combine(contents) + return new LeftIndex( + [new TableOfContents(content, {noTopLevel: true, maxDepth: 1}).SetClass("subtle")], + content + ) + + })); + } + + /** + * Creates distinct batches of note, where 'date', 'intro' and 'theme' are identical + */ + private static SplitNotesIntoBatches(props: NoteProperties[]): Map<string, NoteState[]> { + const perBatch = new Map<string, NoteState[]>() + const prefix = "https://mapcomplete.osm.be/" + for (const prop of props) { + const lines = prop.comments[0].text.split("\n") + const trigger = lines.findIndex(l => l.startsWith(prefix) && l.endsWith("#import")) + if (trigger < 0) { + continue + } + let theme = lines[trigger].substr(prefix.length) + theme = theme.substr(0, theme.indexOf(".")) + const date = Utils.ParseDate(prop.date_created) + const dateStr = date.getFullYear() + "-" + (date.getMonth() + 1) + "-" + date.getDate() + const key = theme + lines[0] + dateStr + if (!perBatch.has(key)) { + perBatch.set(key, []) + } + let status: "open" | "closed" | "imported" | "invalid" | "already_mapped" | "not_found" | "has_comments" = "open" + if (prop.closed_at !== undefined) { + const lastComment = prop.comments[prop.comments.length - 1].text.toLowerCase() + if (lastComment.indexOf("does not exist") >= 0) { + status = "not_found" + } else if (lastComment.indexOf("already mapped") >= 0) { + status = "already_mapped" + } else if (lastComment.indexOf("invalid") >= 0 || lastComment.indexOf("incorrecto") >= 0) { + status = "invalid" + } else if (lastComment.indexOf("imported") >= 0) { + status = "imported" + } else { + status = "closed" + } + } else if (prop.comments.length > 1) { + status = "has_comments" + } + + perBatch.get(key).push({ + props: prop, + intro: lines[0], + theme, + dateStr, + status + }) + } + return perBatch; + } +} + +class ImportViewerGui extends LoginToggle { + + constructor() { + const state = new UserRelatedState(undefined) + const displayNameParam = QueryParameters.GetQueryParameter("user", "", "The username of the person whom you want to see the notes for"); + const searchParam = QueryParameters.GetQueryParameter("search", "", "A text that should be included in the first comment of the note to be shown") + super( + new VariableUiElement(state.osmConnection.userDetails.map(ud => { + const display_name = displayNameParam.data; + const search = searchParam.data; + if (display_name !== "" && search !== "") { + return new ImportInspector({display_name, search}, undefined); + } + return new ImportInspector(ud, state); + }, [displayNameParam, searchParam])), + "Login to inspect your import flows", state + ) + } +} + +new ImportViewerGui().AttachTo("main") \ No newline at end of file diff --git a/UI/ImportFlow/Introdution.ts b/UI/ImportFlow/Introdution.ts new file mode 100644 index 0000000000..859fd8e4b7 --- /dev/null +++ b/UI/ImportFlow/Introdution.ts @@ -0,0 +1,20 @@ +import Combine from "../Base/Combine"; +import {FlowStep} from "./FlowStep"; +import {UIEventSource} from "../../Logic/UIEventSource"; +import Translations from "../i18n/Translations"; +import Title from "../Base/Title"; + +export default class Introdution extends Combine implements FlowStep<void> { + readonly IsValid: UIEventSource<boolean> = new UIEventSource<boolean>(true); + readonly Value: UIEventSource<void> = new UIEventSource<void>(undefined); + + constructor() { + super([ + new Title(Translations.t.importHelper.title), + Translations.t.importHelper.description, + Translations.t.importHelper.importFormat, + ]); + this.SetClass("flex flex-col") + } + +} \ No newline at end of file diff --git a/UI/ImportFlow/LoginToImport.ts b/UI/ImportFlow/LoginToImport.ts new file mode 100644 index 0000000000..68991e53bf --- /dev/null +++ b/UI/ImportFlow/LoginToImport.ts @@ -0,0 +1,51 @@ +import Combine from "../Base/Combine"; +import {FlowStep} from "./FlowStep"; +import UserRelatedState from "../../Logic/State/UserRelatedState"; +import {UIEventSource} from "../../Logic/UIEventSource"; +import Translations from "../i18n/Translations"; +import Title from "../Base/Title"; +import {VariableUiElement} from "../Base/VariableUIElement"; +import {LoginToggle} from "../Popup/LoginButton"; +import Img from "../Base/Img"; +import Constants from "../../Models/Constants"; +import Toggle from "../Input/Toggle"; +import {SubtleButton} from "../Base/SubtleButton"; +import Svg from "../../Svg"; +import MoreScreen from "../BigComponents/MoreScreen"; + +export default class LoginToImport extends Combine implements FlowStep<UserRelatedState> { + readonly IsValid: UIEventSource<boolean>; + readonly Value: UIEventSource<UserRelatedState>; + + private static readonly whitelist = [15015689]; + + constructor(state: UserRelatedState) { + const t = Translations.t.importHelper + const isValid = state.osmConnection.userDetails.map(ud => LoginToImport.whitelist.indexOf(ud.uid) >= 0 || ud.csCount >= Constants.userJourney.importHelperUnlock) + super([ + new Title(t.userAccountTitle), + new LoginToggle( + new VariableUiElement(state.osmConnection.userDetails.map(ud => { + if (ud === undefined) { + return undefined + } + return new Combine([ + new Img(ud.img ?? "./assets/svgs/help.svg").SetClass("w-16 h-16 rounded-full"), + t.loggedInWith.Subs(ud), + new SubtleButton(Svg.logout_svg().SetClass("h-8"), Translations.t.general.logout) + .onClick(() => state.osmConnection.LogOut()) + ]); + })), + t.loginRequired, + state + ), + new Toggle(undefined, + new Combine( + [t.lockNotice.Subs(Constants.userJourney).SetClass("alert"), + MoreScreen.CreateProffessionalSerivesButton()]) + , isValid) + ]) + this.Value = new UIEventSource<UserRelatedState>(state) + this.IsValid = isValid; + } +} \ No newline at end of file diff --git a/UI/ImportFlow/MapPreview.ts b/UI/ImportFlow/MapPreview.ts new file mode 100644 index 0000000000..1929cd09aa --- /dev/null +++ b/UI/ImportFlow/MapPreview.ts @@ -0,0 +1,172 @@ +import Combine from "../Base/Combine"; +import {UIEventSource} from "../../Logic/UIEventSource"; +import {BBox} from "../../Logic/BBox"; +import UserRelatedState from "../../Logic/State/UserRelatedState"; +import Translations from "../i18n/Translations"; +import {AllKnownLayouts} from "../../Customizations/AllKnownLayouts"; +import Constants from "../../Models/Constants"; +import {DropDown} from "../Input/DropDown"; +import {Utils} from "../../Utils"; +import LayerConfig from "../../Models/ThemeConfig/LayerConfig"; +import BaseLayer from "../../Models/BaseLayer"; +import AvailableBaseLayers from "../../Logic/Actors/AvailableBaseLayers"; +import Loc from "../../Models/Loc"; +import Minimap from "../Base/Minimap"; +import Attribution from "../BigComponents/Attribution"; +import ShowDataMultiLayer from "../ShowDataLayer/ShowDataMultiLayer"; +import FilteredLayer, {FilterState} from "../../Models/FilteredLayer"; +import StaticFeatureSource from "../../Logic/FeatureSource/Sources/StaticFeatureSource"; +import Toggle from "../Input/Toggle"; +import {VariableUiElement} from "../Base/VariableUIElement"; +import {FixedUiElement} from "../Base/FixedUiElement"; +import {FlowStep} from "./FlowStep"; +import ScrollableFullScreen from "../Base/ScrollableFullScreen"; +import {AllTagsPanel} from "../SpecialVisualizations"; +import Title from "../Base/Title"; +import CheckBoxes from "../Input/Checkboxes"; + +class PreviewPanel extends ScrollableFullScreen { + + constructor(tags, layer) { + super( + _ => new FixedUiElement("Element to import"), + _ => new Combine(["The tags are:", + new AllTagsPanel(tags) + ]).SetClass("flex flex-col"), + "element" + ); + } + +} + +/** + * Shows the data to import on a map, asks for the correct layer to be selected + */ +export class MapPreview extends Combine implements FlowStep<{ bbox: BBox, layer: LayerConfig, geojson: any }> { + public readonly IsValid: UIEventSource<boolean>; + public readonly Value: UIEventSource<{ bbox: BBox, layer: LayerConfig, geojson: any }> + + constructor( + state: UserRelatedState, + geojson: { features: { properties: any, geometry: { coordinates: [number, number] } }[] }) { + const t = Translations.t.importHelper.mapPreview; + + const propertyKeys = new Set<string>() + for (const f of geojson.features) { + Object.keys(f.properties).forEach(key => propertyKeys.add(key)) + } + + + const availableLayers = AllKnownLayouts.AllPublicLayers().filter(l => l.name !== undefined && Constants.priviliged_layers.indexOf(l.id) < 0) + const layerPicker = new DropDown(t.selectLayer, + [{shown: t.selectLayer, value: undefined}].concat(availableLayers.map(l => ({ + shown: l.name, + value: l + }))) + ) + + let autodetected = new UIEventSource(false) + for (const layer of availableLayers) { + const mismatched = geojson.features.some(f => + !layer.source.osmTags.matchesProperties(f.properties) + ) + if (!mismatched) { + console.log("Autodected layer", layer.id) + layerPicker.GetValue().setData(layer); + layerPicker.GetValue().addCallback(_ => autodetected.setData(false)) + autodetected.setData(true) + break; + } + } + + const withId = geojson.features.map((f, i) => { + const copy = Utils.Clone(f) + copy.properties.id = "to-import/" + i + return copy + }) + + const matching: UIEventSource<{ properties: any, geometry: { coordinates: [number, number] } }[]> = layerPicker.GetValue().map((layer: LayerConfig) => { + if (layer === undefined) { + return []; + } + const matching: { properties: any, geometry: { coordinates: [number, number] } }[] = [] + + for (const feature of withId) { + if (layer.source.osmTags.matchesProperties(feature.properties)) { + matching.push(feature) + } + } + + return matching + }) + const background = new UIEventSource<BaseLayer>(AvailableBaseLayers.osmCarto) + const location = new UIEventSource<Loc>({lat: 0, lon: 0, zoom: 1}) + const currentBounds = new UIEventSource<BBox>(undefined) + const map = Minimap.createMiniMap({ + allowMoving: true, + location, + background, + bounds: currentBounds, + attribution: new Attribution(location, state.osmConnection.userDetails, undefined, currentBounds) + }) + map.SetClass("w-full").SetStyle("height: 500px") + + new ShowDataMultiLayer({ + layers: new UIEventSource<FilteredLayer[]>(AllKnownLayouts.AllPublicLayers() + .filter(l => l.source.geojsonSource === undefined) + .map(l => ({ + layerDef: l, + isDisplayed: new UIEventSource<boolean>(true), + appliedFilters: new UIEventSource<Map<string, FilterState>>(undefined) + }))), + zoomToFeatures: true, + features: new StaticFeatureSource(matching, false), + leafletMap: map.leafletMap, + popup: (tag, layer) => new PreviewPanel(tag, layer).SetClass("font-lg") + }) + var bbox = matching.map(feats => BBox.bboxAroundAll(feats.map(f => new BBox([f.geometry.coordinates])))) + + + const mismatchIndicator = new VariableUiElement(matching.map(matching => { + if (matching === undefined) { + return undefined + } + const diff = geojson.features.length - matching.length; + if (diff === 0) { + return undefined + } + const obligatory = layerPicker.GetValue().data?.source?.osmTags?.asHumanString(false, false, {}); + return t.mismatch.Subs({count: diff, tags: obligatory}).SetClass("alert") + })) + + const confirm = new CheckBoxes([t.confirm]); + super([ + new Title(t.title, 1), + layerPicker, + new Toggle(t.autodetected.SetClass("thank"), undefined, autodetected), + + mismatchIndicator, + map, + confirm + ]); + + this.Value = bbox.map(bbox => + ({ + bbox, + geojson, + layer: layerPicker.GetValue().data + }), [layerPicker.GetValue()]) + + this.IsValid = matching.map(matching => { + if (matching === undefined) { + return false + } + if (confirm.GetValue().data.length !== 1) { + return false + } + const diff = geojson.features.length - matching.length; + return diff === 0; + }, [confirm.GetValue()]) + + } +} \ No newline at end of file diff --git a/UI/ImportFlow/PreviewPanel.ts b/UI/ImportFlow/PreviewPanel.ts new file mode 100644 index 0000000000..fab9440c03 --- /dev/null +++ b/UI/ImportFlow/PreviewPanel.ts @@ -0,0 +1,108 @@ +import Combine from "../Base/Combine"; +import {UIEventSource} from "../../Logic/UIEventSource"; +import UserRelatedState from "../../Logic/State/UserRelatedState"; +import Translations from "../i18n/Translations"; +import {Utils} from "../../Utils"; +import {FlowStep} from "./FlowStep"; +import Title from "../Base/Title"; +import BaseUIElement from "../BaseUIElement"; +import Histogram from "../BigComponents/Histogram"; +import Toggleable from "../Base/Toggleable"; +import List from "../Base/List"; +import CheckBoxes from "../Input/Checkboxes"; + +/** + * Shows the data to import on a map, asks for the correct layer to be selected + */ +export class PreviewPanel extends Combine implements FlowStep<{ features: { properties: any, geometry: { coordinates: [number, number] } }[] }> { + public readonly IsValid: UIEventSource<boolean>; + public readonly Value: UIEventSource<{ features: { properties: any, geometry: { coordinates: [number, number] } }[] }> + + constructor( + state: UserRelatedState, + geojson: { features: { properties: any, geometry: { coordinates: [number, number] } }[] }) { + const t = Translations.t.importHelper; + + const propertyKeys = new Set<string>() + for (const f of geojson.features) { + Object.keys(f.properties).forEach(key => propertyKeys.add(key)) + } + + const attributeOverview: BaseUIElement[] = [] + + const n = geojson.features.length; + for (const key of Array.from(propertyKeys)) { + + const values = Utils.NoNull(geojson.features.map(f => f.properties[key])) + const allSame = !values.some(v => v !== values[0]) + let countSummary: BaseUIElement + if (values.length === n) { + countSummary = t.allAttributesSame + } else { + countSummary = t.someHaveSame.Subs({ + count: values.length, + percentage: Math.floor(100 * values.length / n) + }) + } + if (allSame) { + attributeOverview.push(new Title(key + "=" + values[0])) + attributeOverview.push(countSummary) + continue + } + + const uniqueCount = new Set(values).size + if (uniqueCount !== values.length && uniqueCount < 15) { + attributeOverview.push() + // There are some overlapping values: histogram time! + let hist: BaseUIElement = + new Combine([ + countSummary, + new Histogram( + new UIEventSource<string[]>(values), + "Value", + "Occurence", + { + sortMode: "count-rev" + }) + ]).SetClass("flex flex-col") + + + const title = new Title(key + "=*") + if (uniqueCount > 15) { + hist = new Toggleable(title, + hist.SetClass("block") + ).Collapse() + + } else { + attributeOverview.push(title) + } + + attributeOverview.push(hist) + continue + } + + // All values are different or too much unique values, we add a boring (but collapsable) list + attributeOverview.push(new Toggleable( + new Title(key + "=*"), + new Combine([ + countSummary, + new List(values) + ]) + )) + + } + + const confirm = new CheckBoxes([t.inspectLooksCorrect]) + + super([ + new Title(t.inspectDataTitle.Subs({count: geojson.features.length})), + "Extra remark: An attribute with 'source' or 'src' will be added as 'source' into the map pin; an attribute 'note' will be added into the map pin as well. These values won't be imported", + ...attributeOverview, + confirm + ]); + + this.Value = new UIEventSource<{ features: { properties: any; geometry: { coordinates: [number, number] } }[] }>(geojson) + this.IsValid = confirm.GetValue().map(selected => selected.length == 1) + + } +} \ No newline at end of file diff --git a/UI/ImportFlow/RequestFile.ts b/UI/ImportFlow/RequestFile.ts new file mode 100644 index 0000000000..dd6d877e85 --- /dev/null +++ b/UI/ImportFlow/RequestFile.ts @@ -0,0 +1,171 @@ +import Combine from "../Base/Combine"; +import {UIEventSource} from "../../Logic/UIEventSource"; +import Translations from "../i18n/Translations"; +import {SubtleButton} from "../Base/SubtleButton"; +import {VariableUiElement} from "../Base/VariableUIElement"; +import Title from "../Base/Title"; +import InputElementMap from "../Input/InputElementMap"; +import BaseUIElement from "../BaseUIElement"; +import FileSelectorButton from "../Input/FileSelectorButton"; +import {FlowStep} from "./FlowStep"; +import {parse} from "papaparse"; +import {FixedUiElement} from "../Base/FixedUiElement"; + +class FileSelector extends InputElementMap<FileList, { name: string, contents: Promise<string> }> { + constructor(label: BaseUIElement) { + super( + new FileSelectorButton(label, {allowMultiple: false, acceptType: "*"}), + (x0, x1) => { + // Total hack: x1 is undefined is the backvalue - we effectively make this a one-way-story + return x1 === undefined || x0 === x1; + }, + filelist => { + if (filelist === undefined) { + return undefined + } + const file = filelist.item(0) + return {name: file.name, contents: file.text()} + }, + _ => undefined + ) + } +} + +/** + * The first step in the import flow: load a file and validate that it is a correct geojson or CSV file + */ +export class RequestFile extends Combine implements FlowStep<any> { + + public readonly IsValid: UIEventSource<boolean> + /** + * The loaded GeoJSON + */ + public readonly Value: UIEventSource<any> + + constructor() { + const t = Translations.t.importHelper.selectFile; + const csvSelector = new FileSelector(new SubtleButton(undefined, t.description)) + const loadedFiles = new VariableUiElement(csvSelector.GetValue().map(file => { + if (file === undefined) { + return t.noFilesLoaded.SetClass("alert") + } + return t.loadedFilesAre.Subs({file: file.name}).SetClass("thanks") + })) + + const text = UIEventSource.flatten( + csvSelector.GetValue().map(v => { + if (v === undefined) { + return undefined + } + return UIEventSource.FromPromise(v.contents) + })) + + const asGeoJson: UIEventSource<any | { error: string | BaseUIElement }> = text.map(src => { + if (src === undefined) { + return undefined + } + try { + const parsed = JSON.parse(src) + if (parsed["type"] !== "FeatureCollection") { + return {error: t.errNotFeatureCollection} + } + if (parsed.features.some(f => f.geometry.type != "Point")) { + return {error: t.errPointsOnly} + } + return parsed; + + } catch (e) { + // Loading as CSV + var lines: string[][] = <any>parse(src).data; + const header = lines[0] + lines.splice(0, 1) + if (header.indexOf("lat") < 0 || header.indexOf("lon") < 0) { + return {error: t.errNoLatOrLon} + } + + if (header.some(h => h.trim() == "")) { + return {error: t.errNoName} + } + + + if (new Set(header).size !== header.length) { + return {error: t.errDuplicate} + } + + + const features = [] + for (let i = 0; i < lines.length; i++) { + const attrs = lines[i]; + if (attrs.length == 0 || (attrs.length == 1 && attrs[0] == "")) { + // empty line + continue + } + const properties = {} + for (let i = 0; i < header.length; i++) { + const v = attrs[i] + if (v === undefined || v === "") { + continue + } + properties[header[i]] = v; + } + const coordinates = [Number(properties["lon"]), Number(properties["lat"])] + delete properties["lat"] + delete properties["lon"] + if (coordinates.some(isNaN)) { + return {error: "A coordinate could not be parsed for line " + (i + 2)} + } + const f = { + type: "Feature", + properties, + geometry: { + type: "Point", + coordinates + } + }; + features.push(f) + } + + return { + type: "FeatureCollection", + features + } + } + }) + + + const errorIndicator = new VariableUiElement(asGeoJson.map(v => { + if (v === undefined) { + return undefined; + } + if (v?.error === undefined) { + return undefined; + } + let err: BaseUIElement; + if(typeof v.error === "string"){ + err = new FixedUiElement(v.error) + }else if(v.error.Clone !== undefined){ + err = v.error.Clone() + }else{ + err = v.error + } + return err.SetClass("alert"); + })) + + super([ + + new Title(t.title, 1), + t.fileFormatDescription, + t.fileFormatDescriptionCsv, + t.fileFormatDescriptionGeoJson, + csvSelector, + loadedFiles, + errorIndicator + + ]); + this.SetClass("flex flex-col wi") + this.IsValid = asGeoJson.map(geojson => geojson !== undefined && geojson["error"] === undefined) + this.Value = asGeoJson + } + + +} \ No newline at end of file diff --git a/UI/Input/CombinedInputElement.ts b/UI/Input/CombinedInputElement.ts index b1fa39a8e4..2409898cd4 100644 --- a/UI/Input/CombinedInputElement.ts +++ b/UI/Input/CombinedInputElement.ts @@ -5,7 +5,6 @@ import BaseUIElement from "../BaseUIElement"; export default class CombinedInputElement<T, J, X> extends InputElement<X> { - public readonly IsSelected: UIEventSource<boolean>; private readonly _a: InputElement<T>; private readonly _b: InputElement<J>; private readonly _combined: BaseUIElement; @@ -19,9 +18,6 @@ export default class CombinedInputElement<T, J, X> extends InputElement<X> { this._a = a; this._b = b; this._split = split; - this.IsSelected = this._a.IsSelected.map((isSelected) => { - return isSelected || b.IsSelected.data - }, [b.IsSelected]) this._combined = new Combine([this._a, this._b]); this._value = this._a.GetValue().map( t => combine(t, this._b?.GetValue()?.data), diff --git a/UI/Input/DropDown.ts b/UI/Input/DropDown.ts index fe8f8bc987..d7137a04bb 100644 --- a/UI/Input/DropDown.ts +++ b/UI/Input/DropDown.ts @@ -37,7 +37,7 @@ export class DropDown<T> extends InputElement<T> { el.id = "dropdown" + id; { - const labelEl = Translations.W(label).ConstructElement() + const labelEl = Translations.W(label)?.ConstructElement() if (labelEl !== undefined) { const labelHtml = document.createElement("label") labelHtml.appendChild(labelEl) @@ -54,7 +54,6 @@ export class DropDown<T> extends InputElement<T> { const select = document.createElement("select") select.classList.add(...(options.select_class.split(" ") ?? [])) for (let i = 0; i < values.length; i++) { - const option = document.createElement("option") option.value = "" + i option.appendChild(Translations.W(values[i].shown).ConstructElement()) diff --git a/UI/Input/FileSelectorButton.ts b/UI/Input/FileSelectorButton.ts index c6e1cf1f8b..1c03875af1 100644 --- a/UI/Input/FileSelectorButton.ts +++ b/UI/Input/FileSelectorButton.ts @@ -6,16 +6,22 @@ export default class FileSelectorButton extends InputElement<FileList> { private static _nextid; IsSelected: UIEventSource<boolean>; - private readonly _value = new UIEventSource(undefined); + private readonly _value = new UIEventSource<FileList>(undefined); private readonly _label: BaseUIElement; private readonly _acceptType: string; + private readonly allowMultiple: boolean; - constructor(label: BaseUIElement, acceptType: string = "image/*") { + constructor(label: BaseUIElement, options?: + { + acceptType: "image/*" | string, + allowMultiple: true | boolean + }) { super(); this._label = label; - this._acceptType = acceptType; + this._acceptType = options?.acceptType ?? "image/*"; this.SetClass("block cursor-pointer") label.SetClass("cursor-pointer") + this.allowMultiple = options?.allowMultiple ?? true } GetValue(): UIEventSource<FileList> { @@ -38,7 +44,7 @@ export default class FileSelectorButton extends InputElement<FileList> { actualInputElement.type = "file"; actualInputElement.accept = this._acceptType; actualInputElement.name = "picField"; - actualInputElement.multiple = true; + actualInputElement.multiple = this.allowMultiple; actualInputElement.id = "fileselector" + FileSelectorButton._nextid; FileSelectorButton._nextid++; @@ -59,6 +65,20 @@ export default class FileSelectorButton extends InputElement<FileList> { el.appendChild(actualInputElement) + el.addEventListener('dragover', (event) => { + event.stopPropagation(); + event.preventDefault(); + // Style the drag-and-drop as a "copy file" operation. + event.dataTransfer.dropEffect = 'copy'; + }); + + el.addEventListener('drop', (event) => { + event.stopPropagation(); + event.preventDefault(); + const fileList = event.dataTransfer.files; + this._value.setData(fileList) + }); + return el; } diff --git a/UI/Input/FixedInputElement.ts b/UI/Input/FixedInputElement.ts index 37e025b799..6dd39fc0d9 100644 --- a/UI/Input/FixedInputElement.ts +++ b/UI/Input/FixedInputElement.ts @@ -4,7 +4,6 @@ import Translations from "../i18n/Translations"; import BaseUIElement from "../BaseUIElement"; export class FixedInputElement<T> extends InputElement<T> { - public readonly IsSelected: UIEventSource<boolean> = new UIEventSource<boolean>(false); private readonly value: UIEventSource<T>; private readonly _comparator: (t0: T, t1: T) => boolean; @@ -21,17 +20,12 @@ export class FixedInputElement<T> extends InputElement<T> { this.value = new UIEventSource<T>(value); } - const selected = this.IsSelected; this._el = document.createElement("span") - this._el.addEventListener("mouseout", () => selected.setData(false)) const e = Translations.W(rendering)?.ConstructElement() if (e) { this._el.appendChild(e) } - this.onClick(() => { - selected.setData(true) - }) } GetValue(): UIEventSource<T> { diff --git a/UI/Input/InputElement.ts b/UI/Input/InputElement.ts index f9920b1d6a..f8a27eddde 100644 --- a/UI/Input/InputElement.ts +++ b/UI/Input/InputElement.ts @@ -3,7 +3,6 @@ import BaseUIElement from "../BaseUIElement"; export abstract class InputElement<T> extends BaseUIElement { - abstract IsSelected: UIEventSource<boolean>; abstract GetValue(): UIEventSource<T>; diff --git a/UI/Input/InputElementMap.ts b/UI/Input/InputElementMap.ts index a2a50f9d38..16b907f469 100644 --- a/UI/Input/InputElementMap.ts +++ b/UI/Input/InputElementMap.ts @@ -3,7 +3,6 @@ import {UIEventSource} from "../../Logic/UIEventSource"; export default class InputElementMap<T, X> extends InputElement<X> { - public readonly IsSelected: UIEventSource<boolean>; private readonly _inputElement: InputElement<T>; private isSame: (x0: X, x1: X) => boolean; private readonly fromX: (x: X) => T; @@ -21,7 +20,6 @@ export default class InputElementMap<T, X> extends InputElement<X> { this.fromX = fromX; this.toX = toX; this._inputElement = inputElement; - this.IsSelected = inputElement.IsSelected; const self = this; this._value = inputElement.GetValue().map( (t => { diff --git a/UI/Input/InputElementWrapper.ts b/UI/Input/InputElementWrapper.ts index 765a0d3b4b..a671a00270 100644 --- a/UI/Input/InputElementWrapper.ts +++ b/UI/Input/InputElementWrapper.ts @@ -3,21 +3,25 @@ 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<T> extends InputElement<T> { - public readonly IsSelected: UIEventSource<boolean>; private readonly _inputElement: InputElement<T>; private readonly _renderElement: BaseUIElement - constructor(inputElement: InputElement<T>, translation: Translation, key: string, tags: UIEventSource<any>) { + constructor(inputElement: InputElement<T>, translation: Translation, key: string, tags: UIEventSource<any>, state: FeaturePipelineState) { super() this._inputElement = inputElement; - this.IsSelected = inputElement.IsSelected const mapping = new Map<string, BaseUIElement>() 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<T> { diff --git a/UI/Input/LocationInput.ts b/UI/Input/LocationInput.ts index df7958de72..8e66d4270a 100644 --- a/UI/Input/LocationInput.ts +++ b/UI/Input/LocationInput.ts @@ -15,25 +15,18 @@ import {FixedUiElement} from "../Base/FixedUiElement"; 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<Loc> implements MinimapObj { - private static readonly matchLayer = new LayerConfig( - { - id: "matchpoint", source: { - osmTags: {and: []} - }, - mapRendering: [{ - location: ["point","centroid"], - icon: "./assets/svg/crosshair-empty.svg" - }] - }, "matchpoint icon", true - ) + private static readonly matchLayer = new LayerConfig(matchpoint, "LocationInput.matchpoint", true) IsSelected: UIEventSource<boolean> = new UIEventSource<boolean>(false); public readonly snappedOnto: UIEventSource<any> = new UIEventSource<any>(undefined) public readonly _matching_layer: LayerConfig; public readonly leafletMap: UIEventSource<any> + public readonly bounds; + public readonly location; private _centerLocation: UIEventSource<Loc>; private readonly mapBackground: UIEventSource<BaseLayer>; /** @@ -150,10 +143,12 @@ export default class LocationInput extends InputElement<Loc> implements MinimapO background: this.mapBackground, attribution: this.mapBackground !== State.state?.backgroundLayer, lastClickLocation: this.clickLocation, - bounds: this._bounds + bounds: this._bounds, + addLayerControl: true } ) this.leafletMap = this.map.leafletMap + this.location = this.map.location; } GetValue(): UIEventSource<Loc> { @@ -191,13 +186,13 @@ export default class LocationInput extends InputElement<Loc> implements MinimapO if (this._snapTo !== undefined) { // Show the lines to snap to + console.log("Constructing the snap-to layer", this._snapTo) new ShowDataMultiLayer({ features: new StaticFeatureSource(this._snapTo, true), - enablePopups: false, + popup: undefined, zoomToFeatures: false, leafletMap: this.map.leafletMap, - layers: State.state.filteredLayers, - allElements: State.state.allElements + layers: State.state.filteredLayers } ) // Show the central point @@ -209,11 +204,11 @@ export default class LocationInput extends InputElement<Loc> implements MinimapO }) new ShowDataLayer({ features: new StaticFeatureSource(matchPoint, true), - enablePopups: false, + popup: undefined, zoomToFeatures: false, leafletMap: this.map.leafletMap, layerToShow: this._matching_layer, - allElements: State.state.allElements, + state: State.state, selectedElement: State.state.selectedElement }) diff --git a/UI/Input/RadioButton.ts b/UI/Input/RadioButton.ts index 73310559b3..390a781223 100644 --- a/UI/Input/RadioButton.ts +++ b/UI/Input/RadioButton.ts @@ -4,7 +4,6 @@ import {Utils} from "../../Utils"; export class RadioButton<T> extends InputElement<T> { private static _nextId = 0; - IsSelected: UIEventSource<boolean> = new UIEventSource<boolean>(false); private readonly value: UIEventSource<T>; private _elements: InputElement<T>[]; private _selectFirstAsDefault: boolean; @@ -74,11 +73,7 @@ export class RadioButton<T> extends InputElement<T> { elements[i]?.onClick(() => { selectedElementIndex.setData(i); }); - elements[i].IsSelected.addCallback((isSelected) => { - if (isSelected) { - selectedElementIndex.setData(i); - } - }); + elements[i].GetValue().addCallback(() => { selectedElementIndex.setData(i); }); @@ -148,10 +143,10 @@ export class RadioButton<T> extends InputElement<T> { block.classList.add( "m-1", "border", - "rounded-3xl", - "border-gray-400", + "border-gray-400" ) } + block.style.borderRadius = "1.5rem" wrappers.push(block); form.appendChild(block); @@ -166,10 +161,10 @@ export class RadioButton<T> extends InputElement<T> { if (input.checked) { wrappers[i].classList.remove("border-gray-400"); - wrappers[i].classList.add("border-black"); + wrappers[i].classList.add("border-attention"); } else { wrappers[i].classList.add("border-gray-400"); - wrappers[i].classList.remove("border-black"); + wrappers[i].classList.remove("border-attention"); } } }); 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<string> { } IsValid(t: string): boolean { - return false; + return !isNaN(new Date(t).getTime()); } protected InnerConstructElement(): HTMLElement { diff --git a/UI/Input/TextField.ts b/UI/Input/TextField.ts index a347613f39..905188a159 100644 --- a/UI/Input/TextField.ts +++ b/UI/Input/TextField.ts @@ -5,11 +5,11 @@ import BaseUIElement from "../BaseUIElement"; export class TextField extends InputElement<string> { public readonly enterPressed = new UIEventSource<string>(undefined); - public readonly IsSelected: UIEventSource<boolean> = new UIEventSource<boolean>(false); private readonly value: UIEventSource<string>; private _element: HTMLElement; private readonly _isValid: (s: string, country?: () => string) => boolean; - + private _rawValue: UIEventSource<string> + constructor(options?: { placeholder?: string | BaseUIElement, value?: UIEventSource<string>, @@ -24,13 +24,9 @@ export class TextField extends InputElement<string> { const self = this; options = options ?? {}; this.value = options?.value ?? new UIEventSource<string>(undefined); + this._rawValue = new UIEventSource<string>("") this._isValid = options.isValid ?? (_ => true); - this.onClick(() => { - self.IsSelected.setData(true) - }); - - const placeholder = Translations.W(options.placeholder ?? "").ConstructElement().innerText.replace("'", "'"); this.SetClass("form-text-field") @@ -83,6 +79,7 @@ export class TextField extends InputElement<string> { const endDistance = field.value.substring(field.selectionEnd).replace(/ /g, '').length; // @ts-ignore let val: string = field.value; + self._rawValue.setData(val) if (!self.IsValid(val)) { self.value.setData(undefined); } else { @@ -107,10 +104,6 @@ export class TextField extends InputElement<string> { }; - field.addEventListener("focusin", () => self.IsSelected.setData(true)); - field.addEventListener("focusout", () => self.IsSelected.setData(false)); - - field.addEventListener("keyup", function (event) { if (event.key === "Enter") { // @ts-ignore @@ -138,7 +131,11 @@ export class TextField extends InputElement<string> { GetValue(): UIEventSource<string> { return this.value; } - + + GetRawValue(): UIEventSource<string>{ + return this._rawValue + } + IsValid(t: string): boolean { if (t === undefined || t === null) { return false diff --git a/UI/Input/ValidatedTextField.ts b/UI/Input/ValidatedTextField.ts index 181cd5ea61..9359289d47 100644 --- a/UI/Input/ValidatedTextField.ts +++ b/UI/Input/ValidatedTextField.ts @@ -22,40 +22,238 @@ 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"; +import Translations from "../i18n/Translations"; +import {Translation} from "../i18n/Translation"; +import {NOTFOUND} from "dns"; -interface TextFieldDef { - name: string, - explanation: string, - isValid: ((s: string, country?: () => string) => boolean), - reformat?: ((s: string, country?: () => string) => string), - inputHelper?: (value: UIEventSource<string>, options?: { +export class TextFieldDef { + + public readonly name: string; + /* + * An explanation for the theme builder. + * This can indicate which special input element is used, ... + * */ + public readonly explanation: string; + protected inputmode?: string = undefined + + constructor(name: string, + explanation: string | BaseUIElement) { + this.name = name; + if (this.name.endsWith("textfield")) { + this.name = this.name.substr(0, this.name.length - "TextField".length) + } + if (this.name.endsWith("textfielddef")) { + this.name = this.name.substr(0, this.name.length - "TextFieldDef".length) + } + if (typeof explanation === "string") { + + this.explanation = explanation + } else { + this.explanation = explanation.AsMarkdown(); + } + } + + protectedisValid(s: string, _: (() => string) | undefined): boolean { + return true; + } + + public getFeedback(s: string): Translation { + const tr = Translations.t.validation[this.name] + if(tr !== undefined){ + return tr["feedback"] + } + } + + public ConstructInputElement(options: { + value?: UIEventSource<string>, + inputStyle?: string, + feedback?: UIEventSource<Translation> + placeholder?: string | BaseUIElement, + country?: () => string, + location?: [number /*lat*/, number /*lon*/], + mapBackgroundLayer?: UIEventSource<any>, + unit?: Unit, + args?: (string | number | boolean)[] // Extra arguments for the inputHelper, + feature?: any, + } = {}): InputElement<string> { + + if (options.placeholder === undefined) { + options.placeholder = Translations.t.validation[this.name]?.description ?? this.name + } + + options["textArea"] = this.name === "text"; + + const self = this; + + if (options.unit !== undefined) { + // Reformatting is handled by the unit in this case + options["isValid"] = str => { + const denom = options.unit.findDenomination(str); + if (denom === undefined) { + return false; + } + const stripped = denom[0] + return self.isValid(stripped, options.country) + } + } else { + options["isValid"] = self.isValid; + } + + + options["inputMode"] = this.inputmode; + if (this.inputmode === "text") { + options["htmlType"] = "area" + } + + + const textfield = new TextField(options); + let input: InputElement<string> = textfield + if (options.feedback) { + textfield.GetRawValue().addCallback(v => { + if(self.isValid(v, options.country)){ + options.feedback.setData(undefined) + }else{ + options.feedback.setData(self.getFeedback(v)) + } + }) + } + + + if (this.reformat && options.unit === undefined) { + input.GetValue().addCallbackAndRun(str => { + if (!options["isValid"](str, options.country)) { + return; + } + const formatted = this.reformat(str, options.country); + input.GetValue().setData(formatted); + }) + } + + if (options.unit) { + // We need to apply a unit. + // This implies: + // We have to create a dropdown with applicable denominations, and fuse those values + const unit = options.unit + + + const isSingular = input.GetValue().map(str => str?.trim() === "1") + + const unitDropDown = + unit.denominations.length === 1 ? + new FixedInputElement(unit.denominations[0].getToggledHuman(isSingular), unit.denominations[0]) + : new DropDown("", + unit.denominations.map(denom => { + return { + shown: denom.getToggledHuman(isSingular), + value: denom + } + }) + ) + unitDropDown.GetValue().setData(unit.defaultDenom) + unitDropDown.SetClass("w-min") + + const fixedDenom = unit.denominations.length === 1 ? unit.denominations[0] : undefined + input = new CombinedInputElement( + input, + unitDropDown, + // combine the value from the textfield and the dropdown into the resulting value that should go into OSM + (text, denom) => { + if (denom === undefined) { + return text + } + return denom?.canonicalValue(text, true) + }, + (valueWithDenom: string) => { + // Take the value from OSM and feed it into the textfield and the dropdown + const withDenom = unit.findDenomination(valueWithDenom); + if (withDenom === undefined) { + // Not a valid value at all - we give it undefined and leave the details up to the other elements (but we keep the previous denomination) + return [undefined, fixedDenom] + } + const [strippedText, denom] = withDenom + if (strippedText === undefined) { + return [undefined, fixedDenom] + } + return [strippedText, denom] + } + ).SetClass("flex") + } + const helper = this.inputHelper(input.GetValue(), { + location: options.location, + mapBackgroundLayer: options.mapBackgroundLayer, + args: options.args, + feature: options.feature + })?.SetClass("block") + if (helper !== undefined) { + input = new CombinedInputElement(input, helper, + (a, _) => a, // We can ignore b, as they are linked earlier + a => [a, a] + ).SetClass("block w-full"); + } + if (this.postprocess !== undefined) { + input = new InputElementMap<string, string>(input, + (a, b) => a === b, + this.postprocess, + this.undoPostprocess + ) + } + + return input; + } + + protected isValid(string: string, requestCountry: () => string): boolean { + return true; + } + + protected reformat(s: string, country?: () => string): string { + return s; + } + + /** + * Modification to make before the string is uploaded to OSM + */ + protected postprocess(s: string): string { + return s + } + + protected undoPostprocess(s: string): string { + return s; + } + + protected inputHelper(value: UIEventSource<string>, options?: { location: [number, number], mapBackgroundLayer?: UIEventSource<any>, args: (string | number | boolean | any)[] feature?: any - }) => InputElement<string>, - inputmode?: string + }): InputElement<string> { + return undefined + } + + } -class WikidataTextField implements TextFieldDef { - name = "wikidata" - explanation = - new Combine([ - "A wikidata identifier, e.g. Q42.", - new Title("Helper arguments"), - new Table(["name", "doc"], - [ - ["key", "the value of this tag will initialize search (default: name)"], - ["options", new Combine(["A JSON-object of type `{ removePrefixes: string[], removePostfixes: string[] }`.", - new Table( - ["subarg", "doc"], - [["removePrefixes", "remove these snippets of text from the start of the passed string to search"], - ["removePostfixes", "remove these snippets of text from the end of the passed string to search"], - ] - )]) - ]]), - new Title("Example usage"), - `The following is the 'freeform'-part of a layer config which will trigger a search for the wikidata item corresponding with the name of the selected feature. It will also remove '-street', '-square', ... if found at the end of the name +class WikidataTextField extends TextFieldDef { + + constructor() { + super( + "wikidata", + new Combine([ + "A wikidata identifier, e.g. Q42.", + new Title("Helper arguments"), + new Table(["name", "doc"], + [ + ["key", "the value of this tag will initialize search (default: name)"], + ["options", new Combine(["A JSON-object of type `{ removePrefixes: string[], removePostfixes: string[] }`.", + new Table( + ["subarg", "doc"], + [["removePrefixes", "remove these snippets of text from the start of the passed string to search"], + ["removePostfixes", "remove these snippets of text from the end of the passed string to search"], + ] + )]) + ]]), + new Title("Example usage"), + `The following is the 'freeform'-part of a layer config which will trigger a search for the wikidata item corresponding with the name of the selected feature. It will also remove '-street', '-square', ... if found at the end of the name \`\`\` "freeform": { @@ -75,10 +273,11 @@ class WikidataTextField implements TextFieldDef { ] } \`\`\`` - ]).AsMarkdown() + ])); + } - public isValid(str) { + public isValid(str): boolean { if (str === undefined) { return false; @@ -133,27 +332,29 @@ class WikidataTextField implements TextFieldDef { } } -class OpeningHoursTextField implements TextFieldDef { - name = "opening_hours" - explanation = - new Combine([ - "Has extra elements to easily input when a POI is opened.", - new Title("Helper arguments"), - new Table(["name", "doc"], - [ - ["options", new Combine([ - "A JSON-object of type `{ prefix: string, postfix: string }`. ", - new Table(["subarg", "doc"], - [ - ["prefix", "Piece of text that will always be added to the front of the generated opening hours. If the OSM-data does not start with this, it will fail to parse"], - ["postfix", "Piece of text that will always be added to the end of the generated opening hours"], - ]) +class OpeningHoursTextField extends TextFieldDef { - ]) - ] - ]), - new Title("Example usage"), - "To add a conditional (based on time) access restriction:\n\n```\n" + ` + constructor() { + super( + "opening_hours", + new Combine([ + "Has extra elements to easily input when a POI is opened.", + new Title("Helper arguments"), + new Table(["name", "doc"], + [ + ["options", new Combine([ + "A JSON-object of type `{ prefix: string, postfix: string }`. ", + new Table(["subarg", "doc"], + [ + ["prefix", "Piece of text that will always be added to the front of the generated opening hours. If the OSM-data does not start with this, it will fail to parse"], + ["postfix", "Piece of text that will always be added to the end of the generated opening hours"], + ]) + + ]) + ] + ]), + new Title("Example usage"), + "To add a conditional (based on time) access restriction:\n\n```\n" + ` "freeform": { "key": "access:conditional", "type": "opening_hours", @@ -163,8 +364,8 @@ class OpeningHoursTextField implements TextFieldDef { "postfix":")" } ] -}` + "\n```\n\n*Don't forget to pass the prefix and postfix in the rendering as well*: `{opening_hours_table(opening_hours,yes @ &LPARENS, &RPARENS )`"]).AsMarkdown() - +}` + "\n```\n\n*Don't forget to pass the prefix and postfix in the rendering as well*: `{opening_hours_table(opening_hours,yes @ &LPARENS, &RPARENS )`"]),); + } isValid() { return true @@ -187,417 +388,473 @@ class OpeningHoursTextField implements TextFieldDef { return new OpeningHoursInput(value, prefix, postfix) } } -export default class ValidatedTextField { - public static tpList: TextFieldDef[] = [ - - ValidatedTextField.tp( - "string", - "A basic string"), - ValidatedTextField.tp( - "text", - "A string, but allows input of longer strings more comfortably and supports newlines (a text area)", - undefined, - undefined, - undefined, - "text"), +class UrlTextfieldDef extends TextFieldDef { - ValidatedTextField.tp( - "date", - "A date", - (str) => { - const time = Date.parse(str); - return !isNaN(time); - }, - (str) => { - const d = new Date(str); - let month = '' + (d.getMonth() + 1); - let day = '' + d.getDate(); - const year = d.getFullYear(); + inputmode: "url" - if (month.length < 2) - month = '0' + month; - if (day.length < 2) - day = '0' + day; - - return [year, month, day].join('-'); - }, - (value) => new SimpleDatePicker(value)), - ValidatedTextField.tp( - "direction", - "A geographical direction, in degrees. 0° is north, 90° is east, ... Will return a value between 0 (incl) and 360 (excl)", - (str) => { - str = "" + str; - return str !== undefined && str.indexOf(".") < 0 && !isNaN(Number(str)) && Number(str) >= 0 && Number(str) <= 360 - }, str => str, - (value, options) => { - const args = options.args ?? [] - let zoom = 19 - if (args[0]) { - zoom = Number(args[0]) - if (isNaN(zoom)) { - throw "Invalid zoom level for argument at 'length'-input" - } - } - const location = new UIEventSource<Loc>({ - lat: options.location[0], - lon: options.location[1], - zoom: zoom - }) - if (args[1]) { - // We have a prefered map! - options.mapBackgroundLayer = AvailableBaseLayers.SelectBestLayerAccordingTo( - location, new UIEventSource<string[]>(args[1].split(",")) - ) - } - const di = new DirectionInput(options.mapBackgroundLayer, location, value) - di.SetStyle("max-width: 25rem;"); - - return di; - }, - "numeric" - ), - ValidatedTextField.tp( - "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\"]", - (str) => { - const t = Number(str) - return !isNaN(t) - }, - str => str, - (value, options) => { - const args = options.args ?? [] - let zoom = 19 - if (args[0]) { - zoom = Number(args[0]) - if (isNaN(zoom)) { - console.error("Invalid zoom level for argument at 'length'-input. The offending argument is: ", args[0], " (using 19 instead)") - zoom = 19 - } - } - - // Bit of a hack: we project the centerpoint to the closes point on the road - if available - if (options.feature !== undefined && options.feature.geometry.type !== "Point") { - const lonlat: [number, number] = [...options.location] - lonlat.reverse() - options.location = <[number, number]>GeoOperations.nearestPoint(options.feature, lonlat).geometry.coordinates - options.location.reverse() - } - - const location = new UIEventSource<Loc>({ - lat: options.location[0], - lon: options.location[1], - zoom: zoom - }) - if (args[1]) { - // We have a prefered map! - options.mapBackgroundLayer = AvailableBaseLayers.SelectBestLayerAccordingTo( - location, new UIEventSource<string[]>(args[1].split(",")) - ) - } - const li = new LengthInput(options.mapBackgroundLayer, location, value) - li.SetStyle("height: 20rem;") - return li; - }, - "decimal" - ), - new WikidataTextField(), - - ValidatedTextField.tp( - "int", - "A number", - (str) => { - str = "" + str; - return str !== undefined && str.indexOf(".") < 0 && !isNaN(Number(str)) - }, - str => "" + Number(str), - undefined, - "numeric"), - ValidatedTextField.tp( - "nat", - "A positive number or zero", - (str) => { - str = "" + str; - return str !== undefined && str.indexOf(".") < 0 && !isNaN(Number(str)) && Number(str) >= 0 - }, - str => "" + Number(str), - undefined, - "numeric"), - ValidatedTextField.tp( - "pnat", - "A strict positive number", - (str) => { - str = "" + str; - return str !== undefined && str.indexOf(".") < 0 && !isNaN(Number(str)) && Number(str) > 0 - }, - str => "" + Number(str), - undefined, - "numeric"), - ValidatedTextField.tp( - "float", - "A decimal", - (str) => !isNaN(Number(str)) && !str.endsWith(".") && !str.endsWith(","), - str => "" + Number(str), - undefined, - "decimal"), - ValidatedTextField.tp( - "pfloat", - "A positive decimal (incl zero)", - (str) => !isNaN(Number(str)) && Number(str) >= 0 && !str.endsWith(".") && !str.endsWith(","), - str => "" + Number(str), - undefined, - "decimal"), - ValidatedTextField.tp( - "email", - "An email adress", - (str) => EmailValidator.validate(str), - undefined, - 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"), - ValidatedTextField.tp( - "phone", - "A phone number", - (str, country: () => string) => { - if (str === undefined) { - return false; - } - return parsePhoneNumberFromString(str, (country())?.toUpperCase() as any)?.isValid() ?? false - }, - (str, country: () => string) => parsePhoneNumberFromString(str, (country())?.toUpperCase() as any).formatInternational(), - undefined, - "tel" - ), - new OpeningHoursTextField(), - ValidatedTextField.tp( - "color", - "Shows a color picker", - () => true, - str => str, - (value) => { - return new ColorPicker(value.map(color => { - return Utils.ColourNameToHex(color ?? ""); - }, [], str => Utils.HexToColourName(str))) - } - ) - ] - /** - * {string (typename) --> TextFieldDef} - */ - public static AllTypes = ValidatedTextField.allTypesDict(); - - public static InputForType(type: string, options?: { - placeholder?: string | BaseUIElement, - value?: UIEventSource<string>, - htmlType?: string, - textArea?: boolean, - inputMode?: string, - textAreaRows?: number, - isValid?: ((s: string, country: () => string) => boolean), - country?: () => string, - location?: [number /*lat*/, number /*lon*/], - mapBackgroundLayer?: UIEventSource<any>, - unit?: Unit, - args?: (string | number | boolean)[] // Extra arguments for the inputHelper, - feature?: any - }): InputElement<string> { - options = options ?? {}; - options.placeholder = options.placeholder ?? type; - const tp: TextFieldDef = ValidatedTextField.AllTypes[type] - const isValidTp = tp.isValid; - let isValid; - options.textArea = options.textArea ?? type === "text"; - if (options.isValid) { - const optValid = options.isValid; - isValid = (str, country) => { - if (str === undefined) { - return false; - } - if (options.unit) { - str = options.unit.stripUnitParts(str) - } - return isValidTp(str, country ?? options.country) && optValid(str, country ?? options.country); - } - } else { - isValid = isValidTp; - } - - if (options.unit !== undefined && isValid !== undefined) { - // Reformatting is handled by the unit in this case - options.isValid = str => { - const denom = options.unit.findDenomination(str); - if (denom === undefined) { - return false; - } - const stripped = denom[0] - console.log("Is valid? ", str, "stripped: ", stripped, "isValid:", isValid(stripped)) - return isValid(stripped) - } - } else { - options.isValid = isValid; - - } - - - options.inputMode = tp.inputmode; - if(tp.inputmode === "text") { - options.htmlType = "area" - } - - - let input: InputElement<string> = new TextField(options); - if (tp.reformat && options.unit === undefined) { - input.GetValue().addCallbackAndRun(str => { - if (!options.isValid(str, options.country)) { - return; - } - const formatted = tp.reformat(str, options.country); - input.GetValue().setData(formatted); - }) - } - - if (options.unit) { - // We need to apply a unit. - // This implies: - // We have to create a dropdown with applicable denominations, and fuse those values - const unit = options.unit - - - const isSingular = input.GetValue().map(str => str?.trim() === "1") - - const unitDropDown = - unit.denominations.length === 1 ? - new FixedInputElement(unit.denominations[0].getToggledHuman(isSingular), unit.denominations[0]) - : new DropDown("", - unit.denominations.map(denom => { - return { - shown: denom.getToggledHuman(isSingular), - value: denom - } - }) - ) - unitDropDown.GetValue().setData(unit.defaultDenom) - unitDropDown.SetClass("w-min") - - const fixedDenom = unit.denominations.length === 1 ? unit.denominations[0] : undefined - input = new CombinedInputElement( - input, - unitDropDown, - // combine the value from the textfield and the dropdown into the resulting value that should go into OSM - (text, denom) => { - if (denom === undefined) { - return text - } - return denom?.canonicalValue(text, true) - }, - (valueWithDenom: string) => { - // Take the value from OSM and feed it into the textfield and the dropdown - const withDenom = unit.findDenomination(valueWithDenom); - if (withDenom === undefined) { - // Not a valid value at all - we give it undefined and leave the details up to the other elements (but we keep the previous denomination) - return [undefined, fixedDenom] - } - const [strippedText, denom] = withDenom - if (strippedText === undefined) { - return [undefined, fixedDenom] - } - return [strippedText, denom] - } - ).SetClass("flex") - } - if (tp.inputHelper) { - const helper = tp.inputHelper(input.GetValue(), { - location: options.location, - mapBackgroundLayer: options.mapBackgroundLayer, - args: options.args, - feature: options.feature - }).SetClass("block") - input = new CombinedInputElement(input, helper, - (a, _) => a, // We can ignore b, as they are linked earlier - a => [a, a] - ).SetClass("block w-full"); - } - return input; + constructor() { + super("url", "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") } - public static HelpText(): string { - const explanations = ValidatedTextField.tpList.map(type => ["## " + type.name, "", type.explanation].join("\n")).join("\n\n") + 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; + } + } +} + +class StringTextField extends TextFieldDef { + constructor() { + super("string", "A simple piece of text"); + } +} + +class TextTextField extends TextFieldDef { + inputmode: "text" + + constructor() { + super("text", "A longer piece of text"); + } +} + +class DateTextField extends TextFieldDef { + constructor() { + super("date", "A date with date picker"); + } + + isValid = (str) => { + return !isNaN(new Date(str).getTime()); + } + + reformat(str) { + const d = new Date(str); + let month = '' + (d.getMonth() + 1); + let day = '' + d.getDate(); + const year = d.getFullYear(); + + if (month.length < 2) + month = '0' + month; + if (day.length < 2) + day = '0' + day; + + return [year, month, day].join('-'); + } + + inputHelper(value) { + return new SimpleDatePicker(value) + } +} + + +class LengthTextField extends TextFieldDef { + inputMode: "decimal" + + constructor() { + super( + "decimal", "A geographical length in meters (rounded at two points). Will give an extra minimap with a measurement tool. Arguments: [ zoomlevel, preferredBackgroundMapType (comma separated) ], e.g. `[\"21\", \"map,photo\"]" + ) + } + + isValid = (str) => { + const t = Number(str) + return !isNaN(t) + } + + inputHelper = (value, options) => { + options = options ?? {} + options.location = options.location ?? [0, 0] + + const args = options.args ?? [] + let zoom = 19 + if (args[0]) { + zoom = Number(args[0]) + if (isNaN(zoom)) { + console.error("Invalid zoom level for argument at 'length'-input. The offending argument is: ", args[0], " (using 19 instead)") + zoom = 19 + } + } + + // Bit of a hack: we project the centerpoint to the closes point on the road - if available + if (options?.feature !== undefined && options.feature.geometry.type !== "Point") { + const lonlat = <[number, number]>[...options.location] + lonlat.reverse(/*Changes a clone, this is safe */) + options.location = <[number, number]>GeoOperations.nearestPoint(options.feature, lonlat).geometry.coordinates + options.location.reverse(/*Changes a clone, this is safe */) + } + + + const location = new UIEventSource<Loc>({ + lat: options.location[0], + lon: options.location[1], + zoom: zoom + }) + if (args[1]) { + // We have a prefered map! + options.mapBackgroundLayer = AvailableBaseLayers.SelectBestLayerAccordingTo( + location, new UIEventSource<string[]>(args[1].split(",")) + ) + } + const li = new LengthInput(options?.mapBackgroundLayer, location, value) + li.SetStyle("height: 20rem;") + return li; + } +} + +class FloatTextField extends TextFieldDef { + inputmode = "decimal" + + constructor(name?: string, explanation?: string) { + super(name ?? "float", explanation ?? "A decimal"); + } + + isValid(str) { + return !isNaN(Number(str)) && !str.endsWith(".") && !str.endsWith(",") + } + + reformat( str): string { + return "" + Number(str); + } + + getFeedback(s: string): Translation { + if (isNaN(Number(s))) { + return Translations.t.validation.nat.notANumber + } + + return undefined + } +} + +class IntTextField extends FloatTextField { + inputMode = "numeric" + + constructor(name?: string, explanation?: string) { + super(name ?? "int", explanation ?? "A number"); + } + + isValid(str): boolean { + str = "" + str; + return str !== undefined && str.indexOf(".") < 0 && !isNaN(Number(str)) + } + + getFeedback(s: string): Translation { + const n = Number(s) + if (isNaN(n)) { + return Translations.t.validation.nat.notANumber + } + if (Math.floor(n) !== n) { + return Translations.t.validation.nat.mustBeWhole + } + return undefined + } + +} + +class NatTextField extends IntTextField { + inputMode = "numeric" + + constructor(name?: string, explanation?: string) { + super(name ?? "nat", explanation ?? "A positive number or zero"); + } + + isValid(str): boolean { + if (str === undefined) { + return false; + } + str = "" + str; + + return str.indexOf(".") < 0 && !isNaN(Number(str)) && Number(str) >= 0 + } + + + getFeedback(s: string): Translation { + const spr = super.getFeedback(s) + if (spr !== undefined) { + return spr + } + const n = Number(s) + if (n < 0) { + return Translations.t.validation.nat.mustBePositive + } + return undefined + } +} + +class PNatTextField extends NatTextField { + inputmode = "numeric" + + constructor() { + super("pnat", "A strict positive number"); + } + + getFeedback(s: string): Translation { + const spr = super.getFeedback(s); + if (spr !== undefined) { + return spr + } + if (Number(s) === 0) { + return Translations.t.validation.pnat.noZero + } + return undefined + } + + isValid = (str) => { + if (!super.isValid(str)) { + return false + } + return Number(str) > 0 + } + +} + +class PFloatTextField extends FloatTextField { + inputmode = "decimal" + + constructor() { + super("pfloat", "A positive decimal (inclusive zero)"); + } + + isValid = (str) => !isNaN(Number(str)) && Number(str) >= 0 && !str.endsWith(".") && !str.endsWith(",") + + getFeedback(s: string): Translation { + const spr = super.getFeedback(s); + if (spr !== undefined) { + return spr + } + if (Number(s) < 0) { + return Translations.t.validation.nat.mustBePositive + } + return undefined; + } +} + +class EmailTextField extends TextFieldDef { + inputmode = "email" + + constructor() { + super("email", "An email adress"); + } + + isValid = (str) => { + if (str === undefined) { + return false + } + if (str.startsWith("mailto:")) { + str = str.substring("mailto:".length) + } + return EmailValidator.validate(str); + } + + reformat = str => { + if (str === undefined) { + return undefined + } + if (str.startsWith("mailto:")) { + str = str.substring("mailto:".length) + } + return str; + } + + getFeedback(s: string): Translation { + if(s.indexOf('@') < 0){return Translations.t.validation.email.noAt} + + return super.getFeedback(s); + } +} + +class PhoneTextField extends TextFieldDef { + inputmode = "tel" + + constructor() { + super("phone", "A phone number"); + } + + isValid(str, country: () => string): boolean { + if (str === undefined) { + return false; + } + if (str.startsWith("tel:")) { + str = str.substring("tel:".length) + } + let countryCode = undefined + if(country !== undefined){ + countryCode = (country())?.toUpperCase() + } + return parsePhoneNumberFromString(str, countryCode)?.isValid() ?? false + } + + reformat = (str, country: () => string) => { + if (str.startsWith("tel:")) { + str = str.substring("tel:".length) + } + return parsePhoneNumberFromString(str, (country())?.toUpperCase() as any).formatInternational(); + } +} + +class ColorTextField extends TextFieldDef { + constructor() { + super("color", "Shows a color picker"); + } + + inputHelper = (value) => { + return new ColorPicker(value.map(color => { + return Utils.ColourNameToHex(color ?? ""); + }, [], str => Utils.HexToColourName(str))) + } +} + +class DirectionTextField extends IntTextField { + inputMode = "numeric" + + constructor() { + super("direction", "A geographical direction, in degrees. 0° is north, 90° is east, ... Will return a value between 0 (incl) and 360 (excl)"); + } + + reformat(str): string { + const n = (Number(str) % 360) + return ""+n + } + + + inputHelper = (value, options) => { + const args = options.args ?? [] + options.location = options.location ?? [0, 0] + let zoom = 19 + if (args[0]) { + zoom = Number(args[0]) + if (isNaN(zoom)) { + throw "Invalid zoom level for argument at 'length'-input" + } + } + const location = new UIEventSource<Loc>({ + lat: options.location[0], + lon: options.location[1], + zoom: zoom + }) + if (args[1]) { + // We have a prefered map! + options.mapBackgroundLayer = AvailableBaseLayers.SelectBestLayerAccordingTo( + location, new UIEventSource<string[]>(args[1].split(",")) + ) + } + const di = new DirectionInput(options.mapBackgroundLayer, location, value) + di.SetStyle("max-width: 25rem;"); + + return di; + } +} + + +export default class ValidatedTextField { + + private static AllTextfieldDefs: TextFieldDef[] = [ + new StringTextField(), + new TextTextField(), + new DateTextField(), + new NatTextField(), + new IntTextField(), + new LengthTextField(), + new DirectionTextField(), + new WikidataTextField(), + new PNatTextField(), + new FloatTextField(), + new PFloatTextField(), + new EmailTextField(), + new UrlTextfieldDef(), + new PhoneTextField(), + new OpeningHoursTextField(), + new ColorTextField() + ] + public static allTypes: Map<string, TextFieldDef> = ValidatedTextField.allTypesDict(); + public static ForType(type: string = "string"): TextFieldDef { + return ValidatedTextField.allTypes.get(type) + } + + public static HelpText(): BaseUIElement { + const explanations: BaseUIElement[] = + ValidatedTextField.AllTextfieldDefs.map(type => + 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", - explanations - ]).SetClass("flex flex-col").AsMarkdown() + ...explanations + ]).SetClass("flex flex-col") } - private static tp(name: string, - explanation: string, - isValid?: ((s: string, country?: () => string) => boolean), - reformat?: ((s: string, country?: () => string) => string), - inputHelper?: (value: UIEventSource<string>, options?: { - location: [number, number], - mapBackgroundLayer: UIEventSource<any>, - args: string[], - feature: any - }) => InputElement<string>, - inputmode?: string): TextFieldDef { - - if (isValid === undefined) { - isValid = () => true; - } - - if (reformat === undefined) { - reformat = (str, _) => str; - } - - - return { - name: name, - explanation: explanation, - isValid: isValid, - reformat: reformat, - inputHelper: inputHelper, - inputmode: inputmode - } + public static AvailableTypes(): string[] { + return ValidatedTextField.AllTextfieldDefs.map(tp => tp.name) } - - private static allTypesDict() { - const types = {}; - for (const tp of ValidatedTextField.tpList) { + private static allTypesDict(): Map<string, TextFieldDef> { + const types = new Map<string, TextFieldDef>(); + for (const tp of ValidatedTextField.AllTextfieldDefs) { types[tp.name] = tp; + types.set(tp.name, tp); } return types; } diff --git a/UI/Input/VariableInputElement.ts b/UI/Input/VariableInputElement.ts index f7bb2d8f8f..e9a6aa3d97 100644 --- a/UI/Input/VariableInputElement.ts +++ b/UI/Input/VariableInputElement.ts @@ -5,7 +5,6 @@ import {VariableUiElement} from "../Base/VariableUIElement"; export default class VariableInputElement<T> extends InputElement<T> { - public readonly IsSelected: UIEventSource<boolean>; private readonly value: UIEventSource<T>; private readonly element: BaseUIElement private readonly upstream: UIEventSource<InputElement<T>>; @@ -16,7 +15,6 @@ export default class VariableInputElement<T> extends InputElement<T> { this.upstream = upstream; this.value = upstream.bind(v => v.GetValue()) this.element = new VariableUiElement(upstream) - this.IsSelected = upstream.bind(v => v.IsSelected) } GetValue(): UIEventSource<T> { diff --git a/UI/LanguagePicker.ts b/UI/LanguagePicker.ts index 3e91b99531..73601bbf71 100644 --- a/UI/LanguagePicker.ts +++ b/UI/LanguagePicker.ts @@ -9,7 +9,7 @@ export default class LanguagePicker { languages: string[], label: string | BaseUIElement = "") { - if (languages.length <= 1) { + if (languages === undefined || languages.length <= 1) { return undefined; } diff --git a/UI/NewPoint/ConfirmLocationOfPoint.ts b/UI/NewPoint/ConfirmLocationOfPoint.ts index 68e380997a..dea2bbb82d 100644 --- a/UI/NewPoint/ConfirmLocationOfPoint.ts +++ b/UI/NewPoint/ConfirmLocationOfPoint.ts @@ -12,14 +12,19 @@ import Translations from "../i18n/Translations"; import Svg from "../../Svg"; import Toggle from "../Input/Toggle"; import SimpleAddUI, {PresetInfo} from "../BigComponents/SimpleAddUI"; +import BaseLayer from "../../Models/BaseLayer"; +import Img from "../Base/Img"; +import Title from "../Base/Title"; export default class ConfirmLocationOfPoint extends Combine { constructor( state: { + featureSwitchIsTesting: UIEventSource<boolean>; osmConnection: OsmConnection, - featurePipeline: FeaturePipeline + featurePipeline: FeaturePipeline, + backgroundLayer?: UIEventSource<BaseLayer> }, filterViewIsOpened: UIEventSource<boolean>, preset: PresetInfo, @@ -27,17 +32,23 @@ 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 if (preset.preciseInput !== undefined) { + // Create location input + + // We uncouple the event source const zloc = {...loc, zoom: 19} const locationSrc = new UIEventSource(zloc); - let backgroundLayer = undefined; + let backgroundLayer = new UIEventSource(state?.backgroundLayer?.data ?? AvailableBaseLayers.osmCarto); if (preset.preciseInput.preferredBackground) { - backgroundLayer = AvailableBaseLayers.SelectBestLayerAccordingTo(locationSrc, new UIEventSource<string | string[]>(preset.preciseInput.preferredBackground)) + const defaultBackground = AvailableBaseLayers.SelectBestLayerAccordingTo(locationSrc, new UIEventSource<string | string[]>(preset.preciseInput.preferredBackground)); + // Note that we _break the link_ here, as the minimap will take care of the switching! + backgroundLayer.setData(defaultBackground.data) } let snapToFeatures: UIEventSource<{ feature: any }[]> = undefined @@ -57,8 +68,8 @@ export default class ConfirmLocationOfPoint extends Combine { maxSnapDistance: preset.preciseInput.maxSnapDistance, bounds: mapBounds }) - preciseInput.installBounds(0.15, true) - preciseInput.SetClass("h-32 rounded-xl overflow-hidden border border-gray").SetStyle("height: 12rem;") + preciseInput.installBounds(preset.boundsFactor ?? 0.25, true) + preciseInput.SetClass("h-40 rounded-xl overflow-hidden border border-gray").SetStyle("height: 12rem;") if (preset.preciseInput.snapToLayers && preset.preciseInput.snapToLayers.length > 0) { @@ -72,7 +83,7 @@ export default class ConfirmLocationOfPoint extends Combine { // return; } - bbox = bbox.pad(2); + bbox = bbox.pad(Math.max(preset.boundsFactor ?? 0.25, 2), Math.max(preset.boundsFactor ?? 0.25, 2)); loadedBbox = bbox; const allFeatures: { feature: any }[] = [] preset.preciseInput.snapToLayers.forEach(layerId => { @@ -94,7 +105,8 @@ export default class ConfirmLocationOfPoint extends Combine { ]).SetClass("flex flex-col") ).SetClass("font-bold break-words") .onClick(() => { - confirm(preset.tags, (preciseInput?.GetValue()?.data ?? loc), preciseInput?.snappedOnto?.data?.properties?.id); + console.log("The confirmLocationPanel - precise input yielded ", preciseInput?.GetValue()?.data) + confirm(preset.tags, preciseInput?.GetValue()?.data ?? loc, preciseInput?.snappedOnto?.data?.properties?.id); }); if (preciseInput !== undefined) { @@ -132,33 +144,25 @@ 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 - - }) - ) + hasActiveFilter) const tagInfo = SimpleAddUI.CreateTagInfoFor(preset, state.osmConnection); @@ -167,12 +171,26 @@ export default class ConfirmLocationOfPoint extends Combine { Translations.t.general.cancel ).onClick(cancel) + + let examples : BaseUIElement = undefined; + if(preset.exampleImages !== undefined && preset.exampleImages.length > 0){ + examples = new Combine([ + new Title( preset.exampleImages.length == 1 ? Translations.t.general.example : Translations.t.general.examples), + new Combine(preset.exampleImages.map(img => new Img(img).SetClass("h-64 m-1 w-auto rounded-lg"))).SetClass("flex flex-wrap items-stretch") + ]) + + } + super([ - state.osmConnection.userDetails.data.dryRun ? - Translations.t.general.testing.Clone().SetClass("alert") : undefined, + new Toggle( + Translations.t.general.testing.SetClass("alert"), + undefined, + state.featureSwitchIsTesting + ), disableFiltersOrConfirm, cancelButton, preset.description, + examples, tagInfo ]) diff --git a/UI/OpeningHours/OpeningHours.ts b/UI/OpeningHours/OpeningHours.ts index e1eb5948cc..94f42b50f9 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/OpeningHoursPickerTable.ts b/UI/OpeningHours/OpeningHoursPickerTable.ts index 837bc10b0d..90fbd93c73 100644 --- a/UI/OpeningHours/OpeningHoursPickerTable.ts +++ b/UI/OpeningHours/OpeningHoursPickerTable.ts @@ -24,7 +24,6 @@ export default class OpeningHoursPickerTable extends InputElement<OpeningHour[]> Translations.t.general.weekdays.abbreviations.saturday, Translations.t.general.weekdays.abbreviations.sunday ] - public readonly IsSelected: UIEventSource<boolean>; /* These html-elements are an overlay over the table columns and act as a host for the ranges in the weekdays */ @@ -34,7 +33,6 @@ export default class OpeningHoursPickerTable extends InputElement<OpeningHour[]> constructor(source?: UIEventSource<OpeningHour[]>) { super(); this.source = source ?? new UIEventSource<OpeningHour[]>([]); - this.IsSelected = new UIEventSource<boolean>(false); this.SetStyle("width:100%;height:100%;display:block;"); } diff --git a/UI/OpeningHours/OpeningHoursVisualization.ts b/UI/OpeningHours/OpeningHoursVisualization.ts index 9a2a30800a..41744a4897 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<any>, key: string, prefix = "", postfix = "") { + constructor(tags: UIEventSource<any>, 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/AutoApplyButton.ts b/UI/Popup/AutoApplyButton.ts new file mode 100644 index 0000000000..f4eb867254 --- /dev/null +++ b/UI/Popup/AutoApplyButton.ts @@ -0,0 +1,244 @@ +import {SpecialVisualization} from "../SpecialVisualizations"; +import FeaturePipelineState from "../../Logic/State/FeaturePipelineState"; +import BaseUIElement from "../BaseUIElement"; +import {UIEventSource} from "../../Logic/UIEventSource"; +import {DefaultGuiState} from "../DefaultGuiState"; +import {SubtleButton} from "../Base/SubtleButton"; +import Img from "../Base/Img"; +import {FixedUiElement} from "../Base/FixedUiElement"; +import Combine from "../Base/Combine"; +import Link from "../Base/Link"; +import {SubstitutedTranslation} from "../SubstitutedTranslation"; +import {Utils} from "../../Utils"; +import Minimap from "../Base/Minimap"; +import ShowDataLayer from "../ShowDataLayer/ShowDataLayer"; +import StaticFeatureSource from "../../Logic/FeatureSource/Sources/StaticFeatureSource"; +import {VariableUiElement} from "../Base/VariableUIElement"; +import Loading from "../Base/Loading"; +import {OsmConnection} from "../../Logic/Osm/OsmConnection"; +import Translations from "../i18n/Translations"; +import LayoutConfig from "../../Models/ThemeConfig/LayoutConfig"; +import {Changes} from "../../Logic/Osm/Changes"; +import {UIElement} from "../UIElement"; +import FilteredLayer from "../../Models/FilteredLayer"; +import TagRenderingConfig from "../../Models/ThemeConfig/TagRenderingConfig"; +import Lazy from "../Base/Lazy"; + +export interface AutoAction extends SpecialVisualization { + supportsAutoAction: boolean + + applyActionOn(state: { + layoutToUse: LayoutConfig, + changes: Changes + }, tagSource: UIEventSource<any>, argument: string[]): Promise<void> +} + +class ApplyButton extends UIElement { + private readonly icon: string; + private readonly text: string; + private readonly targetTagRendering: string; + private readonly target_layer_id: string; + private readonly state: FeaturePipelineState; + private readonly target_feature_ids: string[]; + private readonly buttonState = new UIEventSource<"idle" | "running" | "done" | { error: string }>("idle") + private readonly layer: FilteredLayer; + private readonly tagRenderingConfig: TagRenderingConfig; + + constructor(state: FeaturePipelineState, target_feature_ids: string[], options: { + target_layer_id: string, + targetTagRendering: string, + text: string, + icon: string + }) { + super() + this.state = state; + this.target_feature_ids = target_feature_ids; + this.target_layer_id = options.target_layer_id; + this.targetTagRendering = options.targetTagRendering; + this.text = options.text + this.icon = options.icon + this.layer = this.state.filteredLayers.data.find(l => l.layerDef.id === this.target_layer_id) + this.tagRenderingConfig = this.layer.layerDef.tagRenderings.find(tr => tr.id === this.targetTagRendering) + + } + + protected InnerRender(): string | BaseUIElement { + if (this.target_feature_ids.length === 0) { + return new FixedUiElement("No elements found to perform action") + } + + + if (this.tagRenderingConfig === undefined) { + return new FixedUiElement("Target tagrendering " + this.targetTagRendering + " not found").SetClass("alert") + } + const self = this; + const button = new SubtleButton( + new Img(this.icon), + this.text + ).onClick(() => { + this.buttonState.setData("running") + window.setTimeout(() => { + + self.Run(); + }, 50) + }); + + const explanation = new Combine(["The following objects will be updated: ", + ...this.target_feature_ids.map(id => new Combine([new Link(id, "https:/ /openstreetmap.org/" + id, true), ", "]))]).SetClass("subtle") + + const previewMap = Minimap.createMiniMap({ + allowMoving: false, + background: this.state.backgroundLayer, + addLayerControl: true, + }).SetClass("h-48") + + const features = this.target_feature_ids.map(id => this.state.allElements.ContainingFeatures.get(id)) + + new ShowDataLayer({ + leafletMap: previewMap.leafletMap, + popup: undefined, + zoomToFeatures: true, + features: new StaticFeatureSource(features, false), + state: this.state, + layerToShow: this.layer.layerDef, + }) + + + return new VariableUiElement(this.buttonState.map( + st => { + if (st === "idle") { + return new Combine([button, previewMap, explanation]); + } + if (st === "done") { + return new FixedUiElement("All done!").SetClass("thanks") + } + if (st === "running") { + return new Loading("Applying changes...") + } + const error = st.error + return new Combine([new FixedUiElement("Something went wrong...").SetClass("alert"), new FixedUiElement(error).SetClass("subtle")]).SetClass("flex flex-col") + } + )) + } + + private async Run() { + + + try { + console.log("Applying auto-action on " + this.target_feature_ids.length + " features") + + for (const targetFeatureId of this.target_feature_ids) { + const featureTags = this.state.allElements.getEventSourceById(targetFeatureId) + const rendering = this.tagRenderingConfig.GetRenderValue(featureTags.data).txt + const specialRenderings = Utils.NoNull(SubstitutedTranslation.ExtractSpecialComponents(rendering) + .map(x => x.special)) + .filter(v => v.func["supportsAutoAction"] === true) + + if (specialRenderings.length == 0) { + console.warn("AutoApply: feature " + targetFeatureId + " got a rendering without supported auto actions:", rendering) + } + + for (const specialRendering of specialRenderings) { + const action = <AutoAction>specialRendering.func + await action.applyActionOn(this.state, featureTags, specialRendering.args) + } + } + console.log("Flushing changes...") + await this.state.changes.flushChanges("Auto button") + this.buttonState.setData("done") + } catch (e) { + console.error("Error while running autoApply: ", e) + this.buttonState.setData({error: e}) + } + } + +} + +export default class AutoApplyButton implements SpecialVisualization { + public readonly docs: string; + public readonly funcName: string = "auto_apply"; + public readonly args: { name: string; defaultValue?: string; doc: string }[] = [ + { + name: "target_layer", + doc: "The layer that the target features will reside in" + }, + { + name: "target_feature_ids", + doc: "The key, of which the value contains a list of ids" + }, + { + name: "tag_rendering_id", + doc: "The ID of the tagRendering containing the autoAction. This tagrendering will be calculated. The embedded actions will be executed" + }, + { + name: "text", + doc: "The text to show on the button" + }, + { + name: "icon", + doc: "The icon to show on the button", + defaultValue: "./assets/svg/robot.svg" + } + ]; + + constructor(allSpecialVisualisations: SpecialVisualization[]) { + this.docs = AutoApplyButton.generateDocs(allSpecialVisualisations.filter(sv => sv["supportsAutoAction"] === true).map(sv => sv.funcName)) + } + + private static generateDocs(supportedActions: string[]) { + return [ + "A button to run many actions for many features at once.\n", + "To effectively use this button, you'll need some ingredients:\n" + + "- A target layer with features for which an action is defined in a tag rendering. The following special visualisations support an autoAction: " + supportedActions.join(", "), + "- A host feature to place the auto-action on. This can be a big outline (such as a city). Another good option for this is the [current_view](./BuiltinLayers.md#current_view)", + "- Then, use a calculated tag on the host feature to determine the overlapping object ids", + "- At last, add this component" + ].join("\n") + } + + constr(state: FeaturePipelineState, tagSource: UIEventSource<any>, argument: string[], guistate: DefaultGuiState): BaseUIElement { + try { + + if (!state.layoutToUse.official && !(state.featureSwitchIsTesting.data || state.osmConnection._oauth_config.url === OsmConnection.oauth_configs["osm-test"].url)) { + const t = Translations.t.general.add.import; + return new Combine([new FixedUiElement("The auto-apply button is only available in official themes (or in testing mode)").SetClass("alert"), t.howToTest]) + } + + const target_layer_id = argument[0] + const targetTagRendering = argument[2] + const text = argument[3] + const icon = argument[4] + const options = { + target_layer_id, targetTagRendering, text, icon + } + + return new Lazy(() => { + const to_parse = new UIEventSource(undefined) + // Very ugly hack: read the value every 500ms + UIEventSource.Chronic(500, () => to_parse.data === undefined).addCallback(() => { + const applicable = tagSource.data[argument[1]] + to_parse.setData(applicable) + }) + + const loading = new Loading("Gathering which elements support auto-apply... "); + return new VariableUiElement(to_parse.map(ids => { + if (ids === undefined) { + return loading + } + + return new ApplyButton(state, JSON.parse(ids), options); + })) + }) + + + } catch (e) { + return new FixedUiElement("Could not generate a auto_apply-button for key " + argument[0] + " due to " + e).SetClass("alert") + } + } + + getLayerDependencies(args: string[]): string[] { + return [args[0]] + } + + +} \ No newline at end of file diff --git a/UI/Popup/DeleteWizard.ts b/UI/Popup/DeleteWizard.ts index b0981f78bc..ba289a2e24 100644 --- a/UI/Popup/DeleteWizard.ts +++ b/UI/Popup/DeleteWizard.ts @@ -1,5 +1,4 @@ import {VariableUiElement} from "../Base/VariableUIElement"; -import State from "../../State"; import Toggle from "../Input/Toggle"; import Translations from "../i18n/Translations"; import Svg from "../../Svg"; @@ -17,6 +16,10 @@ import TagRenderingConfig from "../../Models/ThemeConfig/TagRenderingConfig"; import {AndOrTagConfigJson} from "../../Models/ThemeConfig/Json/TagConfigJson"; import DeleteConfig from "../../Models/ThemeConfig/DeleteConfig"; import {OsmObject} from "../../Logic/Osm/OsmObject"; +import {ElementStorage} from "../../Logic/ElementStorage"; +import LayoutConfig from "../../Models/ThemeConfig/LayoutConfig"; +import {Changes} from "../../Logic/Osm/Changes"; +import {OsmConnection} from "../../Logic/Osm/OsmConnection"; export default class DeleteWizard extends Toggle { /** @@ -35,13 +38,21 @@ export default class DeleteWizard extends Toggle { * (Note that _delete_reason is used as trigger to do actual deletion - setting such a tag WILL delete from the database with that as changeset comment) * * @param id: The id of the element to remove + * @param state: the state of the application * @param options softDeletionTags: the tags to apply if the user doesn't have permission to delete, e.g. 'disused:amenity=public_bookcase', 'amenity='. After applying, the element should not be picked up on the map anymore. If undefined, the wizard will only show up if the point can be (hard) deleted */ constructor(id: string, + state: { + osmConnection: OsmConnection; + allElements: ElementStorage, + layoutToUse?: LayoutConfig, + changes?: Changes + }, options: DeleteConfig) { - const deleteAbility = new DeleteabilityChecker(id, options.neededChangesets) - const tagsSource = State.state.allElements.getEventSourceById(id) + + const deleteAbility = new DeleteabilityChecker(id, state, options.neededChangesets) + const tagsSource = state.allElements.getEventSourceById(id) const isDeleted = new UIEventSource(false) const allowSoftDeletion = !!options.softDeletionTags @@ -59,12 +70,12 @@ export default class DeleteWizard extends Toggle { const deleteAction = new DeleteAction(id, options.softDeletionTags, { - theme: State.state?.layoutToUse?.id ?? "unkown", + theme: state?.layoutToUse?.id ?? "unkown", specialMotivation: deleteReasonMatch[0]?.v }, deleteAbility.canBeDeleted.data.canBeDeleted ) - State.state.changes.applyAction(deleteAction) + state.changes?.applyAction(deleteAction) isDeleted.setData(true) } @@ -77,8 +88,9 @@ export default class DeleteWizard extends Toggle { return new TagRenderingQuestion( tagsSource, config, + state, { - cancelButton: cancelButton, + cancelButton, /*Using a custom save button constructor erases all logic to actually save, so we have to listen for the click!*/ saveButtonConstr: (v) => DeleteWizard.constructConfirmButton(v).onClick(() => { doDelete(v.data) @@ -93,7 +105,7 @@ export default class DeleteWizard extends Toggle { * The button which is shown first. Opening it will trigger the check for deletions */ const deleteButton = new SubtleButton( - Svg.delete_icon_ui().SetStyle("width: auto; height: 1.5rem;"), t.delete.Clone()).onClick( + Svg.delete_icon_svg().SetStyle("width: 1.5rem; height: 1.5rem;"), t.delete.Clone()).onClick( () => { deleteAbility.CheckDeleteability(true) confirm.setData(true); @@ -112,7 +124,7 @@ export default class DeleteWizard extends Toggle { new Toggle( question, new SubtleButton(Svg.envelope_ui(), t.readMessages.Clone()), - State.state.osmConnection.userDetails.map(ud => ud.csCount > Constants.userJourney.addNewPointWithUnreadMessagesUnlock || ud.unreadMessages == 0) + state.osmConnection.userDetails.map(ud => ud.csCount > Constants.userJourney.addNewPointWithUnreadMessagesUnlock || ud.unreadMessages == 0) ), deleteButton, @@ -131,8 +143,8 @@ export default class DeleteWizard extends Toggle { , deleteAbility.canBeDeleted.map(cbd => allowSoftDeletion || cbd.canBeDeleted !== false)), - t.loginToDelete.Clone().onClick(State.state.osmConnection.AttemptLogin), - State.state.osmConnection.isLoggedIn + t.loginToDelete.Clone().onClick(state.osmConnection.AttemptLogin), + state.osmConnection.isLoggedIn ), isDeleted), undefined, @@ -275,11 +287,16 @@ class DeleteabilityChecker { public readonly canBeDeleted: UIEventSource<{ canBeDeleted?: boolean, reason: Translation }>; private readonly _id: string; private readonly _allowDeletionAtChangesetCount: number; + private readonly _state: { + osmConnection: OsmConnection + }; constructor(id: string, + state: { osmConnection: OsmConnection }, allowDeletionAtChangesetCount?: number) { this._id = id; + this._state = state; this._allowDeletionAtChangesetCount = allowDeletionAtChangesetCount ?? Number.MAX_VALUE; this.canBeDeleted = new UIEventSource<{ canBeDeleted?: boolean; reason: Translation }>({ @@ -299,6 +316,7 @@ class DeleteabilityChecker { const t = Translations.t.delete; const id = this._id; const state = this.canBeDeleted + const self = this; if (!id.startsWith("node")) { this.canBeDeleted.setData({ canBeDeleted: false, @@ -308,8 +326,7 @@ class DeleteabilityChecker { } // Does the currently logged in user have enough experience to delete this point? - - const deletingPointsOfOtherAllowed = State.state.osmConnection.userDetails.map(ud => { + const deletingPointsOfOtherAllowed = this._state.osmConnection.userDetails.map(ud => { if (ud === undefined) { return undefined; } @@ -320,15 +337,14 @@ class DeleteabilityChecker { }) const previousEditors = new UIEventSource<number[]>(undefined) - const allByMyself = previousEditors.map(previous => { if (previous === null || previous === undefined) { // Not yet downloaded return null; } - const userId = State.state.osmConnection.userDetails.data.uid; + const userId = self._state.osmConnection.userDetails.data.uid; return !previous.some(editor => editor !== userId) - }, [State.state.osmConnection.userDetails]) + }, [self._state.osmConnection.userDetails]) // User allowed OR only edited by self? diff --git a/UI/Popup/EditableTagRendering.ts b/UI/Popup/EditableTagRendering.ts index 48cd669efc..0075d26514 100644 --- a/UI/Popup/EditableTagRendering.ts +++ b/UI/Popup/EditableTagRendering.ts @@ -3,19 +3,21 @@ import TagRenderingQuestion from "./TagRenderingQuestion"; import Translations from "../i18n/Translations"; import Combine from "../Base/Combine"; import TagRenderingAnswer from "./TagRenderingAnswer"; -import State from "../../State"; import Svg from "../../Svg"; import Toggle from "../Input/Toggle"; import BaseUIElement from "../BaseUIElement"; import TagRenderingConfig from "../../Models/ThemeConfig/TagRenderingConfig"; import {Unit} from "../../Models/Unit"; import Lazy from "../Base/Lazy"; +import {OsmConnection} from "../../Logic/Osm/OsmConnection"; +import {FixedUiElement} from "../Base/FixedUiElement"; export default class EditableTagRendering extends Toggle { constructor(tags: UIEventSource<any>, configuration: TagRenderingConfig, units: Unit [], + state, options: { editMode?: UIEventSource<boolean>, innerElementClasses?: string @@ -23,8 +25,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)) @@ -32,8 +34,14 @@ export default class EditableTagRendering extends Toggle { super( new Lazy(() => { const editMode = options.editMode ?? new UIEventSource<boolean>(false) - const rendering = EditableTagRendering.CreateRendering(tags, configuration, units, editMode); + let rendering = EditableTagRendering.CreateRendering(state, tags, configuration, units, editMode); rendering.SetClass(options.innerElementClasses) + if(state.featureSwitchIsDebugging.data || state.featureSwitchIsTesting.data){ + rendering = new Combine([ + new FixedUiElement(configuration.id).SetClass("self-end subtle"), + rendering + ]).SetClass("flex flex-col") + } return rendering }), undefined, @@ -41,12 +49,12 @@ export default class EditableTagRendering extends Toggle { ) } - private static CreateRendering(tags: UIEventSource<any>, configuration: TagRenderingConfig, units: Unit[], editMode: UIEventSource<boolean>): BaseUIElement { - const answer: BaseUIElement = new TagRenderingAnswer(tags, configuration) + private static CreateRendering(state: { featureSwitchUserbadge?: UIEventSource<boolean>, osmConnection: OsmConnection }, tags: UIEventSource<any>, configuration: TagRenderingConfig, units: Unit[], editMode: UIEventSource<boolean>): BaseUIElement { + const answer: BaseUIElement = new TagRenderingAnswer(tags, configuration, state) answer.SetClass("w-full") let rendering = answer; - if (configuration.question !== undefined && State.state?.featureSwitchUserbadge?.data) { + if (configuration.question !== undefined && state?.featureSwitchUserbadge?.data) { // We have a question and editing is enabled const answerWithEditButton = new Combine([answer, new Toggle(new Combine([Svg.pencil_ui()]).SetClass("block relative h-10 w-10 p-2 float-right").SetStyle("border: 1px solid black; border-radius: 0.7em") @@ -54,16 +62,16 @@ export default class EditableTagRendering extends Toggle { editMode.setData(true); }), undefined, - State.state.osmConnection.isLoggedIn) + state.osmConnection.isLoggedIn) ]).SetClass("flex justify-between w-full") const question = new Lazy(() => - new TagRenderingQuestion(tags, configuration, + new TagRenderingQuestion(tags, configuration, state, { units: units, cancelButton: Translations.t.general.cancel.Clone() - .SetClass("btn btn-secondary mr-3") + .SetClass("btn btn-secondary") .onClick(() => { editMode.setData(false) }), diff --git a/UI/Popup/FeatureInfoBox.ts b/UI/Popup/FeatureInfoBox.ts index b6d79abd59..55f1a0b671 100644 --- a/UI/Popup/FeatureInfoBox.ts +++ b/UI/Popup/FeatureInfoBox.ts @@ -3,7 +3,6 @@ import EditableTagRendering from "./EditableTagRendering"; import QuestionBox from "./QuestionBox"; import Combine from "../Base/Combine"; import TagRenderingAnswer from "./TagRenderingAnswer"; -import State from "../../State"; import ScrollableFullScreen from "../Base/ScrollableFullScreen"; import Constants from "../../Models/Constants"; import SharedTagRenderings from "../../Customizations/SharedTagRenderings"; @@ -13,22 +12,45 @@ 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"; -import {FixedUiElement} from "../Base/FixedUiElement"; +import {OsmConnection} from "../../Logic/Osm/OsmConnection"; +import {Changes} from "../../Logic/Osm/Changes"; +import LayoutConfig from "../../Models/ThemeConfig/LayoutConfig"; +import {ElementStorage} from "../../Logic/ElementStorage"; +import FilteredLayer from "../../Models/FilteredLayer"; +import BaseLayer from "../../Models/BaseLayer"; +import Lazy from "../Base/Lazy"; export default class FeatureInfoBox extends ScrollableFullScreen { + public constructor( tags: UIEventSource<any>, layerConfig: LayerConfig, + state: { + filteredLayers: UIEventSource<FilteredLayer[]>; + backgroundLayer: UIEventSource<BaseLayer>; + featureSwitchIsTesting: UIEventSource<boolean>; + featureSwitchIsDebugging: UIEventSource<boolean>; + featureSwitchShowAllQuestions: UIEventSource<boolean>; + osmConnection: OsmConnection, + featureSwitchUserbadge: UIEventSource<boolean>, + changes: Changes, + layoutToUse: LayoutConfig, + allElements: ElementStorage + }, + hashToShow?: string, + isShown?: UIEventSource<boolean>, ) { - super(() => FeatureInfoBox.GenerateTitleBar(tags, layerConfig), - () => FeatureInfoBox.GenerateContent(tags, layerConfig), - tags.data.id); + if (state === undefined) { + throw "State is undefined!" + } + super(() => FeatureInfoBox.GenerateTitleBar(tags, layerConfig, state), + () => FeatureInfoBox.GenerateContent(tags, layerConfig, state), + hashToShow ?? tags.data.id ?? "item", + isShown); if (layerConfig === undefined) { throw "Undefined layerconfig"; @@ -37,12 +59,13 @@ export default class FeatureInfoBox extends ScrollableFullScreen { } private static GenerateTitleBar(tags: UIEventSource<any>, - layerConfig: LayerConfig): BaseUIElement { - const title = new TagRenderingAnswer(tags, layerConfig.title ?? new TagRenderingConfig("POI")) - .SetClass("break-words font-bold sm:p-0.5 md:p-1 sm:p-1.5 md:p-2"); + layerConfig: LayerConfig, + state: {}): BaseUIElement { + const title = new TagRenderingAnswer(tags, layerConfig.title ?? new TagRenderingConfig("POI"), state) + .SetClass("break-words font-bold sm:p-0.5 md:p-1 sm:p-1.5 md:p-2 text-2xl"); 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, + "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") @@ -52,20 +75,32 @@ export default class FeatureInfoBox extends ScrollableFullScreen { } private static GenerateContent(tags: UIEventSource<any>, - layerConfig: LayerConfig): BaseUIElement { + layerConfig: LayerConfig, + state: { + filteredLayers: UIEventSource<FilteredLayer[]>; + backgroundLayer: UIEventSource<BaseLayer>; + featureSwitchIsTesting: UIEventSource<boolean>; + featureSwitchIsDebugging: UIEventSource<boolean>; + featureSwitchShowAllQuestions: UIEventSource<boolean>; + osmConnection: OsmConnection, + featureSwitchUserbadge: UIEventSource<boolean>, + changes: Changes, + layoutToUse: LayoutConfig, + allElements: ElementStorage + }): BaseUIElement { let questionBoxes: Map<string, QuestionBox> = new Map<string, QuestionBox>(); const allGroupNames = Utils.Dedup(layerConfig.tagRenderings.map(tr => tr.group)) - if (State.state.featureSwitchUserbadge.data) { + if (state?.featureSwitchUserbadge?.data ?? true) { const questionSpecs = layerConfig.tagRenderings.filter(tr => tr.id === "questions") for (const groupName of allGroupNames) { const questions = layerConfig.tagRenderings.filter(tr => tr.group === groupName) const questionSpec = questionSpecs.filter(tr => tr.group === groupName)[0] - const questionBox = new QuestionBox({ + const questionBox = new QuestionBox(state, { tagsSource: tags, tagRenderings: questions, units: layerConfig.units, - showAllQuestionsAtOnce: questionSpec?.freeform?.helperArgs["showAllQuestions"] ?? State.state.featureSwitchShowAllQuestions + showAllQuestionsAtOnce: questionSpec?.freeform?.helperArgs["showAllQuestions"] ?? state.featureSwitchShowAllQuestions }); questionBoxes.set(groupName, questionBox) } @@ -86,9 +121,10 @@ export default class FeatureInfoBox extends ScrollableFullScreen { if (tr.render !== undefined) { questionBox.SetClass("text-sm") - const renderedQuestion = new TagRenderingAnswer(tags, tr, tr.group + " questions", "", { - specialViz: new Map<string, BaseUIElement>([["questions", questionBox]]) - }) + const renderedQuestion = new TagRenderingAnswer(tags, tr, state, + tr.group + " questions", "", { + specialViz: new Map<string, BaseUIElement>([["questions", questionBox]]) + }) const possiblyHidden = new Toggle( renderedQuestion, undefined, @@ -108,7 +144,7 @@ export default class FeatureInfoBox extends ScrollableFullScreen { classes = "" } - const etr = new EditableTagRendering(tags, tr, layerConfig.units, { + const etr = new EditableTagRendering(tags, tr, layerConfig.units, state, { innerElementClasses: innerClasses }) if (isHeader) { @@ -120,8 +156,29 @@ export default class FeatureInfoBox extends ScrollableFullScreen { allRenderings.push(...renderingsForGroup) } + allRenderings.push( + new Toggle( + new Lazy(() => FeatureInfoBox.createEditElements(questionBoxes, layerConfig, tags, state)), + undefined, + state.featureSwitchUserbadge + )) + return new Combine(allRenderings).SetClass("block") + } + /** + * All the edit elements, together (note that the question boxes are passed though) + * @param questionBoxes + * @param layerConfig + * @param tags + * @param state + * @private + */ + private static createEditElements(questionBoxes: Map<string, QuestionBox>, + layerConfig: LayerConfig, + tags: UIEventSource<any>, + state: { filteredLayers: UIEventSource<FilteredLayer[]>; backgroundLayer: UIEventSource<BaseLayer>; featureSwitchIsTesting: UIEventSource<boolean>; featureSwitchIsDebugging: UIEventSource<boolean>; featureSwitchShowAllQuestions: UIEventSource<boolean>; osmConnection: OsmConnection; featureSwitchUserbadge: UIEventSource<boolean>; changes: Changes; layoutToUse: LayoutConfig; allElements: ElementStorage }) + : BaseUIElement { let editElements: BaseUIElement[] = [] questionBoxes.forEach(questionBox => { editElements.push(questionBox); @@ -130,10 +187,13 @@ export default class FeatureInfoBox extends ScrollableFullScreen { if (layerConfig.allowMove) { editElements.push( new VariableUiElement(tags.map(tags => tags.id).map(id => { - const feature = State.state.allElements.ContainingFeatures.get(id) + const feature = state.allElements.ContainingFeatures.get(id) + if (feature === undefined) { + return "This feature is not register in the state.allElements and cannot be moved" + } return new MoveWizard( feature, - State.state, + state, layerConfig.allowMove ); }) @@ -146,6 +206,7 @@ export default class FeatureInfoBox extends ScrollableFullScreen { new VariableUiElement(tags.map(tags => tags.id).map(id => new DeleteWizard( id, + state, layerConfig.deletion )) ).SetClass("text-base")) @@ -154,78 +215,45 @@ export default class FeatureInfoBox extends ScrollableFullScreen { if (layerConfig.allowSplit) { editElements.push( new VariableUiElement(tags.map(tags => tags.id).map(id => - new SplitRoadWizard(id)) + new SplitRoadWizard(id, state)) ).SetClass("text-base")) } - 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 + state.osmConnection.userDetails .map(ud => ud.csCount) .map(csCount => { if (csCount <= Constants.userJourney.historyLinkVisible - && State.state.featureSwitchIsDebugging.data == false - && State.state.featureSwitchIsTesting.data === false) { + && state.featureSwitchIsDebugging.data == false + && state.featureSwitchIsTesting.data === false) { return undefined } - return new TagRenderingAnswer(tags, SharedTagRenderings.SharedTagRendering.get("last_edit")); + return new TagRenderingAnswer(tags, SharedTagRenderings.SharedTagRendering.get("last_edit"), state); - }, [State.state.featureSwitchIsDebugging, State.state.featureSwitchIsTesting]) + }, [state.featureSwitchIsDebugging, state.featureSwitchIsTesting]) ) ) editElements.push( new VariableUiElement( - State.state.featureSwitchIsDebugging.map(isDebugging => { + state.featureSwitchIsDebugging.map(isDebugging => { if (isDebugging) { - const config: TagRenderingConfig = new TagRenderingConfig({render: "{all_tags()}"}, ""); - return new TagRenderingAnswer(tags, config, "all_tags") + const config_all_tags: TagRenderingConfig = new TagRenderingConfig({render: "{all_tags()}"}, ""); + 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, state), + new TagRenderingAnswer(tags, config_download, state), + new TagRenderingAnswer(tags, config_id, state)]) } }) ) ) - const editors = new VariableUiElement(State.state.featureSwitchUserbadge.map( - userbadge => { - if (!userbadge) { - return undefined - } - return new Combine(editElements).SetClass("flex flex-col") - } - )) - allRenderings.push(editors) - - return new Combine(allRenderings).SetClass("block") + return new Combine(editElements).SetClass("flex flex-col") } - - /** - * 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 new file mode 100644 index 0000000000..3f956c3f0d --- /dev/null +++ b/UI/Popup/ImportButton.ts @@ -0,0 +1,649 @@ +import BaseUIElement from "../BaseUIElement"; +import {SubtleButton} from "../Base/SubtleButton"; +import {UIEventSource} from "../../Logic/UIEventSource"; +import Combine from "../Base/Combine"; +import {VariableUiElement} from "../Base/VariableUIElement"; +import Translations from "../i18n/Translations"; +import Toggle from "../Input/Toggle"; +import CreateNewNodeAction from "../../Logic/Osm/Actions/CreateNewNodeAction"; +import Loading from "../Base/Loading"; +import {OsmConnection} from "../../Logic/Osm/OsmConnection"; +import Lazy from "../Base/Lazy"; +import ConfirmLocationOfPoint from "../NewPoint/ConfirmLocationOfPoint"; +import Img from "../Base/Img"; +import FilteredLayer from "../../Models/FilteredLayer"; +import SpecialVisualizations from "../SpecialVisualizations"; +import {FixedUiElement} from "../Base/FixedUiElement"; +import Svg from "../../Svg"; +import {Utils} from "../../Utils"; +import Minimap from "../Base/Minimap"; +import ShowDataLayer from "../ShowDataLayer/ShowDataLayer"; +import StaticFeatureSource from "../../Logic/FeatureSource/Sources/StaticFeatureSource"; +import ShowDataMultiLayer from "../ShowDataLayer/ShowDataMultiLayer"; +import CreateWayWithPointReuseAction, {MergePointConfig} from "../../Logic/Osm/Actions/CreateWayWithPointReuseAction"; +import OsmChangeAction from "../../Logic/Osm/Actions/OsmChangeAction"; +import FeatureSource from "../../Logic/FeatureSource/FeatureSource"; +import {OsmObject, OsmWay} from "../../Logic/Osm/OsmObject"; +import FeaturePipelineState from "../../Logic/State/FeaturePipelineState"; +import {DefaultGuiState} from "../DefaultGuiState"; +import {PresetInfo} from "../BigComponents/SimpleAddUI"; +import {TagUtils} from "../../Logic/Tags/TagUtils"; +import {And} from "../../Logic/Tags/And"; +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"; +import {AutoAction} from "./AutoApplyButton"; +import LayoutConfig from "../../Models/ThemeConfig/LayoutConfig"; +import {Changes} from "../../Logic/Osm/Changes"; +import {ElementStorage} from "../../Logic/ElementStorage"; + +/** + * 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 { + protected static importedIds = new Set<string>() + public readonly funcName: string + public readonly docs: string + public readonly args: { name: string, defaultValue?: string, doc: string }[] + private readonly showRemovedTags: boolean; + + constructor(funcName: string, docsIntro: string, extraArgs: { name: string, doc: string, defaultValue?: string }[], showRemovedTags = true) { + this.funcName = funcName + this.showRemovedTags = showRemovedTags; + + this.docs = `${docsIntro} + +Note that the contributor must zoom to at least zoomlevel 18 to be able to use this functionality. +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 (or the name of a property which contains a JSON-list of properties). + +${Utils.Special_visualizations_tagsToApplyHelpText} +${Utils.special_visualizations_importRequirementDocs} +` + this.args = [ + { + name: "targetLayer", + doc: "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" + }, + { + name: "tags", + 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", + doc: "The text to show on the button", + defaultValue: "Import this data into OpenStreetMap" + }, + { + name: "icon", + doc: "A nice icon to show in the button", + defaultValue: "./assets/svg/addSmall.svg" + }, + ...extraArgs] + + }; + + abstract constructElement(state: FeaturePipelineState, + args: { max_snap_distance: string, snap_onto_layers: string, icon: string, text: string, tags: string, newTags: UIEventSource<any>, targetLayer: string }, + tagSource: UIEventSource<any>, + guiState: DefaultGuiState, + feature: any, + onCancelClicked: () => void): BaseUIElement; + + + constr(state, tagSource: UIEventSource<any>, argsRaw, guiState) { + /** + * Some generic import button pre-validation is implemented here: + * - Are we logged in? + * - Did the user zoom in enough? + * ... + * + * The actual import flow (showing the conflation map, special cases) are handled in 'constructElement' + */ + + const t = Translations.t.general.add.import; + const t0 = Translations.t.general.add; + const args = this.parseArgs(argsRaw, tagSource) + + { + // Some initial validation + if (!state.layoutToUse.official && !(state.featureSwitchIsTesting.data || state.osmConnection._oauth_config.url === OsmConnection.oauth_configs["osm-test"].url)) { + return new Combine([t.officialThemesOnly.SetClass("alert"), t.howToTest]) + } + const targetLayer: FilteredLayer = state.filteredLayers.data.filter(fl => fl.layerDef.id === args.targetLayer)[0] + if (targetLayer === undefined) { + const e = `Target layer not defined: error in import button for theme: ${state.layoutToUse.id}: layer ${args.targetLayer} not found` + console.error(e) + return new FixedUiElement(e).SetClass("alert") + } + } + + + let img: BaseUIElement + if (args.icon !== undefined && args.icon !== "") { + img = new Img(args.icon) + } else { + img = Svg.add_ui() + } + const inviteToImportButton = new SubtleButton(img, args.text) + + const id = tagSource.data.id; + const feature = state.allElements.ContainingFeatures.get(id) + + + // Explanation of the tags that will be applied onto the imported/conflated object + + 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.debug("The import button is using tags from properties[" + args.tags + "] of this object, namely ", tagSpec) + } + + const importClicked = new UIEventSource(false); + inviteToImportButton.onClick(() => { + importClicked.setData(true); + }) + + + const pleaseLoginButton = new Toggle(t0.pleaseLogin + .onClick(() => state.osmConnection.AttemptLogin()) + .SetClass("login-button-friendly"), + undefined, + state.featureSwitchUserbadge) + + + const isImported = tagSource.map(tags => { + AbstractImportButton.importedIds.add(tags.id) + return tags._imported === "yes"; + }) + + + /**** THe actual panel showing the import guiding map ****/ + const importGuidingPanel = this.constructElement(state, args, tagSource, guiState, feature, () => importClicked.setData(false)) + + + const importFlow = new Toggle( + new Toggle( + new Loading(t0.stillLoading), + importGuidingPanel, + state.featurePipeline.runningQuery + ), + inviteToImportButton, + importClicked + ); + + return new Toggle( + new LoginToggle( + new Toggle( + new Toggle( + t.hasBeenImported, + importFlow, + isImported + ), + t.zoomInMore, + state.locationControl.map(l => l.zoom >= 18) + ), + pleaseLoginButton, + state + ), + t.wrongType, + new UIEventSource(this.canBeImported(feature))) + + } + + getLayerDependencies(argsRaw: string[]) { + const args = this.parseArgs(argsRaw, undefined) + + const dependsOnLayers: string[] = [] + + // The target layer + dependsOnLayers.push(args.targetLayer) + + const snapOntoLayers = args.snap_onto_layers?.trim() ?? ""; + if (snapOntoLayers !== "") { + dependsOnLayers.push(...snapOntoLayers.split(";")) + } + + return dependsOnLayers + } + + protected abstract canBeImported(feature: any) + + protected createConfirmPanelForWay( + state: FeaturePipelineState, + args: { max_snap_distance: string, snap_onto_layers: string, icon: string, text: string, newTags: UIEventSource<Tag[]>, targetLayer: string }, + feature: any, + originalFeatureTags: UIEventSource<any>, + action: (OsmChangeAction & { getPreview(): Promise<FeatureSource>, newElementId?: string }), + onCancel: () => void): BaseUIElement { + const self = this; + const confirmationMap = Minimap.createMiniMap({ + allowMoving: state.featureSwitchIsDebugging.data ?? false, + background: state.backgroundLayer + }) + confirmationMap.SetStyle("height: 20rem; overflow: hidden").SetClass("rounded-xl") + + // SHow all relevant data - including (eventually) the way of which the geometry will be replaced + new ShowDataMultiLayer({ + leafletMap: confirmationMap.leafletMap, + popup: undefined, + zoomToFeatures: true, + features: new StaticFeatureSource([feature], false), + state: state, + layers: state.filteredLayers + }) + + + action.getPreview().then(changePreview => { + new ShowDataLayer({ + leafletMap: confirmationMap.leafletMap, + popup: undefined, + zoomToFeatures: false, + features: changePreview, + state, + layerToShow: new LayerConfig(conflation_json, "all_known_layers", true) + }) + }) + + const tagsExplanation = new VariableUiElement(args.newTags.map(tagsToApply => { + const filteredTags = tagsToApply.filter(t => self.showRemovedTags || (t.value ?? "") !== "") + const tagsStr = new And(filteredTags).asHumanString(false, true, {}) + return Translations.t.general.add.import.importTags.Subs({tags: tagsStr}); + } + )).SetClass("subtle") + + const confirmButton = new SubtleButton(new Img(args.icon), new Combine([args.text, tagsExplanation]).SetClass("flex flex-col")) + confirmButton.onClick(async () => { + { + originalFeatureTags.data["_imported"] = "yes" + originalFeatureTags.ping() // will set isImported as per its definition + state.changes.applyAction(action) + state.selectedElement.setData(state.allElements.ContainingFeatures.get(action.newElementId ?? action.mainObjectId)) + + } + }) + + const cancel = new SubtleButton(Svg.close_ui(), Translations.t.general.cancel).onClick(onCancel) + return new Combine([confirmationMap, confirmButton, cancel]).SetClass("flex flex-col") + } + + protected parseArgs(argsRaw: string[], originalFeatureTags: UIEventSource<any>): { minzoom: string, max_snap_distance: string, snap_onto_layers: string, icon: string, text: string, tags: string, targetLayer: string, newTags: UIEventSource<Tag[]> } { + const baseArgs = Utils.ParseVisArgs(this.args, argsRaw) + if (originalFeatureTags !== undefined) { + + 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.debug("The import button is using tags from properties[" + tags + "] of this object, namely ", items) + baseArgs["newTags"] = TagApplyButton.generateTagsToApply(items, originalFeatureTags) + } else { + baseArgs["newTags"] = TagApplyButton.generateTagsToApply(tags, originalFeatureTags) + } + } + return baseArgs + } +} + +export class ConflateButton extends AbstractImportButton { + + constructor() { + super("conflate_button", "This button will modify the geometry of an existing OSM way to match the specified geometry. This can conflate OSM-ways with LineStrings and Polygons (only simple polygons with one single ring). An attempt is made to move points with special values to a decent new location (e.g. entrances)", + [{ + name: "way_to_conflate", + doc: "The key, of which the corresponding value is the id of the OSM-way that must be conflated; typically a calculatedTag" + }] + ); + } + + getLayerDependencies(argsRaw: string[]): string[] { + const deps = super.getLayerDependencies(argsRaw); + // Force 'type_node' as dependency + deps.push("type_node") + return deps; + } + + constructElement(state: FeaturePipelineState, + args: { max_snap_distance: string; snap_onto_layers: string; icon: string; text: string; tags: string; newTags: UIEventSource<Tag[]>; targetLayer: string }, + tagSource: UIEventSource<any>, guiState: DefaultGuiState, feature: any, onCancelClicked: () => void): BaseUIElement { + + const nodesMustMatch = args.snap_onto_layers?.split(";")?.map((tag, i) => TagUtils.Tag(tag, "TagsSpec for import button " + i)) + + const mergeConfigs = [] + if (nodesMustMatch !== undefined && nodesMustMatch.length > 0) { + const mergeConfig: MergePointConfig = { + mode: args["point_move_mode"] == "move_osm" ? "move_osm_point" : "reuse_osm_point", + ifMatches: new And(nodesMustMatch), + withinRangeOfM: Number(args.max_snap_distance) + } + mergeConfigs.push(mergeConfig) + } + + + const key = args["way_to_conflate"] + const wayToConflate = tagSource.data[key] + feature = GeoOperations.removeOvernoding(feature); + const action = new ReplaceGeometryAction( + state, + feature, + wayToConflate, + { + theme: state.layoutToUse.id, + newTags: args.newTags.data + } + ) + + return this.createConfirmPanelForWay( + state, + args, + feature, + tagSource, + action, + onCancelClicked + ) + } + + protected canBeImported(feature: any) { + return feature.geometry.type === "LineString" || (feature.geometry.type === "Polygon" && feature.geometry.coordinates.length === 1) + } + +} + +export class ImportWayButton extends AbstractImportButton implements AutoAction { + public readonly supportsAutoAction = true; + + constructor() { + super("import_way_button", + "This button will copy the data from an external dataset into OpenStreetMap", + [ + { + name: "snap_to_point_if", + doc: "Points with the given tags will be snapped to or moved", + }, + { + name: "max_snap_distance", + doc: "If the imported object is a LineString or (Multi)Polygon, already existing OSM-points will be reused to construct the geometry of the newly imported way", + defaultValue: "0.05" + }, + { + name: "move_osm_point_if", + doc: "Moves the OSM-point to the newly imported point if these conditions are met", + }, { + name: "max_move_distance", + doc: "If an OSM-point is moved, the maximum amount of meters it is moved. Capped on 20m", + defaultValue: "0.05" + }, { + name: "snap_onto_layers", + doc: "If no existing nearby point exists, but a line of a specified layer is closeby, snap to this layer instead", + + }, { + name: "snap_to_layer_max_distance", + doc: "Distance to distort the geometry to snap to this layer", + defaultValue: "0.1" + }], + false + ) + } + + async applyActionOn(state: { layoutToUse: LayoutConfig; changes: Changes, allElements: ElementStorage }, + originalFeatureTags: UIEventSource<any>, + argument: string[]): Promise<void> { + const id = originalFeatureTags.data.id; + if (AbstractImportButton.importedIds.has(originalFeatureTags.data.id) + ) { + return; + } + AbstractImportButton.importedIds.add(originalFeatureTags.data.id) + const args = this.parseArgs(argument, originalFeatureTags) + const feature = state.allElements.ContainingFeatures.get(id) + const mergeConfigs = this.GetMergeConfig(args); + const action = ImportWayButton.CreateAction( + feature, + args, + <FeaturePipelineState>state, + mergeConfigs + ) + await state.changes.applyAction(action) + } + + canBeImported(feature: any) { + const type = feature.geometry.type + return type === "LineString" || type === "Polygon" + } + + getLayerDependencies(argsRaw: string[]): string[] { + const deps = super.getLayerDependencies(argsRaw); + deps.push("type_node") + return deps + } + + constructElement(state, args, + originalFeatureTags, + guiState, + feature, + onCancel): BaseUIElement { + + + const geometry = feature.geometry + + if (!(geometry.type == "LineString" || geometry.type === "Polygon")) { + console.error("Invalid type to import", geometry.type) + return new FixedUiElement("Invalid geometry type:" + geometry.type).SetClass("alert") + } + + + // Upload the way to OSM + const mergeConfigs = this.GetMergeConfig(args); + let action = ImportWayButton.CreateAction(feature, args, state, mergeConfigs); + return this.createConfirmPanelForWay( + state, + args, + feature, + originalFeatureTags, + action, + onCancel + ) + + } + + private GetMergeConfig(args: { max_snap_distance: string; snap_onto_layers: string; icon: string; text: string; tags: string; newTags: UIEventSource<any>; targetLayer: string }) + : MergePointConfig[] { + const nodesMustMatch = args["snap_to_point_if"]?.split(";")?.map((tag, i) => TagUtils.Tag(tag, "TagsSpec for import button " + i)) + + const mergeConfigs = [] + if (nodesMustMatch !== undefined && nodesMustMatch.length > 0) { + const mergeConfig: MergePointConfig = { + mode: "reuse_osm_point", + ifMatches: new And(nodesMustMatch), + withinRangeOfM: Number(args.max_snap_distance) + } + mergeConfigs.push(mergeConfig) + } + + + const moveOsmPointIfTags = args["move_osm_point_if"]?.split(";")?.map((tag, i) => TagUtils.Tag(tag, "TagsSpec for import button " + i)) + + if (nodesMustMatch !== undefined && moveOsmPointIfTags.length > 0) { + const moveDistance = Math.min(20, Number(args["max_move_distance"])) + const mergeConfig: MergePointConfig = { + mode: "move_osm_point", + ifMatches: new And(moveOsmPointIfTags), + withinRangeOfM: moveDistance + } + mergeConfigs.push(mergeConfig) + } + + return mergeConfigs; + } + + private static CreateAction(feature, + args: { max_snap_distance: string; snap_onto_layers: string; icon: string; text: string; tags: string; newTags: UIEventSource<any>; targetLayer: string }, + state: FeaturePipelineState, + mergeConfigs: any[]) { + const coors = feature.geometry.coordinates + if ((feature.geometry.type === "Polygon" ) && coors.length > 1) { + const outer = coors[0] + const inner = [...coors] + inner.splice(0, 1) + return new CreateMultiPolygonWithPointReuseAction( + args.newTags.data, + outer, + inner, + state, + mergeConfigs, + "import" + ) + } else { + + return new CreateWayWithPointReuseAction( + args.newTags.data, + coors, + state, + mergeConfigs + ) + } + } +} + +export class ImportPointButton extends AbstractImportButton { + + constructor() { + super("import_button", + "This button will copy the point from an external dataset into OpenStreetMap", + [{ + name: "snap_onto_layers", + doc: "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" + }, + { + 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 + ) + } + + private static createConfirmPanelForPoint( + args: { max_snap_distance: string, snap_onto_layers: string, icon: string, text: string, newTags: UIEventSource<any>, targetLayer: string, note_id: string }, + state: FeaturePipelineState, + guiState: DefaultGuiState, + originalFeatureTags: UIEventSource<any>, + feature: any, + onCancel: () => void, + close: () => void): BaseUIElement { + + async function confirm(tags: any[], location: { lat: number, lon: number }, snapOntoWayId: string) { + + originalFeatureTags.data["_imported"] = "yes" + originalFeatureTags.ping() // will set isImported as per its definition + let snapOnto: OsmObject = undefined + if (snapOntoWayId !== undefined) { + snapOnto = await OsmObject.DownloadObjectAsync(snapOntoWayId) + } + let specialMotivation = undefined + + let note_id = args.note_id + if (args.note_id !== undefined && isNaN(Number(args.note_id))) { + note_id = originalFeatureTags.data[args.note_id] + specialMotivation = "source: https://osm.org/note/" + note_id + } + + const newElementAction = new CreateNewNodeAction(tags, location.lat, location.lon, { + theme: state.layoutToUse.id, + changeType: "import", + snapOnto: <OsmWay>snapOnto, + specialMotivation: specialMotivation + }) + + await state.changes.applyAction(newElementAction) + state.selectedElement.setData(state.allElements.ContainingFeatures.get( + newElementAction.newElementId + )) + if (note_id !== undefined) { + state.osmConnection.closeNote(note_id, "imported") + originalFeatureTags.data["closed_at"] = new Date().toISOString() + originalFeatureTags.ping() + } + } + + const presetInfo = <PresetInfo>{ + tags: args.newTags.data, + icon: () => new Img(args.icon), + layerToAddTo: state.filteredLayers.data.filter(l => l.layerDef.id === args.targetLayer)[0], + name: args.text, + title: Translations.WT(args.text), + preciseInput: { + snapToLayers: args.snap_onto_layers?.split(";"), + maxSnapDistance: Number(args.max_snap_distance) + }, + boundsFactor: 3 + } + + const [lon, lat] = feature.geometry.coordinates + return new ConfirmLocationOfPoint(state, guiState.filterViewIsOpened, presetInfo, Translations.W(args.text), { + lon, + lat + }, confirm, onCancel, close) + + } + + canBeImported(feature: any) { + return feature.geometry.type === "Point" + } + + getLayerDependencies(argsRaw: string[]): string[] { + const deps = super.getLayerDependencies(argsRaw); + const layerSnap = argsRaw["snap_onto_layers"] ?? "" + if (layerSnap === "") { + return deps + } + + deps.push(...layerSnap.split(";")) + return deps + } + + constructElement(state, args, + originalFeatureTags, + guiState, + feature, + onCancel: () => void): BaseUIElement { + + + const geometry = feature.geometry + + if (geometry.type === "Point") { + return new Lazy(() => ImportPointButton.createConfirmPanelForPoint( + args, + state, + guiState, + originalFeatureTags, + feature, + onCancel, + () => { + // Close the current popup + state.selectedElement.setData(undefined) + } + )) + } + + + console.error("Invalid type to import", geometry.type) + return new FixedUiElement("Invalid geometry type:" + geometry.type).SetClass("alert") + + } + + +} \ No newline at end of file diff --git a/UI/Popup/LoginButton.ts b/UI/Popup/LoginButton.ts new file mode 100644 index 0000000000..ecf859daf8 --- /dev/null +++ b/UI/Popup/LoginButton.ts @@ -0,0 +1,46 @@ +import {SubtleButton} from "../Base/SubtleButton"; +import BaseUIElement from "../BaseUIElement"; +import Svg from "../../Svg"; +import {OsmConnection} from "../../Logic/Osm/OsmConnection"; +import Toggle from "../Input/Toggle"; +import {VariableUiElement} from "../Base/VariableUIElement"; +import Loading from "../Base/Loading"; +import Translations from "../i18n/Translations"; + +class LoginButton extends SubtleButton { + + constructor(text: BaseUIElement | string, state: { + osmConnection: OsmConnection + }, icon?: BaseUIElement | string) { + super(icon ?? Svg.osm_logo_ui(), text); + this.onClick(() => { + state.osmConnection.AttemptLogin() + }) + } + +} + +export class LoginToggle extends VariableUiElement { + constructor(el, text: BaseUIElement | string, state: { + osmConnection: OsmConnection + }) { + const loading = new Loading("Trying to log in...") + const login = new LoginButton(text, state) + super( + state.osmConnection.loadingStatus.map(osmConnectionState => { + if(osmConnectionState === "loading"){ + return loading + } + if(osmConnectionState === "not-attempted"){ + return login + } + if(osmConnectionState === "logged-in"){ + return el + } + + // Error! + return new LoginButton(Translations.t.general.loginFailed, state, Svg.invalid_svg()) + }) + ) + } +} \ No newline at end of file diff --git a/UI/Popup/MoveWizard.ts b/UI/Popup/MoveWizard.ts index b86a559376..6ed7d06575 100644 --- a/UI/Popup/MoveWizard.ts +++ b/UI/Popup/MoveWizard.ts @@ -18,6 +18,7 @@ import LayoutConfig from "../../Models/ThemeConfig/LayoutConfig"; import MoveConfig from "../../Models/ThemeConfig/MoveConfig"; import {ElementStorage} from "../../Logic/ElementStorage"; import AvailableBaseLayers from "../../Logic/Actors/AvailableBaseLayers"; +import BaseLayer from "../../Models/BaseLayer"; interface MoveReason { text: Translation | string, @@ -84,14 +85,14 @@ export default class MoveWizard extends Toggle { const reason = reasons[0] moveReason.setData(reason) moveButton = new SubtleButton( - reason.icon.SetStyle("height: 1.5rem; width: auto;"), + reason.icon.SetStyle("height: 1.5rem; width: 1.5rem;"), Translations.WT(reason.invitingText) ).onClick(() => { currentStep.setData("pick_location") }) } else { moveButton = new SubtleButton( - Svg.move_ui().SetStyle("height: 1.5rem; width: auto"), + Svg.move_ui().SetStyle("width: 1.5rem; height: 1.5rem"), t.inviteToMove.generic ).onClick(() => { currentStep.setData("reason") @@ -133,10 +134,12 @@ export default class MoveWizard extends Toggle { background = reason.background } + const preferredBackground = AvailableBaseLayers.SelectBestLayerAccordingTo(loc, new UIEventSource(background)).data const locationInput = new LocationInput({ minZoom: reason.minZoom, centerLocation: loc, - mapBackground: AvailableBaseLayers.SelectBestLayerAccordingTo(loc, new UIEventSource(background)) + mapBackground: new UIEventSource<BaseLayer>(preferredBackground) // We detach the layer + }) if (reason.lockBounds) { diff --git a/UI/Popup/NewNoteUi.ts b/UI/Popup/NewNoteUi.ts new file mode 100644 index 0000000000..71fe2d7b9e --- /dev/null +++ b/UI/Popup/NewNoteUi.ts @@ -0,0 +1,120 @@ +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<boolean>, + state: { + LastClickLocation: UIEventSource<{ lat: number, lon: number }>, + osmConnection: OsmConnection, + layoutToUse: LayoutConfig, + featurePipeline: FeaturePipeline, + selectedElement: UIEventSource<any> + }) { + + const t = Translations.t.notes; + const isCreated = new UIEventSource(false); + state.LastClickLocation.addCallbackAndRun(_ => isCreated.setData(false)) // Reset 'isCreated' on every click + const text = ValidatedTextField.ForType("text").ConstructInputElement({ + 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; + const id = await state?.osmConnection?.openNote(loc.lat, loc.lon, txt) + const feature = { + type:"Feature", + geometry:{ + type:"Point", + coordinates: [loc.lon, loc.lat] + }, + properties: { + id: ""+id.id, + date_created: new Date().toISOString(), + _first_comment : txt, + comments:JSON.stringify( [{ + text: txt, + html: txt, + user: state.osmConnection?.userDetails?.data?.name, + uid: state.osmConnection?.userDetails?.data?.uid + }]), + }, + }; + state?.featurePipeline?.InjectNewPoint(feature) + state.selectedElement?.setData(feature) + text.GetValue().setData("") + isCreated.setData(true) + }) + const createNoteDialog = new Combine([ + new Title(t.createNoteTitle), + t.createNoteIntro, + text, + new Combine([new Toggle(undefined, t.warnAnonymous.SetClass("alert"), state?.osmConnection?.isLoggedIn), + new Toggle(postNote, + t.textNeeded.SetClass("alert"), + text.GetValue().map(txt => txt.length > 3) + ) + + ]).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<boolean>(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..effb794e74 --- /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.speech_bubble_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<BaseUIElement[]>(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<any>, 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 '<a href="' + url + '">' + url + '</a>'; + }) + + 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..fcc92ead41 100644 --- a/UI/Popup/QuestionBox.ts +++ b/UI/Popup/QuestionBox.ts @@ -16,7 +16,7 @@ export default class QuestionBox extends VariableUiElement { public readonly skippedQuestions: UIEventSource<number[]>; public readonly restingQuestions: UIEventSource<BaseUIElement[]>; - constructor(options: { + constructor(state, options: { tagsSource: UIEventSource<any>, tagRenderings: TagRenderingConfig[], units: Unit[], showAllQuestionsAtOnce?: boolean | UIEventSource<boolean> @@ -34,7 +34,7 @@ export default class QuestionBox extends VariableUiElement { const tagRenderingQuestions = tagRenderings .map((tagRendering, i) => - new Lazy(() => new TagRenderingQuestion(tagsSource, tagRendering, + new Lazy(() => new TagRenderingQuestion(tagsSource, tagRendering, state, { units: units, afterSave: () => { @@ -42,7 +42,7 @@ export default class QuestionBox extends VariableUiElement { skippedQuestions.ping(); }, cancelButton: Translations.t.general.skip.Clone() - .SetClass("btn btn-secondary mr-3") + .SetClass("btn btn-secondary") .onClick(() => { skippedQuestions.data.push(i); skippedQuestions.ping(); @@ -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<BaseUIElement[]> = tagsSource.map(tags => { if (tags === undefined) { return []; diff --git a/UI/Popup/SplitRoadWizard.ts b/UI/Popup/SplitRoadWizard.ts index 7a534ca8bc..8ae8b01588 100644 --- a/UI/Popup/SplitRoadWizard.ts +++ b/UI/Popup/SplitRoadWizard.ts @@ -3,7 +3,6 @@ import Svg from "../../Svg"; import {UIEventSource} from "../../Logic/UIEventSource"; import {SubtleButton} from "../Base/SubtleButton"; import Minimap from "../Base/Minimap"; -import State from "../../State"; import ShowDataLayer from "../ShowDataLayer/ShowDataLayer"; import {GeoOperations} from "../../Logic/GeoOperations"; import {LeafletMouseEvent} from "leaflet"; @@ -16,19 +15,17 @@ import StaticFeatureSource from "../../Logic/FeatureSource/Sources/StaticFeature 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" +import {OsmConnection} from "../../Logic/Osm/OsmConnection"; +import {Changes} from "../../Logic/Osm/Changes"; +import LayoutConfig from "../../Models/ThemeConfig/LayoutConfig"; +import {ElementStorage} from "../../Logic/ElementStorage"; +import BaseLayer from "../../Models/BaseLayer"; +import FilteredLayer from "../../Models/FilteredLayer"; export default class SplitRoadWizard extends Toggle { - private static splitLayerStyling = new LayerConfig({ - id: "splitpositions", - source: {osmTags: "_cutposition=yes"}, - mapRendering: [ - { - location: ["point", "centroid"], - icon: {render: "circle:white;./assets/svg/scissors.svg"}, - iconSize: {render: "30,30,center"} - } - ], - }, "(BUILTIN) SplitRoadWizard.ts", true) + // @ts-ignore + private static splitLayerStyling = new LayerConfig(split_point, "(BUILTIN) SplitRoadWizard.ts", true) public dialogIsOpened: UIEventSource<boolean> @@ -36,8 +33,20 @@ export default class SplitRoadWizard extends Toggle { * A UI Element used for splitting roads * * @param id: The id of the road to remove + * @param state: the state of the application */ - constructor(id: string) { + constructor(id: string, state: { + filteredLayers: UIEventSource<FilteredLayer[]>; + backgroundLayer: UIEventSource<BaseLayer>; + featureSwitchIsTesting: UIEventSource<boolean>; + featureSwitchIsDebugging: UIEventSource<boolean>; + featureSwitchShowAllQuestions: UIEventSource<boolean>; + osmConnection: OsmConnection, + featureSwitchUserbadge: UIEventSource<boolean>, + changes: Changes, + layoutToUse: LayoutConfig, + allElements: ElementStorage + }) { const t = Translations.t.split; @@ -49,12 +58,12 @@ export default class SplitRoadWizard extends Toggle { // Toggle variable between show split button and map const splitClicked = new UIEventSource<boolean>(false); // Load the road with given id on the minimap - const roadElement = State.state.allElements.ContainingFeatures.get(id) + const roadElement = state.allElements.ContainingFeatures.get(id) // Minimap on which you can select the points to be splitted const miniMap = Minimap.createMiniMap( { - background: State.state.backgroundLayer, + background: state.backgroundLayer, allowMoving: true, leafletOptions: { minZoom: 14 @@ -68,22 +77,24 @@ export default class SplitRoadWizard extends Toggle { // Define how a cut is displayed on the map // Datalayer displaying the road and the cut points (if any) + new ShowDataMultiLayer({ + features: new StaticFeatureSource([roadElement], false), + layers: state.filteredLayers, + leafletMap: miniMap.leafletMap, + popup: undefined, + zoomToFeatures: true, + state + }) + new ShowDataLayer({ features: new StaticFeatureSource(splitPoints, true), leafletMap: miniMap.leafletMap, zoomToFeatures: false, - enablePopups: false, + popup: undefined, layerToShow: SplitRoadWizard.splitLayerStyling, + state }) - new ShowDataMultiLayer({ - features: new StaticFeatureSource([roadElement], false), - layers: State.state.filteredLayers, - leafletMap: miniMap.leafletMap, - enablePopups: false, - zoomToFeatures: true, - allElements: State.state.allElements, - }) /** * Handles a click on the overleaf map. @@ -96,7 +107,7 @@ export default class SplitRoadWizard extends Toggle { .filter(p => GeoOperations.distanceBetween(p[0].geometry.coordinates, coordinates) < 5) .map(p => p[1]) .sort((a, b) => a - b) - .reverse() + .reverse(/*Copy/derived list, inplace reverse is fine*/) if (points.length > 0) { for (const point of points) { splitPoints.data.splice(point, 1) @@ -109,10 +120,8 @@ export default class SplitRoadWizard extends Toggle { const pointOnRoad = GeoOperations.nearestPoint(roadElement, coordinates); // pointOnRoad is a geojson // Update point properties to let it match the layer - pointOnRoad.properties._cutposition = "yes"; + pointOnRoad.properties["_split_point"] = "yes"; - // let the state remember the point, to be able to retrieve it later by id - State.state.allElements.addOrGetElement(pointOnRoad); // Add it to the list of all points and notify observers splitPoints.data.push({feature: pointOnRoad, freshness: new Date()}); // show the point on the data layer @@ -135,15 +144,15 @@ export default class SplitRoadWizard extends Toggle { // Only show the splitButton if logged in, else show login prompt const loginBtn = t.loginToSplit.Clone() - .onClick(() => State.state.osmConnection.AttemptLogin()) + .onClick(() => state.osmConnection.AttemptLogin()) .SetClass("login-button-friendly"); - const splitToggle = new Toggle(splitButton, loginBtn, State.state.osmConnection.isLoggedIn) + const splitToggle = new Toggle(splitButton, loginBtn, state.osmConnection.isLoggedIn) // Save button const saveButton = new Button(t.split.Clone(), () => { hasBeenSplit.setData(true) - State.state.changes.applyAction(new SplitAction(id, splitPoints.data.map(ff => ff.feature.geometry.coordinates), { - theme: State.state?.layoutToUse?.id + state.changes.applyAction(new SplitAction(id, splitPoints.data.map(ff => ff.feature.geometry.coordinates), { + theme: state?.layoutToUse?.id })) }) diff --git a/UI/Popup/TagApplyButton.ts b/UI/Popup/TagApplyButton.ts new file mode 100644 index 0000000000..6bd8e774ba --- /dev/null +++ b/UI/Popup/TagApplyButton.ts @@ -0,0 +1,140 @@ +import {AutoAction} from "./AutoApplyButton"; +import Translations from "../i18n/Translations"; +import {VariableUiElement} from "../Base/VariableUIElement"; +import BaseUIElement from "../BaseUIElement"; +import {FixedUiElement} from "../Base/FixedUiElement"; +import {UIEventSource} from "../../Logic/UIEventSource"; +import {SubtleButton} from "../Base/SubtleButton"; +import Combine from "../Base/Combine"; +import ChangeTagAction from "../../Logic/Osm/Actions/ChangeTagAction"; +import {And} from "../../Logic/Tags/And"; +import Toggle from "../Input/Toggle"; +import {Utils} from "../../Utils"; +import {Tag} from "../../Logic/Tags/Tag"; +import FeaturePipelineState from "../../Logic/State/FeaturePipelineState"; +import LayoutConfig from "../../Models/ThemeConfig/LayoutConfig"; +import {Changes} from "../../Logic/Osm/Changes"; + +export default class TagApplyButton implements AutoAction { + public readonly funcName = "tag_apply"; + public readonly docs = "Shows a big button; clicking this button will apply certain tags onto the feature.\n\nThe first argument takes a specification of which tags to add.\n" + Utils.Special_visualizations_tagsToApplyHelpText; + public readonly supportsAutoAction = true; + public readonly args = [ + { + name: "tags_to_apply", + doc: "A specification of the tags to apply" + }, + { + name: "message", + doc: "The text to show to the contributor" + }, + { + name: "image", + doc: "An image to show to the contributor on the button" + }, + { + name: "id_of_object_to_apply_this_one", + defaultValue: undefined, + doc: "If specified, applies the the tags onto _another_ object. The id will be read from properties[id_of_object_to_apply_this_one] of the selected object. The tags are still calculated based on the tags of the _selected_ element" + } + ]; + public readonly example = "`{tag_apply(survey_date=$_now:date, Surveyed today!)}`, `{tag_apply(addr:street=$addr:street, Apply the address, apply_icon.svg, _closest_osm_id)"; + + public static generateTagsToApply(spec: string, tagSource: UIEventSource<any>): UIEventSource<Tag[]> { + + const tgsSpec = spec.split(";").map(spec => { + const kv = spec.split("=").map(s => s.trim()); + if (kv.length != 2) { + throw "Invalid key spec: multiple '=' found in " + spec + } + return kv + }) + + for (const spec of tgsSpec) { + if (spec[0].endsWith(':')) { + throw "A tag specification for import or apply ends with ':'. The theme author probably wrote key:=otherkey instead of key=$otherkey" + } + } + + return tagSource.map(tags => { + const newTags: Tag [] = [] + for (const [key, value] of tgsSpec) { + if (value.indexOf('$') >= 0) { + + let parts = value.split("$") + // THe first of the split won't start with a '$', so no substitution needed + let actualValue = parts[0] + parts.shift() + + for (const part of parts) { + const [_, varName, leftOver] = part.match(/([a-zA-Z0-9_:]*)(.*)/) + actualValue += (tags[varName] ?? "") + leftOver + } + newTags.push(new Tag(key, actualValue)) + } else { + newTags.push(new Tag(key, value)) + } + } + return newTags + }) + + } + + async applyActionOn(state: { + layoutToUse: LayoutConfig, + changes: Changes + }, tags: UIEventSource<any>, args: string[]): Promise<void> { + const tagsToApply = TagApplyButton.generateTagsToApply(args[0], tags) + const targetIdKey = args[3] + + const targetId = tags.data[targetIdKey] ?? tags.data.id + const changeAction = new ChangeTagAction(targetId, + new And(tagsToApply.data), + tags.data, // We pass in the tags of the selected element, not the tags of the target element! + { + theme: state.layoutToUse.id, + changeType: "answer" + } + ) + await state.changes.applyAction(changeAction) + } + + public constr(state: FeaturePipelineState, tags: UIEventSource<any>, args: string[]): BaseUIElement { + const tagsToApply = TagApplyButton.generateTagsToApply(args[0], tags) + const msg = args[1] + let image = args[2]?.trim() + if (image === "" || image === "undefined") { + image = undefined + } + const targetIdKey = args[3] + const t = Translations.t.general.apply_button + + const tagsExplanation = new VariableUiElement(tagsToApply.map(tagsToApply => { + const tagsStr = tagsToApply.map(t => t.asHumanString(false, true)).join("&"); + let el: BaseUIElement = new FixedUiElement(tagsStr) + if (targetIdKey !== undefined) { + const targetId = tags.data[targetIdKey] ?? tags.data.id + el = t.appliedOnAnotherObject.Subs({tags: tagsStr, id: targetId}) + } + return el; + } + )).SetClass("subtle") + const self = this + const applied = new UIEventSource(false) + const applyButton = new SubtleButton(image, new Combine([msg, tagsExplanation]).SetClass("flex flex-col")) + .onClick(() => { + self.applyActionOn(state, tags, args) + applied.setData(true) + }) + + + return new Toggle( + new Toggle( + t.isApplied.SetClass("thanks"), + applyButton, + applied + ), + undefined, state.osmConnection.isLoggedIn) + } +} + \ No newline at end of file diff --git a/UI/Popup/TagRenderingAnswer.ts b/UI/Popup/TagRenderingAnswer.ts index c7724b5389..ffedccefc0 100644 --- a/UI/Popup/TagRenderingAnswer.ts +++ b/UI/Popup/TagRenderingAnswer.ts @@ -5,6 +5,8 @@ import {VariableUiElement} from "../Base/VariableUIElement"; import List from "../Base/List"; import {SubstitutedTranslation} from "../SubstitutedTranslation"; import TagRenderingConfig from "../../Models/ThemeConfig/TagRenderingConfig"; +import Combine from "../Base/Combine"; +import Img from "../Base/Img"; /*** * Displays the correct value for a known tagrendering @@ -12,9 +14,10 @@ import TagRenderingConfig from "../../Models/ThemeConfig/TagRenderingConfig"; export default class TagRenderingAnswer extends VariableUiElement { constructor(tagsSource: UIEventSource<any>, configuration: TagRenderingConfig, - contentClasses: string = "", contentStyle: string = "", options?:{ - specialViz: Map<string, BaseUIElement> - }) { + state: any, + contentClasses: string = "", contentStyle: string = "", options?: { + specialViz: Map<string, BaseUIElement> + }) { if (configuration === undefined) { throw "Trying to generate a tagRenderingAnswer without configuration..." } @@ -37,11 +40,17 @@ 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 => { + const text = new SubstitutedTranslation(tr.then, tagsSource, state, options?.specialViz); + if(tr.icon === undefined){ + return text + } + return new Combine([new Img(tr.icon).SetClass("mapping-icon-"+(tr.iconClass ?? "small")), text]).SetClass("flex items-center") + }) if (valuesToRender.length === 1) { return valuesToRender[0]; } else if (valuesToRender.length > 1) { - return new List(valuesToRender) + return new Combine(valuesToRender).SetClass("flex flex-col") } return undefined; }).map((element: BaseUIElement) => element?.SetClass(contentClasses)?.SetStyle(contentStyle))) diff --git a/UI/Popup/TagRenderingQuestion.ts b/UI/Popup/TagRenderingQuestion.ts index 9c0c530ab6..db6271a1e7 100644 --- a/UI/Popup/TagRenderingQuestion.ts +++ b/UI/Popup/TagRenderingQuestion.ts @@ -8,7 +8,6 @@ import {Utils} from "../../Utils"; import CheckBoxes from "../Input/Checkboxes"; import InputElementMap from "../Input/InputElementMap"; import {SaveButton} from "./SaveButton"; -import State from "../../State"; import {VariableUiElement} from "../Base/VariableUIElement"; import Translations from "../i18n/Translations"; import {FixedUiElement} from "../Base/FixedUiElement"; @@ -27,6 +26,9 @@ import TagRenderingConfig from "../../Models/ThemeConfig/TagRenderingConfig"; import {Unit} from "../../Models/Unit"; import VariableInputElement from "../Input/VariableInputElement"; import Toggle from "../Input/Toggle"; +import Img from "../Base/Img"; +import FeaturePipelineState from "../../Logic/State/FeaturePipelineState"; +import Title from "../Base/Title"; /** * Shows the question element. @@ -36,6 +38,7 @@ export default class TagRenderingQuestion extends Combine { constructor(tags: UIEventSource<any>, configuration: TagRenderingConfig, + state, options?: { units?: Unit[], afterSave?: () => void, @@ -71,23 +74,25 @@ 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) - .SetClass("question-text"); + const question = new Title(new SubstitutedTranslation(configuration.question, tags, state) + .SetClass("question-text"), 3); + const feedback = new UIEventSource<Translation>(undefined) const inputElement: InputElement<TagsFilter> = new VariableInputElement(applicableMappingsSrc.map(applicableMappings => - TagRenderingQuestion.GenerateInputElement(configuration, applicableMappings, applicableUnit, tags) + TagRenderingQuestion.GenerateInputElement(state, configuration, applicableMappings, applicableUnit, tags, feedback) )) + const save = () => { const selection = inputElement.GetValue().data; if (selection) { - (State.state?.changes) + (state?.changes) .applyAction(new ChangeTagAction( tags.data.id, selection, tags.data, { - theme: State.state?.layoutToUse?.id ?? "unkown", + theme: state?.layoutToUse?.id ?? "unkown", changeType: "answer", } )).then(_ => { @@ -101,13 +106,12 @@ export default class TagRenderingQuestion extends Combine { if (options.saveButtonConstr === undefined) { options.saveButtonConstr = v => new SaveButton(v, - State.state?.osmConnection) + state?.osmConnection) .onClick(save) } const saveButton = new Combine([ options.saveButtonConstr(inputElement.GetValue()), - new Toggle(Translations.t.general.testing.SetClass("alert"), undefined, State.state.featureSwitchIsTesting) ]) let bottomTags: BaseUIElement; @@ -117,7 +121,7 @@ export default class TagRenderingQuestion extends Combine { bottomTags = new VariableUiElement( inputElement.GetValue().map( (tagsFilter: TagsFilter) => { - const csCount = State.state?.osmConnection?.userDetails?.data?.csCount ?? 1000; + const csCount = state?.osmConnection?.userDetails?.data?.csCount ?? 1000; if (csCount < Constants.userJourney.tagsVisibleAt) { return ""; } @@ -136,29 +140,37 @@ export default class TagRenderingQuestion extends Combine { super([ question, inputElement, - options.cancelButton, - saveButton, - bottomTags]) + new Combine([ + new VariableUiElement(feedback.map(t => t?.SetStyle("padding-left: 0.75rem; padding-right: 0.75rem")?.SetClass("alert flex") ?? bottomTags)), + new Combine([ + new Combine([options.cancelButton]), + saveButton]).SetClass("flex justify-end flex-wrap-reverse") + + ]).SetClass("flex mt-2 justify-between"), + new Toggle(Translations.t.general.testing.SetClass("alert"), undefined, state.featureSwitchIsTesting) + ]) this.SetClass("question disable-links") } - private static GenerateInputElement(configuration: TagRenderingConfig, - applicableMappings: { if: TagsFilter, then: any, ifnot?: TagsFilter, addExtraTags: Tag[] }[], - applicableUnit: Unit, - tagsSource: UIEventSource<any>) - : InputElement<TagsFilter> { + private static GenerateInputElement( + state, + configuration: TagRenderingConfig, + applicableMappings: { if: TagsFilter, then: any, ifnot?: TagsFilter, addExtraTags: Tag[] }[], + applicableUnit: Unit, + tagsSource: UIEventSource<any>, + feedback: UIEventSource<Translation> + ): InputElement<TagsFilter> { // FreeForm input will be undefined if not present; will already contain a special input element if applicable - const ff = TagRenderingQuestion.GenerateFreeform(configuration, applicableUnit, tagsSource); + const ff = TagRenderingQuestion.GenerateFreeform(state, configuration, applicableUnit, tagsSource, feedback); - - const hasImages = applicableMappings.filter(mapping => mapping.then.ExtractImages().length > 0).length > 0 + + const hasImages = applicableMappings.findIndex(mapping => mapping.then.icon !== undefined) >= 0 let inputEls: InputElement<TagsFilter>[]; - const ifNotsPresent = applicableMappings.some(mapping => mapping.ifnot !== undefined) function allIfNotsExcept(excludeIndex: number): TagsFilter[] { @@ -188,7 +200,7 @@ export default class TagRenderingQuestion extends Combine { if (applicableMappings.length < 8 || configuration.multiAnswer || hasImages || ifNotsPresent) { - inputEls = (applicableMappings ?? []).map((mapping, i) => TagRenderingQuestion.GenerateMappingElement(tagsSource, mapping, allIfNotsExcept(i))); + inputEls = (applicableMappings ?? []).map((mapping, i) => TagRenderingQuestion.GenerateMappingElement(state, tagsSource, mapping, allIfNotsExcept(i))); inputEls = Utils.NoNull(inputEls); } else { const dropdown: InputElement<TagsFilter> = new DropDown("", @@ -336,11 +348,14 @@ export default class TagRenderingQuestion extends Combine { * Returns: [the element itself, the value to select if not selected. The contents of this UIEventSource might swap to undefined if the conditions to show the answer are unmet] */ private static GenerateMappingElement( + state, tagsSource: UIEventSource<any>, mapping: { if: TagsFilter, then: Translation, - addExtraTags: Tag[] + addExtraTags: Tag[], + icon?: string, + iconClass?: string }, ifNot?: TagsFilter[]): InputElement<TagsFilter> { let tagging: TagsFilter = mapping.if; @@ -351,13 +366,27 @@ export default class TagRenderingQuestion extends Combine { tagging = new And([tagging, ...mapping.addExtraTags]) } + return new FixedInputElement( - new SubstitutedTranslation(mapping.then, tagsSource), + TagRenderingQuestion.GenerateMappingContent(mapping, tagsSource, state), tagging, (t0, t1) => t1.isEquivalent(t0)); } - private static GenerateFreeform(configuration: TagRenderingConfig, applicableUnit: Unit, tags: UIEventSource<any>): InputElement<TagsFilter> { + private static GenerateMappingContent(mapping: { + then: Translation, + icon?: string, + iconClass?: string + }, tagsSource: UIEventSource<any>, state: FeaturePipelineState): BaseUIElement { + const text = new SubstitutedTranslation(mapping.then, tagsSource, state) + if (mapping.icon === undefined) { + return text; + } + return new Combine([new Img(mapping.icon).SetClass("mapping-icon-"+(mapping.iconClass ?? "small")), text]).SetClass("flex") + } + + private static GenerateFreeform(state, configuration: TagRenderingConfig, applicableUnit: Unit, tags: UIEventSource<any>, feedback: UIEventSource<Translation>) + : InputElement<TagsFilter> { const freeform = configuration.freeform; if (freeform === undefined) { return undefined; @@ -368,6 +397,9 @@ export default class TagRenderingQuestion extends Combine { if (string === "" || string === undefined) { return undefined; } + if (string.length >= 255) { + return undefined + } const tag = new Tag(freeform.key, string); @@ -397,18 +429,25 @@ export default class TagRenderingQuestion extends Combine { } const tagsData = tags.data; - const feature = State.state.allElements.ContainingFeatures.get(tagsData.id) - const input: InputElement<string> = ValidatedTextField.InputForType(configuration.freeform.type, { - isValid: (str) => (str.length <= 255), + const feature = state.allElements.ContainingFeatures.get(tagsData.id) + const input: InputElement<string> = ValidatedTextField.ForType(configuration.freeform.type).ConstructInputElement({ country: () => tagsData._country, location: [tagsData._lat, tagsData._lon], - mapBackgroundLayer: State.state.backgroundLayer, + mapBackgroundLayer: state.backgroundLayer, unit: applicableUnit, args: configuration.freeform.helperArgs, - feature: feature + feature, + placeholder: configuration.freeform.placeholder, + feedback }); - + input.GetValue().setData(tagsData[freeform.key] ?? freeform.default); + + input.GetValue().addCallbackD(v => { + if(v.length >= 255){ + feedback.setData(Translations.t.validation.tooLong.Subs({count: v.length})) + } + }) let inputTagsFilter: InputElement<TagsFilter> = new InputElementMap( input, (a, b) => a === b || (a?.isEquivalent(b) ?? false), @@ -418,7 +457,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) inputTagsFilter.SetClass("block") } diff --git a/UI/ProfessionalGui.ts b/UI/ProfessionalGui.ts new file mode 100644 index 0000000000..d4a0196bfe --- /dev/null +++ b/UI/ProfessionalGui.ts @@ -0,0 +1,112 @@ +import {FixedUiElement} from "./Base/FixedUiElement"; +import Translations from "./i18n/Translations"; +import Combine from "./Base/Combine"; +import Title from "./Base/Title"; +import Toggleable, {Accordeon} from "./Base/Toggleable"; +import List from "./Base/List"; +import BaseUIElement from "./BaseUIElement"; +import LanguagePicker from "./LanguagePicker"; +import TableOfContents from "./Base/TableOfContents"; +import LeftIndex from "./Base/LeftIndex"; + +class Snippet extends Toggleable { + constructor(translations, ...extraContent: BaseUIElement[]) { + super( + new Title(translations.title, 3), + new SnippetContent(translations, ...extraContent) + ) + } +} + + +class SnippetContent extends Combine { + constructor(translations: any, ...extras: BaseUIElement[]) { + super([ + translations.intro, + new List([ + translations.li0, + translations.li1, + translations.li2, + translations.li3, + translations.li4, + translations.li5, + translations.li6, + ]), + translations.outro, + ...extras + ]) + this.SetClass("flex flex-col") + } +} + +class ProfessionalGui extends LeftIndex { + + + constructor() { + const t = Translations.t.professional + + + const header = new Combine([ + new FixedUiElement(`<img class="w-12 h-12 sm:h-24 sm:w-24" src="./assets/svg/logo.svg" alt="MapComplete Logo">`) + .SetClass("flex-none m-3"), + new Combine([ + new Title(t.title, 1), + t.intro + ]).SetClass("flex flex-col") + ]).SetClass("flex") + + const content = new Combine([ + header, + new Title(t.osmTitle, 2), + t.text0, + t.text1, + new Accordeon([ + new Snippet(t.aboutOsm.aboutOsm), + new Snippet(t.aboutOsm.benefits), + new Snippet(t.aboutOsm.license), + new Snippet(t.aboutOsm.vandalism), + ]).SetClass("flex flex-col"), + + new Title(t.aboutMc.title, 2), + t.aboutMc.text0, + t.aboutMc.text1, + t.aboutMc.text2, + new Accordeon([ + new Snippet(t.aboutMc.layers), + new Snippet(t.aboutMc.survey), + new Snippet(t.aboutMc.internalUse), + new Snippet(t.services) + ]), + new Title(t.drawbacks.title, 2).SetClass("text-2xl"), + t.drawbacks.intro, + new Accordeon([ + new Snippet(t.drawbacks.unsuitedData), + new Snippet(t.drawbacks.licenseNuances, + new Title(t.drawbacks.licenseNuances.usecaseMapDifferentSources.title, 4), + new SnippetContent(t.drawbacks.licenseNuances.usecaseMapDifferentSources), + new Title(t.drawbacks.licenseNuances.usecaseGatheringOpenData.title, 4), + new SnippetContent(t.drawbacks.licenseNuances.usecaseGatheringOpenData) + ) + ]), + + ]).SetClass("flex flex-col pb-12 m-3 lg:w-3/4 lg:ml-10 link-underline") + + + const leftContents: BaseUIElement[] = [ + new TableOfContents(content, { + noTopLevel: true, + maxDepth: 2 + }).SetClass("subtle"), + + LanguagePicker.CreateLanguagePicker(Translations.t.professional.title.SupportedLanguages())?.SetClass("mt-4 self-end flex-col"), + ].map(el => el?.SetClass("pl-4")) + + super(leftContents, content) + + } + + +} + +new FixedUiElement("").AttachTo("decoration-desktop") +new ProfessionalGui().AttachTo("main") \ No newline at end of file diff --git a/UI/QueryParameterDocumentation.ts b/UI/QueryParameterDocumentation.ts new file mode 100644 index 0000000000..017ac5b775 --- /dev/null +++ b/UI/QueryParameterDocumentation.ts @@ -0,0 +1,40 @@ +import BaseUIElement from "./BaseUIElement"; +import Combine from "./Base/Combine"; +import Title from "./Base/Title"; +import List from "./Base/List"; +import Translations from "./i18n/Translations"; +import {QueryParameters} from "../Logic/Web/QueryParameters"; + +export default class QueryParameterDocumentation { + + private static QueryParamDocsIntro = ([ + new Title("URL-parameters and URL-hash", 1), + "This document gives an overview of which URL-parameters can be used to influence MapComplete.", + new Title("What is a URL parameter?", 2), + "\"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: ", + new List([ + "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" + ].map(s => Translations.W(s)) + ), + "Finally, the URL-hash is the part after the `#`. It is `node/1234` in this case." + ]) + + public static GenerateQueryParameterDocs(): BaseUIElement { + const docs: (string | BaseUIElement)[] = [...QueryParameterDocumentation.QueryParamDocsIntro]; + for (const key in QueryParameters.documentation) { + const c = new Combine([ + new Title(key, 2), + QueryParameters.documentation[key], + QueryParameters.defaults[key] === undefined ? "No default value set" : `The default value is _${QueryParameters.defaults[key]}_` + + ]) + docs.push(c) + } + return new Combine(docs).SetClass("flex flex-col") + } +} \ No newline at end of file diff --git a/UI/ShowDataLayer/ShowDataLayer.ts b/UI/ShowDataLayer/ShowDataLayer.ts index f306cadf23..bd9d6490e7 100644 --- a/UI/ShowDataLayer/ShowDataLayer.ts +++ b/UI/ShowDataLayer/ShowDataLayer.ts @@ -1,9 +1,9 @@ import {UIEventSource} from "../../Logic/UIEventSource"; import LayerConfig from "../../Models/ThemeConfig/LayerConfig"; -import FeatureInfoBox from "../Popup/FeatureInfoBox"; import {ShowDataLayerOptions} from "./ShowDataLayerOptions"; import {ElementStorage} from "../../Logic/ElementStorage"; import RenderingMultiPlexerFeatureSource from "../../Logic/FeatureSource/Sources/RenderingMultiPlexerFeatureSource"; +import ScrollableFullScreen from "../Base/ScrollableFullScreen"; /* // import 'leaflet-polylineoffset'; We don't actually import it here. It is imported in the 'MinimapImplementation'-class, which'll result in a patched 'L' object. @@ -29,6 +29,11 @@ export default class ShowDataLayer { // Used to generate a fresh ID when needed private _cleanCount = 0; private geoLayer = undefined; + + /** + * A collection of functions to call when the current geolayer is unregistered + */ + private unregister: (() => void)[] = []; private isDirty = false; /** * If the selected element triggers, this is used to lookup the correct layer and to open the popup @@ -39,12 +44,12 @@ export default class ShowDataLayer { */ private readonly leafletLayersPerId = new Map<string, { feature: any, leafletlayer: any }>() private readonly showDataLayerid: number; + private readonly createPopup: (tags: any, layer: LayerConfig) => ScrollableFullScreen constructor(options: ShowDataLayerOptions & { layerToShow: LayerConfig }) { this._leafletMap = options.leafletMap; this.showDataLayerid = ShowDataLayer.dataLayerIds; ShowDataLayer.dataLayerIds++ - this._enablePopups = options.enablePopups ?? true; if (options.features === undefined) { console.error("Invalid ShowDataLayer invocation: options.features is undefed") throw "Invalid ShowDataLayer invocation: options.features is undefed" @@ -52,29 +57,41 @@ export default class ShowDataLayer { this._features = new RenderingMultiPlexerFeatureSource(options.features, options.layerToShow); this._layerToShow = options.layerToShow; this._selectedElement = options.selectedElement - this.allElements = options.allElements; + this.allElements = options.state?.allElements; + this.createPopup = undefined; + this._enablePopups = options.popup !== undefined; + if (options.popup !== undefined) { + this.createPopup = options.popup + } const self = this; options.leafletMap.addCallback(_ => { - self.update(options) + return self.update(options) } ); this._features.features.addCallback(_ => self.update(options)); options.doShowLayer?.addCallback(doShow => { const mp = options.leafletMap.data; + if (mp === null) { + self.Destroy() + return true; + } if (mp == undefined) { return; } + if (doShow) { if (self.isDirty) { - self.update(options) + return self.update(options) } else { mp.addLayer(this.geoLayer) } } else { if (this.geoLayer !== undefined) { mp.removeLayer(this.geoLayer) + this.unregister.forEach(f => f()) + this.unregister = [] } } @@ -82,40 +99,50 @@ export default class ShowDataLayer { this._selectedElement?.addCallbackAndRunD(selected => { - if (self._leafletMap.data === undefined) { - return; - } - const v = self.leafletLayersPerId.get(selected.properties.id + selected.geometry.type) - if (v === undefined) { - return; - } - const leafletLayer = v.leafletlayer - const feature = v.feature - if (leafletLayer.getPopup().isOpen()) { - return; - } - if (selected.properties.id !== feature.properties.id) { - return; - } - - if (feature.id !== feature.properties.id) { - // Probably a feature which has renamed - // the feature might have as id 'node/-1' and as 'feature.properties.id' = 'the newly assigned id'. That is no good too - console.log("Not opening the popup for", feature, "as probably renamed") - return; - } - if (selected.geometry.type === feature.geometry.type // If a feature is rendered both as way and as point, opening one popup might trigger the other to open, which might trigger the one to open again - ) { - console.log("Opening popup of feature", feature) - leafletLayer.openPopup() - } + self.openPopupOfSelectedElement(selected) }) this.update(options) } - private update(options: ShowDataLayerOptions) { + private Destroy() { + this.unregister.forEach(f => f()) + } + + private openPopupOfSelectedElement(selected) { + if (selected === undefined) { + return + } + if (this._leafletMap.data === undefined) { + return; + } + const v = this.leafletLayersPerId.get(selected.properties.id + selected.geometry.type) + if (v === undefined) { + return; + } + const leafletLayer = v.leafletlayer + const feature = v.feature + if (leafletLayer.getPopup().isOpen()) { + return; + } + if (selected.properties.id !== feature.properties.id) { + return; + } + + if (feature.id !== feature.properties.id) { + // Probably a feature which has renamed + // the feature might have as id 'node/-1' and as 'feature.properties.id' = 'the newly assigned id'. That is no good too + console.log("Not opening the popup for", feature, "as probably renamed") + return; + } + if (selected.geometry.type === feature.geometry.type // If a feature is rendered both as way and as point, opening one popup might trigger the other to open, which might trigger the one to open again + ) { + leafletLayer.openPopup() + } + } + + private update(options: ShowDataLayerOptions): boolean { if (this._features.features.data === undefined) { return; } @@ -125,9 +152,13 @@ export default class ShowDataLayer { } const mp = options.leafletMap.data; + if (mp === null) { + 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) { @@ -146,6 +177,7 @@ export default class ShowDataLayer { onEachFeature: (feature, leafletLayer) => self.postProcessFeature(feature, leafletLayer) }); + const selfLayer = this.geoLayer; const allFeats = this._features.features.data; for (const feat of allFeats) { if (feat === undefined) { @@ -153,12 +185,11 @@ export default class ShowDataLayer { } try { if (feat.geometry.type === "LineString") { - const self = this; const coords = L.GeoJSON.coordsToLatLngs(feat.geometry.coordinates) const tagsSource = this.allElements?.addOrGetElement(feat) ?? new UIEventSource<any>(feat.properties); let offsettedLine; tagsSource - .map(tags => this._layerToShow.lineRendering[feat.lineRenderingIndex].GenerateLeafletStyle(tags)) + .map(tags => this._layerToShow.lineRendering[feat.lineRenderingIndex].GenerateLeafletStyle(tags), [], undefined, true) .withEqualityStabilized((a, b) => { if (a === b) { return true @@ -176,21 +207,26 @@ export default class ShowDataLayer { offsettedLine = L.polyline(coords, lineStyle); this.postProcessFeature(feat, offsettedLine) offsettedLine.addTo(this.geoLayer) + + // If 'self.geoLayer' is not the same as the layer the feature is added to, we can safely remove this callback + return self.geoLayer !== selfLayer }) } else { this.geoLayer.addData(feat); - } + } } catch (e) { console.error("Could not add ", feat, "to the geojson layer in leaflet due to", e, e.stack) } } if (options.zoomToFeatures ?? false) { - try { - const bounds = this.geoLayer.getBounds() - mp.fitBounds(bounds, {animate: false}) - } catch (e) { - console.debug("Invalid bounds", e) + if (this.geoLayer.getLayers().length > 0) { + try { + const bounds = this.geoLayer.getBounds() + mp.fitBounds(bounds, {animate: false}) + } catch (e) { + console.debug("Invalid bounds", e) + } } } @@ -198,6 +234,7 @@ export default class ShowDataLayer { mp.addLayer(this.geoLayer) } this.isDirty = false; + this.openPopupOfSelectedElement(this._selectedElement?.data) } @@ -245,7 +282,7 @@ export default class ShowDataLayer { } /** - * POst processing - basically adding the popup + * Post processing - basically adding the popup * @param feature * @param leafletLayer * @private @@ -268,14 +305,14 @@ export default class ShowDataLayer { leafletLayer.bindPopup(popup); - let infobox: FeatureInfoBox = undefined; - + let infobox: ScrollableFullScreen = undefined; const id = `popup-${feature.properties.id}-${feature.geometry.type}-${this.showDataLayerid}-${this._cleanCount}-${feature.pointRenderingIndex ?? feature.lineRenderingIndex}-${feature.multiLineStringIndex ?? ""}` popup.setContent(`<div style='height: 65vh' id='${id}'>Popup for ${feature.properties.id} ${feature.geometry.type} ${id} is loading</div>`) + const createpopup = this.createPopup; leafletLayer.on("popupopen", () => { if (infobox === undefined) { const tags = this.allElements?.getEventSourceById(feature.properties.id) ?? new UIEventSource<any>(feature.properties); - infobox = new FeatureInfoBox(tags, layer); + infobox = createpopup(tags, layer); infobox.isShown.addCallback(isShown => { if (!isShown) { @@ -285,6 +322,10 @@ export default class ShowDataLayer { } infobox.AttachTo(id) infobox.Activate(); + this.unregister.push(() => { + console.log("Destroying infobox") + infobox.Destroy(); + }) if (this._selectedElement?.data?.properties?.id !== feature.properties.id) { this._selectedElement?.setData(feature) } @@ -298,7 +339,6 @@ export default class ShowDataLayer { leafletlayer: leafletLayer }) - } } \ No newline at end of file diff --git a/UI/ShowDataLayer/ShowDataLayerOptions.ts b/UI/ShowDataLayer/ShowDataLayerOptions.ts index 4b811be68a..e79fe00d44 100644 --- a/UI/ShowDataLayer/ShowDataLayerOptions.ts +++ b/UI/ShowDataLayer/ShowDataLayerOptions.ts @@ -1,13 +1,15 @@ import FeatureSource from "../../Logic/FeatureSource/FeatureSource"; import {UIEventSource} from "../../Logic/UIEventSource"; import {ElementStorage} from "../../Logic/ElementStorage"; +import LayerConfig from "../../Models/ThemeConfig/LayerConfig"; +import ScrollableFullScreen from "../Base/ScrollableFullScreen"; export interface ShowDataLayerOptions { features: FeatureSource, selectedElement?: UIEventSource<any>, - allElements?: ElementStorage, leafletMap: UIEventSource<L.Map>, - enablePopups?: true | boolean, + popup?: undefined | ((tags: any, layer: LayerConfig) => ScrollableFullScreen), zoomToFeatures?: false | boolean, - doShowLayer?: UIEventSource<boolean> + doShowLayer?: UIEventSource<boolean>, + state?: { allElements?: ElementStorage } } \ No newline at end of file diff --git a/UI/ShowDataLayer/ShowDataMultiLayer.ts b/UI/ShowDataLayer/ShowDataMultiLayer.ts index 924274586f..374539b603 100644 --- a/UI/ShowDataLayer/ShowDataMultiLayer.ts +++ b/UI/ShowDataLayer/ShowDataMultiLayer.ts @@ -12,8 +12,9 @@ export default class ShowDataMultiLayer { new PerLayerFeatureSourceSplitter(options.layers, (perLayer => { const newOptions = { + ...options, layerToShow: perLayer.layer.layerDef, - ...options + features: perLayer } new ShowDataLayer(newOptions) }), diff --git a/UI/ShowDataLayer/ShowTileInfo.ts b/UI/ShowDataLayer/ShowTileInfo.ts index e2ba01adf3..1b6cc1d85a 100644 --- a/UI/ShowDataLayer/ShowTileInfo.ts +++ b/UI/ShowDataLayer/ShowTileInfo.ts @@ -6,10 +6,10 @@ import StaticFeatureSource from "../../Logic/FeatureSource/Sources/StaticFeature import {GeoOperations} from "../../Logic/GeoOperations"; import {Tiles} from "../../Models/TileRange"; import * as clusterstyle from "../../assets/layers/cluster_style/cluster_style.json" +import State from "../../State"; 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<any>, layer?: LayerConfig, @@ -54,7 +54,9 @@ export default class ShowTileInfo { layerToShow: ShowTileInfo.styling, features: new StaticFeatureSource(metaFeature, false), leafletMap: options.leafletMap, - doShowLayer: options.doShowLayer + doShowLayer: options.doShowLayer, + state: State.state, + popup: undefined }) } diff --git a/UI/SpecialVisualizations.ts b/UI/SpecialVisualizations.ts index bcce130a16..97b5943755 100644 --- a/UI/SpecialVisualizations.ts +++ b/UI/SpecialVisualizations.ts @@ -12,7 +12,6 @@ import MangroveReviews from "../Logic/Web/MangroveReviews"; import Translations from "./i18n/Translations"; import ReviewForm from "./Reviews/ReviewForm"; import OpeningHoursVisualization from "./OpeningHours/OpeningHoursVisualization"; -import State from "../State"; import BaseUIElement from "./BaseUIElement"; import Title from "./Base/Title"; import Table from "./Base/Table"; @@ -20,8 +19,6 @@ import Histogram from "./BigComponents/Histogram"; import Loc from "../Models/Loc"; import {Utils} from "../Utils"; import LayerConfig from "../Models/ThemeConfig/LayerConfig"; -import {ImportButtonSpecialViz} from "./BigComponents/ImportButton"; -import {Tag} from "../Logic/Tags/Tag"; import StaticFeatureSource from "../Logic/FeatureSource/Sources/StaticFeatureSource"; import ShowDataMultiLayer from "./ShowDataLayer/ShowDataMultiLayer"; import Minimap from "./Base/Minimap"; @@ -29,650 +26,78 @@ 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 Link from "./Base/Link"; -import List from "./Base/List"; import {SubtleButton} from "./Base/SubtleButton"; -import ChangeTagAction from "../Logic/Osm/Actions/ChangeTagAction"; -import {And} from "../Logic/Tags/And"; -import Toggle from "./Input/Toggle"; import {DefaultGuiState} from "./DefaultGuiState"; import {GeoOperations} from "../Logic/GeoOperations"; import Hash from "../Logic/Web/Hash"; +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"; +import {SubstitutedTranslation} from "./SubstitutedTranslation"; export interface SpecialVisualization { funcName: string, - constr: ((state: State, tagSource: UIEventSource<any>, argument: string[], guistate: DefaultGuiState,) => BaseUIElement), + constr: ((state: FeaturePipelineState, tagSource: UIEventSource<any>, argument: string[], guistate: DefaultGuiState,) => BaseUIElement), docs: string, example?: string, - args: { name: string, defaultValue?: string, doc: string }[] + args: { name: string, defaultValue?: string, doc: string }[], + getLayerDependencies?: (argument: string[]) => string[] +} + +export class AllTagsPanel extends VariableUiElement { + + constructor(tags: UIEventSource<any>, state?) { + + const calculatedTags = [].concat( + SimpleMetaTagger.lazyTags, + ...(state?.layoutToUse?.layers?.map(l => l.calculatedTags?.map(c => c[0]) ?? []) ?? [])) + + + super(tags.map(tags => { + const parts = []; + for (const key in tags) { + if (!tags.hasOwnProperty(key)) { + continue + } + let v = tags[key] + if (v === "") { + v = "<b>empty string</b>" + } + parts.push([key, v ?? "<b>undefined</b>"]); + } + + for (const key of calculatedTags) { + const value = tags[key] + if (value === undefined) { + continue + } + parts.push(["<i>" + key + "</i>", value]) + } + + return new Table( + ["key", "value"], + parts + ) + .SetStyle("border: 1px solid black; border-radius: 1em;padding:1em;display:block;").SetClass("zebra-table") + })) + } } export default class SpecialVisualizations { - static tagsToApplyHelpText = Utils.Special_visualizations_tagsToApplyHelpText - public static specialVisualizations: SpecialVisualization[] = - [ - { - funcName: "all_tags", - docs: "Prints all key-value pairs of the object - used for debugging", - args: [], - constr: ((state: State, tags: UIEventSource<any>) => { - const calculatedTags = [].concat( - SimpleMetaTagger.lazyTags, - ...state.layoutToUse.layers.map(l => l.calculatedTags?.map(c => c[0]) ?? [])) - return new VariableUiElement(tags.map(tags => { - const parts = []; - for (const key in tags) { - if (!tags.hasOwnProperty(key)) { - continue - } - let v = tags[key] - if (v === "") { - v = "<b>empty string</b>" - } - parts.push([key, v ?? "<b>undefined</b>"]); - } - - for (const key of calculatedTags) { - const value = tags[key] - if (value === undefined) { - continue - } - parts.push(["<i>" + key + "</i>", value]) - } - - return new Table( - ["key", "value"], - parts - ) - })).SetStyle("border: 1px solid black; border-radius: 1em;padding:1em;display:block;") - }) - }, - { - funcName: "image_carousel", - docs: "Creates an image carousel for the given sources. An attempt will be made to guess what source is used. Supported: Wikidata identifiers, Wikipedia pages, Wikimedia categories, IMGUR (with attribution, direct links)", - args: [{ - name: "image key/prefix (multiple values allowed if comma-seperated)", - defaultValue: AllImageProviders.defaultKeys.join(","), - doc: "The keys given to the images, e.g. if <span class='literal-code'>image</span> is given, the first picture URL will be added as <span class='literal-code'>image</span>, the second as <span class='literal-code'>image:0</span>, the third as <span class='literal-code'>image:1</span>, etc... " - }], - constr: (state: State, tags, args) => { - let imagePrefixes: string[] = undefined; - if (args.length > 0) { - imagePrefixes = [].concat(...args.map(a => a.split(","))); - } - return new ImageCarousel(AllImageProviders.LoadImagesFor(tags, imagePrefixes), tags, imagePrefixes); - } - }, - { - funcName: "image_upload", - docs: "Creates a button where a user can upload an image to IMGUR", - args: [{ - name: "image-key", - doc: "Image tag to add the URL to (or image-tag:0, image-tag:1 when multiple images are added)", - defaultValue: "image" - }, { - name: "label", - doc: "The text to show on the button", - defaultValue: "Add image" - }], - constr: (state: State, tags, args) => { - return new ImageUploadFlow(tags, args[0], args[1]) - } - }, - { - funcName: "wikipedia", - docs: "A box showing the corresponding wikipedia article - based on the wikidata tag", - args: [ - { - name: "keyToShowWikipediaFor", - doc: "Use the wikidata entry from this key to show the wikipedia article for", - defaultValue: "wikidata" - } - ], - example: "`{wikipedia()}` is a basic example, `{wikipedia(name:etymology:wikidata)}` to show the wikipedia page of whom the feature was named after. Also remember that these can be styled, e.g. `{wikipedia():max-height: 10rem}` to limit the height", - constr: (_, tagsSource, args) => - new VariableUiElement( - tagsSource.map(tags => tags[args[0]]) - .map(wikidata => { - const wikidatas: string[] = - Utils.NoEmpty(wikidata?.split(";")?.map(wd => wd.trim()) ?? []) - return new WikipediaBox(wikidatas) - }) - ) - - }, - { - funcName: "minimap", - docs: "A small map showing the selected feature.", - args: [ - { - doc: "The (maximum) zoomlevel: the target zoomlevel after fitting the entire feature. The minimap will fit the entire feature, then zoom out to this zoom level. The higher, the more zoomed in with 1 being the entire world and 19 being really close", - name: "zoomlevel", - defaultValue: "18" - }, - { - doc: "(Matches all resting arguments) This argument should be the key of a property of the feature. The corresponding value is interpreted as either the id or the a list of ID's. The features with these ID's will be shown on this minimap.", - name: "idKey", - defaultValue: "id" - } - ], - 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) => { - - const keys = [...args] - keys.splice(0, 1) - const featureStore = state.allElements.ContainingFeatures - const featuresToShow: UIEventSource<{ freshness: Date, feature: any }[]> = tagSource.map(properties => { - const values: string[] = Utils.NoNull(keys.map(key => properties[key])) - const features: { freshness: Date, feature: any }[] = [] - for (const value of values) { - let idList = [value] - if (value.startsWith("[")) { - // This is a list of values - idList = JSON.parse(value) - } - - for (const id of idList) { - const feature = featureStore.get(id) - features.push({ - freshness: new Date(), - feature - }) - } - } - return features - }) - const properties = tagSource.data; - let zoom = 18 - if (args[0]) { - const parsed = Number(args[0]) - if (!isNaN(parsed) && parsed > 0 && parsed < 25) { - zoom = parsed; - } - } - const locationSource = new UIEventSource<Loc>({ - lat: Number(properties._lat), - lon: Number(properties._lon), - zoom: zoom - }) - const minimap = Minimap.createMiniMap( - { - background: state.backgroundLayer, - location: locationSource, - allowMoving: false - } - ) - - locationSource.addCallback(loc => { - if (loc.zoom > zoom) { - // We zoom back - locationSource.data.zoom = zoom; - locationSource.ping(); - } - }) - - new ShowDataMultiLayer( - { - leafletMap: minimap["leafletMap"], - enablePopups: false, - zoomToFeatures: true, - layers: State.state.filteredLayers, - features: new StaticFeatureSource(featuresToShow, true), - allElements: State.state.allElements - } - ) - - - minimap.SetStyle("overflow: hidden; pointer-events: none;") - return minimap; - } - }, - { - funcName: "sided_minimap", - docs: "A small map showing _only one side_ the selected feature. *This features requires to have linerenderings with offset* as only linerenderings with a postive or negative offset will be shown. Note: in most cases, this map will be automatically introduced", - args: [ - { - doc: "The side to show, either `left` or `right`", - name: "side", - } - ], - example: "`{sided_minimap(left)}`", - constr: (state, tagSource, args) => { - - const properties = tagSource.data; - const locationSource = new UIEventSource<Loc>({ - lat: Number(properties._lat), - lon: Number(properties._lon), - zoom: 18 - }) - const minimap = Minimap.createMiniMap( - { - background: state.backgroundLayer, - location: locationSource, - allowMoving: false - } - ) - const side = args[0] - const feature = state.allElements.ContainingFeatures.get(tagSource.data.id) - const copy = {...feature} - copy.properties = { - id: side - } - new ShowDataLayer( - { - leafletMap: minimap["leafletMap"], - enablePopups: false, - zoomToFeatures: true, - layerToShow: AllKnownLayers.sharedLayers.get("left_right_style"), - features: new StaticFeatureSource([copy], false), - allElements: State.state.allElements - } - ) - - - minimap.SetStyle("overflow: hidden; pointer-events: none;") - return minimap; - } - }, - { - funcName: "reviews", - docs: "Adds an overview of the mangrove-reviews of this object. Mangrove.Reviews needs - in order to identify the reviewed object - a coordinate and a name. By default, the name of the object is given, but this can be overwritten", - example: "`{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", - args: [{ - name: "subjectKey", - defaultValue: "name", - doc: "The key to use to determine the subject. If specified, the subject will be <b>tags[subjectKey]</b>" - }, { - name: "fallback", - doc: "The identifier to use, if <i>tags[subjectKey]</i> as specified above is not available. This is effectively a fallback value" - }], - constr: (state: State, tags, args) => { - const tgs = tags.data; - const key = args[0] ?? "name" - let subject = tgs[key] ?? args[1]; - if (subject === undefined || subject === "") { - return Translations.t.reviews.name_required; - } - const mangrove = MangroveReviews.Get(Number(tgs._lon), Number(tgs._lat), - encodeURIComponent(subject), - state.mangroveIdentity, - state.osmConnection._dryRun - ); - const form = new ReviewForm((r, whenDone) => mangrove.AddReview(r, whenDone), state.osmConnection); - return new ReviewElement(mangrove.GetSubjectUri(), mangrove.GetReviews(), form); - } - }, - { - funcName: "opening_hours_table", - docs: "Creates an opening-hours table. Usage: {opening_hours_table(opening_hours)} to create a table of the tag 'opening_hours'.", - args: [{ - name: "key", - defaultValue: "opening_hours", - doc: "The tagkey from which the table is constructed." - }, { - name: "prefix", - defaultValue: "", - doc: "Remove this string from the start of the value before parsing. __Note: use `&LPARENs` to indicate `(` if needed__" - }, { - name: "postfix", - defaultValue: "", - doc: "Remove this string from the end of the value before parsing. __Note: use `&RPARENs` to indicate `)` if needed__" - }], - 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<any>, args) => { - return new OpeningHoursVisualization(tagSource, args[0], args[1], args[2]) - } - }, - { - funcName: "live", - docs: "Downloads a JSON from the given URL, e.g. '{live(example.org/data.json, shorthand:x.y.z, other:a.b.c, shorthand)}' will download the given file, will create an object {shorthand: json[x][y][z], other: json[a][b][c] out of it and will return 'other' or 'json[a][b][c]. This is made to use in combination with tags, e.g. {live({url}, {url:format}, needed_value)}", - example: "{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)}", - args: [{ - name: "Url", doc: "The URL to load" - }, { - name: "Shorthands", - doc: "A list of shorthands, of the format 'shorthandname:path.path.path'. separated by ;" - }, { - name: "path", doc: "The path (or shorthand) that should be returned" - }], - constr: (state: State, tagSource: UIEventSource<any>, args) => { - const url = args[0]; - const shorthands = args[1]; - const neededValue = args[2]; - const source = LiveQueryHandler.FetchLiveData(url, shorthands.split(";")); - return new VariableUiElement(source.map(data => data[neededValue] ?? "Loading...")); - } - }, - { - funcName: "histogram", - docs: "Create a histogram for a list of given values, read from the properties.", - example: "`{histogram('some_key')}` with properties being `{some_key: ['a','b','a','c']} to create a histogram", - args: [ - { - name: "key", - doc: "The key to be read and to generate a histogram from" - }, - { - name: "title", - doc: "The text to put above the given values column", - defaultValue: "" - }, - { - name: "countHeader", - doc: "The text to put above the counts", - defaultValue: "" - }, - { - name: "colors*", - doc: "(Matches all resting arguments - optional) Matches a regex onto a color value, e.g. `3[a-zA-Z+-]*:#33cc33`" - - } - ], - constr: (state: State, tagSource: UIEventSource<any>, args: string[]) => { - - let assignColors = undefined; - if (args.length >= 3) { - const colors = [...args] - colors.splice(0, 3) - const mapping = colors.map(c => { - const splitted = c.split(":"); - const value = splitted.pop() - const regex = splitted.join(":") - return {regex: "^" + regex + "$", color: value} - }) - assignColors = (key) => { - for (const kv of mapping) { - if (key.match(kv.regex) !== null) { - return kv.color - } - } - return undefined - } - } - - const listSource: UIEventSource<string[]> = tagSource - .map(tags => { - try { - const value = tags[args[0]] - if (value === "" || value === undefined) { - return undefined - } - return JSON.parse(value) - } catch (e) { - console.error("Could not load histogram: parsing of the list failed: ", e) - return undefined; - } - }) - return new Histogram(listSource, args[1], args[2], assignColors) - } - }, - { - funcName: "share_link", - docs: "Creates a link that (attempts to) open the native 'share'-screen", - example: "{share_link()} to share the current page, {share_link(<some_url>)} to share the given url", - args: [ - { - name: "url", - doc: "The url to share (default: current URL)", - } - ], - constr: (state: State, tagSource: UIEventSource<any>, args) => { - if (window.navigator.share) { - - const generateShareData = () => { - - - const title = state?.layoutToUse?.title?.txt ?? "MapComplete"; - - let matchingLayer: LayerConfig = state?.layoutToUse?.getMatchingLayer(tagSource?.data); - let name = matchingLayer?.title?.GetRenderValue(tagSource.data)?.txt ?? tagSource.data?.name ?? "POI"; - if (name) { - name = `${name} (${title})` - } else { - name = title; - } - let url = args[0] ?? "" - if (url === "") { - url = window.location.href - } - return { - title: name, - url: url, - text: state?.layoutToUse?.shortDescription?.txt ?? "MapComplete" - } - } - - return new ShareButton(Svg.share_svg().SetClass("w-8 h-8"), generateShareData) - } else { - return new FixedUiElement("") - } - - } - }, - { - funcName: "canonical", - docs: "Converts a short, canonical value into the long, translated text", - example: "{canonical(length)} will give 42 metre (in french)", - args: [{ - name: "key", - doc: "The key of the tag to give the canonical text for" - }], - constr: (state, tagSource, args) => { - const key = args [0] - return new VariableUiElement( - tagSource.map(tags => tags[key]).map(value => { - if (value === undefined) { - return undefined - } - const allUnits = [].concat(...state.layoutToUse.layers.map(lyr => lyr.units)) - const unit = allUnits.filter(unit => unit.isApplicableToKey(key))[0] - if (unit === undefined) { - return value; - } - return unit.asHumanLongValue(value); - - }) - ) - } - }, - new ImportButtonSpecialViz(), - { - funcName: "multi_apply", - docs: "A button to apply the tagging of this object onto a list of other features. This is an advanced feature for which you'll need calculatedTags", - args: [ - {name: "feature_ids", doc: "A JSOn-serialized list of IDs of features to apply the tagging on"}, - { - name: "keys", - doc: "One key (or multiple keys, seperated by ';') of the attribute that should be copied onto the other features." - }, - {name: "text", doc: "The text to show on the button"}, - { - name: "autoapply", - doc: "A boolean indicating wether this tagging should be applied automatically if the relevant tags on this object are changed. A visual element indicating the multi_apply is still shown" - }, - { - name: "overwrite", - doc: "If set to 'true', the tags on the other objects will always be overwritten. The default behaviour will be to only change the tags on other objects if they are either undefined or had the same value before the change" - } - ], - example: "{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)}", - constr: (state, tagsSource, args) => { - const featureIdsKey = args[0] - const keysToApply = args[1].split(";") - const text = args[2] - const autoapply = args[3]?.toLowerCase() === "true" - const overwrite = args[4]?.toLowerCase() === "true" - const featureIds: UIEventSource<string[]> = tagsSource.map(tags => { - const ids = tags[featureIdsKey] - try { - if (ids === undefined) { - return [] - } - return JSON.parse(ids); - } catch (e) { - console.warn("Could not parse ", ids, "as JSON to extract IDS which should be shown on the map.") - return [] - } - }) - return new MultiApply( - { - featureIds, - keysToApply, - text, - autoapply, - overwrite, - tagsSource, - state - } - ); - - } - }, - { - funcName: "tag_apply", - docs: "Shows a big button; clicking this button will apply certain tags onto the feature.\n\nThe first argument takes a specification of which tags to add.\n" + SpecialVisualizations.tagsToApplyHelpText, - args: [ - { - name: "tags_to_apply", - doc: "A specification of the tags to apply" - }, - { - name: "message", - doc: "The text to show to the contributor" - }, - { - name: "image", - doc: "An image to show to the contributor on the button" - }, - { - name: "id_of_object_to_apply_this_one", - defaultValue: undefined, - doc: "If specified, applies the the tags onto _another_ object. The id will be read from properties[id_of_object_to_apply_this_one] of the selected object. The tags are still calculated based on the tags of the _selected_ element" - } - ], - example: "`{tag_apply(survey_date:=$_now:date, Surveyed today!)}`", - constr: (state, tags, args) => { - const tagsToApply = SpecialVisualizations.generateTagsToApply(args[0], tags) - const msg = args[1] - let image = args[2]?.trim() - if (image === "" || image === "undefined") { - image = undefined - } - const targetIdKey = args[3] - const t = Translations.t.general.apply_button - - const tagsExplanation = new VariableUiElement(tagsToApply.map(tagsToApply => { - const tagsStr = tagsToApply.map(t => t.asHumanString(false, true)).join("&"); - let el: BaseUIElement = new FixedUiElement(tagsStr) - if (targetIdKey !== undefined) { - const targetId = tags.data[targetIdKey] ?? tags.data.id - el = t.appliedOnAnotherObject.Subs({tags: tagsStr, id: targetId}) - } - return el; - } - )).SetClass("subtle") - - const applied = new UIEventSource(false) - const applyButton = new SubtleButton(image, new Combine([msg, tagsExplanation]).SetClass("flex flex-col")) - .onClick(() => { - const targetId = tags.data[targetIdKey] ?? tags.data.id - const changeAction = new ChangeTagAction(targetId, - new And(tagsToApply.data), - tags.data, // We pass in the tags of the selected element, not the tags of the target element! - { - theme: state.layoutToUse.id, - changeType: "answer" - } - ) - state.changes.applyAction(changeAction) - applied.setData(true) - }) - - - return new Toggle( - new Toggle( - t.isApplied.SetClass("thanks"), - applyButton, - applied - ) - , undefined, state.osmConnection.isLoggedIn) - } - }, - { - funcName: "export_as_gpx", - docs: "Exports the selected feature as GPX-file", - args: [], - constr: (state, tagSource, args) => { - const t = Translations.t.general.download; - - return new SubtleButton(Svg.download_ui(), - new Combine([t.downloadGpx.SetClass("font-bold text-lg"), - t.downloadGpxHelper.SetClass("subtle")]).SetClass("flex flex-col") - ).onClick(() => { - console.log("Exporting as GPX!") - const tags = tagSource.data - const feature = state.allElements.ContainingFeatures.get(tags.id) - const matchingLayer = state?.layoutToUse?.getMatchingLayer(tags) - const gpx = GeoOperations.AsGpx(feature, matchingLayer) - const title = matchingLayer.title?.GetRenderValue(tags)?.Subs(tags)?.txt ?? "gpx_track" - Utils.offerContentsAsDownloadableFile(gpx, title + "_mapcomplete_export.gpx", { - mimetype: "{gpx=application/gpx+xml}" - }) - - - }) - } - }, - { - funcName: "clear_location_history", - docs: "A button to remove the travelled track information from the device", - args: [], - constr: state => { - return new SubtleButton( - Svg.delete_icon_svg().SetStyle("height: 1.5rem"), Translations.t.general.removeLocationHistory - ).onClick(() => { - state.historicalUserLocations.features.setData([]) - Hash.hash.setData(undefined) - }) - } - } - ] - - static generateTagsToApply(spec: string, tagSource: UIEventSource<any>): UIEventSource<Tag[]> { - - const tgsSpec = spec.split(";").map(spec => { - const kv = spec.split("=").map(s => s.trim()); - if (kv.length != 2) { - throw "Invalid key spec: multiple '=' found in " + spec - } - return kv - }) - return tagSource.map(tags => { - const newTags: Tag [] = [] - for (const [key, value] of tgsSpec) { - if (value.indexOf('$') >= 0) { - - let parts = value.split("$") - // THe first of the split won't start with a '$', so no substitution needed - let actualValue = parts[0] - parts.shift() - - for (const part of parts) { - const [_, varName, leftOver] = part.match(/([a-zA-Z0-9_:]*)(.*)/) - actualValue += (tags[varName] ?? "") + leftOver - } - newTags.push(new Tag(key, actualValue)) - } else { - newTags.push(new Tag(key, value)) - } - } - return newTags - }) - - } + public static specialVisualizations = SpecialVisualizations.init() public static HelpMessage() { @@ -690,7 +115,7 @@ export default class SpecialVisualizations { return [arg.name, defaultArg, arg.doc]; }) ) : undefined, - new Title("Example usage", 4), + new Title("Example usage of " + viz.funcName, 4), new FixedUiElement( viz.example ?? "`{" + viz.funcName + "(" + viz.args.map(arg => arg.defaultValue).join(",") + ")}`" ).SetClass("literal-code"), @@ -698,19 +123,764 @@ export default class SpecialVisualizations { ] )); - - const toc = new List( - SpecialVisualizations.specialVisualizations.map(viz => new Link(viz.funcName, "#" + viz.funcName)) - ) - return new Combine([ - new Title("Special tag renderings", 3), + 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", - toc, ...helpTexts ] ).SetClass("flex flex-col"); } + private static init() { + const specialVisualizations: SpecialVisualization[] = + [ + { + funcName: "all_tags", + docs: "Prints all key-value pairs of the object - used for debugging", + args: [], + constr: ((state, tags: UIEventSource<any>) => new AllTagsPanel(tags, state)) + }, + { + funcName: "image_carousel", + docs: "Creates an image carousel for the given sources. An attempt will be made to guess what source is used. Supported: Wikidata identifiers, Wikipedia pages, Wikimedia categories, IMGUR (with attribution, direct links)", + args: [{ + name: "image key/prefix (multiple values allowed if comma-seperated)", + defaultValue: AllImageProviders.defaultKeys.join(","), + doc: "The keys given to the images, e.g. if <span class='literal-code'>image</span> is given, the first picture URL will be added as <span class='literal-code'>image</span>, the second as <span class='literal-code'>image:0</span>, the third as <span class='literal-code'>image:1</span>, etc... " + }], + constr: (state, tags, args) => { + let imagePrefixes: string[] = undefined; + if (args.length > 0) { + imagePrefixes = [].concat(...args.map(a => a.split(","))); + } + return new ImageCarousel(AllImageProviders.LoadImagesFor(tags, imagePrefixes), tags, state); + } + }, + { + funcName: "image_upload", + docs: "Creates a button where a user can upload an image to IMGUR", + args: [{ + name: "image-key", + doc: "Image tag to add the URL to (or image-tag:0, image-tag:1 when multiple images are added)", + defaultValue: "image" + }, { + name: "label", + doc: "The text to show on the button", + defaultValue: "Add image" + }], + constr: (state, tags, args) => { + return new ImageUploadFlow(tags, state, args[0], args[1]) + } + }, + { + funcName: "wikipedia", + docs: "A box showing the corresponding wikipedia article - based on the wikidata tag", + args: [ + { + name: "keyToShowWikipediaFor", + doc: "Use the wikidata entry from this key to show the wikipedia article for", + defaultValue: "wikidata" + } + ], + example: "`{wikipedia()}` is a basic example, `{wikipedia(name:etymology:wikidata)}` to show the wikipedia page of whom the feature was named after. Also remember that these can be styled, e.g. `{wikipedia():max-height: 10rem}` to limit the height", + constr: (_, tagsSource, args) => + new VariableUiElement( + tagsSource.map(tags => tags[args[0]]) + .map(wikidata => { + const wikidatas: string[] = + Utils.NoEmpty(wikidata?.split(";")?.map(wd => wd.trim()) ?? []) + return new WikipediaBox(wikidatas) + }) + ) + + }, + { + funcName: "minimap", + docs: "A small map showing the selected feature.", + args: [ + { + doc: "The (maximum) zoomlevel: the target zoomlevel after fitting the entire feature. The minimap will fit the entire feature, then zoom out to this zoom level. The higher, the more zoomed in with 1 being the entire world and 19 being really close", + name: "zoomlevel", + defaultValue: "18" + }, + { + doc: "(Matches all resting arguments) This argument should be the key of a property of the feature. The corresponding value is interpreted as either the id or the a list of ID's. The features with these ID's will be shown on this minimap.", + name: "idKey", + defaultValue: "id" + } + ], + example: "`{minimap()}`, `{minimap(17, id, _list_of_embedded_feature_ids_calculated_by_calculated_tag):height:10rem; border: 2px solid black}`", + constr: (state, tagSource, args, _) => { + + const keys = [...args] + keys.splice(0, 1) + const featureStore = state.allElements.ContainingFeatures + const featuresToShow: UIEventSource<{ freshness: Date, feature: any }[]> = tagSource.map(properties => { + const values: string[] = Utils.NoNull(keys.map(key => properties[key])) + const features: { freshness: Date, feature: any }[] = [] + for (const value of values) { + let idList = [value] + if (value.startsWith("[")) { + // This is a list of values + idList = JSON.parse(value) + } + + for (const id of idList) { + const feature = featureStore.get(id) + features.push({ + freshness: new Date(), + feature + }) + } + } + return features + }) + const properties = tagSource.data; + let zoom = 18 + if (args[0]) { + const parsed = Number(args[0]) + if (!isNaN(parsed) && parsed > 0 && parsed < 25) { + zoom = parsed; + } + } + const locationSource = new UIEventSource<Loc>({ + lat: Number(properties._lat), + lon: Number(properties._lon), + zoom: zoom + }) + const minimap = Minimap.createMiniMap( + { + background: state.backgroundLayer, + location: locationSource, + allowMoving: false + } + ) + + locationSource.addCallback(loc => { + if (loc.zoom > zoom) { + // We zoom back + locationSource.data.zoom = zoom; + locationSource.ping(); + } + }) + + new ShowDataMultiLayer( + { + leafletMap: minimap["leafletMap"], + popup: undefined, + zoomToFeatures: true, + layers: state.filteredLayers, + features: new StaticFeatureSource(featuresToShow, true) + } + ) + + + minimap.SetStyle("overflow: hidden; pointer-events: none;") + return minimap; + } + }, + { + funcName: "sided_minimap", + docs: "A small map showing _only one side_ the selected feature. *This features requires to have linerenderings with offset* as only linerenderings with a postive or negative offset will be shown. Note: in most cases, this map will be automatically introduced", + args: [ + { + doc: "The side to show, either `left` or `right`", + name: "side", + } + ], + example: "`{sided_minimap(left)}`", + constr: (state, tagSource, args) => { + + const properties = tagSource.data; + const locationSource = new UIEventSource<Loc>({ + lat: Number(properties._lat), + lon: Number(properties._lon), + zoom: 18 + }) + const minimap = Minimap.createMiniMap( + { + background: state.backgroundLayer, + location: locationSource, + allowMoving: false + } + ) + const side = args[0] + const feature = state.allElements.ContainingFeatures.get(tagSource.data.id) + const copy = {...feature} + copy.properties = { + id: side + } + new ShowDataLayer( + { + leafletMap: minimap["leafletMap"], + popup: undefined, + zoomToFeatures: true, + layerToShow: new LayerConfig(left_right_style_json, "all_known_layers", true), + features: new StaticFeatureSource([copy], false), + state + } + ) + + + minimap.SetStyle("overflow: hidden; pointer-events: none;") + return minimap; + } + }, + { + funcName: "reviews", + docs: "Adds an overview of the mangrove-reviews of this object. Mangrove.Reviews needs - in order to identify the reviewed object - a coordinate and a name. By default, the name of the object is given, but this can be overwritten", + example: "`{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", + args: [{ + name: "subjectKey", + defaultValue: "name", + doc: "The key to use to determine the subject. If specified, the subject will be <b>tags[subjectKey]</b>" + }, { + name: "fallback", + doc: "The identifier to use, if <i>tags[subjectKey]</i> as specified above is not available. This is effectively a fallback value" + }], + constr: (state, tags, args) => { + const tgs = tags.data; + const key = args[0] ?? "name" + let subject = tgs[key] ?? args[1]; + if (subject === undefined || subject === "") { + return Translations.t.reviews.name_required; + } + const mangrove = MangroveReviews.Get(Number(tgs._lon), Number(tgs._lat), + encodeURIComponent(subject), + state.mangroveIdentity, + state.featureSwitchIsTesting.data + ); + const form = new ReviewForm((r, whenDone) => mangrove.AddReview(r, whenDone), state.osmConnection); + return new ReviewElement(mangrove.GetSubjectUri(), mangrove.GetReviews(), form); + } + }, + { + funcName: "opening_hours_table", + docs: "Creates an opening-hours table. Usage: {opening_hours_table(opening_hours)} to create a table of the tag 'opening_hours'.", + args: [{ + name: "key", + defaultValue: "opening_hours", + doc: "The tagkey from which the table is constructed." + }, { + name: "prefix", + defaultValue: "", + doc: "Remove this string from the start of the value before parsing. __Note: use `&LPARENs` to indicate `(` if needed__" + }, { + name: "postfix", + defaultValue: "", + doc: "Remove this string from the end of the value before parsing. __Note: use `&RPARENs` to indicate `)` if needed__" + }], + 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, tagSource: UIEventSource<any>, args) => { + return new OpeningHoursVisualization(tagSource, state, args[0], args[1], args[2]) + } + }, + { + funcName: "live", + docs: "Downloads a JSON from the given URL, e.g. '{live(example.org/data.json, shorthand:x.y.z, other:a.b.c, shorthand)}' will download the given file, will create an object {shorthand: json[x][y][z], other: json[a][b][c] out of it and will return 'other' or 'json[a][b][c]. This is made to use in combination with tags, e.g. {live({url}, {url:format}, needed_value)}", + example: "{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)}", + args: [{ + name: "Url", doc: "The URL to load" + }, { + name: "Shorthands", + doc: "A list of shorthands, of the format 'shorthandname:path.path.path'. separated by ;" + }, { + name: "path", doc: "The path (or shorthand) that should be returned" + }], + constr: (state, tagSource: UIEventSource<any>, args) => { + const url = args[0]; + const shorthands = args[1]; + const neededValue = args[2]; + const source = LiveQueryHandler.FetchLiveData(url, shorthands.split(";")); + return new VariableUiElement(source.map(data => data[neededValue] ?? "Loading...")); + } + }, + { + funcName: "histogram", + docs: "Create a histogram for a list of given values, read from the properties.", + example: "`{histogram('some_key')}` with properties being `{some_key: ['a','b','a','c']} to create a histogram", + args: [ + { + name: "key", + doc: "The key to be read and to generate a histogram from" + }, + { + name: "title", + doc: "This text will be placed above the texts (in the first column of the visulasition)", + defaultValue: "" + }, + { + name: "countHeader", + doc: "This text will be placed above the bars", + defaultValue: "" + }, + { + name: "colors*", + doc: "(Matches all resting arguments - optional) Matches a regex onto a color value, e.g. `3[a-zA-Z+-]*:#33cc33`" + + } + ], + constr: (state, tagSource: UIEventSource<any>, args: string[]) => { + + let assignColors = undefined; + if (args.length >= 3) { + const colors = [...args] + colors.splice(0, 3) + const mapping = colors.map(c => { + const splitted = c.split(":"); + const value = splitted.pop() + const regex = splitted.join(":") + return {regex: "^" + regex + "$", color: value} + }) + assignColors = (key) => { + for (const kv of mapping) { + if (key.match(kv.regex) !== null) { + return kv.color + } + } + return undefined + } + } + + const listSource: UIEventSource<string[]> = tagSource + .map(tags => { + try { + const value = tags[args[0]] + if (value === "" || value === undefined) { + return undefined + } + return JSON.parse(value) + } catch (e) { + console.error("Could not load histogram: parsing of the list failed: ", e) + return undefined; + } + }) + return new Histogram(listSource, args[1], args[2], {assignColor: assignColors}) + } + }, + { + funcName: "share_link", + docs: "Creates a link that (attempts to) open the native 'share'-screen", + example: "{share_link()} to share the current page, {share_link(<some_url>)} to share the given url", + args: [ + { + name: "url", + doc: "The url to share (default: current URL)", + } + ], + constr: (state, tagSource: UIEventSource<any>, args) => { + if (window.navigator.share) { + + const generateShareData = () => { + + + const title = state?.layoutToUse?.title?.txt ?? "MapComplete"; + + let matchingLayer: LayerConfig = state?.layoutToUse?.getMatchingLayer(tagSource?.data); + let name = matchingLayer?.title?.GetRenderValue(tagSource.data)?.txt ?? tagSource.data?.name ?? "POI"; + if (name) { + name = `${name} (${title})` + } else { + name = title; + } + let url = args[0] ?? "" + if (url === "") { + url = window.location.href + } + return { + title: name, + url: url, + text: state?.layoutToUse?.shortDescription?.txt ?? "MapComplete" + } + } + + return new ShareButton(Svg.share_svg().SetClass("w-8 h-8"), generateShareData) + } else { + return new FixedUiElement("") + } + + } + }, + { + funcName: "canonical", + docs: "Converts a short, canonical value into the long, translated text", + example: "{canonical(length)} will give 42 metre (in french)", + args: [{ + name: "key", + doc: "The key of the tag to give the canonical text for" + }], + constr: (state, tagSource, args) => { + const key = args [0] + return new VariableUiElement( + tagSource.map(tags => tags[key]).map(value => { + if (value === undefined) { + return undefined + } + const allUnits = [].concat(...state.layoutToUse.layers.map(lyr => lyr.units)) + const unit = allUnits.filter(unit => unit.isApplicableToKey(key))[0] + if (unit === undefined) { + return value; + } + return unit.asHumanLongValue(value); + + }) + ) + } + }, + new ImportPointButton(), + new ImportWayButton(), + new ConflateButton(), + { + funcName: "multi_apply", + docs: "A button to apply the tagging of this object onto a list of other features. This is an advanced feature for which you'll need calculatedTags", + args: [ + {name: "feature_ids", doc: "A JSON-serialized list of IDs of features to apply the tagging on"}, + { + name: "keys", + doc: "One key (or multiple keys, seperated by ';') of the attribute that should be copied onto the other features." + }, + {name: "text", doc: "The text to show on the button"}, + { + name: "autoapply", + doc: "A boolean indicating wether this tagging should be applied automatically if the relevant tags on this object are changed. A visual element indicating the multi_apply is still shown" + }, + { + name: "overwrite", + doc: "If set to 'true', the tags on the other objects will always be overwritten. The default behaviour will be to only change the tags on other objects if they are either undefined or had the same value before the change" + } + ], + example: "{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)}", + constr: (state, tagsSource, args) => { + const featureIdsKey = args[0] + const keysToApply = args[1].split(";") + const text = args[2] + const autoapply = args[3]?.toLowerCase() === "true" + const overwrite = args[4]?.toLowerCase() === "true" + const featureIds: UIEventSource<string[]> = tagsSource.map(tags => { + const ids = tags[featureIdsKey] + try { + if (ids === undefined) { + return [] + } + return JSON.parse(ids); + } catch (e) { + console.warn("Could not parse ", ids, "as JSON to extract IDS which should be shown on the map.") + return [] + } + }) + return new MultiApply( + { + featureIds, + keysToApply, + text, + autoapply, + overwrite, + tagsSource, + state + } + ); + + } + }, + new TagApplyButton(), + { + funcName: "export_as_gpx", + docs: "Exports the selected feature as GPX-file", + args: [], + constr: (state, tagSource) => { + const t = Translations.t.general.download; + + return new SubtleButton(Svg.download_ui(), + new Combine([t.downloadFeatureAsGpx.SetClass("font-bold text-lg"), + t.downloadGpxHelper.SetClass("subtle")]).SetClass("flex flex-col") + ).onClick(() => { + console.log("Exporting as GPX!") + const tags = tagSource.data + const feature = state.allElements.ContainingFeatures.get(tags.id) + const matchingLayer = state?.layoutToUse?.getMatchingLayer(tags) + const gpx = GeoOperations.AsGpx(feature, matchingLayer) + const title = matchingLayer.title?.GetRenderValue(tags)?.Subs(tags)?.txt ?? "gpx_track" + Utils.offerContentsAsDownloadableFile(gpx, title + "_mapcomplete_export.gpx", { + mimetype: "{gpx=application/gpx+xml}" + }) + + + }) + } + }, + { + funcName: "export_as_geojson", + docs: "Exports the selected feature as GeoJson-file", + args: [], + constr: (state, tagSource) => { + const t = Translations.t.general.download; + + return new SubtleButton(Svg.download_ui(), + new Combine([t.downloadFeatureAsGeojson.SetClass("font-bold text-lg"), + t.downloadGeoJsonHelper.SetClass("subtle")]).SetClass("flex flex-col") + ).onClick(() => { + console.log("Exporting as Geojson") + const tags = tagSource.data + const feature = state.allElements.ContainingFeatures.get(tags.id) + const matchingLayer = state?.layoutToUse?.getMatchingLayer(tags) + const title = matchingLayer.title?.GetRenderValue(tags)?.Subs(tags)?.txt ?? "geojson" + const data = JSON.stringify(feature, null, " "); + Utils.offerContentsAsDownloadableFile(data, title + "_mapcomplete_export.geojson", { + mimetype: "application/vnd.geo+json" + }) + + + }) + } + }, + { + funcName: "open_in_iD", + docs: "Opens the current view in the iD-editor", + args: [], + 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", + args: [], + constr: state => { + return new SubtleButton( + Svg.delete_icon_svg().SetStyle("height: 1.5rem"), Translations.t.general.removeLocationHistory + ).onClick(() => { + state.historicalUserLocations.features.setData([]) + 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) => { + 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) => { + + const t = Translations.t.notes; + const textField = ValidatedTextField.ForType("text").ConstructInputElement({placeholder: t.addCommentPlaceholder}) + textField.SetClass("rounded-l border border-grey") + const txt = textField.GetValue() + + const addCommentButton = new SubtleButton(Svg.speech_bubble_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"] + 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"] + 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([ + new Toggle(addCommentButton, undefined, textField.GetValue().map(t => t !==undefined && t.length > 1)).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) + } + + }, + { + funcName:"title", + args: [], + docs:"Shows the title of the popup. Useful for some cases, e.g. 'What is phone number of {title()}?'", + example:"`What is the phone number of {title()}`, which might automatically become `What is the phone number of XYZ`.", + constr: (state, tagsSource, args, guistate) => + new VariableUiElement(tagsSource.map(tags => { + const layer = state.layoutToUse.getMatchingLayer(tags) + const title = layer?.title?.GetRenderValue(tags) + if(title === undefined){ + return undefined + } + return new SubstitutedTranslation(title, tagsSource, state) + })) + } + ] + + specialVisualizations.push(new AutoApplyButton(specialVisualizations)) + + return specialVisualizations; + } + } \ No newline at end of file diff --git a/UI/SubstitutedTranslation.ts b/UI/SubstitutedTranslation.ts index 69f57683f5..59d7ae50ba 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<any>, + state: FeaturePipelineState, mapping: Map<string, BaseUIElement> = undefined) { const extraMappings: SpecialVisualization[] = []; @@ -35,7 +36,7 @@ export class SubstitutedTranslation extends VariableUiElement { super( Locale.language.map(language => { - let txt = translation.textFor(language); + let txt = translation?.textFor(language); if (txt === undefined) { return undefined } @@ -50,10 +51,10 @@ 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}(${viz.args.join(", ")}) ${e}`).SetStyle("alert") + return new FixedUiElement(`Could not generate special rendering for ${viz.func.funcName}(${viz.args.join(", ")}) ${e}`).SetStyle("alert") } } )) diff --git a/UI/Wikipedia/WikidataPreviewBox.ts b/UI/Wikipedia/WikidataPreviewBox.ts index 525e102b55..7a94c4e02a 100644 --- a/UI/Wikipedia/WikidataPreviewBox.ts +++ b/UI/Wikipedia/WikidataPreviewBox.ts @@ -81,6 +81,7 @@ export default class WikidataPreviewBox extends VariableUiElement { })) } + // @ts-ignore public static WikidataResponsePreview(wikidata: WikidataResponse): BaseUIElement { @@ -138,10 +139,11 @@ export default class WikidataPreviewBox extends VariableUiElement { const key = extraProperty.property const display = extraProperty.display - const value: string[] = Array.from(wikidata.claims.get(key)) - if (value === undefined) { + if (wikidata.claims?.get(key) === undefined) { continue } + const value: string[] = Array.from(wikidata.claims.get(key)) + if (display instanceof Translation) { els.push(display.Subs({value: value.join(", ")}).SetClass("m-2")) continue diff --git a/UI/i18n/Translation.ts b/UI/i18n/Translation.ts index f3966508f7..30a0f74cb2 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)) { @@ -32,7 +35,7 @@ export class Translation extends BaseUIElement { get txt(): string { return this.textFor(Translation.forcedLanguage ?? Locale.language.data) - } + } static ExtractAllTranslationsFrom(object: any, context = ""): { context: string, tr: Translation }[] { const allTranslations: { context: string, tr: Translation }[] = [] @@ -66,6 +69,11 @@ export class Translation extends BaseUIElement { return new Translation(translations); } + Destroy() { + super.Destroy(); + this.isDestroyed = true; + } + public textFor(language: string): string { if (this.translations["*"]) { return this.translations["*"]; @@ -90,7 +98,11 @@ export class Translation extends BaseUIElement { InnerConstructElement(): HTMLElement { const el = document.createElement("span") + const self = this Locale.language.addCallbackAndRun(_ => { + if (self.isDestroyed) { + return true + } el.innerHTML = this.txt }) return el; @@ -113,57 +125,53 @@ export class Translation extends BaseUIElement { return langs; } + public AllValues(): string[] { + return this.SupportedLanguages().map(lng => this.translations[lng]); + } + public Subs(text: any): Translation { + return this.OnEveryLanguage((template, lang) => Utils.SubstituteKeys(template, text, lang)) + } + + public OnEveryLanguage(f: (s: string, language: string) => string): Translation { const newTranslations = {}; for (const lang in this.translations) { if (!this.translations.hasOwnProperty(lang)) { continue; } - let template: string = this.translations[lang]; - for (const k in text) { - if (!text.hasOwnProperty(k)) { - continue - } - const combined: (string)[] = []; - const parts = template.split("{" + k + "}"); - const el: string | BaseUIElement = text[k]; - if (el === undefined) { - continue; - } - let rtext: string = ""; - if (typeof (el) === "string") { - rtext = el; - } else if (typeof (el) === "number") { - // HUH? Where did that number come from? It might be a version number or something calculated - rtext = "" + el; - } else if (el["toISOString"] != undefined) { - // This is a date, probably the timestamp of the object - // @ts-ignore - const date: Date = el; - rtext = date.toLocaleString(); - } else if (el.ConstructElement === undefined) { - console.error("ConstructElement is not defined", el); - throw "ConstructElement is not defined, you are working with a " + (typeof el) + ":" + (el.constructor.name) - } else if (el["textFor"] !== undefined) { - // @ts-ignore - rtext = el.textFor(lang) - } else { - rtext = el.ConstructElement().innerHTML; - - } - for (let i = 0; i < parts.length - 1; i++) { - combined.push(parts[i]); - combined.push(rtext) - } - combined.push(parts[parts.length - 1]); - template = combined.join("") - } - newTranslations[lang] = template; + newTranslations[lang] = f(this.translations[lang], lang); } return new Translation(newTranslations); } + /** + * + * Given a translation such as `{en: "How much of bicycle_types are rented here}` (which is this translation) + * and a translation object `{ en: "electrical bikes" }`, plus the translation specification `bicycle_types`, will return + * a new translation: + * `{en: "How much electrical bikes are rented here?"}` + * + * @param translationObject + * @param stringToReplace + * @constructor + */ + public Fuse(translationObject: Translation, stringToReplace: string): Translation{ + const translations = this.translations + const newTranslations = {} + for (const lang in translations) { + const target = translationObject.textFor(lang) + if(target === undefined){ + continue + } + if(typeof target !== "string"){ + throw "Invalid object in Translation.fuse: translationObject['"+lang+"'] is not a string, it is: "+JSON.stringify(target) + } + newTranslations[lang] = this.translations[lang].replaceAll(stringToReplace, target) + } + return new Translation(newTranslations) + } + public replace(a: string, b: string) { if (a.startsWith("{") && a.endsWith("}")) { a = a.substr(1, a.length - 2); @@ -227,7 +235,7 @@ export class Translation extends BaseUIElement { } return allIcons.filter(icon => icon != undefined) } - + AsMarkdown(): string { return this.txt } diff --git a/UI/i18n/Translations.ts b/UI/i18n/Translations.ts index 6052d8b287..72ed3a4e5f 100644 --- a/UI/i18n/Translations.ts +++ b/UI/i18n/Translations.ts @@ -1,12 +1,13 @@ import {FixedUiElement} from "../Base/FixedUiElement"; -import AllTranslationAssets from "../../AllTranslationAssets"; import {Translation} from "./Translation"; import BaseUIElement from "../BaseUIElement"; +import * as known_languages from "../../assets/generated/used_languages.json" +import CompiledTranslations from "../../assets/generated/CompiledTranslations"; export default class Translations { - static t = AllTranslationAssets.t; - + static t = CompiledTranslations.t; + private static knownLanguages = new Set(known_languages.languages) constructor() { throw "Translations is static. If you want to intitialize a new translation, use the singular form" } @@ -89,4 +90,11 @@ export default class Translations { } + static isProbablyATranslation(transl: any) { + if(typeof transl !== "object"){ + return false; + } + // is a weird key found? + return !Object.keys(transl).some(key => !this.knownLanguages.has(key)) + } } diff --git a/Utils.ts b/Utils.ts index 1141259267..a39f34e889 100644 --- a/Utils.ts +++ b/Utils.ts @@ -21,11 +21,56 @@ 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 + +If you want to import a dataset, make sure that: + +1. The dataset to import has a suitable license +2. The community has been informed of the import +3. All other requirements of the [import guidelines](https://wiki.openstreetmap.org/wiki/Import/Guidelines) have been followed + +There are also some technicalities in your theme to keep in mind: + +1. The new feature will be added and will flow through the program as any other new point as if it came from OSM. + This means that there should be a layer which will match the new tags and which will display it. +2. The original feature from your geojson layer will gain the tag '_imported=yes'. + This should be used to change the appearance or even to hide it (eg by changing the icon size to zero) +3. There should be a way for the theme to detect previously imported points, even after reloading. + A reference number to the original dataset is an excellent way to do this +4. When importing ways, the theme creator is also responsible of avoiding overlapping ways. + +#### Disabled in unofficial themes + +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<string, { promise: Promise<any>, 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" + } + for (let i = 0; i < specs.length; i++) { + const spec = specs[i]; + let arg = args[i]?.trim(); + if (arg === undefined || arg === "") { + arg = spec.defaultValue + } + parsed[spec.name] = arg + } + + return parsed; + } + static EncodeXmlValue(str) { if (typeof str !== "string") { str = "" + str @@ -92,14 +137,7 @@ Note that these values can be prepare with javascript in the theme by using a [c } public static NoNull<T>(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<string, number> { @@ -144,21 +182,21 @@ Note that these values can be prepare with javascript in the theme by using a [c 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<string>(); for (const string of arr) { - if(seen.has(string)){ + if (seen.has(string)) { newArr.push(string) } seen.add(string) } return newArr; } - + public static Identical<T>(t1: T[], t2: T[], eq?: (t: T, t0: T) => boolean): boolean { if (t1.length !== t2.length) { return false @@ -191,7 +229,14 @@ Note that these values can be prepare with javascript in the theme by using a [c return [a.substr(0, index), a.substr(index + sep.length)]; } - public static SubstituteKeys(txt: string | undefined, tags: any): string | undefined { + /** + * 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 } @@ -202,13 +247,33 @@ Note that these values can be prepare with javascript in the theme by using a [c while (match) { const key = match[1] let v = tags[key] - if(v !== undefined ){ - if(typeof v !== "string"){ - v = ""+v + if (v !== undefined) { + + if (v["toISOString"] != undefined) { + // This is a date, probably the timestamp of the object + // @ts-ignore + const date: Date = el; + v = date.toISOString() + } + + 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 = (<HTMLElement>v.InnerConstructElement())?.innerText + } + + if (typeof v !== "string") { + v = "" + v } v = v.replace(/\n/g, "<br/>") + } else { + // v === undefined + v = "" } - txt = txt.replace("{" + key + "}", v ?? "") + txt = txt.replace("{" + key + "}", v) match = txt.match(regex) } @@ -236,10 +301,20 @@ Note that these values can be prepare with javascript in the theme by using a [c * @return the second parameter as is */ static Merge(source: any, target: any) { + if (target === null) { + return source + } + for (const key in source) { if (!source.hasOwnProperty(key)) { continue } + if (key.startsWith("=")) { + const trimmedKey = key.substr(1); + target[trimmedKey] = source[key] + continue + } + if (key.startsWith("+") || key.endsWith("+")) { const trimmedKey = key.replace("+", ""); const sourceV = source[key]; @@ -256,10 +331,7 @@ Note that these values can be prepare with javascript in the theme by using a [c continue; } - const sourceV = source[key]; - if(target === null){ - return source - } + const sourceV = source[key] const targetV = target[key] if (typeof sourceV === "object") { if (sourceV === null) { @@ -278,6 +350,113 @@ Note that these values can be prepare with javascript in the theme by using a [c return target; } + + /** + * Walks the specified path into the object till the end. + * + * If a list is encountered, this is tranparently walked recursively on every object. + * + * The leaf objects are replaced by the function + */ + public static WalkPath(path: string[], object: any, replaceLeaf: ((leaf: any, travelledPath: string[]) => any), travelledPath: string[] = []) { + const head = path[0] + if (path.length === 1) { + // We have reached the leaf + const leaf = object[head]; + if (leaf !== undefined) { + if (Array.isArray(leaf)) { + object[head] = leaf.map(o => replaceLeaf(o, travelledPath)) + } else { + object[head] = replaceLeaf(leaf, travelledPath) + } + } + return + + } + const sub = object[head] + if (sub === undefined) { + return; + } + if (typeof sub !== "object") { + return; + } + if (Array.isArray(sub)) { + sub.forEach((el, i) => Utils.WalkPath(path.slice(1), el, replaceLeaf, [...travelledPath, head, "" + i])) + return; + } + Utils.WalkPath(path.slice(1), sub, replaceLeaf, [...travelledPath, head]) + } + + /** + * Walks the specified path into the object till the end. + * If a list is encountered, this is tranparently walked recursively on every object. + * + * The leaf objects are collected in the list + */ + public static CollectPath(path: string[], object: any, collectedList: { leaf: any, path: string[] }[] = [], travelledPath: string[] = []): { leaf: any, path: string[] }[] { + if (object === undefined || object === null) { + return collectedList; + } + const head = path[0] + travelledPath = [...travelledPath, head] + if (path.length === 1) { + // We have reached the leaf + const leaf = object[head]; + if (leaf === undefined || leaf === null) { + return collectedList + } + if (Array.isArray(leaf)) { + for (let i = 0; i < (<any[]>leaf).length; i++){ + const l = (<any[]>leaf)[i]; + collectedList.push({leaf: l, path: [...travelledPath, ""+i]}) + } + } else { + collectedList.push({leaf, path: travelledPath}) + } + return collectedList + } + const sub = object[head] + if (sub === undefined || sub === null) { + return collectedList; + } + + if (Array.isArray(sub)) { + sub.forEach((el, i) => Utils.CollectPath(path.slice(1), el, collectedList, [...travelledPath, "" + i])) + return collectedList; + } + if (typeof sub !== "object") { + return collectedList; + } + return Utils.CollectPath(path.slice(1), sub, collectedList, travelledPath) + } + + /** + * Apply a function on every leaf of the JSON; used to rewrite parts of the JSON + * @param json + * @param f + * @constructor + */ + 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<K, V>(dict: Map<K, V>, k: K, v: () => V) { let found = dict.get(k); if (found !== undefined) { @@ -409,7 +588,10 @@ Note that these values can be prepare with javascript in the theme by using a [c } const data = await Utils.download(url, Utils.Merge({"accept": "application/json"}, headers ?? {})) try { - return JSON.parse(data) + if (typeof data === "string") { + return JSON.parse(data) + } + return data } catch (e) { console.error("Could not parse ", data, "due to", e, "\n", e.stack) throw e; @@ -528,6 +710,47 @@ Note that these values can be prepare with javascript in the theme by using a [c return "https://osmcha.org/?filters=" + encodeURIComponent("{" + osmcha_link + "}") } + /** + * Deepclone an object by serializing and deserializing it + * @param x + * @constructor + */ + static Clone<T>(x: T): T { + if (x === undefined) { + return undefined; + } + return JSON.parse(JSON.stringify(x)); + } + + public static ParseDate(str: string): Date { + if (str.endsWith(" UTC")) { + str = str.replace(" UTC", "+00") + } + return new Date(str) + } + + public static levenshteinDistance(str1: string, str2: string) { + const track = Array(str2.length + 1).fill(null).map(() => + Array(str1.length + 1).fill(null)); + for (let i = 0; i <= str1.length; i += 1) { + track[0][i] = i; + } + for (let j = 0; j <= str2.length; j += 1) { + track[j][0] = j; + } + for (let j = 1; j <= str2.length; j += 1) { + for (let i = 1; i <= str1.length; i += 1) { + const indicator = str1[i - 1] === str2[j - 1] ? 0 : 1; + track[j][i] = Math.min( + track[j][i - 1] + 1, // deletion + track[j - 1][i] + 1, // insertion + track[j - 1][i - 1] + indicator, // substitution + ); + } + } + return track[str2.length][str1.length]; + } + 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); } @@ -554,5 +777,6 @@ Note that these values can be prepare with javascript in the theme by using a [c b: parseInt(hex.substr(5, 2), 16), } } + } diff --git a/all_themes_index.ts b/all_themes_index.ts new file mode 100644 index 0000000000..12abde8c54 --- /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/contributors.json b/assets/contributors.json index fab92fcd91..dc33c379b7 100644 --- a/assets/contributors.json +++ b/assets/contributors.json @@ -1,352 +1 @@ -{ - "contributors": [ - { - "contributor": "pietervdvn", - "commits": 1119 - }, - { - "contributor": "Pieter Vander Vennet", - "commits": 784 - }, - { - "contributor": "Weblate", - "commits": 47 - }, - { - "contributor": "Robin van der Linde", - "commits": 47 - }, - { - "contributor": "Tobias", - "commits": 35 - }, - { - "contributor": "Christian Neumann", - "commits": 33 - }, - { - "contributor": "Win Olario", - "commits": 31 - }, - { - "contributor": "Pieter Fiers", - "commits": 31 - }, - { - "contributor": "karelleketers", - "commits": 26 - }, - { - "contributor": "Ward", - "commits": 24 - }, - { - "contributor": "Artem", - "commits": 23 - }, - { - "contributor": "Sebastian Kürten", - "commits": 19 - }, - { - "contributor": "Arno Deceuninck", - "commits": 18 - }, - { - "contributor": "pgm-chardelv1", - "commits": 17 - }, - { - "contributor": "Joost", - "commits": 17 - }, - { - "contributor": "Marco", - "commits": 16 - }, - { - "contributor": "Allan Nordhøy", - "commits": 16 - }, - { - "contributor": "ToastHawaii", - "commits": 15 - }, - { - "contributor": "Supaplex", - "commits": 14 - }, - { - "contributor": "J. Lavoie", - "commits": 14 - }, - { - "contributor": "WaldiS", - "commits": 13 - }, - { - "contributor": "Bavo Vanderghote", - "commits": 12 - }, - { - "contributor": "LiamSimons", - "commits": 10 - }, - { - "contributor": "Jacque Fresco", - "commits": 9 - }, - { - "contributor": "Midgard", - "commits": 8 - }, - { - "contributor": "Mateusz Konieczny", - "commits": 8 - }, - { - "contributor": "Irina", - "commits": 8 - }, - { - "contributor": "yopaseopor", - "commits": 7 - }, - { - "contributor": "Hosted Weblate", - "commits": 7 - }, - { - "contributor": "Flo Edelmann", - "commits": 7 - }, - { - "contributor": "Binnette", - "commits": 7 - }, - { - "contributor": "Vinicius", - "commits": 6 - }, - { - "contributor": "pelderson", - "commits": 6 - }, - { - "contributor": "lvgx", - "commits": 6 - }, - { - "contributor": "dependabot[bot]", - "commits": 6 - }, - { - "contributor": "Alexey Shabanov", - "commits": 6 - }, - { - "contributor": "Nikolay Korotkiy", - "commits": 5 - }, - { - "contributor": "LeJun", - "commits": 5 - }, - { - "contributor": "David Haberthür", - "commits": 5 - }, - { - "contributor": "William Weber Berrutti", - "commits": 4 - }, - { - "contributor": "Ward Beyens", - "commits": 4 - }, - { - "contributor": "SiegbjornSitumeang", - "commits": 4 - }, - { - "contributor": "seppesantens", - "commits": 4 - }, - { - "contributor": "Polgár Sándor", - "commits": 4 - }, - { - "contributor": "Jan Zabel", - "commits": 4 - }, - { - "contributor": "Hiroshi Miura", - "commits": 4 - }, - { - "contributor": "Fabio Bettani", - "commits": 4 - }, - { - "contributor": "Wiktor Przybylski", - "commits": 3 - }, - { - "contributor": "vankos", - "commits": 3 - }, - { - "contributor": "Reza Almanda", - "commits": 3 - }, - { - "contributor": "Léo Villeveygoux", - "commits": 3 - }, - { - "contributor": "JCGF-OSM", - "commits": 3 - }, - { - "contributor": "Erik Palm", - "commits": 3 - }, - { - "contributor": "Eduardo Addad de Oliveira", - "commits": 3 - }, - { - "contributor": "快乐的老鼠宝宝", - "commits": 2 - }, - { - "contributor": "Stanislas Gueniffey", - "commits": 2 - }, - { - "contributor": "riiga", - "commits": 2 - }, - { - "contributor": "pbarban", - "commits": 2 - }, - { - "contributor": "mic140", - "commits": 2 - }, - { - "contributor": "Leo Alcaraz", - "commits": 2 - }, - { - "contributor": "Jose Luis Infante", - "commits": 2 - }, - { - "contributor": "Jeff Huang", - "commits": 2 - }, - { - "contributor": "Heiko", - "commits": 2 - }, - { - "contributor": "graveelius", - "commits": 2 - }, - { - "contributor": "Damian Tokarski", - "commits": 2 - }, - { - "contributor": "Charlotte Delvaux", - "commits": 2 - }, - { - "contributor": "Tomas Fiers", - "commits": 1 - }, - { - "contributor": "Thibault Molleman", - "commits": 1 - }, - { - "contributor": "tbowdecl97", - "commits": 1 - }, - { - "contributor": "Seppe Santens", - "commits": 1 - }, - { - "contributor": "Sebastian", - "commits": 1 - }, - { - "contributor": "Sean Young", - "commits": 1 - }, - { - "contributor": "Schouppe Joost", - "commits": 1 - }, - { - "contributor": "root", - "commits": 1 - }, - { - "contributor": "Rodrigo Tavares", - "commits": 1 - }, - { - "contributor": "riQQ", - "commits": 1 - }, - { - "contributor": "Raphael Das Gupta", - "commits": 1 - }, - { - "contributor": "Noémie", - "commits": 1 - }, - { - "contributor": "mozita", - "commits": 1 - }, - { - "contributor": "Michał Targoński", - "commits": 1 - }, - { - "contributor": "Luna Jernberg", - "commits": 1 - }, - { - "contributor": "liimee", - "commits": 1 - }, - { - "contributor": "Iváns", - "commits": 1 - }, - { - "contributor": "Eric Armijo", - "commits": 1 - }, - { - "contributor": "Damian Pułka", - "commits": 1 - }, - { - "contributor": "Carlos Ramos Carreño", - "commits": 1 - }, - { - "contributor": "Beardhatcode", - "commits": 1 - } - ] -} +{"contributors":[{"commits":3145,"contributor":"Pieter Vander Vennet"},{"commits":64,"contributor":"Robin van der Linde"},{"commits":38,"contributor":"Tobias"},{"commits":33,"contributor":"Christian Neumann"},{"commits":31,"contributor":"Win Olario"},{"commits":31,"contributor":"Pieter Fiers"},{"commits":26,"contributor":"karelleketers"},{"commits":24,"contributor":"Ward"},{"commits":20,"contributor":"Joost"},{"commits":19,"contributor":"Sebastian Kürten"},{"commits":18,"contributor":"Arno Deceuninck"},{"commits":17,"contributor":"pgm-chardelv1"},{"commits":16,"contributor":"Hosted Weblate"},{"commits":15,"contributor":"ToastHawaii"},{"commits":13,"contributor":"riQQ"},{"commits":13,"contributor":"Nicole"},{"commits":12,"contributor":"Tobias Jordans"},{"commits":12,"contributor":"Bavo Vanderghote"},{"commits":10,"contributor":"LiamSimons"},{"commits":8,"contributor":"dependabot[bot]"},{"commits":8,"contributor":"Midgard"},{"commits":7,"contributor":"RobJN"},{"commits":7,"contributor":"Mateusz Konieczny"},{"commits":7,"contributor":"Flo Edelmann"},{"commits":7,"contributor":"Binnette"},{"commits":7,"contributor":"yopaseopor"},{"commits":6,"contributor":"pelderson"},{"commits":5,"contributor":"David Haberthür"},{"commits":4,"contributor":"Ward Beyens"},{"commits":3,"contributor":"Léo Villeveygoux"},{"commits":2,"contributor":"arrival-spring"},{"commits":2,"contributor":"Strubbl"},{"commits":2,"contributor":"RayBB"},{"commits":2,"contributor":"Charlotte Delvaux"},{"commits":2,"contributor":"Supaplex"},{"commits":2,"contributor":"pbarban"},{"commits":2,"contributor":"graveelius"},{"commits":2,"contributor":"Stanislas Gueniffey"},{"commits":1,"contributor":"Jiří Podhorecký"},{"commits":1,"contributor":"Mark Rogerson"},{"commits":1,"contributor":"nicole_s"},{"commits":1,"contributor":"SC"},{"commits":1,"contributor":"Raphael Das Gupta"},{"commits":1,"contributor":"Nikolay Korotkiy"},{"commits":1,"contributor":"Seppe Santens"},{"commits":1,"contributor":"root"},{"commits":1,"contributor":"Allan Nordhøy"},{"commits":1,"contributor":"快乐的老鼠宝宝"},{"commits":1,"contributor":"Sebastian"},{"commits":1,"contributor":"Hiroshi Miura"},{"commits":1,"contributor":"riiga"},{"commits":1,"contributor":"Vinicius"},{"commits":1,"contributor":"Alexey Shabanov"},{"commits":1,"contributor":"Polgár Sándor"},{"commits":1,"contributor":"SiegbjornSitumeang"},{"commits":1,"contributor":"Marco"},{"commits":1,"contributor":"mozita"},{"commits":1,"contributor":"Schouppe Joost"},{"commits":1,"contributor":"Thibault Molleman"},{"commits":1,"contributor":"Noémie"},{"commits":1,"contributor":"Tomas Fiers"},{"commits":1,"contributor":"tbowdecl97"}]} \ No newline at end of file diff --git a/assets/layers/address/address.json b/assets/layers/address/address.json new file mode 100644 index 0000000000..d06997de97 --- /dev/null +++ b/assets/layers/address/address.json @@ -0,0 +1,238 @@ +{ + "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", + "fr": "Adresses connues d’OpenStreetMap", + "ru": "Известные адреса в OSM", + "id": "Alamat yang dikenal di OSM", + "es": "Direcciones conocidas en OSM", + "zh_Hans": "OSM中已知的地址" + }, + "minzoom": 18, + "source": { + "osmTags": { + "or": [ + "addr:housenumber~*", + "addr:street~*" + ] + } + }, + "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]" + ], + "title": { + "render": { + "en": "Known address", + "de": "Bekannte Adresse", + "hu": "Ismert cím", + "nl": "Bekend adres", + "fr": "Adresse connue", + "pl": "Znany adres", + "ru": "Известный адрес", + "es": "Domicilio conocido", + "zh_Hans": "已知的地址" + } + }, + "description": { + "en": "Addresses", + "nl": "Adressen", + "de": "Adressen", + "ru": "Адреса", + "zh_Hant": "地址", + "hu": "Címek", + "fr": "Adresses", + "pl": "Adresy", + "id": "Alamat", + "es": "Direcciones", + "zh_Hans": "地址" + }, + "tagRenderings": [ + { + "id": "housenumber", + "render": { + "en": "The housenumber is <b>{addr:housenumber}</b>", + "nl": "Het huisnummer is <b>{addr:housenumber}</b>", + "de": "Die Hausnummer ist <b>{addr:housenumber}</b>", + "hu": "A házszám: <b>{addr:housenumber}</b>", + "fr": "Son numéro est le <b>{addr:housenumber}</b>", + "pl": "Numer tego domu to <b>{addr:housenumber}</b>", + "ru": "Номер дома <b>{addr:housenumber}</b>", + "zh_Hans": "门牌号是<b>{addr:housenumber}</b>" + }, + "question": { + "en": "What is the number of this house?", + "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": "Какой номер у этого дома?", + "es": "¿Cuál es el número de esta casa?", + "zh_Hans": "这个屋子的门牌号是多少?" + }, + "freeform": { + "key": "addr:housenumber", + "addExtraTags": [ + "nohousenumber=" + ] + }, + "mappings": [ + { + "if": { + "and": [ + "nohousenumber=yes" + ] + }, + "then": { + "en": "This building has no house number", + "nl": "Dit gebouw heeft geen huisnummer", + "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": "У этого здания нет номера", + "id": "Bangunan ini tidak memiliki nomor rumah", + "es": "Esta edificación no tiene número", + "zh_Hans": "这个建筑物没有门牌号" + } + } + ] + }, + { + "id": "street", + "render": { + "en": "This address is in street <b>{addr:street}</b>", + "de": "Diese Adresse befindet sich in der Straße <b>{addr:street}</b>", + "hu": "Ez a cím a következő utcában van: <b>{addr:street}</b>", + "nl": "Dit adres bevindt zich in de straat <b>{addr:street}</b>", + "fr": "Le nom de la voie est <b>{addr:street}</b>", + "pl": "Ten adres znajduje się na ulicy <b>{addr:street}</b>", + "zh_Hans": "这个地址位于<b>{addr:street}</b>街" + }, + "question": { + "en": "What street is this address located in?", + "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": "Какая эта улица?", + "es": "¿En qué calle se encuentra esta dirección?", + "zh_Hans": "这个地址位于哪条街道?" + }, + "freeform": { + "key": "addr:street" + }, + "mappings": [ + { + "if": "addr:street:={_closest_street:0:name}", + "then": "Located in <b>{_closest_street:0:name}</b>", + "hideInAnswer": "_closest_street:0:name=" + }, + { + "if": "addr:street:={_closest_street:1:name}", + "then": "Located in <b>{_closest_street:1:name}</b>", + "hideInAnswer": "_closest_street:1:name=" + }, + { + "if": "addr:street:={_closest_street:2:name}", + "then": "Located in <b>{_closest_street:2:name}</b>", + "hideInAnswer": "_closest_street:2:name=" + } + ], + "condition": { + "and": [ + "nohousenumber!~yes" + ] + } + }, + { + "id": "fixme", + "render": "<b>Fixme description</b>{fixme}", + "question": { + "en": "What should be fixed here? Please explain", + "zh_Hant": "這裡需要修什麼?請直接解釋", + "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ć", + "id": "Apa yang harus diperbaiki di sini? Tolong jelaskan", + "es": "¿Qué debe corregirse aquí? Expóngalo", + "nl": "Wat moet hier gecorrigeerd worden? Leg het uit", + "zh_Hans": "这里应被如何修复?请做出解释" + }, + "freeform": { + "key": "fixme" + }, + "mappings": [ + { + "if": "fixme=", + "then": "No fixme - write something here to explain complicated cases" + } + ] + } + ], + "mapRendering": [ + { + "label": { + "render": "<div style='margin-top: -42px; color: white' class='rounded-full p-1 font-bold relative'>{addr:housenumber}</div>", + "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": "8" + } + } + ] +} \ No newline at end of file diff --git a/assets/layers/address/housenumber_blank.svg b/assets/layers/address/housenumber_blank.svg new file mode 100644 index 0000000000..9fe6b0f6a4 --- /dev/null +++ b/assets/layers/address/housenumber_blank.svg @@ -0,0 +1,7 @@ +<?xml version="1.0" encoding="UTF-8" standalone="yes"?> +<svg xmlns="http://www.w3.org/2000/svg" width="374px" height="192px" viewBox="0 0 374 192" version="1.1"> + <g id="surface1"> + <path style=" stroke:none;fill-rule:nonzero;fill:rgb(28.627452%,35.294119%,67.843139%);fill-opacity:1;" d="M 30.789062 0 L 343.210938 0 C 360.152344 0 373.792969 13.683594 373.792969 30.683594 L 373.792969 161.316406 C 373.792969 178.316406 360.152344 192 343.210938 192 L 30.789062 192 C 13.847656 192 0.210938 178.316406 0.210938 161.316406 L 0.210938 30.683594 C 0.210938 13.683594 13.847656 0 30.789062 0 Z M 30.789062 0 "/> + <path style="fill:none;stroke-width:5.0152;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:4;" d="M 8.748 22.773565 L 8.748 65.005769 C 15.786133 65.005769 22.824266 72.045066 22.824266 79.084363 L 148.642328 79.084363 C 148.642328 72.045066 155.68046 65.005769 162.720387 65.005769 L 162.720387 22.773565 C 155.68046 22.773565 148.642328 15.734268 148.642328 8.694971 L 22.824266 8.694971 C 22.824266 15.734268 15.786133 22.773565 8.748 22.773565 Z M 8.748 22.773565 " transform="matrix(2.177313,0,0,2.184722,0.210677,0.000000000000015502)"/> + </g> +</svg> \ No newline at end of file diff --git a/assets/layers/address/license_info.json b/assets/layers/address/license_info.json new file mode 100644 index 0000000000..8ea1617ec5 --- /dev/null +++ b/assets/layers/address/license_info.json @@ -0,0 +1,10 @@ +[ + { + "path": "housenumber_blank.svg", + "license": "CC0", + "authors": [ + "Pieter Vander Vennet" + ], + "sources": [] + } +] \ No newline at end of file diff --git a/assets/layers/ambulancestation/ambulancestation.json b/assets/layers/ambulancestation/ambulancestation.json new file mode 100644 index 0000000000..f8e86e9f43 --- /dev/null +++ b/assets/layers/ambulancestation/ambulancestation.json @@ -0,0 +1,294 @@ +{ + "id": "ambulancestation", + "name": { + "en": "Map of ambulance stations", + "ja": "救急ステーションの地図", + "ru": "Карта станций скорой помощи", + "fr": "Couche des ambulances", + "de": "Karte der Rettungswachen", + "it": "Carta delle stazioni delle ambulanze", + "hu": "Mentőállomás-térkép", + "nl": "Kaart van ambulancestations", + "zh_Hans": "救护车站地图" + }, + "minzoom": 12, + "source": { + "osmTags": { + "and": [ + "emergency=ambulance_station" + ] + } + }, + "title": { + "render": { + "en": "Ambulance Station", + "ru": "Станция скорой помощи", + "ja": "救急ステーション", + "fr": "Station d’ambulances", + "de": "Rettungswache", + "it": "Stazione delle ambulanze", + "hu": "Mentőállomás", + "nl": "Ambulancestation" + } + }, + "description": { + "en": "An ambulance station is an area for storage of ambulance vehicles, medical equipment, personal protective equipment, and other medical supplies.", + "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.", + "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": "Станция скорой помощи это полигон для хранения транспорта, медицинского оборудования, средств индивидуальной защиты и других медицинских принадлежностей.", + "nl": "Een ambulancestation is een plaats waar ambulances, medisch materiaal, persoonlijk beschermingsmateriaal en aanverwanten worden bewaard." + }, + "tagRenderings": [ + { + "id": "ambulance-name", + "freeform": { + "key": "name" + }, + "question": { + "en": "What is the name of this ambulance station?", + "ja": "この救急ステーションの名前は何ですか?", + "ru": "Как называется эта станция скорой помощи?", + "fr": "Quel est le nom de cette station ?", + "it": "Qual è il nome di questa stazione delle ambulanze?", + "de": "Wie heißt diese Rettungswache?", + "hu": "Mi a neve ennek a menőtállomásnak?", + "nl": "Hoe heet dit ambulancestation?" + }, + "render": { + "en": "This station is called {name}.", + "ja": "このステーションの名前は{name}です。", + "ru": "Эта станция называется {name}.", + "fr": "Cette station s’appelle {name}.", + "it": "Questa stazione è chiamata {name}.", + "de": "Diese Rettungswache heißt {name}.", + "hu": "A mentőállomás neve: {name}.", + "nl": "Dit station heet {name}." + } + }, + { + "id": "ambulance-street", + "freeform": { + "key": "addr:street" + }, + "question": { + "en": " What is the street name where the station located?", + "ja": " 救急ステーションの所在地はどこですか?", + "ru": " По какому адресу расположена эта станция?", + "fr": " Quel est le nom de la rue où la station se situe ?", + "it": " Come si chiama la strada in cui si trova questa stazione?", + "de": " Wie lautet der Name der Straße, in der sich die Rettungswache befindet?", + "hu": " Mi a neve annak az utcának, amelyben az állomás található?", + "nl": " In welke straat ligt dit station?" + }, + "render": { + "en": "This station is along a highway called {addr:street}.", + "ja": "{addr:street} 沿いにあります。", + "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}.", + "hu": "Ez az állomás a következő utcában van: {addr:street}.", + "nl": "Straat waar dit station ligt: {addr:street}" + } + }, + { + "id": "ambulance-place", + "question": { + "en": "Where is the station located? (e.g. name of neighborhood, villlage, or town)", + "ja": "このステーションの住所は?(例: 地区、村、または町の名称)", + "ru": "Где расположена станция? (напр., название населённого пункта)", + "fr": "Dans quelle localité la station est-elle située ?", + "it": "Dove si trova la stazione? (ad es. quartiere, paese o città)", + "de": "Wo befindet sich die Rettungswache? (z. B. Name von Stadtviertel, Dorf oder Stadt)", + "hu": "Hol található az állomás? (Pl. a falu, kisváros vagy városrész neve.)", + "nl": "Waar ligt het station? (v.b. naam van de buurt, dorp of stad)" + }, + "freeform": { + "key": "addr:place" + }, + "render": { + "en": "This station is found within {addr:place}.", + "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}.", + "hu": "Ez az állomás itt található: {addr:place}.", + "nl": "Dit station ligt in {addr:place}." + } + }, + { + "id": "ambulance-agency", + "question": { + "en": "What agency operates this station?", + "ja": "このステーションを運営しているのはどこですか?", + "fr": "Quel est l’exploitant de la station ?", + "it": "Quale agenzia gestisce questa stazione?", + "de": "Welches Unternehmen betreibt diese Rettungswache?", + "hu": "Milyen szervezet működteti ezt az állomást?", + "ru": "Какая организация управляет этой станцией?", + "nl": "Welke organisatie beheert dit station?" + }, + "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}.", + "hu": "Az állomás üzemeltetője: {operator}.", + "ru": "Эта станция управляется {operator}.", + "nl": "Dit station wordt beheerd door {operator}." + }, + "freeform": { + "key": "operator" + }, + "mappings": [] + }, + { + "id": "ambulance-operator-type", + "question": { + "en": "How is the station operator classified?", + "ja": "ステーションの運営の分類は?", + "fr": "Quel est le type d’exploitant ?", + "it": "Com’è classificato il gestore della stazione?", + "de": "Wie kann der Betreiber der Rettungswache eingestuft werden?", + "hu": "Hogyan sorolható be az állomás üzemeltetője?", + "nl": "Wat voor een organisatie is de beheerder van dit station?" + }, + "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}.", + "hu": "Az üzemeltető egy {operator:type} jellegű szervezet.", + "nl": "De beheerder is van het type {operator:type}." + }, + "freeform": { + "key": "operator:type" + }, + "mappings": [ + { + "if": { + "and": [ + "operator:type=government" + ] + }, + "then": { + "en": "The station is operated by the government.", + "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.", + "hu": "A mentőállomást a kormány üzemelteti.", + "ru": "Станция управляется правительством.", + "nl": "Dit station wordt beheerd door de overheid." + } + }, + { + "if": { + "and": [ + "operator:type=community" + ] + }, + "then": { + "en": "The station is operated by a community-based, or informal organization.", + "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.", + "hu": "Mentőállomást egy közösségi vagy nem hivatalos szervezet működteti.", + "ru": "Станция управляется волонтёрами или частной организацией.", + "nl": "Dit station wordt beheerd door een informele of community organisatie." + } + }, + { + "if": { + "and": [ + "operator:type=ngo" + ] + }, + "then": { + "en": "The station is operated by a formal group of volunteers.", + "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.", + "hu": "A mentőállomást egy önkéntesekből álló hivatalos csoport működteti.", + "nl": "Dit station wordt beheerd door een formele groep vrijwilligers." + } + }, + { + "if": { + "and": [ + "operator:type=private" + ] + }, + "then": { + "en": "The station is privately operated.", + "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.", + "hu": "Az állomást egy magánkézben lévő szervezet működteti.", + "nl": "Dit station wordt beheerd door een privé-organisatie." + } + } + ] + }, + "images" + ], + "presets": [ + { + "tags": [ + "emergency=ambulance_station" + ], + "title": { + "en": "Ambulance station", + "ru": "Станция скорой помощи", + "ja": "救急ステーション(消防署)", + "fr": "Station d’ambulances", + "de": "Rettungswache", + "it": "Stazione delle ambulanze", + "hu": "Mentőállomás", + "nl": "Ambulancestation", + "zh_Hans": "救护车站" + }, + "description": { + "en": "Add an ambulance station to the map", + "ja": "救急ステーション(消防署)をマップに追加する", + "ru": "Добавить станцию скорой помощи на карту", + "fr": "Ajouter une station d’ambulances à la carte", + "de": "Eine Rettungsstation der Karte hinzufügen", + "it": "Aggiungi una stazione delle ambulanza alla mappa", + "hu": "Mentőállomás hozzáadása a térképhez", + "nl": "Voeg een ambulancestation toe aan de kaart", + "zh_Hans": "向地图中添加一个救护车站" + } + } + ], + "mapRendering": [ + { + "icon": { + "render": "./assets/themes/hailhydrant/Twemoji_1f691.svg" + }, + "iconSize": { + "render": "35,35,center" + }, + "location": [ + "point", + "centroid" + ] + }, + { + "color": { + "render": "#00f" + }, + "width": { + "render": "1" + } + } + ] +} \ No newline at end of file diff --git a/assets/layers/artwork/artwork.json b/assets/layers/artwork/artwork.json index 3969e0e2dc..bffc6f05f1 100644 --- a/assets/layers/artwork/artwork.json +++ b/assets/layers/artwork/artwork.json @@ -11,7 +11,10 @@ "es": "Obras de arte", "ja": "美術品", "zh_Hant": "藝術品", - "nb_NO": "Kunstverk" + "nb_NO": "Kunstverk", + "pt": "Obras de arte", + "hu": "Műalkotások", + "pl": "Dzieła sztuki" }, "source": { "osmTags": "tourism=artwork" @@ -48,7 +51,7 @@ "id": "Karya Seni <i>{name}</i>", "it": "Opera <i>{name}</i>", "ru": "Художественная работа <i>{name}</i>", - "es": "Obra de arte <i>{nombre}</i>", + "es": "Obra de arte <i>{name}</i>", "ja": "アートワーク <i>{name}</i>", "zh_Hant": "藝術品<i>{name}</i>", "fi": "Taideteos <i>{name}</i>", @@ -73,7 +76,9 @@ "es": "Diversas piezas de obras de arte", "ja": "多様な作品", "zh_Hant": "不同類型的藝術品", - "id": "Beragam karya seni" + "id": "Beragam karya seni", + "pt": "Diversas obras de arte", + "hu": "Különféle műalkotások" }, "minzoom": 12, "presets": [ @@ -117,20 +122,26 @@ "ja": "これは{artwork_type}です", "zh_Hant": "這是 {artwork_type}", "nb_NO": "Dette er et kunstverk av typen {artwork_type}", - "id": "Ini adalah {artwork_type}" + "id": "Ini adalah {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?", "nl": "Wat voor soort kunstwerk is dit?", - "fr": "Quel est le type de cette œuvre d'art?", + "fr": "Quel est le type de cette œuvre d'art ?", "de": "Was ist die Art dieses Kunstwerks?", "it": "Che tipo di opera d’arte è questo?", "ru": "К какому типу относится эта работа?", - "es": "Cuál es el tipo de esta obra de arte?", + "es": "¿Qué tipo de obra es esta pieza?", "ja": "この作品の種類は何ですか?", "zh_Hant": "這是什麼類型的藝術品?", "nb_NO": "Hvilken type kunstverk er dette?", - "id": "Apa jenis karya seni ini?" + "id": "Apa jenis karya seni ini?", + "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", @@ -151,7 +162,11 @@ "ja": "建物", "zh_Hant": "建築物", "nb_NO": "Arkitektur", - "id": "Arsitektur" + "id": "Arsitektur", + "pt": "Arquitetura", + "hu": "Építészet", + "pl": "Architektura", + "es": "Arquitectura" } }, { @@ -166,7 +181,11 @@ "ja": "壁画", "zh_Hant": "壁畫", "nb_NO": "Veggmaleri", - "id": "Mural" + "id": "Mural", + "pt": "Mural", + "hu": "Falfestmény", + "pl": "Mural", + "es": "Mural" } }, { @@ -181,7 +200,11 @@ "ja": "絵画", "zh_Hant": "繪畫", "nb_NO": "Maleri", - "id": "Lukisan" + "id": "Lukisan", + "pt": "Pintura", + "hu": "Festmény", + "pl": "Obraz", + "es": "Pintura" } }, { @@ -196,7 +219,11 @@ "ja": "彫刻", "zh_Hant": "雕塑", "nb_NO": "Skulptur", - "id": "Patung" + "id": "Patung", + "pt": "Escultura", + "hu": "Absztrakt szobor", + "pl": "Rzeźba", + "es": "Escultura" } }, { @@ -210,7 +237,11 @@ "ru": "Статуя", "ja": "彫像", "zh_Hant": "雕像", - "nb_NO": "Statue" + "nb_NO": "Statue", + "pt": "Estátua", + "hu": "Szobor", + "pl": "Posąg", + "es": "Estatua" } }, { @@ -224,7 +255,11 @@ "ru": "Бюст", "ja": "胸像", "zh_Hant": "半身像", - "nb_NO": "Byste" + "nb_NO": "Byste", + "pt": "Busto", + "hu": "Mellszobor", + "pl": "Popiersie", + "es": "Busto" } }, { @@ -239,7 +274,10 @@ "ja": "石", "zh_Hant": "石頭", "nb_NO": "Stein", - "id": "Batu" + "id": "Batu", + "pt": "Pedra", + "hu": "Kő", + "pl": "Skała" } }, { @@ -254,7 +292,11 @@ "ja": "インスタレーション", "zh_Hant": "安裝", "nb_NO": "Installasjon", - "id": "Instalasi" + "id": "Instalasi", + "pt": "Instalação", + "hu": "Installáció", + "pl": "Instalacja artystyczna", + "es": "Instalación" } }, { @@ -269,7 +311,11 @@ "ja": "落書き", "zh_Hant": "塗鴨", "nb_NO": "Graffiti", - "id": "Graffiti" + "id": "Graffiti", + "pt": "Graffiti", + "hu": "Graffiti", + "pl": "Graffiti", + "es": "Grafiti" } }, { @@ -284,7 +330,10 @@ "ja": "レリーフ", "zh_Hant": "寬慰", "nb_NO": "Relieff", - "id": "Relief" + "id": "Relief", + "pt": "Relevo", + "hu": "Dombormű", + "pl": "Płaskorzeźba" } }, { @@ -299,7 +348,10 @@ "ja": "Azulejo (スペインの装飾タイル)", "zh_Hant": "Azulejo (西班牙雕塑作品名稱)", "nb_NO": "Azulejo (Spansk dekorativt flisverk)", - "id": "Azulejo (ubin dekoratif Spanyol)" + "id": "Azulejo (ubin dekoratif Spanyol)", + "pt": "Azulejo (azulejo decorativo espanhol e português)", + "hu": "Azulejo (portugál vagy spanyol dekoratív csempe)", + "pl": "Azulejo (hiszpańskie płytka dekoracyjna)" } }, { @@ -313,7 +365,10 @@ "ru": "Плитка (мозаика)", "ja": "タイルワーク", "zh_Hant": "瓷磚", - "nb_NO": "Flisarbeid" + "nb_NO": "Flisarbeid", + "pt": "Ladrilhos", + "hu": "Csempe", + "pl": "Płyta ceramiczna (fliza)" } } ], @@ -330,7 +385,10 @@ "ja": "どのアーティストが作ったんですか?", "zh_Hant": "創造這個的藝術家是誰?", "nb_NO": "Hvilken artist lagde dette?", - "id": "Seniman mana yang menciptakan ini?" + "id": "Seniman mana yang menciptakan ini?", + "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}", @@ -342,7 +400,10 @@ "ja": "作成者:{artist_name}", "zh_Hant": "{artist_name} 創作", "nb_NO": "Laget av {artist_name}", - "id": "Dibuat oleh {artist_name}" + "id": "Dibuat oleh {artist_name}", + "pt": "Criado por {artist_name}", + "hu": "Alkotó: {artist_name}", + "pl": "Stworzone przez {artist_name}" }, "freeform": { "key": "artist_name" @@ -360,7 +421,10 @@ "ja": "この作品についての詳しい情報はどのウェブサイトにありますか?", "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?" + "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?", + "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 <a href='{website}' target='_blank'>this website</a>", @@ -372,7 +436,10 @@ "ru": "Больше информации на <a href='{website}' target='_blank'>этом сайте</a>", "ja": "<a href='{website}' target='_blank'>Webサイト</a>に詳細情報がある", "zh_Hant": "<a href='{website}' target='_blank'>這個網站</a>有更多資訊", - "nb_NO": "Mer info er å finne på <a href='{website}' target='_blank'>denne nettsiden</a>" + "nb_NO": "Mer info er å finne på <a href='{website}' target='_blank'>denne nettsiden</a>", + "pt": "Mais informações <a href='{website}' target='_blank'>neste site</a>", + "hu": "További információ <a href='{website}' target='_blank'>ezen a weboldalon</a>", + "pl": "Więcej informacji na <a href='{website}' target='_blank'>tej stronie</a>" }, "freeform": { "key": "website", @@ -391,7 +458,9 @@ "ja": "<b>このアートワーク</b>に関するWikidataのエントリーはどれですか?", "zh_Hant": "<b>這個藝術品</b>有那個對應的 Wikidata 項目?", "nb_NO": "Hvilken Wikipedia-oppføring samsvarer med <b>dette kunstverket</b>?", - "id": "Entri Wikidata mana yang sesuai dengan <b>karya seni ini</b>?" + "id": "Entri Wikidata mana yang sesuai dengan <b>karya seni ini</b>?", + "pt": "Que entrada no Wikidata corresponde a <b>esta obra de arte</b>?", + "hu": "Melyik Wikidata-bejegyzés felel meg <b>ennek a műalkotásnak</b>?" }, "render": { "en": "Corresponds with <a href='https://www.wikidata.org/wiki/{wikidata}' target='_blank'>{wikidata}</a>", @@ -403,7 +472,9 @@ "ja": "<a href='https://www.wikidata.org/wiki/{wikidata}' target='_blank'>{wikidata}</a>に関連する", "zh_Hant": "與 <a href='https://www.wikidata.org/wiki/{wikidata}' target='_blank'>{wikidata}</a>對應", "nb_NO": "Samsvarer med <a href='https://www.wikidata.org/wiki/{wikidata}' target='_blank'>{wikidata}</a>", - "id": "Sesuai dengan <a href='https://www.wikidata.org/wiki/{wikidata}' target='_blank'>{wikidata}</a>" + "id": "Sesuai dengan <a href='https://www.wikidata.org/wiki/{wikidata}' target='_blank'>{wikidata}</a>", + "pt": "Corresponde a <a href='https://www.wikidata.org/wiki/{wikidata}' target='_blank'>{wikidata}</a>", + "hu": "Ez a megfelelő: <a href='https://www.wikidata.org/wiki/{wikidata}' target='_blank'>{wikidata}</a>" }, "freeform": { "key": "wikidata", diff --git a/assets/layers/barrier/barrier.json b/assets/layers/barrier/barrier.json index b481674b81..9bb38a52f2 100644 --- a/assets/layers/barrier/barrier.json +++ b/assets/layers/barrier/barrier.json @@ -4,12 +4,17 @@ "en": "Barriers", "nl": "Barrières", "de": "Hindernisse", - "ru": "Препятствия" + "ru": "Препятствия", + "hu": "Akadályok", + "fr": "Barrières", + "es": "Barreras" }, "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 +30,9 @@ "en": "Barrier", "nl": "Barrière", "de": "Hindernis", - "ru": "Препятствие" + "ru": "Препятствие", + "fr": "Barrière", + "es": "Barrera" }, "mappings": [ { @@ -34,7 +41,9 @@ "en": "Bollard", "nl": "Paaltje", "de": "Poller", - "ru": "Прикол" + "ru": "Прикол", + "fr": "Bollard", + "es": "Bolardo" } }, { @@ -42,7 +51,8 @@ "then": { "en": "Cycling Barrier", "nl": "Fietshekjes", - "de": "Barriere für Radfahrer" + "de": "Barriere für Radfahrer", + "fr": "Barrière cyclable" } } ] @@ -53,7 +63,10 @@ "en": "Bollard", "nl": "Paaltje", "de": "Poller", - "ru": "Прикол" + "ru": "Прикол", + "fr": "Bollard", + "hu": "Terelőoszlop", + "es": "Bolardo" }, "tags": [ "barrier=bollard" @@ -61,7 +74,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": [ @@ -75,15 +90,19 @@ "title": { "en": "Cycle barrier", "nl": "Fietshekjes", - "de": "Fahrradhindernis" + "de": "Fahrradhindernis", + "hu": "Kerékpárakadály", + "fr": "Barrière cyclable" }, "tags": [ - "barrier=bollard" + "barrier=cycle_barrier" ], "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": [ @@ -99,7 +118,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": [ { @@ -107,7 +127,9 @@ "then": { "en": "A cyclist can go past this.", "nl": "Een fietser kan hier langs.", - "de": "Ein Radfahrer kann hindurchfahren." + "de": "Ein Radfahrer kann hindurchfahren.", + "fr": "Un cycliste peut franchir ceci.", + "hu": "Kerékpárral át lehet hajtani." } }, { @@ -115,17 +137,43 @@ "then": { "en": "A cyclist can not go past this.", "nl": "Een fietser kan hier niet langs.", - "de": "Ein Radfahrer kann nicht hindurchfahren." + "de": "Ein Radfahrer kann nicht hindurchfahren.", + "fr": "Un cycliste ne peut pas franchir ceci.", + "hu": "Kerékpárral nem lehet áthajtani." } } ], "id": "bicycle=yes/no" }, + { + "id": "barrier_type", + "mappings": [ + { + "if": "barrier=bollard", + "then": { + "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", + "hu": "Ez egy kerékpárakadály, amely lelassítja a kerékpárosokat" + } + } + ] + }, { "question": { "en": "What kind of bollard is this?", "nl": "Wat voor soort paal is dit?", - "de": "Um was für einen Poller handelt es sich?" + "de": "Um was für einen Poller handelt es sich?", + "fr": "Quel est le type de bollard (borne) ?", + "hu": "Milyen fajta terelőoszlop ez?", + "es": "¿Qué tipo de bolardo es este?" }, "condition": "barrier=bollard", "mappings": [ @@ -134,7 +182,9 @@ "then": { "en": "Removable bollard", "nl": "Verwijderbare paal", - "de": "Entfernbarer Poller" + "de": "Entfernbarer Poller", + "fr": "Bollard amovible", + "hu": "Eltávolítható terelőoszlop" } }, { @@ -142,7 +192,10 @@ "then": { "en": "Fixed bollard", "nl": "Vaste paal", - "de": "Feststehender Poller" + "de": "Feststehender Poller", + "fr": "Bollard fixe", + "hu": "Rögzített terelőoszlop", + "es": "Bolardo fijo" } }, { @@ -150,7 +203,9 @@ "then": { "en": "Bollard that can be folded down", "nl": "Paal die platgevouwen kan worden", - "de": "Umlegbarer Poller" + "de": "Umlegbarer Poller", + "fr": "Bollard qui peut être couché", + "hu": "Lehajtható terelőoszlop" } }, { @@ -158,7 +213,10 @@ "then": { "en": "Flexible bollard, usually plastic", "nl": "Flexibele paal, meestal plastic", - "de": "Flexibler Poller, meist aus Kunststoff" + "de": "Flexibler Poller, meist aus Kunststoff", + "fr": "Bollard flexible, généralement en plastique", + "hu": "Rugalmas (általában műanyag) terelőoszlop", + "es": "Bolardo flexible, normalmente plástico" } }, { @@ -166,7 +224,10 @@ "then": { "en": "Rising bollard", "nl": "Verzonken poller", - "de": "Ausfahrender Poller" + "de": "Ausfahrender Poller", + "fr": "Bollard rétractable", + "hu": "Felemelkedő terelőoszlop", + "es": "Bolardo levadizo" } } ], @@ -176,40 +237,66 @@ "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 <img src='./assets/themes/cycle_infra/Cycle_barrier_single.png' style='width:8em'>", - "nl": "Enkelvoudig, slechts twee hekjes met ruimte ertussen <img src='./assets/themes/cycle_infra/Cycle_barrier_single.png' style='width:8em'>", - "de": "Einfach, nur zwei Barrieren mit einem Zwischenraum <img src='./assets/themes/cycle_infra/Cycle_barrier_single.png' style='width:8em'>" + "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", + "hu": "Egyszeres: csak két korlát, közöttük térköz", + "fr": "Simple, deux barrières côte à côte" + }, + "icon": { + "path": "./assets/themes/cycle_infra/Cycle_barrier_single.png", + "class": "large" } }, { - "if": "cycle_barrier:type=double", + "if": "cycle_barrier=double", "then": { - "en": "Double, two barriers behind each other <img src='./assets/themes/cycle_infra/Cycle_barrier_double.svg' style='width:8em'>", - "nl": "Dubbel, twee hekjes achter elkaar <img src='./assets/themes/cycle_infra/Cycle_barrier_double.svg' style='width:8em'>", - "de": "Doppelt, zwei Barrieren hintereinander <img src='./assets/themes/cycle_infra/Cycle_barrier_double.svg' style='width:8em'>" + "en": "Double, two barriers behind each other", + "nl": "Dubbel, twee hekjes achter elkaar", + "de": "Doppelt, zwei Barrieren hintereinander", + "hu": "Kétszeres: két, egymáshoz képest eltolt korlát egymás után", + "fr": "Double, deux barrières successives" + }, + "icon": { + "path": "./assets/themes/cycle_infra/Cycle_barrier_double.svg", + "class": "large" } }, { - "if": "cycle_barrier:type=triple", + "if": "cycle_barrier=triple", "then": { - "en": "Triple, three barriers behind each other <img src='./assets/themes/cycle_infra/Cycle_barrier_triple.png' style='width:8em'>", - "nl": "Drievoudig, drie hekjes achter elkaar <img src='./assets/themes/cycle_infra/Cycle_barrier_triple.png' style='width:8em'>", - "de": "Dreifach, drei Barrieren hintereinander <img src='./assets/themes/cycle_infra/Cycle_barrier_triple.png' style='width:8em'>" + "en": "Triple, three barriers behind each other", + "nl": "Drievoudig, drie hekjes achter elkaar", + "de": "Dreifach, drei Barrieren hintereinander", + "hu": "Háromszoros: három, egymáshoz képest eltolt korlát egymás után", + "fr": "Triple, trois barrières successives" + }, + "icon": { + "path": "./assets/themes/cycle_infra/Cycle_barrier_triple.png", + "class": "large" } }, { - "if": "cycle_barrier:type=squeeze", + "if": "cycle_barrier=squeeze", "then": { - "en": "Squeeze gate, gap is smaller at top, than at the bottom <img src='./assets/themes/cycle_infra/Cycle_barrier_squeeze.png' style='width:8em'>", - "nl": "Knijppoort, ruimte is smaller aan de top, dan aan de bodem <img src='./assets/themes/cycle_infra/Cycle_barrier_squeeze.png' style='width:8em'>", - "de": "Eine Durchfahrtsbeschränkung, Durchfahrtsbreite ist oben kleiner als unten <img src='./assets/themes/cycle_infra/Cycle_barrier_squeeze.png' style='width:8em'>" + "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", + "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" + }, + "icon": { + "path": "./assets/themes/cycle_infra/Cycle_barrier_squeeze.png", + "class": "large" } } ], @@ -219,17 +306,21 @@ "render": { "en": "Maximum width: {maxwidth:physical} m", "nl": "Maximumbreedte: {maxwidth:physical} m", - "de": "Maximale Durchfahrtsbreite: {maxwidth:physical} m" + "de": "Maximale Durchfahrtsbreite: {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": { @@ -246,17 +337,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": { @@ -273,17 +368,20 @@ "render": { "en": "Width of opening: {width:opening} m", "nl": "Breedte van de opening: {width:opening} m", - "de": "Breite der Öffnung: {width:opening} m" + "de": "Breite der Öffnung: {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": { @@ -299,17 +397,22 @@ { "render": { "en": "Overlap: {overlap} m", - "de": "Überschneidung: {overlap} m" + "de": "Überschneidung: {overlap} m", + "hu": "Átfedés: {overlap} m", + "fr": "Chevauchement : {overlap} m", + "nl": "Overlap: {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 f73d81450a..2ca9d9f0c0 100644 --- a/assets/layers/barrier/barrier.svg +++ b/assets/layers/barrier/barrier.svg @@ -1,16 +1,12 @@ -<?xml version="1.0" encoding="UTF-8"?> -<svg version="1.1" viewBox="0 0 128 128" xmlns="http://www.w3.org/2000/svg"> - <path class="st0" d="m128 64a64 64 0 0 1-64 64 64 64 0 0 1-64-64 64 64 0 0 1 64-64 64 64 0 0 1 64 64" - fill="#529add"/> - <path d="m31.992 32.08v87.273a64 64 0 0 0 16 6.5293v-93.803z" fill="#666"/> - <path d="m79.992 32.08v93.84a64 64 0 0 0 16-6.582v-87.258z" fill="#666"/> - <path d="m23.992 44.08c-4.456 0-8.0429 3.587-8.0429 8.043v31.914c0 4.456 3.5869 8.043 8.0429 8.043h79.914c4.456 0 8.043-3.587 8.043-8.043v-31.914c0-4.456-3.587-8.043-8.043-8.043z" - fill-opacity=".2"/> - <path d="m24.036 40.08h79.913c4.456 0 8.0433 3.5873 8.0433 8.0433v31.913c0 4.456-3.5873 8.0433-8.0433 8.0433h-79.913c-4.456 0-8.0433-3.5873-8.0433-8.0433v-31.913c0-4.456 3.5873-8.0433 8.0433-8.0433z" - fill="#fff" style="paint-order:normal"/> - <path d="m23.992 40.08c-3.8167 0-6.9867 2.6476-7.7949 6.2129l28.746 41.787h14.143l-32.332-48zm16.619 0 32.332 48h14.143l-32.332-48zm28 0 32.332 48h3.0488c3.6926 0 6.7759-2.4795 7.7051-5.8691l-28.943-42.131zm28 0 15.381 22v-14c0-4.432-3.568-8-8-8zm-80.619 26v14c0 4.432 3.568 8 8 8h7.0938z" - fill="#dd2e44" style="paint-order:normal"/> - <path d="m24.03 40.08h79.924c4.4531 0 8.038 3.5849 8.038 8.038v31.924c0 4.453-3.5849 8.038-8.038 8.038h-79.924c-4.4531 0-8.038-3.5849-8.038-8.038v-31.924c0-4.453 3.5849-8.038 8.038-8.038z" - fill="none" stroke="#555" stroke-linecap="round" stroke-linejoin="round" stroke-width="4" - style="paint-order:stroke markers fill"/> -</svg> +<?xml version="1.0" encoding="UTF-8" standalone="yes"?> +<svg xmlns="http://www.w3.org/2000/svg" width="375px" height="375px" viewBox="0 0 375 375" version="1.1"> + <g id="surface1"> + <path style=" stroke:none;fill-rule:nonzero;fill:rgb(32.156864%,60.392159%,86.666667%);fill-opacity:1;" d="M 375 187.5 C 375 291.054688 291.054688 375 187.5 375 C 83.945312 375 0 291.054688 0 187.5 C 0 83.945312 83.945312 0 187.5 0 C 291.054688 0 375 83.945312 375 187.5 "/> + <path style=" stroke:none;fill-rule:nonzero;fill:rgb(40.000001%,40.000001%,40.000001%);fill-opacity:1;" d="M 93.726562 93.984375 L 93.726562 349.667969 C 108.414062 358.132812 124.183594 364.566406 140.601562 368.796875 L 140.601562 93.980469 Z M 93.726562 93.984375 "/> + <path style=" stroke:none;fill-rule:nonzero;fill:rgb(40.000001%,40.000001%,40.000001%);fill-opacity:1;" d="M 234.351562 93.984375 L 234.351562 368.90625 C 250.777344 364.628906 266.546875 358.144531 281.226562 349.625 L 281.226562 93.984375 Z M 234.351562 93.984375 "/> + <path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:0.2;" d="M 70.289062 129.140625 C 57.234375 129.140625 46.726562 139.648438 46.726562 152.703125 L 46.726562 246.203125 C 46.726562 259.257812 57.234375 269.765625 70.289062 269.765625 L 304.414062 269.765625 C 317.46875 269.765625 327.976562 259.257812 327.976562 246.203125 L 327.976562 152.703125 C 327.976562 139.648438 317.46875 129.140625 304.414062 129.140625 Z M 70.289062 129.140625 "/> + <path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 70.417969 117.421875 L 304.539062 117.421875 C 317.59375 117.421875 328.101562 127.929688 328.101562 140.984375 L 328.101562 234.480469 C 328.101562 247.535156 317.59375 258.046875 304.539062 258.046875 L 70.417969 258.046875 C 57.363281 258.046875 46.855469 247.535156 46.855469 234.480469 L 46.855469 140.984375 C 46.855469 127.929688 57.363281 117.421875 70.417969 117.421875 Z M 70.417969 117.421875 "/> + <path style=" stroke:none;fill-rule:nonzero;fill:rgb(86.666667%,18.039216%,26.666668%);fill-opacity:1;" d="M 70.289062 117.421875 C 59.105469 117.421875 49.820312 125.179688 47.453125 135.625 L 131.667969 258.046875 L 173.105469 258.046875 L 78.382812 117.421875 Z M 118.976562 117.421875 L 213.699219 258.046875 L 255.136719 258.046875 L 160.414062 117.421875 Z M 201.007812 117.421875 L 295.730469 258.046875 L 304.664062 258.046875 C 315.480469 258.046875 324.515625 250.78125 327.238281 240.851562 L 242.441406 117.421875 Z M 283.039062 117.421875 L 328.101562 181.875 L 328.101562 140.859375 C 328.101562 127.875 317.648438 117.421875 304.664062 117.421875 Z M 46.851562 193.59375 L 46.851562 234.609375 C 46.851562 247.59375 57.304688 258.046875 70.289062 258.046875 L 91.070312 258.046875 Z M 46.851562 193.59375 "/> + <path style="fill:none;stroke-width:4;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(33.333334%,33.333334%,33.333334%);stroke-opacity:1;stroke-miterlimit:4;" d="M 24.029329 40.079993 L 103.95465 40.079993 C 108.406649 40.079993 111.991982 43.665326 111.991982 48.117326 L 111.991982 80.042654 C 111.991982 84.494653 108.406649 88.079986 103.95465 88.079986 L 24.029329 88.079986 C 19.57733 88.079986 15.991997 84.494653 15.991997 80.042654 L 15.991997 48.117326 C 15.991997 43.665326 19.57733 40.079993 24.029329 40.079993 Z M 24.029329 40.079993 " transform="matrix(2.929688,0,0,2.929688,0,0)"/> + </g> +</svg> \ No newline at end of file diff --git a/assets/layers/bench/bench.json b/assets/layers/bench/bench.json index 833ba00d99..c96a91085e 100644 --- a/assets/layers/bench/bench.json +++ b/assets/layers/bench/bench.json @@ -53,8 +53,8 @@ "de": "Rückenlehne: Ja", "fr": "Dossier : Oui", "nl": "Heeft een rugleuning", - "es": "Respaldo: Si", - "hu": "Háttámla: Igen", + "es": "Respaldo: sí", + "hu": "Háttámla van", "id": "Sandaran: Ya", "it": "Schienale: Sì", "ru": "Со спинкой", @@ -74,8 +74,8 @@ "de": "Rückenlehne: Nein", "fr": "Dossier : Non", "nl": "Rugleuning ontbreekt", - "es": "Respaldo: No", - "hu": "Háttámla: Nem", + "es": "Respaldo: no", + "hu": "Háttámla nincs", "id": "Sandaran: Tidak", "it": "Schienale: No", "ru": "Без спинки", @@ -94,8 +94,8 @@ "de": "Hat diese Bank eine Rückenlehne?", "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?", + "es": "¿Este banco tiene respaldo?", + "hu": "Van-e háttámlája ennek a padnak?", "id": "Apakah bangku ini memiliki sandaran?", "it": "Questa panchina ha lo schienale?", "ru": "Есть ли у этой скамейки спинка?", @@ -327,7 +327,8 @@ "zh_Hant": "坐在長椅時是面對那個方向?", "pt_BR": "Em que direção você olha quando está sentado no banco?", "pl": "W jakim kierunku patrzysz siedząc na ławce?", - "pt": "Em que direção olha quando está sentado no banco?" + "pt": "Em que direção olha quando está sentado no banco?", + "es": "¿En qué dirección se mira al sentarse en el banco?" }, "render": { "en": "When sitting on the bench, one looks towards {direction}°.", @@ -366,21 +367,23 @@ "fi": "Väri: {colour}", "pl": "Kolor: {colour}", "pt": "Cor: {colour}", - "eo": "Koloro: {colour}" + "eo": "Koloro: {colour}", + "es": "Color: {colour}" }, "question": { "en": "Which colour does this bench have?", "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": "这个长椅是什么颜色的?", "zh_Hant": "這個長椅是什麼顏色的?", "pt_BR": "Qual a cor dessa bancada?", "pl": "Jaki kolor ma ta ławka?", - "pt": "Qual a cor dessa bancada?" + "pt": "Qual a cor dessa bancada?", + "es": "¿De qué color es este banco?" }, "freeform": { "key": "colour", @@ -424,7 +427,8 @@ "fi": "Väri: vihreä", "pl": "Kolor: zielony", "pt": "Cor: verde", - "eo": "Koloro: verda" + "eo": "Koloro: verda", + "es": "Color: verde" } }, { @@ -444,7 +448,8 @@ "fi": "Väri: harmaa", "pl": "Kolor: szary", "pt": "Cor: cinzento", - "eo": "Koloro: griza" + "eo": "Koloro: griza", + "es": "Color: gris" } }, { @@ -464,7 +469,8 @@ "fi": "Väri: valkoinen", "pl": "Kolor: biały", "pt": "Cor: branco", - "eo": "Koloro: blanka" + "eo": "Koloro: blanka", + "es": "Color: blanco" } }, { @@ -484,7 +490,8 @@ "fi": "Väri: punainen", "pl": "Kolor: czerwony", "pt": "Cor: vermelho", - "eo": "Koloro: ruĝa" + "eo": "Koloro: ruĝa", + "es": "Color: rojo" } }, { @@ -504,7 +511,8 @@ "fi": "Väri: musta", "pl": "Kolor: czarny", "pt": "Cor: preto", - "eo": "Koloro: nigra" + "eo": "Koloro: nigra", + "es": "Color: negro" } }, { @@ -524,7 +532,8 @@ "fi": "Väri: sininen", "pl": "Kolor: niebieski", "pt": "Cor: azul", - "eo": "Koloro: blua" + "eo": "Koloro: blua", + "es": "Color: azul" } }, { @@ -544,7 +553,8 @@ "fi": "Väri: keltainen", "pl": "Kolor: żółty", "pt": "Cor: amarelo", - "eo": "Koloro: flava" + "eo": "Koloro: flava", + "es": "Color: amarillo" } } ], @@ -633,7 +643,7 @@ "mapRendering": [ { "icon": { - "render": "circle:#FE6F32;./assets/layers/bench/bench.svg" + "render": "./assets/layers/bench/bench.svg" }, "iconSize": { "render": "35,35,center" @@ -643,5 +653,9 @@ "centroid" ] } - ] + ], + "description": { + "nl": "Deze laag toont zitbanken en enkele vragen over deze zitbanken", + "en": "A bench is a wooden, metal, stone, ... surface where a human can sit. This layers visualises them and asks a few questions about them." + } } \ No newline at end of file diff --git a/assets/layers/bench/bench.svg b/assets/layers/bench/bench.svg index 7df1d1aa43..8c02d12595 100644 --- a/assets/layers/bench/bench.svg +++ b/assets/layers/bench/bench.svg @@ -1,21 +1,16 @@ -<?xml version="1.0" encoding="UTF-8"?> -<svg version="1.1" viewBox="0 0 128 128" xmlns="http://www.w3.org/2000/svg"> - <path d="m128 64c0 35.346-28.654 64-64 64-35.346 0-64-28.654-64-64 0-35.346 28.654-64 64-64 35.346 0 64 28.654 64 64" - fill="#9bbe55" stroke-width=".2"/> - <path d="m20.021 39.998c-2.2408 0-4.0449 1.8041-4.0449 4.0449v15.91c0 2.2408 1.8042 4.045 4.0449 4.045h11.955v8h-16v8h16v16h8v-16h48v16h8v-16h16v-8h-16v-8h11.955c2.2408 0 4.0449-1.8042 4.0449-4.045v-15.91c0-2.2408-1.8041-4.0449-4.0449-4.0449zm19.955 24h48v8h-48z" - fill-opacity=".2" style="paint-order:normal"/> - <g transform="translate(717 144)"> - <path d="m-685.02-84.002h8v32h-8z" fill="#666" style="paint-order:normal"/> - <path d="m-629.02-84.002h8v32h-8z" fill="#666" style="paint-order:normal"/> - <path d="m-696.98-108h87.911c2.2408 0 4.0447 1.804 4.0447 4.0447v15.911c0 2.2408-1.804 4.0447-4.0447 4.0447h-87.911c-2.2408 0-4.0447-1.8039-4.0447-4.0447v-15.911c0-2.2408 1.804-4.0447 4.0447-4.0447z" - fill="#ae8862" style="paint-order:normal"/> - <path d="m-693.02-104h80v4h-80z" fill="#896847" style="paint-order:normal"/> - <path d="m-701.02-72.002h96v4h-96z" fill="#896847" style="paint-order:normal"/> - <path d="m-693.02-92.002h80v4h-80z" fill="#896847" style="paint-order:normal"/> - <path d="m-677.02-96.002a4 4 0 0 1-4 4 4 4 0 0 1-4-4 4 4 0 0 1 4-4 4 4 0 0 1 4 4" fill="#666" - style="paint-order:normal"/> - <path d="m-621.02-96.002a4 4 0 0 1-4 4 4 4 0 0 1-4-4 4 4 0 0 1 4-4 4 4 0 0 1 4 4" fill="#666" - style="paint-order:normal"/> - <path d="m-701.02-76.002h96v4h-96z" fill="#ae8862" style="paint-order:normal"/> - </g> +<?xml version="1.0" encoding="UTF-8" standalone="yes"?> +<svg xmlns="http://www.w3.org/2000/svg" width="375px" height="375px" viewBox="0 0 375 375" version="1.1"> + <g id="surface1"> + <path style=" stroke:none;fill-rule:nonzero;fill:rgb(60.784316%,74.509805%,33.333334%);fill-opacity:1;" d="M 375 187.5 C 375 291.054688 291.054688 375 187.5 375 C 83.949219 375 0 291.054688 0 187.5 C 0 83.949219 83.949219 0 187.5 0 C 291.054688 0 375 83.949219 375 187.5 "/> + <path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:0.2;" d="M 58.65625 117.183594 C 52.089844 117.183594 46.804688 122.46875 46.804688 129.03125 L 46.804688 175.644531 C 46.804688 182.207031 52.089844 187.492188 58.65625 187.492188 L 93.679688 187.492188 L 93.679688 210.929688 L 46.804688 210.929688 L 46.804688 234.367188 L 93.679688 234.367188 L 93.679688 281.242188 L 117.117188 281.242188 L 117.117188 234.367188 L 257.742188 234.367188 L 257.742188 281.242188 L 281.179688 281.242188 L 281.179688 234.367188 L 328.054688 234.367188 L 328.054688 210.929688 L 281.179688 210.929688 L 281.179688 187.492188 L 316.203125 187.492188 C 322.769531 187.492188 328.054688 182.207031 328.054688 175.644531 L 328.054688 129.03125 C 328.054688 122.46875 322.769531 117.183594 316.203125 117.183594 Z M 117.117188 187.492188 L 257.742188 187.492188 L 257.742188 210.929688 L 117.117188 210.929688 Z M 117.117188 187.492188 "/> + <path style=" stroke:none;fill-rule:nonzero;fill:rgb(40.000001%,40.000001%,40.000001%);fill-opacity:1;" d="M 93.691406 175.773438 L 117.128906 175.773438 L 117.128906 269.523438 L 93.691406 269.523438 Z M 93.691406 175.773438 "/> + <path style=" stroke:none;fill-rule:nonzero;fill:rgb(40.000001%,40.000001%,40.000001%);fill-opacity:1;" d="M 257.753906 175.773438 L 281.191406 175.773438 L 281.191406 269.523438 L 257.753906 269.523438 Z M 257.753906 175.773438 "/> + <path style=" stroke:none;fill-rule:nonzero;fill:rgb(68.235296%,53.333336%,38.431373%);fill-opacity:1;" d="M 58.652344 105.46875 L 316.203125 105.46875 C 322.769531 105.46875 328.054688 110.753906 328.054688 117.320312 L 328.054688 163.933594 C 328.054688 170.496094 322.769531 175.78125 316.203125 175.78125 L 58.652344 175.78125 C 52.085938 175.78125 46.800781 170.496094 46.800781 163.933594 L 46.800781 117.320312 C 46.800781 110.753906 52.085938 105.46875 58.652344 105.46875 Z M 58.652344 105.46875 "/> + <path style=" stroke:none;fill-rule:nonzero;fill:rgb(53.725493%,40.784314%,27.843139%);fill-opacity:1;" d="M 70.253906 117.1875 L 304.628906 117.1875 L 304.628906 128.90625 L 70.253906 128.90625 Z M 70.253906 117.1875 "/> + <path style=" stroke:none;fill-rule:nonzero;fill:rgb(53.725493%,40.784314%,27.843139%);fill-opacity:1;" d="M 46.816406 210.929688 L 328.066406 210.929688 L 328.066406 222.648438 L 46.816406 222.648438 Z M 46.816406 210.929688 "/> + <path style=" stroke:none;fill-rule:nonzero;fill:rgb(53.725493%,40.784314%,27.843139%);fill-opacity:1;" d="M 70.253906 152.335938 L 304.628906 152.335938 L 304.628906 164.054688 L 70.253906 164.054688 Z M 70.253906 152.335938 "/> + <path style=" stroke:none;fill-rule:nonzero;fill:rgb(40.000001%,40.000001%,40.000001%);fill-opacity:1;" d="M 117.128906 140.617188 C 117.128906 147.089844 111.882812 152.335938 105.410156 152.335938 C 98.9375 152.335938 93.691406 147.089844 93.691406 140.617188 C 93.691406 134.148438 98.9375 128.898438 105.410156 128.898438 C 111.882812 128.898438 117.128906 134.148438 117.128906 140.617188 "/> + <path style=" stroke:none;fill-rule:nonzero;fill:rgb(40.000001%,40.000001%,40.000001%);fill-opacity:1;" d="M 281.191406 140.617188 C 281.191406 147.089844 275.945312 152.335938 269.472656 152.335938 C 263 152.335938 257.753906 147.089844 257.753906 140.617188 C 257.753906 134.148438 263 128.898438 269.472656 128.898438 C 275.945312 128.898438 281.191406 134.148438 281.191406 140.617188 "/> + <path style=" stroke:none;fill-rule:nonzero;fill:rgb(68.235296%,53.333336%,38.431373%);fill-opacity:1;" d="M 46.816406 199.210938 L 328.066406 199.210938 L 328.066406 210.929688 L 46.816406 210.929688 Z M 46.816406 199.210938 "/> + </g> </svg> \ No newline at end of file diff --git a/assets/layers/bench_at_pt/bench_at_pt.json b/assets/layers/bench_at_pt/bench_at_pt.json index 681aff3ad6..e2525223e3 100644 --- a/assets/layers/bench_at_pt/bench_at_pt.json +++ b/assets/layers/bench_at_pt/bench_at_pt.json @@ -108,7 +108,8 @@ "fi": "{name}", "pl": "{name}", "pt": "{name}", - "eo": "{name}" + "eo": "{name}", + "es": "{name}" }, "freeform": { "key": "name" @@ -119,13 +120,18 @@ "id": "bench_at_pt-bench_type", "question": { "en": "What kind of bench is this?", - "nl": "Wat voor soort bank is dit?" + "nl": "Wat voor soort bank is dit?", + "de": "Was ist das für eine Bank?", + "es": "¿Qué tipo de banco es este?" }, "mappings": [ { "if": "bench=yes", "then": { - "en": "There is a normal, sit-down bench here" + "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", + "nl": "Er is hier een normale zitbank" } }, { @@ -144,7 +150,10 @@ { "if": "bench=no", "then": { - "en": "There is no bench here" + "en": "There is no bench here", + "fr": "Il n'y a pas de banc ici", + "de": "Hier gibt es keine Bank", + "nl": "Er is hier geen bank" } } ] @@ -170,5 +179,10 @@ "render": "8" } } - ] + ], + "description": { + "en": "A layer showing all public-transport-stops which do have a bench", + "es": "Una capa que muestra todas las paradas de transporte público que tienen bancos", + "nl": "Een laag die stopplaatsen van openbaar vervoer toont waar er een zitbank is" + } } \ No newline at end of file diff --git a/assets/layers/bicycle_library/bicycle_library.svg b/assets/layers/bicycle_library/bicycle_library.svg index 289d067cb5..d4330c7010 100644 --- a/assets/layers/bicycle_library/bicycle_library.svg +++ b/assets/layers/bicycle_library/bicycle_library.svg @@ -1,178 +1,8 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - xmlns="http://www.w3.org/2000/svg" - version="1.1" - id="svg4" - sodipodi:docname="bicycle_library.svg" - width="1000" - height="1000" - inkscape:version="0.92.5 (2060ec1f9f, 2020-04-08)" - style="enable-background:new"> - <metadata - id="metadata10"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage"/> - <dc:title/> - </cc:Work> - </rdf:RDF> - </metadata> - <defs - id="defs8"> - <filter - style="color-interpolation-filters:sRGB" - filterUnits="userSpaceOnUse" - height="63" - width="67" - y="23" - x="16" - id="filter0_d"> - <feFlood - id="feFlood10" - result="BackgroundImageFix" - flood-opacity="0"/> - <feColorMatrix - id="feColorMatrix12" - values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" - type="matrix" - in="SourceAlpha"/> - <feOffset - id="feOffset14" - dy="4"/> - <feGaussianBlur - id="feGaussianBlur16" - stdDeviation="2"/> - <feColorMatrix - id="feColorMatrix18" - values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0" - type="matrix"/> - <feBlend - id="feBlend20" - result="effect1_dropShadow" - in2="BackgroundImageFix" - mode="normal"/> - <feBlend - id="feBlend22" - result="shape" - in2="effect1_dropShadow" - in="SourceGraphic" - mode="normal"/> - </filter> - </defs> - <sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="999" - id="namedview6" - showgrid="false" - inkscape:zoom="0.37035536" - inkscape:cx="-364.34347" - inkscape:cy="764.959" - inkscape:window-x="0" - inkscape:window-y="0" - inkscape:window-maximized="1" - inkscape:current-layer="layer1" - showguides="true" - inkscape:guide-bbox="true"> - <sodipodi:guide - position="494.12003,453.61838" - orientation="1,0" - id="guide847" - inkscape:locked="false"/> - </sodipodi:namedview> - <g - inkscape:groupmode="layer" - id="layer1" - inkscape:label="background" - style="display:inline" - transform="translate(25.862067,388.65816)"> - <path - d="m 507.50477,581.54633 c -15.20463,33.14474 -62.29796,33.14474 -77.50259,0 L 167.85343,10.155493 c -12.95774,-28.242528 7.67863,-60.414333 38.7513,-60.414333 h 524.2975 c 31.07266,0 51.70904,32.171805 38.75129,60.414333 z" - id="path2" - inkscape:connector-curvature="0" - style="fill:#7dea7e;fill-opacity:1;stroke-width:8.52707577"/> - <path - inkscape:connector-curvature="0" - id="circle4" - d="M 887.29014,26.484844 A 417.82672,417.82672 0 0 1 469.46341,444.31157 417.82672,417.82672 0 0 1 51.636689,26.484844 417.82672,417.82672 0 0 1 469.46341,-391.34188 417.82672,417.82672 0 0 1 887.29014,26.484844 Z" - style="fill:#7dea7e;fill-opacity:1;stroke-width:8.52707577"/> - </g> - <g - inkscape:groupmode="layer" - id="layer2" - inkscape:label="foreground" - style="display:inline" - transform="translate(25.862067,388.65816)"> - <g - id="g4673" - transform="matrix(-0.36495618,2.0593776,-2.0593776,-0.36495618,996.72369,-262.88967)"/> - <g - id="g4675" - transform="matrix(-0.36495618,2.0593776,-2.0593776,-0.36495618,996.72369,-262.88967)"/> - <g - id="g4677" - transform="matrix(-0.36495618,2.0593776,-2.0593776,-0.36495618,996.72369,-262.88967)"/> - <g - id="g4679" - transform="matrix(-0.36495618,2.0593776,-2.0593776,-0.36495618,996.72369,-262.88967)"/> - <g - id="g4681" - transform="matrix(-0.36495618,2.0593776,-2.0593776,-0.36495618,996.72369,-262.88967)"/> - <g - id="g4683" - transform="matrix(-0.36495618,2.0593776,-2.0593776,-0.36495618,996.72369,-262.88967)"/> - <g - id="g4685" - transform="matrix(-0.36495618,2.0593776,-2.0593776,-0.36495618,996.72369,-262.88967)"/> - <g - id="g4687" - transform="matrix(-0.36495618,2.0593776,-2.0593776,-0.36495618,996.72369,-262.88967)"/> - <g - id="g4689" - transform="matrix(-0.36495618,2.0593776,-2.0593776,-0.36495618,996.72369,-262.88967)"/> - <g - id="g4691" - transform="matrix(-0.36495618,2.0593776,-2.0593776,-0.36495618,996.72369,-262.88967)"/> - <g - id="g4693" - transform="matrix(-0.36495618,2.0593776,-2.0593776,-0.36495618,996.72369,-262.88967)"/> - <g - id="g4695" - transform="matrix(-0.36495618,2.0593776,-2.0593776,-0.36495618,996.72369,-262.88967)"/> - <g - id="g4697" - transform="matrix(-0.36495618,2.0593776,-2.0593776,-0.36495618,996.72369,-262.88967)"/> - <g - id="g4699" - transform="matrix(-0.36495618,2.0593776,-2.0593776,-0.36495618,996.72369,-262.88967)"/> - <g - id="g4701" - transform="matrix(-0.36495618,2.0593776,-2.0593776,-0.36495618,996.72369,-262.88967)"/> - <g - id="layer3" - transform="translate(-162.70603,85.814023)"/> - <g - id="layer1-9" - transform="translate(-162.70603,85.814023)"/> - <path - style="display:inline;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:64.07788849;stroke-linecap:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;enable-background:new" - d="M 469.38855,-348.66009 A 371.91883,371.91883 0 0 0 97.469577,23.258866 371.91883,371.91883 0 0 0 339.95776,371.67413 l -71.34468,-84.92214 c -3.1838,-3.79494 -4.23357,-8.94138 -2.79595,-13.67894 1.44644,-4.74048 5.1906,-8.42519 9.95345,-9.80303 l 108.71033,-31.33889 c 1.16713,-0.33703 2.34979,-0.52246 3.52439,-0.56534 5.0899,-0.18584 10.02548,2.30471 12.86171,6.74072 3.49346,5.46421 2.98128,12.56718 -1.263,17.46967 l -12.43224,14.35121 c -4.01168,5.92832 -7.66503,10.63939 -10.90657,14.94191 39.83526,8.1711 170.1602,28.09575 245.21164,-41.575 a 23.196179,23.196179 0 0 1 16.19403,-6.42178 23.196179,23.196179 0 0 1 15.36412,40.4171 c -97.62691,90.62767 -246.71712,63.05085 -289.53908,52.65187 0.2594,2.27536 0.59044,4.67684 1.01109,7.24809 l 2.97898,25.49875 c 0.75184,6.42247 -2.80051,12.57455 -8.74121,15.14123 -0.0407,0.0175 -0.0824,0.0299 -0.1232,0.0471 A 371.91883,371.91883 0 0 0 469.38855,395.17787 371.91883,371.91883 0 0 0 841.30752,23.258889 371.91883,371.91883 0 0 0 600.52446,-324.59099 c 1.80888,0.98567 3.42766,2.36066 4.71849,4.08972 l 68.09211,91.03952 c 2.96417,3.96883 3.71984,9.16795 2.01677,13.81667 -1.71198,4.65117 -5.65665,8.1185 -10.48978,9.22499 l -110.30673,25.14539 c -6.31634,1.44289 -12.83439,-1.44399 -16.01101,-7.09224 -3.17905,-5.65292 -2.26585,-12.71702 2.24871,-17.37184 l 13.22232,-13.62458 c 4.34087,-5.69288 8.25482,-10.19119 11.73463,-14.3041 -39.30878,-10.4089 -168.29924,-37.66527 -247.16862,27.65325 A 23.196179,23.196179 0 1 1 288.99288,-241.74 c 52.86818,-43.78469 117.62425,-55.45292 173.74555,-54.72664 52.82749,0.68368 97.89403,12.32696 118.30681,18.52791 -0.13041,-2.28786 -0.32489,-4.70598 -0.59979,-7.29881 l -1.53296,-25.62559 c -0.38771,-6.45471 3.50574,-12.39617 9.58196,-14.62302 1.51718,-0.55528 3.08098,-0.84621 4.63333,-0.88788 0.83081,-0.0222 1.65787,0.0294 2.47342,0.14677 a 371.91883,371.91883 0 0 0 -126.21265,-22.43281 z m 49.50078,201.8192 h 26.12932 c 11.00901,0 19.90175,4.27706 26.31598,9.70155 6.41421,5.42449 10.4817,11.88589 12.57723,17.04386 l 0.038,0.0942 0.0345,0.096 c 0.20773,0.58321 0.0908,0.27341 0.15946,0.48743 0.0684,0.21403 0.1645,0.51894 0.28994,0.91326 0.25095,0.78872 0.61592,1.9331 1.08175,3.40117 0.93174,2.93612 2.27084,7.16541 3.93208,12.4069 3.32257,10.482961 7.92946,25.020973 13.11541,41.386533 l -0.18483,-0.487433 c 0.38512,0.864778 0.45097,1.320492 0.42222,1.232179 v 0.0073 0.0073 c 4.2556,13.422928 8.91552,28.148865 13.54122,42.774551 3.66583,-0.58812 7.39149,-0.97466 11.17655,-1.174184 l -0.0488,-0.277241 h 5.52305 c 57.84743,0 104.84914,46.985794 104.83987,104.834422 0,57.847543 -46.98872,104.836253 -104.83625,104.836253 -57.83797,0 -104.83624,-46.98813 -104.83624,-104.836253 0,-41.257598 23.91381,-76.9284137 58.6261,-94.0202841 l -5.74588,-18.1256539 -114.19713,114.198955 9.08003,25.926406 h 4.23469 c 8.20472,0 14.94556,6.7571 14.94556,14.9564 0,8.19931 -6.74084,14.95461 -14.94556,14.95461 h -29.90196 c -8.20474,0 -14.95461,-6.7499 -14.95461,-14.95461 0,-6.71511 4.54898,-12.39001 10.68912,-14.25334 l -6.56677,-15.797203 h -21.891 c -6.36946,51.779603 -50.43786,91.950963 -103.90669,91.950963 -57.83799,0 -104.82718,-46.98871 -104.82718,-104.836245 0,-57.847579 46.98937,-104.836252 104.82718,-104.836252 9.92825,0 19.49895,1.47691 28.60273,4.060745 l 27.81803,-57.62221 -10.88481,-27.033523 h -18.30875 c -2.1294,0 -4.23345,-0.453665 -6.00322,-1.596385 -1.76976,-1.14272 -2.9686,-2.89016 -3.61316,-4.5373 -1.28915,-3.29429 -1.10896,-6.35692 -1.10896,-9.37721 0,-3.02028 -0.18019,-6.08292 1.10896,-9.3772 0.64456,-1.64714 1.8434,-3.39459 3.61316,-4.5373 1.76976,-1.14272 3.87382,-1.5982 6.00322,-1.5982 h 69.83165 c 8.51182,0 15.52177,6.99624 15.52177,15.5127 0,8.52228 -7.01464,15.512705 -15.52177,15.512705 h -18.08035 l 4.69494,11.624109 h 164.21253 l -6.4363,-20.345364 c -0.28742,-0.58681 -1.27871,-2.45075 -2.94997,-4.11872 -1.76151,-1.75806 -3.92946,-3.14566 -7.11035,-3.14566 h -26.12571 c -2.128,-1e-5 -4.23285,-0.45324 -6.00142,-1.5982 -1.76848,-1.14497 -2.96446,-2.89422 -3.60593,-4.54093 -1.28289,-3.29342 -1.09988,-6.35379 -1.09988,-9.37177 0,-3.01788 -0.18369,-6.07919 1.09808,-9.37358 0.64089,-1.64719 1.83562,-3.39784 3.60411,-4.54455 1.76857,-1.1467 3.87583,-1.60363 6.00504,-1.60363 z m -109.07637,89.665997 32.71421,81.153131 5.31285,0.01637 c 8.08558,0.02571 14.93067,6.462539 14.90385,14.525156 -0.0198,5.954236 -3.79609,10.980338 -9.02385,13.19695 l 1.49129,3.700145 112.59893,-112.591701 z m -24.08358,23.260907 -15.26987,31.6251897 c 13.81003,8.9465866 25.33007,21.0164693 33.6347,35.2564713 1.19025,-2.819301 3.26979,-5.157657 5.8782,-6.758818 z M 313.63455,11.71087 c -40.87502,0 -73.89419,33.029861 -73.89419,73.896 0,40.8654 33.03059,73.89601 73.896,73.89601 36.46157,0 66.61177,-26.34466 72.70731,-61.010723 h -74.27653 c -5.34787,0 -10.30193,-2.77288 -13.13534,-7.266214 l -0.003,-0.0058 -0.003,-0.0035 c -2.83235,-4.512626 -3.15048,-10.188178 -0.82358,-14.994381 l 30.34047,-62.835441 c -4.80723,-0.987407 -9.71918,-1.676116 -14.80782,-1.676116 z m 319.36855,0 c -2.44043,2.39e-4 -4.84261,0.156858 -7.22451,0.395028 11.92497,37.882356 20.35624,66.596512 20.39429,66.727629 2.56012,8.113193 -1.99949,16.89225 -10.10927,19.46837 l -0.009,0.002 -0.009,0.004 c -8.11746,2.548903 -16.88913,-2.00651 -19.46652,-10.107442 l -0.009,-0.02525 -20.32001,-66.486843 c -22.13259,12.754659 -37.14097,36.489324 -37.14097,63.919004 0,40.865404 33.03065,73.896004 73.896,73.896004 40.86545,0 73.8942,-33.03046 73.8942,-73.896004 0,-40.863592 -33.02773,-73.893054 -73.89057,-73.895992 z M 356.89109,25.813836 336.78854,67.450431 h 48.38457 C 380.86598,50.439928 370.69604,35.821769 356.89109,25.813836 Z m 55.84647,26.082209 c 1.71032,5.028408 3.03833,10.218299 3.97375,15.558006 l 9.89907,0.0035 -5.88363,-14.601257 -2.88111,-0.0069 c -1.79026,-0.0058 -3.50061,-0.371203 -5.10808,-0.953129 z" - id="path5053" - inkscape:connector-curvature="0"/> - </g> -</svg> +<?xml version="1.0" encoding="UTF-8" standalone="yes"?> +<svg xmlns="http://www.w3.org/2000/svg" width="375px" height="375px" viewBox="0 0 375 375" version="1.1"> + <g id="surface1"> + <path style=" stroke:none;fill-rule:nonzero;fill:rgb(49.019608%,91.764706%,49.411765%);fill-opacity:1;" d="M 200.011719 363.828125 C 194.3125 376.257812 176.652344 376.257812 170.949219 363.828125 L 72.644531 149.554688 C 67.785156 138.964844 75.523438 126.898438 87.175781 126.898438 L 283.785156 126.898438 C 295.4375 126.898438 303.175781 138.964844 298.316406 149.554688 Z M 200.011719 363.828125 "/> + <path style=" stroke:none;fill-rule:nonzero;fill:rgb(49.019608%,91.764706%,49.411765%);fill-opacity:1;" d="M 342.433594 155.679688 C 342.433594 242.214844 272.28125 312.363281 185.746094 312.363281 C 99.210938 312.363281 29.0625 242.214844 29.0625 155.679688 C 29.0625 69.144531 99.210938 -1.007812 185.746094 -1.007812 C 272.28125 -1.007812 342.433594 69.144531 342.433594 155.679688 Z M 342.433594 155.679688 "/> + <path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 185.71875 15 C 108.691406 15 46.25 77.441406 46.25 154.46875 C 46.289062 212.742188 82.554688 264.84375 137.183594 285.125 L 110.429688 253.277344 C 109.234375 251.855469 108.839844 249.925781 109.378906 248.148438 C 109.921875 246.371094 111.328125 244.988281 113.113281 244.472656 L 153.878906 232.722656 C 154.316406 232.59375 154.761719 232.523438 155.199219 232.507812 C 157.109375 232.4375 158.960938 233.375 160.023438 235.035156 C 161.332031 237.085938 161.140625 239.75 159.550781 241.585938 L 154.886719 246.96875 C 153.382812 249.191406 152.011719 250.960938 150.796875 252.574219 C 165.734375 255.636719 214.609375 263.109375 242.753906 236.980469 C 244.386719 235.421875 246.566406 234.558594 248.824219 234.574219 C 252.414062 234.601562 255.613281 236.828125 256.890625 240.179688 C 258.164062 243.535156 257.25 247.328125 254.585938 249.730469 C 217.976562 283.714844 162.066406 273.375 146.007812 269.476562 C 146.105469 270.328125 146.230469 271.230469 146.386719 272.191406 L 147.503906 281.753906 C 147.789062 284.164062 146.457031 286.46875 144.226562 287.433594 C 144.210938 287.441406 144.195312 287.445312 144.179688 287.449219 C 157.621094 291.699219 171.625 293.886719 185.71875 293.9375 C 262.746094 293.9375 325.1875 231.496094 325.1875 154.46875 C 325.160156 96.4375 289.199219 44.488281 234.894531 24.023438 C 235.574219 24.394531 236.179688 24.910156 236.664062 25.558594 L 262.199219 59.699219 C 263.308594 61.1875 263.59375 63.136719 262.957031 64.878906 C 262.3125 66.625 260.832031 67.925781 259.023438 68.339844 L 217.65625 77.769531 C 215.289062 78.308594 212.84375 77.226562 211.652344 75.109375 C 210.460938 72.988281 210.800781 70.339844 212.496094 68.59375 L 217.453125 63.484375 C 219.082031 61.351562 220.550781 59.664062 221.855469 58.121094 C 207.113281 54.21875 158.742188 43.996094 129.167969 68.492188 C 126.777344 70.527344 123.480469 71.121094 120.535156 70.042969 C 117.585938 68.964844 115.449219 66.382812 114.941406 63.285156 C 114.429688 60.191406 115.625 57.0625 118.070312 55.09375 C 137.894531 38.675781 162.179688 34.300781 183.226562 34.570312 C 203.035156 34.828125 219.933594 39.195312 227.589844 41.519531 C 227.542969 40.660156 227.46875 39.753906 227.367188 38.78125 L 226.789062 29.171875 C 226.644531 26.753906 228.105469 24.523438 230.382812 23.691406 C 230.953125 23.480469 231.539062 23.371094 232.121094 23.355469 C 232.433594 23.347656 232.742188 23.367188 233.046875 23.410156 C 217.878906 17.890625 201.863281 15.042969 185.71875 15 Z M 204.28125 90.679688 L 214.082031 90.679688 C 218.207031 90.679688 221.542969 92.285156 223.949219 94.320312 C 226.355469 96.355469 227.878906 98.777344 228.664062 100.710938 L 228.679688 100.746094 L 228.691406 100.78125 C 228.769531 101 228.726562 100.886719 228.753906 100.964844 C 228.777344 101.046875 228.8125 101.160156 228.859375 101.308594 C 228.953125 101.601562 229.09375 102.03125 229.265625 102.582031 C 229.617188 103.683594 230.117188 105.269531 230.742188 107.234375 C 231.988281 111.167969 233.714844 116.617188 235.660156 122.753906 L 235.589844 122.574219 C 235.734375 122.898438 235.757812 123.066406 235.75 123.035156 L 235.75 123.039062 C 237.34375 128.074219 239.089844 133.597656 240.828125 139.082031 C 242.199219 138.859375 243.597656 138.714844 245.019531 138.640625 L 245 138.535156 L 247.070312 138.535156 C 268.761719 138.535156 286.390625 156.15625 286.386719 177.847656 C 286.386719 199.542969 268.765625 217.164062 247.070312 217.164062 C 225.382812 217.164062 207.757812 199.542969 207.757812 177.847656 C 207.757812 162.378906 216.726562 149 229.742188 142.59375 L 227.589844 135.792969 L 184.765625 178.621094 L 188.167969 188.339844 L 189.757812 188.339844 C 192.835938 188.339844 195.363281 190.875 195.363281 193.949219 C 195.363281 197.023438 192.835938 199.558594 189.757812 199.558594 L 178.542969 199.558594 C 175.46875 199.558594 172.9375 197.027344 172.9375 193.949219 C 172.9375 191.433594 174.640625 189.304688 176.945312 188.605469 L 174.480469 182.679688 L 166.273438 182.679688 C 163.882812 202.097656 147.359375 217.164062 127.308594 217.164062 C 105.617188 217.164062 87.996094 199.542969 87.996094 177.847656 C 87.996094 156.15625 105.617188 138.535156 127.308594 138.535156 C 131.03125 138.535156 134.621094 139.089844 138.035156 140.058594 L 148.464844 118.449219 L 144.382812 108.3125 L 137.519531 108.3125 C 136.71875 108.3125 135.929688 108.140625 135.265625 107.714844 C 134.601562 107.285156 134.152344 106.628906 133.910156 106.011719 C 133.429688 104.777344 133.496094 103.628906 133.496094 102.496094 C 133.496094 101.363281 133.429688 100.214844 133.910156 98.980469 C 134.152344 98.363281 134.601562 97.707031 135.265625 97.277344 C 135.929688 96.851562 136.71875 96.679688 137.519531 96.679688 L 163.703125 96.679688 C 166.898438 96.679688 169.527344 99.300781 169.527344 102.496094 C 169.527344 105.691406 166.894531 108.3125 163.703125 108.3125 L 156.925781 108.3125 L 158.683594 112.671875 L 220.265625 112.671875 L 217.851562 105.042969 C 217.742188 104.824219 217.371094 104.125 216.746094 103.5 C 216.085938 102.839844 215.273438 102.320312 214.078125 102.320312 L 204.28125 102.320312 C 203.484375 102.320312 202.695312 102.148438 202.03125 101.71875 C 201.367188 101.289062 200.917969 100.632812 200.679688 100.015625 C 200.199219 98.78125 200.265625 97.632812 200.265625 96.503906 C 200.265625 95.371094 200.199219 94.222656 200.679688 92.988281 C 200.917969 92.371094 201.367188 91.710938 202.03125 91.28125 C 202.691406 90.851562 203.484375 90.679688 204.28125 90.679688 Z M 163.378906 124.304688 L 175.644531 154.738281 L 177.636719 154.746094 C 180.671875 154.753906 183.238281 157.167969 183.226562 160.191406 C 183.21875 162.425781 181.804688 164.308594 179.84375 165.140625 L 180.402344 166.527344 L 222.628906 124.304688 Z M 154.347656 133.027344 L 148.621094 144.886719 C 153.800781 148.242188 158.121094 152.769531 161.234375 158.109375 C 161.679688 157.050781 162.460938 156.175781 163.4375 155.574219 Z M 127.3125 150.136719 C 111.984375 150.136719 99.601562 162.523438 99.601562 177.847656 C 99.601562 193.175781 111.988281 205.558594 127.3125 205.558594 C 140.984375 205.558594 152.292969 195.679688 154.578125 182.679688 L 126.722656 182.679688 C 124.71875 182.679688 122.859375 181.640625 121.796875 179.957031 L 121.796875 179.953125 C 120.734375 178.261719 120.613281 176.132812 121.488281 174.332031 L 132.863281 150.765625 C 131.0625 150.398438 129.21875 150.136719 127.3125 150.136719 Z M 247.074219 150.136719 C 246.160156 150.136719 245.257812 150.195312 244.367188 150.285156 C 248.835938 164.492188 252 175.261719 252.011719 175.308594 C 252.972656 178.351562 251.261719 181.644531 248.222656 182.609375 L 248.21875 182.609375 L 248.214844 182.613281 C 245.171875 183.566406 241.882812 181.859375 240.914062 178.820312 L 240.910156 178.8125 L 233.292969 153.878906 C 224.992188 158.664062 219.363281 167.5625 219.363281 177.847656 C 219.363281 193.175781 231.75 205.5625 247.074219 205.5625 C 262.398438 205.5625 274.785156 193.175781 274.785156 177.847656 C 274.785156 162.527344 262.398438 150.140625 247.078125 150.136719 Z M 143.53125 155.425781 L 135.992188 171.039062 L 154.136719 171.039062 C 152.523438 164.660156 148.710938 159.179688 143.53125 155.425781 Z M 164.476562 165.207031 C 165.117188 167.09375 165.613281 169.039062 165.964844 171.042969 L 169.675781 171.042969 L 167.472656 165.566406 L 166.390625 165.566406 C 165.71875 165.5625 165.078125 165.425781 164.476562 165.207031 Z M 164.476562 165.207031 "/> + </g> +</svg> \ No newline at end of file diff --git a/assets/layers/bicycle_rental/bicycle_rental.json b/assets/layers/bicycle_rental/bicycle_rental.json new file mode 100644 index 0000000000..57eee94cc9 --- /dev/null +++ b/assets/layers/bicycle_rental/bicycle_rental.json @@ -0,0 +1,305 @@ +{ + "id": "bicycle_rental", + "name": { + "en": "Bicycle rental", + "nl": "Fietsverhuur" + }, + "source": { + "osmTags": { + "or": [ + "amenity=bicycle_rental", + "bicycle_rental~*", + "service:bicycle:rental=yes", + "rental~.*bicycle.*" + ] + } + }, + "minzoom": 12, + "title": { + "render": { + "en": "Bicycle rental", + "nl": "Fietsverhuur", + "es": "Alquiler de bicicletas" + }, + "mappings": [ + { + "if": { + "and": [ + "name~*" + ] + }, + "then": { + "en": "{name}", + "nl": "{name}" + } + } + ] + }, + "description": { + "en": "Bicycle rental stations", + "nl": "Fietsverhuustations" + }, + "tagRenderings": [ + { + "id": "bicycle_rental_type", + "question": { + "en": "What kind of bicycle rental is this?", + "nl": "Wat voor fietsverhuur is dit?" + }, + "mappings": [ + { + "if": { + "and": [ + "shop=bicycle_rental", + "bicycle_rental=shop" + ] + }, + "then": { + "en": "This is a shop whose main focus is bicycle rental", + "nl": "Dit is een zaak die focust op fietsverhuur" + } + }, + { + "if": { + "and": [ + "shop=rental" + ] + }, + "then": { + "en": "This is a rental buisiness which rents out various objects and/or vehicles. It rents out bicycles too, but this is not the main focus", + "nl": "Dit is een zaak die verschillende voorwerpen en/of voertuigen verhuurt, waaronder ook fietsen; al zijn fietsen niet de hoofdfocus" + }, + "hideInAnswer": true + }, + { + "if": { + "and": [ + "service:bicycle:rental=yes", + "shop=bicycle" + ] + }, + "then": { + "en": "This is a shop which sells or repairs bicycles, but also rents out bicycles", + "nl": "Dit is een fietsenmaker of fietswinkel die ook fietsen veruurt" + } + }, + { + "if": "bicycle_rental=docking_station", + "then": { + "en": "This is an automated docking station, where a bicycle is mechanically locked into a structure", + "nl": "Dit is een docking station waar de fietsen mechanisch in een grotere structuur worden vastgemaakt" + } + }, + { + "if": "bicycle_rental=key_dispensing_machine", + "then": { + "en": "A machine is present which dispenses and accepts keys, eventually after authentication and/or payment. The bicycles are parked nearby", + "nl": "Hier is een machine die fietssleutels verdeelt en terugneemt, eventueel na aanmelden of betaling. De fietsen staan in de buurt geparkeerd" + } + }, + { + "if": "bicycle_rental=dropoff_point", + "then": { + "en": "This is a dropoff point: a designated bicycle parking for this cycle rental", + "nl": "Dit is een afzetpunt: een parking met duidelijke signalisatie waar (enkel) fietsen van deze fietsverhuur gezet worden", + "hu": "Ez egy leadási pont: ennek a kerékpárkölcsönzőnek a kijelölt kerékpártárolója" + } + } + ] + }, + "website", + "email", + "phone", + { + "builtin": "opening_hours", + "override": { + "condition": { + "or": [ + "shop~*", + "opening_hours~*" + ] + } + } + }, + { + "builtin": "payment-options", + "override": { + "condition": "shop~*" + } + }, + { + "builtin": "payment-options-advanced", + "override": { + "condition": "shop=" + } + }, + { + "id": "bicycle-types", + "question": { + "en": "What kind of bicycles and accessories are rented here?", + "nl": "Wat voor soort fietsen en fietstoebehren worden hier verhuurd?" + }, + "render": { + "en": "{rental} is rented here", + "nl": "{rental} wordt hier uitgeleend" + }, + "freeform": { + "key": "rental" + }, + "multiAnswer": true, + "mappings": [ + { + "if": "rental=city_bike", + "then": { + "en": "Normal city bikes can be rented here", + "nl": "Gewone stadsfietsen kunnen hier gehuurd worden" + } + }, + { + "if": "rental=ebike", + "then": { + "en": "Electrical bikes can be rented here", + "nl": "Elektrische fietsen kunnen hier gehuurd worden" + } + }, + { + "if": "rental=bmx", + "then": { + "en": "BMX bikes can be rented here", + "nl": "BMX-fietsen kunnen hier gehuurd worden" + } + }, + { + "if": "rental=mtb", + "then": { + "en": "Mountainbikes can be rented here", + "nl": "Mountainbikes kunnen hier gehuurd worden" + } + }, + { + "if": "rental=kid_bike", + "then": { + "en": "Bikes for childs can be rented here", + "nl": "Kinderfietsen kunnen hier gehuurd worden" + } + } + ] + }, + { + "rewrite": { + "sourceString": [ + "bicycle_type", + "type_plural" + ], + "into": [ + [ + "city_bike", + { + "en": "city bikes", + "nl": "Stadsfietsen" + } + ], + [ + "ebike", + { + "en": "electrical bikes", + "nl": "elektrische fietsen" + } + ], + [ + "kid_bike", + { + "en": "bikes for children", + "nl": "Kinderfietsen" + } + ], + [ + "bmx", + { + "en": "BMX bikes", + "nl": "BMX-fietsen" + } + ], + [ + "mtb", + { + "en": "mountainbike", + "nl": "mountainbike" + } + ], + [ + "bicycle_pannier", + { + "en": "bicycle panniers", + "nl": "Fietstassen" + } + ] + ] + }, + "renderings": [ + { + "id": "rental-capacity-bicycle-type", + "group": "", + "question": { + "en": "How much type_plural can be rented here? ", + "nl": "Hoeveel type_plural kunnen hier uitgeleend worden?" + }, + "render": { + "en": "{capacity:bicycle_type} type_plural can be rented here", + "nl": "{capacity:bicycle_type} type_plural kunnen hier uitgeleend worden" + }, + "freeform": { + "key": "capacity:bicycle_type", + "type": "pnat" + }, + "condition": "rental~.*bicycle_type.*" + } + ] + } + ], + "presets": [ + { + "title": { + "en": "bicycle rental shop", + "nl": "fietsverhuurzaak" + }, + "tags": [ + "amenity=bicycle_rental", + "bicycle_rental=shop" + ], + "description": { + "en": "A manned shop which focuses on bicycle rental", + "nl": "Een bemande winkel die focust op fietsverhuur" + } + }, + { + "title": { + "en": "bicycle rental", + "nl": "fietsverhuur" + }, + "tags": [ + "amenity=bicycle_rental" + ] + } + ], + "mapRendering": [ + { + "icon": "./assets/themes/bicycle_rental/logo.svg", + "iconSize": { + "render": "40,40,center" + }, + "location": [ + "point", + "centroid" + ] + }, + { + "color": { + "render": "#3333aa88" + }, + "width": { + "render": "2" + } + } + ] +} \ No newline at end of file diff --git a/assets/layers/bicycle_rental/license_info.json b/assets/layers/bicycle_rental/license_info.json new file mode 100644 index 0000000000..0996432254 --- /dev/null +++ b/assets/layers/bicycle_rental/license_info.json @@ -0,0 +1,13 @@ +[ + { + "path": "rental.svg", + "license": "CC0", + "authors": [ + "Toerisme Vlaanderen" + ], + "sources": [ + "https://toerismevlaanderen.be/pinjepunt", + "https://mapcomplete.osm.be/toerisme_vlaanderenn" + ] + } +] \ No newline at end of file diff --git a/assets/layers/bicycle_rental/rental.svg b/assets/layers/bicycle_rental/rental.svg new file mode 100644 index 0000000000..b66b2c214e --- /dev/null +++ b/assets/layers/bicycle_rental/rental.svg @@ -0,0 +1 @@ +<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 141.73 141.73"><defs><style>.cls-1{fill:#fff;}.cls-2{fill:#3c3d3c;}</style></defs><g id="Laag_1" data-name="Laag 1"><circle class="cls-1" cx="70.87" cy="70.87" r="70.87"/></g><g id="Laag_2" data-name="Laag 2"><path class="cls-2" d="M102.39,75a18.18,18.18,0,0,0-3.92.43L92.87,57a7,7,0,0,0-6.77-5H80.67v2.59H86.1a4.45,4.45,0,0,1,4.29,3.19l1.72,5.66H55.54l-2-4.89h3.72S62,57.77,62,54.14H46.39v4.33h4.35l2.55,6.25L47.67,76.27A18.31,18.31,0,1,0,59,96.27h8l1-.43L93.33,67.37,96,76.15a18.28,18.28,0,1,0,6.4-1.17ZM41,109a15.72,15.72,0,1,1,5.58-30.4l-7.69,15.8L40,96.27H56.38A15.74,15.74,0,0,1,41,109Zm15.7-15.33H42.07l6.8-14a15.71,15.71,0,0,1,7.8,13.56C56.67,93.42,56.66,93.55,56.65,93.68ZM50,77.39l4.61-9.45,10.5,25.74H59.24c0-.13,0-.26,0-.39A18.33,18.33,0,0,0,50,77.39ZM67.45,92.56,56.59,66H91.13ZM102.39,109a15.71,15.71,0,0,1-5.65-30.38l4.56,15,2.48-.76-4.56-15A15.72,15.72,0,1,1,102.39,109Z"/><path class="cls-2" d="M78.72,40.26a13.89,13.89,0,0,1-5.58,1.25,9.86,9.86,0,0,1-5.6-1.61,9,9,0,0,1-3.39-4.41h9.4l1.07-2.89-.13-.36h-11a2.91,2.91,0,0,1,0-.4v-.57c0-.4,0-.79.05-1.17h12l1.08-2.93L76.36,27H64.13a8.69,8.69,0,0,1,3.48-4.43A10.82,10.82,0,0,1,73.55,21a16.47,16.47,0,0,1,4.55.68l.13,0,1.08-3-.15-.05a16.56,16.56,0,0,0-5.3-.81,14.91,14.91,0,0,0-8.42,2.35A11.73,11.73,0,0,0,60.66,27h-2.3l-1.08,2.93.19.19h2.69c0,.16,0,.32,0,.49v1.23c0,.14,0,.29,0,.42h-1.8L57.28,35.3l.19.19h3.21a12.2,12.2,0,0,0,4.48,6.72,12.47,12.47,0,0,0,7.64,2.46A16.44,16.44,0,0,0,79,43.39l.09,0v-3l-.28-.16Z"/></g></svg> \ No newline at end of file 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 4fb0991ad7..6558cc5d25 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": "这个借还机被关闭了", @@ -284,5 +284,9 @@ { "color": "#6bc4f7" } - ] + ], + "description": { + "en": "A layer showing vending machines for bicycle tubes (either purpose-built bicycle tube vending machines or classical vending machines with bicycle tubes and optionally additional bicycle related objects such as lights, gloves, locks, ...)", + "nl": "Een laag met verkoopsautomaten met binnenbanden voor fietsen (dit kan een automaat zijn met énkel fietsbanden, of een gewone automaat met fietsbanden en andere fietsaccessoires zoals lichten, handschoenen, sloten,...)" + } } \ No newline at end of file diff --git a/assets/layers/bicycle_tube_vending_machine/pinIcon.svg b/assets/layers/bicycle_tube_vending_machine/pinIcon.svg index 6fefa72904..6ebaa9e1ab 100644 --- a/assets/layers/bicycle_tube_vending_machine/pinIcon.svg +++ b/assets/layers/bicycle_tube_vending_machine/pinIcon.svg @@ -1,193 +1,10 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - xmlns="http://www.w3.org/2000/svg" - width="25.929167mm" - height="30.958698mm" - viewBox="0 0 25.929167 30.958698" - version="1.1" - id="svg8" - inkscape:version="0.92.5 (2060ec1f9f, 2020-04-08)" - sodipodi:docname="pinIcon.svg"> - <defs - id="defs2"> - <filter - style="color-interpolation-filters:sRGB" - filterUnits="userSpaceOnUse" - height="63" - width="67" - y="23" - x="16" - id="filter0_d"> - <feFlood - id="feFlood10" - result="BackgroundImageFix" - flood-opacity="0"/> - <feColorMatrix - id="feColorMatrix12" - values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" - type="matrix" - in="SourceAlpha"/> - <feOffset - id="feOffset14" - dy="4"/> - <feGaussianBlur - id="feGaussianBlur16" - stdDeviation="2"/> - <feColorMatrix - id="feColorMatrix18" - values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0" - type="matrix"/> - <feBlend - id="feBlend20" - result="effect1_dropShadow" - in2="BackgroundImageFix" - mode="normal"/> - <feBlend - id="feBlend22" - result="shape" - in2="effect1_dropShadow" - in="SourceGraphic" - mode="normal"/> - </filter> - <filter - style="color-interpolation-filters:sRGB" - filterUnits="userSpaceOnUse" - height="63" - width="67" - y="23" - x="16" - id="filter0_d-3"> - <feFlood - id="feFlood10-6" - result="BackgroundImageFix" - flood-opacity="0"/> - <feColorMatrix - id="feColorMatrix12-7" - values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" - type="matrix" - in="SourceAlpha"/> - <feOffset - id="feOffset14-5" - dy="4"/> - <feGaussianBlur - id="feGaussianBlur16-3" - stdDeviation="2"/> - <feColorMatrix - id="feColorMatrix18-5" - values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0" - type="matrix"/> - <feBlend - id="feBlend20-6" - result="effect1_dropShadow" - in2="BackgroundImageFix" - mode="normal"/> - <feBlend - id="feBlend22-2" - result="shape" - in2="effect1_dropShadow" - in="SourceGraphic" - mode="normal"/> - </filter> - </defs> - <sodipodi:namedview - id="base" - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="0.0" - inkscape:pageshadow="2" - inkscape:zoom="8.1303907" - inkscape:cx="36.194774" - inkscape:cy="71.950763" - inkscape:document-units="mm" - inkscape:current-layer="layer1" - showgrid="false" - showguides="true" - inkscape:guide-bbox="true" - inkscape:object-nodes="false" - inkscape:snap-nodes="false" - inkscape:snap-others="false" - inkscape:window-width="1920" - inkscape:window-height="999" - inkscape:window-x="0" - inkscape:window-y="0" - inkscape:window-maximized="1"> - <sodipodi:guide - position="27.966223,64.089257" - orientation="1,0" - id="guide839" - inkscape:locked="false"/> - <sodipodi:guide - position="33.524427,68.420967" - orientation="0,1" - id="guide841" - inkscape:locked="false"/> - </sodipodi:namedview> - <metadata - id="metadata5"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage"/> - <dc:title/> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Layer 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(-21.083817,-224.56459)"> - <path - style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.82687008;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - d="m 41.280692,238.51613 c 0,0.53966 -0.617389,0.97866 -1.385942,0.99147 -0.01148,2e-4 -10.875298,2.6e-4 -10.886847,2.6e-4 -0.784514,0 -1.420488,-0.44403 -1.420489,-0.99176 1e-6,-0.54772 0.635975,-0.99175 1.420489,-0.99175 0.01545,0 10.883142,1.6e-4 10.898474,3.6e-4 0.763143,0.0171 1.374315,0.45432 1.374316,0.99127 z" - id="path837" - inkscape:connector-curvature="0" - sodipodi:nodetypes="csscsscc" - inkscape:export-xdpi="244.98" - inkscape:export-ydpi="244.98"/> - <path - style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.82687008;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - d="m 43.665973,238.47977 c -1e-6,1.55949 -1.353853,2.82693 -3.035183,2.85428 -0.01846,3e-4 -12.607711,4e-4 -12.626255,4e-4 -1.706945,0 -3.090699,-1.2781 -3.0907,-2.85472 -10e-7,-1.57662 1.383754,-2.85476 3.0907,-2.85476 0.02273,0 12.616119,2.3e-4 12.638718,8.8e-4 1.675556,0.0334 3.02272,1.2984 3.02272,2.85405 z" - id="path847" - inkscape:connector-curvature="0" - sodipodi:nodetypes="ssssssss" - inkscape:export-xdpi="244.98" - inkscape:export-ydpi="244.98"/> - <path - style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.82687008;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - d="m 46.014735,238.47978 c -2e-6,2.69259 -2.168416,4.87871 -4.854222,4.90735 -0.01778,2e-4 -13.766963,2.8e-4 -13.784791,2.8e-4 -2.710414,0 -4.907638,-2.19723 -4.90764,-4.90763 -10e-7,-2.7104 2.197224,-4.90763 4.90764,-4.90763 0.02907,0 13.789453,2.4e-4 13.818401,9.3e-4 2.670264,0.0465 4.820613,2.22555 4.820612,4.90689 z" - id="path849" - inkscape:connector-curvature="0" - sodipodi:nodetypes="sssssss" - inkscape:export-xdpi="244.98" - inkscape:export-ydpi="244.98"/> - <rect - style="fill:#000000;fill-opacity:1;stroke:#ffffff;stroke-width:0.23621552;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - id="rect910" - width="2.2565947" - height="11.358825" - x="37.684917" - y="232.82724" - inkscape:export-xdpi="244.98" - inkscape:export-ydpi="244.98"/> - <rect - style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:1.0892781;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - id="rect924" - width="0.79356372" - height="5.3985114" - x="34.012344" - y="227.07784" - inkscape:export-xdpi="244.98" - inkscape:export-ydpi="244.98"/> - </g> -</svg> +<?xml version="1.0" encoding="UTF-8" standalone="yes"?> +<svg xmlns="http://www.w3.org/2000/svg" width="313px" height="374px" viewBox="0 0 313 374" version="1.1"> + <g id="surface1"> + <path style="fill:none;stroke-width:0.82687;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:4;" d="M 41.280465 238.515911 C 41.280465 239.055692 40.663043 239.49477 39.894824 239.507722 C 39.883498 239.508046 29.019382 239.508046 29.007732 239.508046 C 28.223333 239.508046 27.587466 239.063787 27.587466 238.515911 C 27.587466 237.968359 28.223333 237.524424 29.007732 237.524424 C 29.023265 237.524424 39.891264 237.524424 39.906473 237.524748 C 40.669515 237.541586 41.280465 237.979045 41.280465 238.515911 Z M 41.280465 238.515911 " transform="matrix(12.071348,0,0,12.063634,-254.510092,-2708.802357)"/> + <path style="fill:none;stroke-width:0.82687;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:4;" d="M 43.666021 238.479645 C 43.666021 240.039408 42.312092 241.306452 40.630683 241.334299 C 40.612238 241.334623 28.023351 241.334623 28.004582 241.334623 C 26.297285 241.334623 24.913909 240.056246 24.913909 238.479645 C 24.913909 236.903045 26.297285 235.624991 28.004582 235.624991 C 28.027557 235.624991 40.620652 235.625315 40.643303 235.625963 C 42.318888 235.659315 43.666021 236.924092 43.666021 238.479969 Z M 43.666021 238.479645 " transform="matrix(12.071348,0,0,12.063634,-254.510092,-2708.802357)"/> + <path style="fill:none;stroke-width:0.82687;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:4;" d="M 46.014687 238.479645 C 46.014687 241.172397 43.846265 243.358396 41.160411 243.387215 C 41.142613 243.387538 27.393308 243.387538 27.375833 243.387538 C 24.665063 243.387538 22.468164 241.189882 22.468164 238.479645 C 22.468164 235.769408 24.665063 233.572399 27.375833 233.572399 C 27.404633 233.572399 41.164941 233.572399 41.194389 233.573371 C 43.864386 233.619675 46.014687 235.79855 46.014687 238.479969 Z M 46.014687 238.479645 " transform="matrix(12.071348,0,0,12.063634,-254.510092,-2708.802357)"/> + <path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.236216;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:4;" d="M 37.684981 232.827003 L 39.941422 232.827003 L 39.941422 244.186039 L 37.684981 244.186039 Z M 37.684981 232.827003 " transform="matrix(12.071348,0,0,12.063634,-254.510092,-2708.802357)"/> + <path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 156.066406 30.582031 L 165.640625 30.582031 L 165.640625 95.710938 L 156.066406 95.710938 Z M 156.066406 30.582031 "/> + </g> +</svg> \ No newline at end of file diff --git a/assets/layers/bicycle_tube_vending_machine/tube.svg b/assets/layers/bicycle_tube_vending_machine/tube.svg index dfba42d273..c39c1a856c 100644 --- a/assets/layers/bicycle_tube_vending_machine/tube.svg +++ b/assets/layers/bicycle_tube_vending_machine/tube.svg @@ -1,126 +1,11 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - xmlns="http://www.w3.org/2000/svg" - width="51.841461mm" - height="36.68618mm" - viewBox="0 0 51.841461 36.68618" - version="1.1" - id="svg8" - inkscape:version="0.92.5 (2060ec1f9f, 2020-04-08)" - sodipodi:docname="tube.svg"> - <defs - id="defs2"/> - <sodipodi:namedview - id="base" - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="0.0" - inkscape:pageshadow="2" - inkscape:zoom="1.6479131" - inkscape:cx="31.112488" - inkscape:cy="69.182578" - inkscape:document-units="mm" - inkscape:current-layer="layer2" - showgrid="false" - showguides="true" - inkscape:guide-bbox="true" - inkscape:object-nodes="false" - inkscape:snap-nodes="false" - inkscape:snap-others="false" - inkscape:window-width="597" - inkscape:window-height="464" - inkscape:window-x="628" - inkscape:window-y="207" - inkscape:window-maximized="0"> - <sodipodi:guide - position="40.514968,7.9968472" - orientation="1,0" - id="guide839" - inkscape:locked="false"/> - <sodipodi:guide - position="46.073173,12.328557" - orientation="0,1" - id="guide841" - inkscape:locked="false"/> - </sodipodi:namedview> - <metadata - id="metadata5"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage"/> - <dc:title></dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:groupmode="layer" - id="layer2" - inkscape:label="bg"/> - <g - inkscape:label="Layer 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(-8.5350726,-162.7447)"> - <path - style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:1.68589711;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - d="m 52.819614,187.17927 c -1e-6,1.41536 -1.61917,2.56667 -3.634782,2.60026 -0.03011,5e-4 -28.521622,7e-4 -28.551907,7e-4 -2.057472,0 -3.725384,-1.16451 -3.725385,-2.60101 10e-7,-1.4365 1.667913,-2.60101 3.725385,-2.60101 0.04052,0 28.542192,4.5e-4 28.582402,10e-4 2.001425,0.0447 3.604287,1.19146 3.604288,2.59967 z" - id="path837" - inkscape:connector-curvature="0" - sodipodi:nodetypes="csscsscc" - inkscape:export-xdpi="244.98" - inkscape:export-ydpi="244.98"/> - <path - style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:1.92546511;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - d="m 56.121413,187.10232 c -3e-6,3.58651 -3.113572,6.50133 -6.980276,6.56424 -0.04246,6.9e-4 -28.995042,9.3e-4 -29.037689,9.3e-4 -3.925611,0 -7.107948,-2.93938 -7.107951,-6.56528 -2e-6,-3.6259 3.182336,-6.56529 7.107951,-6.56529 0.05225,0 29.014378,5.2e-4 29.066356,0.002 3.853419,0.0768 6.951609,2.98607 6.951609,6.56372 z" - id="path847" - inkscape:connector-curvature="0" - sodipodi:nodetypes="ssssssss" - inkscape:export-xdpi="244.98" - inkscape:export-ydpi="244.98"/> - <path - style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - d="m 59.376534,187.10233 c -3e-6,5.69942 -4.589909,10.32682 -10.274983,10.38745 -0.03764,4e-4 -29.140686,6e-4 -29.178423,6e-4 -5.737163,0 -10.3880526,-4.65089 -10.3880554,-10.38805 -2.8e-6,-5.73717 4.6508884,-10.38806 10.3880554,-10.38806 0.06153,0 29.188289,5.3e-4 29.249565,0.002 5.652179,0.0983 10.203844,4.71082 10.203841,10.38646 z" - id="path849" - inkscape:connector-curvature="0" - sodipodi:nodetypes="sssssss" - inkscape:export-xdpi="244.98" - inkscape:export-ydpi="244.98"/> - <rect - style="fill:#000000;fill-opacity:1;stroke:#ffffff;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - id="rect910" - width="4.7765589" - height="24.04335" - x="41.744713" - y="175.13753" - inkscape:export-xdpi="244.98" - inkscape:export-ydpi="244.98"/> - <rect - style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:1.56908238;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - id="rect924" - width="1.4863302" - height="5.9807334" - x="31.488573" - y="169.11668" - inkscape:export-xdpi="244.98" - inkscape:export-ydpi="244.98"/> - <path - style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - d="m 31.188119,163.65776 c 0.228413,-0.98336 1.556534,-1.43106 1.966818,0 l 0.96334,4.97725 h -3.612524 z" - id="rect936" - inkscape:connector-curvature="0" - sodipodi:nodetypes="ccccc" - inkscape:export-xdpi="244.98" - inkscape:export-ydpi="244.98"/> - </g> -</svg> +<?xml version="1.0" encoding="UTF-8" standalone="yes"?> +<svg xmlns="http://www.w3.org/2000/svg" width="373px" height="264px" viewBox="0 0 373 264" version="1.1"> + <g id="surface1"> + <path style="fill:none;stroke-width:1.685897;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:4;" d="M 52.819462 187.17936 C 52.819462 188.594501 51.200611 189.745829 49.184795 189.779484 C 49.154887 189.780027 20.66321 189.780027 20.632758 189.780027 C 18.575615 189.780027 16.907279 188.615671 16.907279 187.17936 C 16.907279 185.742506 18.575615 184.57815 20.632758 184.57815 C 20.673542 184.57815 49.175007 184.578693 49.215247 184.579236 C 51.216924 184.623747 52.819462 185.770733 52.819462 187.178817 Z M 52.819462 187.17936 " transform="matrix(7.18343,0,0,7.19617,-61.01085,-1171.138615)"/> + <path style="fill:none;stroke-width:1.925465;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:4;" d="M 56.121332 187.102279 C 56.121332 190.688714 53.007612 193.603676 49.141293 193.666643 C 49.098877 193.667186 20.14607 193.667729 20.103654 193.667729 C 16.178062 193.667729 12.995281 190.72834 12.995281 187.102279 C 12.995281 183.476218 16.178062 180.536829 20.103654 180.536829 C 20.155858 180.536829 49.11791 180.537372 49.169569 180.539001 C 53.023382 180.615539 56.121332 183.525073 56.121332 187.102822 Z M 56.121332 187.102279 " transform="matrix(7.18343,0,0,7.19617,-61.01085,-1171.138615)"/> + <path style="fill:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:4;" d="M 59.376436 187.102279 C 59.376436 192.801925 54.786881 197.428952 49.101596 197.489749 C 49.064075 197.490291 19.960638 197.490291 19.923117 197.490291 C 14.186173 197.490291 9.53517 192.83938 9.53517 187.102279 C 9.53517 181.365178 14.186173 176.714267 19.923117 176.714267 C 19.984565 176.714267 49.111384 176.71481 49.172832 176.716438 C 54.824946 176.814689 59.376436 181.42706 59.376436 187.102822 Z M 59.376436 187.102279 " transform="matrix(7.18343,0,0,7.19617,-61.01085,-1171.138615)"/> + <path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:4;" d="M 41.744713 175.137365 L 46.521331 175.137365 L 46.521331 199.180644 L 41.744713 199.180644 Z M 41.744713 175.137365 " transform="matrix(7.18343,0,0,7.19617,-61.01085,-1171.138615)"/> + <path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 165.183594 45.855469 L 175.863281 45.855469 L 175.863281 88.890625 L 165.183594 88.890625 Z M 165.183594 45.855469 "/> + <path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 163.027344 6.570312 C 164.667969 -0.507812 174.207031 -3.726562 177.15625 6.570312 L 184.074219 42.386719 L 158.125 42.386719 Z M 163.027344 6.570312 "/> + </g> +</svg> \ No newline at end of file diff --git a/assets/layers/bike_cafe/bike_cafe.json b/assets/layers/bike_cafe/bike_cafe.json index 62fb4c4f6b..becb7d4071 100644 --- a/assets/layers/bike_cafe/bike_cafe.json +++ b/assets/layers/bike_cafe/bike_cafe.json @@ -162,7 +162,8 @@ "zh_Hant": "這裡是否有工具修理你的單車嗎?", "ru": "Есть ли здесь инструменты для починки вашего велосипеда?", "pt_BR": "Há ferramentas aqui para consertar sua bicicleta?", - "pt": "Há ferramentas aqui para consertar a sua própria bicicleta?" + "pt": "Há ferramentas aqui para consertar a sua própria bicicleta?", + "es": "¿Hay herramientas para reparar su propia bicicleta?" }, "mappings": [ { @@ -356,7 +357,7 @@ "mapRendering": [ { "icon": { - "render": "./assets/layers/bike_cafe/bike_cafe.svg" + "render": "pin:#684c2b;./assets/layers/bike_cafe/bike_cafe.svg" }, "iconSize": { "render": "50,50,bottom" @@ -374,5 +375,9 @@ "render": "2" } } - ] + ], + "description": { + "en": "A bike café is a café geared towards cyclists, for example with services such as a pump, with lots of bicycle-related decoration, ...", + "nl": "Een fietscafé is een café dat gericht is op fietsers, bijvoorbeeld omdat het een fietspomp heeft, fietsgerelateerde decoratie heeft enzovoorts." + } } \ No newline at end of file diff --git a/assets/layers/bike_cafe/bike_cafe.svg b/assets/layers/bike_cafe/bike_cafe.svg index 9a84fbd170..c00702f70b 100644 --- a/assets/layers/bike_cafe/bike_cafe.svg +++ b/assets/layers/bike_cafe/bike_cafe.svg @@ -1,30 +1,19 @@ -<svg width="98" height="124" viewBox="0 0 98 124" fill="none" xmlns="http://www.w3.org/2000/svg"> - <path d="M55.0445 114.094C53.2614 117.981 47.7386 117.981 45.9555 114.094L15.2124 47.085C13.6928 43.7729 16.1129 40 19.7569 40L81.2431 40C84.8871 40 87.3072 43.7729 85.7876 47.085L55.0445 114.094Z" - fill="#694E2D"/> - <circle cx="49" cy="49" r="49" fill="#694E2D"/> - <path d="M67.5 76.3395H62.0436C65.206 74.0913 67.7862 70.9283 69.476 67.1884H74.8929C79.4101 67.1884 83.0851 63.1243 83.0851 58.1289C83.0851 53.1335 79.4101 49.0695 74.8929 49.0695H71.6699V44.494C71.6699 43.483 70.9288 42.6637 70.0149 42.6637H25.655C24.7411 42.6637 24 43.4829 24 44.494V56.9003C24 65.0531 27.8426 72.2276 33.6265 76.3396H27.3352C26.4212 76.3395 25.6551 77.1588 25.6551 78.1698C25.6551 79.1807 26.4212 80 27.3351 80H44.8888H50.7817H67.5C68.4139 80 69 79.0111 69 78C69 76.9889 68.4139 76.3395 67.5 76.3395ZM74.8931 52.7298C77.5852 52.7298 79.7754 55.1519 79.7754 58.1289C79.7754 61.106 77.5852 63.5281 74.8931 63.5281H70.7897C71.3601 61.4274 71.6702 59.2033 71.6702 56.9001V52.7298H74.8931ZM37.1501 22.8301C39.7848 19.9164 39.7848 15.1754 37.1501 12.2614L37.0263 12.1245C36.3799 11.41 36.3799 10.2511 37.0263 9.53653C37.6727 8.82167 38.7203 8.82167 39.3668 9.53653L39.4906 9.67342C43.4157 14.014 43.4157 21.0775 39.4906 25.4183C38.2143 26.8298 37.5116 28.7061 37.5116 30.7025C37.5116 32.6989 38.2146 34.5752 39.4906 35.987C40.137 36.7015 40.137 37.8604 39.4906 38.575C39.1675 38.9327 38.7438 39.1113 38.3202 39.1113C37.8965 39.1113 37.4732 38.9327 37.1497 38.575C35.2481 36.4725 34.2011 33.6766 34.2011 30.7025C34.2015 27.7285 35.2487 24.9326 37.1501 22.8301ZM46.7302 22.8301C48.0065 21.4186 48.7096 19.5419 48.7096 17.5455C48.7096 15.5492 48.0065 13.6729 46.7302 12.261L46.6064 12.1241C45.96 11.4096 45.96 10.2507 46.6064 9.53614C47.2528 8.82129 48.3004 8.82129 48.9469 9.53614L49.0707 9.67303C50.9723 11.7755 52.0197 14.5718 52.0197 17.5455C52.0197 20.5193 50.9724 23.3154 49.0707 25.4181C47.7944 26.8295 47.0917 28.7058 47.0917 30.7022C47.0917 32.6986 47.7947 34.5749 49.0707 35.9868C49.7172 36.7013 49.7172 37.8601 49.0707 38.5747C48.7476 38.9324 48.324 39.111 47.9003 39.111C47.4766 39.111 47.0533 38.9324 46.7298 38.5747C44.8283 36.4723 43.7812 33.6763 43.7812 30.7022C43.7812 27.7285 44.8286 24.9326 46.7302 22.8301ZM56.3104 22.8297C58.9448 19.9164 58.9448 15.1754 56.3104 12.2614L56.1866 12.1245C55.5402 11.41 55.5402 10.2511 56.1866 9.53653C56.833 8.82167 57.8806 8.82167 58.5272 9.53653L58.651 9.67342C62.576 14.014 62.576 21.0775 58.651 25.4183C57.3746 26.8298 56.6715 28.7061 56.6715 30.7025C56.6715 32.6989 57.3746 34.5752 58.6506 35.9867C59.297 36.7015 59.297 37.8604 58.6506 38.575C58.3275 38.9327 57.9038 39.1113 57.4802 39.1113C57.0565 39.1113 56.6331 38.9327 56.3101 38.5754C54.4085 36.4725 53.3611 33.6766 53.3611 30.7026C53.3615 27.7285 54.4087 24.9326 56.3104 22.8297Z" - fill="white"/> - <g filter="url(#filter0_d)"> - <path d="M45.4541 63.4281H35.5495L40.952 51.3942H46.3545H50.2563H54.4583M54.4583 51.3942L52.9576 48H55.0586H57.1595M54.4583 51.3942L55.0586 52.937L56.2591 55.4055L59.5607 63.4281M54.4583 51.3942L51.607 56.0226L49.8962 58.7996M48.7556 60.651L49.8962 58.7996M43.053 54.7883L46.0544 61.5767L40.0516 48L41.8524 51.7027M47.8552 62.1938L49.8962 58.7996" - stroke="#694E2D" stroke-width="2"/> - <path d="M48.5098 62.9031C48.5098 63.833 47.78 64.563 46.9088 64.563C46.0375 64.563 45.3078 63.833 45.3078 62.9031C45.3078 61.9732 46.0375 61.2432 46.9088 61.2432C47.78 61.2432 48.5098 61.9732 48.5098 62.9031Z" - stroke="#694E2D"/> - <path d="M42.007 62.286C42.007 66.0203 39.0694 69 35.5035 69C31.9376 69 29 66.0203 29 62.286C29 58.5517 31.9376 55.572 35.5035 55.572C39.0694 55.572 42.007 58.5517 42.007 62.286Z" - stroke="#694E2D" stroke-width="2"/> - <ellipse cx="63.1725" cy="56.7207" rx="0.217504" ry="0.223607" fill="black" fill-opacity="0.49"/> - </g> - <path d="M66.007 62.714C66.007 66.4483 63.0694 69.4281 59.5035 69.4281C55.9376 69.4281 53 66.4483 53 62.714C53 58.9797 55.9376 56 59.5035 56C63.0694 56 66.007 58.9797 66.007 62.714Z" - stroke="#694E2D" stroke-width="2"/> - <defs> - <filter id="filter0_d" x="24" y="47" width="43.39" height="31" filterUnits="userSpaceOnUse" - color-interpolation-filters="sRGB"> - <feFlood flood-opacity="0" result="BackgroundImageFix"/> - <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/> - <feOffset dy="4"/> - <feGaussianBlur stdDeviation="2"/> - <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"/> - <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow"/> - <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow" result="shape"/> - </filter> - </defs> +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<svg + width="296" + height="352.91602" + viewBox="0 0 296 352.91602" + version="1.1" + id="svg37" + sodipodi:docname="bike_cafe.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:xlink="http://www.w3.org/1999/xlink" + xmlns="http://www.w3.org/2000/svg" + xmlns:svg="http://www.w3.org/2000/svg"> + <path + id="path30" + style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.08999" + d="m 113.289,19.239135 c -1.39388,0 -2.78884,0.587574 -3.85116,1.762725 -2.12891,2.3503 -2.12891,6.161023 0,8.511323 l 0.40449,0.447068 c 8.67737,9.580028 8.67737,25.167797 0,34.747823 -6.25897,6.910389 -9.70777,16.102966 -9.70777,25.878849 0,9.780147 3.4488,18.968477 9.70777,25.883127 1.06444,1.17514 2.46099,1.76272 3.8533,1.76272 1.39655,0 2.78886,-0.58758 3.8533,-1.76272 2.1289,-2.3503 2.1289,-6.16103 0,-8.50707 -4.20243,-4.64099 -6.51443,-10.810552 -6.51443,-17.376057 0,-6.561261 2.312,-12.730793 6.51443,-17.371781 12.9224,-14.267857 12.9224,-37.489843 0,-51.761956 l -0.40875,-0.451326 c -1.06444,-1.175151 -2.45728,-1.762725 -3.85118,-1.762725 z m 31.53959,0 c -1.39443,0 -2.78885,0.587574 -3.85329,1.762725 -2.1289,2.3503 -2.12889,6.161023 0,8.507065 l 0.40875,0.451326 c 4.20242,4.640991 6.51441,10.81053 6.51441,17.371785 0,6.565512 -2.31199,12.735049 -6.51441,17.376038 -6.25896,6.910389 -9.70778,16.102966 -9.70778,25.878849 0,9.775887 3.44457,18.968477 9.70778,25.883127 1.06443,1.17514 2.45673,1.76272 3.85329,1.76272 1.39229,0 2.78886,-0.58758 3.8533,-1.76272 2.1289,-2.3503 2.1289,-6.16103 0,-8.51133 -4.20244,-4.64099 -6.51868,-10.806292 -6.51868,-17.371797 0,-6.561261 2.31624,-12.730793 6.51868,-17.371781 6.25896,-6.914652 9.70777,-16.102962 9.70777,-25.883106 0,-9.775887 -3.44881,-18.968456 -9.70777,-25.87885 L 148.6819,21.00186 c -1.06445,-1.175151 -2.45888,-1.762725 -3.85331,-1.762725 z m 31.54171,0 c -1.39443,0 -2.78885,0.587574 -3.85329,1.762725 -2.1289,2.3503 -2.1289,6.161023 0,8.511323 l 0.40875,0.447068 c 8.67311,9.580028 8.67311,25.167797 0,34.743572 -6.26321,6.914651 -9.71203,16.107217 -9.71203,25.8831 0,9.780157 3.44882,18.968477 9.70776,25.883127 1.06446,1.17514 2.45675,1.76272 3.8533,1.76272 1.39655,0 2.78885,-0.58758 3.8533,-1.76272 2.12889,-2.3503 2.12889,-6.16103 0,-8.51133 -4.20244,-4.63673 -6.51441,-10.806281 -6.51441,-17.371797 0,-6.56125 2.31197,-12.730793 6.51441,-17.371781 12.9224,-14.267851 12.9224,-37.489843 0,-51.761956 l -0.40448,-0.451326 c -1.06445,-1.175151 -2.45888,-1.762725 -3.85331,-1.762725 z M 71.999083,129.91189 c -3.010258,0 -5.449972,2.69093 -5.449972,6.01626 v 40.78538 c 0,26.80278 12.654149,50.39095 31.694993,63.90943 H 77.529953 c -3.006,0 -5.53087,2.69518 -5.53087,6.01625 0,3.32534 2.52487,6.01626 5.53087,6.01626 H 209.76415 c 3.006,0 4.93478,-3.2487 4.93478,-6.57403 0,-3.32533 -1.92878,-5.45848 -4.93478,-5.45848 h -17.96362 c 10.4103,-7.39153 18.90459,-17.78905 24.46953,-30.08555 h 17.83163 c 14.87246,0 26.96884,-13.36095 26.96884,-29.78324 0,-16.4223 -12.09639,-29.78325 -26.96884,-29.78325 h -10.61042 v -15.04277 c 0,-3.32533 -2.43972,-6.01626 -5.44997,-6.01626 z m 88.579077,11.42791 c 0.81086,-0.004 1.61952,0.004 2.42694,0.0766 3.58742,0.38582 6.69486,2.99532 8.08342,6.26747 2.57254,8.06356 5.11881,16.13676 7.67679,24.20555 3.39008,-0.54043 6.89256,-0.37316 10.21444,0.4939 6.41522,1.64685 12.06543,5.99554 15.32805,11.75576 3.22469,5.58846 4.09847,12.45306 2.44397,18.68318 -1.65819,6.39151 -5.99828,12.01695 -11.74086,15.27057 -5.7657,3.32877 -12.8912,4.15322 -19.27502,2.28218 -6.36383,-1.81882 -11.89096,-6.31471 -15.00019,-12.15387 -3.16393,-5.83898 -3.8078,-12.96351 -1.78188,-19.28353 1.99707,-6.38206 6.70647,-11.84475 12.70949,-14.78518 -0.43908,-1.38525 -0.87869,-2.77034 -1.31778,-4.1556 -9.91301,9.85953 -19.82612,19.71876 -29.73854,29.57887 h -8.89452 c -0.0858,0.68737 -0.19861,1.37257 -0.34275,2.05013 -1.36045,6.60173 -5.56794,12.53931 -11.31721,16.04974 -5.44198,3.38766 -12.22121,4.49822 -18.46817,3.08476 -6.56326,-1.43147 -12.433775,-5.68287 -15.881558,-11.4428 -3.379299,-5.53743 -4.413427,-12.42414 -2.87188,-18.71938 1.562332,-6.58867 5.973379,-12.42158 11.862204,-15.75596 5.708014,-3.29393 12.750434,-4.14006 19.083424,-2.33114 2.18379,-4.52348 4.36682,-9.04609 6.55061,-13.56958 -0.85225,-2.11581 -1.70454,-4.23254 -2.55681,-6.34836 h -1.3561 c -1.16679,-0.0304 -2.34297,0.0631 -3.50416,-0.0489 -1.09571,-0.13589 -1.87346,-1.15226 -1.96284,-2.21405 -0.098,-1.07616 -0.13112,-2.17867 0.0574,-3.24657 0.17266,-1.01912 1.04502,-1.85308 2.08419,-1.93091 3.62158,-0.0395 7.24576,-0.005 10.86801,-0.017 2.16502,0.0172 4.33416,-0.035 6.49739,0.0255 1.82583,0.17852 3.32654,1.87067 3.2934,3.70429 0.0336,1.83379 -1.46725,3.52423 -3.2934,3.70214 -1.54442,0.0624 -3.09463,0.01 -4.64099,0.0277 0.3557,0.88119 0.71087,1.76292 1.06657,2.64409 h 38.7906 c -0.42599,-1.34597 -0.85133,-2.69254 -1.27733,-4.0385 -0.23733,-1.0882 -1.05213,-2.14096 -2.18638,-2.36095 -1.49019,-0.0738 -2.98811,-0.0111 -4.48133,-0.0319 -0.96955,-0.0472 -1.9645,0.10973 -2.91658,-0.11283 -1.06102,-0.26396 -1.66176,-1.34959 -1.7095,-2.38436 -0.0416,-1.09799 -0.13677,-2.23365 0.16392,-3.30404 0.26881,-1.01704 1.28866,-1.69292 2.32263,-1.66054 0.85305,-0.003 1.70585,5.7e-4 2.55893,0 0.80976,0.0168 1.62247,-0.001 2.43333,-0.007 z m -30.68803,21.35921 c 3.56454,8.83999 7.12889,17.67963 10.69345,26.51964 8.84037,-8.84001 17.68139,-17.67965 26.52177,-26.51964 z m 93.60114,0.30442 h 10.61042 c 8.86472,0 16.07315,7.96208 16.07315,17.75074 0,9.78866 -7.20844,17.75072 -16.07315,17.75072 h -13.50998 c 1.87769,-6.90613 2.89956,-14.21675 2.89956,-21.79136 z m -99.39173,5.28393 c -1.11787,2.31461 -2.23726,4.62983 -3.35514,6.94445 -0.32331,0.33986 -0.007,0.49418 0.28314,0.66847 5.48325,3.70688 9.37413,9.68398 10.49546,16.21154 0.72719,5.1e-4 1.45493,-3.7e-4 2.18211,0 -3.20182,-7.94092 -6.40374,-15.88353 -9.60557,-23.82446 z m -17.08013,10.72963 c -0.93324,0.002 -1.86759,0.0735 -2.78885,0.22353 -5.166072,0.7976 -9.856332,4.08771 -12.405076,8.64545 -2.754361,4.79711 -2.995135,10.92233 -0.63654,15.92413 2.20495,4.81297 6.715398,8.49003 11.881356,9.6588 0.259,0.0608 0.68895,0.14274 0.84731,0.17457 3.85975,0.69458 7.95219,0.0635 11.39811,-1.81808 4.60966,-2.46312 7.98529,-7.09671 8.88175,-12.24966 h -15.52603 c -1.27953,-0.0536 -2.66696,0.21679 -3.82989,-0.46836 -1.60395,-0.85184 -2.36118,-2.9509 -1.66054,-4.62822 2.40999,-5.04682 4.86164,-10.07745 7.28721,-15.11729 -1.13407,-0.2327 -2.29162,-0.34051 -3.44881,-0.34487 z m 75.66094,0 c -0.54548,-3.3e-4 -1.08981,0.0319 -1.63286,0.0809 0.69428,2.19962 1.37767,4.4033 2.05438,6.60809 0.96776,3.18427 1.95695,6.36402 2.85698,9.56725 0.38753,1.82476 -0.82133,3.80018 -2.62493,4.27908 -1.78838,0.56253 -3.88086,-0.47363 -4.51539,-2.23747 -1.65259,-5.30756 -3.25503,-10.63118 -4.88794,-15.94543 -1.37012,0.79511 -2.62914,1.77728 -3.73621,2.9102 -3.30398,3.35019 -5.13582,8.08255 -4.95181,12.78402 0.1335,4.95939 2.53442,9.78643 6.38668,12.9075 3.63241,3.01317 8.52519,4.41556 13.20341,3.8171 0.28869,-0.0345 0.74182,-0.10551 0.92394,-0.13837 2.69842,-0.47811 5.2784,-1.60911 7.45965,-3.26786 3.98021,-2.98652 6.56951,-7.74342 6.87633,-12.71376 0.34931,-4.7246 -1.34106,-9.55053 -4.57074,-13.0182 -3.24546,-3.56201 -8.02111,-5.66335 -12.84149,-5.63305 z m -65.3805,3.35088 c -1.56818,3.24791 -3.13455,6.49605 -4.70273,9.74395 h 11.32572 c -0.98342,-3.86593 -3.35612,-7.35117 -6.57189,-9.70776 l -0.002,-0.002 z" /> </svg> diff --git a/assets/layers/bike_cleaning/bike_cleaning.json b/assets/layers/bike_cleaning/bike_cleaning.json index 9c32e7fb6b..ace20b610b 100644 --- a/assets/layers/bike_cleaning/bike_cleaning.json +++ b/assets/layers/bike_cleaning/bike_cleaning.json @@ -42,7 +42,8 @@ "or": [ "service:bicycle:cleaning=yes", "service:bicycle:cleaning=diy", - "amenity=bicycle_wash" + "amenity=bicycle_wash", + "amenity=bike_wash" ] } }, @@ -64,21 +65,25 @@ ] } ], - "titleIcons": [ - { - "render": "<img src='./assets/layers/bike_cleaning/bike_cleaning_icon.svg'/>" - } - ], "tagRenderings": [ "images", { "question": { - "en": "How much does it cost to use the cleaning service?" + "en": "How much does it cost to use the cleaning service?", + "de": "Wie viel kostet die Nutzung des Reinigungsdienstes?", + "nl": "Hoeveel kost het gebruik van het fietsschoonmaakpunt?" }, "render": { - "en": "Using the cleaning service costs {service:bicycle:cleaning:charge}" + "en": "Using the cleaning service costs {service:bicycle:cleaning:charge}", + "de": "Nutzung des Reinigungsservice kostet {service:bicycle:cleaning:charge}", + "nl": "Het gebruik van het fietsschoonmaakpunt kost {service:bicycle:cleaning:charge}" + }, + "condition": { + "and": [ + "amenity!=bike_wash", + "amenity!=bicycle_wash" + ] }, - "condition": "amenity!=bike_wash", "freeform": { "key": "service:bicycle:cleaning:charge", "addExtraTags": [ @@ -90,33 +95,49 @@ { "if": "service:bicycle:cleaning:fee=no&service:bicycle:cleaning:charge=", "then": { - "en": "The cleaning service is free to use" + "en": "The cleaning service is free to use", + "de": "Der Reinigungsservice ist kostenlos", + "nl": "Het fietsschoonmaakpunt is gratis" } }, { "if": "service:bicycle:cleaning:fee=no", "then": { - "en": "Free to use" + "en": "Free to use", + "de": "Kostenlose Nutzung", + "nl": "Gratis te gebruiken" }, "hideInAnswer": true }, { - "if": "service:bicycle:cleaning:fee=yes", + "if": "service:bicycle:cleaning:fee=yes&service:bicycle:cleaning:charge=", "then": { - "en": "The cleaning service has a fee, but the amount is not known" - } + "en": "The cleaning service has a fee, but the amount is not known", + "de": "Der Reinigungsdienst ist kostenpflichtig, aber der Betrag ist nicht bekannt", + "nl": "Het fietsschoonmaakpunt is betalend, maar de prijs is onbekend" + }, + "hideInAnswer": true } ], "id": "bike_cleaning-service:bicycle:cleaning:charge" }, { "question": { - "en": "How much does it cost to use the cleaning service?" + "en": "How much does it cost to use the cleaning service?", + "de": "Wie viel kostet die Nutzung des Reinigungsdienstes?", + "nl": "Hoeveel kost het gebruik van het fietsschoonmaakpunt?" }, "render": { - "en": "Using the cleaning service costs {charge}" + "en": "Using the cleaning service costs {charge}", + "de": "Die Nutzung des Reinigungsdienstes kostet {charge}", + "nl": "Het gebruik van het fietsschoonmaakpunt kost {charge}" + }, + "condition": { + "or": [ + "amenity=bike_wash", + "amenity=bicycle_wash" + ] }, - "condition": "amenity=bike_wash", "freeform": { "key": "charge", "addExtraTags": [ @@ -127,20 +148,26 @@ { "if": "fee=no&charge=", "then": { - "en": "Free to use cleaning service" + "en": "Free to use cleaning service", + "de": "Kostenloser Reinigungsservice", + "nl": "Gratis fietsschoonmaakpunt" } }, { "if": "fee=no", "then": { - "en": "Free to use" + "en": "Free to use", + "de": "Kostenlose Nutzung", + "nl": "Gratis te gebruiken" }, "hideInAnswer": true }, { "if": "fee=yes", "then": { - "en": "The cleaning service has a fee" + "en": "The cleaning service has a fee", + "de": "Der Reinigungsservice ist kostenpflichtig", + "nl": "Je moet betalen voor het fietsschoonmaakpunt" } } ], @@ -170,7 +197,8 @@ "if": { "and": [ "service:bicycle:cleaning~*", - "amenity!=bike_wash" + "amenity!=bike_wash", + "amenity!=bicycle_wash" ] }, "then": { @@ -185,5 +213,9 @@ "centroid" ] } - ] + ], + "description": { + "en": "A layer showing facilities where one can clean their bike", + "nl": "Een laag die plaatsen toont waar je je fiets kunt wassen" + } } \ No newline at end of file diff --git a/assets/layers/bike_cleaning/bike_cleaning.svg b/assets/layers/bike_cleaning/bike_cleaning.svg index 6cb719398f..81e2afeee5 100644 --- a/assets/layers/bike_cleaning/bike_cleaning.svg +++ b/assets/layers/bike_cleaning/bike_cleaning.svg @@ -1,209 +1,19 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - xmlns="http://www.w3.org/2000/svg" - width="98" - height="124" - viewBox="0 0 98 124" - fill="none" - version="1.1" - id="svg27" - sodipodi:docname="bike_cleaning.svg" - inkscape:version="0.92.4 (5da689c313, 2019-01-14)"> - <metadata - id="metadata31"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage"/> - </cc:Work> - </rdf:RDF> - </metadata> - <sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1043" - id="namedview29" - showgrid="false" - showguides="true" - inkscape:guide-bbox="true" - inkscape:zoom="7.612903" - inkscape:cx="-16.727788" - inkscape:cy="90.863204" - inkscape:window-x="0" - inkscape:window-y="0" - inkscape:window-maximized="1" - inkscape:current-layer="layer3"> - <sodipodi:guide - position="-18.915254,168.92373" - orientation="0,1" - id="guide1101" - inkscape:locked="false"/> - </sodipodi:namedview> - <g - inkscape:groupmode="layer" - id="layer4" - inkscape:label="bg" - style="display:inline" - sodipodi:insensitive="true"> - <circle - style="fill:#6bc4f7" - cx="49" - cy="49" - r="49" - id="circle4"/> - <path - style="fill:#6bc4f7" - d="m 55.0445,114.094 c -1.7831,3.887 -7.3059,3.887 -9.089,0 L 15.2124,47.085 C 13.6928,43.7729 16.1129,40 19.7569,40 h 61.4862 c 3.644,0 6.0641,3.7729 4.5445,7.085 z" - id="path2" - inkscape:connector-curvature="0"/> - </g> - <defs - id="defs25"> - <filter - id="filter0_d" - x="16" - y="23" - width="67" - height="63" - filterUnits="userSpaceOnUse" - color-interpolation-filters="sRGB"> - <feFlood - flood-opacity="0" - result="BackgroundImageFix" - id="feFlood10"/> - <feColorMatrix - in="SourceAlpha" - type="matrix" - values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" - id="feColorMatrix12"/> - <feOffset - dy="4" - id="feOffset14"/> - <feGaussianBlur - stdDeviation="2" - id="feGaussianBlur16"/> - <feColorMatrix - type="matrix" - values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0" - id="feColorMatrix18"/> - <feBlend - mode="normal" - in2="BackgroundImageFix" - result="effect1_dropShadow" - id="feBlend20"/> - <feBlend - mode="normal" - in="SourceGraphic" - in2="effect1_dropShadow" - result="shape" - id="feBlend22"/> - </filter> - </defs> - <g - inkscape:groupmode="layer" - id="layer3" - inkscape:label="fg" - style="display:inline"> - <path - style="fill:#fffffc;fill-opacity:1;stroke-width:0.88272834;stroke-miterlimit:4;stroke-dasharray:none" - inkscape:connector-curvature="0" - d="m 29.290947,36.983983 c 0.177522,0.916926 1.141318,1.734153 2.152651,1.827133 v 0 c 1.009061,0.09339 1.683548,-0.575238 1.505341,-1.491556 l -0.778933,-3.979234 c -0.177995,-0.914898 -1.141321,-1.734153 -2.15265,-1.827137 v 0 c -1.008849,-0.09196 -1.681967,0.575447 -1.503969,1.490347 z" - id="path1030"/> - <g - id="g853" - transform="rotate(-14.887196,22.514768,42.323076)"> - <rect - id="rect1000" - height="4.3486524" - width="31.293177" - transform="matrix(-0.90869492,0.41746083,0.41746083,0.90869492,0,0)" - y="37.392448" - x="-38.035305" - style="fill:#fffffc;fill-opacity:1;stroke-width:0.47552237"/> - <g - transform="matrix(-0.44591765,-0.16517664,-0.16517664,0.44591765,67.8395,17.448122)" - id="g1056" - style="fill:#fffffc;fill-opacity:1"> - <path - id="path1054" - d="m 100,18.328 v -8 c -19.636,0 -22.542,2.165 -31.688,11.338 l -0.925,0.926 2.828,2.829 -5.577,-5.577 c -5.663,-5.663 -14.843,-5.663 -20.506,0 l 31.112,31.113 c 5.662,-5.663 5.662,-14.844 0,-20.506 l -2.201,-2.201 0.934,-0.935 c 7.766,-7.79 8.961,-8.987 26.023,-8.987 z" - inkscape:connector-curvature="0" - style="fill:#fffffc;fill-opacity:1"/> - </g> - </g> - <path - style="display:inline;fill:#fffffc;fill-opacity:1;stroke-width:0.88272834;stroke-miterlimit:4;stroke-dasharray:none" - inkscape:connector-curvature="0" - d="m 30.604299,45.933279 c 0.177522,0.916926 1.141318,1.734153 2.152651,1.827133 v 0 c 1.009061,0.09339 1.683548,-0.575238 1.505341,-1.491556 l -0.778933,-3.979234 c -0.177995,-0.914898 -1.141321,-1.734153 -2.15265,-1.827137 v 0 c -1.008849,-0.09196 -1.681967,0.575447 -1.503969,1.490347 z" - id="path1030-1"/> - <path - style="display:inline;fill:#fffffc;fill-opacity:1;stroke-width:0.88272834;stroke-miterlimit:4;stroke-dasharray:none" - inkscape:connector-curvature="0" - d="m 36.337339,32.524819 c 0.595194,0.719731 1.832735,0.97518 2.764949,0.57217 v 0 c 0.930416,-0.401561 1.202022,-1.31163 0.606518,-2.030499 l -2.590483,-3.119364 c -0.594638,-0.717724 -1.832738,-0.975179 -2.76495,-0.572174 v 0 c -0.929545,0.402715 -1.200535,1.311056 -0.605894,2.02878 z" - id="path1030-2"/> - <path - style="display:inline;fill:#fffffc;fill-opacity:1;stroke-width:0.84610248;stroke-miterlimit:4;stroke-dasharray:none" - inkscape:connector-curvature="0" - d="m 41.803572,39.170925 c 0.535181,0.717421 1.708166,1.021795 2.620646,0.681415 v 0 c 0.910688,-0.339081 1.215009,-1.196589 0.679489,-1.913201 L 42.773781,34.829254 C 42.239036,34.11378 41.065612,33.807461 40.153135,34.147836 v 0 c -0.90991,0.340226 -1.213557,1.196111 -0.678808,1.911586 z" - id="path1030-7"/> - <path - style="display:inline;fill:#fffffc;fill-opacity:1;stroke-width:0.88272834;stroke-miterlimit:4;stroke-dasharray:none" - inkscape:connector-curvature="0" - d="m 43.859519,26.949791 c 0.870604,0.338107 2.075596,-0.04236 2.692927,-0.8488 v 0 c 0.616469,-0.804296 0.409796,-1.731271 -0.460658,-2.068474 l -3.782751,-1.460079 c -0.86914,-0.336626 -2.075598,0.04237 -2.692931,0.848797 v 0 c -0.615145,0.804879 -0.408777,1.730045 0.460366,2.066669 z" - id="path1030-0"/> - <path - style="display:inline;fill:#fffffc;fill-opacity:1;stroke-width:0.88272834;stroke-miterlimit:4;stroke-dasharray:none" - inkscape:connector-curvature="0" - d="m 52.723307,29.001623 c 0.889143,0.285817 2.069419,-0.165527 2.637779,-1.007196 v 0 c 0.567626,-0.83948 0.306279,-1.752549 -0.582661,-2.037473 l -3.862771,-1.232902 c -0.887593,-0.284427 -2.06942,0.16553 -2.637782,1.007193 v 0 c -0.56627,0.839983 -0.305334,1.751264 0.582263,2.035689 z" - id="path1030-9"/> - </g> - <g - inkscape:groupmode="layer" - id="layer1" - inkscape:label="cycle" - sodipodi:insensitive="true"> - <g - style="display:inline" - id="g896"> - <path - inkscape:connector-curvature="0" - d="M 50.491776,73.912443 H 33.444983 l 9.298301,-20.633687 h 9.29819 6.71547 7.231926 m 0,0 -2.582831,-5.81969 h 3.615963 3.615963 m -4.649095,5.81969 1.033132,2.645404 2.066264,4.232492 5.682228,13.755791 m -8.781624,-20.633687 -4.907378,7.935991 -2.944516,4.761594 m -1.962973,3.174508 1.962973,-3.174508 m -11.777729,-6.877784 5.165661,11.63949 -10.331322,-23.278981 3.099397,6.348793 m 10.331322,17.988283 3.512671,-5.819801" - id="path10" - style="stroke:#ffffff;stroke-width:2.21892667"/> - <path - inkscape:connector-curvature="0" - d="m 56.056733,73.012225 c 0,1.75162 -1.383057,3.148767 -3.061342,3.148767 -1.678174,0 -3.061231,-1.397147 -3.061231,-3.148767 0,-1.75151 1.383057,-3.148657 3.061231,-3.148657 1.678285,0 3.061342,1.397147 3.061342,3.148657 z" - id="path12" - style="stroke:#ffffff;stroke-width:1.10946333"/> - <path - inkscape:connector-curvature="0" - d="m 45.170568,71.95424 c 0,6.717246 -5.310002,12.117115 -11.804689,12.117115 -6.494798,0 -11.804801,-5.399869 -11.804801,-12.117115 0,-6.717356 5.310003,-12.117225 11.804801,-12.117225 6.494687,0 11.804689,5.399869 11.804689,12.117225 z" - id="path14" - style="stroke:#ffffff;stroke-width:2.21892667"/> - <g - id="g20" - transform="matrix(1.1094633,0,0,1.1094633,0.48127584,3.080534)"> - <circle - style="stroke:#ffffff;stroke-width:2" - id="circle18" - r="11" - cy="63" - cx="66"/> - </g> - </g> - </g> -</svg> +<?xml version="1.0" encoding="UTF-8" standalone="yes"?> +<svg xmlns="http://www.w3.org/2000/svg" width="296px" height="374px" viewBox="0 0 296 374" version="1.1"> + <g id="surface1"> + <path style=" stroke:none;fill-rule:nonzero;fill:rgb(41.960785%,76.862746%,96.862745%);fill-opacity:1;" d="M 296 147.789062 C 296 229.414062 229.738281 295.582031 148 295.582031 C 66.261719 295.582031 0 229.414062 0 147.789062 C 0 66.167969 66.261719 0 148 0 C 229.738281 0 296 66.167969 296 147.789062 Z M 296 147.789062 "/> + <path style=" stroke:none;fill-rule:nonzero;fill:rgb(41.960785%,76.862746%,96.862745%);fill-opacity:1;" d="M 166.257812 344.121094 C 160.871094 355.847656 144.191406 355.847656 138.804688 344.121094 L 45.949219 142.015625 C 41.359375 132.023438 48.667969 120.644531 59.675781 120.644531 L 245.386719 120.644531 C 256.394531 120.644531 263.703125 132.023438 259.113281 142.015625 Z M 166.257812 344.121094 "/> + <path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,98.823529%);fill-opacity:1;" d="M 88.46875 111.546875 C 89.007812 114.3125 91.917969 116.777344 94.972656 117.058594 C 98.019531 117.339844 100.058594 115.324219 99.519531 112.5625 L 97.167969 100.558594 C 96.628906 97.800781 93.71875 95.328125 90.664062 95.046875 C 87.617188 94.769531 85.585938 96.785156 86.121094 99.542969 Z M 88.46875 111.546875 "/> + <path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,98.823529%);fill-opacity:1;" d="M 129.941406 35.613281 L 57.070312 95.726562 L 65.4375 105.839844 L 138.304688 45.722656 Z M 129.941406 35.613281 "/> + <path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,98.823529%);fill-opacity:1;" d="M 35.527344 32.597656 L 36.617188 21.175781 C 64.691406 23.84375 68.554688 27.332031 80.382812 41.671875 L 81.578125 43.117188 L 77.148438 46.773438 L 85.882812 39.570312 C 94.75 32.253906 107.875 33.5 115.203125 42.355469 L 66.484375 82.550781 C 59.160156 73.695312 60.40625 60.585938 69.273438 53.273438 L 72.722656 50.429688 L 71.511719 48.964844 C 61.46875 36.789062 59.921875 34.917969 35.527344 32.597656 Z M 35.527344 32.597656 "/> + <path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,98.823529%);fill-opacity:1;" d="M 92.4375 138.539062 C 92.972656 141.304688 95.882812 143.769531 98.9375 144.050781 C 101.988281 144.332031 104.023438 142.316406 103.484375 139.554688 L 101.132812 127.550781 C 100.597656 124.792969 97.6875 122.320312 94.632812 122.039062 C 91.585938 121.761719 89.550781 123.777344 90.089844 126.535156 Z M 92.4375 138.539062 "/> + <path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,98.823529%);fill-opacity:1;" d="M 109.753906 98.097656 C 111.550781 100.269531 115.289062 101.039062 118.105469 99.824219 C 120.914062 98.613281 121.734375 95.867188 119.9375 93.699219 L 112.113281 84.292969 C 110.316406 82.128906 106.578125 81.351562 103.761719 82.566406 C 100.953125 83.78125 100.136719 86.519531 101.929688 88.683594 Z M 109.753906 98.097656 "/> + <path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,98.823529%);fill-opacity:1;" d="M 126.265625 118.144531 C 127.878906 120.308594 131.421875 121.226562 134.179688 120.199219 C 136.929688 119.175781 137.847656 116.589844 136.230469 114.429688 L 129.195312 105.050781 C 127.578125 102.890625 124.035156 101.96875 121.277344 102.996094 C 118.53125 104.019531 117.613281 106.601562 119.230469 108.761719 Z M 126.265625 118.144531 "/> + <path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,98.823529%);fill-opacity:1;" d="M 132.472656 81.285156 C 135.101562 82.304688 138.742188 81.15625 140.605469 78.722656 C 142.46875 76.296875 141.84375 73.503906 139.214844 72.484375 L 127.789062 68.082031 C 125.164062 67.066406 121.519531 68.210938 119.65625 70.640625 C 117.796875 73.070312 118.421875 75.859375 121.046875 76.875 Z M 132.472656 81.285156 "/> + <path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,98.823529%);fill-opacity:1;" d="M 159.246094 87.472656 C 161.929688 88.335938 165.496094 86.972656 167.214844 84.433594 C 168.925781 81.902344 168.136719 79.148438 165.453125 78.289062 L 153.785156 74.570312 C 151.105469 73.714844 147.535156 75.070312 145.820312 77.609375 C 144.109375 80.140625 144.898438 82.890625 147.578125 83.75 Z M 159.246094 87.472656 "/> + <path style="fill:none;stroke-width:2.218927;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:4;" d="M 50.491158 73.912517 L 33.444362 73.912517 L 42.743085 53.27866 L 65.988598 53.27866 M 65.988598 53.27866 L 63.405907 47.459684 L 70.637959 47.459684 M 65.988598 53.27866 L 67.021933 55.924591 L 69.088603 60.157044 L 74.770006 73.912517 M 65.988598 53.27866 L 61.081873 61.215157 L 58.137062 65.976019 M 56.173855 69.150359 L 58.137062 65.976019 M 46.359111 59.09893 L 51.524493 70.738177 L 41.193729 47.459684 L 44.292441 53.808364 M 54.624499 71.79629 L 58.137062 65.976019 " transform="matrix(3.020408,0,0,3.016129,0,0)"/> + <path style="fill:none;stroke-width:1.109463;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:4;" d="M 56.056166 73.012408 C 56.056166 74.763411 54.673643 76.160846 52.994959 76.160846 C 51.317568 76.160846 49.933752 74.763411 49.933752 73.012408 C 49.933752 71.26011 51.317568 69.863971 52.994959 69.863971 C 54.673643 69.863971 56.056166 71.26011 56.056166 73.012408 Z M 56.056166 73.012408 " transform="matrix(3.020408,0,0,3.016129,0,0)"/> + <path style="fill:none;stroke-width:2.218927;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:4;" d="M 45.170582 71.954295 C 45.170582 78.672084 39.860352 84.071441 33.365472 84.071441 C 26.870592 84.071441 21.561655 78.672084 21.561655 71.954295 C 21.561655 65.236506 26.870592 59.837149 33.365472 59.837149 C 39.860352 59.837149 45.170582 65.236506 45.170582 71.954295 Z M 45.170582 71.954295 " transform="matrix(3.020408,0,0,3.016129,0,0)"/> + <path style="fill:none;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:4;" d="M 77.000374 62.999478 C 77.000374 69.07548 72.075352 74.000485 65.999799 74.000485 C 59.925411 74.000485 55.000389 69.07548 55.000389 62.999478 C 55.000389 56.924643 59.925411 51.999638 65.999799 51.999638 C 72.075352 51.999638 77.000374 56.924643 77.000374 62.999478 Z M 77.000374 62.999478 " transform="matrix(3.351032,0,0,3.346285,1.453649,9.291288)"/> + </g> +</svg> \ No newline at end of file diff --git a/assets/layers/bike_cleaning/bike_cleaning_icon.svg b/assets/layers/bike_cleaning/bike_cleaning_icon.svg index 9b553d7a70..7283c43589 100644 --- a/assets/layers/bike_cleaning/bike_cleaning_icon.svg +++ b/assets/layers/bike_cleaning/bike_cleaning_icon.svg @@ -1,203 +1,18 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - xmlns="http://www.w3.org/2000/svg" - width="98" - height="98" - viewBox="0 0 98 98" - version="1.1" - id="svg27" - sodipodi:docname="bike_cleaning_icon.svg" - inkscape:version="0.92.5 (2060ec1f9f, 2020-04-08)" - style="fill:none"> - <metadata - id="metadata31"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage"/> - </cc:Work> - </rdf:RDF> - </metadata> - <sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="999" - id="namedview29" - showgrid="false" - showguides="true" - inkscape:guide-bbox="true" - inkscape:zoom="1.9032258" - inkscape:cx="3.3258144" - inkscape:cy="153.42093" - inkscape:window-x="0" - inkscape:window-y="0" - inkscape:window-maximized="1" - inkscape:current-layer="layer4"> - <sodipodi:guide - position="-18.915254,142.92373" - orientation="0,1" - id="guide1101" - inkscape:locked="false"/> - </sodipodi:namedview> - <g - inkscape:groupmode="layer" - id="layer4" - inkscape:label="bg" - style="display:inline"> - <circle - style="fill:#6bc4f7" - cx="49" - cy="49" - r="49" - id="circle4"/> - </g> - <defs - id="defs25"> - <filter - id="filter0_d" - x="16" - y="23" - width="67" - height="63" - filterUnits="userSpaceOnUse" - style="color-interpolation-filters:sRGB"> - <feFlood - flood-opacity="0" - result="BackgroundImageFix" - id="feFlood10"/> - <feColorMatrix - in="SourceAlpha" - type="matrix" - values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" - id="feColorMatrix12"/> - <feOffset - dy="4" - id="feOffset14"/> - <feGaussianBlur - stdDeviation="2" - id="feGaussianBlur16"/> - <feColorMatrix - type="matrix" - values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0" - id="feColorMatrix18"/> - <feBlend - mode="normal" - in2="BackgroundImageFix" - result="effect1_dropShadow" - id="feBlend20"/> - <feBlend - mode="normal" - in="SourceGraphic" - in2="effect1_dropShadow" - result="shape" - id="feBlend22"/> - </filter> - </defs> - <g - inkscape:groupmode="layer" - id="layer3" - inkscape:label="fg" - style="display:inline"> - <path - style="fill:#fffffc;fill-opacity:1;stroke-width:0.88272834;stroke-miterlimit:4;stroke-dasharray:none" - inkscape:connector-curvature="0" - d="m 29.290947,36.983983 c 0.177522,0.916926 1.141318,1.734153 2.152651,1.827133 v 0 c 1.009061,0.09339 1.683548,-0.575238 1.505341,-1.491556 l -0.778933,-3.979234 c -0.177995,-0.914898 -1.141321,-1.734153 -2.15265,-1.827137 v 0 c -1.008849,-0.09196 -1.681967,0.575447 -1.503969,1.490347 z" - id="path1030"/> - <g - id="g853" - transform="rotate(-14.887196,22.514768,42.323076)"> - <rect - id="rect1000" - height="4.3486524" - width="31.293177" - transform="matrix(-0.90869492,0.41746083,0.41746083,0.90869492,0,0)" - y="37.392448" - x="-38.035305" - style="fill:#fffffc;fill-opacity:1;stroke-width:0.47552237"/> - <g - transform="matrix(-0.44591765,-0.16517664,-0.16517664,0.44591765,67.8395,17.448122)" - id="g1056" - style="fill:#fffffc;fill-opacity:1"> - <path - id="path1054" - d="m 100,18.328 v -8 c -19.636,0 -22.542,2.165 -31.688,11.338 l -0.925,0.926 2.828,2.829 -5.577,-5.577 c -5.663,-5.663 -14.843,-5.663 -20.506,0 l 31.112,31.113 c 5.662,-5.663 5.662,-14.844 0,-20.506 l -2.201,-2.201 0.934,-0.935 c 7.766,-7.79 8.961,-8.987 26.023,-8.987 z" - inkscape:connector-curvature="0" - style="fill:#fffffc;fill-opacity:1"/> - </g> - </g> - <path - style="display:inline;fill:#fffffc;fill-opacity:1;stroke-width:0.88272834;stroke-miterlimit:4;stroke-dasharray:none" - inkscape:connector-curvature="0" - d="m 30.604299,45.933279 c 0.177522,0.916926 1.141318,1.734153 2.152651,1.827133 v 0 c 1.009061,0.09339 1.683548,-0.575238 1.505341,-1.491556 l -0.778933,-3.979234 c -0.177995,-0.914898 -1.141321,-1.734153 -2.15265,-1.827137 v 0 c -1.008849,-0.09196 -1.681967,0.575447 -1.503969,1.490347 z" - id="path1030-1"/> - <path - style="display:inline;fill:#fffffc;fill-opacity:1;stroke-width:0.88272834;stroke-miterlimit:4;stroke-dasharray:none" - inkscape:connector-curvature="0" - d="m 36.337339,32.524819 c 0.595194,0.719731 1.832735,0.97518 2.764949,0.57217 v 0 c 0.930416,-0.401561 1.202022,-1.31163 0.606518,-2.030499 l -2.590483,-3.119364 c -0.594638,-0.717724 -1.832738,-0.975179 -2.76495,-0.572174 v 0 c -0.929545,0.402715 -1.200535,1.311056 -0.605894,2.02878 z" - id="path1030-2"/> - <path - style="display:inline;fill:#fffffc;fill-opacity:1;stroke-width:0.84610248;stroke-miterlimit:4;stroke-dasharray:none" - inkscape:connector-curvature="0" - d="m 41.803572,39.170925 c 0.535181,0.717421 1.708166,1.021795 2.620646,0.681415 v 0 c 0.910688,-0.339081 1.215009,-1.196589 0.679489,-1.913201 L 42.773781,34.829254 C 42.239036,34.11378 41.065612,33.807461 40.153135,34.147836 v 0 c -0.90991,0.340226 -1.213557,1.196111 -0.678808,1.911586 z" - id="path1030-7"/> - <path - style="display:inline;fill:#fffffc;fill-opacity:1;stroke-width:0.88272834;stroke-miterlimit:4;stroke-dasharray:none" - inkscape:connector-curvature="0" - d="m 43.859519,26.949791 c 0.870604,0.338107 2.075596,-0.04236 2.692927,-0.8488 v 0 c 0.616469,-0.804296 0.409796,-1.731271 -0.460658,-2.068474 l -3.782751,-1.460079 c -0.86914,-0.336626 -2.075598,0.04237 -2.692931,0.848797 v 0 c -0.615145,0.804879 -0.408777,1.730045 0.460366,2.066669 z" - id="path1030-0"/> - <path - style="display:inline;fill:#fffffc;fill-opacity:1;stroke-width:0.88272834;stroke-miterlimit:4;stroke-dasharray:none" - inkscape:connector-curvature="0" - d="m 52.723307,29.001623 c 0.889143,0.285817 2.069419,-0.165527 2.637779,-1.007196 v 0 c 0.567626,-0.83948 0.306279,-1.752549 -0.582661,-2.037473 l -3.862771,-1.232902 c -0.887593,-0.284427 -2.06942,0.16553 -2.637782,1.007193 v 0 c -0.56627,0.839983 -0.305334,1.751264 0.582263,2.035689 z" - id="path1030-9"/> - </g> - <g - inkscape:groupmode="layer" - id="layer1" - inkscape:label="cycle" - sodipodi:insensitive="true"> - <g - style="display:inline" - id="g896"> - <path - inkscape:connector-curvature="0" - d="M 50.491776,73.912443 H 33.444983 l 9.298301,-20.633687 h 9.29819 6.71547 7.231926 m 0,0 -2.582831,-5.81969 h 3.615963 3.615963 m -4.649095,5.81969 1.033132,2.645404 2.066264,4.232492 5.682228,13.755791 m -8.781624,-20.633687 -4.907378,7.935991 -2.944516,4.761594 m -1.962973,3.174508 1.962973,-3.174508 m -11.777729,-6.877784 5.165661,11.63949 -10.331322,-23.278981 3.099397,6.348793 m 10.331322,17.988283 3.512671,-5.819801" - id="path10" - style="stroke:#ffffff;stroke-width:2.21892667"/> - <path - inkscape:connector-curvature="0" - d="m 56.056733,73.012225 c 0,1.75162 -1.383057,3.148767 -3.061342,3.148767 -1.678174,0 -3.061231,-1.397147 -3.061231,-3.148767 0,-1.75151 1.383057,-3.148657 3.061231,-3.148657 1.678285,0 3.061342,1.397147 3.061342,3.148657 z" - id="path12" - style="stroke:#ffffff;stroke-width:1.10946333"/> - <path - inkscape:connector-curvature="0" - d="m 45.170568,71.95424 c 0,6.717246 -5.310002,12.117115 -11.804689,12.117115 -6.494798,0 -11.804801,-5.399869 -11.804801,-12.117115 0,-6.717356 5.310003,-12.117225 11.804801,-12.117225 6.494687,0 11.804689,5.399869 11.804689,12.117225 z" - id="path14" - style="stroke:#ffffff;stroke-width:2.21892667"/> - <g - id="g20" - transform="matrix(1.1094633,0,0,1.1094633,0.48127584,3.080534)"> - <circle - style="stroke:#ffffff;stroke-width:2" - id="circle18" - r="11" - cy="63" - cx="66"/> - </g> - </g> - </g> -</svg> +<?xml version="1.0" encoding="UTF-8" standalone="yes"?> +<svg xmlns="http://www.w3.org/2000/svg" width="375px" height="375px" viewBox="0 0 375 375" version="1.1"> + <g id="surface1"> + <path style=" stroke:none;fill-rule:nonzero;fill:rgb(41.960785%,76.862746%,96.862745%);fill-opacity:1;" d="M 375 187.5 C 375 291.054688 291.054688 375 187.5 375 C 83.945312 375 0 291.054688 0 187.5 C 0 83.945312 83.945312 0 187.5 0 C 291.054688 0 375 83.945312 375 187.5 Z M 375 187.5 "/> + <path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,98.823529%);fill-opacity:1;" d="M 112.082031 141.519531 C 112.761719 145.027344 116.449219 148.15625 120.320312 148.511719 C 124.179688 148.871094 126.761719 146.3125 126.082031 142.804688 L 123.097656 127.578125 C 122.417969 124.078125 118.730469 120.941406 114.863281 120.585938 C 111 120.234375 108.425781 122.789062 109.105469 126.289062 Z M 112.082031 141.519531 "/> + <path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,98.823529%);fill-opacity:1;" d="M 164.621094 45.179688 L 72.304688 121.449219 L 82.902344 134.277344 L 175.21875 58.011719 Z M 164.621094 45.179688 "/> + <path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,98.823529%);fill-opacity:1;" d="M 45.011719 41.355469 L 46.390625 26.863281 C 81.960938 30.25 86.851562 34.675781 101.835938 52.867188 L 103.351562 54.703125 L 97.742188 59.339844 L 108.804688 50.199219 C 120.039062 40.917969 136.667969 42.503906 145.949219 53.738281 L 84.226562 104.730469 C 74.945312 93.496094 76.53125 76.867188 87.761719 67.585938 L 92.128906 63.976562 L 90.597656 62.125 C 77.875 46.671875 75.917969 44.296875 45.011719 41.355469 Z M 45.011719 41.355469 "/> + <path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,98.823529%);fill-opacity:1;" d="M 117.109375 175.765625 C 117.789062 179.273438 121.476562 182.402344 125.34375 182.757812 C 129.207031 183.113281 131.789062 180.554688 131.105469 177.050781 L 128.125 161.824219 C 127.445312 158.320312 123.757812 155.1875 119.886719 154.832031 C 116.027344 154.480469 113.453125 157.03125 114.132812 160.535156 Z M 117.109375 175.765625 "/> + <path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,98.823529%);fill-opacity:1;" d="M 139.046875 124.457031 C 141.324219 127.210938 146.058594 128.1875 149.625 126.648438 C 153.1875 125.109375 154.226562 121.628906 151.945312 118.875 L 142.035156 106.941406 C 139.757812 104.195312 135.019531 103.207031 131.453125 104.75 C 127.898438 106.292969 126.859375 109.769531 129.136719 112.515625 Z M 139.046875 124.457031 "/> + <path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,98.823529%);fill-opacity:1;" d="M 159.960938 149.890625 C 162.011719 152.632812 166.5 153.796875 169.992188 152.496094 C 173.476562 151.199219 174.640625 147.917969 172.589844 145.175781 L 163.675781 133.273438 C 161.628906 130.539062 157.140625 129.367188 153.648438 130.667969 C 150.164062 131.96875 149.003906 135.246094 151.050781 137.984375 Z M 159.960938 149.890625 "/> + <path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,98.823529%);fill-opacity:1;" d="M 167.828125 103.125 C 171.160156 104.417969 175.773438 102.960938 178.132812 99.875 C 180.492188 96.796875 179.703125 93.25 176.371094 91.960938 L 161.898438 86.375 C 158.570312 85.085938 153.953125 86.535156 151.59375 89.621094 C 149.238281 92.703125 150.027344 96.242188 153.355469 97.53125 Z M 167.828125 103.125 "/> + <path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,98.823529%);fill-opacity:1;" d="M 201.746094 110.976562 C 205.148438 112.070312 209.667969 110.34375 211.839844 107.121094 C 214.011719 103.910156 213.011719 100.414062 209.609375 99.324219 L 194.832031 94.605469 C 191.433594 93.519531 186.910156 95.242188 184.738281 98.460938 C 182.570312 101.675781 183.570312 105.164062 186.964844 106.25 Z M 201.746094 110.976562 "/> + <path style="fill:none;stroke-width:2.218927;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:4;" d="M 50.491438 73.912417 L 33.444542 73.912417 L 42.743313 53.278313 L 65.988708 53.278313 M 65.988708 53.278313 L 63.406 47.459563 L 70.637583 47.459563 M 65.988708 53.278313 L 67.021792 55.924313 L 69.087958 60.156688 L 74.770938 73.912417 M 65.988708 53.278313 L 61.081563 61.214271 L 58.137479 65.976458 M 56.174417 69.15125 L 58.137479 65.976458 M 46.359104 59.098083 L 51.524521 70.737625 L 41.193688 47.459563 L 44.292938 53.808125 M 54.624792 71.796229 L 58.137479 65.976458 " transform="matrix(3.826531,0,0,3.826531,0,0)"/> + <path style="fill:none;stroke-width:1.109463;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:4;" d="M 56.057021 73.012042 C 56.057021 74.763792 54.673792 76.161313 52.995542 76.161313 C 51.317292 76.161313 49.934063 74.763792 49.934063 73.012042 C 49.934063 71.260292 51.317292 69.863792 52.995542 69.863792 C 54.673792 69.863792 56.057021 71.260292 56.057021 73.012042 Z M 56.057021 73.012042 " transform="matrix(3.826531,0,0,3.826531,0,0)"/> + <path style="fill:none;stroke-width:2.218927;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:4;" d="M 45.170854 71.954458 C 45.170854 78.671542 39.860479 84.07175 33.365938 84.07175 C 26.871396 84.07175 21.561021 78.671542 21.561021 71.954458 C 21.561021 65.237375 26.871396 59.837167 33.365938 59.837167 C 39.860479 59.837167 45.170854 65.237375 45.170854 71.954458 Z M 45.170854 71.954458 " transform="matrix(3.826531,0,0,3.826531,0,0)"/> + <path style="fill:none;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:4;" d="M 77.000287 62.999629 C 77.000287 69.075145 72.074914 73.999598 66.000318 73.999598 C 59.924801 73.999598 55.000348 69.075145 55.000348 62.999629 C 55.000348 56.925033 59.924801 51.99966 66.000318 51.99966 C 72.074914 51.99966 77.000287 56.925033 77.000287 62.999629 Z M 77.000287 62.999629 " transform="matrix(4.245395,0,0,4.245395,1.841617,11.787758)"/> + </g> +</svg> \ No newline at end of file diff --git a/assets/layers/bike_parking/bike_parking.json b/assets/layers/bike_parking/bike_parking.json index a66a84fa2c..7e7f91c3ff 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}", @@ -100,91 +100,119 @@ { "if": "bicycle_parking=stands", "then": { - "en": "Staple racks <img style='width: 25%' src='./assets/layers/bike_parking/staple.svg'>", - "nl": "Nietjes <img style='width: 25%'' src='./assets/layers/bike_parking/staple.svg'>", - "fr": "Arceaux <img style='width: 25%'' src='./assets/layers/bike_parking/staple.svg'>", - "gl": "De roda (Stands) <img style='width: 25%'' src='./assets/layers/bike_parking/staple.svg'>", - "de": "Fahrradbügel <img style='width: 25%'' src='./assets/layers/bike_parking/staple.svg'>", - "hu": "\"U\" <img style='width: 25%' src='./assets/layers/bike_parking/staple.svg'>", - "it": "Archetti <img style='width: 25%' src='./assets/layers/bike_parking/staple.svg'>", - "zh_Hant": "單車架 <img style='width: 25%' src='./assets/layers/bike_parking/staple.svg'>" + "en": "Staple racks", + "nl": "Nietjes", + "fr": "Arceaux", + "gl": "De roda (Stands)", + "de": "Fahrradbügel", + "hu": "Korlát", + "it": "Archetti", + "zh_Hant": "單車架" + }, + "icon": { + "path": "./assets/layers/bike_parking/staple.svg", + "class": "large" } }, { "if": "bicycle_parking=wall_loops", "then": { - "en": "Wheel rack/loops <img style='width: 25%'' src='./assets/layers/bike_parking/wall_loops.svg'>", - "nl": "Wielrek/lussen <img style='width: 25%'' src='./assets/layers/bike_parking/wall_loops.svg'>", - "fr": "Pinces-roues <img style='width: 25%'' src='./assets/layers/bike_parking/wall_loops.svg'>", - "gl": "Aros <img style='width: 25%'' src='./assets/layers/bike_parking/wall_loops.svg'>", - "de": "Metallgestänge <img style='width: 25%'' src='./assets/layers/bike_parking/wall_loops.svg'>", - "hu": "Kengyeles <img style='width: 25%'' src='./assets/layers/bike_parking/wall_loops.svg'>", - "it": "Scolapiatti <img style='width: 25%'' src='./assets/layers/bike_parking/wall_loops.svg'>", - "zh_Hant": "車輪架/圓圈 <img style='width: 25%'' src='./assets/layers/bike_parking/wall_loops.svg'>" + "en": "Wheel rack/loops", + "nl": "Wielrek/lussen", + "fr": "Pinces-roues", + "gl": "Aros", + "de": "Metallgestänge", + "hu": "Kerékbefogó hurok", + "it": "Scolapiatti", + "zh_Hant": "車輪架/圓圈" + }, + "icon": { + "path": "./assets/layers/bike_parking/wall_loops.svg", + "class": "large" } }, { "if": "bicycle_parking=handlebar_holder", "then": { - "en": "Handlebar holder <img style='width: 25%'' src='./assets/layers/bike_parking/handlebar_holder.svg'>", - "nl": "Stuurhouder <img style='width: 25%'' src='./assets/layers/bike_parking/handlebar_holder.svg'>", - "fr": "Support guidon <img style='width: 25%'' src='./assets/layers/bike_parking/handlebar_holder.svg'>", - "gl": "Cadeado para guiador <img style='width: 25%'' src='./assets/layers/bike_parking/handlebar_holder.svg'>", - "de": "Halter für Fahrradlenker <img style='width: 25%'' src='./assets/layers/bike_parking/handlebar_holder.svg'>", - "it": "Blocca manubrio <img style='width: 25%'' src='./assets/layers/bike_parking/handlebar_holder.svg'>", - "zh_Hant": "車把架 <img style='width: 25%'' src='./assets/layers/bike_parking/handlebar_holder.svg'>" + "en": "Handlebar holder", + "nl": "Stuurhouder", + "fr": "Support guidon", + "gl": "Cadeado para guiador", + "de": "Halter für Fahrradlenker", + "it": "Blocca manubrio", + "zh_Hant": "車把架" + }, + "icon": { + "path": "./assets/layers/bike_parking/handlebar_holder.svg", + "class": "large" } }, { "if": "bicycle_parking=rack", "then": { - "en": "Rack <img style='width: 25%'' src='./assets/layers/bike_parking/rack.svg'>", - "nl": "Rek <img style='width: 25%'' src='./assets/layers/bike_parking/rack.svg'>", - "fr": "Râtelier <img style='width: 25%'' src='./assets/layers/bike_parking/rack.svg'>", - "gl": "Cremalleira <img style='width: 25%'' src='./assets/layers/bike_parking/rack.svg'>", - "de": "Gestell <img style='width: 25%'' src='./assets/layers/bike_parking/rack.svg'>", - "zh_Hant": "車架<img style='width: 25%'' src='./assets/layers/bike_parking/rack.svg'>", - "it": "Rastrelliera <img style='width: 25%'' src='./assets/layers/bike_parking/rack.svg'>", - "ru": "Стойка <img style='width: 25%'' src='./assets/layers/bike_parking/rack.svg'>" + "en": "Rack", + "nl": "Rek", + "fr": "Râtelier", + "gl": "Cremalleira", + "de": "Gestell", + "zh_Hant": "車架", + "it": "Rastrelliera", + "ru": "Стойка" + }, + "icon": { + "path": "./assets/layers/bike_parking/rack.svg", + "class": "large" } }, { "if": "bicycle_parking=two_tier", "then": { - "en": "Two-tiered <img style='width: 25%'' src='./assets/layers/bike_parking/two_tier.svg'>", - "nl": "Dubbel (twee verdiepingen) <img style='width: 25%'' src='./assets/layers/bike_parking/two_tier.svg'>", - "fr": "Superposé <img style='width: 25%'' src='./assets/layers/bike_parking/two_tier.svg'>", - "gl": "Dobre cremalleira <img style='width: 25%'' src='./assets/layers/bike_parking/two_tier.svg'>", - "de": "Zweistufig <img style='width: 25%'' src='./assets/layers/bike_parking/two_tier.svg'>", - "hu": "Kétszintű <img style='width: 25%'' src='./assets/layers/bike_parking/two_tier.svg'>", - "zh_Hant": "兩層<img style='width: 25%'' src='./assets/layers/bike_parking/two_tier.svg'>", - "it": "A due piani <img style='width: 25%'' src='./assets/layers/bike_parking/two_tier.svg'>", - "ru": "Двухуровневая <img style='width: 25%'' src='./assets/layers/bike_parking/two_tier.svg'>" + "en": "Two-tiered", + "nl": "Dubbel (twee verdiepingen)", + "fr": "Superposé", + "gl": "Dobre cremalleira", + "de": "Zweistufig", + "hu": "Kétszintű", + "zh_Hant": "兩層", + "it": "A due piani", + "ru": "Двухуровневая" + }, + "icon": { + "path": "./assets/layers/bike_parking/two_tier.svg", + "class": "large" } }, { "if": "bicycle_parking=shed", "then": { - "en": "Shed <img style='width: 25%'' src='./assets/layers/bike_parking/shed.svg'>", - "nl": "Schuur <img style='width: 25%'' src='./assets/layers/bike_parking/shed.svg'>", - "fr": "Abri <img style='width: 25%'' src='./assets/layers/bike_parking/shed.svg'>", - "gl": "Abeiro <img style='width: 25%'' src='./assets/layers/bike_parking/shed.svg'>", - "de": "Schuppen <img style='width: 25%'' src='./assets/layers/bike_parking/shed.svg'>", - "hu": "Fészer <img style='width: 25%'' src='./assets/layers/bike_parking/shed.svg'>", - "zh_Hant": "車棚 <img style='width: 25%'' src='./assets/layers/bike_parking/shed.svg'>", - "it": "Rimessa <img style='width: 25%'' src='./assets/layers/bike_parking/shed.svg'>", - "ru": "Навес <img style='width: 25%'' src='./assets/layers/bike_parking/shed.svg'>" + "en": "Shed", + "nl": "Schuur", + "fr": "Abri", + "gl": "Abeiro", + "de": "Schuppen", + "hu": "Fészer", + "zh_Hant": "車棚", + "it": "Rimessa", + "ru": "Навес" + }, + "icon": { + "path": "./assets/layers/bike_parking/shed.svg", + "class": "large" } }, { "if": "bicycle_parking=bollard", "then": { - "en": "Bollard <img style='width: 25%'' src='./assets/layers/bike_parking/bollard.svg'>", - "nl": "Paal met ring <img style='width: 25%'' src='./assets/layers/bike_parking/bollard.svg'>", - "fr": "Potelet <img style='width: 25%'' src='./assets/layers/bike_parking/bollard.svg'>", - "it": "Colonnina <img style='width: 25%'' src='./assets/layers/bike_parking/bollard.svg'>", - "de": "Poller <img style='width: 25%'' src='./assets/layers/bike_parking/bollard.svg'>", - "zh_Hant": "柱子 <img style='width: 25%'' src='./assets/layers/bike_parking/bollard.svg'>" + "en": "Bollard", + "nl": "Paal met ring", + "fr": "Potelet", + "it": "Colonnina", + "de": "Poller", + "zh_Hant": "柱子" + }, + "icon": { + "path": "./assets/layers/bike_parking/bollard.svg", + "class": "large" } }, { @@ -271,22 +299,7 @@ "pt_BR": "Estacionamento ao nível da superfície", "pt": "Estacionamento ao nível da superfície" }, - "hideInAnwser": true - }, - { - "if": "location=rooftop", - "then": { - "en": "Rooftop parking", - "nl": "Dakparking", - "fr": "Parking sur un toit", - "hu": "Tetőparkoló", - "it": "Parcheggio sul tetto", - "ru": "Парковка на крыше", - "zh_Hant": "屋頂停車場", - "pt_BR": "Estacionamento no telhado", - "de": "Parkplatz auf dem Dach", - "pt": "Estacionamento no telhado" - } + "hideInAnswer": true } ], "id": "Underground?" @@ -298,7 +311,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 +332,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 +348,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": "Это открытая парковка", @@ -480,7 +493,7 @@ "if": "cargo_bike=designated", "then": { "en": "This parking has designated (official) spots for cargo bikes.", - "nl": "Er zijn speciale plaatsen voorzien voor bakfietsen", + "nl": "Er zijn speciale plaatsen voorzien voor bakfietsen.", "gl": "Este aparcadoiro ten espazos designados (oficiais) para bicicletas de carga.", "de": "Dieser Parkplatz verfügt über ausgewiesene (offizielle) Plätze für Lastenfahrräder.", "fr": "Ce parking a des emplacements (officiellement) destinés aux vélos cargo.", @@ -519,7 +532,7 @@ }, "render": { "en": "This parking fits {capacity:cargo_bike} cargo bikes", - "nl": "Deze parking heeft plaats voor {capacity:cargo_bike} fietsen", + "nl": "Deze parking heeft plaats voor {capacity:cargo_bike} bakfietsen", "fr": "Ce parking a de la place pour {capacity:cargo_bike} vélos de transport", "gl": "Neste aparcadoiro caben {capacity:cargo_bike} bicicletas de carga", "de": "Auf diesen Parkplatz passen {capacity:cargo_bike} Lastenfahrräder", @@ -551,7 +564,7 @@ "mapRendering": [ { "icon": { - "render": "./assets/layers/bike_parking/parking.svg" + "render": "pin:#5473de;./assets/layers/bike_parking/parking.svg" }, "iconSize": "40,40,bottom", "location": [ @@ -563,5 +576,9 @@ "color": "#00f", "width": "1" } - ] + ], + "description": { + "en": "A layer showing where you can park your bike", + "nl": "Een laag die toont waar je je fiets kunt parkeren" + } } \ No newline at end of file diff --git a/assets/layers/bike_parking/bollard.svg b/assets/layers/bike_parking/bollard.svg index f4e182ee7a..fea2ba923f 100644 --- a/assets/layers/bike_parking/bollard.svg +++ b/assets/layers/bike_parking/bollard.svg @@ -1,82 +1,7 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Generator: Adobe Illustrator 24.2.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - xmlns="http://www.w3.org/2000/svg" - version="1.1" - x="0px" - y="0px" - viewBox="0 0 300 300" - style="enable-background:new 0 0 300 300;" - xml:space="preserve" - id="svg13" - sodipodi:docname="bollard.svg" - inkscape:version="0.92.4 (5da689c313, 2019-01-14)"><metadata - id="metadata19"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage"/></cc:Work></rdf:RDF></metadata> - <defs - id="defs17"/> - <sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1001" - id="namedview15" - showgrid="true" - inkscape:zoom="2.2250293" - inkscape:cx="78.331408" - inkscape:cy="164.47167" - inkscape:window-x="0" - inkscape:window-y="0" - inkscape:window-maximized="1" - inkscape:current-layer="svg13"><inkscape:grid - type="xygrid" - id="grid826" /></sodipodi:namedview> - <style - type="text/css" - id="style2"> - .st0{fill:#0181C2;} - .st1{fill:#020203;} - .st2{fill:none;stroke:#000000;stroke-width:4.6057;} - .st3{fill:none;stroke:#000000;stroke-width:2.3029;} - .st4{fill:#FFFFFF;stroke:#000000;stroke-width:4;stroke-miterlimit:10;} - .st5{fill:#E74436;} - .st6{fill:#FCC407;} - .st7{fill:#0682C2;} - .st8{fill:#73B254;} - .st9{fill:#FFFFFF;stroke:#000000;stroke-width:7.155;stroke-miterlimit:10;} - .st10{fill:#FFFFFF;stroke:#000000;stroke-width:7.7355;stroke-miterlimit:10;} - .st11{fill:none;stroke:#010202;stroke-width:4;stroke-miterlimit:10;} - .st12{fill:none;stroke:#000000;stroke-width:4;stroke-miterlimit:10;} -</style> - - <g - id="Isolatiemodus"> -</g> - <g - id="Capa_1"> -</g> - <path - style="fill:none;stroke:#000000;stroke-width:15;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - d="M 150,20 V 285" - id="path828" - inkscape:connector-curvature="0" - sodipodi:nodetypes="cc"/> - <circle - style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:15;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="path830" - cx="150" - cy="104.78814" - r="60"/></svg> \ No newline at end of file +<?xml version="1.0" encoding="UTF-8" standalone="yes"?> +<svg xmlns="http://www.w3.org/2000/svg" width="375px" height="375px" viewBox="0 0 375 375" version="1.1"> + <g id="surface1"> + <path style="fill:none;stroke-width:15;stroke-linecap:round;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:4;" d="M 150 20 L 150 285 " transform="matrix(1.25,0,0,1.25,0,0)"/> + <path style="fill:none;stroke-width:15;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:4;" d="M 210 104.7875 C 210 137.925 183.1375 164.7875 150 164.7875 C 116.8625 164.7875 90 137.925 90 104.7875 C 90 71.65 116.8625 44.7875 150 44.7875 C 183.1375 44.7875 210 71.65 210 104.7875 Z M 210 104.7875 " transform="matrix(1.25,0,0,1.25,0,0)"/> + </g> +</svg> \ No newline at end of file diff --git a/assets/layers/bike_parking/handlebar_holder.svg b/assets/layers/bike_parking/handlebar_holder.svg index e4c295c86a..2f2e080a46 100644 --- a/assets/layers/bike_parking/handlebar_holder.svg +++ b/assets/layers/bike_parking/handlebar_holder.svg @@ -1,31 +1,7 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Generator: Adobe Illustrator 24.2.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> -<svg version="1.1" xmlns="http://www.w3.org/2000/svg" x="0px" y="0px" - viewBox="0 0 300 300" style="enable-background:new 0 0 300 300;" xml:space="preserve"> -<style type="text/css"> - .st0{fill:#0181C2;} - .st1{fill:#020203;} - .st2{fill:none;stroke:#000000;stroke-width:4.6057;} - .st3{fill:none;stroke:#000000;stroke-width:2.3029;} - .st4{fill:#FFFFFF;stroke:#000000;stroke-width:4;stroke-miterlimit:10;} - .st5{fill:#E74436;} - .st6{fill:#FCC407;} - .st7{fill:#0682C2;} - .st8{fill:#73B254;} - .st9{fill:#FFFFFF;stroke:#000000;stroke-width:7.155;stroke-miterlimit:10;} - .st10{fill:#FFFFFF;stroke:#000000;stroke-width:7.7355;stroke-miterlimit:10;} - .st11{fill:none;stroke:#010202;stroke-width:4;stroke-miterlimit:10;} - .st12{fill:none;stroke:#000000;stroke-width:4;stroke-miterlimit:10;} -</style> - <g id="Laag_1"> -</g> - <g id="Isolatiemodus"> -</g> - <g id="Capa_1"> - <path class="st9" d="M119.1,90.2l14.6,72.2l55.8,10.9c16.6-15,33.2-30,49.8-45c4.2-4.3,4-11.2-0.2-15.2c-4.3-4.1-11.5-3.7-15.5,1.1 - c-12.4,11.2-24.9,22.3-37.3,33.5c-10.6-2.2-21.2-4.4-31.9-6.5c-4.1-18.8-8.2-37.6-12.3-56.4C134.6,86.7,126.8,88.5,119.1,90.2z"/> - <path class="st10" d="M62.2,116.1L78,194.2l60.4,11.8c18-16.2,35.9-32.4,53.9-48.6c4.5-4.7,4.3-12.1-0.2-16.4 - c-4.7-4.4-12.5-4-16.8,1.2c-13.4,12.1-26.9,24.1-40.3,36.2c-11.5-2.4-23-4.7-34.4-7.1c-4.4-20.3-8.8-40.6-13.2-60.9 - C78.9,112.3,70.6,114.2,62.2,116.1z"/> -</g> -</svg> +<?xml version="1.0" encoding="UTF-8" standalone="yes"?> +<svg xmlns="http://www.w3.org/2000/svg" width="375px" height="375px" viewBox="0 0 375 375" version="1.1"> + <g id="surface1"> + <path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:7.155;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 119.1 90.2 L 133.7 162.4 L 189.5 173.3 C 206.1 158.3 222.7 143.3 239.3 128.3 C 243.5 124 243.3 117.1 239.1 113.1 C 234.8 109 227.6 109.4 223.6 114.2 C 211.2 125.4 198.7 136.5 186.3 147.7 C 175.7 145.5 165.1 143.3 154.4 141.2 C 150.3 122.4 146.2 103.6 142.1 84.8 C 134.6 86.7 126.8 88.5 119.1 90.2 Z M 119.1 90.2 " transform="matrix(1.25,0,0,1.25,0,0)"/> + <path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:7.7355;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 62.2 116.1 L 78 194.2 L 138.4 206 C 156.4 189.8 174.3 173.6 192.3 157.4 C 196.8 152.7 196.6 145.3 192.1 141 C 187.4 136.6 179.6 137 175.3 142.2 C 161.9 154.3 148.4 166.3 135 178.4 C 123.5 176 112 173.7 100.6 171.3 C 96.2 151 91.8 130.7 87.4 110.4 C 78.9 112.3 70.6 114.2 62.2 116.1 Z M 62.2 116.1 " transform="matrix(1.25,0,0,1.25,0,0)"/> + </g> +</svg> \ No newline at end of file diff --git a/assets/layers/bike_parking/license_info.json b/assets/layers/bike_parking/license_info.json index 67709100a1..3aa7716596 100644 --- a/assets/layers/bike_parking/license_info.json +++ b/assets/layers/bike_parking/license_info.json @@ -33,20 +33,6 @@ "https://osoc.be/editions/2020/cyclofix" ] }, - { - "path": "parking_old.svg", - "license": "CC-BY-SA", - "authors": [ - "Pieter Fiers", - "Thibault Declercq", - "Pierre Barban", - "Joost Schouppe", - "Pieter Vander Vennet" - ], - "sources": [ - "https://osoc.be/editions/2020/cyclofix" - ] - }, { "path": "rack.svg", "license": "CC-BY-SA", diff --git a/assets/layers/bike_parking/parking.svg b/assets/layers/bike_parking/parking.svg index 128a5b0921..c9158418a1 100644 --- a/assets/layers/bike_parking/parking.svg +++ b/assets/layers/bike_parking/parking.svg @@ -1,21 +1,38 @@ -<svg width="97" height="123" viewBox="0 0 97 123" fill="none" xmlns="http://www.w3.org/2000/svg"> - <path d="M52.1412 111.419C50.4633 115.605 44.5366 115.605 42.8588 111.419L24.7014 66.1099C23.385 62.8252 25.8039 59.25 29.3426 59.25L65.6574 59.25C69.1962 59.25 71.615 62.8252 70.2986 66.11L52.1412 111.419Z" - fill="#5675DF"/> - <ellipse cx="48.5" cy="47.5" rx="48.5" ry="47.5" fill="#5675DF"/> - <g filter="url(#filter0_d)"> - <path d="M42.2812 53.1875V71H36.2812V25.5H53.0625C58.0417 25.5 61.9375 26.7708 64.75 29.3125C67.5833 31.8542 69 35.2188 69 39.4062C69 43.8229 67.6146 47.2292 64.8438 49.625C62.0938 52 58.1458 53.1875 53 53.1875H42.2812ZM42.2812 48.2812H53.0625C56.2708 48.2812 58.7292 47.5312 60.4375 46.0312C62.1458 44.5104 63 42.3229 63 39.4688C63 36.7604 62.1458 34.5938 60.4375 32.9688C58.7292 31.3438 56.3854 30.5 53.4062 30.4375H42.2812V48.2812Z" - fill="white"/> - </g> - <defs> - <filter id="filter0_d" x="32.2812" y="25.5" width="40.7188" height="53.5" filterUnits="userSpaceOnUse" - color-interpolation-filters="sRGB"> - <feFlood flood-opacity="0" result="BackgroundImageFix"/> - <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/> - <feOffset dy="4"/> - <feGaussianBlur stdDeviation="2"/> - <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"/> - <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow"/> - <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow" result="shape"/> - </filter> - </defs> +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<svg + width="295" + height="348.33301" + viewBox="0 0 295 348.33301" + version="1.1" + id="svg24" + sodipodi:docname="parking.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:xlink="http://www.w3.org/1999/xlink" + xmlns="http://www.w3.org/2000/svg" + xmlns:svg="http://www.w3.org/2000/svg"> + <sodipodi:namedview + id="namedview26" + pagecolor="#505050" + bordercolor="#eeeeee" + borderopacity="1" + inkscape:pageshadow="0" + inkscape:pageopacity="0" + inkscape:pagecheckerboard="0" + showgrid="false" + inkscape:zoom="1.6454142" + inkscape:cx="160.44592" + inkscape:cy="171.38541" + inkscape:current-layer="svg24" /> + <g + aria-label="P" + transform="translate(-16.798674,-61.651243)" + id="text3337" + style="font-size:266.667px;line-height:1.25;letter-spacing:0px;word-spacing:0px;white-space:pre;shape-inside:url(#rect3339);fill:#ffffff"> + <path + d="m 173.23565,108.00102 q 36.80005,0 53.60007,16.00002 17.06668,15.73336 17.06668,43.46672 0,16.53336 -6.93334,31.20004 -6.93334,14.40002 -23.20003,23.20003 -16.00002,8.80001 -43.73338,8.80001 h -17.33336 v 67.73342 H 112.43558 V 108.00102 Z m -2.13334,33.06671 h -18.40002 v 56.5334 h 13.33335 q 17.06669,0 26.93337,-6.66667 10.13334,-6.93334 10.13334,-22.13336 0,-27.73337 -32.00004,-27.73337 z" + style="font-weight:bold" + id="path19001" /> + </g> </svg> diff --git a/assets/layers/bike_parking/parking_old.svg b/assets/layers/bike_parking/parking_old.svg deleted file mode 100644 index ed3a5bfafd..0000000000 --- a/assets/layers/bike_parking/parking_old.svg +++ /dev/null @@ -1,104 +0,0 @@ -<svg width="97" height="123" viewBox="0 0 97 123" fill="none" xmlns="http://www.w3.org/2000/svg"> - <path d="M52.1412 111.419C50.4633 115.605 44.5366 115.605 42.8588 111.419L24.7014 66.1099C23.385 62.8252 25.8039 59.25 29.3426 59.25L65.6574 59.25C69.1962 59.25 71.615 62.8252 70.2986 66.11L52.1412 111.419Z" - fill="#5675DF"/> - <ellipse cx="48.5" cy="47.5" rx="48.5" ry="47.5" fill="#5675DF"/> - <g filter="url(#filter0_d)"> - <circle cx="39" cy="66" r="2" stroke="white" stroke-width="2"/> - </g> - <g filter="url(#filter1_d)"> - <path d="M37.375 67H25L31.75 51.4H38.5H43.375H48.625M48.625 51.4L46.75 47H49.375H52M48.625 51.4L49.375 53.4L50.875 56.6L55 67M48.625 51.4L45.0625 57.4L42.925 61M41.5 63.4L42.925 61M34.375 55.8L38.125 64.6L30.625 47L32.875 51.8M40.375 65.4L42.925 61" - stroke="white" stroke-width="2"/> - </g> - <g filter="url(#filter2_d)"> - <circle cx="23" cy="67" r="9" stroke="white" stroke-width="2"/> - </g> - <g filter="url(#filter3_d)"> - <circle cx="55" cy="67" r="9" stroke="white" stroke-width="2"/> - </g> - <path d="M61 77V59.0476V55.9524L62.4814 54.4851C64.4301 52.5549 67.5699 52.5549 69.5186 54.4851L71 55.9524V58.4286V77" - stroke="white" stroke-width="2"/> - <line x1="66" y1="53" x2="66" y2="16" stroke="white" stroke-width="2"/> - <g filter="url(#filter4_d)"> - <circle cx="66" cy="23" r="13" fill="white"/> - </g> - <g filter="url(#filter5_d)"> - <circle cx="66" cy="23" r="11" fill="#496DEB"/> - </g> - <g filter="url(#filter6_d)"> - <path d="M64.1729 24.9902V30H62.4854V17.2031H67.2051C68.6055 17.2031 69.7012 17.5605 70.4922 18.2754C71.2891 18.9902 71.6875 19.9365 71.6875 21.1143C71.6875 22.3564 71.2979 23.3145 70.5186 23.9883C69.7451 24.6562 68.6348 24.9902 67.1875 24.9902H64.1729ZM64.1729 23.6104H67.2051C68.1074 23.6104 68.7988 23.3994 69.2793 22.9775C69.7598 22.5498 70 21.9346 70 21.1318C70 20.3701 69.7598 19.7607 69.2793 19.3037C68.7988 18.8467 68.1396 18.6094 67.3018 18.5918H64.1729V23.6104Z" - fill="white"/> - </g> - <line x1="43" y1="78" x2="72" y2="78" stroke="white" stroke-width="2"/> - <defs> - <filter id="filter0_d" x="32" y="63" width="14" height="14" filterUnits="userSpaceOnUse" - color-interpolation-filters="sRGB"> - <feFlood flood-opacity="0" result="BackgroundImageFix"/> - <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/> - <feOffset dy="4"/> - <feGaussianBlur stdDeviation="2"/> - <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"/> - <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow"/> - <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow" result="shape"/> - </filter> - <filter id="filter1_d" x="19.4777" y="46" width="40.4518" height="30" filterUnits="userSpaceOnUse" - color-interpolation-filters="sRGB"> - <feFlood flood-opacity="0" result="BackgroundImageFix"/> - <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/> - <feOffset dy="4"/> - <feGaussianBlur stdDeviation="2"/> - <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"/> - <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow"/> - <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow" result="shape"/> - </filter> - <filter id="filter2_d" x="9" y="57" width="28" height="28" filterUnits="userSpaceOnUse" - color-interpolation-filters="sRGB"> - <feFlood flood-opacity="0" result="BackgroundImageFix"/> - <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/> - <feOffset dy="4"/> - <feGaussianBlur stdDeviation="2"/> - <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"/> - <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow"/> - <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow" result="shape"/> - </filter> - <filter id="filter3_d" x="41" y="57" width="28" height="28" filterUnits="userSpaceOnUse" - color-interpolation-filters="sRGB"> - <feFlood flood-opacity="0" result="BackgroundImageFix"/> - <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/> - <feOffset dy="4"/> - <feGaussianBlur stdDeviation="2"/> - <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"/> - <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow"/> - <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow" result="shape"/> - </filter> - <filter id="filter4_d" x="49" y="10" width="34" height="34" filterUnits="userSpaceOnUse" - color-interpolation-filters="sRGB"> - <feFlood flood-opacity="0" result="BackgroundImageFix"/> - <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/> - <feOffset dy="4"/> - <feGaussianBlur stdDeviation="2"/> - <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"/> - <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow"/> - <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow" result="shape"/> - </filter> - <filter id="filter5_d" x="51" y="12" width="30" height="30" filterUnits="userSpaceOnUse" - color-interpolation-filters="sRGB"> - <feFlood flood-opacity="0" result="BackgroundImageFix"/> - <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/> - <feOffset dy="4"/> - <feGaussianBlur stdDeviation="2"/> - <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"/> - <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow"/> - <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow" result="shape"/> - </filter> - <filter id="filter6_d" x="58.4854" y="17.2031" width="17.2021" height="20.7969" filterUnits="userSpaceOnUse" - color-interpolation-filters="sRGB"> - <feFlood flood-opacity="0" result="BackgroundImageFix"/> - <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/> - <feOffset dy="4"/> - <feGaussianBlur stdDeviation="2"/> - <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"/> - <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow"/> - <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow" result="shape"/> - </filter> - </defs> -</svg> diff --git a/assets/layers/bike_parking/rack.svg b/assets/layers/bike_parking/rack.svg index 947d4863ce..ee84be5f13 100644 --- a/assets/layers/bike_parking/rack.svg +++ b/assets/layers/bike_parking/rack.svg @@ -1,298 +1,13 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Generator: Adobe Illustrator 24.2.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> -<svg version="1.1" xmlns="http://www.w3.org/2000/svg" x="0px" y="0px" - viewBox="0 0 300 300" style="enable-background:new 0 0 300 300;" xml:space="preserve"> -<style type="text/css"> - .st0{fill:#0181C2;} - .st1{fill:#020203;} - .st2{fill:none;stroke:#000000;stroke-width:4.6057;} - .st3{fill:none;stroke:#000000;stroke-width:2.3029;} - .st4{fill:#FFFFFF;stroke:#000000;stroke-width:4;stroke-miterlimit:10;} - .st5{fill:#E74436;} - .st6{fill:#FCC407;} - .st7{fill:#0682C2;} - .st8{fill:#73B254;} - .st9{fill:#FFFFFF;stroke:#000000;stroke-width:7.155;stroke-miterlimit:10;} - .st10{fill:#FFFFFF;stroke:#000000;stroke-width:7.7355;stroke-miterlimit:10;} - .st11{fill:none;stroke:#010202;stroke-width:4;stroke-miterlimit:10;} - .st12{fill:none;stroke:#000000;stroke-width:4;stroke-miterlimit:10;} -</style> - <g id="Laag_1"> - <g> - <g id="XMLID_2_"> - <g> - <path class="st0" d="M-1047.2,176.7c0.3,8.1-1,16-3.6,23.6c-5.3,15.5-14.9,27.8-28.6,37.1c-9.4,6.4-19.8,10.4-31.2,12 - c-15.9,2.2-30.9-0.3-45-7.5c-13.8-7.1-24.4-17.4-31.5-31c-5.3-10.1-8-20.8-8-32.1c-0.1-6.4,1.5-12.6,3.5-18.7 - c4.1-12.1,10-23.4,16.4-34.4c12.5-21.6,26.9-42.1,41.3-62.6c1.8-2.6,3.7-5.3,5.3-8c1.4-2.3,3.2-4.1,5.8-5.1c1.2,0,2.4,0,3.6,0 - c2.5,1.2,4.2,3.2,5.7,5.5c12.3,18.3,24.9,36.4,37,54.8c9,13.7,17.2,27.9,23.3,43.1C-1050,160.8-1047.4,168.5-1047.2,176.7z - M-1064.6,196c3.4-9.9,4.4-20.2,0.6-30.2c-2.8-7.5-5.8-15-9.5-22.1c-9.3-18-20.7-34.8-32.1-51.5c-5.1-7.4-10.1-14.8-15.4-22.5 - c-0.4,0.5-0.6,0.6-0.7,0.9c-12,17.9-24.1,35.8-35.9,53.9c-7.8,11.9-14.5,24.4-19.5,37.8c-3.6,9.6-4.3,19.4-1.8,29.3 - c3.4,13.7,10.7,24.8,22.5,33.1c11.5,8.1,24.3,11.9,38.5,11.2c9.3-0.4,18-2.8,26.1-7.2C-1078.4,221.2-1069.4,210.2-1064.6,196z" - /> - <path class="st0" d="M-1064,165.8c3.8,10.1,2.7,20.3-0.6,30.2c-4.8,14.2-13.8,25.2-27.1,32.6c-8.1,4.4-16.8,6.8-26.1,7.2 - c-14.2,0.7-27-3.1-38.5-11.2c-11.7-8.3-19.1-19.5-22.5-33.1c-2.5-10-1.9-19.7,1.8-29.3c5-13.3,11.7-25.8,19.5-37.8 - c11.8-18.1,23.9-35.9,35.9-53.9c0.1-0.2,0.3-0.4,0.7-0.9c5.2,7.6,10.3,15.1,15.4,22.5c11.5,16.7,22.8,33.5,32.1,51.5 - C-1069.8,150.8-1066.8,158.3-1064,165.8z"/> - </g> - <g> - </g> - </g> - </g> - <g id="outline"> - <g id="XMLID_3_"> - <g> - <path class="st1" d="M-384.7,213.4V228c0,2-1.6,3.6-3.6,3.6H-567c-2,0-3.6-1.6-3.6-3.6v-14.6c0-2,1.6-3.6,3.6-3.6h10.9v-21.9 - h-43.8c-2,0-3.6-1.6-3.6-3.6v-14.6c0-2,1.6-3.6,3.6-3.6h10.9v-61.3c0-3.6,1.7-7,4.6-9.2c5.1-3.8,12.3-2.9,16.1,2.2 - c3.3-4.5,9.3-5.9,14.3-3.3c2.9,1.5,5.1,4.1,6,7.3l16.6,64.4h8.1v-61.3c0-3.6,1.7-7,4.6-9.2c5.1-3.9,12.3-2.9,16.1,2.2 - c0.8-1.1,1.9-2.1,3-2.8c0.9-0.6,1.9-1,3-1.3c6.1-1.7,12.5,1.9,14.2,8.1l16.6,64.4h8.1v-61.3c0-3.6,1.7-7,4.6-9.2 - c5.1-3.8,12.3-2.9,16.1,2.2c3.3-4.5,9.3-5.9,14.3-3.3c2.9,1.5,5.1,4.1,6,7.3l17,65.9c0.3,1,0.4,2,0.4,3v39.3h10.9 - C-386.3,209.7-384.7,211.4-384.7,213.4z M-392,224.3V217h-7.3v7.3H-392z M-406.6,224.3V217h-10.9v7.3H-406.6z M-406.6,209.7 - v-39.3c0-0.4-0.1-0.8-0.2-1.2l-17-65.9c-0.3-1.1-1.1-2.1-2.2-2.6c-0.6-0.3-1.3-0.5-1.9-0.4c-2.4,0-4.2,1.9-4.2,4.3v7.9 - l14.2,54.9c0.2,0.6,0.3,1.2,0.3,1.8c0,0.1,0.1,0.3,0.1,0.4v40.1H-406.6z M-424.8,224.3V217h-40.1v7.3H-424.8z M-424.8,209.7 - v-21.9h-40.1v21.9H-424.8z M-424.8,180.6v-7.3h-7.3v7.3H-424.8z M-425.8,166l-6.3-24.3V166H-425.8z M-439.4,180.6v-7.3h-25.5 - v7.3H-439.4z M-439.4,166v-52.5l-2.6-10c-0.3-1.1-1.1-2.1-2.2-2.6c-0.6-0.3-1.3-0.5-1.9-0.4c-2.4,0-4.2,1.9-4.2,4.3V166H-439.4z - M-472.2,224.3V217h-10.9v7.3H-472.2z M-472.2,209.7v-21.9h-10.9v21.9H-472.2z M-472.2,180.6v-7.3h-10.9v7.3H-472.2z - M-473.2,166l-16.2-62.6c-0.5-1.8-2.2-3.1-4.1-3.1c-2.4,0-4.2,1.9-4.2,4.3v7.9l13.8,53.5H-473.2z M-490.4,224.3V217h-40.1v7.3 - H-490.4z M-490.4,209.7v-21.9h-40.1v21.9H-490.4z M-490.4,180.6v-7.3h-40.1v7.3H-490.4z M-491.4,166l-6.3-24.3V166H-491.4z - M-505,166v-52.5l-2.6-10c-0.5-1.8-2.2-3.1-4.1-3.1c-2.4,0-4.2,1.9-4.2,4.3V166H-505z M-537.8,224.3V217h-10.9v7.3H-537.8z - M-537.8,209.7v-21.9h-10.9v21.9H-537.8z M-537.8,180.6v-7.3h-10.9v7.3H-537.8z M-538.9,166l-16.2-62.5 - c-0.3-1.1-1.1-2.1-2.2-2.6c-0.6-0.3-1.3-0.5-1.9-0.4c-2.4,0-4.2,1.9-4.2,4.3v7.9l13.8,53.4H-538.9z M-556.1,224.3V217h-7.3v7.3 - H-556.1z M-556.1,180.6v-7.3h-25.5v7.3H-556.1z M-557.1,166l-6.3-24.3V166H-557.1z M-570.7,166v-52.5l-2.6-10 - c-0.3-1.1-1.1-2.1-2.2-2.6c-0.6-0.3-1.3-0.5-1.9-0.4c-2.4,0-4.2,1.9-4.2,4.3V166H-570.7z M-588.9,180.6v-7.3h-7.3v7.3H-588.9z" - /> - </g> - <g> - </g> - </g> - </g> - <g> - <path class="st2" d="M453.7,168.1h15h13.9h19.3l19.3,42.8h-35.4 M444,156h7.5h7.5l-5.4,12.1 M435.4,210.9l11.8-28.6l4.3-8.8 - l2.1-5.5 M470,194.4l-6.1-9.9l-10.2-16.5 M470,194.4l4.1,6.6 M498.7,169.2l6.4-13.2l-21.4,48.3l10.7-24.2 M470,194.4l7.3,12.1"/> - <path class="st3" d="M480.6,202.5c3.5,0,6.4,2.9,6.4,6.5c0,3.6-2.9,6.5-6.4,6.5c-3.5,0-6.4-2.9-6.4-6.5 - C474.3,205.4,477.1,202.5,480.6,202.5z"/> - <path class="st2" d="M521.4,181.7c13.5,0,24.5,11.2,24.5,25.2c0,13.9-11,25.2-24.5,25.2c-13.5,0-24.5-11.2-24.5-25.2 - C496.9,192.9,507.9,181.7,521.4,181.7z"/> - </g> - <g> - <circle class="st2" cx="437.6" cy="209" r="25.3"/> - </g> - <g> - <path class="st2" d="M469.8,80.7h15h13.9H518l19.3,42.8h-35.4 M460.1,68.6h7.5h7.5l-5.4,12.1 M451.5,123.5L463.3,95l4.3-8.8 - l2.1-5.5 M486.1,107.1l-6.1-9.9l-10.2-16.5 M486.1,107.1l4.1,6.6 M514.8,81.8l6.4-13.2L499.8,117l10.7-24.2 M486.1,107.1l7.3,12.1 - "/> - <path class="st3" d="M496.7,115.1c3.5,0,6.4,2.9,6.4,6.5c0,3.6-2.9,6.5-6.4,6.5c-3.5,0-6.4-2.9-6.4-6.5 - C490.4,118,493.3,115.1,496.7,115.1z"/> - <path class="st2" d="M537.5,94.3c13.5,0,24.5,11.2,24.5,25.2c0,13.9-11,25.2-24.5,25.2c-13.5,0-24.5-11.2-24.5-25.2 - C513,105.5,524,94.3,537.5,94.3z"/> - </g> - <g> - <circle class="st2" cx="453.7" cy="121.6" r="25.3"/> - </g> - <path class="st4" d="M532.3,229.9c-45.9,0-91.8-0.1-137.7-0.1c10.4-26.7,20.8-53.3,31.2-80c41.4-0.2,82.7-0.5,124.1-0.7 - c1.2-2.6,2.4-5.2,3.6-7.8c-44.9,0.1-89.7,0.2-134.6,0.3c-12.7,32.6-25.3,65.1-38,97.7c49,0,97.9,0.1,146.9,0.1 - C529.3,236.2,530.8,233,532.3,229.9z"/> -</g> - <g id="Isolatiemodus"> - <g id="XMLID_1_"> - <g> - <path class="st5" d="M-1181.5,245.3c1.5,0.7,3,1.2,4.5,1.7c0,0.2-0.1,0.3-0.1,0.5c-0.9-0.2-1.7-0.5-2.5-0.7c-0.1,0-0.1,0-0.2-0.1 - C-1180.6,246.5-1181.2,246-1181.5,245.3z"/> - <path class="st5" d="M-1190.8,240.4c-1,0.6-2.2,0.6-3.3,0c-0.3-0.2-0.6-0.4-0.9-0.6c0.4-0.5,0.8-0.9,1.2-1.4 - C-1192.8,239.2-1191.8,239.8-1190.8,240.4z"/> - <path class="st5" - d="M-1167.7,249.2c-3.2-0.3-6.3-0.9-9.5-1.7c0-0.2,0.1-0.3,0.1-0.5C-1173.8,248.2-1170.6,248.9-1167.7,249.2z" - /> - <path class="st5" d="M-1190.7,234.8c1.5,0.9,2,2.9,1.1,4.5c-0.3,0.5-0.7,0.9-1.2,1.1c-1-0.6-2-1.3-3-2 - C-1192.8,237.2-1191.8,236-1190.7,234.8z"/> - <path class="st5" d="M-1118.8,97.1c5.6,2.1,11.9-0.8,14.1-6.5c2.2-5.7-0.6-12.1-6.3-14.2s-11.9,0.8-14.1,6.5 - S-1124.4,95-1118.8,97.1z M-1178.7,199.8c-2.7,7,0.8,14.9,7.7,17.5c6.9,2.6,14.7-1,17.3-8c2.7-7-0.8-14.9-7.7-17.5 - C-1168.2,189.1-1176,192.7-1178.7,199.8z M-1099.1,138.8c-1.6,4.1-2.4,8.3-2.4,12.4c-0.1,4.8,0.9,8,1.9,11.8 - c1.3,4.9,2.9,12,4.4,21.3c0.6,6.8,0.2,15.2-2.7,24.2c-1.1,3.4-3.3,10.3-8.8,17.5c-8.6,11.2-19.4,15.9-24.6,18.2 - c-1,0.4-3.6,1.5-7,2.6c0,0-14.5,4.4-29.2,2.6c0,0-0.1,0-0.1,0c-3-0.4-6.1-1.1-9.3-2.2c0.5-1.9,1-3.9,1.5-5.8l0,0 - c-2.5-0.8-5.3-1.8-8.2-3c-2.6-1.1-4.9-2.3-7-3.4c-1,1.2-2.1,2.4-3.1,3.7c-8.7-5.9-17.2-14.3-24.5-25c-0.7-1.4-1.3-2.8-1.8-4.3 - c-14.1-36.4-13.9-69.9,0.8-99.7c33-67,117.5-75,178.5-36.6c10.3,6.5,12.1,17.9,9.3,26.3c-3.3,10.2-12.3,16.4-22.8,15.7 - C-1077.5,113.4-1092.5,121.4-1099.1,138.8z M-1146.7,113.9c2.9-7.7-0.9-16.2-8.4-19c-7.5-2.8-16,1.1-18.9,8.7s0.9,16.2,8.4,19 - C-1158,125.5-1149.6,121.5-1146.7,113.9z M-1170.6,160.3c2.9-7.7-0.9-16.2-8.4-19c-7.5-2.8-16,1.1-18.9,8.7s0.9,16.2,8.4,19 - C-1182,171.9-1173.5,168-1170.6,160.3z"/> - <path class="st5" d="M-1179.9,246.8c0.1,0,0.1,0,0.2,0.1c0.8,0.3,1.7,0.5,2.5,0.7l0,0c-2.5-0.6-5.5-1.5-8.6-2.8 - c-1.9-0.8-3.6-1.6-5.1-2.4c-1.5-0.8-2.9-1.7-4.2-2.5c0.3,0.2,0.6,0.4,0.9,0.6c1,0.6,2.3,0.6,3.3,0c3.1,1.9,6.2,3.6,9.3,4.9 - C-1181.2,246-1180.6,246.5-1179.9,246.8z"/> - <path class="st5" d="M-1175.5,241.2c-0.5,1.9-1,3.9-1.5,5.8c-1.5-0.5-3-1.1-4.5-1.7c-0.4-0.7-0.5-1.6-0.2-2.5 - c0.5-1.7,2.3-2.7,4-2.2C-1177,240.8-1176.3,241-1175.5,241.2L-1175.5,241.2z"/> - <path class="st5" d="M-1183.7,238.2c2.9,1.2,5.6,2.2,8.2,3c-0.7-0.2-1.5-0.4-2.2-0.6c-1.7-0.5-3.5,0.5-4,2.2 - c-0.3,0.9-0.2,1.8,0.2,2.5c-3-1.3-6.2-2.9-9.3-4.9c0.5-0.3,0.9-0.7,1.2-1.1c0.9-1.5,0.4-3.6-1.1-4.5 - C-1188.6,236-1186.3,237.1-1183.7,238.2z"/> - <path class="st5" d="M-1218.3,213.5c7.2,10.7,15.8,19,24.5,25c-0.4,0.5-0.8,0.9-1.2,1.4C-1205.2,233.5-1213.1,224.4-1218.3,213.5 - z"/> - </g> - <g> - </g> - </g> - <g> - <path class="st6" d="M-1030.4,92.8l-98.1-42.8c-1-0.4-2.2-0.4-3.2,0l-98.1,42.8H-1030.4z"/> - <path class="st6" d="M-1128.5,49.9c-1-0.4-2.2-0.4-3.2,0l-10.5,4.6l90.1,38.3h21.8L-1128.5,49.9z"/> - <path class="st6" d="M-1211.4,237.6v-14.8c0-1.8,1.4-3.2,3.2-3.2h30.1c1.8,0,3.2,1.4,3.2,3.2v14.8H-1211.4z"/> - <path class="st6" d="M-1148.4,237.6v-14.8c0-1.8,1.4-3.2,3.2-3.2h30.1c1.8,0,3.2,1.4,3.2,3.2v14.8H-1148.4z"/> - <path class="st6" d="M-1085.4,237.6v-14.8c0-1.8,1.4-3.2,3.2-3.2h30.1c1.8,0,3.2,1.4,3.2,3.2v14.8H-1085.4z"/> - <g> - <path class="st6" d="M-1052.1,219.6h-12c1.8,0,3.2,1.4,3.2,3.2v14.8h12v-14.8C-1048.8,221-1050.3,219.6-1052.1,219.6 - L-1052.1,219.6z"/> - <path class="st6" d="M-1115.1,219.6h-12c1.8,0,3.2,1.4,3.2,3.2v14.8h12v-14.8C-1111.9,221-1113.3,219.6-1115.1,219.6 - L-1115.1,219.6z"/> - <path class="st6" d="M-1178.1,219.6h-12c1.8,0,3.2,1.4,3.2,3.2v14.8h12v-14.8C-1174.9,221-1176.3,219.6-1178.1,219.6 - L-1178.1,219.6z"/> - <path class="st6" - d="M-1038.4,110.7h-183.4c-4.4,0-8-3.6-8-8.1v-9.9h199.5v9.9C-1030.4,107.1-1034,110.7-1038.4,110.7z"/> - </g> - <path class="st6" d="M-1042.4,92.8v9.9c0,4.5-3.6,8.1-8,8.1h12c4.4,0,8-3.6,8-8.1v-9.9L-1042.4,92.8z"/> - <path class="st6" d="M-1038.4,231.6h-183.4c-4.4,0-8,3.6-8,8.1v7.9c0,1.1,0.9,2,2,2h195.5c1.1,0,2-0.9,2-2v-7.9 - C-1030.4,235.2-1034,231.6-1038.4,231.6z"/> - <path class="st6" d="M-1038.4,231.6h-12c4.4,0,8,3.6,8,8.1v7.9c0,1.1-0.9,2-2,2h12c1.1,0,2-0.9,2-2v-7.9 - C-1030.4,235.2-1034,231.6-1038.4,231.6z"/> - <g> - <path class="st6" d="M-1077.7,105.1h21.3v114.5h-21.3V105.1z"/> - <path class="st6" d="M-1068.5,219.6h12"/> - <g> - <path class="st6" d="M-1056.5,219.6V98.7h-12v120.9"/> - </g> - </g> - <ellipse class="st6" cx="-1130.1" cy="72.4" rx="9" ry="9.1"/> - <g> - <path class="st6" d="M-1140.8,105.1h21.3v114.5h-21.3V105.1z"/> - <path class="st6" d="M-1131.5,219.6h12"/> - <g> - <path class="st6" d="M-1119.5,219.6V98.7h-12v120.9"/> - </g> - </g> - <g> - <path class="st6" d="M-1203.8,105.1h21.3v114.5h-21.3V105.1z"/> - <path class="st6" d="M-1194.5,219.6h12"/> - <g> - <path class="st6" d="M-1182.5,219.6V98.7h-12v120.9"/> - </g> - </g> - </g> - <g> - <path class="st7" d="M-1147.2,73c-1.4-3.2-3.4-6.1-5.9-8.6c0,0,0,0,0,0c-5.5-4.1-12.4-5.8-19.2-5c-0.1,0-0.1,0-0.2,0 - c0,0-0.1,0-0.1,0c-19.8,9.2-36,24.7-46.3,43.9c9.1-6.5,21-12.5,34.9-17.1c10.8-3.7,22-6.2,33.5-7.5c1.6-0.2,3.2-0.4,4.9-0.5 - C-1146.1,76.4-1146.6,74.7-1147.2,73z"/> - <path class="st7" d="M-1135.2,87.1c0,0.3,0,0.6-0.1,0.8c0,23.8-24.9,52.3-47,77.4c-14.4,16.4-29.2,33.4-29.3,41.4c0,0,0,0,0,0v0 - c0,0.4-0.1,0.8-0.1,1.1c14.9,20.8,37.3,35,62.5,39.8c0.1-0.2,0.2-0.4,0.3-0.6c0,0,0,0,0,0c24.8-43.1,31.4-62.9,32.5-159.5 - C-1122.6,87.1-1128.9,86.9-1135.2,87.1z"/> - <path class="st7" d="M-1032.2,131.1c-1.4-1.7-2.9-3.4-4.4-5c-11.8-12.5-25.9-22.3-41.4-29c0,0.1,0,0.2,0,0.3 - c1.4,18.4,6.4,36.3,14.6,52.8c7.9,18.8,15.9,38.1,14.3,57.5C-1033.1,185.6-1027,157.9-1032.2,131.1z"/> - <path class="st7" d="M-1207.1,180c5.4-7.4,11.4-14.3,17.8-20.9c19.9-22.7,44.6-50.9,44.6-71.2v-0.2c-25.8,2.4-49.4,11-65,20.9 - c-0.1,0.1-0.2,0.1-0.3,0.2c-0.1,0.1-0.2,0.1-0.3,0.2c-7.4,4.8-13,9.9-16.1,14.7c-0.2,0.3-0.4,0.6-0.7,0.8c-2,7.6-3.1,15.3-3.3,23 - c0,0.3,0,0.7,0,1c0,0.4,0,0.7,0,1.1c0,8.6,1.1,16.9,3.1,24.9c0,0,0,0.1,0,0.1c0.2,0.7,0.4,1.3,0.5,2c0.1,0.2,0.1,0.4,0.2,0.5 - c0.1,0.5,0.3,0.9,0.4,1.4c0.1,0.4,0.2,0.7,0.3,1.1c0.1,0.2,0.1,0.4,0.2,0.6c1.9,5.8,4.3,11.4,7.3,16.9 - C-1216.1,192.1-1212.1,186.3-1207.1,180z"/> - <path class="st7" d="M-1128.1,249.5c24.1-0.6,47.2-9.9,64.9-26.2c10.7-22.3,1.1-45.2-9.1-69.5c-8.8-17.6-14-36.8-15.4-56.4 - c0-0.4,0-0.8,0-1.1c0-1,0.1-1.9,0.1-2.8c-6.3-2.1-12.8-3.6-19.4-4.7c-1,91.6-6.8,115.6-32.2,160.3c2.8,0.2,5.7,0.4,8.5,0.4 - c0,0,0,0,0,0C-1129.7,249.6-1128.9,249.6-1128.1,249.5z"/> - <path class="st7" d="M-1147.1,57c0,0,0.1,0.1,0.1,0.1c0.1,0.1,0.1,0.1,0.2,0.2c4.1,3.7,7.2,8.4,9.1,13.6c0.8,2.1,1.5,4.3,1.9,6.6 - c6.6-0.4,13.1-0.3,19.6,0.3c0-0.5,0-1,0-1.4c0.1-7.8,0.1-16.1,0.1-24.9c0-0.1,0-0.2,0-0.4c-4.7-0.7-9.5-1.1-14.3-1.1 - c-7.9,0-15.9,1-23.6,2.9C-1151.5,53.9-1149.2,55.3-1147.1,57z"/> - <path class="st7" d="M-1076.7,87.4c14,5.8,27.1,13.9,38.6,24.1c-6-14.4-15.4-27.2-27.2-37.3c-3.6,1.3-6.6,3.6-8.6,6.6 - c-0.9,1.3-1.6,2.9-2.3,4.7C-1076.4,86.1-1076.6,86.7-1076.7,87.4z"/> - <path class="st7" d="M-1106.7,79c7.1,1.1,14.1,2.8,20.9,5.1c0.3-1.1,0.7-2.1,1.1-3.1c0.4-1,0.9-2,1.4-2.9 - c2.7-5.1,6.3-8.3,9.7-10.3c-10-6.9-21.2-11.9-33-14.8C-1106.6,62.1-1106.7,70.8-1106.7,79z"/> - </g> -</g> - <g id="Capa_1"> - <g> - <g> - <path class="st8" d="M-1143.1,132.2h25.2v117.3h-25.2V132.2z"/> - <path class="st8" d="M-1132.1,249.5h14.3"/> - <g> - <path class="st8" d="M-1117.8,249.5V125.6h-14.3v123.9"/> - </g> - </g> - <g> - <g id="XMLID_4_"> - <g> - <path class="st8" d="M-1062.5,115.3c19,5,32.2,19.6,32.2,36.3c0,21.1-20.7,38.3-46.2,38.3c-9.2,0-17.9-2.3-25.6-6.8 - c-6.4,3.3-13.3,5.4-20.6,6.3c0.2,20,0.3,40,0.5,60c-5,0-10,0.1-15,0.1c-0.3-20-0.6-40.1-0.9-60.1c-7.3-0.9-14.2-3-20.6-6.3 - c-7.7,4.5-16.5,6.8-25.6,6.8c-25.5,0-46.2-17.2-46.2-38.3c0-16.8,13.2-31.3,32.2-36.3c-0.9-2.7-1.4-5.5-1.4-8.3 - c0-15.6,13.6-28.6,31.4-31.4c3.3-14.8,19-26,37.9-26c18.8,0,34.5,11.2,37.9,26C-1070.6,79-1056.5,97.4-1062.5,115.3z - M-1045.8,151.6c0-13.3-12.1-24.1-28.2-25.3c-5.7-0.4-8.9-5.6-6-9.6c9.4-13.1-2.3-28.9-19.7-28.9c-4.3,0-7.7-2.9-7.7-6.4 - c0-10.5-10.4-19.1-23.1-19.1c-12.7,0-23.1,8.6-23.1,19.1c0,3.5-3.4,6.4-7.7,6.4c-12.7,0-23.1,8.6-23.1,19.1 - c0,3.4,1.1,6.7,3.4,9.8c2.9,4-0.3,9.2-6,9.6c-16.1,1.1-28.2,12-28.2,25.3c0,14.1,13.8,25.5,30.8,25.5c9.2,0,16.1-3.7,20.2-6.7 - c2.8-2.1,7-2.2,9.9-0.3c4.9,3.2,10.3,5.3,16.1,6.3v-15.8l-28.5-23.6c-3-2.5-3-6.5,0-9c3-2.5,7.9-2.5,10.9,0l17.7,14.6v-20.2 - l-13.1-10.9c-3-2.5-3-6.5,0-9c3-2.5,7.9-2.5,10.9,0l10,8.2l10-8.2c3-2.5,7.9-2.5,10.9,0c3,2.5,3,6.5,0,9l-13.1,10.9v20.2 - l17.7-14.6c3-2.5,7.9-2.5,10.9,0c3,2.5,3,6.5,0,9l-28.5,23.6v15.8c5.7-1,11.2-3.1,16.1-6.3c2.9-1.9,7.1-1.8,9.9,0.3 - c4.1,3.1,11,6.7,20.2,6.7C-1059.6,177.1-1045.8,165.7-1045.8,151.6z"/> - <path class="st8" d="M-1074,126.4c16.1,1.1,28.2,12,28.2,25.3c0,14.1-13.8,25.5-30.8,25.5c-9.2,0-16.1-3.7-20.2-6.7 - c-2.8-2.1-7-2.2-9.9-0.3c-4.9,3.2-10.3,5.3-16.1,6.3v-15.8l28.5-23.6c3-2.5,3-6.5,0-9c-3-2.5-7.9-2.5-10.9,0l-17.7,14.6v-20.2 - l13.1-10.9c3-2.5,3-6.5,0-9c-3-2.5-7.9-2.5-10.9,0l-10,8.2l-10-8.2c-3-2.5-7.9-2.5-10.9,0c-3,2.5-3,6.5,0,9l13.1,10.9v20.2 - l-17.7-14.6c-3-2.5-7.9-2.5-10.9,0c-3,2.5-3,6.5,0,9l28.5,23.6v15.8c-5.7-1-11.2-3.1-16.1-6.3c-2.9-1.9-7.1-1.8-9.9,0.3 - c-4.1,3.1-11,6.7-20.2,6.7c-17,0-30.8-11.4-30.8-25.5c0-13.3,12.1-24.1,28.2-25.3c5.7-0.4,8.9-5.6,6-9.6 - c-2.2-3.1-3.4-6.4-3.4-9.8c0-10.5,10.4-19.1,23.1-19.1c4.3,0,7.7-2.9,7.7-6.4c0-10.5,10.4-19.1,23.1-19.1 - c12.7,0,23.1,8.6,23.1,19.1c0,3.5,3.4,6.4,7.7,6.4c17.5,0,29.2,15.8,19.7,28.9C-1082.8,120.8-1079.6,126-1074,126.4z"/> - </g> - <g> - </g> - </g> - </g> - </g> - <path class="st9" d="M-784.2,63.9c-3.1-2.3-7.2-2.2-8.2-2.2c-3.4,0.1-14.5,0-30.9,0c-8.1,0-16.2-0.1-24.3-0.1c-2.9,0-7.8,0-10.6,0 - c-14.6,0-25.6,0.1-30.9,0.1c-1.3,0-5.2-0.1-8.2,2.2c-3.8,2.9-3.3,6.9-3.3,7.3c0,39.4,0,78.7,0,118.1c3.7-0.1,7.5-0.1,11.2-0.2 - c-0.1-61.3,0-106.2,0.4-110.4c0.1-0.7,0.2-2.8,1.8-4.2c1.6-1.4,3.8-1.5,4.7-1.5c4.5-0.1,37.8-0.1,83.5,0c1.4,0,3.3,0.2,4.7,1.5 - c1.5,1.4,1.7,3.5,1.8,4.2c0.3,4.2,0.5,49.1,0.4,110.4c3.7,0.1,7.5,0.1,11.2,0.2c0-39.4,0-78.7,0-118.1 - C-780.9,70.8-780.5,66.8-784.2,63.9z"/> - <path class="st9" d="M-756.7,92.4c-3.1-2.3-7.2-2.2-8.2-2.2c-3.4,0.1-14.5,0-30.9,0c-8.1,0-16.2-0.1-24.3-0.1c-2.9,0-7.8,0-10.6,0 - c-14.6,0-25.6,0.1-30.9,0.1c-1.3,0-5.2-0.1-8.2,2.2c-3.8,2.9-3.3,6.9-3.3,7.3c0,39.4,0,78.7,0,118.1c3.7-0.1,7.5-0.1,11.2-0.2 - c-0.1-61.3,0-106.2,0.4-110.4c0.1-0.7,0.2-2.8,1.8-4.2c1.6-1.4,3.8-1.5,4.7-1.5c4.5-0.1,37.8-0.1,83.5,0c1.4,0,3.3,0.2,4.7,1.5 - c1.5,1.4,1.7,3.5,1.8,4.2c0.3,4.2,0.5,49.1,0.4,110.4c3.7,0.1,7.5,0.1,11.2,0.2c0-39.4,0-78.7,0-118.1 - C-753.3,99.3-752.9,95.3-756.7,92.4z"/> - <path class="st9" d="M-728.9,122.4c-3.1-2.3-7.2-2.2-8.2-2.2c-3.4,0.1-14.5,0-30.9,0c-8.1,0-16.2-0.1-24.3-0.1c-2.9,0-7.8,0-10.6,0 - c-14.6,0-25.6,0.1-30.9,0.1c-1.3,0-5.2-0.1-8.2,2.2c-3.8,2.9-3.3,6.9-3.3,7.3c0,39.4,0,78.7,0,118.1c3.7-0.1,7.5-0.1,11.2-0.2 - c-0.1-61.3,0-106.2,0.4-110.4c0.1-0.7,0.2-2.8,1.8-4.2c1.6-1.4,3.8-1.5,4.7-1.5c4.5-0.1,37.8-0.1,83.5,0c1.4,0,3.3,0.2,4.7,1.5 - c1.5,1.4,1.7,3.5,1.8,4.2c0.3,4.2,0.5,49.1,0.4,110.4c3.7,0.1,7.5,0.1,11.2,0.2c0-39.4,0-78.7,0-118.1 - C-725.6,129.3-725.1,125.3-728.9,122.4z"/> - <path class="st9" d="M-141.3,150.2"/> - <path class="st9" d="M-200.9,90.2l14.6,72.2l55.8,10.9c16.6-15,33.2-30,49.8-45c4.2-4.3,4-11.2-0.2-15.2 - c-4.3-4.1-11.5-3.7-15.5,1.1c-12.4,11.2-24.9,22.3-37.3,33.5c-10.6-2.2-21.2-4.4-31.9-6.5c-4.1-18.8-8.2-37.6-12.3-56.4 - C-185.4,86.7-193.2,88.5-200.9,90.2z"/> - <path class="st9" d="M-89.3,124.8"/> - <path class="st10" d="M-257.8,116.1l15.8,78.1l60.4,11.8c18-16.2,35.9-32.4,53.9-48.6c4.5-4.7,4.3-12.1-0.2-16.4 - c-4.7-4.4-12.5-4-16.8,1.2c-13.4,12.1-26.9,24.1-40.3,36.2c-11.5-2.4-23-4.7-34.4-7.1c-4.4-20.3-8.8-40.6-13.2-60.9 - C-241.1,112.3-249.4,114.2-257.8,116.1z"/> - <path class="st11" d="M100.3,80.9c-7.8,3.4-13,8.6-16.2,12.5c-13.2,20.6-26.5,41.3-39.7,61.9c-1,3.4-3.2,12.9,1,23.4 - c1.3,3.3,4.8,12.1,14.1,16.8c5,2.5,9.7,2.9,12.5,2.9l52.5-18.4c-4.3-0.8-8.7-1.5-13-2.3c-13.2,3.5-26.3,7.1-39.5,10.6 - c-1.9,0-7.6-0.3-12.6-4.5c-5-4.2-6.2-9.7-6.8-12.5c-1.4-6.5,0.1-12,1-14.5c12.2-19,24.3-38,36.5-56.9c2.3-3.3,6.3-8,12.6-11.3 - c6.1-3.1,11.7-3.6,14.6-3.7c12.3-0.7,47.7-0.5,95.3,1c0.7,0,6.3,0.3,9.8,5.3c3.8,5.3,1.8,11.1,1.6,11.7l-33.2,74.3 - c-2.7,5-6.1,12.9-6.4,23c-0.2,7.1-0.6,16.1,5.8,24c6.4,7.8,15.6,9.4,18.4,9.7c11.7,1.5,20.1-4.7,21.9-6c10.5-7.1,21-14.2,31.5-21.3 - c-4.2-0.5-8.4-1-12.7-1.5c-10.9,6-21.8,11.9-32.7,17.9c-2,0.4-9.6,1.4-15.2-3.2c-6.3-5.2-6-14.1-5.9-19.5c0.1-8.9,3-16,5.6-20.6 - c10.8-24.2,21.7-48.4,32.5-72.6c0.7-2.2,1.7-6.5,0.8-11.8c-0.3-1.8-1-5.8-4-9.8c-0.6-0.9-3.8-5.2-9.9-7.7 - c-4.5-1.8-8.4-1.9-10.7-1.7c-48.8-0.4-85.1,0.4-97.3,1.7C109.6,78.1,105.3,78.7,100.3,80.9z"/> - <path class="st12" d="M105.3,106c-6.9,10.1-8.2,11.7-8.3,15c0,1.3-0.2,5.6,2.6,8.4c2.2,2.3,5.1,2.4,19,1.2 - c14.3-1.2,17.5-1.9,19.7-4.8c2-2.6,2.2-5.5,2.2-6.8c0.3-4.8-2-8.4-10.3-19.6c-3.2-4.3-6.1-8.1-8.5-11.2c-0.5-0.1-0.9-0.1-1.4-0.2 - c-0.7,0-1.3,0-2,0c-0.9,1.1-2.1,2.6-3.5,4.5C111.8,96.5,109.9,99.4,105.3,106z"/> - <path class="st12" d="M119.9,97.9c-8.2,11.7-14.1,20.1-15.2,21.7c-0.1,0.1-0.5,0.6-0.6,1.4c-0.3,1.2,0,2.8,0.9,3.2 - c0.2,0.1,0.4,0.1,0.5,0.1c13.1-0.2,13.6-0.3,14.5-0.4c9.1-1.2,12.3-1.1,13.2-3.4c0-0.1,0.2-0.5,0.2-1.2 - C133.4,114,122.3,100.7,119.9,97.9z"/> - <path class="st12" d="M136.9,105.7c-7.4,10.8-8.7,12.5-8.9,16.1c0,1.4-0.2,6,2.7,9c2.4,2.5,5.5,2.6,20.3,1.3 - c15.3-1.3,18.7-2,21.1-5.1c2.1-2.8,2.3-5.9,2.4-7.3c0.3-5.1-2.1-8.9-11-20.9c-3.4-4.6-6.5-8.6-9.1-12c-0.5-0.1-1-0.1-1.5-0.2 - c-0.7,0-1.4,0-2.1,0c-0.9,1.2-2.2,2.8-3.8,4.8C143.8,95.5,141.7,98.6,136.9,105.7z"/> - <path class="st12" d="M152.5,97c-8.8,12.5-15.1,21.5-16.3,23.2c-0.1,0.1-0.5,0.7-0.7,1.5c-0.3,1.3,0.1,3,1,3.5 - c0.2,0.1,0.5,0.1,0.5,0.1c14-0.3,14.5-0.3,15.5-0.5c9.7-1.3,13.2-1.2,14.1-3.6c0-0.1,0.2-0.6,0.2-1.3C166.9,114.2,155,100,152.5,97 - z"/> - <path class="st12" d="M172,105.5c-7.8,11.4-9.2,13.2-9.3,16.9c-0.1,1.5-0.2,6.3,2.9,9.5c2.5,2.6,5.8,2.7,21.3,1.4 - c16.1-1.4,19.7-2.1,22.2-5.4c2.2-2.9,2.4-6.2,2.5-7.7c0.3-5.4-2.2-9.4-11.6-22.1c-3.6-4.8-6.8-9.1-9.5-12.7 - c-0.5-0.1-1.1-0.1-1.6-0.2c-0.7,0-1.5,0-2.2,0c-1,1.2-2.4,2.9-4,5.1C179.3,94.8,177.1,98.1,172,105.5z"/> - <path class="st12" d="M188.4,96.4c-9.2,13.1-15.9,22.7-17.1,24.4c-0.1,0.1-0.5,0.7-0.7,1.6c-0.3,1.4,0.1,3.2,1.1,3.7 - c0.3,0.1,0.5,0.1,0.6,0.1c14.8-0.3,15.3-0.3,16.3-0.5c10.2-1.3,13.9-1.3,14.9-3.8c0.1-0.1,0.2-0.6,0.2-1.3 - C203.6,114.5,191.1,99.5,188.4,96.4z"/> - <g> - <g> - <path class="st1" d="M864.1,135.2v-14.6h-9.8V90.3l-17.1-17.1l-17.1,17.1v30.3H808V90.3l-17.1-17.1l-17.1,17.1v30.3h-12.2V90.3 - l-17.1-17.1l-17.1,17.1v30.3h-9.8v14.6h9.8v46.4h-9.8v14.6h9.8v24.4h34.2v-24.4h12.2v24.4H808v-24.4h12.2v24.4h34.2v-24.4h9.8 - v-14.6h-9.8v-46.4H864.1L864.1,135.2z M854.4,125.5h4.9v4.9h-4.9V125.5z M727.5,191.4h-4.9v-4.9h4.9V191.4z M727.5,130.4h-4.9 - v-4.9h4.9V130.4z M756.7,215.8h-24.4V92.3l12.2-12.2l12.2,12.2V215.8z M773.8,191.4h-12.2v-4.9h12.2V191.4z M773.8,181.6h-12.2 - v-46.4h12.2V181.6z M773.8,130.4h-12.2v-4.9h12.2V130.4z M803.1,215.8h-24.4V92.3l12.2-12.2l12.2,12.2V215.8z M820.2,191.4H808 - v-4.9h12.2V191.4z M820.2,181.6H808v-46.4h12.2V181.6z M820.2,130.4H808v-4.9h12.2V130.4z M849.5,181.6v34.2h-24.4V92.3 - l12.2-12.2l12.2,12.2V181.6z M859.2,186.5v4.9h-4.9v-4.9H859.2z"/> - </g> - </g> -</g> -</svg> +<?xml version="1.0" encoding="UTF-8" standalone="yes"?> +<svg xmlns="http://www.w3.org/2000/svg" width="375px" height="375px" viewBox="0 0 375 375" version="1.1"> + <g id="surface1"> + <path style="fill:none;stroke-width:7.155;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M -200.9 90.2 L -186.3 162.4 L -130.5 173.3 C -113.9 158.3 -97.3 143.3 -80.7 128.3 C -76.5 124 -76.7 117.1 -80.9 113.1 C -85.2 109 -92.4 109.4 -96.4 114.2 C -108.8 125.4 -121.3 136.5 -133.7 147.7 C -144.3 145.5 -154.9 143.3 -165.6 141.2 C -169.7 122.4 -173.8 103.6 -177.9 84.8 C -185.4 86.7 -193.2 88.5 -200.9 90.2 Z M -200.9 90.2 " transform="matrix(1.25,0,0,1.25,0,0)"/> + <path style="fill:none;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0.392157%,0.784314%,0.784314%);stroke-opacity:1;stroke-miterlimit:10;" d="M 100.3 80.9 C 92.5 84.3 87.3 89.5 84.1 93.4 C 70.9 114 57.6 134.7 44.4 155.3 C 43.4 158.7 41.2 168.2 45.4 178.7 C 46.7 182 50.2 190.8 59.5 195.5 C 64.5 198 69.2 198.4 72 198.4 L 124.5 180 C 120.2 179.2 115.8 178.5 111.5 177.7 C 98.3 181.2 85.2 184.8 72 188.3 C 70.1 188.3 64.4 188 59.4 183.8 C 54.4 179.6 53.2 174.1 52.6 171.3 C 51.2 164.8 52.7 159.3 53.6 156.8 C 65.8 137.8 77.9 118.8 90.1 99.9 C 92.4 96.6 96.4 91.9 102.7 88.6 C 108.8 85.5 114.4 85 117.3 84.9 C 129.6 84.2 165 84.4 212.6 85.9 C 213.3 85.9 218.9 86.2 222.4 91.2 C 226.2 96.5 224.2 102.3 224 102.9 L 190.8 177.2 C 188.1 182.2 184.7 190.1 184.4 200.2 C 184.2 207.3 183.8 216.3 190.2 224.2 C 196.6 232 205.8 233.6 208.6 233.9 C 220.3 235.4 228.7 229.2 230.5 227.9 C 241 220.8 251.5 213.7 262 206.6 C 257.8 206.1 253.6 205.6 249.3 205.1 C 238.4 211.1 227.5 217 216.6 223 C 214.6 223.4 207 224.4 201.4 219.8 C 195.1 214.6 195.4 205.7 195.5 200.3 C 195.6 191.4 198.5 184.3 201.1 179.7 C 211.9 155.5 222.8 131.3 233.6 107.1 C 234.3 104.9 235.3 100.6 234.4 95.3 C 234.1 93.5 233.4 89.5 230.4 85.5 C 229.8 84.6 226.6 80.3 220.5 77.8 C 216 76 212.1 75.9 209.8 76.1 C 161 75.7 124.7 76.5 112.5 77.8 C 109.6 78.1 105.3 78.7 100.3 80.9 Z M 100.3 80.9 " transform="matrix(1.25,0,0,1.25,0,0)"/> + <path style="fill:none;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 105.3 106 C 98.4 116.1 97.1 117.7 97 121 C 97 122.3 96.8 126.6 99.6 129.4 C 101.8 131.7 104.7 131.8 118.6 130.6 C 132.9 129.4 136.1 128.7 138.3 125.8 C 140.3 123.2 140.5 120.3 140.5 119 C 140.8 114.2 138.5 110.6 130.2 99.4 C 127 95.1 124.1 91.3 121.7 88.2 C 121.2 88.1 120.8 88.1 120.3 88 C 119.6 88 119 88 118.3 88 C 117.4 89.1 116.2 90.6 114.8 92.5 C 111.8 96.5 109.9 99.4 105.3 106 Z M 105.3 106 " transform="matrix(1.25,0,0,1.25,0,0)"/> + <path style="fill:none;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 119.9 97.9 C 111.7 109.6 105.8 118 104.7 119.6 C 104.6 119.7 104.2 120.2 104.1 121 C 103.8 122.2 104.1 123.8 105 124.2 C 105.2 124.3 105.4 124.3 105.5 124.3 C 118.6 124.1 119.1 124 120 123.9 C 129.1 122.7 132.3 122.8 133.2 120.5 C 133.2 120.4 133.4 120 133.4 119.3 C 133.4 114 122.3 100.7 119.9 97.9 Z M 119.9 97.9 " transform="matrix(1.25,0,0,1.25,0,0)"/> + <path style="fill:none;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 136.9 105.7 C 129.5 116.5 128.2 118.2 128 121.8 C 128 123.2 127.8 127.8 130.7 130.8 C 133.1 133.3 136.2 133.4 151 132.1 C 166.3 130.8 169.7 130.1 172.1 127 C 174.2 124.2 174.4 121.1 174.5 119.7 C 174.8 114.6 172.4 110.8 163.5 98.8 C 160.1 94.2 157 90.2 154.4 86.8 C 153.9 86.7 153.4 86.7 152.9 86.6 C 152.2 86.6 151.5 86.6 150.8 86.6 C 149.9 87.8 148.6 89.4 147 91.4 C 143.8 95.5 141.7 98.6 136.9 105.7 Z M 136.9 105.7 " transform="matrix(1.25,0,0,1.25,0,0)"/> + <path style="fill:none;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 152.5 97 C 143.7 109.5 137.4 118.5 136.2 120.2 C 136.1 120.3 135.7 120.9 135.5 121.7 C 135.2 123 135.6 124.7 136.5 125.2 C 136.7 125.3 137 125.3 137 125.3 C 151 125 151.5 125 152.5 124.8 C 162.2 123.5 165.7 123.6 166.6 121.2 C 166.6 121.1 166.8 120.6 166.8 119.9 C 166.9 114.2 155 100 152.5 97 Z M 152.5 97 " transform="matrix(1.25,0,0,1.25,0,0)"/> + <path style="fill:none;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 172 105.5 C 164.2 116.9 162.8 118.7 162.7 122.4 C 162.6 123.9 162.5 128.7 165.6 131.9 C 168.1 134.5 171.4 134.6 186.9 133.3 C 203 131.9 206.6 131.2 209.1 127.9 C 211.3 125 211.5 121.7 211.6 120.2 C 211.9 114.8 209.4 110.8 200 98.1 C 196.4 93.3 193.2 89 190.5 85.4 C 190 85.3 189.4 85.3 188.9 85.2 C 188.2 85.2 187.4 85.2 186.7 85.2 C 185.7 86.4 184.3 88.1 182.7 90.3 C 179.3 94.8 177.1 98.1 172 105.5 Z M 172 105.5 " transform="matrix(1.25,0,0,1.25,0,0)"/> + <path style="fill:none;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 188.4 96.4 C 179.2 109.5 172.5 119.1 171.3 120.8 C 171.2 120.9 170.8 121.5 170.6 122.4 C 170.3 123.8 170.7 125.6 171.7 126.1 C 172 126.2 172.2 126.2 172.3 126.2 C 187.1 125.9 187.6 125.9 188.6 125.7 C 198.8 124.4 202.5 124.4 203.5 121.9 C 203.6 121.8 203.7 121.3 203.7 120.6 C 203.6 114.5 191.1 99.5 188.4 96.4 Z M 188.4 96.4 " transform="matrix(1.25,0,0,1.25,0,0)"/> + </g> +</svg> \ No newline at end of file diff --git a/assets/layers/bike_parking/shed.svg b/assets/layers/bike_parking/shed.svg index 04f7db0d7e..5c3ec483e1 100644 --- a/assets/layers/bike_parking/shed.svg +++ b/assets/layers/bike_parking/shed.svg @@ -1,37 +1,6 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Generator: Adobe Illustrator 24.2.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> -<svg version="1.1" xmlns="http://www.w3.org/2000/svg" x="0px" y="0px" - viewBox="0 0 300 300" style="enable-background:new 0 0 300 300;" xml:space="preserve"> -<style type="text/css"> - .st0{fill:#0181C2;} - .st1{fill:#020203;} - .st2{fill:none;stroke:#000000;stroke-width:4.6057;} - .st3{fill:none;stroke:#000000;stroke-width:2.3029;} - .st4{fill:#FFFFFF;stroke:#000000;stroke-width:4;stroke-miterlimit:10;} - .st5{fill:#E74436;} - .st6{fill:#FCC407;} - .st7{fill:#0682C2;} - .st8{fill:#73B254;} - .st9{fill:#FFFFFF;stroke:#000000;stroke-width:7.155;stroke-miterlimit:10;} - .st10{fill:#FFFFFF;stroke:#000000;stroke-width:7.7355;stroke-miterlimit:10;} - .st11{fill:none;stroke:#010202;stroke-width:4;stroke-miterlimit:10;} - .st12{fill:none;stroke:#000000;stroke-width:4;stroke-miterlimit:10;} -</style> - <g id="Laag_1"> -</g> - <g id="Isolatiemodus"> -</g> - <g id="Capa_1"> - <g> - <g> - <path class="st1" d="M224.1,135.2v-14.6h-9.8V90.3l-17.1-17.1l-17.1,17.1v30.3H168V90.3l-17.1-17.1l-17.1,17.1v30.3h-12.2V90.3 - l-17.1-17.1L87.5,90.3v30.3h-9.8v14.6h9.8v46.4h-9.8v14.6h9.8v24.4h34.2v-24.4h12.2v24.4H168v-24.4h12.2v24.4h34.2v-24.4h9.8 - v-14.6h-9.8v-46.4H224.1L224.1,135.2z M214.4,125.5h4.9v4.9h-4.9V125.5z M87.5,191.4h-4.9v-4.9h4.9V191.4z M87.5,130.4h-4.9v-4.9 - h4.9V130.4z M116.7,215.8H92.3V92.3l12.2-12.2l12.2,12.2V215.8z M133.8,191.4h-12.2v-4.9h12.2V191.4z M133.8,181.6h-12.2v-46.4 - h12.2V181.6z M133.8,130.4h-12.2v-4.9h12.2V130.4z M163.1,215.8h-24.4V92.3l12.2-12.2l12.2,12.2V215.8z M180.2,191.4H168v-4.9 - h12.2V191.4z M180.2,181.6H168v-46.4h12.2V181.6z M180.2,130.4H168v-4.9h12.2V130.4z M209.5,181.6v34.2h-24.4V92.3l12.2-12.2 - l12.2,12.2V181.6z M219.2,186.5v4.9h-4.9v-4.9H219.2z"/> - </g> - </g> -</g> -</svg> +<?xml version="1.0" encoding="UTF-8" standalone="yes"?> +<svg xmlns="http://www.w3.org/2000/svg" width="375px" height="375px" viewBox="0 0 375 375" version="1.1"> + <g id="surface1"> + <path style=" stroke:none;fill-rule:nonzero;fill:rgb(0.784314%,0.784314%,1.176471%);fill-opacity:1;" d="M 280.125 169 L 280.125 150.75 L 267.875 150.75 L 267.875 112.875 L 246.5 91.5 L 225.125 112.875 L 225.125 150.75 L 210 150.75 L 210 112.875 L 188.625 91.5 L 167.25 112.875 L 167.25 150.75 L 152 150.75 L 152 112.875 L 130.625 91.5 L 109.375 112.875 L 109.375 150.75 L 97.125 150.75 L 97.125 169 L 109.375 169 L 109.375 227 L 97.125 227 L 97.125 245.25 L 109.375 245.25 L 109.375 275.75 L 152.125 275.75 L 152.125 245.25 L 167.375 245.25 L 167.375 275.75 L 210 275.75 L 210 245.25 L 225.25 245.25 L 225.25 275.75 L 268 275.75 L 268 245.25 L 280.25 245.25 L 280.25 227 L 268 227 L 268 169 Z M 268 156.875 L 274.125 156.875 L 274.125 163 L 268 163 Z M 109.375 239.25 L 103.25 239.25 L 103.25 233.125 L 109.375 233.125 Z M 109.375 163 L 103.25 163 L 103.25 156.875 L 109.375 156.875 Z M 145.875 269.75 L 115.375 269.75 L 115.375 115.375 L 130.625 100.125 L 145.875 115.375 Z M 167.25 239.25 L 152 239.25 L 152 233.125 L 167.25 233.125 Z M 167.25 227 L 152 227 L 152 169 L 167.25 169 Z M 167.25 163 L 152 163 L 152 156.875 L 167.25 156.875 Z M 203.875 269.75 L 173.375 269.75 L 173.375 115.375 L 188.625 100.125 L 203.875 115.375 Z M 225.25 239.25 L 210 239.25 L 210 233.125 L 225.25 233.125 Z M 225.25 227 L 210 227 L 210 169 L 225.25 169 Z M 225.25 163 L 210 163 L 210 156.875 L 225.25 156.875 Z M 261.875 227 L 261.875 269.75 L 231.375 269.75 L 231.375 115.375 L 246.625 100.125 L 261.875 115.375 Z M 274 233.125 L 274 239.25 L 267.875 239.25 L 267.875 233.125 Z M 274 233.125 "/> + </g> +</svg> \ No newline at end of file diff --git a/assets/layers/bike_parking/staple.svg b/assets/layers/bike_parking/staple.svg index e66e7fdbcf..deec75798d 100644 --- a/assets/layers/bike_parking/staple.svg +++ b/assets/layers/bike_parking/staple.svg @@ -1,41 +1,8 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Generator: Adobe Illustrator 24.2.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> -<svg version="1.1" xmlns="http://www.w3.org/2000/svg" x="0px" y="0px" - viewBox="0 0 300 300" style="enable-background:new 0 0 300 300;" xml:space="preserve"> -<style type="text/css"> - .st0{fill:#0181C2;} - .st1{fill:#020203;} - .st2{fill:none;stroke:#000000;stroke-width:4.6057;} - .st3{fill:none;stroke:#000000;stroke-width:2.3029;} - .st4{fill:#FFFFFF;stroke:#000000;stroke-width:4;stroke-miterlimit:10;} - .st5{fill:#E74436;} - .st6{fill:#FCC407;} - .st7{fill:#0682C2;} - .st8{fill:#73B254;} - .st9{fill:#FFFFFF;stroke:#000000;stroke-width:7.155;stroke-miterlimit:10;} - .st10{fill:#FFFFFF;stroke:#000000;stroke-width:7.7355;stroke-miterlimit:10;} - .st11{fill:none;stroke:#010202;stroke-width:4;stroke-miterlimit:10;} - .st12{fill:none;stroke:#000000;stroke-width:4;stroke-miterlimit:10;} -</style> - <g id="Laag_1"> -</g> - <g id="Isolatiemodus"> -</g> - <g id="Capa_1"> - <path class="st9" d="M175.8,63.9c-3.1-2.3-7.2-2.2-8.2-2.2c-3.4,0.1-14.5,0-30.9,0c-8.1,0-16.2-0.1-24.3-0.1c-2.9,0-7.8,0-10.6,0 - c-14.6,0-25.6,0.1-30.9,0.1c-1.3,0-5.2-0.1-8.2,2.2c-3.8,2.9-3.3,6.9-3.3,7.3c0,39.4,0,78.7,0,118.1c3.7-0.1,7.5-0.1,11.2-0.2 - c-0.1-61.3,0-106.2,0.4-110.4c0.1-0.7,0.2-2.8,1.8-4.2c1.6-1.4,3.8-1.5,4.7-1.5c4.5-0.1,37.8-0.1,83.5,0c1.4,0,3.3,0.2,4.7,1.5 - c1.5,1.4,1.7,3.5,1.8,4.2c0.3,4.2,0.5,49.1,0.4,110.4c3.7,0.1,7.5,0.1,11.2,0.2c0-39.4,0-78.7,0-118.1 - C179.1,70.8,179.5,66.8,175.8,63.9z"/> - <path class="st9" d="M203.3,92.4c-3.1-2.3-7.2-2.2-8.2-2.2c-3.4,0.1-14.5,0-30.9,0c-8.1,0-16.2-0.1-24.3-0.1c-2.9,0-7.8,0-10.6,0 - c-14.6,0-25.6,0.1-30.9,0.1c-1.3,0-5.2-0.1-8.2,2.2c-3.8,2.9-3.3,6.9-3.3,7.3c0,39.4,0,78.7,0,118.1c3.7-0.1,7.5-0.1,11.2-0.2 - c-0.1-61.3,0-106.2,0.4-110.4c0.1-0.7,0.2-2.8,1.8-4.2c1.6-1.4,3.8-1.5,4.7-1.5c4.5-0.1,37.8-0.1,83.5,0c1.4,0,3.3,0.2,4.7,1.5 - c1.5,1.4,1.7,3.5,1.8,4.2c0.3,4.2,0.5,49.1,0.4,110.4c3.7,0.1,7.5,0.1,11.2,0.2c0-39.4,0-78.7,0-118.1 - C206.7,99.3,207.1,95.3,203.3,92.4z"/> - <path class="st9" d="M231.1,122.4c-3.1-2.3-7.2-2.2-8.2-2.2c-3.4,0.1-14.5,0-30.9,0c-8.1,0-16.2-0.1-24.3-0.1c-2.9,0-7.8,0-10.6,0 - c-14.6,0-25.6,0.1-30.9,0.1c-1.3,0-5.2-0.1-8.2,2.2c-3.8,2.9-3.3,6.9-3.3,7.3c0,39.4,0,78.7,0,118.1c3.7-0.1,7.5-0.1,11.2-0.2 - c-0.1-61.3,0-106.2,0.4-110.4c0.1-0.7,0.2-2.8,1.8-4.2c1.6-1.4,3.8-1.5,4.7-1.5c4.5-0.1,37.8-0.1,83.5,0c1.4,0,3.3,0.2,4.7,1.5 - c1.5,1.4,1.7,3.5,1.8,4.2c0.3,4.2,0.5,49.1,0.4,110.4c3.7,0.1,7.5,0.1,11.2,0.2c0-39.4,0-78.7,0-118.1 - C234.4,129.3,234.9,125.3,231.1,122.4z"/> -</g> -</svg> +<?xml version="1.0" encoding="UTF-8" standalone="yes"?> +<svg xmlns="http://www.w3.org/2000/svg" width="375px" height="375px" viewBox="0 0 375 375" version="1.1"> + <g id="surface1"> + <path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:7.155;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 175.8 63.9 C 172.7 61.6 168.6 61.7 167.6 61.7 C 164.2 61.8 153.1 61.7 136.7 61.7 C 128.6 61.7 120.5 61.6 112.4 61.6 C 109.5 61.6 104.6 61.6 101.8 61.6 C 87.2 61.6 76.2 61.7 70.9 61.7 C 69.6 61.7 65.7 61.6 62.7 63.9 C 58.9 66.8 59.4 70.8 59.4 71.2 C 59.4 110.6 59.4 149.9 59.4 189.3 C 63.1 189.2 66.9 189.2 70.6 189.1 C 70.5 127.8 70.6 82.9 71 78.7 C 71.1 78 71.2 75.9 72.8 74.5 C 74.4 73.1 76.6 73 77.5 73 C 82 72.9 115.3 72.9 161 73 C 162.4 73 164.3 73.2 165.7 74.5 C 167.2 75.9 167.4 78 167.5 78.7 C 167.8 82.9 168 127.8 167.9 189.1 C 171.6 189.2 175.4 189.2 179.1 189.3 C 179.1 149.9 179.1 110.6 179.1 71.2 C 179.1 70.8 179.5 66.8 175.8 63.9 Z M 175.8 63.9 " transform="matrix(1.25,0,0,1.25,0,0)"/> + <path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:7.155;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 203.3 92.4 C 200.2 90.1 196.1 90.2 195.1 90.2 C 191.7 90.3 180.6 90.2 164.2 90.2 C 156.1 90.2 148 90.1 139.9 90.1 C 137 90.1 132.1 90.1 129.3 90.1 C 114.7 90.1 103.7 90.2 98.4 90.2 C 97.1 90.2 93.2 90.1 90.2 92.4 C 86.4 95.3 86.9 99.3 86.9 99.7 C 86.9 139.1 86.9 178.4 86.9 217.8 C 90.6 217.7 94.4 217.7 98.1 217.6 C 98 156.3 98.1 111.4 98.5 107.2 C 98.6 106.5 98.7 104.4 100.3 103 C 101.9 101.6 104.1 101.5 105 101.5 C 109.5 101.4 142.8 101.4 188.5 101.5 C 189.9 101.5 191.8 101.7 193.2 103 C 194.7 104.4 194.9 106.5 195 107.2 C 195.3 111.4 195.5 156.3 195.4 217.6 C 199.1 217.7 202.9 217.7 206.6 217.8 C 206.6 178.4 206.6 139.1 206.6 99.7 C 206.7 99.3 207.1 95.3 203.3 92.4 Z M 203.3 92.4 " transform="matrix(1.25,0,0,1.25,0,0)"/> + <path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:7.155;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 231.1 122.4 C 228 120.1 223.9 120.2 222.9 120.2 C 219.5 120.3 208.4 120.2 192 120.2 C 183.9 120.2 175.8 120.1 167.7 120.1 C 164.8 120.1 159.9 120.1 157.1 120.1 C 142.5 120.1 131.5 120.2 126.2 120.2 C 124.9 120.2 121 120.1 118 122.4 C 114.2 125.3 114.7 129.3 114.7 129.7 C 114.7 169.1 114.7 208.4 114.7 247.8 C 118.4 247.7 122.2 247.7 125.9 247.6 C 125.8 186.3 125.9 141.4 126.3 137.2 C 126.4 136.5 126.5 134.4 128.1 133 C 129.7 131.6 131.9 131.5 132.8 131.5 C 137.3 131.4 170.6 131.4 216.3 131.5 C 217.7 131.5 219.6 131.7 221 133 C 222.5 134.4 222.7 136.5 222.8 137.2 C 223.1 141.4 223.3 186.3 223.2 247.6 C 226.9 247.7 230.7 247.7 234.4 247.8 C 234.4 208.4 234.4 169.1 234.4 129.7 C 234.4 129.3 234.9 125.3 231.1 122.4 Z M 231.1 122.4 " transform="matrix(1.25,0,0,1.25,0,0)"/> + </g> +</svg> \ No newline at end of file diff --git a/assets/layers/bike_parking/two_tier.svg b/assets/layers/bike_parking/two_tier.svg index f17bbf8d20..8a9923be4f 100644 --- a/assets/layers/bike_parking/two_tier.svg +++ b/assets/layers/bike_parking/two_tier.svg @@ -1,52 +1,14 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Generator: Adobe Illustrator 24.2.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> -<svg version="1.1" xmlns="http://www.w3.org/2000/svg" x="0px" y="0px" - viewBox="0 0 300 300" style="enable-background:new 0 0 300 300;" xml:space="preserve"> -<style type="text/css"> - .st0{fill:#0181C2;} - .st1{fill:#020203;} - .st2{fill:none;stroke:#000000;stroke-width:4.6057;} - .st3{fill:none;stroke:#000000;stroke-width:2.3029;} - .st4{fill:#FFFFFF;stroke:#000000;stroke-width:4;stroke-miterlimit:10;} - .st5{fill:#E74436;} - .st6{fill:#FCC407;} - .st7{fill:#0682C2;} - .st8{fill:#73B254;} - .st9{fill:#FFFFFF;stroke:#000000;stroke-width:7.155;stroke-miterlimit:10;} - .st10{fill:#FFFFFF;stroke:#000000;stroke-width:7.7355;stroke-miterlimit:10;} - .st11{fill:none;stroke:#010202;stroke-width:4;stroke-miterlimit:10;} - .st12{fill:none;stroke:#000000;stroke-width:4;stroke-miterlimit:10;} -</style> - <g id="Laag_1"> - <g> - <path class="st2" d="M133.7,168.1h15h13.9h19.3l19.3,42.8h-35.4 M124,156h7.5h7.5l-5.4,12.1 M115.4,210.9l11.8-28.6l4.3-8.8 - l2.1-5.5 M150,194.4l-6.1-9.9l-10.2-16.5 M150,194.4l4.1,6.6 M178.7,169.2l6.4-13.2l-21.4,48.3l10.7-24.2 M150,194.4l7.3,12.1"/> - <path class="st3" d="M160.6,202.5c3.5,0,6.4,2.9,6.4,6.5c0,3.6-2.9,6.5-6.4,6.5c-3.5,0-6.4-2.9-6.4-6.5 - C154.3,205.4,157.1,202.5,160.6,202.5z"/> - <path class="st2" d="M201.4,181.7c13.5,0,24.5,11.2,24.5,25.2c0,13.9-11,25.2-24.5,25.2c-13.5,0-24.5-11.2-24.5-25.2 - C176.9,192.9,187.9,181.7,201.4,181.7z"/> - </g> - <g> - <circle class="st2" cx="117.6" cy="209" r="25.3"/> - </g> - <g> - <path class="st2" d="M149.8,80.7h15h13.9H198l19.3,42.8h-35.4 M140.1,68.6h7.5h7.5l-5.4,12.1 M131.5,123.5L143.3,95l4.3-8.8 - l2.1-5.5 M166.1,107.1l-6.1-9.9l-10.2-16.5 M166.1,107.1l4.1,6.6 M194.8,81.8l6.4-13.2L179.8,117l10.7-24.2 M166.1,107.1l7.3,12.1 - "/> - <path class="st3" d="M176.7,115.1c3.5,0,6.4,2.9,6.4,6.5c0,3.6-2.9,6.5-6.4,6.5c-3.5,0-6.4-2.9-6.4-6.5 - C170.4,118,173.3,115.1,176.7,115.1z"/> - <path class="st2" d="M217.5,94.3c13.5,0,24.5,11.2,24.5,25.2c0,13.9-11,25.2-24.5,25.2c-13.5,0-24.5-11.2-24.5-25.2 - C193,105.5,204,94.3,217.5,94.3z"/> - </g> - <g> - <circle class="st2" cx="133.7" cy="121.6" r="25.3"/> - </g> - <path class="st4" d="M212.3,229.9c-45.9,0-91.8-0.1-137.7-0.1c10.4-26.7,20.8-53.3,31.2-80c41.4-0.2,82.7-0.5,124.1-0.7 - c1.2-2.6,2.4-5.2,3.6-7.8c-44.9,0.1-89.7,0.2-134.6,0.3c-12.7,32.6-25.3,65.1-38,97.7c49,0,97.9,0.1,146.9,0.1 - C209.3,236.2,210.8,233,212.3,229.9z"/> -</g> - <g id="Isolatiemodus"> -</g> - <g id="Capa_1"> -</g> -</svg> +<?xml version="1.0" encoding="UTF-8" standalone="yes"?> +<svg xmlns="http://www.w3.org/2000/svg" width="375px" height="375px" viewBox="0 0 375 375" version="1.1"> + <g id="surface1"> + <path style="fill:none;stroke-width:4.6057;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:4;" d="M 133.7 168.1 L 181.9 168.1 L 201.2 210.9 L 165.8 210.9 M 124 156 L 139 156 L 133.6 168.1 M 115.4 210.9 L 127.2 182.3 L 131.5 173.5 L 133.6 168 M 150 194.4 L 143.9 184.5 L 133.7 168 M 150 194.4 L 154.1 201 M 178.7 169.2 L 185.1 156 L 163.7 204.3 L 174.4 180.1 M 150 194.4 L 157.3 206.5 " transform="matrix(1.25,0,0,1.25,0,0)"/> + <path style="fill:none;stroke-width:2.3029;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:4;" d="M 160.6 202.5 C 164.1 202.5 167 205.4 167 209 C 167 212.6 164.1 215.5 160.6 215.5 C 157.1 215.5 154.2 212.6 154.2 209 C 154.3 205.4 157.1 202.5 160.6 202.5 Z M 160.6 202.5 " transform="matrix(1.25,0,0,1.25,0,0)"/> + <path style="fill:none;stroke-width:4.6057;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:4;" d="M 201.4 181.7 C 214.9 181.7 225.9 192.9 225.9 206.9 C 225.9 220.8 214.9 232.1 201.4 232.1 C 187.9 232.1 176.9 220.9 176.9 206.9 C 176.9 192.9 187.9 181.7 201.4 181.7 Z M 201.4 181.7 " transform="matrix(1.25,0,0,1.25,0,0)"/> + <path style="fill:none;stroke-width:4.6057;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:4;" d="M 142.9 209 C 142.9 222.971875 131.571875 234.3 117.6 234.3 C 103.628125 234.3 92.3 222.971875 92.3 209 C 92.3 195.028125 103.628125 183.7 117.6 183.7 C 131.571875 183.7 142.9 195.028125 142.9 209 Z M 142.9 209 " transform="matrix(1.25,0,0,1.25,0,0)"/> + <path style="fill:none;stroke-width:4.6057;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:4;" d="M 149.8 80.7 L 198 80.7 L 217.3 123.5 L 181.9 123.5 M 140.1 68.6 L 155.1 68.6 L 149.7 80.7 M 131.5 123.5 L 143.3 95 L 147.6 86.2 L 149.7 80.7 M 166.1 107.1 L 160 97.2 L 149.8 80.7 M 166.1 107.1 L 170.2 113.7 M 194.8 81.8 L 201.2 68.6 L 179.8 117 L 190.5 92.8 M 166.1 107.1 L 173.4 119.2 " transform="matrix(1.25,0,0,1.25,0,0)"/> + <path style="fill:none;stroke-width:2.3029;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:4;" d="M 176.7 115.1 C 180.2 115.1 183.1 118 183.1 121.6 C 183.1 125.2 180.2 128.1 176.7 128.1 C 173.2 128.1 170.3 125.2 170.3 121.6 C 170.4 118 173.3 115.1 176.7 115.1 Z M 176.7 115.1 " transform="matrix(1.25,0,0,1.25,0,0)"/> + <path style="fill:none;stroke-width:4.6057;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:4;" d="M 217.5 94.3 C 231 94.3 242 105.5 242 119.5 C 242 133.4 231 144.7 217.5 144.7 C 204 144.7 193 133.5 193 119.5 C 193 105.5 204 94.3 217.5 94.3 Z M 217.5 94.3 " transform="matrix(1.25,0,0,1.25,0,0)"/> + <path style="fill:none;stroke-width:4.6057;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:4;" d="M 159 121.6 C 159 135.571875 147.671875 146.9 133.7 146.9 C 119.728125 146.9 108.4 135.571875 108.4 121.6 C 108.4 107.628125 119.728125 96.3 133.7 96.3 C 147.671875 96.3 159 107.628125 159 121.6 Z M 159 121.6 " transform="matrix(1.25,0,0,1.25,0,0)"/> + <path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:4;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:10;" d="M 212.3 229.9 C 166.4 229.9 120.5 229.8 74.6 229.8 C 85 203.1 95.4 176.5 105.8 149.8 C 147.2 149.6 188.5 149.3 229.9 149.1 C 231.1 146.5 232.3 143.9 233.5 141.3 C 188.6 141.4 143.8 141.5 98.9 141.6 C 86.2 174.2 73.6 206.7 60.9 239.3 C 109.9 239.3 158.8 239.4 207.8 239.4 C 209.3 236.2 210.8 233 212.3 229.9 Z M 212.3 229.9 " transform="matrix(1.25,0,0,1.25,0,0)"/> + </g> +</svg> \ No newline at end of file diff --git a/assets/layers/bike_parking/wall_loops.svg b/assets/layers/bike_parking/wall_loops.svg index 889e2d54f3..fb7a6497e2 100644 --- a/assets/layers/bike_parking/wall_loops.svg +++ b/assets/layers/bike_parking/wall_loops.svg @@ -1,50 +1,6 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Generator: Adobe Illustrator 24.2.1, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> -<svg version="1.1" xmlns="http://www.w3.org/2000/svg" x="0px" y="0px" - viewBox="0 0 300 300" style="enable-background:new 0 0 300 300;" xml:space="preserve"> -<style type="text/css"> - .st0{fill:#0181C2;} - .st1{fill:#020203;} - .st2{fill:none;stroke:#000000;stroke-width:4.6057;} - .st3{fill:none;stroke:#000000;stroke-width:2.3029;} - .st4{fill:#FFFFFF;stroke:#000000;stroke-width:4;stroke-miterlimit:10;} - .st5{fill:#E74436;} - .st6{fill:#FCC407;} - .st7{fill:#0682C2;} - .st8{fill:#73B254;} - .st9{fill:#FFFFFF;stroke:#000000;stroke-width:7.155;stroke-miterlimit:10;} - .st10{fill:#FFFFFF;stroke:#000000;stroke-width:7.7355;stroke-miterlimit:10;} - .st11{fill:none;stroke:#010202;stroke-width:4;stroke-miterlimit:10;} - .st12{fill:none;stroke:#000000;stroke-width:4;stroke-miterlimit:10;} -</style> - <g id="Laag_1"> - <g id="outline"> - <g id="XMLID_3_"> - <g> - <path class="st1" d="M255.3,213.4V228c0,2-1.6,3.6-3.6,3.6H73c-2,0-3.6-1.6-3.6-3.6v-14.6c0-2,1.6-3.6,3.6-3.6h10.9v-21.9H40.2 - c-2,0-3.6-1.6-3.6-3.6v-14.6c0-2,1.6-3.6,3.6-3.6h10.9v-61.3c0-3.6,1.7-7,4.6-9.2c5.1-3.8,12.3-2.9,16.1,2.2 - c3.3-4.5,9.3-5.9,14.3-3.3c2.9,1.5,5.1,4.1,6,7.3l16.6,64.4h8.1v-61.3c0-3.6,1.7-7,4.6-9.2c5.1-3.9,12.3-2.9,16.1,2.2 - c0.8-1.1,1.9-2.1,3-2.8c0.9-0.6,1.9-1,3-1.3c6.1-1.7,12.5,1.9,14.2,8.1l16.6,64.4h8.1v-61.3c0-3.6,1.7-7,4.6-9.2 - c5.1-3.8,12.3-2.9,16.1,2.2c3.3-4.5,9.3-5.9,14.3-3.3c2.9,1.5,5.1,4.1,6,7.3l17,65.9c0.3,1,0.4,2,0.4,3v39.3h10.9 - C253.7,209.7,255.3,211.4,255.3,213.4z M248,224.3V217h-7.3v7.3H248z M233.4,224.3V217h-10.9v7.3H233.4z M233.4,209.7v-39.3 - c0-0.4-0.1-0.8-0.2-1.2l-17-65.9c-0.3-1.1-1.1-2.1-2.2-2.6c-0.6-0.3-1.3-0.5-1.9-0.4c-2.4,0-4.2,1.9-4.2,4.3v7.9l14.2,54.9 - c0.2,0.6,0.3,1.2,0.3,1.8c0,0.1,0.1,0.3,0.1,0.4v40.1H233.4z M215.2,224.3V217h-40.1v7.3H215.2z M215.2,209.7v-21.9h-40.1v21.9 - H215.2z M215.2,180.6v-7.3h-7.3v7.3H215.2z M214.2,166l-6.3-24.3V166H214.2z M200.6,180.6v-7.3h-25.5v7.3H200.6z M200.6,166 - v-52.5l-2.6-10c-0.3-1.1-1.1-2.1-2.2-2.6c-0.6-0.3-1.3-0.5-1.9-0.4c-2.4,0-4.2,1.9-4.2,4.3V166H200.6z M167.8,224.3V217h-10.9 - v7.3H167.8z M167.8,209.7v-21.9h-10.9v21.9H167.8z M167.8,180.6v-7.3h-10.9v7.3H167.8z M166.8,166l-16.2-62.6 - c-0.5-1.8-2.2-3.1-4.1-3.1c-2.4,0-4.2,1.9-4.2,4.3v7.9l13.8,53.5H166.8z M149.6,224.3V217h-40.1v7.3H149.6z M149.6,209.7v-21.9 - h-40.1v21.9H149.6z M149.6,180.6v-7.3h-40.1v7.3H149.6z M148.6,166l-6.3-24.3V166H148.6z M135,166v-52.5l-2.6-10 - c-0.5-1.8-2.2-3.1-4.1-3.1c-2.4,0-4.2,1.9-4.2,4.3V166H135z M102.2,224.3V217H91.2v7.3H102.2z M102.2,209.7v-21.9H91.2v21.9 - H102.2z M102.2,180.6v-7.3H91.2v7.3H102.2z M101.1,166L85,103.4c-0.3-1.1-1.1-2.1-2.2-2.6c-0.6-0.3-1.3-0.5-1.9-0.4 - c-2.4,0-4.2,1.9-4.2,4.3v7.9L90.4,166H101.1z M83.9,224.3V217h-7.3v7.3H83.9z M83.9,180.6v-7.3H58.4v7.3H83.9z M82.9,166 - l-6.3-24.3V166H82.9z M69.3,166v-52.5l-2.6-10c-0.3-1.1-1.1-2.1-2.2-2.6c-0.6-0.3-1.3-0.5-1.9-0.4c-2.4,0-4.2,1.9-4.2,4.3V166 - H69.3z M51.1,180.6v-7.3h-7.3v7.3H51.1z"/> - </g> - </g> - </g> -</g> - <g id="Isolatiemodus"> -</g> - <g id="Capa_1"> -</g> -</svg> +<?xml version="1.0" encoding="UTF-8" standalone="yes"?> +<svg xmlns="http://www.w3.org/2000/svg" width="375px" height="375px" viewBox="0 0 375 375" version="1.1"> + <g id="surface1"> + <path style=" stroke:none;fill-rule:nonzero;fill:rgb(0.784314%,0.784314%,1.176471%);fill-opacity:1;" d="M 319.125 266.75 L 319.125 285 C 319.125 287.5 317.125 289.5 314.625 289.5 L 91.25 289.5 C 88.75 289.5 86.75 287.5 86.75 285 L 86.75 266.75 C 86.75 264.25 88.75 262.25 91.25 262.25 L 104.875 262.25 L 104.875 234.875 L 50.25 234.875 C 47.75 234.875 45.75 232.875 45.75 230.375 L 45.75 212.125 C 45.75 209.625 47.75 207.625 50.25 207.625 L 63.875 207.625 L 63.875 131 C 63.875 126.5 66 122.25 69.625 119.5 C 76 114.75 85 115.875 89.75 122.25 C 93.875 116.625 101.375 114.875 107.625 118.125 C 111.25 120 114 123.25 115.125 127.25 L 135.875 207.75 L 146 207.75 L 146 131.125 C 146 126.625 148.125 122.375 151.75 119.625 C 158.125 114.75 167.125 116 171.875 122.375 C 172.875 121 174.25 119.75 175.625 118.875 C 176.75 118.125 178 117.625 179.375 117.25 C 187 115.125 195 119.625 197.125 127.375 L 217.875 207.875 L 228 207.875 L 228 131.25 C 228 126.75 230.125 122.5 233.75 119.75 C 240.125 115 249.125 116.125 253.875 122.5 C 258 116.875 265.5 115.125 271.75 118.375 C 275.375 120.25 278.125 123.5 279.25 127.5 L 300.5 209.875 C 300.875 211.125 301 212.375 301 213.625 L 301 262.75 L 314.625 262.75 C 317.125 262.125 319.125 264.25 319.125 266.75 Z M 310 280.375 L 310 271.25 L 300.875 271.25 L 300.875 280.375 Z M 291.75 280.375 L 291.75 271.25 L 278.125 271.25 L 278.125 280.375 Z M 291.75 262.125 L 291.75 213 C 291.75 212.5 291.625 212 291.5 211.5 L 270.25 129.125 C 269.875 127.75 268.875 126.5 267.5 125.875 C 266.75 125.5 265.875 125.25 265.125 125.375 C 262.125 125.375 259.875 127.75 259.875 130.75 L 259.875 140.625 L 277.625 209.25 C 277.875 210 278 210.75 278 211.5 C 278 211.625 278.125 211.875 278.125 212 L 278.125 262.125 Z M 269 280.375 L 269 271.25 L 218.875 271.25 L 218.875 280.375 Z M 269 262.125 L 269 234.75 L 218.875 234.75 L 218.875 262.125 Z M 269 225.75 L 269 216.625 L 259.875 216.625 L 259.875 225.75 Z M 267.75 207.5 L 259.875 177.125 L 259.875 207.5 Z M 250.75 225.75 L 250.75 216.625 L 218.875 216.625 L 218.875 225.75 Z M 250.75 207.5 L 250.75 141.875 L 247.5 129.375 C 247.125 128 246.125 126.75 244.75 126.125 C 244 125.75 243.125 125.5 242.375 125.625 C 239.375 125.625 237.125 128 237.125 131 L 237.125 207.5 Z M 209.75 280.375 L 209.75 271.25 L 196.125 271.25 L 196.125 280.375 Z M 209.75 262.125 L 209.75 234.75 L 196.125 234.75 L 196.125 262.125 Z M 209.75 225.75 L 209.75 216.625 L 196.125 216.625 L 196.125 225.75 Z M 208.5 207.5 L 188.25 129.25 C 187.625 127 185.5 125.375 183.125 125.375 C 180.125 125.375 177.875 127.75 177.875 130.75 L 177.875 140.625 L 195.125 207.5 Z M 187 280.375 L 187 271.25 L 136.875 271.25 L 136.875 280.375 Z M 187 262.125 L 187 234.75 L 136.875 234.75 L 136.875 262.125 Z M 187 225.75 L 187 216.625 L 136.875 216.625 L 136.875 225.75 Z M 185.75 207.5 L 177.875 177.125 L 177.875 207.5 Z M 168.75 207.5 L 168.75 141.875 L 165.5 129.375 C 164.875 127.125 162.75 125.5 160.375 125.5 C 157.375 125.5 155.125 127.875 155.125 130.875 L 155.125 207.5 Z M 127.75 280.375 L 127.75 271.25 L 114 271.25 L 114 280.375 Z M 127.75 262.125 L 127.75 234.75 L 114 234.75 L 114 262.125 Z M 127.75 225.75 L 127.75 216.625 L 114 216.625 L 114 225.75 Z M 126.375 207.5 L 106.25 129.25 C 105.875 127.875 104.875 126.625 103.5 126 C 102.75 125.625 101.875 125.375 101.125 125.5 C 98.125 125.5 95.875 127.875 95.875 130.875 L 95.875 140.75 L 113 207.5 Z M 104.875 280.375 L 104.875 271.25 L 95.75 271.25 L 95.75 280.375 Z M 104.875 225.75 L 104.875 216.625 L 73 216.625 L 73 225.75 Z M 103.625 207.5 L 95.75 177.125 L 95.75 207.5 Z M 86.625 207.5 L 86.625 141.875 L 83.375 129.375 C 83 128 82 126.75 80.625 126.125 C 79.875 125.75 79 125.5 78.25 125.625 C 75.25 125.625 73 128 73 131 L 73 207.5 Z M 63.875 225.75 L 63.875 216.625 L 54.75 216.625 L 54.75 225.75 Z M 63.875 225.75 "/> + </g> +</svg> \ No newline at end of file diff --git a/assets/layers/bike_repair_station/bike_pump.svg b/assets/layers/bike_repair_station/bike_pump.svg index e3981f7902..13ed4a20ac 100644 --- a/assets/layers/bike_repair_station/bike_pump.svg +++ b/assets/layers/bike_repair_station/bike_pump.svg @@ -1,147 +1,11 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - xmlns="http://www.w3.org/2000/svg" - width="98" - height="98" - viewBox="0 0 98 98" - version="1.1" - id="svg42" - sodipodi:docname="logo.svg" - style="fill:none" - inkscape:version="0.92.4 (5da689c313, 2019-01-14)"> - <metadata - id="metadata46"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage"/> - <dc:title/> - </cc:Work> - </rdf:RDF> - </metadata> - <sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1001" - id="namedview44" - showgrid="false" - inkscape:zoom="4" - inkscape:cx="-2.2900136" - inkscape:cy="62.988337" - inkscape:window-x="0" - inkscape:window-y="0" - inkscape:window-maximized="1" - inkscape:current-layer="layer4"/> - <defs - id="defs40"> - <filter - id="filter0_d" - x="-3" - y="2" - width="102.479" - height="102.479" - filterUnits="userSpaceOnUse" - style="color-interpolation-filters:sRGB"> - <feFlood - flood-opacity="0" - result="BackgroundImageFix" - id="feFlood22"/> - <feColorMatrix - in="SourceAlpha" - type="matrix" - values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" - id="feColorMatrix24"/> - <feOffset - dy="4" - id="feOffset26"/> - <feGaussianBlur - stdDeviation="2" - id="feGaussianBlur28"/> - <feColorMatrix - type="matrix" - values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0" - id="feColorMatrix30"/> - <feBlend - mode="normal" - in2="BackgroundImageFix" - result="effect1_dropShadow" - id="feBlend32"/> - <feBlend - mode="normal" - in="SourceGraphic" - in2="effect1_dropShadow" - result="shape" - id="feBlend34"/> - </filter> - <clipPath - id="clip0"> - <rect - width="66.806396" - height="66.806396" - transform="rotate(-45,59.937093,23.412543)" - id="rect37" - x="0" - y="0" - style="fill:#ffffff"/> - </clipPath> - </defs> - <g - inkscape:groupmode="layer" - id="layer1" - inkscape:label="re" - style="display:inline" - transform="translate(-12.466103,-2.0847473)"> - <rect - style="fill:#fffcff;fill-opacity:1;stroke:#ffffff;stroke-width:3.50900006;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="rect834" - width="23.963444" - height="3.9908068" - x="47.66375" - y="21.641689"/> - <rect - style="fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="rect839" - width="6.5160999" - height="8.9842997" - x="56.447304" - y="27.271845"/> - <path - style="fill:none;stroke:#ffffff;stroke-width:7.93900013;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - d="m 47.842047,77.142657 23.821625,0.209511" - id="path842" - inkscape:connector-curvature="0"/> - <rect - style="display:inline;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:2.87199998;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="rect863" - width="7.4682202" - height="36.044868" - x="55.90678" - y="37.580132"/> - <path - style="display:inline;fill:none;stroke:#ffffff;stroke-width:2.5999999;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - d="m 64.040577,70.321209 c 0,0 6.250256,1.104191 6.250256,-4.19911 0,-5.303301 0,-31.201087 0,-31.201087 0,0 0.176777,-3.623922 4.154253,-3.623922 3.977475,0 4.065864,3.447145 4.065864,3.447145 l 0.08839,29.875262" - id="path868" - inkscape:connector-curvature="0" - sodipodi:nodetypes="cscscc"/> - <path - style="display:inline;fill:#fffeff;fill-opacity:1;stroke:#fffeff;stroke-width:2;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.97014926" - d="m 76.543734,62.21875 4.018766,-0.03125 0.125,4.640625 3,-0.0625 0.104018,4.221891 -3.783471,-0.02589 c -2.730516,-0.27045 -3.676466,-1.207877 -3.48639,-3.569907 z" - id="path871" - inkscape:connector-curvature="0" - sodipodi:nodetypes="cccccccc"/> - </g> -</svg> +<?xml version="1.0" encoding="UTF-8" standalone="yes"?> +<svg xmlns="http://www.w3.org/2000/svg" width="375px" height="375px" viewBox="0 0 375 375" version="1.1"> + <g id="surface1"> + <path style="fill-rule:nonzero;fill:rgb(100%,98.823529%,100%);fill-opacity:1;stroke-width:3.509;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:4;" d="M 47.663415 21.641872 L 71.627478 21.641872 L 71.627478 25.63231 L 47.663415 25.63231 Z M 47.663415 21.641872 " transform="matrix(3.826531,0,0,3.826531,-47.701923,-7.977349)"/> + <path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 168.296875 96.378906 L 193.230469 96.378906 L 193.230469 130.757812 L 168.296875 130.757812 Z M 168.296875 96.378906 "/> + <path style="fill:none;stroke-width:7.939;stroke-linecap:round;stroke-linejoin:miter;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:4;" d="M 47.842061 77.142539 L 71.663207 77.35181 " transform="matrix(3.826531,0,0,3.826531,-47.701923,-7.977349)"/> + <path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:2.872;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:4;" d="M 55.906644 37.580143 L 63.375061 37.580143 L 63.375061 73.624747 L 55.906644 73.624747 Z M 55.906644 37.580143 " transform="matrix(3.826531,0,0,3.826531,-47.701923,-7.977349)"/> + <path style="fill:none;stroke-width:2.6;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:4;" d="M 64.040644 70.321331 C 64.040644 70.321331 70.291207 71.425872 70.291207 66.121622 C 70.291207 60.818393 70.291207 34.920872 70.291207 34.920872 C 70.291207 34.920872 70.467811 31.296914 74.444978 31.296914 C 78.422144 31.296914 78.510957 34.744268 78.510957 34.744268 L 78.599769 64.619976 " transform="matrix(3.826531,0,0,3.826531,-47.701923,-7.977349)"/> + <path style="fill-rule:nonzero;fill:rgb(100%,99.607843%,100%);fill-opacity:1;stroke-width:2;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(100%,99.607843%,100%);stroke-opacity:0.970149;stroke-miterlimit:4;" d="M 76.543811 62.218976 L 80.562832 62.187331 L 80.687373 66.828039 L 83.687603 66.765768 L 83.791728 70.987935 L 80.008519 70.961393 C 77.27779 70.690872 76.331478 69.753747 76.521353 67.391539 Z M 76.543811 62.218976 " transform="matrix(3.826531,0,0,3.826531,-47.701923,-7.977349)"/> + </g> +</svg> \ No newline at end of file diff --git a/assets/layers/bike_repair_station/bike_repair_station.json b/assets/layers/bike_repair_station/bike_repair_station.json index 0e37ac26ad..9dfe80c03f 100644 --- a/assets/layers/bike_repair_station/bike_repair_station.json +++ b/assets/layers/bike_repair_station/bike_repair_station.json @@ -1,8 +1,8 @@ { "id": "bike_repair_station", "name": { - "en": "Bike stations (repair, pump or both)", - "nl": "Fietspunten (herstel, pomp of allebei)", + "en": "Bicycle pump and repair", + "nl": "Fietspomp and fietsherstel", "fr": "Station velo (réparation, pompe à vélo)", "gl": "Estación de bicicletas (arranxo, bomba de ar ou ambos)", "de": "Fahrradstationen (Reparatur, Pumpe oder beides)", @@ -138,8 +138,8 @@ { "id": "bike_repair_station-available-services", "question": { - "en": "Which services are available at this bike station?", - "nl": "Welke functies biedt dit fietspunt?", + "en": "Which services are available at this location?", + "nl": "Welke functies biedt locatie?", "fr": "Quels services sont valables à cette station vélo ?", "gl": "Que servizos están dispoñíbeis nesta estación de bicicletas?", "de": "Welche Einrichtungen stehen an dieser Fahrradstation zur Verfügung?", @@ -206,60 +206,45 @@ }, { "question": { - "en": "Who maintains this cycle pump?", - "nl": "Wie beheert deze fietspomp?", - "fr": "Qui maintient cette pompe à vélo ?", - "it": "Chi gestisce questa pompa per bici?", - "de": "Wer wartet diese Fahrradpumpe?", - "pt_BR": "Quem faz a manutenção desta bomba de ciclo?", - "pt": "Quem faz a manutenção desta bomba de ciclo?" - }, - "render": { - "nl": "Beheer door {operator}", - "en": "Maintained by {operator}", - "fr": "Mantenue par {operator}", - "it": "Manutenuta da {operator}", - "de": "Gewartet von {operator}", - "pt_BR": "Mantida por {operator}", - "pt": "Mantida por {operator}" - }, - "freeform": { - "key": "operator" + "en": "Is the bike pump still operational?", + "nl": "Werkt de fietspomp nog?", + "fr": "La pompe à vélo fonctionne-t-elle toujours ?", + "gl": "Segue a funcionar a bomba de ar?", + "de": "Ist die Fahrradpumpe noch funktionstüchtig?", + "it": "La pompa per bici è sempre funzionante?", + "ru": "Велосипедный насос все еще работает?", + "pl": "Czy pompka rowerowa jest nadal sprawna?" }, + "condition": "service:bicycle:pump=yes", "mappings": [ { - "if": "operator=De Fietsambassade Gent", - "then": "<a href='https://fietsambassade.gent.be/' target='_blank'>De Fietsambassade Gent</a>", - "hideInAnswer": "_country!=be" + "if": "service:bicycle:pump:operational_status=broken", + "then": { + "en": "The bike pump is broken", + "nl": "De fietspomp is kapot", + "fr": "La pompe à vélo est cassée", + "gl": "A bomba de ar está estragada", + "de": "Die Fahrradpumpe ist kaputt", + "it": "La pompa per bici è guasta", + "ru": "Велосипедный насос сломан", + "pl": "Pompka rowerowa jest zepsuta" + } + }, + { + "if": "service:bicycle:pump:operational_status=operational", + "then": { + "en": "The bike pump is operational", + "nl": "De fietspomp werkt nog", + "fr": "La pompe est opérationnelle", + "gl": "A bomba de ar está operativa", + "de": "Die Fahrradpumpe ist betriebsbereit", + "it": "La pompa per bici funziona", + "ru": "Велосипедный насос работает", + "pl": "Pompka rowerowa jest sprawna" + } } ], - "id": "bike_repair_station-operator" - }, - { - "question": { - "en": "What is the email address of the maintainer?", - "nl": "Wat is het email-adres van de beheerder?", - "de": "Wie lautet die E-Mail-Adresse des Betreuers?" - }, - "freeform": { - "key": "email", - "type": "email" - }, - "render": "<a href='mailto:{email}'>{email}</a>", - "id": "bike_repair_station-email" - }, - { - "question": { - "en": "What is the phone number of the maintainer?", - "nl": "Wat is het telefoonnummer van de beheerder?", - "de": "Wie lautet die Telefonnummer des Betreibers?" - }, - "freeform": { - "key": "phone", - "type": "phone" - }, - "render": "<a href='tel:{phone}'>{phone}</a>", - "id": "bike_repair_station-phone" + "id": "Operational status" }, { "question": { @@ -288,23 +273,119 @@ "pt_BR": "Sempre aberto", "pt": "Sempre aberto" } - }, - { - "if": "opening_hours=", - "then": { - "nl": "Dag en nacht open", - "en": "Always open", - "fr": "Ouvert en permanence", - "it": "Sempre aperto", - "de": "Immer geöffnet", - "pt_BR": "Sempre aberto", - "pt": "Sempre aberto" - }, - "hideInAnswer": true } ], "id": "bike_repair_station-opening_hours" }, + { + "id": "access", + "question": { + "en": "Who is allowed to use this repair station?", + "nl": "Wie kan dit herstelpunt gebruiken?" + }, + "mappings": [ + { + "if": "access=yes", + "then": { + "en": "Publicly accessible", + "nl": "Publiek toegankelijk" + } + }, + { + "if": "access=public", + "then": { + "en": "Publicly accessible", + "nl": "Publiek toegankelijk" + }, + "hideInAnswer": true + }, + { + "if": "access=customers", + "then": { + "en": "Only for customers", + "nl": "Enkel voor klanten van de bijhorende zaak" + } + }, + { + "if": "access=private", + "then": { + "en": "Not accessible to the general public", + "nl": "Niet publiek toegankelijk" + }, + "icon": "./assets/svg/invalid.svg" + }, + { + "if": "access=no", + "then": { + "en": "Not accessible to the general public", + "nl": "Niet publiek toegankelijk" + }, + "icon": "./assets/svg/invalid.svg", + "hideInAnswer": true + } + ] + }, + { + "labels": [ + "operator-info" + ], + "question": { + "en": "Who maintains this cycle pump?", + "nl": "Wie beheert deze fietspomp?", + "fr": "Qui maintient cette pompe à vélo ?", + "it": "Chi gestisce questa pompa per bici?", + "de": "Wer wartet diese Fahrradpumpe?", + "pt_BR": "Quem faz a manutenção desta bomba de ciclo?", + "pt": "Quem faz a manutenção desta bomba de ciclo?" + }, + "render": { + "nl": "Beheer door {operator}", + "en": "Maintained by {operator}", + "fr": "Mantenue par {operator}", + "it": "Manutenuta da {operator}", + "de": "Gewartet von {operator}", + "pt_BR": "Mantida por {operator}", + "pt": "Mantida por {operator}" + }, + "freeform": { + "key": "operator" + }, + "id": "bike_repair_station-operator" + }, + { + "labels": [ + "operator-info" + ], + "question": { + "en": "What is the email address of the maintainer?", + "nl": "Wat is het email-adres van de beheerder?", + "de": "Wie lautet die E-Mail-Adresse des Betreuers?", + "fr": "Quelle est l'adresse email du service de maintenance ?" + }, + "freeform": { + "key": "email", + "type": "email" + }, + "render": "<a href='mailto:{email}'>{email}</a>", + "id": "bike_repair_station-email" + }, + { + "labels": [ + "operator-info" + ], + "question": { + "en": "What is the phone number of the maintainer?", + "nl": "Wat is het telefoonnummer van de beheerder?", + "de": "Wie lautet die Telefonnummer des Betreibers?", + "fr": "Quel est le numéro de téléphone du service de maintenance ?" + }, + "freeform": { + "key": "phone", + "type": "phone" + }, + "render": "<a href='tel:{phone}'>{phone}</a>", + "id": "bike_repair_station-phone" + }, { "id": "bike_repair_station-bike-chain-tool", "question": { @@ -385,48 +466,6 @@ } ] }, - { - "question": { - "en": "Is the bike pump still operational?", - "nl": "Werkt de fietspomp nog?", - "fr": "La pompe à vélo fonctionne-t-elle toujours ?", - "gl": "Segue a funcionar a bomba de ar?", - "de": "Ist die Fahrradpumpe noch funktionstüchtig?", - "it": "La pompa per bici è sempre funzionante?", - "ru": "Велосипедный насос все еще работает?", - "pl": "Czy pompka rowerowa jest nadal sprawna?" - }, - "condition": "service:bicycle:pump=yes", - "mappings": [ - { - "if": "service:bicycle:pump:operational_status=broken", - "then": { - "en": "The bike pump is broken", - "nl": "De fietspomp is kapot", - "fr": "La pompe à vélo est cassée", - "gl": "A bomba de ar está estragada", - "de": "Die Fahrradpumpe ist kaputt", - "it": "La pompa per bici è guasta", - "ru": "Велосипедный насос сломан", - "pl": "Pompka rowerowa jest zepsuta" - } - }, - { - "if": "service:bicycle:pump:operational_status=", - "then": { - "en": "The bike pump is operational", - "nl": "De fietspomp werkt nog", - "fr": "La pompe est opérationnelle", - "gl": "A bomba de ar está operativa", - "de": "Die Fahrradpumpe ist betriebsbereit", - "it": "La pompa per bici funziona", - "ru": "Велосипедный насос работает", - "pl": "Pompka rowerowa jest sprawna" - } - } - ], - "id": "Operational status" - }, { "condition": { "and": [ @@ -435,9 +474,9 @@ ] }, "render": { - "en": "<a href='mailto:{email}?subject=Broken bicycle pump&body=Hello,\n\nWith this email, I'd like to inform you that the bicycle pump located at https://mapcomplete.osm.be/cyclofix?lat={_lat}&lon={_lon}&z=18#{id} is broken.'>Report this bicycle pump as broken</a>", - "nl": "<a href='mailto:{email}?subject=Kapotte fietspomp&body=Geachte,%0D%0A%0D%0AGraag had ik u gemeld dat een fietspomp defect is. De fietspomp bevindt zich hier: https://mapcomplete.osm.be/cyclofix#{id}.'>Rapporteer deze fietspomp als kapot</a>", - "de": "<a href='mailto:{email}?subject=Fahrradpumpe kaputt&body=Hallo,\n\nMit dieser E-Mail möchte ich Ihnen mitteilen, dass die Fahrradpumpe, die sich unter https://mapcomplete.osm.be/cyclofix?lat={_lat}&lon={_lon}&z=18#{id} befindet, kaputt ist.'>Melde diese Fahrradpumpe als kaputt</a>" + "en": "<a href='mailto:{email}?subject=Broken bicycle pump&body=Hello,%0D%0A%0D%0AWith this email, I'd like to inform you that the bicycle pump located at https://mapcomplete.osm.be/cyclofix?lat={_lat}%26lon={_lon}%26z=18%23{id} is broken.%0D%0A%0D%0A Kind regards'>Report this bicycle pump as broken</a>", + "nl": "<a href='mailto:{email}?subject=Kapotte fietspomp&body=Geachte,%0D%0A%0D%0AGraag had ik u gemeld dat een fietspomp defect is. De fietspomp bevindt zich hier: https://mapcomplete.osm.be/cyclofix?lat={_lat}%26lon={_lon}%26z=18%23{id}.%0D%0A%0D%0AMet vriendelijke groeten.'>Rapporteer deze fietspomp als kapot</a>", + "de": "<a href='mailto:{email}?subject=Fahrradpumpe kaputt&body=Hallo,%0D%0A%0D%0AMit dieser E-Mail möchte ich Ihnen mitteilen, dass die Fahrradpumpe, die sich unter https://mapcomplete.osm.be/cyclofix?lat={_lat}%26lon={_lon}%26z=18%23{id} befindet, kaputt ist.'>Melde diese Fahrradpumpe als kaputt</a>" }, "id": "Email maintainer" }, @@ -511,7 +550,7 @@ "id": "bike_repair_station-electrical_pump", "question": { "en": "Is this an electric bike pump?", - "nl": "Is dit een electrische fietspomp?", + "nl": "Is dit een elektrische fietspomp?", "fr": "Est-ce que cette pompe est électrique ?", "gl": "Esta é unha bomba de ar eléctrica?", "de": "Ist dies eine elektrische Fahrradpumpe?", @@ -540,7 +579,7 @@ "if": "manual=no", "then": { "en": "Electrical pump", - "nl": "Electrische pomp", + "nl": "Elektrische pomp", "fr": "Pompe électrique", "gl": "Bomba de ar eléctrica", "de": "Elektrische Pumpe", @@ -618,16 +657,16 @@ "presets": [ { "title": { - "en": "Bike pump", - "nl": "Fietspomp", - "fr": "Pompe à vélo", - "gl": "Bomba de ar", - "de": "Fahrradpumpe", - "it": "Pompa per bici", - "ru": "Велосипедный насос", - "fi": "Pyöräpumppu", - "pl": "Pompka do roweru", - "pt_BR": "Bomba de bicicleta" + "en": "bike pump", + "nl": "fietspomp", + "fr": "pompe à vélo", + "gl": "bomba de ar", + "de": "fahrradpumpe", + "it": "pompa per bici", + "ru": "bелосипедный насос", + "fi": "pyöräpumppu", + "pl": "pompka do roweru", + "pt_BR": "bomba de bicicleta" }, "tags": [ "amenity=bicycle_repair_station", @@ -635,25 +674,30 @@ "service:bicycle:pump=yes" ], "description": { - "en": "A device to inflate your tires on a fixed location in the public space.<h3>Examples of bicycle pumps</h3><div style='width: 100%; display: flex; align-items: stretch;'><img src='./assets/layers/bike_repair_station/pump_example_manual.jpg' style='height: 200px; width: auto;'/><img src='./assets/layers/bike_repair_station/pump_example.png' style='height: 200px; width: auto;'/><img src='./assets/layers/bike_repair_station/pump_example_round.jpg' style='height: 200px; width: auto;'/></div>", - "nl": "Een apparaat waar je je fietsbanden kan oppompen, beschikbaar in de publieke ruimte. De fietspomp in je kelder telt dus niet.<h3>Voorbeelden</h3><h3>Examples of bicycle pumps</h3><div style='width: 100%; display: flex; align-items: stretch;'><img src='./assets/layers/bike_repair_station/pump_example_manual.jpg' style='height: 200px; width: auto;'/><img src='./assets/layers/bike_repair_station/pump_example.png' style='height: 200px; width: auto;'/><img src='./assets/layers/bike_repair_station/pump_example_round.jpg' style='height: 200px; width: auto;'/></div>", - "it": "Un dispositivo per gonfiare le proprie gomme in un luogo fisso pubblicamente accessibile.<h3>Esempi di pompe per biciclette</h3><div style='width: 100%; display: flex; align-items: stretch;'><img src='./assets/layers/bike_repair_station/pump_example_manual.jpg' style='height: 200px; width: auto;'/><img src='./assets/layers/bike_repair_station/pump_example.png' style='height: 200px; width: auto;'/><img src='./assets/layers/bike_repair_station/pump_example_round.jpg' style='height: 200px; width: auto;'/></div>", - "fr": "Un dispositif pour gonfler vos pneus sur un emplacement fixe dans l'espace public.<h3>Exemples de pompes à vélo</h3><div style='width: 100%; display: flex; align-items: stretch;'><img src='./assets/layers/bike_repair_station/pump_example_manual.jpg' style='height: 200px; width: auto;'/><img src='./assets/layers/bike_repair_station/pump_example.png' style='height: 200px; width: auto;'/><img src='./assets/layers/bike_repair_station/pump_example_round.jpg' style='height: 200px; width: auto;'/></div>", - "de": "Ein Gerät zum Aufpumpen von Reifen an einem festen Standort im öffentlichen Raum.<h3>Beispiele für Fahrradpumpen</h3><div style='width: 100%; display: flex; align-items: stretch;'><img src='./assets/layers/bike_repair_station/pump_example_manual.jpg' style='height: 200px; width: auto;'/><img src='./assets/layers/bike_repair_station/pump_example.png' style='height: 200px; width: auto;'/><img src='./assets/layers/bike_repair_station/pump_example_round.jpg' style='height: 200px; width: auto;'/></div>", - "pl": "Urządzenie do pompowania opon w stałym miejscu w przestrzeni publicznej.<h3>Przykłady pompek rowerowych</h3><div style='width: 100%; display: flex; align-items: stretch;'><img src='./assets/layers/bike_repair_station/pump_example_manual.jpg' style='height: 200px; width: auto;'/><img src='./assets/layers/bike_repair_station/pump_example.png' style='height: 200px; width: auto;'/><img src='./assets/layers/bike_repair_station/pump_example_round.jpg' style='height: 200px; width: auto;'/></div>", - "pt_BR": "Um dispositivo para encher seus pneus em um local fixa no espaço público<h3>Exemplos de bombas de bicicletas</h3><div style='width: 100%; display: flex; align-items: stretch;'><img src='./assets/layers/bike_repair_station/pump_example_manual.jpg' style='height: 200px; width: auto;'/><img src='./assets/layers/bike_repair_station/pump_example.png' style='height: 200px; width: auto;'/><img src='./assets/layers/bike_repair_station/pump_example_round.jpg' style='height: 200px; width: auto;'/></div>", - "pt": "Um aparelho para encher os seus pneus num local fixa no espaço público<h3>Exemplos de bombas de bicicletas</h3><div style='width: 100%; display: flex; align-items: stretch;'><img src='./assets/layers/bike_repair_station/pump_example_manual.jpg' style='height: 200px; width: auto;'/><img src='./assets/layers/bike_repair_station/pump_example.png' style='height: 200px; width: auto;'/><img src='./assets/layers/bike_repair_station/pump_example_round.jpg' style='height: 200px; width: auto;'/></div>" - } + "en": "A device to inflate your tires on a fixed location in the public space.", + "nl": "Een fietspomp in de publieke ruimte zonder extra gereedschap. De fietspomp in je kelder telt dus niet.", + "it": "Un dispositivo per gonfiare le proprie gomme in un luogo fisso pubblicamente accessibile.", + "fr": "Un dispositif pour gonfler vos pneus sur un emplacement fixe dans l'espace public.", + "de": "Ein Gerät zum Aufpumpen von Reifen an einem festen Standort im öffentlichen Raum.", + "pl": "Urządzenie do pompowania opon w stałym miejscu w przestrzeni publicznej.", + "pt_BR": "Um dispositivo para encher seus pneus em um local fixa no espaço público", + "pt": "Um aparelho para encher os seus pneus num local fixa no espaço público" + }, + "exampleImages": [ + "./assets/layers/bike_repair_station/pump_example_round.jpg", + "./assets/layers/bike_repair_station/pump_example.png", + "./assets/layers/bike_repair_station/pump_example_manual.jpg" + ] }, { "title": { - "en": "Bike repair station and pump", - "nl": "Herstelpunt en pomp", - "fr": "Point de réparation vélo avec pompe", - "gl": "Estación de arranxo de bicicletas con bomba de ar", - "de": "Fahrrad-Reparaturstation und Pumpe", - "it": "Stazione di riparazione bici e pompa", - "pl": "Stacja naprawy rowerów i pompka" + "en": "bike repair station and pump", + "nl": "herstelpunt en pomp", + "fr": "point de réparation vélo avec pompe", + "gl": "estación de arranxo de bicicletas con bomba de ar", + "de": "fahrrad-Reparaturstation und Pumpe", + "it": "stazione di riparazione bici e pompa", + "pl": "stacja naprawy rowerów i pompka" }, "tags": [ "amenity=bicycle_repair_station", @@ -661,27 +705,35 @@ "service:bicycle:pump=yes" ], "description": { - "en": "A device with tools to repair your bike combined with a pump at a fixed location. The tools are often secured with chains against theft.<h3>Example</h3><img src='./assets/layers/bike_repair_station/repair_station_example.jpg' height='200'/>", - "nl": "Een apparaat met zowel gereedschap om je fiets te herstellen, met een pomp. Deze zijn op een vastgemaakt op een plaats in de publieke ruimte, bv. aan een paal.<h3>Voorbeeld</h3><img src='./assets/layers/bike_repair_station/repair_station_example.jpg' height='200'/>", - "fr": "Un dispositif avec des outils pour réparer votre vélo combiné à une pompe a un emplacement fixe. Les outils sont souvent attachés par une chaîne pour empêcher le vol.<h3>Exemple</h3><img src='./assets/layers/bike_repair_station/repair_station_example.jpg' height='200'/>", - "it": "Un dispositivo con attrezzi per riparare la tua bici e una pompa in un luogo fisso. Gli attrezzi sono spesso attaccati ad una catena per prevenire il furto.<h3>Esempio</h3><img src='./assets/layers/bike_repair_station/repair_station_example.jpg' height='200'/>", - "de": "Ein Gerät mit Werkzeugen zur Reparatur von Fahrrädern kombiniert mit einer Pumpe an einem festen Standort. Die Werkzeuge sind oft mit Ketten gegen Diebstahl gesichert.<h3>Beispiel</h3><img src='./assets/layers/bike_repair_station/repair_station_example.jpg' height='200'/>" - } + "en": "A bicycle pump and tools to repair your bike in the public space. The tools are often secured with chains against theft.", + "nl": "Een fietspomp en gereedschap om je fiets te herstellen in de publieke ruimte. Deze zijn op een vastgemaakt, bijvoorbeeld aan een paal.", + "fr": "Un dispositif avec des outils pour réparer votre vélo combiné à une pompe a un emplacement fixe. Les outils sont souvent attachés par une chaîne pour empêcher le vol.", + "it": "Un dispositivo con attrezzi per riparare la tua bici e una pompa in un luogo fisso. Gli attrezzi sono spesso attaccati ad una catena per prevenire il furto.", + "de": "Ein Gerät mit Werkzeugen zur Reparatur von Fahrrädern kombiniert mit einer Pumpe an einem festen Standort. Die Werkzeuge sind oft mit Ketten gegen Diebstahl gesichert." + }, + "exampleImages": [ + "./assets/layers/bike_repair_station/repair_station_example_2.jpg", + "./assets/layers/bike_repair_station/repair_station_example_3.jpg" + ] }, { "title": { - "en": "Bike repair station without pump", - "nl": "Herstelpunt zonder pomp", - "fr": "Point de réparation vélo sans pompe", - "gl": "Estación de arranxo de bicicletas sin bomba de ar", - "de": "Fahrrad-Reparaturstation ohne Pumpe", - "it": "Stazione di riparazione bici senza pompa" + "en": "bike repair station without pump", + "nl": "herstelpunt zonder pomp", + "fr": "point de réparation vélo sans pompe", + "gl": "estación de arranxo de bicicletas sin bomba de ar", + "de": "fahrrad-Reparaturstation ohne Pumpe", + "it": "stazione di riparazione bici senza pompa" }, "tags": [ "amenity=bicycle_repair_station", "service:bicycle:tools=yes", "service:bicycle:pump=no" - ] + ], + "description": { + "en": "Tools to repair your bike in the public space (without pump). The tools are secured against theft.", + "nl": "Gereedschap om je fiets te herstellen in de publieke ruimte (zonder pomp). Deze zijn op een vastgemaakt, bijvoorbeeld aan een paal." + } } ], "deletion": { @@ -700,16 +752,17 @@ "mapRendering": [ { "icon": { - "render": "./assets/layers/bike_repair_station/repair_station.svg", + "render": "pin:#88d32c;./assets/layers/bike_repair_station/repair_station.svg", "mappings": [ { "if": { "and": [ - "service:bicycle:pump=no", + "service:bicycle:pump=yes", + "service:bicycle:tools=yes", "service:bicycle:pump:operational_status=broken" ] }, - "then": "./assets/layers/bike_repair_station/repair_station.svg" + "then": "pin:#88d32c;./assets/layers/bike_repair_station/repair_station_broken_pump.svg" }, { "if": { @@ -718,7 +771,7 @@ "service:bicycle:tools=yes" ] }, - "then": "./assets/layers/bike_repair_station/repair_station_pump.svg" + "then": "pin:#30abf0;./assets/layers/bike_repair_station/repair_station_pump.svg" }, { "if": { @@ -727,7 +780,7 @@ "service:bicycle:tools=no" ] }, - "then": "./assets/layers/bike_repair_station/broken_pump_2.svg" + "then": "pin:black;./assets/layers/bike_repair_station/broken_pump.svg" }, { "if": { @@ -741,7 +794,7 @@ } ] }, - "then": "./assets/layers/bike_repair_station/pump.svg" + "then": "pin:#e1783a;./assets/layers/bike_repair_station/pump.svg" } ] }, @@ -749,6 +802,15 @@ { "if": "operator=De Fietsambassade Gent", "then": "./assets/themes/cyclofix/fietsambassade_gent_logo_small.svg" + }, + { + "if": { + "or": [ + "access=no", + "access=private" + ] + }, + "then": "invalid" } ], "iconSize": { @@ -758,14 +820,10 @@ "point", "centroid" ] - }, - { - "color": { - "render": "#00f" - }, - "width": { - "render": "1" - } } - ] + ], + "description": { + "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.svg b/assets/layers/bike_repair_station/broken_pump.svg index 0810402504..653b710289 100644 --- a/assets/layers/bike_repair_station/broken_pump.svg +++ b/assets/layers/bike_repair_station/broken_pump.svg @@ -1,34 +1,61 @@ -<svg width="104" height="123" viewBox="0 0 104 123" fill="none" xmlns="http://www.w3.org/2000/svg"> - <path d="M60.0445 113.094C58.2614 116.981 52.7386 116.981 50.9555 113.094L20.2124 46.085C18.6928 42.7729 21.1129 39 24.7569 39L86.2431 39C89.8871 39 92.3072 42.7729 90.7876 46.085L60.0445 113.094Z" - fill="#171615"/> - <circle cx="55" cy="49" r="49" fill="#171615"/> - <g clip-path="url(#clip0)" filter="url(#filter0_d)"> - <path d="M59.2519 79.0738C60.5075 79.0738 61.7117 78.5751 62.5995 77.6872C63.4874 76.7994 63.9862 76.2998 63.9862 75.0442C63.9862 73.7886 63.4874 73.3516 62.5996 72.4637C61.7117 71.5759 60.5075 71.0771 59.2519 71.0771L53.3555 71.0815V69.4784L54.8823 69.4739C56.1376 69.4729 57.3412 68.9738 58.2288 68.0862C59.1164 67.1986 60.2656 66.2038 60.2666 64.9485L60.3118 33.5699C60.3119 33.2223 60.3118 32.5699 60.401 32.2506C60.5341 31.9295 60.547 31.5699 60.725 31.3919C60.9708 31.1462 61.1038 30.9511 61.4249 30.8181C61.746 30.6852 62.6524 30.5698 63 30.5699C63.3475 30.5699 63.9907 30.5669 64.3118 30.7C64.6329 30.833 64.9889 31.2478 65.3118 31.5699C65.5575 31.8156 65.5753 31.9295 65.7083 32.2506C65.8412 32.5717 65.9096 32.9158 65.9096 33.2634L65.9169 59.1411L64.8659 59.1411C64.5926 59.1418 64.3306 59.2497 64.136 59.4415C63.9414 59.6334 63.8298 59.8938 63.8251 60.167L63.7587 64.9175C63.7491 65.609 63.8771 66.2955 64.1351 66.9371C64.393 67.5787 64.776 68.1626 65.2616 68.6549C65.7472 69.1473 66.3258 69.5382 66.9638 69.805C67.6017 70.0718 68.2864 70.2091 68.9779 70.2091L72.1237 70.2091C72.4005 70.209 72.666 70.0991 72.8617 69.9033C73.0574 69.7076 73.1674 69.4422 73.1674 69.1654L73.1674 64.7367C73.1674 64.5979 73.1396 64.4605 73.0857 64.3326C73.0319 64.2046 72.9531 64.0887 72.8539 63.9916C72.7547 63.8944 72.6372 63.8181 72.5081 63.7669C72.3791 63.7158 72.2411 63.6909 72.1023 63.6938L70.1412 63.7358L70.091 60.1693C70.0863 59.8961 69.9747 59.6356 69.7801 59.4438C69.5855 59.2519 69.3235 59.1441 69.0502 59.1433L68.3794 59.1411L68.7232 33.5699C68.7232 32.3143 68.1997 30.4577 67.3118 29.5699C66.424 28.682 65.5 28.0699 63 28.0699C60.7903 28.0699 59.6997 28.682 58.8118 29.5699C57.924 30.4577 57.5395 32.0115 57.5395 33.2671L57.5395 64.7441C57.5383 65.4457 57.2591 66.1183 56.7629 66.6144C56.2668 67.1105 55.5943 67.3898 54.8926 67.391L53.3555 67.391V35.2151C53.3555 34.9383 53.2455 34.6729 53.0498 34.4771C52.854 34.2814 52.5886 34.1715 52.3118 34.1714L51.4973 34.1714L51.4973 25.1871L60.7872 25.1871C61.064 25.187 61.3294 25.0771 61.5252 24.8814C61.7209 24.6856 61.8309 24.4202 61.8309 24.1434V18.9766C61.8308 18.6998 61.7209 18.4344 61.5252 18.2386C61.3294 18.0429 61.064 17.933 60.7872 17.9329L35.6913 17.9329C35.4145 17.9329 35.1491 18.0429 34.9534 18.2386C34.7577 18.4344 34.6477 18.6998 34.6476 18.9766L34.6476 24.1434C34.6477 24.4202 34.7577 24.6856 34.9534 24.8814C35.1491 25.0771 35.4145 25.187 35.6913 25.1871L44.9812 25.1871L44.9812 34.1714L44.1543 34.1714C43.8775 34.1715 43.6121 34.2814 43.4164 34.4771C43.2206 34.6729 43.1107 34.9383 43.1106 35.2151L43.1106 71.0771L37.2266 71.0771C35.971 71.0771 34.7668 71.5759 33.879 72.4637C32.9911 73.3516 32.4923 73.7886 32.4923 75.0442C32.4923 76.2998 32.9911 76.7994 33.879 77.6872C34.7668 78.575 35.971 79.0738 37.2266 79.0738L59.2519 79.0738ZM68.0612 64.8135C68.0631 64.951 68.0922 65.0869 68.1468 65.2131C68.2014 65.3394 68.2805 65.4536 68.3794 65.5493C68.4783 65.6449 68.5952 65.72 68.7232 65.7703C68.8512 65.8206 68.988 65.8451 69.1255 65.8424L71.0749 65.8033L71.0771 68.1246L68.975 68.1246C68.5599 68.1247 68.149 68.0423 67.7661 67.8822C67.3832 67.722 67.0359 67.4874 66.7445 67.1918C66.4531 66.8963 66.2234 66.5458 66.0686 66.1607C65.9139 65.7756 65.8372 65.3635 65.8431 64.9485L65.8926 61.2248H68.0154L68.0612 64.8135ZM36.735 23.0997L36.735 20.0203L59.7435 20.0203L59.7435 23.0997L50.4536 23.0997L46.0249 23.0997L36.735 23.0997ZM47.0686 25.1871L49.4099 25.1871L49.4099 34.1714L47.0686 34.1714V25.1871ZM44.8543 36.2588H46.0249L50.4536 36.2588L51.6243 36.2588L51.6243 67.3865L44.8543 67.3865L44.8543 36.2588ZM44.8543 69.4739L51.6243 69.4739L51.6243 74.0296L44.8543 74.0296L44.8543 69.4739ZM34.5797 75.0442C34.5929 74.3464 34.876 74.4479 35.3696 73.9543C35.8631 73.4608 36.5287 73.1777 37.2266 73.1645L43.1106 73.1645L43.1106 74.3061C43.1107 74.5829 43.2206 74.8483 43.4163 75.0441C43.6121 75.2398 43.8775 75.3498 44.1543 75.3498L52.3118 75.3542C52.5886 75.3542 52.854 75.2442 53.0498 75.0485C53.2455 74.8528 53.3555 74.5873 53.3555 74.3105V73.1689L59.2519 73.1645C59.5999 73.163 59.9448 73.2305 60.2666 73.363C60.5884 73.4955 60.8808 73.6904 61.1268 73.9365C61.3729 74.1825 61.5678 73.7078 61.7003 74.0296C61.8328 74.3514 61.9003 74.6962 61.8988 75.0442C61.8856 75.7421 61.6025 75.7031 61.1089 76.1966C60.6154 76.6902 59.9498 76.9733 59.2519 76.9864L37.2266 76.9864C36.8786 76.9879 36.5337 76.9205 36.2119 76.788C35.8901 76.6555 35.5978 76.4606 35.3517 76.2145C35.1056 75.9684 34.9107 75.676 34.7782 75.3542C34.6457 75.0324 34.5783 75.3922 34.5797 75.0442Z" - fill="white"/> - <rect x="44.3118" y="35.5698" width="8" height="39" fill="white"/> - <rect x="35.3118" y="19.5699" width="25" height="4" fill="white"/> - <rect x="46.3118" y="21.5698" width="4" height="14" fill="white"/> - <rect x="34.3118" y="72.5698" width="28" height="5" fill="white"/> - <rect x="65.3118" y="60.5698" width="4" height="8" fill="white"/> - <rect x="68.3118" y="64.5699" width="3" height="4" fill="white"/> - <rect x="56" y="42" width="5" height="10" fill="#171615"/> - </g> - <rect x="72.4167" y="53.8615" width="29.0549" height="7.85787" transform="rotate(43.5782 72.4167 53.8615)" - fill="#F00D0D"/> - <path d="M68.2141 73.9097L88.6128 54L94.0003 59.5199L73.6016 79.4295L68.2141 73.9097Z" fill="#F00D0D"/> - <defs> - <filter id="filter0_d" x="-3" y="2" width="102.479" height="102.479" filterUnits="userSpaceOnUse" - color-interpolation-filters="sRGB"> - <feFlood flood-opacity="0" result="BackgroundImageFix"/> - <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/> - <feOffset dy="4"/> - <feGaussianBlur stdDeviation="2"/> - <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"/> - <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow"/> - <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow" result="shape"/> - </filter> - <clipPath id="clip0"> - <rect width="66.8064" height="66.8064" fill="white" transform="translate(1 49.2393) rotate(-45)"/> - </clipPath> - </defs> +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<svg + width="298.77734" + height="353.68652" + viewBox="0 0 298.77734 353.68652" + version="1.1" + id="svg33" + sodipodi:docname="broken_pump.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" + xmlns:svg="http://www.w3.org/2000/svg"> + <defs + id="defs37" /> + <sodipodi:namedview + id="namedview35" + pagecolor="#505050" + bordercolor="#eeeeee" + borderopacity="1" + inkscape:pageshadow="0" + inkscape:pageopacity="0" + inkscape:pagecheckerboard="0" + showgrid="false" + inkscape:zoom="1.1046974" + inkscape:cx="79.659823" + inkscape:cy="175.6137" + inkscape:current-layer="svg33" /> + <path + style="fill:#fffaff;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:10.6982;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1" + d="m 103.38281,59.257787 66.23047,30.83593 -5.13672,11.031253 -66.23047,-30.839833 z m 0,0" + id="path6" /> + <path + style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" + d="m 124.39063,87.843747 h 19.86718 v 27.390623 h -19.86718 z m 0,0" + id="path8" /> + <path + style="fill:none;stroke:#ffffff;stroke-width:24.2043;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1" + d="m 123.09764,231.88278 72.62499,0.64062" + id="path10" /> + <path + style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:8.7561;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1" + d="m 124.39061,115.23438 22.34769,-4.36704 21.08983,107.84766 -22.34375,4.37109 z m 0,0" + id="path12" /> + <path + id="path14" + style="color:#000000;fill:#ffffff;-inkscape-stroke:none" + d="M 204.20312 88.146484 C 196.93654 88.146484 192.12015 91.921743 189.92188 95.601562 C 187.72361 99.281385 187.58008 102.9668 187.58008 102.9668 L 187.57617 103.06445 L 187.57617 144.36914 C 188.56092 144.19884 189.57533 144.10547 190.61133 144.10547 C 192.31225 144.10547 193.95297 144.34895 195.50195 144.79492 L 195.50195 103.33203 C 195.50395 103.29813 195.63436 101.49628 196.72656 99.667969 C 197.82907 97.822405 199.34472 96.072266 204.20312 96.072266 C 209.12026 96.072266 210.54669 97.740038 211.55273 99.410156 C 212.55878 101.08027 212.63477 102.72266 212.63477 102.72266 L 212.66406 112.42188 A 14.995412 20.715036 0 0 1 217.91992 111.07031 A 14.995412 20.715036 0 0 1 220.58594 111.4043 L 220.56055 102.56445 L 220.56055 102.51953 C 220.56055 102.51953 220.50175 98.906051 218.3418 95.320312 C 216.18183 91.734577 211.41098 88.146484 204.20312 88.146484 z M 212.7793 151.20312 L 212.9043 193.71484 L 220.83008 193.69141 L 220.70703 152.0957 A 14.995412 20.715036 0 0 1 217.91992 152.50195 A 14.995412 20.715036 0 0 1 212.7793 151.20312 z M 195.50195 175.66016 C 193.95309 176.10722 192.3121 176.34961 190.61133 176.34961 C 189.57533 176.34961 188.56092 176.25671 187.57617 176.08594 L 187.57617 198.28516 C 187.57617 201.26822 186.65359 202.68864 185.00195 204.01953 C 183.35032 205.35042 180.71842 206.33143 177.87109 206.84961 C 172.17644 207.88597 166.13086 207.15625 166.13086 207.15625 L 165.11133 215.01562 C 165.11133 215.01562 172.02475 215.97046 179.28906 214.64844 C 182.92122 213.98742 186.76858 212.7764 189.97656 210.19141 C 193.18454 207.60641 195.50195 203.38606 195.50195 198.28516 L 195.50195 175.66016 z " /> + <path + style="fill:#fffdff;fill-opacity:1;fill-rule:nonzero;stroke:#fffdff;stroke-width:6.09756;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:0.970149" + d="m 210.60153,186.38278 12.25,-0.0937 0.38281,14.14844 9.14843,-0.1914 0.31641,12.87109 -11.53515,-0.0781 c -8.32422,-0.82422 -11.21094,-3.68359 -10.62891,-10.88281 z m 0,0" + id="path16" /> + <path + style="fill:none;stroke:#ff002e;stroke-width:27.9635;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1" + d="m 69.01175,241.01174 59.85157,-58.8086" + id="path18" /> + <path + style="fill:none;stroke:#ff002e;stroke-width:27.9635;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1" + d="m 69.22269,181.05861 58.8086,59.85547" + id="path20" /> </svg> diff --git a/assets/layers/bike_repair_station/broken_pump_2.svg b/assets/layers/bike_repair_station/broken_pump_2.svg deleted file mode 100644 index 23c4e041d9..0000000000 --- a/assets/layers/bike_repair_station/broken_pump_2.svg +++ /dev/null @@ -1,218 +0,0 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - xmlns="http://www.w3.org/2000/svg" - width="123" - height="123" - viewBox="0 0 123 123" - version="1.1" - id="svg42" - sodipodi:docname="pump_broken_2.svg" - style="fill:none" - inkscape:version="0.92.4 (5da689c313, 2019-01-14)"> - <metadata - id="metadata46"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage"/> - <dc:title/> - </cc:Work> - </rdf:RDF> - </metadata> - <sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1001" - id="namedview44" - showgrid="false" - inkscape:zoom="4" - inkscape:cx="-9.1188224" - inkscape:cy="70.34059" - inkscape:window-x="0" - inkscape:window-y="0" - inkscape:window-maximized="1" - inkscape:current-layer="layer1"/> - <defs - id="defs40"> - <filter - id="filter0_d" - x="-3" - y="2" - width="102.479" - height="102.479" - filterUnits="userSpaceOnUse" - style="color-interpolation-filters:sRGB"> - <feFlood - flood-opacity="0" - result="BackgroundImageFix" - id="feFlood22"/> - <feColorMatrix - in="SourceAlpha" - type="matrix" - values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" - id="feColorMatrix24"/> - <feOffset - dy="4" - id="feOffset26"/> - <feGaussianBlur - stdDeviation="2" - id="feGaussianBlur28"/> - <feColorMatrix - type="matrix" - values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0" - id="feColorMatrix30"/> - <feBlend - mode="normal" - in2="BackgroundImageFix" - result="effect1_dropShadow" - id="feBlend32"/> - <feBlend - mode="normal" - in="SourceGraphic" - in2="effect1_dropShadow" - result="shape" - id="feBlend34"/> - </filter> - <clipPath - id="clip0"> - <rect - width="66.806396" - height="66.806396" - transform="rotate(-45,59.937093,23.412543)" - id="rect37" - x="0" - y="0" - style="fill:#ffffff"/> - </clipPath> - </defs> - <g - inkscape:groupmode="layer" - id="layer4" - inkscape:label="pin" - style="display:inline" - sodipodi:insensitive="true"> - <path - d="m 66.510602,115.17875 c -1.7831,3.887 -7.3059,3.887 -9.089,0 l -30.7431,-67.009004 c -1.5196,-3.3121 0.9005,-7.085 4.5445,-7.085 h 61.4862 c 3.644,0 6.0641,3.7729 4.5445,7.085 z" - id="path2" - inkscape:connector-curvature="0" - style="display:inline;fill:#080000;fill-opacity:1"/> - <circle - cx="61.466103" - cy="51.084747" - r="49" - id="circle4" - style="display:inline;fill:#080000;fill-opacity:1"/> - </g> - <g - inkscape:groupmode="layer" - id="layer1" - inkscape:label="re" - style="display:inline"> - <g - id="g917" - transform="translate(5,1)"> - <rect - transform="rotate(24.967846)" - y="1.1377027" - x="46.170929" - height="3.9908068" - width="23.963444" - id="rect834" - style="fill:#fffcff;fill-opacity:1;stroke:#ffffff;stroke-width:3.50900006;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/> - <rect - y="29.897583" - x="48.267147" - height="8.9842997" - width="6.5160999" - id="rect839" - style="fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:0;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/> - <path - inkscape:connector-curvature="0" - id="path842" - d="m 47.842047,77.142657 23.821625,0.209511" - style="fill:none;stroke:#ffffff;stroke-width:7.93900013;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/> - <rect - transform="rotate(-11.065474)" - y="47.422955" - x="39.907166" - height="36.044868" - width="7.4682202" - id="rect863" - style="display:inline;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:2.87199998;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/> - <path - sodipodi:nodetypes="cscscc" - inkscape:connector-curvature="0" - id="path868" - d="m 61.790577,70.321209 c 0,0 8.500256,1.104191 8.500256,-4.19911 V 34.921012 c 0,0 0.176777,-3.623922 4.154253,-3.623922 3.977475,0 4.065864,3.447145 4.065864,3.447145 l 0.08839,29.875262" - style="display:inline;fill:none;stroke:#ffffff;stroke-width:2.5999999;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/> - <path - sodipodi:nodetypes="cccccccc" - inkscape:connector-curvature="0" - id="path871" - d="m 76.543734,62.21875 4.018766,-0.03125 0.125,4.640625 3,-0.0625 0.104018,4.221891 -3.783471,-0.02589 c -2.730516,-0.27045 -3.676466,-1.207877 -3.48639,-3.569907 z" - style="display:inline;fill:#fffeff;fill-opacity:1;stroke:#fffeff;stroke-width:2;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.97014926"/> - </g> - <g - id="g878" - transform="matrix(1.1553126,0,0,1.1553126,-58.117412,7.3034699)"> - <path - inkscape:connector-curvature="0" - id="path842-3" - d="M 80.687554,63.907833 97.680134,47.211548" - style="display:inline;fill:none;stroke:#ff002f;stroke-width:7.93900013;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/> - <path - inkscape:connector-curvature="0" - id="path842-3-6" - d="m 80.747314,46.886624 16.696285,16.99258" - style="display:inline;fill:none;stroke:#ff002f;stroke-width:7.93900013;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/> - </g> - <g - id="g909" - transform="matrix(-0.38653686,0.32992528,-0.32992528,-0.38653686,119.84287,39.565492)"> - <path - inkscape:connector-curvature="0" - id="path880" - d="m 42.637117,56.719759 -9.765872,2.861858" - style="fill:none;stroke:#fff2f7;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/> - <path - inkscape:transform-center-y="2.136631" - inkscape:transform-center-x="-1.214029" - inkscape:connector-curvature="0" - id="path880-7" - d="M 41.55678,54.847892 31.427487,53.868138" - style="display:inline;fill:none;stroke:#fff2f7;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/> - <path - inkscape:connector-curvature="0" - id="path880-5" - d="M 42.912865,53.009676 34.053139,48.002904" - style="display:inline;fill:none;stroke:#fff2f7;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/> - <path - sodipodi:nodetypes="cssccssc" - inkscape:connector-curvature="0" - id="path903" - d="m 31.025218,63.115222 c 2.042393,5.538224 -7.895783,7.538343 -5.768336,-0.572763 0.08074,-0.30781 0.478017,-0.607839 -0.03073,-0.05738 C 18.565706,69.691605 9.0670288,58.551456 21.409975,56.398425 9.3199367,58.345808 13.883296,42.574618 25.69105,49.979718 13.8068,42.900226 25.044041,35.820386 28.701754,45.469171 c 0.03312,0.08736 0.04545,0.156338 0.03744,0.06922 -0.583131,-6.345206 4.758872,-4.454168 5.580546,-0.457695" - style="fill:none;stroke:#feffff;stroke-width:1px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1"/> - </g> - <ellipse - style="fill:#080000;fill-opacity:1;stroke:#000100;stroke-width:0.56348264;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="path964" - cx="83.75" - cy="33.734375" - rx="1.0120087" - ry="0.96513373"/> - </g> -</svg> diff --git a/assets/layers/bike_repair_station/license_info.json b/assets/layers/bike_repair_station/license_info.json index 1ae3b7f3d7..fb56c0978c 100644 --- a/assets/layers/bike_repair_station/license_info.json +++ b/assets/layers/bike_repair_station/license_info.json @@ -27,20 +27,6 @@ "https://osoc.be/editions/2020/cyclofix" ] }, - { - "path": "broken_pump_2.svg", - "license": "CC-BY-SA", - "authors": [ - "Pieter Fiers", - "Thibault Declercq", - "Pierre Barban", - "Joost Schouppe", - "Pieter Vander Vennet" - ], - "sources": [ - "https://osoc.be/editions/2020/cyclofix" - ] - }, { "path": "pump.svg", "license": "CC-BY-SA", @@ -98,6 +84,20 @@ "https://osoc.be/editions/2020/cyclofix" ] }, + { + "path": "repair_station_broken_pump.svg", + "license": "CC-BY-SA", + "authors": [ + "Pieter Fiers", + "Thibault Declercq", + "Pierre Barban", + "Joost Schouppe", + "Pieter Vander Vennet" + ], + "sources": [ + "https://osoc.be/editions/2020/cyclofix" + ] + }, { "path": "repair_station_example.jpg", "license": "CC-BY-SA 4.0", @@ -108,6 +108,26 @@ "https://wiki.openstreetmap.org/wiki/File:Public_Bike_Repair_Station.jpg" ] }, + { + "path": "repair_station_example_2.jpg", + "license": "CC-BY-SA 4.0 International", + "authors": [ + "MOs810" + ], + "sources": [ + "https://wiki.openstreetmap.org/wiki/File:Bike_repair_station,_Poznan_Kaponiera.jpg" + ] + }, + { + "path": "repair_station_example_3.jpg", + "license": "CC-BY-SA 3.0 Unported", + "authors": [ + "Thelmadatter" + ], + "sources": [ + "https://wiki.openstreetmap.org/wiki/File:BikeRepairMonterrey.JPG" + ] + }, { "path": "repair_station_pump.svg", "license": "CC-BY-SA", diff --git a/assets/layers/bike_repair_station/pump.svg b/assets/layers/bike_repair_station/pump.svg index 521d51af17..002cd28689 100644 --- a/assets/layers/bike_repair_station/pump.svg +++ b/assets/layers/bike_repair_station/pump.svg @@ -1,30 +1,77 @@ -<svg width="99" height="123" viewBox="0 0 99 123" fill="none" xmlns="http://www.w3.org/2000/svg"> - <path d="M55.0445 113.094C53.2614 116.981 47.7386 116.981 45.9555 113.094L15.2124 46.085C13.6928 42.7729 16.1129 39 19.7569 39L81.2431 39C84.8871 39 87.3072 42.7729 85.7876 46.085L55.0445 113.094Z" - fill="#E2783D"/> - <circle cx="50" cy="49" r="49" fill="#E2783D"/> - <g clip-path="url(#clip0)" filter="url(#filter0_d)"> - <path d="M59.2519 79.0738C60.5075 79.0738 61.7117 78.5751 62.5995 77.6872C63.4874 76.7994 63.9862 76.2998 63.9862 75.0442C63.9862 73.7886 63.4874 73.3516 62.5996 72.4637C61.7117 71.5759 60.5075 71.0771 59.2519 71.0771L53.3555 71.0815V69.4784L54.8823 69.4739C56.1376 69.4729 57.3412 68.9738 58.2288 68.0862C59.1164 67.1986 60.2656 66.2038 60.2666 64.9485L60.3118 33.5699C60.3119 33.2223 60.3118 32.5699 60.401 32.2506C60.5341 31.9295 60.547 31.5699 60.725 31.3919C60.9708 31.1462 61.1038 30.9511 61.4249 30.8181C61.746 30.6852 62.6524 30.5698 63 30.5699C63.3475 30.5699 63.9907 30.5669 64.3118 30.7C64.6329 30.833 64.9889 31.2478 65.3118 31.5699C65.5575 31.8156 65.5753 31.9295 65.7083 32.2506C65.8412 32.5717 65.9096 32.9158 65.9096 33.2634L65.9169 59.1411L64.8659 59.1411C64.5926 59.1418 64.3306 59.2497 64.136 59.4415C63.9414 59.6334 63.8298 59.8938 63.8251 60.167L63.7587 64.9175C63.7491 65.609 63.8771 66.2955 64.1351 66.9371C64.393 67.5787 64.776 68.1626 65.2616 68.6549C65.7472 69.1473 66.3258 69.5382 66.9638 69.805C67.6017 70.0718 68.2864 70.2091 68.9779 70.2091L72.1237 70.2091C72.4005 70.209 72.666 70.0991 72.8617 69.9033C73.0574 69.7076 73.1674 69.4422 73.1674 69.1654L73.1674 64.7367C73.1674 64.5979 73.1396 64.4605 73.0857 64.3326C73.0319 64.2046 72.9531 64.0887 72.8539 63.9916C72.7547 63.8944 72.6372 63.8181 72.5081 63.7669C72.3791 63.7158 72.2411 63.6909 72.1023 63.6938L70.1412 63.7358L70.091 60.1693C70.0863 59.8961 69.9747 59.6356 69.7801 59.4438C69.5855 59.2519 69.3235 59.1441 69.0502 59.1433L68.3794 59.1411L68.7232 33.5699C68.7232 32.3143 68.1997 30.4577 67.3118 29.5699C66.424 28.682 65.5 28.0699 63 28.0699C60.7903 28.0699 59.6997 28.682 58.8118 29.5699C57.924 30.4577 57.5395 32.0115 57.5395 33.2671L57.5395 64.7441C57.5383 65.4457 57.2591 66.1183 56.7629 66.6144C56.2668 67.1105 55.5943 67.3898 54.8926 67.391L53.3555 67.391V35.2151C53.3555 34.9383 53.2455 34.6729 53.0498 34.4771C52.854 34.2814 52.5886 34.1715 52.3118 34.1714L51.4973 34.1714L51.4973 25.1871L60.7872 25.1871C61.064 25.187 61.3294 25.0771 61.5252 24.8814C61.7209 24.6856 61.8309 24.4202 61.8309 24.1434V18.9766C61.8308 18.6998 61.7209 18.4344 61.5252 18.2386C61.3294 18.0429 61.064 17.933 60.7872 17.9329L35.6913 17.9329C35.4145 17.9329 35.1491 18.0429 34.9534 18.2386C34.7577 18.4344 34.6477 18.6998 34.6476 18.9766L34.6476 24.1434C34.6477 24.4202 34.7577 24.6856 34.9534 24.8814C35.1491 25.0771 35.4145 25.187 35.6913 25.1871L44.9812 25.1871L44.9812 34.1714L44.1543 34.1714C43.8775 34.1715 43.6121 34.2814 43.4164 34.4771C43.2206 34.6729 43.1107 34.9383 43.1106 35.2151L43.1106 71.0771L37.2266 71.0771C35.971 71.0771 34.7668 71.5759 33.879 72.4637C32.9911 73.3516 32.4923 73.7886 32.4923 75.0442C32.4923 76.2998 32.9911 76.7994 33.879 77.6872C34.7668 78.575 35.971 79.0738 37.2266 79.0738L59.2519 79.0738ZM68.0612 64.8135C68.0631 64.951 68.0922 65.0869 68.1468 65.2131C68.2014 65.3394 68.2805 65.4536 68.3794 65.5493C68.4783 65.6449 68.5952 65.72 68.7232 65.7703C68.8512 65.8206 68.988 65.8451 69.1255 65.8424L71.0749 65.8033L71.0771 68.1246L68.975 68.1246C68.5599 68.1247 68.149 68.0423 67.7661 67.8822C67.3832 67.722 67.0359 67.4874 66.7445 67.1918C66.4531 66.8963 66.2234 66.5458 66.0686 66.1607C65.9139 65.7756 65.8372 65.3635 65.8431 64.9485L65.8926 61.2248H68.0154L68.0612 64.8135ZM36.735 23.0997L36.735 20.0203L59.7435 20.0203L59.7435 23.0997L50.4536 23.0997L46.0249 23.0997L36.735 23.0997ZM47.0686 25.1871L49.4099 25.1871L49.4099 34.1714L47.0686 34.1714V25.1871ZM44.8543 36.2588H46.0249L50.4536 36.2588L51.6243 36.2588L51.6243 67.3865L44.8543 67.3865L44.8543 36.2588ZM44.8543 69.4739L51.6243 69.4739L51.6243 74.0296L44.8543 74.0296L44.8543 69.4739ZM34.5797 75.0442C34.5929 74.3464 34.876 74.4479 35.3696 73.9543C35.8631 73.4608 36.5287 73.1777 37.2266 73.1645L43.1106 73.1645L43.1106 74.3061C43.1107 74.5829 43.2206 74.8483 43.4163 75.0441C43.6121 75.2398 43.8775 75.3498 44.1543 75.3498L52.3118 75.3542C52.5886 75.3542 52.854 75.2442 53.0498 75.0485C53.2455 74.8528 53.3555 74.5873 53.3555 74.3105V73.1689L59.2519 73.1645C59.5999 73.163 59.9448 73.2305 60.2666 73.363C60.5884 73.4955 60.8808 73.6904 61.1268 73.9365C61.3729 74.1825 61.5678 73.7078 61.7003 74.0296C61.8328 74.3514 61.9003 74.6962 61.8988 75.0442C61.8856 75.7421 61.6025 75.7031 61.1089 76.1966C60.6154 76.6902 59.9498 76.9733 59.2519 76.9864L37.2266 76.9864C36.8786 76.9879 36.5337 76.9205 36.2119 76.788C35.8901 76.6555 35.5978 76.4606 35.3517 76.2145C35.1056 75.9684 34.9107 75.676 34.7782 75.3542C34.6457 75.0324 34.5783 75.3922 34.5797 75.0442Z" - fill="white"/> - <rect x="44.3118" y="35.5698" width="8" height="39" fill="white"/> - <rect x="35.3118" y="19.5699" width="25" height="4" fill="white"/> - <rect x="46.3119" y="21.5698" width="4" height="14" fill="white"/> - <rect x="34.3118" y="72.5698" width="28" height="5" fill="white"/> - <rect x="65.3119" y="60.5698" width="4" height="8" fill="white"/> - <rect x="68.3118" y="64.5699" width="3" height="4" fill="white"/> - </g> - <defs> - <filter id="filter0_d" x="-3" y="2" width="102.479" height="102.479" filterUnits="userSpaceOnUse" - color-interpolation-filters="sRGB"> - <feFlood flood-opacity="0" result="BackgroundImageFix"/> - <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/> - <feOffset dy="4"/> - <feGaussianBlur stdDeviation="2"/> - <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"/> - <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow"/> - <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow" result="shape"/> - </filter> - <clipPath id="clip0"> - <rect width="66.8064" height="66.8064" fill="white" transform="translate(1 49.2393) rotate(-45)"/> - </clipPath> - </defs> +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<svg + width="297.96094" + height="351.7998" + viewBox="0 0 297.96094 351.7998" + version="1.1" + id="svg22" + sodipodi:docname="pump.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:xlink="http://www.w3.org/1999/xlink" + xmlns="http://www.w3.org/2000/svg" + xmlns:svg="http://www.w3.org/2000/svg"> + <sodipodi:namedview + id="namedview24" + pagecolor="#505050" + bordercolor="#eeeeee" + borderopacity="1" + inkscape:pageshadow="0" + inkscape:pageopacity="0" + inkscape:pagecheckerboard="0" + showgrid="false" + inkscape:zoom="2.2546917" + inkscape:cx="147.24851" + inkscape:cy="161.44114" + inkscape:current-layer="svg22" /> + <defs + id="defs9"> + <clipPath + id="clip1"> + <path + d="M 3,6 H 291 V 293 H 3 Z m 0,0" + id="path2" /> + </clipPath> + <clipPath + id="clip2"> + <path + d="M 3.039062,149.32031 146.66797,6.066406 l 143.625,143.253904 -143.625,143.25391 z m 0,0" + id="path5" /> + </clipPath> + + </defs> + <g + id="surface1" + transform="matrix(0.79284811,0,0,0.79284811,0.30228518,0.28018648)"> + <path + style="fill:#fffaff;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:3.509;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1" + d="M 47.663415,21.641872 H 71.627478 V 25.63231 H 47.663415 Z m 0,0" + transform="matrix(3.826531,0,0,3.826531,-47.701923,-7.977349)" + id="path2-3" /> + <path + style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" + d="m 168.29687,96.378906 h 24.9336 v 34.378904 h -24.9336 z m 0,0" + id="path4" /> + <path + style="fill:none;stroke:#ffffff;stroke-width:7.939;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1" + d="M 47.842061,77.142539 71.663207,77.35181" + transform="matrix(3.826531,0,0,3.826531,-47.701923,-7.977349)" + id="path6" /> + <path + style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:2.872;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1" + d="m 55.906644,37.580143 h 7.468417 v 36.044604 h -7.468417 z m 0,0" + transform="matrix(3.826531,0,0,3.826531,-47.701923,-7.977349)" + id="path8" /> + <path + style="fill:none;stroke:#ffffff;stroke-width:2.6;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1" + d="m 64.040644,70.321331 c 0,0 6.250563,1.104541 6.250563,-4.199709 0,-5.303229 0,-31.20075 0,-31.20075 0,0 0.176604,-3.623958 4.153771,-3.623958 3.977166,0 4.065979,3.447354 4.065979,3.447354 l 0.08881,29.875708" + transform="matrix(3.826531,0,0,3.826531,-47.701923,-7.977349)" + id="path10" /> + <path + style="fill:#fffdff;fill-opacity:1;fill-rule:nonzero;stroke:#fffdff;stroke-width:2;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:0.970149" + d="m 76.543811,62.218976 4.019021,-0.03164 0.124541,4.640708 3.00023,-0.06227 0.104125,4.222167 -3.783209,-0.02654 C 77.27779,70.690872 76.331478,69.753747 76.521353,67.391539 Z m 0,0" + transform="matrix(3.826531,0,0,3.826531,-47.701923,-7.977349)" + id="path12" /> + </g> </svg> diff --git a/assets/layers/bike_repair_station/repair_station.svg b/assets/layers/bike_repair_station/repair_station.svg index 1eaaec0582..782f1edb59 100644 --- a/assets/layers/bike_repair_station/repair_station.svg +++ b/assets/layers/bike_repair_station/repair_station.svg @@ -1,73 +1,59 @@ -<svg width="98" height="121" viewBox="0 0 98 121" fill="none" xmlns="http://www.w3.org/2000/svg"> - <path d="M53.0072 111.614C51.1916 115.395 45.8084 115.395 43.9928 111.614L13.4024 47.9145C11.8084 44.5952 14.2275 40.75 17.9097 40.75L79.0903 40.75C82.7725 40.75 85.1916 44.5952 83.5976 47.9145L53.0072 111.614Z" - fill="#32ADF2"/> - <circle cx="49" cy="49" r="49" fill="#32ADF2"/> - <g filter="url(#filter0_d)"> - <path d="M62.84 50.816C63.9413 50.7413 64.912 50.704 65.752 50.704C68.1973 50.704 69.42 52.188 69.42 55.156C69.42 58.4787 68.0853 60.14 65.416 60.14C64.632 60.14 63.7733 60.07 62.84 59.93V50.816ZM65.416 59.16C66.0693 59.16 66.564 58.9967 66.9 58.67C67.236 58.3433 67.4553 57.914 67.558 57.382C67.6607 56.8407 67.712 56.164 67.712 55.352C67.712 54.2693 67.5673 53.3873 67.278 52.706C66.9887 52.0247 66.4473 51.684 65.654 51.684C65.3087 51.684 64.9167 51.7073 64.478 51.754V59.076C64.814 59.132 65.1267 59.16 65.416 59.16ZM72.3803 50.76V60H70.7423V50.76H72.3803ZM77.5646 55.73V60H75.9266V55.898L73.2386 50.76H75.0306L76.8506 54.554L78.5726 50.76H80.2526L77.5646 55.73Z" - fill="#FFFBFB"/> - </g> - <g filter="url(#filter1_d)"> - <path d="M39.0246 31.9734L35.4086 34.9306L35.3903 34.9459C34.5486 35.6731 34.0429 36.7274 34.0026 37.8384C33.9731 38.6517 34.1956 39.4521 34.6251 40.1313L38.1101 36.6498C38.4539 36.3063 39.0114 36.3063 39.3553 36.6498C39.6992 36.9933 39.6992 37.5503 39.3553 37.8939L35.8705 41.3753C36.5103 41.7791 37.2574 42 38.0217 42C38.0696 42 38.1176 41.9991 38.1656 41.9974C39.2777 41.9571 40.333 41.4519 41.0609 40.6109L44.0362 36.9802L39.0246 31.9734Z" - fill="#FFF7F7"/> - <path d="M42.008 29.5336L40.394 30.8535L45.1573 35.6121L46.4786 33.9998L42.008 29.5336Z" fill="#FFF7F7"/> - <path d="M44.8629 29.9L46.0573 28.7068L47.3023 29.9507L46.1079 31.1439L44.8629 29.9Z" fill="#FFF7F7"/> - <path d="M52.5127 22.2598L57.2054 17.5716L58.4505 18.8155L53.7578 23.5036L52.5127 22.2598Z" fill="#FFF7F7"/> - <path d="M57.5981 15.4757L61.0772 12L63.9954 14.9153L60.5163 18.3911L57.5981 15.4757Z" fill="#FFF7F7"/> - <path d="M60.4798 30.9612C59.5828 30.0651 58.4814 29.5914 57.295 29.5914C56.9717 29.5914 56.6419 29.627 56.3147 29.6972C55.9636 29.7724 55.582 29.6566 55.3244 29.3991L44.7335 18.8186C44.4694 18.5548 44.3563 18.1695 44.4387 17.813C44.8015 16.2466 44.358 14.7415 43.1901 13.5748C42.1736 12.5592 40.822 12 39.3843 12C38.6498 12 37.9365 12.1457 37.2643 12.4332L36.8657 12.6037L39.9617 15.6966L37.7009 17.9551L34.6051 14.8621L34.4344 15.2604C34.016 16.2367 33.8969 17.3068 34.0898 18.3552C34.2874 19.4288 34.8017 20.4057 35.577 21.1804C36.474 22.0765 37.5753 22.5502 38.7617 22.5502C39.0851 22.5502 39.415 22.5146 39.7421 22.4444C39.8146 22.4288 39.8888 22.421 39.963 22.421C40.2476 22.421 40.5281 22.5382 40.7325 22.7425L51.3233 33.323C51.5877 33.587 51.7007 33.9726 51.618 34.3292C51.2554 35.8951 51.6988 37.4001 52.8667 38.5668C53.8832 39.5824 55.2348 40.1417 56.6725 40.1416C57.4071 40.1416 58.1204 39.9958 58.7924 39.7084L59.1912 39.5379L56.0952 36.445L58.3559 34.1866L61.4517 37.2794L61.6224 36.8811C62.0408 35.9049 62.1599 34.8348 61.967 33.7865C61.7694 32.7128 61.2551 31.7358 60.4798 30.9612Z" - fill="#FFF7F7"/> - </g> - <g filter="url(#filter2_d)"> - <path d="M37.5636 72.4372H24.7595L31.7436 56.4962H38.7276H43.7716H49.2037M49.2037 56.4962L47.2636 52H49.9797H52.6957M49.2037 56.4962L49.9797 58.5399L51.5317 61.8098L55.7997 72.4372M49.2037 56.4962L45.5176 62.6273L43.306 66.306M41.8316 68.7585L43.306 66.306M34.4596 60.9924L38.3396 69.9847L30.5796 52L32.9076 56.9049M40.6676 70.8022L43.306 66.306" - stroke="white" stroke-width="2"/> - <path d="M41.6601 71.7418C41.6601 73.0707 40.6438 74.103 39.4441 74.103C38.2444 74.103 37.2281 73.0707 37.2281 71.7418C37.2281 70.4128 38.2444 69.3806 39.4441 69.3806C40.6438 69.3806 41.6601 70.4128 41.6601 71.7418Z" - stroke="white"/> - <path d="M33.4001 70.9243C33.4001 76.0653 29.4565 80.1429 24.7001 80.1429C19.9436 80.1429 16 76.0653 16 70.9243C16 65.7833 19.9436 61.7057 24.7001 61.7057C29.4565 61.7057 33.4001 65.7833 33.4001 70.9243Z" - stroke="white" stroke-width="2"/> - </g> - <g filter="url(#filter3_d)"> - <path d="M64 71.5C64 76.7932 59.9251 81 55 81C50.0749 81 46 76.7932 46 71.5C46 66.2068 50.0749 62 55 62C59.9251 62 64 66.2068 64 71.5Z" - stroke="white" stroke-width="2"/> - </g> - <defs> - <filter id="filter0_d" x="58.84" y="50.704" width="25.4126" height="17.436" filterUnits="userSpaceOnUse" - color-interpolation-filters="sRGB"> - <feFlood flood-opacity="0" result="BackgroundImageFix"/> - <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/> - <feOffset dy="4"/> - <feGaussianBlur stdDeviation="2"/> - <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"/> - <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow"/> - <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow" result="shape"/> - </filter> - <filter id="filter1_d" x="30" y="12" width="37.9954" height="38" filterUnits="userSpaceOnUse" - color-interpolation-filters="sRGB"> - <feFlood flood-opacity="0" result="BackgroundImageFix"/> - <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/> - <feOffset dy="4"/> - <feGaussianBlur stdDeviation="2"/> - <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"/> - <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow"/> - <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow" result="shape"/> - </filter> - <filter id="filter2_d" x="11" y="51" width="54.7667" height="38.1429" filterUnits="userSpaceOnUse" - color-interpolation-filters="sRGB"> - <feFlood flood-opacity="0" result="BackgroundImageFix"/> - <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/> - <feOffset dy="4"/> - <feGaussianBlur stdDeviation="2"/> - <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"/> - <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow"/> - <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow" result="shape"/> - </filter> - <filter id="filter3_d" x="41" y="61" width="28" height="29" filterUnits="userSpaceOnUse" - color-interpolation-filters="sRGB"> - <feFlood flood-opacity="0" result="BackgroundImageFix"/> - <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/> - <feOffset dy="4"/> - <feGaussianBlur stdDeviation="2"/> - <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"/> - <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow"/> - <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow" result="shape"/> - </filter> - </defs> +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<svg + width="303" + height="353.75391" + viewBox="0 0 303 353.75391" + version="1.1" + id="svg21" + sodipodi:docname="repair_station.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" + xmlns:svg="http://www.w3.org/2000/svg"> + <defs + id="defs10" /> + <sodipodi:namedview + id="namedview23" + pagecolor="#505050" + bordercolor="#eeeeee" + borderopacity="1" + inkscape:pageshadow="0" + inkscape:pageopacity="0" + inkscape:pagecheckerboard="0" + showgrid="false" + inkscape:zoom="2.2486631" + inkscape:cx="151.64566" + inkscape:cy="187.22235" + inkscape:current-layer="svg21" /> + <path + style="fill:#feffff;fill-opacity:1;stroke:none;stroke-width:1.97728px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="M 78.094298,75.276172 99.465716,96.064632 112.94263,82.133831 93.027553,60.643501 c 0,0 49.817067,-14.524823 44.465977,34.961514 -0.0367,0.339557 70.23356,71.214035 70.23356,71.214035 47.81484,-8.02817 35.81789,45.47112 35.81789,45.47112 l -22.68221,-21.06445 -13.18046,14.60845 21.09318,19.98897 c 0,0 -49.53242,14.80277 -46.87766,-37.76153 0.0275,-0.54412 -69.11138,-67.6753 -69.11138,-67.6753 -48.526837,3.7379 -34.692152,-45.110138 -34.692152,-45.110138 z" + id="path886" + sodipodi:nodetypes="ccccscccccscc" /> + <path + style="fill:#feffff;fill-opacity:1;stroke:none;stroke-width:1.97728px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 118.33626,166.89121 c -14.52781,24.8942 -79.689479,29.97303 -47.349409,65.89854 32.340089,35.92552 39.940129,-35.46137 65.307089,-47.63356 z" + id="path2590" + sodipodi:nodetypes="cscc" /> + <path + style="fill:none;stroke:#ffffff;stroke-width:9.88638;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="m 131.2664,171.82291 12.43401,-12.06668" + id="path2815" + sodipodi:nodetypes="cc" /> + <path + style="fill:none;stroke:#ffffff;stroke-width:9.88638;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="m 131.2664,171.82291 12.43401,-12.06668" + id="path4002" + sodipodi:nodetypes="cc" /> + <path + style="fill:none;stroke:#ffffff;stroke-width:9.88638;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 177.74112,127.49099 213.427,91.87753" + id="path4141" + sodipodi:nodetypes="cc" /> + <path + style="fill:none;stroke:#ffffff;stroke-width:19.7728;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 217.47704,85.567929 229.91105,73.501277" + id="path4436" + sodipodi:nodetypes="cc" /> </svg> diff --git a/assets/layers/bike_repair_station/repair_station_broken_pump.svg b/assets/layers/bike_repair_station/repair_station_broken_pump.svg new file mode 100644 index 0000000000..e456c12712 --- /dev/null +++ b/assets/layers/bike_repair_station/repair_station_broken_pump.svg @@ -0,0 +1,103 @@ +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<svg + width="303" + height="353.75391" + viewBox="0 0 303 353.75391" + version="1.1" + id="svg21" + sodipodi:docname="repair_station_broken_pump.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" + xmlns:svg="http://www.w3.org/2000/svg"> + <defs + id="defs19" /> + <sodipodi:namedview + id="namedview23" + pagecolor="#505050" + bordercolor="#eeeeee" + borderopacity="1" + inkscape:pageshadow="0" + inkscape:pageopacity="0" + inkscape:pagecheckerboard="0" + showgrid="false" + inkscape:zoom="1.2141956" + inkscape:cx="91.418549" + inkscape:cy="230.60535" + inkscape:current-layer="svg21" + inkscape:snap-global="false" /> + <g + id="g871" + transform="matrix(0.69287706,0,0,0.69287706,-5.2037299,24.459351)"> + <path + style="fill:#feffff;fill-opacity:1;stroke:none;stroke-width:2.1658px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="M 70.90581,68.082104 94.314902,90.852655 109.07678,75.593612 87.262888,52.05427 c 0,0 54.566912,-15.909703 48.705622,38.294946 -0.0402,0.371932 76.93003,78.003994 76.93003,78.003994 52.37378,-8.79363 39.23297,49.80659 39.23297,49.80659 l -24.84486,-23.07285 -14.43716,16.0013 23.10432,21.89484 c 0,0 -54.25512,16.21415 -51.34724,-41.36193 0.0301,-0.596 -75.70086,-74.12786 -75.70086,-74.12786 -53.153663,4.0943 -37.9999,-49.411196 -37.9999,-49.411196 z" + id="path886" + sodipodi:nodetypes="ccccscccccscc" /> + <g + id="g862"> + <path + style="fill:#feffff;fill-opacity:1;stroke:none;stroke-width:2.1658px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="M 114.98467,168.43225 C 99.071699,195.7 27.69714,201.26308 63.120698,240.61393 98.54428,279.9648 106.86895,201.77147 134.65454,188.43871 Z" + id="path2590" + sodipodi:nodetypes="cscc" /> + <path + style="fill:none;stroke:#ffffff;stroke-width:10.829;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="m 129.14765,173.83416 13.61954,-13.21718" + id="path2815" + sodipodi:nodetypes="cc" /> + <path + style="fill:none;stroke:#ffffff;stroke-width:10.829;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="m 129.14765,173.83416 13.61954,-13.21718" + id="path4002" + sodipodi:nodetypes="cc" /> + <path + style="fill:none;stroke:#ffffff;stroke-width:10.829;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 180.05353,125.27538 219.14191,86.266331" + id="path4141" + sodipodi:nodetypes="cc" /> + </g> + <path + style="fill:none;stroke:#ffffff;stroke-width:21.658;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 223.5781,79.355137 237.19764,66.137981" + id="path4436" + sodipodi:nodetypes="cc" /> + </g> + <g + id="g854" + transform="matrix(0.52673799,0,0,0.52673799,133.44161,115.82331)"> + <path + style="fill:#fffaff;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:10.6982;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1" + d="m 103.38281,59.257787 66.23047,30.83593 -5.13672,11.031253 -66.23047,-30.839833 z m 0,0" + id="path6" /> + <path + style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" + d="m 124.39063,87.843747 h 19.86718 v 27.390623 h -19.86718 z m 0,0" + id="path8" /> + <path + style="fill:none;stroke:#ffffff;stroke-width:24.2043;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1" + d="m 123.09764,231.88278 72.62499,0.64062" + id="path10" /> + <path + style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:8.7561;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1" + d="m 124.39061,115.23438 22.34769,-4.36704 21.08983,107.84766 -22.34375,4.37109 z m 0,0" + id="path12" /> + <path + id="path14" + style="color:#000000;fill:#ffffff;-inkscape-stroke:none" + d="m 204.20312,88.146484 c -7.26658,0 -12.08297,3.775259 -14.28124,7.455078 -2.19827,3.679823 -2.3418,7.365238 -2.3418,7.365238 l -0.004,0.0976 v 41.30469 c 0.98475,-0.1703 1.99916,-0.26367 3.03516,-0.26367 1.70092,0 3.34164,0.24348 4.89062,0.68945 v -41.46289 c 0.002,-0.0339 0.13241,-1.83575 1.22461,-3.664061 1.10251,-1.845564 2.61816,-3.595703 7.47656,-3.595703 4.91714,0 6.34357,1.667772 7.34961,3.33789 1.00605,1.670114 1.08204,3.312504 1.08204,3.312504 l 0.0293,9.69922 a 14.995412,20.715036 0 0 1 5.25586,-1.35157 14.995412,20.715036 0 0 1 2.66602,0.33399 l -0.0254,-8.83985 v -0.0449 c 0,0 -0.0588,-3.613479 -2.21875,-7.199218 -2.15997,-3.585735 -6.93082,-7.173828 -14.13868,-7.173828 z m 8.57618,63.056636 0.125,42.51172 7.92578,-0.0234 -0.12305,-41.59571 a 14.995412,20.715036 0 0 1 -2.78711,0.40625 14.995412,20.715036 0 0 1 -5.14062,-1.29883 z m -17.27735,24.45704 c -1.54886,0.44706 -3.18985,0.68945 -4.89062,0.68945 -1.036,0 -2.05041,-0.0929 -3.03516,-0.26367 v 22.19922 c 0,2.98306 -0.92258,4.40348 -2.57422,5.73437 -1.65163,1.33089 -4.28353,2.3119 -7.13086,2.83008 -5.69465,1.03636 -11.74023,0.30664 -11.74023,0.30664 l -1.01953,7.85937 c 0,0 6.91342,0.95484 14.17773,-0.36718 3.63216,-0.66102 7.47952,-1.87204 10.6875,-4.45703 3.20798,-2.585 5.52539,-6.80535 5.52539,-11.90625 z" /> + <path + style="fill:#fffdff;fill-opacity:1;fill-rule:nonzero;stroke:#fffdff;stroke-width:6.09756;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:0.970149" + d="m 210.60153,186.38278 12.25,-0.0937 0.38281,14.14844 9.14843,-0.1914 0.31641,12.87109 -11.53515,-0.0781 c -8.32422,-0.82422 -11.21094,-3.68359 -10.62891,-10.88281 z m 0,0" + id="path16" /> + <path + style="fill:none;stroke:#ff002e;stroke-width:27.9635;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1" + d="m 69.01175,241.01174 59.85157,-58.8086" + id="path18" /> + <path + style="fill:none;stroke:#ff002e;stroke-width:27.9635;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1" + d="m 69.22269,181.05861 58.8086,59.85547" + id="path20" /> + </g> +</svg> diff --git a/assets/layers/bike_repair_station/repair_station_example_2.jpg b/assets/layers/bike_repair_station/repair_station_example_2.jpg new file mode 100644 index 0000000000..52ca83a53e Binary files /dev/null and b/assets/layers/bike_repair_station/repair_station_example_2.jpg differ diff --git a/assets/layers/bike_repair_station/repair_station_example_3.jpg b/assets/layers/bike_repair_station/repair_station_example_3.jpg new file mode 100644 index 0000000000..e4cdcaff97 Binary files /dev/null and b/assets/layers/bike_repair_station/repair_station_example_3.jpg differ diff --git a/assets/layers/bike_repair_station/repair_station_pump.svg b/assets/layers/bike_repair_station/repair_station_pump.svg index 8b70d96d42..0e650d0efe 100644 --- a/assets/layers/bike_repair_station/repair_station_pump.svg +++ b/assets/layers/bike_repair_station/repair_station_pump.svg @@ -1,96 +1,99 @@ -<svg width="98" height="121" viewBox="0 0 98 121" fill="none" xmlns="http://www.w3.org/2000/svg"> - <path d="M53.0072 111.614C51.1916 115.395 45.8084 115.395 43.9928 111.614L13.4024 47.9145C11.8084 44.5952 14.2275 40.75 17.9097 40.75L79.0903 40.75C82.7725 40.75 85.1916 44.5952 83.5976 47.9145L53.0072 111.614Z" - fill="#70C549"/> - <circle cx="49" cy="49" r="49" fill="#70C549"/> - <g filter="url(#filter0_d)"> - <path d="M62.84 52.816C63.9413 52.7413 64.912 52.704 65.752 52.704C68.1973 52.704 69.42 54.188 69.42 57.156C69.42 60.4787 68.0853 62.14 65.416 62.14C64.632 62.14 63.7733 62.07 62.84 61.93V52.816ZM65.416 61.16C66.0693 61.16 66.564 60.9967 66.9 60.67C67.236 60.3433 67.4553 59.914 67.558 59.382C67.6607 58.8407 67.712 58.164 67.712 57.352C67.712 56.2693 67.5673 55.3873 67.278 54.706C66.9887 54.0247 66.4473 53.684 65.654 53.684C65.3087 53.684 64.9167 53.7073 64.478 53.754V61.076C64.814 61.132 65.1267 61.16 65.416 61.16ZM72.3803 52.76V62H70.7423V52.76H72.3803ZM77.5646 57.73V62H75.9266V57.898L73.2386 52.76H75.0306L76.8506 56.554L78.5726 52.76H80.2526L77.5646 57.73Z" - fill="#FFFBFB"/> +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<svg + width="303" + height="353.75391" + viewBox="0 0 303 353.75391" + version="1.1" + id="svg21" + sodipodi:docname="repair_station_pump.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" + xmlns:svg="http://www.w3.org/2000/svg"> + <defs + id="defs19" /> + <sodipodi:namedview + id="namedview23" + pagecolor="#505050" + bordercolor="#eeeeee" + borderopacity="1" + inkscape:pageshadow="0" + inkscape:pageopacity="0" + inkscape:pagecheckerboard="0" + showgrid="false" + inkscape:zoom="1.2141956" + inkscape:cx="91.418549" + inkscape:cy="230.60535" + inkscape:current-layer="svg21" /> + <g + id="g871" + transform="matrix(0.73612812,0,0,0.73612812,-7.5123741,22.302095)"> + <path + style="fill:#feffff;fill-opacity:1;stroke:none;stroke-width:2.1658px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="M 70.90581,68.082104 94.314902,90.852655 109.07678,75.593612 87.262888,52.05427 c 0,0 54.566912,-15.909703 48.705622,38.294946 -0.0402,0.371932 76.93003,78.003994 76.93003,78.003994 52.37378,-8.79363 39.23297,49.80659 39.23297,49.80659 l -24.84486,-23.07285 -14.43716,16.0013 23.10432,21.89484 c 0,0 -54.25512,16.21415 -51.34724,-41.36193 0.0301,-0.596 -75.70086,-74.12786 -75.70086,-74.12786 -53.153663,4.0943 -37.9999,-49.411196 -37.9999,-49.411196 z" + id="path886" + sodipodi:nodetypes="ccccscccccscc" /> + <g + id="g862"> + <path + style="fill:#feffff;fill-opacity:1;stroke:none;stroke-width:2.1658px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="M 114.98467,168.43225 C 99.071699,195.7 27.69714,201.26308 63.120698,240.61393 98.54428,279.9648 106.86895,201.77147 134.65454,188.43871 Z" + id="path2590" + sodipodi:nodetypes="cscc" /> + <path + style="fill:none;stroke:#ffffff;stroke-width:10.829;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="m 129.14765,173.83416 13.61954,-13.21718" + id="path2815" + sodipodi:nodetypes="cc" /> + <path + style="fill:none;stroke:#ffffff;stroke-width:10.829;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="m 129.14765,173.83416 13.61954,-13.21718" + id="path4002" + sodipodi:nodetypes="cc" /> + <path + style="fill:none;stroke:#ffffff;stroke-width:10.829;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 180.05353,125.27538 219.14191,86.266331" + id="path4141" + sodipodi:nodetypes="cc" /> </g> - <g filter="url(#filter1_d)"> - <path d="M23.0246 34.9734L19.4086 37.9306L19.3903 37.9459C18.5486 38.6731 18.0429 39.7274 18.0026 40.8384C17.9731 41.6517 18.1956 42.4521 18.6251 43.1313L22.1101 39.6498C22.4539 39.3063 23.0114 39.3063 23.3553 39.6498C23.6992 39.9933 23.6992 40.5503 23.3553 40.8939L19.8705 44.3753C20.5103 44.7791 21.2574 45 22.0217 45C22.0696 45 22.1176 44.9991 22.1656 44.9974C23.2777 44.9571 24.333 44.4519 25.0609 43.6109L28.0362 39.9802L23.0246 34.9734Z" - fill="#FFF7F7"/> - <path d="M26.008 32.5336L24.394 33.8534L29.1573 38.612L30.4786 36.9997L26.008 32.5336Z" fill="#FFF7F7"/> - <path d="M28.8629 32.9L30.0573 31.7068L31.3023 32.9507L30.1079 34.1439L28.8629 32.9Z" fill="#FFF7F7"/> - <path d="M36.5127 25.2598L41.2054 20.5716L42.4505 21.8155L37.7578 26.5036L36.5127 25.2598Z" fill="#FFF7F7"/> - <path d="M41.5981 18.4757L45.0772 15L47.9954 17.9153L44.5163 21.3911L41.5981 18.4757Z" fill="#FFF7F7"/> - <path d="M46.423 34.0562C45.526 33.1601 44.4247 32.6864 43.2382 32.6864C42.915 32.6864 42.5851 32.722 42.258 32.7922C41.9069 32.8674 41.5252 32.7516 41.2676 32.4941L30.6768 21.9136C30.4126 21.6498 30.2996 21.2645 30.382 20.908C30.7447 19.3415 30.3013 17.8365 29.1334 16.6698C28.1169 15.6542 26.7652 15.095 25.3275 15.095C24.593 15.095 23.8798 15.2407 23.2076 15.5282L22.8089 15.6987L25.9049 18.7916L23.6442 21.05L20.5483 17.9571L20.3776 18.3554C19.9593 19.3316 19.8402 20.4017 20.0331 21.4501C20.2306 22.5238 20.7449 23.5007 21.5202 24.2754C22.4173 25.1715 23.5185 25.6452 24.705 25.6451C25.0284 25.6451 25.3582 25.6095 25.6854 25.5393C25.7578 25.5238 25.8321 25.5159 25.9062 25.5159C26.1908 25.5159 26.4713 25.6332 26.6757 25.8375L37.2665 36.418C37.5309 36.6819 37.6439 37.0676 37.5612 37.4242C37.1986 38.99 37.6421 40.4951 38.8099 41.6618C39.8265 42.6774 41.1781 43.2367 42.6158 43.2366C43.3504 43.2365 44.0636 43.0908 44.7356 42.8034L45.1344 42.6328L42.0385 39.54L44.2991 37.2815L47.395 40.3744L47.5657 39.9761C47.984 38.9999 48.1032 37.9297 47.9102 36.8814C47.7127 35.8078 47.1984 34.8308 46.423 34.0562Z" - fill="#FFF7F7"/> - </g> - <g clip-path="url(#clip0)" filter="url(#filter2_d)"> - <path d="M71.2453 43.7102C71.8434 43.7102 72.4169 43.4726 72.8398 43.0497C73.2627 42.6268 73.5003 42.3889 73.5003 41.7909C73.5003 41.1928 73.2627 40.9847 72.8398 40.5618C72.4169 40.1389 71.8434 39.9013 71.2453 39.9013L68.4369 39.9034V39.1398L69.1641 39.1377C69.762 39.1373 70.3353 38.8995 70.758 38.4768C71.1808 38.054 71.7281 37.5802 71.7286 36.9823L71.7502 22.0367C71.7502 21.8712 71.7502 21.5604 71.7927 21.4083C71.856 21.2554 71.8622 21.0841 71.947 20.9993C72.064 20.8823 72.1274 20.7894 72.2803 20.726C72.4333 20.6627 72.865 20.6078 73.0305 20.6078C73.1961 20.6078 73.5024 20.6064 73.6554 20.6698C73.8083 20.7331 73.9779 20.9307 74.1317 21.0841C74.2487 21.2012 74.2572 21.2554 74.3205 21.4083C74.3838 21.5613 74.4164 21.7252 74.4164 21.8907L74.4199 34.2162L73.9193 34.2162C73.7891 34.2166 73.6643 34.268 73.5716 34.3593C73.4789 34.4507 73.4258 34.5748 73.4236 34.7049L73.3919 36.9675C73.3874 37.2969 73.4483 37.6238 73.5712 37.9294C73.6941 38.235 73.8764 38.5131 74.1077 38.7476C74.339 38.9821 74.6146 39.1683 74.9185 39.2954C75.2223 39.4225 75.5484 39.4879 75.8778 39.4879H77.3762C77.508 39.4879 77.6344 39.4355 77.7277 39.3423C77.8209 39.2491 77.8733 39.1226 77.8733 38.9908L77.8733 36.8814C77.8732 36.8153 77.86 36.7499 77.8344 36.6889C77.8087 36.628 77.7712 36.5728 77.7239 36.5265C77.6767 36.4802 77.6207 36.4439 77.5593 36.4195C77.4978 36.3952 77.4321 36.3833 77.366 36.3847L76.4319 36.4047L76.408 34.7059C76.4057 34.5758 76.3526 34.4518 76.2599 34.3604C76.1672 34.269 76.0424 34.2176 75.9123 34.2173L75.5927 34.2162L75.7565 22.0367C75.7565 21.4386 75.5071 20.5544 75.0843 20.1315C74.6614 19.7086 74.2213 19.417 73.0305 19.417C71.9781 19.417 71.4586 19.7086 71.0357 20.1315C70.6128 20.5544 70.4297 21.2944 70.4297 21.8925L70.4297 36.8849C70.4292 37.2191 70.2961 37.5394 70.0598 37.7758C69.8235 38.0121 69.5032 38.1451 69.169 38.1456H68.4369L68.4369 22.8203C68.4369 22.6885 68.3845 22.562 68.2913 22.4688C68.198 22.3756 68.0716 22.3232 67.9398 22.3232L67.5518 22.3232L67.5518 18.044L71.9766 18.044C72.1084 18.044 72.2349 17.9916 72.3281 17.8984C72.4213 17.8051 72.4737 17.6787 72.4737 17.5469L72.4737 15.0859C72.4737 14.9541 72.4213 14.8277 72.3281 14.7345C72.2349 14.6412 72.1084 14.5889 71.9766 14.5888L60.0235 14.5888C59.8916 14.5889 59.7652 14.6412 59.672 14.7345C59.5788 14.8277 59.5264 14.9541 59.5264 15.0859L59.5264 17.5469C59.5264 17.6787 59.5788 17.8051 59.672 17.8984C59.7652 17.9916 59.8916 18.044 60.0235 18.044L64.4482 18.044L64.4482 22.3232L64.0544 22.3232C63.9225 22.3232 63.7961 22.3756 63.7029 22.4688C63.6097 22.562 63.5573 22.6885 63.5573 22.8203L63.5573 39.9013L60.7547 39.9013C60.1567 39.9013 59.5831 40.1389 59.1602 40.5618C58.7374 40.9847 58.4998 41.1928 58.4998 41.7909C58.4998 42.3889 58.7374 42.6268 59.1602 43.0497C59.5831 43.4726 60.1567 43.7102 60.7547 43.7102L71.2453 43.7102ZM75.4412 36.918C75.4421 36.9835 75.456 37.0482 75.482 37.1083C75.508 37.1685 75.5456 37.2229 75.5927 37.2684C75.6399 37.314 75.6955 37.3498 75.7565 37.3737C75.8175 37.3977 75.8826 37.4093 75.9481 37.408L76.8766 37.3894L76.8777 38.4951L75.8764 38.4951C75.6787 38.4951 75.483 38.4559 75.3006 38.3796C75.1183 38.3033 74.9529 38.1915 74.8141 38.0508C74.6753 37.91 74.5658 37.7431 74.4921 37.5596C74.4184 37.3762 74.3819 37.18 74.3847 36.9823L74.4083 35.2087L75.4194 35.2087L75.4412 36.918ZM60.5206 17.0498L60.5206 15.583L71.4795 15.5831L71.4795 17.0498L67.0547 17.0498L64.9453 17.0498L60.5206 17.0498ZM65.4425 18.044L66.5576 18.044L66.5576 22.3232L65.4425 22.3232L65.4425 18.044ZM64.3878 23.3174L64.9453 23.3174H67.0547H67.6123L67.6123 38.1435L64.3878 38.1435V23.3174ZM64.3878 39.1377H67.6123L67.6123 41.3076L64.3878 41.3076V39.1377ZM59.494 41.7909C59.5003 41.4585 59.6351 41.5068 59.8702 41.2718C60.1053 41.0367 60.4223 40.9018 60.7547 40.8956H63.5573L63.5573 41.4393C63.5573 41.5711 63.6097 41.6976 63.7029 41.7908C63.7961 41.884 63.9225 41.9364 64.0544 41.9364L67.9398 41.9385C68.0716 41.9385 68.198 41.8861 68.2913 41.7929C68.3845 41.6997 68.4369 41.5732 68.4369 41.4414V40.8977L71.2453 40.8956C71.4111 40.8948 71.5754 40.927 71.7286 40.9901C71.8819 41.0532 72.0212 41.146 72.1384 41.2632C72.2556 41.3804 72.3484 41.1543 72.4115 41.3076C72.4746 41.4609 72.5067 41.6251 72.506 41.7909C72.4998 42.1233 72.3649 42.1047 72.1298 42.3397C71.8948 42.5748 71.5777 42.7097 71.2453 42.7159L60.7547 42.7159C60.589 42.7166 60.4247 42.6845 60.2714 42.6214C60.1182 42.5583 59.9789 42.4655 59.8617 42.3483C59.7445 42.2311 59.6517 42.0918 59.5885 41.9385C59.5254 41.7852 59.4933 41.9566 59.494 41.7909Z" - fill="white"/> - <rect x="64.1293" y="22.9893" width="3.81039" height="18.5756" fill="white"/> - <rect x="59.8427" y="15.3685" width="11.9075" height="1.90519" fill="white"/> - <rect x="65.082" y="16.3211" width="1.90519" height="6.66818" fill="white"/> - <rect x="59.3664" y="40.6124" width="13.3364" height="2.38149" fill="white"/> - <rect x="74.1317" y="34.8968" width="1.90519" height="3.81039" fill="white"/> - <rect x="75.5605" y="36.8019" width="1.4297" height="1.90627" fill="white"/> - </g> - <g filter="url(#filter3_d)"> - <path d="M37.5636 75.4372H24.7595L31.7436 59.4962H38.7276H43.7716H49.2037M49.2037 59.4962L47.2636 55H49.9797H52.6957M49.2037 59.4962L49.9797 61.5399L51.5317 64.8098L55.7997 75.4372M49.2037 59.4962L45.5176 65.6273L43.306 69.306M41.8316 71.7585L43.306 69.306M34.4596 63.9924L38.3396 72.9847L30.5796 55L32.9076 59.9049M40.6676 73.8022L43.306 69.306" - stroke="white" stroke-width="2"/> - <path d="M41.6601 74.7418C41.6601 76.0707 40.6438 77.103 39.4441 77.103C38.2444 77.103 37.2281 76.0707 37.2281 74.7418C37.2281 73.4128 38.2444 72.3806 39.4441 72.3806C40.6438 72.3806 41.6601 73.4128 41.6601 74.7418Z" - stroke="white"/> - <path d="M33.4001 73.9243C33.4001 79.0653 29.4565 83.1429 24.7001 83.1429C19.9436 83.1429 16 79.0653 16 73.9243C16 68.7833 19.9436 64.7057 24.7001 64.7057C29.4565 64.7057 33.4001 68.7833 33.4001 73.9243Z" - stroke="white" stroke-width="2"/> - </g> - <g filter="url(#filter4_d)"> - <path d="M64 74.5C64 79.7932 59.9251 84 55 84C50.0749 84 46 79.7932 46 74.5C46 69.2068 50.0749 65 55 65C59.9251 65 64 69.2068 64 74.5Z" - stroke="white" stroke-width="2"/> - </g> - <defs> - <filter id="filter0_d" x="58.84" y="52.704" width="25.4126" height="17.436" filterUnits="userSpaceOnUse" - color-interpolation-filters="sRGB"> - <feFlood flood-opacity="0" result="BackgroundImageFix"/> - <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/> - <feOffset dy="4"/> - <feGaussianBlur stdDeviation="2"/> - <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"/> - <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow"/> - <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow" result="shape"/> - </filter> - <filter id="filter1_d" x="14" y="15" width="38.0001" height="38" filterUnits="userSpaceOnUse" - color-interpolation-filters="sRGB"> - <feFlood flood-opacity="0" result="BackgroundImageFix"/> - <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/> - <feOffset dy="4"/> - <feGaussianBlur stdDeviation="2"/> - <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"/> - <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow"/> - <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow" result="shape"/> - </filter> - <filter id="filter2_d" x="39.5" y="7" width="53" height="53" filterUnits="userSpaceOnUse" - color-interpolation-filters="sRGB"> - <feFlood flood-opacity="0" result="BackgroundImageFix"/> - <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/> - <feOffset dy="4"/> - <feGaussianBlur stdDeviation="2"/> - <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"/> - <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow"/> - <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow" result="shape"/> - </filter> - <filter id="filter3_d" x="11" y="54" width="54.7667" height="38.1429" filterUnits="userSpaceOnUse" - color-interpolation-filters="sRGB"> - <feFlood flood-opacity="0" result="BackgroundImageFix"/> - <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/> - <feOffset dy="4"/> - <feGaussianBlur stdDeviation="2"/> - <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"/> - <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow"/> - <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow" result="shape"/> - </filter> - <filter id="filter4_d" x="41" y="64" width="28" height="29" filterUnits="userSpaceOnUse" - color-interpolation-filters="sRGB"> - <feFlood flood-opacity="0" result="BackgroundImageFix"/> - <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/> - <feOffset dy="4"/> - <feGaussianBlur stdDeviation="2"/> - <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"/> - <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow"/> - <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow" result="shape"/> - </filter> - <clipPath id="clip0"> - <rect width="31.8198" height="31.8198" fill="white" transform="translate(43.5 29.5) rotate(-45)"/> - </clipPath> - </defs> + <path + style="fill:none;stroke:#ffffff;stroke-width:21.658;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 223.5781,79.355137 237.19764,66.137981" + id="path4436" + sodipodi:nodetypes="cc" /> + </g> + <g + id="surface1" + transform="matrix(0.60143782,0,0,0.60039443,97.037882,63.253387)"> + <path + style="fill:#fffaff;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:3.509;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1" + d="M 47.663415,21.641872 H 71.627478 V 25.63231 H 47.663415 Z m 0,0" + transform="matrix(3.826531,0,0,3.826531,-47.701923,-7.977349)" + id="path832" /> + <path + style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" + d="m 168.29687,96.378906 h 24.9336 v 34.378904 h -24.9336 z m 0,0" + id="path834" /> + <path + style="fill:none;stroke:#ffffff;stroke-width:7.939;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1" + d="M 47.842061,77.142539 71.663207,77.35181" + transform="matrix(3.826531,0,0,3.826531,-47.701923,-7.977349)" + id="path836" /> + <path + style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:2.872;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1" + d="m 55.906644,37.580143 h 7.468417 v 36.044604 h -7.468417 z m 0,0" + transform="matrix(3.826531,0,0,3.826531,-47.701923,-7.977349)" + id="path838" /> + <path + style="fill:none;stroke:#ffffff;stroke-width:2.6;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1" + d="m 64.040644,70.321331 c 0,0 6.250563,1.104541 6.250563,-4.199709 0,-5.303229 0,-31.20075 0,-31.20075 0,0 0.176604,-3.623958 4.153771,-3.623958 3.977166,0 4.065979,3.447354 4.065979,3.447354 l 0.08881,29.875708" + transform="matrix(3.826531,0,0,3.826531,-47.701923,-7.977349)" + id="path840" /> + <path + style="fill:#fffdff;fill-opacity:1;fill-rule:nonzero;stroke:#fffdff;stroke-width:2;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:0.970149" + d="m 76.543811,62.218976 4.019021,-0.03164 0.124541,4.640708 3.00023,-0.06227 0.104125,4.222167 -3.783209,-0.02654 C 77.27779,70.690872 76.331478,69.753747 76.521353,67.391539 Z m 0,0" + transform="matrix(3.826531,0,0,3.826531,-47.701923,-7.977349)" + id="path842" /> + </g> </svg> diff --git a/assets/layers/bike_shop/bike_shop.json b/assets/layers/bike_shop/bike_shop.json index 2f4bf3e0ec..eda0288650 100644 --- a/assets/layers/bike_shop/bike_shop.json +++ b/assets/layers/bike_shop/bike_shop.json @@ -12,6 +12,7 @@ "pt": "Reparo/loja de bicicletas" }, "minzoom": 13, + "allowMove": true, "source": { "osmTags": { "#": "We select all bicycle shops, sport shops (but we try to weed out non-bicycle related shops), and any shop with a bicycle related tag", @@ -117,7 +118,7 @@ "fr": "Réparateur de vélo <i>{name}</i>", "gl": "Arranxo de bicicletas <i>{name}</i>", "de": "Fahrradwerkstatt <i>{name}</i>", - "it": "Riparazione biciclette <i>{name</i>", + "it": "Riparazione biciclette <i>{name}</i>", "ru": "Ремонт велосипедов <i>{name}</i>", "pt_BR": "Reparo de bicicletas <i>{name}</i>", "pt": "Reparo de bicicletas <i>{name}</i>" @@ -685,7 +686,7 @@ "mapRendering": [ { "icon": { - "render": "./assets/layers/bike_shop/repair_shop.svg", + "render": "pin:#f04c4c;./assets/layers/bike_shop/repair_shop.svg", "mappings": [ { "if": "operator=De Fietsambassade Gent", @@ -693,7 +694,7 @@ }, { "if": "service:bicycle:retail=yes", - "then": "./assets/layers/bike_shop/shop.svg" + "then": "pin:#353d57;./assets/layers/bike_shop/shop.svg" } ] }, diff --git a/assets/layers/bike_shop/pump.svg b/assets/layers/bike_shop/pump.svg index 4e138048e1..c6d074c49d 100644 --- a/assets/layers/bike_shop/pump.svg +++ b/assets/layers/bike_shop/pump.svg @@ -1,160 +1,52 @@ <?xml version="1.0" encoding="UTF-8" standalone="no"?> <svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - xmlns="http://www.w3.org/2000/svg" - width="98" - height="98" - viewBox="0 0 98 98" - version="1.1" - id="svg42" - sodipodi:docname="pump.svg" - style="fill:none" - inkscape:version="0.92.4 (5da689c313, 2019-01-14)"> - <metadata - id="metadata46"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage"/> - </cc:Work> - </rdf:RDF> - </metadata> - <sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1043" - id="namedview44" - showgrid="false" - inkscape:zoom="1.9186992" - inkscape:cx="48.5" - inkscape:cy="36.5" - inkscape:window-x="0" - inkscape:window-y="0" - inkscape:window-maximized="1" - inkscape:current-layer="svg42"/> - <circle - cx="49" - cy="49" - r="49" - id="circle4" - style="fill:#e2783d"/> - <g - clip-path="url(#clip0)" - id="g20" - style="filter:url(#filter0_d)" - transform="translate(-1)"> - <path - d="m 59.2519,79.0738 c 1.2556,0 2.4598,-0.4987 3.3476,-1.3866 0.8879,-0.8878 1.3867,-1.3874 1.3867,-2.643 0,-1.2556 -0.4988,-1.6926 -1.3866,-2.5805 -0.8879,-0.8878 -2.0921,-1.3866 -3.3477,-1.3866 l -5.8964,0.0044 v -1.6031 l 1.5268,-0.0045 c 1.2553,-0.001 2.4589,-0.5001 3.3465,-1.3877 0.8876,-0.8876 2.0368,-1.8824 2.0378,-3.1377 l 0.0452,-31.3786 c 1e-4,-0.3476 0,-1 0.0892,-1.3193 0.1331,-0.3211 0.146,-0.6807 0.324,-0.8587 0.2458,-0.2457 0.3788,-0.4408 0.6999,-0.5738 0.3211,-0.1329 1.2275,-0.2483 1.5751,-0.2482 0.3475,0 0.9907,-0.003 1.3118,0.1301 0.3211,0.133 0.6771,0.5478 1,0.8699 0.2457,0.2457 0.2635,0.3596 0.3965,0.6807 0.1329,0.3211 0.2013,0.6652 0.2013,1.0128 l 0.0073,25.8777 h -1.051 c -0.2733,7e-4 -0.5353,0.1086 -0.7299,0.3004 -0.1946,0.1919 -0.3062,0.4523 -0.3109,0.7255 l -0.0664,4.7505 c -0.0096,0.6915 0.1184,1.378 0.3764,2.0196 0.2579,0.6416 0.6409,1.2255 1.1265,1.7178 0.4856,0.4924 1.0642,0.8833 1.7022,1.1501 0.6379,0.2668 1.3226,0.4041 2.0141,0.4041 h 3.1458 c 0.2768,-1e-4 0.5423,-0.11 0.738,-0.3058 0.1957,-0.1957 0.3057,-0.4611 0.3057,-0.7379 v -4.4287 c 0,-0.1388 -0.0278,-0.2762 -0.0817,-0.4041 -0.0538,-0.128 -0.1326,-0.2439 -0.2318,-0.341 -0.0992,-0.0972 -0.2167,-0.1735 -0.3458,-0.2247 -0.129,-0.0511 -0.267,-0.076 -0.4058,-0.0731 l -1.9611,0.042 -0.0502,-3.5665 c -0.0047,-0.2732 -0.1163,-0.5337 -0.3109,-0.7255 -0.1946,-0.1919 -0.4566,-0.2997 -0.7299,-0.3005 l -0.6708,-0.0022 0.3438,-25.5712 c 0,-1.2556 -0.5235,-3.1122 -1.4114,-4 -0.8878,-0.8879 -1.8118,-1.5 -4.3118,-1.5 -2.2097,0 -3.3003,0.6121 -4.1882,1.5 -0.8878,0.8878 -1.2723,2.4416 -1.2723,3.6972 v 31.477 c -0.0012,0.7016 -0.2804,1.3742 -0.7766,1.8703 -0.4961,0.4961 -1.1686,0.7754 -1.8703,0.7766 H 53.3555 V 35.2151 c 0,-0.2768 -0.11,-0.5422 -0.3057,-0.738 -0.1958,-0.1957 -0.4612,-0.3056 -0.738,-0.3057 h -0.8145 v -8.9843 h 9.2899 c 0.2768,-10e-5 0.5422,-0.11 0.738,-0.3057 0.1957,-0.1958 0.3057,-0.4612 0.3057,-0.738 v -5.1668 c -10e-5,-0.2768 -0.11,-0.5422 -0.3057,-0.738 -0.1958,-0.1957 -0.4612,-0.3056 -0.738,-0.3057 H 35.6913 c -0.2768,0 -0.5422,0.11 -0.7379,0.3057 -0.1957,0.1958 -0.3057,0.4612 -0.3058,0.738 v 5.1668 c 1e-4,0.2768 0.1101,0.5422 0.3058,0.738 0.1957,0.1957 0.4611,0.3056 0.7379,0.3057 h 9.2899 v 8.9843 h -0.8269 c -0.2768,1e-4 -0.5422,0.11 -0.7379,0.3057 -0.1958,0.1958 -0.3057,0.4612 -0.3058,0.738 v 35.862 h -5.884 c -1.2556,0 -2.4598,0.4988 -3.3476,1.3866 -0.8879,0.8879 -1.3867,1.3249 -1.3867,2.5805 0,1.2556 0.4988,1.7552 1.3867,2.643 0.8878,0.8878 2.092,1.3866 3.3476,1.3866 z m 8.8093,-14.2603 c 0.0019,0.1375 0.031,0.2734 0.0856,0.3996 0.0546,0.1263 0.1337,0.2405 0.2326,0.3362 0.0989,0.0956 0.2158,0.1707 0.3438,0.221 0.128,0.0503 0.2648,0.0748 0.4023,0.0721 l 1.9494,-0.0391 0.0022,2.3213 H 68.975 c -0.4151,1e-4 -0.826,-0.0823 -1.2089,-0.2424 -0.3829,-0.1602 -0.7302,-0.3948 -1.0216,-0.6904 -0.2914,-0.2955 -0.5211,-0.646 -0.6759,-1.0311 -0.1547,-0.3851 -0.2314,-0.7972 -0.2255,-1.2122 l 0.0495,-3.7237 h 2.1228 z M 36.735,23.0997 v -3.0794 h 23.0085 v 3.0794 h -9.2899 -4.4287 z m 10.3336,2.0874 h 2.3413 v 8.9843 h -2.3413 z m -2.2143,11.0717 h 1.1706 4.4287 1.1707 v 31.1277 h -6.77 z m 0,33.2151 h 6.77 v 4.5557 h -6.77 z m -10.2746,5.5703 c 0.0132,-0.6978 0.2963,-0.5963 0.7899,-1.0899 0.4935,-0.4935 1.1591,-0.7766 1.857,-0.7898 h 5.884 v 1.1416 c 1e-4,0.2768 0.11,0.5422 0.3057,0.738 0.1958,0.1957 0.4612,0.3057 0.738,0.3057 l 8.1575,0.0044 c 0.2768,0 0.5422,-0.11 0.738,-0.3057 0.1957,-0.1957 0.3057,-0.4612 0.3057,-0.738 v -1.1416 l 5.8964,-0.0044 c 0.348,-0.0015 0.6929,0.066 1.0147,0.1985 0.3218,0.1325 0.6142,0.3274 0.8602,0.5735 0.2461,0.246 0.441,-0.2287 0.5735,0.0931 0.1325,0.3218 0.2,0.6666 0.1985,1.0146 -0.0132,0.6979 -0.2963,0.6589 -0.7899,1.1524 -0.4935,0.4936 -1.1591,0.7767 -1.857,0.7898 H 37.2266 c -0.348,0.0015 -0.6929,-0.0659 -1.0147,-0.1984 -0.3218,-0.1325 -0.6141,-0.3274 -0.8602,-0.5735 -0.2461,-0.2461 -0.441,-0.5385 -0.5735,-0.8603 -0.1325,-0.3218 -0.1999,0.038 -0.1985,-0.31 z" - id="path6" - inkscape:connector-curvature="0" - style="fill:#ffffff"/> - <rect - x="44.311798" - y="35.569801" - width="8" - height="39" - id="rect8" - style="fill:#ffffff"/> - <rect - x="35.311798" - y="19.569901" - width="25" - height="4" - id="rect10" - style="fill:#ffffff"/> - <rect - x="46.311901" - y="21.569799" - width="4" - height="14" - id="rect12" - style="fill:#ffffff"/> - <rect - x="34.311798" - y="72.569801" - width="28" - height="5" - id="rect14" - style="fill:#ffffff"/> - <rect - x="65.311897" - y="60.569801" - width="4" - height="8" - id="rect16" - style="fill:#ffffff"/> - <rect - x="68.311798" - y="64.569901" - width="3" - height="4" - id="rect18" - style="fill:#ffffff"/> - </g> - <defs - id="defs40"> - <filter - id="filter0_d" - x="-3" - y="2" - width="102.479" - height="102.479" - filterUnits="userSpaceOnUse" - style="color-interpolation-filters:sRGB"> - <feFlood - flood-opacity="0" - result="BackgroundImageFix" - id="feFlood22"/> - <feColorMatrix - in="SourceAlpha" - type="matrix" - values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" - id="feColorMatrix24"/> - <feOffset - dy="4" - id="feOffset26"/> - <feGaussianBlur - stdDeviation="2" - id="feGaussianBlur28"/> - <feColorMatrix - type="matrix" - values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0" - id="feColorMatrix30"/> - <feBlend - mode="normal" - in2="BackgroundImageFix" - result="effect1_dropShadow" - id="feBlend32"/> - <feBlend - mode="normal" - in="SourceGraphic" - in2="effect1_dropShadow" - result="shape" - id="feBlend34"/> - </filter> - <clipPath - id="clip0"> - <rect - width="66.806396" - height="66.806396" - transform="rotate(-45,59.937093,23.412543)" - id="rect37" - x="0" - y="0" - style="fill:#ffffff"/> - </clipPath> - </defs> + width="375px" + height="375px" + viewBox="0 0 375 375" + version="1.1" + id="svg32" + sodipodi:docname="pump.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:xlink="http://www.w3.org/1999/xlink" + xmlns="http://www.w3.org/2000/svg" + xmlns:svg="http://www.w3.org/2000/svg"> + <path + style="fill:#e1783a;fill-opacity:1;fill-rule:nonzero;stroke:none" + d="m 373.84497,186.96038 c 0,103.55469 -83.94531,187.5 -187.5,187.5 -103.55469,0 -187.5000016,-83.94531 -187.5000016,-187.5 0,-103.55469 83.9453116,-187.50000187 187.5000016,-187.50000187 103.55469,0 187.5,83.94531187 187.5,187.50000187 z m 0,0" + id="path23" /> + <g + id="surface1-3" + transform="matrix(1.1416968,0,0,1.1416968,-31.876337,-24.144943)"> + <path + style="fill:#fffaff;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:3.509;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1" + d="M 47.663415,21.641872 H 71.627478 V 25.63231 H 47.663415 Z m 0,0" + transform="matrix(3.826531,0,0,3.826531,-47.701923,-7.977349)" + id="path2-3" /> + <path + style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" + d="m 168.29687,96.378906 h 24.9336 v 34.378904 h -24.9336 z m 0,0" + id="path4" /> + <path + style="fill:none;stroke:#ffffff;stroke-width:7.939;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1" + d="M 47.842061,77.142539 71.663207,77.35181" + transform="matrix(3.826531,0,0,3.826531,-47.701923,-7.977349)" + id="path6" /> + <path + style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:2.872;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1" + d="m 55.906644,37.580143 h 7.468417 v 36.044604 h -7.468417 z m 0,0" + transform="matrix(3.826531,0,0,3.826531,-47.701923,-7.977349)" + id="path8" /> + <path + style="fill:none;stroke:#ffffff;stroke-width:2.6;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1" + d="m 64.040644,70.321331 c 0,0 6.250563,1.104541 6.250563,-4.199709 0,-5.303229 0,-31.20075 0,-31.20075 0,0 0.176604,-3.623958 4.153771,-3.623958 3.977166,0 4.065979,3.447354 4.065979,3.447354 l 0.08881,29.875708" + transform="matrix(3.826531,0,0,3.826531,-47.701923,-7.977349)" + id="path10" /> + <path + style="fill:#fffdff;fill-opacity:1;fill-rule:nonzero;stroke:#fffdff;stroke-width:2;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:0.970149" + d="m 76.543811,62.218976 4.019021,-0.03164 0.124541,4.640708 3.00023,-0.06227 0.104125,4.222167 -3.783209,-0.02654 C 77.27779,70.690872 76.331478,69.753747 76.521353,67.391539 Z m 0,0" + transform="matrix(3.826531,0,0,3.826531,-47.701923,-7.977349)" + id="path12" /> + </g> </svg> diff --git a/assets/layers/bike_shop/repair_shop.svg b/assets/layers/bike_shop/repair_shop.svg index 74c1265a21..bede10e0f2 100644 --- a/assets/layers/bike_shop/repair_shop.svg +++ b/assets/layers/bike_shop/repair_shop.svg @@ -1,26 +1,34 @@ -<svg width="98" height="123" viewBox="0 0 98 123" fill="none" xmlns="http://www.w3.org/2000/svg"> - <path d="M53.0072 113.614C51.1916 117.395 45.8084 117.395 43.9928 113.614L13.4024 49.9145C11.8084 46.5952 14.2275 42.75 17.9097 42.75L79.0903 42.75C82.7725 42.75 85.1916 46.5952 83.5976 49.9145L53.0072 113.614Z" - fill="#F24E4E"/> - <circle cx="49" cy="49" r="49" fill="#F24E4E"/> - <g filter="url(#filter0_d)"> - <path d="M51.5 70.625H67.75C68.5581 70.625 69.3331 70.2991 69.9045 69.7189C70.4759 69.1387 70.7969 68.3518 70.7969 67.5312V53.0938C70.7969 52.2732 70.4759 51.4863 69.9045 50.9061C69.3331 50.3259 68.5581 50 67.75 50H51.5C50.6919 50 49.9169 50.3259 49.3455 50.9061C48.7741 51.4863 48.4531 52.2732 48.4531 53.0938V67.5312C48.4531 68.3518 48.7741 69.1387 49.3455 69.7189C49.9169 70.2991 50.6919 70.625 51.5 70.625ZM50.4844 53.0938C50.4844 52.8202 50.5914 52.5579 50.7818 52.3645C50.9723 52.1711 51.2306 52.0625 51.5 52.0625H67.75C68.0194 52.0625 68.2777 52.1711 68.4682 52.3645C68.6586 52.5579 68.7656 52.8202 68.7656 53.0938V67.5312C68.7656 67.8048 68.6586 68.0671 68.4682 68.2605C68.2777 68.4539 68.0194 68.5625 67.75 68.5625H51.5C51.2306 68.5625 50.9723 68.4539 50.7818 68.2605C50.5914 68.0671 50.4844 67.8048 50.4844 67.5312V53.0938Z" - fill="#FFF9F9"/> - <path d="M64.7031 59.2812H66.7344V55.1562C66.7344 54.8827 66.6274 54.6204 66.4369 54.427C66.2464 54.2336 65.9881 54.125 65.7188 54.125H61.6562V56.1875H64.7031V59.2812Z" - fill="#FFF9F9"/> - <path d="M41.3438 63.4062H39.3125V65.4688H41.3438V63.4062Z" fill="#FFF9F9"/> - <path d="M76.8906 72.6875H74.8594V47.8344C76.0049 47.5936 77.0339 46.9599 77.7737 46.0398C78.5135 45.1196 78.9189 43.9691 78.9219 42.7812C78.9236 42.7329 78.9202 42.6845 78.9117 42.6369L77.1242 29.9731C77.0217 29.2368 76.6614 28.5627 76.1093 28.074C75.5573 27.5854 74.8503 27.3151 74.118 27.3125H66.7344V20.0938C66.732 19.274 66.4102 18.4885 65.8393 17.9088C65.2684 17.3292 64.4948 17.0024 63.6875 17H35.25C34.4427 17.0024 33.6691 17.3292 33.0982 17.9088C32.5273 18.4885 32.2055 19.274 32.2031 20.0938V27.3125H24.8195C24.0872 27.3151 23.3802 27.5854 22.8282 28.074C22.2761 28.5627 21.9158 29.2368 21.8133 29.9731L20.0258 42.6369C20.0174 42.6845 20.0139 42.7329 20.0156 42.7812C20.0186 43.9691 20.424 45.1196 21.1638 46.0398C21.9036 46.9599 22.9326 47.5936 24.0781 47.8344V72.6875H22.0469C21.2388 72.6875 20.4638 73.0135 19.8924 73.5936C19.321 74.1738 19 74.9607 19 75.7812C19 76.6018 19.321 77.3887 19.8924 77.9689C20.4638 78.549 21.2388 78.875 22.0469 78.875H76.8906C77.6987 78.875 78.4737 78.549 79.0451 77.9689C79.6165 77.3887 79.9375 76.6018 79.9375 75.7812C79.9375 74.9607 79.6165 74.1738 79.0451 73.5936C78.4737 73.0135 77.6987 72.6875 76.8906 72.6875ZM70.7969 29.375H74.118C74.3621 29.377 74.5976 29.4674 74.7819 29.63C74.9663 29.7926 75.0874 30.0167 75.1234 30.2619L76.8906 42.8534C76.886 43.2597 76.8025 43.6611 76.6451 44.0346C76.4877 44.4082 76.2593 44.7465 75.9731 45.0305C75.6869 45.3144 75.3483 45.5383 74.9769 45.6894C74.6054 45.8405 74.2083 45.9158 73.8082 45.9111C73.4081 45.9064 73.0128 45.8216 72.6449 45.6618C72.277 45.5019 71.9438 45.2701 71.6642 44.9794C71.3845 44.6888 71.164 44.3451 71.0152 43.9679C70.8664 43.5908 70.7922 43.1875 70.7969 42.7812V29.375ZM66.7344 38.6562V29.375H68.7656V42.7812C68.7656 43.6018 68.4446 44.3887 67.8732 44.9689C67.3018 45.5491 66.5268 45.875 65.7188 45.875C64.9107 45.875 64.1357 45.5491 63.5643 44.9689C62.9929 44.3887 62.6719 43.6018 62.6719 42.7812V41.75H63.6875C64.4948 41.7476 65.2684 41.4208 65.8393 40.8412C66.4102 40.2615 66.732 39.476 66.7344 38.6562ZM34.2344 20.0938C34.2344 19.8202 34.3414 19.5579 34.5318 19.3645C34.7223 19.1711 34.9806 19.0625 35.25 19.0625H63.6875C63.9569 19.0625 64.2152 19.1711 64.4057 19.3645C64.5961 19.5579 64.7031 19.8202 64.7031 20.0938V38.6562C64.7031 38.9298 64.5961 39.1921 64.4057 39.3855C64.2152 39.5789 63.9569 39.6875 63.6875 39.6875H59.625V32.5719L60.6203 27.5188C60.6508 27.383 60.6508 27.242 60.6203 27.1062L59.6047 21.95C59.5579 21.7171 59.4332 21.5077 59.2518 21.3574C59.0705 21.207 58.8435 21.125 58.6094 21.125H54.5469C54.3127 21.125 54.0858 21.207 53.9044 21.3574C53.723 21.5077 53.5984 21.7171 53.5516 21.95L52.5359 27.1062C52.5055 27.242 52.5055 27.383 52.5359 27.5188L53.5312 32.5719V39.6875H46.4219V34.8612C47.6936 34.2501 48.7577 33.2691 49.4792 32.0426C50.2007 30.8162 50.547 29.3997 50.474 27.9731C50.4011 26.5464 49.9123 25.1739 49.0697 24.0299C48.227 22.8859 47.0686 22.022 45.7414 21.5478C45.5887 21.4929 45.4253 21.4754 45.2647 21.4969C45.104 21.5184 44.9507 21.5783 44.8172 21.6716C44.6862 21.7691 44.5794 21.8963 44.5054 22.0431C44.4313 22.1899 44.392 22.3523 44.3906 22.5172V27.3125H42.3594V22.5172C42.358 22.3523 42.3187 22.1899 42.2446 22.0431C42.1706 21.8963 42.0638 21.7691 41.9328 21.6716C41.7992 21.5786 41.6459 21.5189 41.4853 21.4974C41.3247 21.4759 41.1614 21.4932 41.0086 21.5478C39.6814 22.022 38.523 22.8859 37.6803 24.0299C36.8377 25.1739 36.3489 26.5464 36.276 27.9731C36.203 29.3997 36.5493 30.8162 37.2708 32.0426C37.9923 33.2691 39.0564 34.2501 40.3281 34.8612V39.6875H35.25C34.9806 39.6875 34.7223 39.5789 34.5318 39.3855C34.3414 39.1921 34.2344 38.9298 34.2344 38.6562V20.0938ZM55.3797 31.4375L54.5672 27.3125L55.3797 23.1875H57.7766L58.5891 27.3125L57.7766 31.4375H55.3797ZM57.5938 33.5V39.6875H55.5625V33.5H57.5938ZM60.6406 41.75V42.7812C60.6406 43.6018 60.3196 44.3887 59.7482 44.9689C59.1768 45.5491 58.4018 45.875 57.5938 45.875C56.7857 45.875 56.0107 45.5491 55.4393 44.9689C54.8679 44.3887 54.5469 43.6018 54.5469 42.7812V41.75H60.6406ZM42.3594 39.6875V34.1703C42.3585 33.9571 42.2927 33.7495 42.1708 33.5759C42.0489 33.4023 41.8771 33.2713 41.6789 33.2009C40.8137 32.8891 40.048 32.3449 39.4631 31.6263C38.8783 30.9077 38.4963 30.0416 38.3577 29.1201C38.2191 28.1985 38.3292 27.2561 38.6761 26.393C39.0231 25.53 39.594 24.7786 40.3281 24.2188V28.3438C40.3281 28.6173 40.4351 28.8796 40.6256 29.073C40.8161 29.2663 41.0744 29.375 41.3438 29.375H45.4062C45.6756 29.375 45.9339 29.2663 46.1244 29.073C46.3149 28.8796 46.4219 28.6173 46.4219 28.3438V24.2188C47.156 24.7786 47.7269 25.53 48.0739 26.393C48.4208 27.2561 48.5309 28.1985 48.3923 29.1201C48.2537 30.0416 47.8717 30.9077 47.2869 31.6263C46.702 32.3449 45.9363 32.8891 45.0711 33.2009C44.8729 33.2713 44.7011 33.4023 44.5792 33.5759C44.4573 33.7495 44.3915 33.9571 44.3906 34.1703V39.6875H42.3594ZM44.3906 41.75V42.7812C44.3906 43.6018 44.0696 44.3887 43.4982 44.9689C42.9268 45.5491 42.1518 45.875 41.3438 45.875C40.5357 45.875 39.7607 45.5491 39.1893 44.9689C38.6179 44.3887 38.2969 43.6018 38.2969 42.7812V41.75H44.3906ZM46.4219 41.75H52.5156V42.7812C52.5156 43.6018 52.1946 44.3887 51.6232 44.9689C51.0518 45.5491 50.2768 45.875 49.4688 45.875C48.6607 45.875 47.8857 45.5491 47.3143 44.9689C46.7429 44.3887 46.4219 43.6018 46.4219 42.7812V41.75ZM30.1719 29.375H32.2031V38.6562C32.2055 39.476 32.5273 40.2615 33.0982 40.8412C33.6691 41.4208 34.4427 41.7476 35.25 41.75H36.2656V42.7812C36.2656 43.6018 35.9446 44.3887 35.3732 44.9689C34.8018 45.5491 34.0268 45.875 33.2188 45.875C32.4107 45.875 31.6357 45.5491 31.0643 44.9689C30.4929 44.3887 30.1719 43.6018 30.1719 42.7812V29.375ZM29.1562 45.875C29.6293 46.5154 30.2426 47.0352 30.9477 47.3931C31.6529 47.7511 32.4304 47.9375 33.2188 47.9375C34.0071 47.9375 34.7846 47.7511 35.4898 47.3931C36.1949 47.0352 36.8082 46.5154 37.2812 45.875C37.7543 46.5154 38.3676 47.0352 39.0727 47.3931C39.7779 47.7511 40.5554 47.9375 41.3438 47.9375C42.1321 47.9375 42.9096 47.7511 43.6148 47.3931C44.3199 47.0352 44.9332 46.5154 45.4062 45.875C45.8793 46.5154 46.4926 47.0352 47.1977 47.3931C47.9029 47.7511 48.6804 47.9375 49.4688 47.9375C50.2571 47.9375 51.0346 47.7511 51.7398 47.3931C52.4449 47.0352 53.0582 46.5154 53.5312 45.875C54.0043 46.5154 54.6176 47.0352 55.3227 47.3931C56.0279 47.7511 56.8054 47.9375 57.5938 47.9375C58.3821 47.9375 59.1596 47.7511 59.8648 47.3931C60.5699 47.0352 61.1832 46.5154 61.6562 45.875C62.1293 46.5154 62.7426 47.0352 63.4477 47.3931C64.1529 47.7511 64.9304 47.9375 65.7188 47.9375C66.5071 47.9375 67.2846 47.7511 67.9898 47.3931C68.6949 47.0352 69.3082 46.5154 69.7812 45.875C70.5279 46.8812 71.6119 47.5747 72.8281 47.8241V72.6875H44.3906V58.25C44.3906 56.062 43.5346 53.9635 42.0109 52.4164C40.4871 50.8692 38.4205 50 36.2656 50C34.1107 50 32.0441 50.8692 30.5204 52.4164C28.9966 53.9635 28.1406 56.062 28.1406 58.25V72.6875H26.1094V47.8241C27.3256 47.5747 28.4096 46.8812 29.1562 45.875ZM42.3594 58.25V72.6875H30.1719V58.25C30.1719 56.609 30.8139 55.0352 31.9567 53.8748C33.0995 52.7144 34.6495 52.0625 36.2656 52.0625C37.8818 52.0625 39.4318 52.7144 40.5746 53.8748C41.7174 55.0352 42.3594 56.609 42.3594 58.25ZM22.0469 42.8534L23.8141 30.2619C23.8501 30.0167 23.9712 29.7926 24.1556 29.63C24.3399 29.4674 24.5754 29.377 24.8195 29.375H28.1406V42.7812C28.1453 43.1875 28.0711 43.5908 27.9223 43.9679C27.7735 44.3451 27.553 44.6888 27.2734 44.9794C26.9937 45.2701 26.6605 45.5019 26.2926 45.6618C25.9247 45.8216 25.5294 45.9064 25.1293 45.9111C24.7292 45.9158 24.3321 45.8405 23.9606 45.6894C23.5892 45.5383 23.2506 45.3144 22.9644 45.0305C22.6782 44.7465 22.4498 44.4082 22.2924 44.0346C22.135 43.6611 22.0515 43.2597 22.0469 42.8534ZM76.8906 76.8125H22.0469C21.7775 76.8125 21.5192 76.7039 21.3287 76.5105C21.1383 76.3171 21.0312 76.0548 21.0312 75.7812C21.0312 75.5077 21.1383 75.2454 21.3287 75.052C21.5192 74.8586 21.7775 74.75 22.0469 74.75H76.8906C77.16 74.75 77.4183 74.8586 77.6088 75.052C77.7992 75.2454 77.9062 75.5077 77.9062 75.7812C77.9062 76.0548 77.7992 76.3171 77.6088 76.5105C77.4183 76.7039 77.16 76.8125 76.8906 76.8125Z" - fill="#FFF9F9"/> - </g> - <defs> - <filter id="filter0_d" x="15" y="17" width="68.9375" height="69.875" filterUnits="userSpaceOnUse" - color-interpolation-filters="sRGB"> - <feFlood flood-opacity="0" result="BackgroundImageFix"/> - <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/> - <feOffset dy="4"/> - <feGaussianBlur stdDeviation="2"/> - <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"/> - <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow"/> - <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow" result="shape"/> - </filter> - </defs> +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<svg + width="298" + height="354.08301" + viewBox="0 0 298 354.08301" + version="1.1" + id="svg24" + sodipodi:docname="repair_shop.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" + xmlns:svg="http://www.w3.org/2000/svg"> + <defs + id="defs6" /> + <sodipodi:namedview + id="namedview4" + pagecolor="#505050" + bordercolor="#eeeeee" + borderopacity="1" + inkscape:pageshadow="0" + inkscape:pageopacity="0" + inkscape:pagecheckerboard="0" + showgrid="false" + inkscape:zoom="2.9058359" + inkscape:cx="180.67091" + inkscape:cy="142.12778" + inkscape:current-layer="svg24" /> + <path + style="fill:#ffffff;fill-opacity:1;stroke-width:0.251522" + d="m 64.033686,243.24286 c -2.160157,-0.57825 -3.544284,-1.35435 -4.859798,-2.72499 -1.961046,-2.04322 -2.474089,-3.31371 -2.618326,-6.48413 -0.118782,-2.61091 -0.09809,-2.7481 0.657699,-4.36319 0.936564,-2.0014 3.280217,-4.42939 4.724951,-4.89499 0.529989,-0.17079 1.118677,-0.43409 1.308188,-0.58511 3.124028,-0.52358 8.876777,-0.62797 8.876777,-0.62797 l 0.01314,-78.8252 c 0,0 -5.294687,-2.26504 -7.254867,-4.1523 -2.328729,-2.30558 -3.361951,-3.97701 -4.547837,-7.35699 -0.470252,-1.34028 -0.573031,-2.15613 -0.570348,-4.5274 l 5.150076,-38.357138 c 0.420545,-5.225926 2.291693,-8.355239 6.124662,-10.242946 l 1.673199,-0.824035 12.592746,-0.01947 c 6.926012,-0.01069 12.726739,-0.102275 12.890511,-0.203486 0.222774,-0.13767 0.297769,-3.282954 0.297769,-12.488786 V 54.259965 l 0.691687,-1.698621 c 0.856055,-2.102268 2.903325,-4.255913 5.016455,-5.277098 l 1.46025,-0.705671 h 47.78922 47.78923 l 1.46025,0.705671 c 2.22592,1.075695 4.21976,3.216852 5.10663,5.483917 l 0.72727,1.859125 -0.0742,11.947308 c -0.0436,7.013183 0.0216,12.088609 0.15774,12.28945 0.1899,0.280112 2.52895,0.348511 12.90184,0.377283 l 12.66989,0.03514 1.20875,0.583896 c 4.44243,2.145956 6.12876,4.943911 6.71735,11.145413 0.13612,1.434105 0.41549,3.399757 0.62084,4.368116 0.20536,0.96836 0.37929,2.269979 0.3865,2.892499 0.007,0.62251 0.18188,2.037327 0.38808,3.144017 0.2062,1.1067 0.4863,3.08745 0.62241,4.40165 0.13611,1.31421 0.40959,3.18176 0.60771,4.15012 0.19813,0.96836 0.4344,2.60955 0.52505,3.64708 0.0907,1.03752 0.31504,2.62212 0.49862,3.52131 0.18361,0.89919 0.40538,2.48378 0.49285,3.52131 0.0875,1.03753 0.34379,2.7353 0.56956,3.77283 0.64183,2.94966 0.54069,6.49802 -0.25193,8.83815 -0.69772,2.05995 -0.85988,2.39454 -2.14898,4.43401 -1.83098,2.8968 -5.76801,5.91709 -8.4629,6.4923 -0.4223,0.0901 -0.89876,0.26911 -1.05879,0.39773 -0.53502,0.42994 -0.57885,5.11593 -0.39484,42.21534 l 0.18276,36.84801 4.02436,0.12704 c 5.28645,0.16688 6.53128,0.59383 8.99192,3.08407 0.93378,0.94501 1.69778,1.83206 1.69778,1.97121 0,0.13916 0.24096,0.78196 0.53547,1.42843 0.42449,0.93184 0.53274,1.64569 0.52234,3.44464 -0.0115,1.99265 -0.10922,2.47933 -0.80151,3.99346 -1.34606,2.94403 -3.4991,4.67573 -6.9116,5.5591 -1.33775,0.3463 -10.96236,0.38629 -89.41617,0.37152 -76.582307,-0.0144 -88.095414,-0.0642 -89.300436,-0.38686 z m 178.242124,-6.696 c 0.9604,-0.52558 1.84781,-1.88744 1.84781,-2.83572 0,-1.08952 -0.92787,-2.34125 -2.14729,-2.89676 -1.08507,-0.49431 -1.87948,-0.49879 -88.54802,-0.49879 H 65.975197 l -1.033641,0.52138 c -0.568493,0.28675 -1.249542,0.81273 -1.513431,1.16883 -0.683585,0.92245 -0.664249,2.51802 0.04255,3.50888 1.201218,1.68405 -6.324066,1.55829 90.356475,1.51002 82.48997,-0.0412 87.70226,-0.0694 88.44869,-0.47784 z M 85.371002,223.44942 c 0,0 0.358188,-30.16134 0.419404,-51.10971 l 0.565799,-1.38338 c 0.311185,-0.76085 0.565852,-1.53186 0.565925,-1.71334 1.26e-4,-0.33115 1.081839,-2.86209 1.525221,-3.56862 0.130215,-0.20751 0.338318,-0.60945 0.462444,-0.89321 0.933232,-2.13339 5.437472,-7.0203 7.940532,-8.61516 5.064743,-3.22704 9.078513,-4.45112 14.595343,-4.45112 4.16785,0 7.2794,0.71603 11.19274,2.57568 3.059,1.45365 7.06974,4.61611 8.67752,6.84218 0.41501,0.57462 1.04476,1.42447 1.39945,1.88856 1.23437,1.61511 3.11424,5.85149 3.91179,8.81536 0.96614,18.90845 0.7253,51.81359 0.7253,51.81359 l 90.33587,-0.15842 c 0,0 0.33353,-6.5438 0.27812,-39.3253 -0.0699,-41.35437 -0.0262,-39.85897 -1.16575,-39.87858 -0.55067,-0.009 -3.17158,-1.22065 -4.50851,-2.08347 -0.59447,-0.38367 -1.66302,-1.25869 -2.37455,-1.94451 -0.71152,-0.68582 -1.47371,-1.24694 -1.69376,-1.24694 -0.22004,0 -0.99423,0.5667 -1.72041,1.25934 -2.293,2.18705 -4.59193,3.44438 -7.77491,4.25222 -2.61102,0.66269 -4.31916,0.66269 -6.9302,0 -3.22947,-0.81966 -5.36331,-1.99827 -7.94481,-4.38827 l -1.54349,-1.429 -1.54347,1.429 c -2.5815,2.39 -4.71534,3.56861 -7.94483,4.38827 -2.60546,0.66128 -4.34432,0.66286 -6.9445,0.006 -3.09652,-0.78188 -5.56452,-2.12468 -7.5449,-4.10505 -1.8719,-1.8719 -1.95498,-1.87903 -3.53127,-0.30274 -2.30867,2.30867 -4.6793,3.61633 -7.99004,4.40741 -2.74148,0.65505 -4.22711,0.65376 -6.82628,-0.006 -3.22942,-0.81965 -5.54816,-2.09844 -7.69174,-4.24202 -0.69825,-0.69826 -1.49981,-1.26956 -1.78126,-1.26956 -0.28143,0 -1.0793,0.56463 -1.77303,1.25471 -2.15152,2.14022 -4.51182,3.43993 -7.73056,4.25687 -2.61103,0.66268 -4.31917,0.66268 -6.93019,0 -3.2524,-0.82548 -5.46529,-2.05292 -7.87454,-4.36787 -0.79864,-0.76739 -1.48418,-1.39524 -1.52341,-1.39524 -0.0392,0 -0.78302,0.63723 -1.65286,1.41608 -2.70868,2.42533 -4.73661,3.53757 -7.92579,4.347 -2.60547,0.66128 -4.34433,0.66286 -6.944509,0.006 -3.143457,-0.79373 -5.202188,-1.92744 -7.921542,-4.36227 l -1.59157,-1.42507 -1.523921,1.41089 c -2.263785,2.73902 -5.700494,2.9498 -7.928213,4.9206 -0.457864,0.88912 -0.0042,78.53442 -0.0042,78.53442 l 6.183099,-0.16002 z m 74.744178,-6.21543 c -2.69796,-0.24242 -4.20683,-0.73864 -5.72102,-1.88146 -1.90166,-1.43524 -3.19598,-3.32139 -3.74187,-5.45279 -0.44572,-1.74032 -0.47224,-3.18584 -0.47224,-25.73849 0,-22.74237 0.023,-23.96739 0.47598,-25.40375 0.52386,-1.66094 0.87898,-2.30242 2.05274,-3.70802 0.86444,-1.03518 2.47085,-2.2776 3.25629,-2.51847 0.27668,-0.0849 0.95579,-0.32651 1.50914,-0.53703 0.87755,-0.33388 4.49296,-0.38435 28.29625,-0.39503 l 27.29017,-0.0123 1.86821,0.68 c 2.22075,0.80832 4.29551,2.65657 5.4541,4.85864 l 0.7264,1.38064 v 25.9068 25.90679 l -0.56592,1.00237 c -0.31126,0.55129 -0.56593,1.12318 -0.56593,1.27085 0,0.39295 -1.98249,2.34375 -3.11341,3.06365 -0.53651,0.34153 -1.61177,0.85462 -2.38947,1.14021 -1.39002,0.51045 -1.84435,0.52018 -26.81773,0.57435 -13.97206,0.0303 -26.36582,-0.0313 -27.54169,-0.13701 z m 52.42578,-6.81071 c 0.73319,-0.18462 1.28058,-0.53221 1.6834,-1.06897 l 0.59691,-0.7954 0.0666,-24.05955 0.0666,-24.05956 -0.66247,-0.78731 c -1.36553,-1.62284 0.4817,-1.52379 -28.4186,-1.52379 -26.32876,0 -26.33202,6e-5 -27.40003,0.53345 -1.95932,0.97853 -1.8803,-0.10072 -1.87347,25.59087 0.003,12.62425 0.1067,22.9794 0.23483,23.53187 0.30869,1.33096 1.0143,2.22171 2.04642,2.58337 1.16719,0.40897 52.04698,0.46114 53.65984,0.055 z m -10.48416,-29.67176 -0.0632,-9.16638 -9.65034,-0.20152 0.0235,-6.5643 c 0,0 11.39304,-0.31218 14.17956,0.35585 0.40108,0.14045 0.98574,0.63119 1.29926,1.09053 0.81415,4.7806 0.48319,9.7748 0.43605,14.62576 z m -71.11569,-4.2895 -0.61099,-2.5642 c -0.7241,-3.03896 -1.41931,-4.73869 -2.86403,-7.00233 -1.18075,-1.85005 -4.28197,-4.94046 -5.76101,-5.74095 -0.52427,-0.28374 -1.12298,-0.6222 -1.33048,-0.75215 -1.85015,-1.1586 -6.26783,-2.28348 -8.92904,-2.27361 -8.41306,0.0312 -15.699387,5.44387 -18.62236,13.83364 l -0.744852,2.13794 0.136045,49.67878 38.598297,-0.1289 c 0,0 0.0857,-31.45881 0.12842,-47.18822 z m -9.37171,24.1538 -0.20582,0.0401 0.0675,-6.00616 5.75124,-0.0415 -0.0262,6.07804 -5.58669,-0.0705 z M 77.969215,138.12911 c 3.708067,-0.85995 6.398978,-3.62522 7.216897,-7.41634 0.497972,-2.30814 0.525325,-43.336926 0.02945,-44.205032 -0.319046,-0.558564 -0.391725,-0.565926 -5.58784,-0.565926 -4.443382,0 -5.404973,0.06695 -6.164643,0.429211 -1.263952,0.602739 -1.831564,2.036313 -2.269936,5.733085 l -4.772206,33.653872 c -0.763957,3.23988 -0.288569,6.04637 1.462183,8.6322 0.660906,0.97615 2.441632,2.61065 2.844214,2.61065 0.100923,0 0.364456,0.16369 0.585512,0.36374 0.447196,0.4047 2.971568,1.07441 4.212359,1.11752 0.441003,0.0153 1.540805,-0.14351 2.44399,-0.35298 z m 52.260595,-0.13398 c 1.53865,-0.29671 4.05336,-2.03214 5.06756,-3.49719 1.48452,-2.14445 1.92683,-3.62686 1.92812,-6.46212 0.001,-2.09506 -0.07,-2.57849 -0.39668,-2.70387 -0.67297,-0.25825 -17.62674,-0.17254 -18.32419,0.0927 -0.61739,0.23473 -0.6448,0.32951 -0.63622,2.20082 0.0158,3.45452 0.90654,5.95586 2.79237,7.84169 2.55206,2.55206 5.46016,3.32034 9.56904,2.52804 z m 25.23221,0.12279 c 3.09649,-0.41652 6.29868,-3.38928 7.27742,-6.756 0.60907,-2.09516 0.80561,-5.23363 0.35134,-5.61064 -0.25981,-0.21562 -2.96261,-0.31913 -9.72534,-0.37243 -8.09981,-0.0638 -9.40011,-0.0228 -9.62132,0.30347 -0.39298,0.57965 -0.0203,4.42832 0.60542,6.25169 0.694,2.02238 2.7867,4.40196 4.74075,5.39062 1.26885,0.64199 3.88383,1.21628 4.73683,1.0403 0.20751,-0.0429 0.94321,-0.15397 1.6349,-0.24701 z m 77.97796,0.004 c 3.23205,-0.74955 5.90129,-3.23313 6.90024,-6.42028 0.5986,-1.90978 0.64043,-3.35081 0.16508,-5.6887 -0.19169,-0.94282 -0.42478,-2.61329 -0.51793,-3.71213 -0.0932,-1.09885 -0.32409,-2.68344 -0.51314,-3.52132 -0.18905,-0.83787 -0.42435,-2.54073 -0.52288,-3.78413 -0.0985,-1.2434 -0.27907,-2.60162 -0.40116,-3.01827 -0.12209,-0.41664 -0.39305,-2.28553 -0.60212,-4.15308 -0.20907,-1.86755 -0.48315,-3.7917 -0.60905,-4.27588 -0.12591,-0.48418 -0.30008,-1.72922 -0.38704,-2.76675 -0.087,-1.037527 -0.31886,-2.735307 -0.51532,-3.772834 -0.19646,-1.037519 -0.47906,-3.002797 -0.62799,-4.367273 -0.14893,-1.364477 -0.49407,-3.203757 -0.76696,-4.087289 -0.43762,-1.416825 -0.61254,-1.665787 -1.48212,-2.109415 -0.8929,-0.455506 -1.48249,-0.502978 -6.24714,-0.502978 -4.58661,0 -5.30546,0.05332 -5.60639,0.415851 -0.28666,0.345328 -0.34521,4.067011 -0.34521,21.945308 v 21.52947 l 0.56603,1.72458 c 1.08402,3.30286 3.66119,5.79011 6.78168,6.54506 1.95801,0.4737 2.76071,0.47711 4.73142,0.02 z M 105.89659,137.3746 c 1.88612,-0.95429 3.48243,-2.54662 4.42513,-4.41411 0.69134,-1.36953 0.80225,-1.88507 0.93113,-4.32806 0.18031,-3.41782 0.15082,-3.45337 -2.86503,-3.45337 -1.23977,0 -2.4153,-0.14413 -2.90731,-0.35645 -0.45429,-0.19605 -1.22213,-0.50443 -1.70631,-0.68529 -0.92106,-0.34405 -4.024354,-3.29487 -4.024354,-3.82662 0,-0.16898 -0.254346,-0.75563 -0.565206,-1.30364 l -0.565202,-0.9962 -0.126485,-15.9181 C 98.383457,88.313392 97.989188,85.931619 97.989188,85.931619 l -5.730709,-0.02946 c 0,0 -0.237281,25.567295 -0.180099,45.187865 l 0.800668,1.65141 c 0.911989,1.88099 2.348244,3.43489 4.058202,4.3906 1.667109,0.93177 2.621992,1.11838 5.25373,1.02674 1.9378,-0.0675 2.54215,-0.19534 3.70557,-0.78397 z m 77.96194,-0.10789 c 1.53279,-0.87698 3.57442,-2.81822 3.8225,-3.63455 0.0887,-0.29159 0.31069,-0.70133 0.49351,-0.91055 0.42733,-0.48898 0.86137,-3.16867 0.8638,-5.3329 0.001,-1.41352 -0.0774,-1.73138 -0.48461,-1.94929 -0.30911,-0.16542 -3.73709,-0.26036 -9.40128,-0.26036 -7.58094,0 -8.9612,0.056 -9.22504,0.37384 -0.21909,0.26399 -0.27968,1.16942 -0.20621,3.08115 0.0941,2.44796 0.18181,2.85861 0.91565,4.28675 0.91443,1.77961 2.27595,3.21592 4.01814,4.23889 1.57369,0.92403 2.48491,1.09074 5.38312,0.98484 2.18899,-0.08 2.585,-0.17097 3.82042,-0.8778 z m 25.583,0.12725 c 2.26667,-1.14772 3.71359,-2.714 4.78123,-5.17565 l 0.59851,-1.38 v -22.33177 c 0,-19.574697 -0.0466,-22.3618 -0.37728,-22.574972 -0.2075,-0.13376 -1.50605,-0.214521 -2.88567,-0.17947 -2.39407,0.06083 -2.52286,0.09239 -2.82592,0.692538 -0.24504,0.485261 -0.31837,4.072774 -0.32123,15.715274 -0.004,14.98512 -0.007,15.0958 -0.56087,16.47471 -1.67451,4.17229 -4.97479,6.54444 -9.10507,6.54444 -1.03127,0 -2.16538,0.11039 -2.52022,0.2453 -0.60387,0.22958 -0.64519,0.3531 -0.64519,1.92869 0,4.64474 1.38662,7.52489 4.61366,9.58306 1.59354,1.01634 3.02363,1.33096 5.60079,1.23219 1.88685,-0.0723 2.53089,-0.20906 3.64726,-0.77433 z m -85.60152,-18.8945 c 0.5555,-0.38909 0.55902,-0.43675 0.55902,-7.58133 v -7.18976 l -0.75229,-0.71892 c -0.41375,-0.39541 -0.87405,-0.71892 -1.02286,-0.71892 -0.23325,0 -1.88441,-1.11572 -2.24921,-1.51982 -0.0692,-0.0766 -0.4854,-0.39039 -0.92494,-0.69724 -0.79757,-0.556797 -3.56973,-3.773473 -4.48385,-5.202838 -0.64836,-1.013796 -1.86763,-3.460831 -1.87746,-3.767973 -0.004,-0.135663 -0.22402,-0.814774 -0.48817,-1.509133 -0.57662,-1.515769 -1.28038,-5.373269 -1.28038,-7.018108 0,-0.651665 0.23164,-2.4787 0.51476,-4.060078 0.86252,-4.817553 2.93703,-8.842153 6.28184,-12.186977 2.42019,-2.420182 6.01527,-4.650725 8.57737,-5.321756 1.46845,-0.384597 2.47686,-0.01969 3.44263,1.24579 l 0.67637,0.886277 0.0764,7.936548 c 0.056,5.812726 0.15693,7.987735 0.37729,8.127818 0.39193,0.249158 5.2404,0.249061 5.63236,-1.11e-4 0.2209,-0.14043 0.32134,-2.354372 0.37728,-8.316038 l 0.0762,-8.124658 0.93092,-0.852799 c 1.24535,-1.140842 1.99897,-1.295818 3.57031,-0.734201 1.447,0.517172 3.73418,1.614044 3.92476,1.882206 0.0692,0.09733 0.49958,0.368518 0.95647,0.60265 2.15481,1.104226 5.871,5.393586 7.53686,8.699298 1.96942,3.908081 2.66522,8.519102 2.0116,13.330682 -0.54211,3.990742 -1.49224,6.54014 -3.65581,9.809364 -1.23553,1.86691 -4.75235,5.355297 -6.33933,6.288057 -0.5884,0.34584 -1.39408,0.91177 -1.79039,1.25761 l -0.72056,0.6288 -0.0684,7.24969 c -0.0654,6.92795 -0.0467,7.26562 0.41985,7.60855 0.40399,0.29693 2.25662,0.35886 10.7362,0.35886 6.10224,0 10.51094,-0.1 10.89801,-0.24714 l 0.65004,-0.24715 -0.0735,-11.76304 c -0.0525,-8.402287 -0.16715,-12.230135 -0.40142,-13.397933 -0.18038,-0.899192 -0.54442,-2.65356 -0.80896,-3.898595 -0.26454,-1.245036 -0.66149,-3.169181 -0.88208,-4.275879 -0.22061,-1.106698 -0.49989,-2.464918 -0.62064,-3.018268 -0.33728,-1.54567 -0.27158,-4.350438 0.14433,-6.162296 0.20641,-0.899192 0.53453,-2.596968 0.72916,-3.772834 0.19462,-1.175867 0.46537,-2.428267 0.60165,-2.783112 0.13627,-0.354842 0.32543,-1.316915 0.42034,-2.137939 0.21667,-1.874289 1.26075,-5.819657 1.67087,-6.313808 0.16977,-0.204563 0.73618,-0.590031 1.25869,-0.856595 0.86908,-0.443371 1.53288,-0.48466 7.79192,-0.48466 h 6.8419 l 1.08295,0.634648 c 0.87447,0.512472 1.13636,0.839312 1.36043,1.697776 0.15261,0.584719 0.43923,1.6213 0.63693,2.303509 0.19768,0.682211 0.35943,1.538078 0.35943,1.901925 0,0.36385 0.21413,1.503455 0.47584,2.532453 0.2617,1.029 0.5488,2.493426 0.638,3.25428 0.0892,0.760855 0.35518,1.949298 0.59109,2.640984 0.60495,1.773744 0.6075,7.771632 0.004,9.557848 -0.23367,0.691686 -0.49417,1.823536 -0.57889,2.515223 -0.13937,1.137876 -0.35797,2.222865 -1.41892,7.042623 -0.24128,1.096031 -0.35246,4.641823 -0.40621,12.95339 -0.0739,11.43154 -0.0734,11.44476 0.46415,11.88443 0.47852,0.39139 1.19175,0.44016 6.43731,0.44016 5.3987,0 6.00132,-0.0439 7.10344,-0.51806 0.94536,-0.40669 1.32039,-0.75059 1.7444,-1.59957 l 0.54013,-1.0815 V 85.910372 56.128642 l -0.59595,-1.114211 c -0.34729,-0.649285 -0.94913,-1.303613 -1.44233,-1.568123 -0.80696,-0.432777 -2.97858,-0.453915 -46.63128,-0.453915 -44.11458,0 -45.81664,0.01703 -46.65503,0.466659 -0.51317,0.275216 -1.10487,0.910554 -1.44233,1.548694 l -0.57219,1.082036 v 29.80116 29.801148 l 0.53596,1.07316 c 0.50111,1.00338 1.09308,1.42849 2.73383,1.96328 0.20751,0.0676 3.71934,0.13191 7.8041,0.14283 6.33689,0.017 7.50886,-0.0376 7.98583,-0.37168 z m 13.09512,0.0625 c 0.1822,-0.21955 0.2971,-3.33798 0.34519,-9.36921 l 0.0721,-9.04013 0.60978,-0.812777 c 0.37245,-0.49645 1.3411,-1.16463 2.48882,-1.7168 4.35069,-2.093104 6.90872,-4.819719 8.77886,-9.357415 0.66436,-1.611978 0.69859,-1.892773 0.69745,-5.719558 -0.001,-3.651136 -0.0536,-4.133878 -0.56592,-5.205289 -0.3106,-0.649512 -0.56473,-1.311148 -0.56473,-1.470306 0,-0.159156 -0.19808,-0.590296 -0.44017,-0.958086 -0.24209,-0.367792 -0.55335,-0.850426 -0.69168,-1.072518 -1.16952,-1.877603 -3.35299,-4.143989 -3.67258,-3.812036 -0.1025,0.106502 -0.26785,3.275388 -0.36737,7.041968 l -0.18095,6.848325 -0.73487,0.823105 -0.73487,0.823104 h -7.90154 -7.90154 l -0.65208,-0.652077 c -0.35863,-0.358643 -0.75466,-1.094346 -0.88004,-1.634894 -0.12538,-0.54055 -0.23067,-3.727556 -0.23397,-7.082235 -0.003,-3.354678 -0.0682,-6.099415 -0.14425,-6.099415 -0.43617,0 -1.65603,0.852218 -2.34806,1.640403 -6.3632,7.247273 -4.98474,18.851312 2.88469,24.283754 0.68008,0.469477 1.99349,1.22188 2.91867,1.67202 1.05316,0.5124 1.94664,1.16503 2.38946,1.74533 l 0.70731,0.926897 0.075,8.93799 c 0.0495,5.89146 0.16716,9.04892 0.34521,9.26345 0.38112,0.45923 5.32047,0.45611 5.702,-0.003 z m 42.01648,-0.0148 c 0.20438,-0.24626 0.26667,-3.04836 0.21944,-9.87225 l -0.0659,-9.528387 h -3.01827 -3.01826 l -0.0659,9.528387 c -0.0473,6.82389 0.0151,9.626 0.21943,9.87225 0.20739,0.24989 0.99026,0.34386 2.86477,0.34386 1.87451,0 2.65737,-0.094 2.86476,-0.34386 z m 0.89011,-26.461225 c 0.21738,-0.217385 0.39524,-0.702939 0.39524,-1.079005 0,-0.376067 0.18268,-1.358351 0.40596,-2.182854 0.22327,-0.824506 0.56111,-2.404578 0.75076,-3.511276 0.18965,-1.106698 0.51394,-2.747881 0.72065,-3.647073 0.46939,-2.041782 0.46989,-2.73114 0.003,-4.778923 -0.20481,-0.899192 -0.54527,-2.626492 -0.75659,-3.838445 -0.21132,-1.211952 -0.48339,-2.464352 -0.60458,-2.783111 -0.12119,-0.318759 -0.30031,-1.219624 -0.39805,-2.001924 -0.0978,-0.782297 -0.34948,-1.564909 -0.55941,-1.739135 -0.52049,-0.431973 -5.38166,-0.597512 -6.62319,-0.225543 -0.98658,0.295586 -1.0855,0.453701 -1.35268,2.162161 -0.0866,0.553349 -0.32328,1.741791 -0.52609,2.640983 -0.20282,0.899193 -0.54762,2.540375 -0.76625,3.647074 -0.21861,1.106698 -0.50936,2.567102 -0.64609,3.245342 -0.16314,0.809174 -0.16371,1.673964 -0.002,2.515223 0.4201,2.18111 1.04247,5.246923 1.33249,6.564027 0.15232,0.691686 0.41993,2.04154 0.5947,2.999675 0.20295,1.112601 0.48232,1.862384 0.77316,2.075058 0.70762,0.517422 6.73013,0.465764 7.25815,-0.06225 z" + id="path2224" + sodipodi:nodetypes="sssssccccsccscssscsscccssccsscssccsssssssssssscsssssssscscsscsssssscsssssssssscccscssssssscsssssscsssssssssssccccccssssssssscsscccssssssssccccssscssssccccccccccsscsscccccscccccssssssccssssssscssssssscssscscscsssssssssssssssscssccsssssssscsscccssssssscssssssssssscssssccssssssssccssssscsssssscsssccssssssssscssssccssssssssssscssssssscsscsssscccssssscccssssscccssscsssssscccccsscssssscssccccccccsscccsssscsscsssssscsssccs" /> </svg> diff --git a/assets/layers/bike_shop/shop.svg b/assets/layers/bike_shop/shop.svg index d3b39a22cc..6fc0a9c9b2 100644 --- a/assets/layers/bike_shop/shop.svg +++ b/assets/layers/bike_shop/shop.svg @@ -1,185 +1,48 @@ -<svg width="98" height="121" viewBox="0 0 98 121" fill="none" xmlns="http://www.w3.org/2000/svg"> - <path d="M53.0445 111.094C51.2614 114.981 45.7386 114.981 43.9555 111.094L13.2124 44.085C11.6928 40.7729 14.1129 37 17.7569 37L79.2431 37C82.8871 37 85.3072 40.7729 83.7876 44.085L53.0445 111.094Z" - fill="#383E57"/> - <circle cx="49" cy="49" r="49" fill="#383E57"/> - <g filter="url(#filter0_d)"> - <ellipse cx="20" cy="32.5" rx="7" ry="5.5" fill="white"/> - </g> - <g filter="url(#filter1_d)"> - <ellipse cx="63.5" cy="32.5" rx="7.5" ry="5.5" fill="white"/> - </g> - <g filter="url(#filter2_d)"> - <ellipse cx="78" cy="32.5" rx="7" ry="5.5" fill="white"/> - </g> - <g filter="url(#filter3_d)"> - <ellipse cx="49" cy="32.5" rx="7" ry="5.5" fill="white"/> - </g> - <g filter="url(#filter4_d)"> - <ellipse cx="34.5" cy="32.5" rx="7.5" ry="5.5" fill="white"/> - </g> - <path d="M19.5 24.5L30.3253 31.5H8.67468L19.5 24.5Z" fill="white"/> - <path d="M79 24.5L89.3253 31.5H67.6747L79 24.5Z" fill="white"/> - <rect x="19" y="20" width="60" height="14" fill="white"/> - <rect x="6" y="31" width="85" height="1" fill="#383E57"/> - <g filter="url(#filter5_d)"> - <rect x="21" y="38" width="4" height="34" fill="white"/> - </g> - <g filter="url(#filter6_d)"> - <rect x="74" y="39" width="4" height="34" fill="white"/> - </g> - <g filter="url(#filter7_d)"> - <rect x="16" y="72" width="67" height="5" fill="white"/> - </g> - <g filter="url(#filter8_d)"> - <path d="M43.1579 63.8659H33.5872L38.8076 52.2202H44.028H47.7983H51.8586M51.8586 52.2202L50.4085 48.9355H52.4386H54.4688M51.8586 52.2202L52.4386 53.7132L53.5987 56.1021L56.789 63.8659M51.8586 52.2202L49.1034 56.6993L47.4502 59.3867M46.3481 61.1784L47.4502 59.3867M40.8377 55.5049L43.7379 62.0742L37.9375 48.9355L39.6776 52.5188M45.4781 62.6714L47.4502 59.3867" - stroke="white" stroke-width="2"/> - <path d="M46.0936 63.3578C46.0936 64.25 45.3949 64.9481 44.5635 64.9481C43.732 64.9481 43.0333 64.25 43.0333 63.3578C43.0333 62.4657 43.732 61.7676 44.5635 61.7676C45.3949 61.7676 46.0936 62.4657 46.0936 63.3578Z" - stroke="white"/> - <path d="M39.7932 62.7607C39.7932 66.359 36.9675 69.2258 33.5427 69.2258C30.1179 69.2258 27.2921 66.359 27.2921 62.7607C27.2921 59.1623 30.1179 56.2955 33.5427 56.2955C36.9675 56.2955 39.7932 59.1623 39.7932 62.7607Z" - stroke="white" stroke-width="2"/> - <ellipse cx="60.279" cy="57.3748" rx="0.210172" ry="0.216394" fill="black" fill-opacity="0.49"/> - </g> - <g filter="url(#filter9_d)"> - <path d="M43.1579 63.8659H33.5872L38.8076 52.2202H44.028H47.7983H51.8586M51.8586 52.2202L50.4085 48.9355H52.4386H54.4688M51.8586 52.2202L52.4386 53.7132L53.5987 56.1021L56.789 63.8659M51.8586 52.2202L49.1034 56.6993L47.4502 59.3867M46.3481 61.1784L47.4502 59.3867M40.8377 55.5049L43.7379 62.0742L37.9375 48.9355L39.6776 52.5188M45.4781 62.6714L47.4502 59.3867" - stroke="white" stroke-width="2"/> - <path d="M46.0936 63.3578C46.0936 64.25 45.3949 64.9481 44.5635 64.9481C43.732 64.9481 43.0333 64.25 43.0333 63.3578C43.0333 62.4657 43.732 61.7676 44.5635 61.7676C45.3949 61.7676 46.0936 62.4657 46.0936 63.3578Z" - stroke="white"/> - <path d="M39.7932 62.7607C39.7932 66.359 36.9675 69.2258 33.5427 69.2258C30.1179 69.2258 27.2921 66.359 27.2921 62.7607C27.2921 59.1623 30.1179 56.2955 33.5427 56.2955C36.9675 56.2955 39.7932 59.1623 39.7932 62.7607Z" - stroke="white" stroke-width="2"/> - <ellipse cx="60.279" cy="57.3748" rx="0.210172" ry="0.216394" fill="black" fill-opacity="0.49"/> - </g> - <g filter="url(#filter10_d)"> - <circle cx="56.5" cy="63.5" r="6.5" stroke="white" stroke-width="2"/> - </g> - <path d="M63.2749 56.3586C62.609 56.7271 61.792 56.2445 61.7917 55.4825L61.7903 51.7748C61.7901 51.0004 62.6308 50.5198 63.2972 50.9134L66.5392 52.8283C67.2055 53.2219 67.1924 54.1913 66.5155 54.5658L63.2749 56.3586Z" - fill="white"/> - <g filter="url(#filter11_d)"> - <rect width="7.82366" height="6.20457" rx="1" - transform="matrix(0.490888 -0.871223 0.870592 0.492006 61.4893 51.5931)" fill="white"/> - </g> - <path d="M66.0399 53.2049C62.045 51.8388 64.4608 45.5484 68.7455 48.7409" stroke="#383E57" stroke-width="0.75"/> - <path d="M63.0112 49.4193L66.8764 51.3548M63.4944 48.4516L67.5528 50.4839" stroke="#383E57" stroke-width="0.75"/> - <circle cx="63.5" cy="54.5" r="0.5" fill="#383E57"/> - <defs> - <filter id="filter0_d" x="9" y="27" width="22" height="19" filterUnits="userSpaceOnUse" - color-interpolation-filters="sRGB"> - <feFlood flood-opacity="0" result="BackgroundImageFix"/> - <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/> - <feOffset dy="4"/> - <feGaussianBlur stdDeviation="2"/> - <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"/> - <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow"/> - <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow" result="shape"/> - </filter> - <filter id="filter1_d" x="52" y="27" width="23" height="19" filterUnits="userSpaceOnUse" - color-interpolation-filters="sRGB"> - <feFlood flood-opacity="0" result="BackgroundImageFix"/> - <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/> - <feOffset dy="4"/> - <feGaussianBlur stdDeviation="2"/> - <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"/> - <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow"/> - <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow" result="shape"/> - </filter> - <filter id="filter2_d" x="67" y="27" width="22" height="19" filterUnits="userSpaceOnUse" - color-interpolation-filters="sRGB"> - <feFlood flood-opacity="0" result="BackgroundImageFix"/> - <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/> - <feOffset dy="4"/> - <feGaussianBlur stdDeviation="2"/> - <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"/> - <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow"/> - <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow" result="shape"/> - </filter> - <filter id="filter3_d" x="38" y="27" width="22" height="19" filterUnits="userSpaceOnUse" - color-interpolation-filters="sRGB"> - <feFlood flood-opacity="0" result="BackgroundImageFix"/> - <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/> - <feOffset dy="4"/> - <feGaussianBlur stdDeviation="2"/> - <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"/> - <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow"/> - <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow" result="shape"/> - </filter> - <filter id="filter4_d" x="23" y="27" width="23" height="19" filterUnits="userSpaceOnUse" - color-interpolation-filters="sRGB"> - <feFlood flood-opacity="0" result="BackgroundImageFix"/> - <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/> - <feOffset dy="4"/> - <feGaussianBlur stdDeviation="2"/> - <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"/> - <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow"/> - <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow" result="shape"/> - </filter> - <filter id="filter5_d" x="17" y="38" width="12" height="42" filterUnits="userSpaceOnUse" - color-interpolation-filters="sRGB"> - <feFlood flood-opacity="0" result="BackgroundImageFix"/> - <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/> - <feOffset dy="4"/> - <feGaussianBlur stdDeviation="2"/> - <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"/> - <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow"/> - <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow" result="shape"/> - </filter> - <filter id="filter6_d" x="70" y="39" width="12" height="42" filterUnits="userSpaceOnUse" - color-interpolation-filters="sRGB"> - <feFlood flood-opacity="0" result="BackgroundImageFix"/> - <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/> - <feOffset dy="4"/> - <feGaussianBlur stdDeviation="2"/> - <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"/> - <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow"/> - <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow" result="shape"/> - </filter> - <filter id="filter7_d" x="12" y="72" width="75" height="13" filterUnits="userSpaceOnUse" - color-interpolation-filters="sRGB"> - <feFlood flood-opacity="0" result="BackgroundImageFix"/> - <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/> - <feOffset dy="4"/> - <feGaussianBlur stdDeviation="2"/> - <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"/> - <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow"/> - <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow" result="shape"/> - </filter> - <filter id="filter8_d" x="22.2921" y="47.9355" width="42.1971" height="30.2904" filterUnits="userSpaceOnUse" - color-interpolation-filters="sRGB"> - <feFlood flood-opacity="0" result="BackgroundImageFix"/> - <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/> - <feOffset dy="4"/> - <feGaussianBlur stdDeviation="2"/> - <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"/> - <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow"/> - <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow" result="shape"/> - </filter> - <filter id="filter9_d" x="22.2921" y="47.9355" width="42.1971" height="30.2904" filterUnits="userSpaceOnUse" - color-interpolation-filters="sRGB"> - <feFlood flood-opacity="0" result="BackgroundImageFix"/> - <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/> - <feOffset dy="4"/> - <feGaussianBlur stdDeviation="2"/> - <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"/> - <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow"/> - <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow" result="shape"/> - </filter> - <filter id="filter10_d" x="45" y="56" width="23" height="23" filterUnits="userSpaceOnUse" - color-interpolation-filters="sRGB"> - <feFlood flood-opacity="0" result="BackgroundImageFix"/> - <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/> - <feOffset dy="4"/> - <feGaussianBlur stdDeviation="2"/> - <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"/> - <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow"/> - <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow" result="shape"/> - </filter> - <filter id="filter11_d" x="57.8511" y="45.1395" width="16.5185" height="17.1438" filterUnits="userSpaceOnUse" - color-interpolation-filters="sRGB"> - <feFlood flood-opacity="0" result="BackgroundImageFix"/> - <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"/> - <feOffset dy="4"/> - <feGaussianBlur stdDeviation="2"/> - <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"/> - <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow"/> - <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow" result="shape"/> - </filter> - </defs> +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<svg + width="303" + height="352.3916" + viewBox="0 0 303 352.3916" + version="1.1" + id="svg207" + sodipodi:docname="shop.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:xlink="http://www.w3.org/1999/xlink" + xmlns="http://www.w3.org/2000/svg" + xmlns:svg="http://www.w3.org/2000/svg"> + <path + id="path166" + style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" + d="m 58.746094,61.816406 c 0,0 0.02494,11.462227 -1.312538,15.058089 -3.278163,4.841221 -30.056603,20.129411 -30.056603,20.129411 l -0.556641,0.359375 h 0.720704 c 2.145767,5.099179 7.999631,8.526209 14.585937,8.539059 5.268114,-4.9e-4 10.173651,-2.19675 13.017578,-5.82812 2.844301,3.63185 7.750724,5.82818 13.019531,5.82812 4.123059,-0.0122 8.069509,-1.37197 10.962891,-3.77734 2.893382,2.40537 6.839832,3.76515 10.962891,3.77734 5.268575,-9.1e-4 10.174216,-2.19796 13.017576,-5.83007 2.84337,3.63211 7.749,5.82916 13.01758,5.83007 4.36567,-0.006 8.52486,-1.52281 11.45117,-4.17578 2.92585,2.65256 7.08422,4.16921 11.44922,4.17578 5.26881,6e-5 10.17523,-2.19627 13.01953,-5.82812 2.84393,3.63137 7.74947,5.82763 13.01758,5.82812 4.1856,-0.0115 8.18678,-1.41173 11.08984,-3.88086 2.90353,2.46953 6.90552,3.86977 11.0918,3.88086 5.26811,-4.9e-4 10.17365,-2.19675 13.01758,-5.82812 2.8443,3.63185 7.75072,5.82818 13.01953,5.82812 3.99606,-0.0113 7.8317,-1.28866 10.70313,-3.56445 2.87143,2.27578 6.70706,3.55316 10.70312,3.56445 5.26858,-9.1e-4 10.17421,-2.19796 13.01758,-5.83007 2.84337,3.63211 7.749,5.82916 13.01758,5.83007 6.58702,-0.0122 12.44189,-3.43933 14.58789,-8.539059 h 0.86914 l -0.66407,-0.449219 c 0,0 -28.27537,-15.486723 -30.05983,-21.40227 -0.89597,-5.071593 -1.20188,-13.695386 -1.20188,-13.695386 z" /> + <rect + style="fill:#ffffff;stroke:#aaaaaa;stroke-width:0.0907904;stroke-linecap:round;stroke-linejoin:bevel;stop-color:#000000" + id="rect2600" + width="15.500847" + height="97.555931" + x="59.718002" + y="113.8181" /> + <rect + style="fill:#ffffff;stroke:#aaaaaa;stroke-width:0.0944882;stroke-linecap:round;stroke-linejoin:bevel;stop-color:#000000" + id="rect2602" + width="206.7755" + height="14.332707" + x="50.773739" + y="218.57433" /> + <rect + style="fill:#ffffff;stroke:#aaaaaa;stroke-width:0.0907904;stroke-linecap:round;stroke-linejoin:bevel;stop-color:#000000" + id="rect2684" + width="15.500847" + height="97.555931" + x="236.16039" + y="112.1123" /> + <path + path-name="a" + unicode="á" + horiz-adv-x="661" + d="m 198.59598,155.57564 c 15.01466,0 27.1883,12.16965 27.18578,27.18428 0,15.01465 -12.17012,27.18477 -27.18477,27.18477 -15.01193,0 -27.18477,-12.17012 -27.18477,-27.18477 0,-11.09298 6.64773,-20.62776 16.17489,-24.85399 l -2.5122,-7.92642 -35.20922,35.01809 h -10.83127 c -1.13762,13.96504 -12.82718,24.94716 -27.08661,24.94716 -15.011931,0 -27.182001,-12.17011 -27.182001,-27.18477 0,-15.01466 12.17012,-27.18478 27.182001,-27.18478 2.94507,0 5.77682,0.47566 8.43478,1.34164 l 8.24844,-17.0861 -3.47872,-8.63879 h -5.81713 c -1.6312,0 -1.65137,-1.32149 -1.65137,-2.94998 0,-1.62849 0.0202,-2.94997 1.65137,-2.94997 h 18.94614 c 1.6285,0 2.95244,1.32148 2.95244,2.94997 0,1.63121 -1.32394,2.95023 -2.95244,2.95023 h -6.77112 l 2.29047,5.67112 h 47.12027 l -2.30055,-7.26939 c -0.18632,-0.39526 -1.38441,-2.73859 -3.89389,-2.73859 h -7.08823 c -1.6285,0 -1.6462,-1.32147 -1.6462,-2.94997 0,-1.62849 0.0177,-2.95244 1.6462,-2.95244 h 7.08823 c 5.33385,0 8.40971,4.06769 9.3863,6.47148 0.0278,0.0779 2.21255,6.97492 5.02659,15.85532 0.0302,0.0678 0.0428,0.13569 0.0654,0.20624 1.25609,3.96198 2.63289,8.31161 3.99714,12.62587 v 0.002 c 1.74428,-0.34979 3.54656,-0.53858 5.39409,-0.53858 z m -75.40149,9.08626 -6.96702,14.43061 h 16.71098 c -1.05725,-6.08629 -4.69204,-11.28422 -9.74396,-14.43061 z m -11.24366,39.40543 c 11.01234,0 20.07124,-8.35438 21.18894,-19.06979 h -21.61443 c -1.01693,0 -1.95839,-0.52603 -2.49967,-1.3844 -0.53857,-0.85838 -0.59904,-1.93823 -0.15609,-2.85191 l 8.92811,-18.49068 c -1.86005,-0.52849 -3.82089,-0.81806 -5.84712,-0.81806 -11.76994,0 -21.307171,9.53994 -21.307171,21.30743 0,11.76747 9.539951,21.30741 21.307431,21.30741 z m 26.93028,-24.97459 5.58556,0.002 -12.85249,-31.87143 -5.85474,12.12489 c 7.00513,4.14069 11.98649,11.32945 13.12165,19.74407 z m 11.02493,-2.28806 33.16266,-33.16038 -0.27679,-0.88099 H 136.1801 Z m 48.69321,27.26265 c 11.76749,0 21.30693,-9.53994 21.30693,-21.30741 0,-11.76749 -9.53995,-21.30743 -21.30743,-21.30743 -1.23078,0 -2.43132,0.11086 -3.60432,0.30972 v 0.002 c 3.52886,11.14311 5.97544,19.53512 5.97544,19.53512 0.49089,1.55303 -0.36995,3.21178 -1.92298,3.70511 -1.5555,0.48843 -3.21179,-0.3724 -3.70511,-1.92298 l -5.96807,-19.52775 -0.002,-0.005 c -7.14597,3.43842 -12.07942,10.7481 -12.07942,19.21065 0,11.76748 9.53994,21.30741 21.30742,21.30741 z" + id="path3566" + sodipodi:nodetypes="ccssccccssscccssssssccccssssscccccccccccscscccssssccccccccccccsscccccccscc" + style="fill:#ffffff;fill-opacity:1;stroke-width:0.251711" /> </svg> diff --git a/assets/layers/bike_shop/tools.svg b/assets/layers/bike_shop/tools.svg index 7bbb6ba68f..87b56711c1 100644 --- a/assets/layers/bike_shop/tools.svg +++ b/assets/layers/bike_shop/tools.svg @@ -1,248 +1,69 @@ <?xml version="1.0" encoding="UTF-8" standalone="no"?> <svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - xmlns="http://www.w3.org/2000/svg" - width="98" - height="98" - viewBox="0 0 98 98" - version="1.1" - id="svg98" - sodipodi:docname="repair_station.svg" - inkscape:version="0.92.4 (5da689c313, 2019-01-14)" - style="fill:none"> - <metadata - id="metadata102"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage"/> - </cc:Work> - </rdf:RDF> - </metadata> - <sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1043" - id="namedview100" - showgrid="false" - inkscape:zoom="1.9504132" - inkscape:cx="49" - inkscape:cy="37.5" - inkscape:window-x="0" - inkscape:window-y="0" - inkscape:window-maximized="1" - inkscape:current-layer="svg98"/> - <circle - cx="49" - cy="49" - r="49" - id="circle4" - style="fill:#32adf2"/> - <g - id="g22" - transform="matrix(1.9174844,0,0,1.9174844,-43.416489,-3.3191349)" - style="filter:url(#filter1_d)"> - <path - d="m 39.0246,31.9734 -3.616,2.9572 -0.0183,0.0153 c -0.8417,0.7272 -1.3474,1.7815 -1.3877,2.8925 -0.0295,0.8133 0.193,1.6137 0.6225,2.2929 l 3.485,-3.4815 c 0.3438,-0.3435 0.9013,-0.3435 1.2452,0 0.3439,0.3435 0.3439,0.9005 0,1.2441 l -3.4848,3.4814 C 36.5103,41.7791 37.2574,42 38.0217,42 c 0.0479,0 0.0959,-9e-4 0.1439,-0.0026 1.1121,-0.0403 2.1674,-0.5455 2.8953,-1.3865 l 2.9753,-3.6307 z" - id="path10" - inkscape:connector-curvature="0" - style="fill:#fff7f7"/> - <path - d="m 42.008,29.5336 -1.614,1.3199 4.7633,4.7586 1.3213,-1.6123 z" - id="path12" - inkscape:connector-curvature="0" - style="fill:#fff7f7"/> - <path - d="m 44.8629,29.9 1.1944,-1.1932 1.245,1.2439 -1.1944,1.1932 z" - id="path14" - inkscape:connector-curvature="0" - style="fill:#fff7f7"/> - <path - d="m 52.5127,22.2598 4.6927,-4.6882 1.2451,1.2439 -4.6927,4.6881 z" - id="path16" - inkscape:connector-curvature="0" - style="fill:#fff7f7"/> - <path - d="M 57.5981,15.4757 61.0772,12 l 2.9182,2.9153 -3.4791,3.4758 z" - id="path18" - inkscape:connector-curvature="0" - style="fill:#fff7f7"/> - <path - d="m 60.4798,30.9612 c -0.897,-0.8961 -1.9984,-1.3698 -3.1848,-1.3698 -0.3233,0 -0.6531,0.0356 -0.9803,0.1058 -0.3511,0.0752 -0.7327,-0.0406 -0.9903,-0.2981 L 44.7335,18.8186 C 44.4694,18.5548 44.3563,18.1695 44.4387,17.813 44.8015,16.2466 44.358,14.7415 43.1901,13.5748 42.1736,12.5592 40.822,12 39.3843,12 c -0.7345,0 -1.4478,0.1457 -2.12,0.4332 l -0.3986,0.1705 3.096,3.0929 -2.2608,2.2585 -3.0958,-3.093 -0.1707,0.3983 c -0.4184,0.9763 -0.5375,2.0464 -0.3446,3.0948 0.1976,1.0736 0.7119,2.0505 1.4872,2.8252 0.897,0.8961 1.9983,1.3698 3.1847,1.3698 0.3234,0 0.6533,-0.0356 0.9804,-0.1058 0.0725,-0.0156 0.1467,-0.0234 0.2209,-0.0234 0.2846,0 0.5651,0.1172 0.7695,0.3215 L 51.3233,33.323 c 0.2644,0.264 0.3774,0.6496 0.2947,1.0062 -0.3626,1.5659 0.0808,3.0709 1.2487,4.2376 1.0165,1.0156 2.3681,1.5749 3.8058,1.5748 0.7346,0 1.4479,-0.1458 2.1199,-0.4332 l 0.3988,-0.1705 -3.096,-3.0929 2.2607,-2.2584 3.0958,3.0928 0.1707,-0.3983 c 0.4184,-0.9762 0.5375,-2.0463 0.3446,-3.0946 -0.1976,-1.0737 -0.7119,-2.0507 -1.4872,-2.8253 z" - id="path20" - inkscape:connector-curvature="0" - style="fill:#fff7f7"/> - </g> - <defs - id="defs96"> - <filter - id="filter0_d" - x="58.84" - y="50.703999" - width="25.4126" - height="17.436001" - filterUnits="userSpaceOnUse" - style="color-interpolation-filters:sRGB"> - <feFlood - flood-opacity="0" - result="BackgroundImageFix" - id="feFlood36"/> - <feColorMatrix - in="SourceAlpha" - type="matrix" - values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" - id="feColorMatrix38"/> - <feOffset - dy="4" - id="feOffset40"/> - <feGaussianBlur - stdDeviation="2" - id="feGaussianBlur42"/> - <feColorMatrix - type="matrix" - values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0" - id="feColorMatrix44"/> - <feBlend - mode="normal" - in2="BackgroundImageFix" - result="effect1_dropShadow" - id="feBlend46"/> - <feBlend - mode="normal" - in="SourceGraphic" - in2="effect1_dropShadow" - result="shape" - id="feBlend48"/> - </filter> - <filter - id="filter1_d" - x="30" - y="12" - width="37.995399" - height="38" - filterUnits="userSpaceOnUse" - style="color-interpolation-filters:sRGB"> - <feFlood - flood-opacity="0" - result="BackgroundImageFix" - id="feFlood51"/> - <feColorMatrix - in="SourceAlpha" - type="matrix" - values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" - id="feColorMatrix53"/> - <feOffset - dy="4" - id="feOffset55"/> - <feGaussianBlur - stdDeviation="2" - id="feGaussianBlur57"/> - <feColorMatrix - type="matrix" - values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0" - id="feColorMatrix59"/> - <feBlend - mode="normal" - in2="BackgroundImageFix" - result="effect1_dropShadow" - id="feBlend61"/> - <feBlend - mode="normal" - in="SourceGraphic" - in2="effect1_dropShadow" - result="shape" - id="feBlend63"/> - </filter> - <filter - id="filter2_d" - x="11" - y="51" - width="54.766701" - height="38.142899" - filterUnits="userSpaceOnUse" - style="color-interpolation-filters:sRGB"> - <feFlood - flood-opacity="0" - result="BackgroundImageFix" - id="feFlood66"/> - <feColorMatrix - in="SourceAlpha" - type="matrix" - values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" - id="feColorMatrix68"/> - <feOffset - dy="4" - id="feOffset70"/> - <feGaussianBlur - stdDeviation="2" - id="feGaussianBlur72"/> - <feColorMatrix - type="matrix" - values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0" - id="feColorMatrix74"/> - <feBlend - mode="normal" - in2="BackgroundImageFix" - result="effect1_dropShadow" - id="feBlend76"/> - <feBlend - mode="normal" - in="SourceGraphic" - in2="effect1_dropShadow" - result="shape" - id="feBlend78"/> - </filter> - <filter - id="filter3_d" - x="41" - y="61" - width="28" - height="29" - filterUnits="userSpaceOnUse" - style="color-interpolation-filters:sRGB"> - <feFlood - flood-opacity="0" - result="BackgroundImageFix" - id="feFlood81"/> - <feColorMatrix - in="SourceAlpha" - type="matrix" - values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" - id="feColorMatrix83"/> - <feOffset - dy="4" - id="feOffset85"/> - <feGaussianBlur - stdDeviation="2" - id="feGaussianBlur87"/> - <feColorMatrix - type="matrix" - values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0" - id="feColorMatrix89"/> - <feBlend - mode="normal" - in2="BackgroundImageFix" - result="effect1_dropShadow" - id="feBlend91"/> - <feBlend - mode="normal" - in="SourceGraphic" - in2="effect1_dropShadow" - result="shape" - id="feBlend93"/> - </filter> - </defs> + width="301.7713" + height="301.7713" + viewBox="0 0 301.7713 301.7713" + version="1.1" + id="svg21" + sodipodi:docname="tools.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" + xmlns:svg="http://www.w3.org/2000/svg"> + <defs + id="defs10" /> + <sodipodi:namedview + id="namedview23" + pagecolor="#505050" + bordercolor="#eeeeee" + borderopacity="1" + inkscape:pageshadow="0" + inkscape:pageopacity="0" + inkscape:pagecheckerboard="0" + showgrid="false" + inkscape:zoom="1.1444297" + inkscape:cx="100.48673" + inkscape:cy="158.15738" + inkscape:current-layer="svg21" /> + <circle + style="fill:#00a5d9;fill-opacity:1;stroke:#63e9f1;stroke-width:0.0944882;stroke-linecap:round;stroke-linejoin:bevel;stroke-opacity:1;stop-color:#000000" + id="path848" + cx="150.88565" + cy="150.88565" + r="150.83841" /> + <g + id="g6432" + transform="translate(-0.9735603,5.9971598)"> + <path + style="fill:#feffff;fill-opacity:1;stroke:none;stroke-width:1.97728px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="M 77.679292,74.927954 99.05071,95.716414 112.52762,81.785613 92.612547,60.295283 c 0,0 49.817063,-14.524823 44.465973,34.961514 -0.0367,0.339557 70.23356,71.214033 70.23356,71.214033 47.81484,-8.02817 35.81789,45.47112 35.81789,45.47112 l -22.68221,-21.06445 -13.18046,14.60845 21.09318,19.98897 c 0,0 -49.53242,14.80277 -46.87766,-37.76153 0.0275,-0.54412 -69.11138,-67.6753 -69.11138,-67.6753 -48.526833,3.7379 -34.692148,-45.110136 -34.692148,-45.110136 z" + id="path886" + sodipodi:nodetypes="ccccscccccscc" /> + <path + style="fill:#feffff;fill-opacity:1;stroke:none;stroke-width:1.97728px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 117.92125,166.54299 c -14.52781,24.8942 -79.689475,29.97303 -47.349405,65.89854 32.340085,35.92552 39.940125,-35.46137 65.307085,-47.63356 z" + id="path2590" + sodipodi:nodetypes="cscc" /> + <path + style="fill:none;stroke:#ffffff;stroke-width:9.88638;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 130.85139,171.47469 143.2854,159.40801" + id="path2815" + sodipodi:nodetypes="cc" /> + <path + style="fill:none;stroke:#ffffff;stroke-width:9.88638;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 130.85139,171.47469 143.2854,159.40801" + id="path4002" + sodipodi:nodetypes="cc" /> + <path + style="fill:none;stroke:#ffffff;stroke-width:9.88638;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 177.32611,127.14277 213.01199,91.529312" + id="path4141" + sodipodi:nodetypes="cc" /> + <path + style="fill:none;stroke:#ffffff;stroke-width:19.7728;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="M 217.06203,85.219711 229.49604,73.153059" + id="path4436" + sodipodi:nodetypes="cc" /> + </g> </svg> diff --git a/assets/layers/bike_themed_object/bike_themed_object.json b/assets/layers/bike_themed_object/bike_themed_object.json index cc704319e9..a40a041892 100644 --- a/assets/layers/bike_themed_object/bike_themed_object.json +++ b/assets/layers/bike_themed_object/bike_themed_object.json @@ -78,5 +78,9 @@ "render": "2" } } - ] + ], + "description": { + "en": "A layer with bike-themed objects but who don't match any other layer", + "nl": "Een laag met fietsgerelateerde diensten, die in geen enkele andere laag konden ondergebracht worden" + } } \ No newline at end of file diff --git a/assets/layers/bike_themed_object/other_services.svg b/assets/layers/bike_themed_object/other_services.svg index c8be686806..4e0720beaf 100644 --- a/assets/layers/bike_themed_object/other_services.svg +++ b/assets/layers/bike_themed_object/other_services.svg @@ -1,7 +1,8 @@ -<svg width="98" height="123" viewBox="0 0 98 123" fill="none" xmlns="http://www.w3.org/2000/svg"> - <path d="M54.0445 113.094C52.2614 116.981 46.7386 116.981 44.9555 113.094L14.2124 46.085C12.6928 42.7729 15.1129 39 18.7569 39L80.2431 39C83.8871 39 86.3072 42.7729 84.7876 46.085L54.0445 113.094Z" - fill="#AB76D5"/> - <circle cx="49" cy="49" r="49" fill="#AB76D5"/> - <path d="M75.163 23.5441C68.1745 16.7447 58.883 13 49 13C39.117 13 29.8255 16.7447 22.837 23.5441C15.8487 30.3437 12 39.3841 12 49C12 58.6159 15.8487 67.6563 22.837 74.4559C29.8255 81.2553 39.117 85 49 85C58.883 85 68.1745 81.2553 75.163 74.4559C82.1513 67.6563 86 58.6159 86 49C86 39.3841 82.1513 30.3437 75.163 23.5441ZM49 22.8438C53.3832 22.8438 56.9492 26.3134 56.9492 30.5781C56.9492 34.8429 53.3832 38.3125 49 38.3125C44.6168 38.3125 41.0508 34.8429 41.0508 30.5781C41.0508 26.3134 44.6168 22.8438 49 22.8438ZM59.1172 72.0625H38.8828V67.8438H43.2188V46.75H38.8828V42.5312H54.7812V67.8438H59.1172V72.0625Z" - fill="white"/> -</svg> +<?xml version="1.0" encoding="UTF-8" standalone="yes"?> +<svg xmlns="http://www.w3.org/2000/svg" width="298px" height="374px" viewBox="0 0 298 374" version="1.1"> + <g id="surface1"> + <path style=" stroke:none;fill-rule:nonzero;fill:rgb(67.058825%,46.27451%,83.529413%);fill-opacity:1;" d="M 164.339844 343.878906 C 158.917969 355.699219 142.125 355.699219 136.703125 343.878906 L 43.21875 140.128906 C 38.597656 130.058594 45.957031 118.585938 57.035156 118.585938 L 244.003906 118.585938 C 255.085938 118.585938 262.445312 130.058594 257.824219 140.128906 Z M 164.339844 343.878906 "/> + <path style=" stroke:none;fill-rule:nonzero;fill:rgb(67.058825%,46.27451%,83.529413%);fill-opacity:1;" d="M 298 148.992188 C 298 231.277344 231.289062 297.984375 149 297.984375 C 66.710938 297.984375 0 231.277344 0 148.992188 C 0 66.707031 66.710938 0 149 0 C 231.289062 0 298 66.707031 298 148.992188 Z M 298 148.992188 "/> + <path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 228.558594 71.589844 C 207.304688 50.914062 179.050781 39.527344 149 39.527344 C 118.949219 39.527344 90.695312 50.914062 69.441406 71.589844 C 48.191406 92.265625 36.488281 119.753906 36.488281 148.992188 C 36.488281 178.230469 48.191406 205.71875 69.441406 226.394531 C 90.695312 247.070312 118.949219 258.457031 149 258.457031 C 179.050781 258.457031 207.304688 247.070312 228.558594 226.394531 C 249.808594 205.71875 261.511719 178.230469 261.511719 148.992188 C 261.511719 119.753906 249.808594 92.265625 228.558594 71.589844 Z M 149 69.460938 C 162.328125 69.460938 173.171875 80.011719 173.171875 92.976562 C 173.171875 105.945312 162.328125 116.496094 149 116.496094 C 135.671875 116.496094 124.828125 105.945312 124.828125 92.976562 C 124.828125 80.011719 135.671875 69.460938 149 69.460938 Z M 179.765625 219.117188 L 118.234375 219.117188 L 118.234375 206.289062 L 131.421875 206.289062 L 131.421875 142.152344 L 118.234375 142.152344 L 118.234375 129.324219 L 166.578125 129.324219 L 166.578125 206.289062 L 179.765625 206.289062 Z M 179.765625 219.117188 "/> + </g> +</svg> \ No newline at end of file diff --git a/assets/layers/binocular/binocular.json b/assets/layers/binocular/binocular.json index 2ad39b353f..60fd228c19 100644 --- a/assets/layers/binocular/binocular.json +++ b/assets/layers/binocular/binocular.json @@ -89,7 +89,8 @@ "description": { "en": "A telescope or pair of binoculars mounted on a pole, available to the public to look around. <img src='./assets/layers/binocular/binoculars_example.jpg' style='height: 300px; width: auto; display: block;' />", "nl": "Een telescoop of verrekijker die op een vaste plaats gemonteerd staat waar iedereen door mag kijken. <img src='./assets/layers/binocular/binoculars_example.jpg' style='height: 300px; width: auto; display: block;' />", - "de": "Ein fest installiertes Teleskop oder Fernglas, für die öffentliche Nutzung. <img src='./assets/layers/binocular/binoculars_example.jpg' style='height: 300px; width: auto; display: block;' />" + "de": "Ein fest installiertes Teleskop oder Fernglas, für die öffentliche Nutzung. <img src='./assets/layers/binocular/binoculars_example.jpg' style='height: 300px; width: auto; display: block;' />", + "fr": "Une longue-vue ou une paire de jumelles montée sur un poteau, disponible au public pour scruter les environs.\n<img src='./assets/layers/binocular/binoculars_example.jpg' style='height: 300px; width: auto; display: block;' />" }, "preciseInput": { "preferredBackground": "photo" diff --git a/assets/layers/binocular/telescope.svg b/assets/layers/binocular/telescope.svg index b334566069..1bbf1b5456 100644 --- a/assets/layers/binocular/telescope.svg +++ b/assets/layers/binocular/telescope.svg @@ -1,22 +1,45 @@ -<?xml version="1.0" encoding="utf-8"?> -<!-- Generator: Adobe Illustrator 17.0.2, SVG Export Plug-In . SVG Version: 6.00 Build 0) --> -<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd"> -<svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" x="0px" y="0px" - width="35px" height="32px" viewBox="0 0 35 32" enable-background="new 0 0 35 32" xml:space="preserve"> -<g> - <path fill="#828282" d="M27.464,2.314c-0.053-0.132-0.159-0.235-0.292-0.284c-0.133-0.048-0.281-0.039-0.406,0.027L14.86,8.339 - c-0.224,0.118-0.324,0.385-0.233,0.621l0.245,0.641L7.999,13.37C7.774,13.493,7.679,13.765,7.777,14l0.228,0.549l-7.299,3.488 - c-0.24,0.115-0.348,0.397-0.246,0.643l1.498,3.61c0.08,0.192,0.265,0.309,0.462,0.309c0.056,0,0.112-0.009,0.167-0.029l7.625-2.701 - l0.228,0.549c0.079,0.191,0.264,0.309,0.462,0.309c0.046,0,0.092-0.006,0.139-0.02l7.276-2.097l0.218,0.569 - C18.609,19.376,18.798,19.5,19,19.5c0.049,0,0.098-0.007,0.147-0.022l13-4c0.134-0.041,0.244-0.136,0.304-0.262 - c0.06-0.126,0.065-0.272,0.013-0.401L27.464,2.314z M2.7,21.469l-1.134-2.734l6.823-3.261l1.439,3.47L2.7,21.469z M11.191,19.623 - l-0.238-0.574c0,0,0,0,0,0L9.11,14.604c0,0,0,0,0,0l-0.238-0.573l6.336-3.475l2.374,6.134l0.375,0.981L11.191,19.623z M19.3,18.385 - l-0.203-0.531c-0.003-0.011-0.001-0.024-0.006-0.035l-0.618-1.597l-2.754-7.206l11.023-5.815l4.592,11.48L19.3,18.385z"/> - <path fill="#828282" d="M28.964,0.314c-0.103-0.257-0.395-0.381-0.65-0.279c-0.256,0.103-0.381,0.394-0.279,0.65l6,15 - C34.114,15.881,34.302,16,34.5,16c0.062,0,0.125-0.011,0.186-0.036c0.256-0.103,0.381-0.394,0.279-0.65L28.964,0.314z"/> - <path fill="#828282" d="M18,21h-3c-1.14,0-2,0.86-2,2v1.315l-5.879,6.859c-0.18,0.209-0.156,0.525,0.054,0.705 - C7.269,31.96,7.385,32,7.5,32c0.141,0,0.281-0.059,0.379-0.175L13.73,25H16v6.5c0,0.276,0.224,0.5,0.5,0.5s0.5-0.224,0.5-0.5V25 - h2.27l5.85,6.825C25.219,31.941,25.359,32,25.5,32c0.115,0,0.231-0.04,0.325-0.121c0.21-0.18,0.234-0.495,0.054-0.705L20,24.315 - v-1.24C20,21.912,19.122,21,18,21z M19,24h-5v-1c0-0.589,0.411-1,1-1h3c0.57,0,1,0.462,1,1.075V24z"/> -</g> -</svg> +<?xml version="1.0" encoding="UTF-8" standalone="no"?> +<svg + width="374" + height="374" + viewBox="0 0 374 374" + version="1.1" + id="svg9" + sodipodi:docname="telescope.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" + xmlns:svg="http://www.w3.org/2000/svg"> + <defs + id="defs13" /> + <sodipodi:namedview + id="namedview11" + pagecolor="#505050" + bordercolor="#eeeeee" + borderopacity="1" + inkscape:pageshadow="0" + inkscape:pageopacity="0" + inkscape:pagecheckerboard="0" + showgrid="false" + inkscape:zoom="0.55505638" + inkscape:cx="-104.49389" + inkscape:cy="272.04443" + inkscape:current-layer="svg9" /> + <g + id="surface1" + transform="translate(0,15.499046)"> + <path + style="fill:#7f7f7f;fill-opacity:1;fill-rule:nonzero;stroke:none" + d="m 293.47266,24.730469 c -0.56641,-1.410157 -1.69922,-2.511719 -3.1211,-3.035157 -1.42187,-0.511718 -3.0039,-0.417968 -4.33594,0.289063 L 158.78906,89.125 c -2.39453,1.257812 -3.46094,4.113281 -2.48828,6.636719 l 2.61719,6.847661 -73.441408,40.28124 c -2.40625,1.31641 -3.421874,4.22266 -2.375,6.73438 l 2.4375,5.86719 -77.996093,37.27734 c -2.5625,1.23047 -3.71875,4.24219 -2.628907,6.87109 l 16.007813,38.58204 c 0.855469,2.05468 2.832031,3.30468 4.9375,3.30468 0.597656,0 1.195313,-0.0977 1.785156,-0.30859 l 81.476559,-28.86719 2.4375,5.86719 c 0.84375,2.03906 2.82032,3.30078 4.9375,3.30078 0.49219,0 0.98438,-0.0625 1.48438,-0.21484 l 77.75,-22.41016 2.32812,6.08203 c 0.79297,2.10547 2.8125,3.42969 4.96875,3.42969 0.52344,0 1.04688,-0.0742 1.57032,-0.23438 l 138.91406,-42.75 c 1.43359,-0.4375 2.60937,-1.45312 3.25,-2.80078 0.64062,-1.34765 0.69531,-2.90625 0.14062,-4.28515 z M 28.851562,229.44922 16.734375,200.23047 l 72.90625,-34.85156 15.378905,37.08593 z m 90.730468,-19.72656 -2.54297,-6.13672 -19.691404,-47.50391 -2.542968,-6.125 67.703122,-37.14062 25.36719,65.55859 4.00781,10.48437 z m 86.65234,-13.23438 -2.16796,-5.67187 c -0.0352,-0.1211 -0.0117,-0.25782 -0.0664,-0.375 L 197.39844,173.37109 167.96875,96.359375 285.75781,34.210938 334.82422,156.90234 Z m 0,0" + id="path2" /> + <path + style="fill:#7f7f7f;fill-opacity:1;fill-rule:nonzero;stroke:none" + d="m 309.5,3.355469 c -1.09766,-2.746094 -4.21875,-4.070313 -6.94531,-2.980469 -2.73438,1.101562 -4.07032,4.210938 -2.98047,6.945312 L 363.6875,167.63281 c 0.84375,2.09375 2.85547,3.36719 4.96875,3.36719 0.66406,0 1.33594,-0.11719 1.98828,-0.38281 2.73438,-1.10157 4.07031,-4.21094 2.98047,-6.94922 z m 0,0" + id="path4" /> + <path + style="fill:#7f7f7f;fill-opacity:1;fill-rule:nonzero;stroke:none" + d="m 192.34375,224.4375 h -32.05859 c -12.17969,0 -21.3711,9.19141 -21.3711,21.375 v 14.05469 l -62.82031,73.30468 c -1.925781,2.23438 -1.667969,5.60938 0.578125,7.53516 1.003906,0.86719 2.242187,1.29297 3.472656,1.29297 1.503907,0 3,-0.62891 4.046875,-1.87109 L 146.71484,267.1875 h 24.25782 v 69.46875 c 0,2.94922 2.39062,5.34375 5.33984,5.34375 2.94922,0 5.34375,-2.39453 5.34375,-5.34375 V 267.1875 h 24.25781 l 62.51172,72.94141 c 1.05859,1.24218 2.55469,1.87109 4.05859,1.87109 1.23047,0 2.46875,-0.42578 3.47266,-1.29297 2.24609,-1.92578 2.50391,-5.28906 0.57813,-7.53516 l -62.82032,-73.30468 v -13.25391 c 0,-12.42969 -9.38281,-22.17578 -21.37109,-22.17578 z M 203.02734,256.5 h -53.42578 v -10.6875 c 0,-6.29688 4.39063,-10.6875 10.6836,-10.6875 h 32.05859 c 6.08984,0 10.68359,4.9375 10.68359,11.48828 z m 0,0" + id="path6" /> + </g> +</svg> diff --git a/assets/layers/birdhide/birdhide.json b/assets/layers/birdhide/birdhide.json index b0d0bbb854..07bbc253c5 100644 --- a/assets/layers/birdhide/birdhide.json +++ b/assets/layers/birdhide/birdhide.json @@ -1,6 +1,7 @@ { "id": "birdhide", "name": { + "en": "Bird watching places", "nl": "Vogelkijkhutten" }, "minzoom": 14, @@ -13,16 +14,18 @@ }, "title": { "render": { + "en": "Bird watching place", "nl": "Vogelkijkplaats" }, "mappings": [ { "if": { "and": [ - "name~((V|v)ogel.*).*" + "name~(((V|v)ogel)|(B|b)ird).*" ] }, "then": { + "*": "{name}", "nl": "{name}" } }, @@ -39,6 +42,7 @@ ] }, "then": { + "en": "Bird hide {name}", "nl": "Vogelkijkhut {name}" } }, @@ -49,12 +53,14 @@ ] }, "then": { + "en": "Bird blind {name}", "nl": "Vogelkijkwand {name}" } } ] }, "description": { + "en": "A birdhide", "nl": "Een vogelkijkhut" }, "tagRenderings": [ @@ -62,6 +68,7 @@ { "id": "bird-hide-shelter-or-wall", "question": { + "en": "Is this a bird blind or a bird watching shelter?", "nl": "Is dit een kijkwand of kijkhut?" }, "mappings": [ @@ -74,6 +81,7 @@ ] }, "then": { + "en": "Bird blind", "nl": "Vogelkijkwand" } }, @@ -86,6 +94,7 @@ ] }, "then": { + "en": "Bird hide", "nl": "Vogelkijkhut" } }, @@ -97,6 +106,7 @@ ] }, "then": { + "en": "Bird tower hide", "nl": "Vogelkijktoren" } }, @@ -109,6 +119,7 @@ ] }, "then": { + "en": "Bird hide shelter", "nl": "Vogelkijkhut" }, "hideInAnswer": true @@ -118,6 +129,7 @@ { "id": "bird-hide-wheelchair", "question": { + "en": "Is this bird hide accessible to wheelchair users?", "nl": "Is deze vogelkijkplaats rolstoeltoegankelijk?" }, "mappings": [ @@ -128,6 +140,7 @@ ] }, "then": { + "en": "There are special provisions for wheelchair users", "nl": "Er zijn speciale voorzieningen voor rolstoelen" } }, @@ -138,6 +151,7 @@ ] }, "then": { + "en": "A wheelchair can easily use this birdhide", "nl": "Een rolstoel raakt er vlot" } }, @@ -148,6 +162,7 @@ ] }, "then": { + "en": "This birdhide is reachable by wheelchair, but it is not easy", "nl": "Je kan er raken met een rolstoel, maar het is niet makkelijk" } }, @@ -158,6 +173,7 @@ ] }, "then": { + "en": "Not accessible to wheelchair users", "nl": "Niet rolstoeltoegankelijk" } } @@ -165,24 +181,28 @@ }, { "render": { + "en": "Operated by {operator}", "nl": "Beheer door {operator}" }, "freeform": { "key": "operator" }, "question": { + "en": "Who operates this birdhide?", "nl": "Wie beheert deze vogelkijkplaats?" }, "mappings": [ { "if": "operator=Natuurpunt", "then": { + "en": "Operated by Natuurpunt", "nl": "Beheer door Natuurpunt" } }, { "if": "operator=Agentschap Natuur en Bos", "then": { + "en": "Operated by the Agency for Nature and Forests", "nl": "Beheer door het Agentschap Natuur en Bos " } } @@ -213,9 +233,11 @@ "amenity=shelter" ], "title": { + "en": "Birdhide", "nl": "vogelkijkhut" }, "description": { + "en": "A covered shelter where one can watch birds comfortably", "nl": "Een overdekte hut waarbinnen er warm en droog naar vogels gekeken kan worden" } }, @@ -226,9 +248,11 @@ "shelter=no" ], "title": { + "en": "Bird blind", "nl": "vogelkijkwand" }, "description": { + "en": "A screen or wall with openings to watch birds", "nl": "Een vogelkijkwand waarachter men kan staan om vogels te kijken" } } @@ -241,7 +265,8 @@ "question": { "nl": "Rolstoeltoegankelijk", "en": "Wheelchair accessible", - "de": "Zugänglich für Rollstuhlfahrer" + "de": "Zugänglich für Rollstuhlfahrer", + "fr": "Accessible aux fauteuils roulants" }, "osmTags": { "or": [ @@ -258,6 +283,7 @@ "options": [ { "question": { + "en": "Only covered birdhides", "nl": "Enkel overdekte kijkhutten" }, "osmTags": { @@ -290,9 +316,7 @@ "mapRendering": [ { "icon": { - "render": { - "nl": "./assets/layers/birdhide/birdhide.svg" - }, + "render": "./assets/layers/birdhide/birdhide.svg", "mappings": [ { "if": { diff --git a/assets/layers/birdhide/birdhide.svg b/assets/layers/birdhide/birdhide.svg index 69d65365b2..6c653e19e5 100644 --- a/assets/layers/birdhide/birdhide.svg +++ b/assets/layers/birdhide/birdhide.svg @@ -1,64 +1,7 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - xmlns="http://www.w3.org/2000/svg" - viewBox="0 0 500 500" - version="1.1" - id="svg3800" - height="500" - width="500" - sodipodi:docname="birdhide.svg" - inkscape:version="0.92.4 (5da689c313, 2019-01-14)" - inkscape:export-filename="/home/pietervdvn/git/pietervdvn.github.io/Quickmaps/Natuurgebieden/resources/birdhide.png" - inkscape:export-xdpi="3900" - inkscape:export-ydpi="3900"> - <sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1001" - id="namedview6" - showgrid="false" - inkscape:zoom="0.74498751" - inkscape:cx="-248.78385" - inkscape:cy="85.700327" - inkscape:window-x="0" - inkscape:window-y="1050" - inkscape:window-maximized="1" - inkscape:current-layer="svg3800"/> - <defs - id="defs3802"/> - <metadata - id="metadata3805"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage"/> - <dc:title></dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <circle - style="fill:#ffffff;fill-opacity:1;stroke-width:37.46650696" - id="path7" - cx="249.3156" - cy="250.6844" - r="248.93001"/> - <path - id="rect239-1" - d="M 152.31834,83.603749 V 130.1409 h 64.93624 V 83.603749 Z m 127.14153,0 V 130.1409 h 65.03734 V 83.603749 Z m 0,61.105621 v 128.48315 c 0,6.16398 4.96328,11.1283 11.12606,11.1283 h 0.80901 10.31698 v 124.53792 c 0,5.95642 4.86707,10.82482 10.82274,10.82482 h 95.48254 c 5.95552,0 10.82276,-4.86802 10.82276,-10.82482 v -77.4946 l 0.19857,-11.331 -41.36909,-175.32377 z m -160.62113,0.18734 -41.470173,175.32376 0.202694,11.43216 v 77.49422 c 1.84e-4,5.95718 4.867375,10.8252 10.822897,10.8252 h 95.482582 c 6.0591,0 10.92385,-4.86802 10.92385,-10.82482 V 284.71047 h 10.21563 0.80916 c 6.16265,0 11.12614,-5.06585 11.12614,-11.22946 V 144.89633 Z m 112.47524,0 v 119.47881 h 33.68184 V 144.89633 Z" - style="fill:#94bb28;fill-opacity:1;stroke-width:51.79256058" - inkscape:connector-curvature="0"/> -</svg> +<?xml version="1.0" encoding="UTF-8" standalone="yes"?> +<svg xmlns="http://www.w3.org/2000/svg" width="375px" height="375px" viewBox="0 0 375 375" version="1.1"> + <g id="surface1"> + <path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 373.683594 188.011719 C 373.683594 291.125 290.097656 374.710938 186.988281 374.710938 C 83.875 374.710938 0.289062 291.125 0.289062 188.011719 C 0.289062 84.902344 83.875 1.316406 186.988281 1.316406 C 290.097656 1.316406 373.683594 84.902344 373.683594 188.011719 Z M 373.683594 188.011719 "/> + <path style=" stroke:none;fill-rule:nonzero;fill:rgb(58.039218%,73.333335%,15.686275%);fill-opacity:1;" d="M 114.238281 62.703125 L 114.238281 97.605469 L 162.941406 97.605469 L 162.941406 62.703125 Z M 209.59375 62.703125 L 209.59375 97.605469 L 258.371094 97.605469 L 258.371094 62.703125 Z M 209.59375 108.53125 L 209.59375 204.894531 C 209.59375 209.515625 213.316406 213.242188 217.9375 213.242188 L 226.285156 213.242188 L 226.285156 306.644531 C 226.285156 311.113281 229.933594 314.761719 234.402344 314.761719 L 306.011719 314.761719 C 310.480469 314.761719 314.128906 311.113281 314.128906 306.644531 L 314.128906 248.523438 L 314.277344 240.023438 L 283.253906 108.53125 Z M 89.128906 108.671875 L 58.027344 240.164062 L 58.179688 248.738281 L 58.179688 306.859375 C 58.179688 311.328125 61.828125 314.980469 66.296875 314.980469 L 137.90625 314.980469 C 142.453125 314.980469 146.101562 311.328125 146.101562 306.859375 L 146.101562 213.53125 L 154.367188 213.53125 C 158.992188 213.53125 162.714844 209.734375 162.714844 205.109375 L 162.714844 108.671875 Z M 173.484375 108.671875 L 173.484375 198.28125 L 198.746094 198.28125 L 198.746094 108.671875 Z M 173.484375 108.671875 "/> + </g> +</svg> \ No newline at end of file diff --git a/assets/layers/birdhide/birdshelter.svg b/assets/layers/birdhide/birdshelter.svg index ac5ff09fd5..442b9b00a5 100644 --- a/assets/layers/birdhide/birdshelter.svg +++ b/assets/layers/birdhide/birdshelter.svg @@ -1,67 +1,8 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - xmlns="http://www.w3.org/2000/svg" - width="14" - height="14" - id="svg3800" - version="1.1" - viewBox="0 0 14 14" - sodipodi:docname="birdshelter.svg" - inkscape:version="0.92.4 (5da689c313, 2019-01-14)"> - <sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1001" - id="namedview7" - showgrid="false" - inkscape:zoom="16.857143" - inkscape:cx="7" - inkscape:cy="7" - inkscape:window-x="0" - inkscape:window-y="0" - inkscape:window-maximized="1" - inkscape:current-layer="svg3800"/> - <defs - id="defs3802"/> - <metadata - id="metadata3805"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage"/> - <dc:title/> - </cc:Work> - </rdf:RDF> - </metadata> - <ellipse - style="fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:1.82793295;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="path818" - cx="7.0593209" - cy="7.0296607" - rx="6.0182371" - ry="5.7200356"/> - <path - id="path820" - d="M 5.3719761,5.278444 V 6.0591348 H 6.6013562 V 5.278444 Z m 2.4070571,0 V 6.0591348 H 9.0103273 V 5.278444 Z m 0,1.025081 v 2.1553847 c 0,0.1034047 0.093965,0.1866891 0.2106399,0.1866891 h 0.015317 0.195322 v 2.0891932 c 0,0.09993 0.092145,0.181597 0.2048974,0.181597 h 1.8076855 c 0.112752,0 0.204898,-0.08167 0.204898,-0.181597 V 9.4347745 l 0.0038,-0.190082 L 9.6383893,6.303525 Z m -3.0408964,0.00341 -0.7851178,2.9411665 0.00384,0.191778 v 1.3000195 c 3.4e-6,0.09993 0.092149,0.181598 0.2049002,0.181598 h 1.8076866 c 0.1147115,0 0.2068114,-0.08167 0.2068114,-0.181595 V 8.6523944 h 0.1934036 0.015319 c 0.1166719,0 0.2106413,-0.084982 0.2106413,-0.1883839 V 6.3069194 Z m 2.1293934,0 V 8.3112551 H 7.5051985 V 6.3069194 Z" - style="fill:#94bb28;fill-opacity:1;stroke-width:0.92300957" - inkscape:connector-curvature="0"/> - <path - style="fill:#734a08;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.02091908;stroke-opacity:1" - d="M 7.1483058,1.7966979 1.9450836,5.6235415 2.4980189,6.2340722 2.8671947,5.8297911 v 5.7893559 0.02085 c -1.56e-4,0.207212 0.079916,0.399496 0.211183,0.507147 0.1356221,0.110563 0.304872,0.114097 0.4429672,0.0093 C 3.6600101,12.0518 3.7460058,11.854361 3.7462621,11.640049 V 5.3550639 L 7.1714827,3.0174022 10.689411,5.4020278 v 6.2849242 c -1.57e-4,0.207211 0.07992,0.399495 0.211182,0.507147 0.135623,0.110563 0.304873,0.114098 0.442969,0.0093 0.138664,-0.104645 0.22466,-0.302084 0.224917,-0.516396 V 5.8767574 l 0.322822,0.1929437 0.460226,-0.3757112 z" - id="path822" - inkscape:connector-curvature="0"/> -</svg> +<?xml version="1.0" encoding="UTF-8" standalone="yes"?> +<svg xmlns="http://www.w3.org/2000/svg" width="375px" height="375px" viewBox="0 0 375 375" version="1.1"> + <g id="surface1"> + <path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:1.827933;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:4;" d="M 13.077605 7.029604 C 13.077605 10.188792 10.383042 12.749626 7.059354 12.749626 C 3.735521 12.749626 1.041104 10.188792 1.041104 7.029604 C 1.041104 3.870563 3.735521 1.309583 7.059354 1.309583 C 10.383042 1.309583 13.077605 3.870563 13.077605 7.029604 Z M 13.077605 7.029604 " transform="matrix(26.785713,0,0,26.785713,0,0)"/> + <path style=" stroke:none;fill-rule:nonzero;fill:rgb(58.039218%,73.333335%,15.686275%);fill-opacity:1;" d="M 143.890625 141.386719 L 143.890625 162.296875 L 176.820312 162.296875 L 176.820312 141.386719 Z M 208.367188 141.386719 L 208.367188 162.296875 L 241.347656 162.296875 L 241.347656 141.386719 Z M 208.367188 168.84375 L 208.367188 226.578125 C 208.367188 229.347656 210.882812 231.578125 214.007812 231.578125 L 219.652344 231.578125 L 219.652344 287.539062 C 219.652344 290.214844 222.121094 292.402344 225.140625 292.402344 L 273.558594 292.402344 C 276.578125 292.402344 279.046875 290.214844 279.046875 287.539062 L 279.046875 252.71875 L 279.148438 247.625 L 258.171875 168.84375 Z M 126.914062 168.9375 L 105.882812 247.71875 L 105.988281 252.855469 L 105.988281 287.675781 C 105.988281 290.351562 108.457031 292.539062 111.476562 292.539062 L 159.894531 292.539062 C 162.96875 292.539062 165.433594 290.351562 165.433594 287.675781 L 165.433594 231.761719 L 171.027344 231.761719 C 174.152344 231.761719 176.667969 229.484375 176.667969 226.714844 L 176.667969 168.933594 Z M 183.953125 168.9375 L 183.953125 222.621094 L 201.03125 222.621094 L 201.03125 168.933594 Z M 183.953125 168.9375 "/> + <path style=" stroke:none;fill-rule:evenodd;fill:rgb(45.09804%,29.019609%,3.137255%);fill-opacity:1;" d="M 191.472656 48.125 L 52.101562 150.628906 L 66.910156 166.984375 L 76.800781 156.15625 L 76.800781 311.785156 C 76.796875 317.335938 78.941406 322.488281 82.457031 325.371094 C 86.089844 328.332031 90.621094 328.425781 94.320312 325.617188 C 98.035156 322.816406 100.339844 317.527344 100.347656 311.785156 L 100.347656 143.4375 L 192.09375 80.824219 L 286.324219 144.695312 L 286.324219 313.042969 C 286.320312 318.59375 288.464844 323.742188 291.980469 326.628906 C 295.613281 329.589844 300.144531 329.683594 303.84375 326.875 C 307.558594 324.074219 309.863281 318.785156 309.871094 313.042969 L 309.871094 157.414062 L 318.515625 162.582031 L 330.84375 152.519531 Z M 191.472656 48.125 "/> + </g> +</svg> \ No newline at end of file diff --git a/assets/layers/cafe_pub/cafe.svg b/assets/layers/cafe_pub/cafe.svg index 3a7d275386..c71f9f0737 100644 --- a/assets/layers/cafe_pub/cafe.svg +++ b/assets/layers/cafe_pub/cafe.svg @@ -1,25 +1,6 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns="http://www.w3.org/2000/svg" - version="1.1" - width="16" - height="16" - viewBox="0 0 16 16" - id="svg2"> - <metadata id="metadata8"> - <rdf:RDF> - <cc:Work rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/> - <dc:title/> - </cc:Work> - </rdf:RDF> - </metadata> - <defs id="defs6"/> - <rect width="16" height="16" x="0" y="0" id="canvas" style="fill:none;stroke:none;visibility:hidden"/> - <path d="M 1,1 1,7 C 1,9 3,10 5.5,10 8,10 10,9 10,7 l 2,0 c 1,0 2,-1 2,-2 L 14,4 C 14,3 13,2 12,2 l -2,0 0,-1 z m 9,2.25 1.75,0 c 0.667788,0 1,0.5628359 1,1.25 0,0.6871641 -0.388201,1.25 -1,1.25 L 10,5.75 z M 0,11 c 0,1 1,2 2,2 l 7,0 c 1,0 2,-1 2,-2 z" - id="cafe" style="fill:#C77400;fill-opacity:1;stroke:none" transform="translate(1,1)"/> -</svg> +<?xml version="1.0" encoding="UTF-8" standalone="yes"?> +<svg xmlns="http://www.w3.org/2000/svg" width="375px" height="375px" viewBox="0 0 375 375" version="1.1"> + <g id="surface1"> + <path style=" stroke:none;fill-rule:nonzero;fill:rgb(78.039217%,45.490196%,0%);fill-opacity:1;" d="M 46.875 46.875 L 46.875 187.5 C 46.875 234.375 93.75 257.8125 152.34375 257.8125 C 210.9375 257.8125 257.8125 234.375 257.8125 187.5 L 304.6875 187.5 C 328.125 187.5 351.5625 164.0625 351.5625 140.625 L 351.5625 117.1875 C 351.5625 93.75 328.125 70.3125 304.6875 70.3125 L 257.8125 70.3125 L 257.8125 46.875 Z M 257.8125 99.609375 L 298.828125 99.609375 C 314.480469 99.609375 322.265625 112.800781 322.265625 128.90625 C 322.265625 145.011719 313.167969 158.203125 298.828125 158.203125 L 257.8125 158.203125 Z M 23.4375 281.25 C 23.4375 304.6875 46.875 328.125 70.3125 328.125 L 234.375 328.125 C 257.8125 328.125 281.25 304.6875 281.25 281.25 Z M 23.4375 281.25 "/> + </g> +</svg> \ No newline at end of file diff --git a/assets/layers/cafe_pub/cafe_pub.json b/assets/layers/cafe_pub/cafe_pub.json index 9b6ab97a3e..8caa7ca67e 100644 --- a/assets/layers/cafe_pub/cafe_pub.json +++ b/assets/layers/cafe_pub/cafe_pub.json @@ -3,7 +3,10 @@ "name": { "nl": "Cafés", "en": "Cafés and pubs", - "de": "Cafés und Kneipen" + "de": "Cafés und Kneipen", + "fr": "Cafés et pubs", + "zh_Hant": "咖啡廳與酒吧", + "hu": "Kávézók és kocsmák" }, "source": { "osmTags": { @@ -24,9 +27,11 @@ "en": "pub", "nl": "bruin cafe of kroeg", "de": "Kneipe", - "ru": "паб" + "ru": "паб", + "hu": "kocsma" }, "description": { + "en": "A pub, mostly for drinking beers in a warm, relaxed interior", "nl": "Dit is <b>een bruin café of een kroeg</b> waar voornamelijk bier wordt gedronken. De inrichting is typisch gezellig met veel houtwerk " }, "preciseInput": { @@ -41,9 +46,11 @@ "en": "bar", "nl": "bar", "de": "Bar", - "ru": "бар" + "ru": "бар", + "hu": "bár" }, "description": { + "en": "A more modern and commercial <b>bar</b>, possibly with a music and light installation", "nl": "Dit is een <b>bar</b> waar men ter plaatse alcoholische drank nuttigt. De inrichting is typisch modern en commercieel, soms met lichtinstallatie en feestmuziek" }, "preciseInput": { @@ -58,9 +65,11 @@ "en": "cafe", "nl": "cafe", "de": "Café", - "ru": "кафе" + "ru": "кафе", + "hu": "kávézó" }, "description": { + "en": "A <b>cafe</b> to drink tea, coffee or an alcoholical bevarage in a quiet environment", "nl": "Dit is een <b>cafe</b> - een plaats waar men rustig kan zitten om een thee, koffie of alcoholische drank te nuttigen." }, "preciseInput": { @@ -70,6 +79,7 @@ ], "title": { "render": { + "en": "Pub", "nl": "Café" }, "mappings": [ @@ -94,12 +104,16 @@ "question": { "nl": "Wat is de naam van dit café?", "en": "What is the name of this pub?", - "de": "Wie heißt diese Kneipe?" + "de": "Wie heißt diese Kneipe?", + "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}" + "de": "Diese Kneipe heißt {name}", + "fr": "Ce pub se nomme {name}", + "hu": "A kocsma neve: {name}" }, "freeform": { "key": "name" @@ -110,36 +124,42 @@ "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": [ { "if": "amenity=pub", "then": { + "en": "A pub, mostly for drinking beers in a warm, relaxed interior", "nl": "Dit is <b>een bruin café of een kroeg</b> waar voornamelijk bier wordt gedronken. De inrichting is typisch gezellig met veel houtwerk " } }, { "if": "amenity=bar", "then": { + "en": "A more modern and commercial <b>bar</b>, possibly with a music and light installation", "nl": "Dit is een <b>bar</b> waar men ter plaatse alcoholische drank nuttigt. De inrichting is typisch modern en commercieel, soms met lichtinstallatie en feestmuziek" } }, { "if": "amenity=cafe", "then": { + "en": "A <b>cafe</b> to drink tea, coffee or an alcoholical bevarage in a quiet environment", "nl": "Dit is een <b>cafe</b> - een plaats waar men rustig kan zitten om een thee, koffie of alcoholische drank te nuttigen." } }, { "if": "amenity=restaurant", "then": { + "en": "A <b>restuarant</b> where one can get a proper meal", "nl": "Dit is een <b>restaurant</b> waar men een maaltijd geserveerd krijgt" } }, { "if": "amenity=biergarten", "then": { + "en": "An open space where beer is served, typically seen in Germany", "nl": "Een open ruimte waar bier geserveerd wordt. Typisch in Duitsland" }, "hideInAnswer": "_country!=de" @@ -164,7 +184,9 @@ "question": { "en": "Opened now", "nl": "Nu geopened", - "de": "Jetzt geöffnet" + "de": "Jetzt geöffnet", + "fr": "Ouvert maintenant", + "hu": "Most nyitva van" }, "osmTags": "_isOpen=yes" } @@ -210,5 +232,10 @@ "centroid" ] } - ] + ], + "description": { + "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", + "nl": "Een laag die kroegen en koffiehuizen toont waar je iets kunt drinken. De laag zal je enkele vragen stellen" + } } \ No newline at end of file diff --git a/assets/layers/cafe_pub/pub.svg b/assets/layers/cafe_pub/pub.svg index 616bd520b1..15b89b3fc5 100644 --- a/assets/layers/cafe_pub/pub.svg +++ b/assets/layers/cafe_pub/pub.svg @@ -1,26 +1,6 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns="http://www.w3.org/2000/svg" - version="1.1" - width="16" - height="16" - viewBox="0 0 16 16" - id="svg2"> - <metadata id="metadata8"> - <rdf:RDF> - <cc:Work rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage"/> - <dc:title/> - </cc:Work> - </rdf:RDF> - </metadata> - <defs id="defs6"/> - <rect width="16" height="16" x="0" y="0" id="canvas" style="fill:none;stroke:none;visibility:hidden"/> - <path d="m 2,1 2,12 6,0 2,-12 z m 1.25,1 7.5,0 -0.33,2 -6.86,0 z" - id="pub" - style="fill:#C77400;fill-opacity:1;stroke:none" transform="translate(1,1)"/> -</svg> +<?xml version="1.0" encoding="UTF-8" standalone="yes"?> +<svg xmlns="http://www.w3.org/2000/svg" width="375px" height="375px" viewBox="0 0 375 375" version="1.1"> + <g id="surface1"> + <path style=" stroke:none;fill-rule:nonzero;fill:rgb(78.039217%,45.490196%,0%);fill-opacity:1;" d="M 70.3125 46.875 L 117.1875 328.125 L 257.8125 328.125 L 304.6875 46.875 Z M 99.609375 70.3125 L 275.390625 70.3125 L 267.65625 117.1875 L 106.875 117.1875 Z M 99.609375 70.3125 "/> + </g> +</svg> \ No newline at end of file diff --git a/assets/layers/charging_station/CEE7_4F.svg b/assets/layers/charging_station/CEE7_4F.svg index 0613ad4e69..942df3a3c7 100644 --- a/assets/layers/charging_station/CEE7_4F.svg +++ b/assets/layers/charging_station/CEE7_4F.svg @@ -1,63 +1,6 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - xmlns="http://www.w3.org/2000/svg" - width="200" - height="200" - viewBox="0 0 52.916666 52.916668" - version="1.1" - id="svg8" - inkscape:version="0.92.3 (2405546, 2018-03-11)" - sodipodi:docname="schuko.svg"> - <defs - id="defs2"/> - <sodipodi:namedview - id="base" - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="0.0" - inkscape:pageshadow="2" - inkscape:zoom="2" - inkscape:cx="10.36923" - inkscape:cy="150.9976" - inkscape:document-units="mm" - inkscape:current-layer="layer1" - showgrid="false" - inkscape:window-width="1879" - inkscape:window-height="1025" - inkscape:window-x="41" - inkscape:window-y="27" - inkscape:window-maximized="1" - units="px"/> - <metadata - id="metadata5"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage"/> - <dc:title/> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="1. réteg" - inkscape:groupmode="layer" - id="layer1" - style="display:inline" - transform="translate(0,-244.08332)"> - <path - style="opacity:1;vector-effect:none;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.01140394;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - d="m 26.441604,247.01962 c -8.657326,0.006 -16.218865,4.69135 -20.2953918,11.66346 l 0.01529,4.99846 -2.1956051,-0.0212 c -0.6657136,2.18004 -1.023401,4.49438 -1.0222633,6.89249 9.03e-4,2.08615 0.2737058,4.1086 0.7841873,6.03424 l 2.441323,-0.0271 -0.00241,5.87495 c 4.0853129,6.9596 11.6462809,11.63105 20.2971559,11.62877 8.626728,-0.002 16.167837,-4.65144 20.257769,-11.5841 l 0.0241,-5.89139 2.437799,0.0117 c 0.514855,-1.93641 0.789487,-3.97099 0.789478,-6.0701 -0.0024,-2.37892 -0.357119,-4.67488 -1.014625,-6.8384 l -2.232051,0.006 -0.0076,-5.09956 C 42.624189,251.6611 35.074316,247.01393 26.441604,247.01962 Z m -2.106251,3.78925 0.02176,3.01742 c 0.0046,0.48679 0.774188,1.10115 1.154531,1.09751 l 1.928135,-0.0102 c 0.475348,-0.006 1.131823,-0.69062 1.136894,-1.15335 l 0.01115,-2.941 c 6.05106,0.65887 11.288299,4.03193 14.460429,8.87589 l 0.0024,7.93064 2.803437,-0.008 -0.01586,4.96378 -2.786394,0.0288 0.0024,8.7448 c -3.170416,4.84737 -8.408306,8.22486 -14.465133,8.88472 l -0.0024,-2.91102 c -0.008,-0.47584 -0.614707,-1.18013 -1.106916,-1.18569 l -1.988753,-0.0141 c -0.482322,0.007 -1.146169,0.707 -1.138069,1.25858 l 0.0024,2.86575 c -6.080921,-0.62364 -11.350233,-3.98553 -14.5474299,-8.83121 l -0.00125,-8.84415 -2.7399503,0.008 0.00587,-4.92556 2.7117333,-0.007 -0.013514,-7.95885 c 3.1891139,-4.86933 8.4660189,-8.25431 14.5644809,-8.88588 z m 11.88096,16.42149 c -1.72122,0.003 -3.113745,1.40041 -3.11147,3.12029 0.0024,1.71988 1.399057,3.11201 3.120286,3.11087 1.721232,-0.001 3.116175,-1.39584 3.116175,-3.12028 -0.005,-1.72445 -1.403761,-3.1143 -3.124991,-3.11088 z m -20.285398,0.005 c -1.721229,0.003 -3.113975,1.40041 -3.111471,3.12029 0.0024,1.71988 1.399644,3.11201 3.120876,3.11087 1.721229,-10e-4 3.115584,-1.39584 3.115584,-3.12028 -0.005,-1.72445 -1.40376,-3.1143 -3.124989,-3.11088 z" - id="path826-3" - inkscape:connector-curvature="0"/> - </g> -</svg> +<?xml version="1.0" encoding="UTF-8" standalone="yes"?> +<svg xmlns="http://www.w3.org/2000/svg" width="375px" height="375px" viewBox="0 0 375 375" version="1.1"> + <g id="surface1"> + <path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 187.382812 20.808594 C 126.03125 20.851562 72.445312 54.054688 43.554688 103.464844 L 43.664062 138.886719 L 28.105469 138.734375 C 23.386719 154.183594 20.851562 170.585938 20.859375 187.578125 C 20.867188 202.363281 22.800781 216.695312 26.417969 230.339844 L 43.71875 230.148438 L 43.703125 271.78125 C 72.652344 321.101562 126.234375 354.207031 187.539062 354.191406 C 248.671875 354.175781 302.113281 321.230469 331.097656 272.097656 L 331.269531 230.347656 L 348.542969 230.433594 C 352.195312 216.710938 354.140625 202.292969 354.140625 187.417969 C 354.121094 170.558594 351.609375 154.285156 346.949219 138.953125 L 331.132812 138.996094 L 331.078125 102.859375 C 302.0625 53.699219 248.558594 20.769531 187.382812 20.808594 Z M 172.457031 47.660156 L 172.609375 69.042969 C 172.640625 72.496094 178.097656 76.847656 180.792969 76.824219 L 194.457031 76.75 C 197.824219 76.707031 202.476562 71.855469 202.511719 68.578125 L 202.589844 47.734375 C 245.472656 52.402344 282.585938 76.308594 305.066406 110.636719 L 305.082031 166.835938 L 324.949219 166.78125 L 324.835938 201.957031 L 305.089844 202.160156 L 305.109375 264.132812 C 282.640625 298.484375 245.523438 322.417969 202.601562 327.09375 L 202.582031 306.464844 C 202.527344 303.09375 198.226562 298.101562 194.738281 298.0625 L 180.644531 297.960938 C 177.226562 298.011719 172.523438 302.972656 172.578125 306.882812 L 172.597656 327.191406 C 129.503906 322.769531 92.164062 298.945312 69.503906 264.605469 L 69.496094 201.929688 L 50.078125 201.988281 L 50.121094 167.082031 L 69.335938 167.03125 L 69.242188 110.632812 C 91.84375 76.125 129.238281 52.136719 172.453125 47.660156 Z M 256.652344 164.035156 C 244.453125 164.054688 234.585938 173.957031 234.601562 186.144531 C 234.617188 198.335938 244.515625 208.199219 256.714844 208.191406 C 268.910156 208.183594 278.796875 198.300781 278.796875 186.078125 C 278.761719 173.859375 268.847656 164.011719 256.652344 164.035156 Z M 112.894531 164.070312 C 100.699219 164.089844 90.828125 173.992188 90.847656 186.183594 C 90.863281 198.371094 100.765625 208.234375 112.964844 208.226562 C 125.160156 208.21875 135.042969 198.335938 135.042969 186.113281 C 135.007812 173.894531 125.09375 164.046875 112.894531 164.070312 Z M 112.894531 164.070312 "/> + </g> +</svg> \ No newline at end of file diff --git a/assets/layers/charging_station/Chademo_type4.svg b/assets/layers/charging_station/Chademo_type4.svg index d9db56d343..980ad164ed 100644 --- a/assets/layers/charging_station/Chademo_type4.svg +++ b/assets/layers/charging_station/Chademo_type4.svg @@ -1,174 +1,18 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - xmlns="http://www.w3.org/2000/svg" - width="176.43056mm" - height="176.59903mm" - viewBox="0 0 625.14764 625.74459" - id="svg2" - version="1.1" - inkscape:version="0.92.5 (2060ec1f9f, 2020-04-08)" - sodipodi:docname="Chademo_type4.svg" - inkscape:export-filename="/Users/sss/Desktop/Plug/chademo type4.png" - inkscape:export-xdpi="600" - inkscape:export-ydpi="600"> - <defs - id="defs4"/> - <sodipodi:namedview - id="base" - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="0.0" - inkscape:pageshadow="2" - inkscape:zoom="0.7" - inkscape:cx="-164.44801" - inkscape:cy="218.10335" - inkscape:document-units="px" - inkscape:current-layer="layer1" - showgrid="true" - inkscape:snap-grids="false" - inkscape:snap-to-guides="true" - inkscape:window-width="1920" - inkscape:window-height="999" - inkscape:window-x="0" - inkscape:window-y="0" - inkscape:window-maximized="1"> - <inkscape:grid - type="xygrid" - id="grid4211" - originx="-58.486622" - originy="-236.1297"/> - </sodipodi:namedview> - <metadata - id="metadata7"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage"/> - <dc:title/> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Layer 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(-58.486622,-190.48793)"> - <ellipse - style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:65;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - id="path4213" - cx="512.14282" - cy="506.64789" - rx="69.104935" - ry="72.676361"/> - <ellipse - ry="72.676361" - rx="69.104935" - cy="506.64789" - cx="233.5714" - id="ellipse4215" - style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:65;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/> - <g - style="stroke:#000000;stroke-opacity:1" - id="g4234"> - <circle - r="70" - cy="330.93365" - cx="371.42859" - id="path4221" - style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:10;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/> - </g> - <ellipse - style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:7.30948782;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - id="path4223" - cx="319.85715" - cy="330.93365" - rx="16.378016" - ry="17.092304"/> - <ellipse - ry="17.092304" - rx="16.378016" - cy="330.93365" - cx="421.57144" - id="ellipse4225" - style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:7.30948782;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/> - <ellipse - style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:7.30948782;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - id="ellipse4227" - cx="372.14288" - cy="380.36221" - rx="16.378016" - ry="17.092304"/> - <g - style="stroke:#000000;stroke-opacity:1" - id="g4231" - transform="translate(0,4)"> - <ellipse - style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:7.30948782;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - id="ellipse4229" - cx="372.14288" - cy="276.64792" - rx="16.378016" - ry="17.092304"/> - </g> - <g - style="stroke:#000000;stroke-opacity:1" - id="g4248" - transform="translate(2.9325188e-8,350)"> - <circle - style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:10;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - id="circle4250" - cx="371.42859" - cy="330.93365" - r="70"/> - </g> - <ellipse - ry="17.092304" - rx="16.378016" - cy="680.93365" - cx="319.85715" - id="ellipse4252" - style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:7.30948782;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/> - <ellipse - style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:7.30948782;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - id="ellipse4254" - cx="421.57144" - cy="680.93365" - rx="16.378016" - ry="17.092304"/> - <ellipse - ry="17.092304" - rx="16.378016" - cy="730.36218" - cx="372.14288" - id="ellipse4256" - style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:7.30948782;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/> - <g - style="stroke:#000000;stroke-opacity:1" - id="g4258" - transform="translate(2.9325188e-8,354)"> - <ellipse - ry="17.092304" - rx="16.378016" - cy="276.64792" - cx="372.14288" - id="ellipse4260" - style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:7.30948782;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/> - </g> - <path - style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:18;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - d="m 198.57143,253.79078 c 0,0 52.58614,-29.39643 81.07143,-38.57143 27.98322,-9.01328 57.38863,-15.38044 86.78571,-15.71428 33.62262,-0.38182 67.55701,5.6582 99.64286,15.71428 28.14713,8.82164 79.64286,38.57143 79.64286,38.57143 l 38.57142,-8.57143 54.28572,54.28571 -11.42857,40 c 0,0 31.19161,55.83512 39.28571,86.42857 7.39899,27.96611 9.03609,57.52428 7.85714,86.42857 -1.35916,33.32263 -6.00647,67.13537 -17.14285,98.57143 -9.46744,26.72494 -24.36373,51.64402 -41.42857,74.28571 -16.82126,22.31851 -37.20196,42.11768 -59.14286,59.42858 -18.22165,14.37649 -38.25668,26.77452 -59.42857,36.28572 -21.57261,9.69122 -44.67141,16.05395 -67.85715,20.71429 -18.15873,3.64991 -36.76457,5.40224 -55.28571,5.57142 -18.27518,0.16693 -36.65813,-1.25041 -54.64286,-4.5 -18.52827,-3.3478 -36.85134,-8.42524 -54.35715,-15.35715 -19.70331,-7.80208 -38.75583,-17.59095 -56.42856,-29.28571 C 184.87727,742.39711 161.98922,724.79601 142.85714,703.79077 123.46882,682.5042 106.53896,658.41758 94.285714,632.3622 82.998053,608.36004 76.460387,582.10371 72.142857,555.93362 c -4.306381,-26.10252 -5.928935,-52.93559 -3.571429,-79.2857 2.39342,-26.75152 9.290857,-53.11578 17.857141,-78.57144 7.170886,-21.30908 27.857141,-61.42856 27.857141,-61.42856 l -9.42857,-41.71429 49.42857,-49.71428 z" - id="path4271" - inkscape:connector-curvature="0" - sodipodi:nodetypes="caaaccccaaaaaaaaaaaaaaaacccc"/> - </g> -</svg> +<?xml version="1.0" encoding="UTF-8" standalone="yes"?> +<svg xmlns="http://www.w3.org/2000/svg" width="375px" height="375px" viewBox="0 0 375 375" version="1.1"> + <g id="surface1"> + <path style="fill:none;stroke-width:65;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:4;" d="M 581.246803 506.647491 C 581.246803 546.786179 550.308507 579.326301 512.141941 579.326301 C 473.975375 579.326301 443.037078 546.786179 443.037078 506.647491 C 443.037078 466.508803 473.975375 433.96868 512.141941 433.96868 C 550.308507 433.96868 581.246803 466.508803 581.246803 506.647491 Z M 581.246803 506.647491 " transform="matrix(0.599858,0,0,0.5989,-35.083685,-113.96246)"/> + <path style="fill:none;stroke-width:65;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:4;" d="M 302.678408 506.647491 C 302.678408 546.786179 271.740112 579.326301 233.573546 579.326301 C 195.40698 579.326301 164.468683 546.786179 164.468683 506.647491 C 164.468683 466.508803 195.40698 433.96868 233.573546 433.96868 C 271.740112 433.96868 302.678408 466.508803 302.678408 506.647491 Z M 302.678408 506.647491 " transform="matrix(0.599858,0,0,0.5989,-35.083685,-113.96246)"/> + <path style="fill:none;stroke-width:10;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:4;" d="M 441.428626 330.934742 C 441.428626 369.592851 410.086588 400.932857 371.431625 400.932857 C 332.770151 400.932857 301.428113 369.592851 301.428113 330.934742 C 301.428113 292.276632 332.770151 260.936627 371.431625 260.936627 C 410.086588 260.936627 441.428626 292.276632 441.428626 330.934742 Z M 441.428626 330.934742 " transform="matrix(0.599858,0,0,0.5989,-35.083685,-113.96246)"/> + <path style="fill:none;stroke-width:7.309488;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:4;" d="M 336.234511 330.934742 C 336.234511 340.372617 328.90205 348.023361 319.856945 348.023361 C 310.81184 348.023361 303.479379 340.372617 303.479379 330.934742 C 303.479379 321.496867 310.81184 313.8396 319.856945 313.8396 C 328.90205 313.8396 336.234511 321.496867 336.234511 330.934742 Z M 336.234511 330.934742 " transform="matrix(0.599858,0,0,0.5989,-35.083685,-113.96246)"/> + <path style="fill:none;stroke-width:7.309488;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:4;" d="M 437.951242 330.934742 C 437.951242 340.372617 430.618781 348.023361 421.573676 348.023361 C 412.528571 348.023361 405.19611 340.372617 405.19611 330.934742 C 405.19611 321.496867 412.528571 313.8396 421.573676 313.8396 C 430.618781 313.8396 437.951242 321.496867 437.951242 330.934742 Z M 437.951242 330.934742 " transform="matrix(0.599858,0,0,0.5989,-35.083685,-113.96246)"/> + <path style="fill:none;stroke-width:7.309488;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:4;" d="M 388.518994 380.36129 C 388.518994 389.799165 381.186533 397.456432 372.141428 397.456432 C 363.096323 397.456432 355.763862 389.799165 355.763862 380.36129 C 355.763862 370.923415 363.096323 363.272671 372.141428 363.272671 C 381.186533 363.272671 388.518994 370.923415 388.518994 380.36129 Z M 388.518994 380.36129 " transform="matrix(0.599858,0,0,0.5989,-35.083685,-113.96246)"/> + <path style="fill:none;stroke-width:7.309488;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:4;" d="M 388.518994 276.64724 C 388.518994 286.085115 381.186533 293.742382 372.141428 293.742382 C 363.096323 293.742382 355.763862 286.085115 355.763862 276.64724 C 355.763862 267.209365 363.096323 259.558621 372.141428 259.558621 C 381.186533 259.558621 388.518994 267.209365 388.518994 276.64724 Z M 388.518994 276.64724 " transform="matrix(0.599858,0,0,0.5989,-35.083685,-111.56686)"/> + <path style="fill:none;stroke-width:10;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:4;" d="M 441.428626 330.93184 C 441.428626 369.596471 410.086588 400.936477 371.431625 400.936477 C 332.770151 400.936477 301.428113 369.596471 301.428113 330.93184 C 301.428113 292.27373 332.770151 260.933725 371.431625 260.933725 C 410.086588 260.933725 441.428626 292.27373 441.428626 330.93184 Z M 441.428626 330.93184 " transform="matrix(0.599858,0,0,0.5989,-35.083685,95.652559)"/> + <path style="fill:none;stroke-width:7.309488;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:4;" d="M 336.234511 680.93184 C 336.234511 690.376237 328.90205 698.026981 319.856945 698.026981 C 310.81184 698.026981 303.479379 690.376237 303.479379 680.93184 C 303.479379 671.493965 310.81184 663.84322 319.856945 663.84322 C 328.90205 663.84322 336.234511 671.493965 336.234511 680.93184 Z M 336.234511 680.93184 " transform="matrix(0.599858,0,0,0.5989,-35.083685,-113.96246)"/> + <path style="fill:none;stroke-width:7.309488;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:4;" d="M 437.951242 680.93184 C 437.951242 690.376237 430.618781 698.026981 421.573676 698.026981 C 412.528571 698.026981 405.19611 690.376237 405.19611 680.93184 C 405.19611 671.493965 412.528571 663.84322 421.573676 663.84322 C 430.618781 663.84322 437.951242 671.493965 437.951242 680.93184 Z M 437.951242 680.93184 " transform="matrix(0.599858,0,0,0.5989,-35.083685,-113.96246)"/> + <path style="fill:none;stroke-width:7.309488;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:4;" d="M 388.518994 730.36491 C 388.518994 739.802785 381.186533 747.45353 372.141428 747.45353 C 363.096323 747.45353 355.763862 739.802785 355.763862 730.36491 C 355.763862 720.920513 363.096323 713.269769 372.141428 713.269769 C 381.186533 713.269769 388.518994 720.920513 388.518994 730.36491 Z M 388.518994 730.36491 " transform="matrix(0.599858,0,0,0.5989,-35.083685,-113.96246)"/> + <path style="fill:none;stroke-width:7.309488;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:4;" d="M 388.518994 276.65086 C 388.518994 286.088735 381.186533 293.73948 372.141428 293.73948 C 363.096323 293.73948 355.763862 286.088735 355.763862 276.65086 C 355.763862 267.206463 363.096323 259.555719 372.141428 259.555719 C 381.186533 259.555719 388.518994 267.206463 388.518994 276.65086 Z M 388.518994 276.65086 " transform="matrix(0.599858,0,0,0.5989,-35.083685,98.048159)"/> + <path style="fill:none;stroke-width:18;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:4;" d="M 198.57179 253.788105 C 198.57179 253.788105 251.155823 224.391766 279.645625 215.221309 C 307.627494 206.207388 337.028969 199.841552 366.430444 199.502388 C 400.051666 199.124091 433.985461 205.163809 466.069862 215.221309 C 494.221042 224.039558 545.711067 253.788105 545.711067 253.788105 L 584.287886 245.217706 L 638.57154 299.503423 L 627.14306 339.505141 C 627.14306 339.505141 658.335322 395.343183 666.429682 425.933115 C 673.827262 453.901054 675.461763 483.460452 674.283099 512.36109 C 672.928612 545.683898 668.279077 579.495883 657.143634 610.933725 C 647.675252 637.65589 632.7759 662.57788 615.714579 685.217039 C 598.8942 707.536602 578.511782 727.338529 556.573007 744.648909 C 538.352558 759.024221 518.315274 771.423253 497.144909 780.932874 C 475.570804 790.625121 452.472901 796.984436 429.28383 801.647933 C 411.128501 805.300462 392.523846 807.048459 373.997335 807.21804 C 355.724791 807.387622 337.341543 805.965744 319.355524 802.717602 C 300.829013 799.371625 282.504373 794.297218 265.000239 787.363935 C 245.295064 779.563176 226.241085 769.773093 208.574152 758.078476 C 184.877149 742.39869 161.987629 724.794803 142.855506 703.79276 C 123.469417 682.503732 106.538335 658.416605 94.282836 632.359722 C 82.997619 608.357387 76.459617 582.104833 72.142191 555.930547 C 67.837789 529.828007 66.216312 502.994961 68.57364 476.651094 C 70.963527 449.896317 77.859687 423.532882 86.429419 398.076057 C 93.599081 376.767462 114.287561 336.648341 114.287561 336.648341 L 104.858251 294.931239 L 154.283986 245.217706 Z M 198.57179 253.788105 " transform="matrix(0.599858,0,0,0.5989,-35.083685,-113.96246)"/> + </g> +</svg> \ No newline at end of file diff --git a/assets/layers/charging_station/README.md b/assets/layers/charging_station/README.md index 4c57a9c150..823b189035 100644 --- a/assets/layers/charging_station/README.md +++ b/assets/layers/charging_station/README.md @@ -26,13 +26,14 @@ The CSV File The columns in the CSV file are: -- key: the key as described on the wiki, starts with `socket:` -- image: The associated image (a .svg) -- description:en A description in english -- description:nl A description in english -- countryWhiteList: Only show this plug type in these countries -- countryBlackList: Don't show this plug type in these countries. NOt compatibel with the whiteList -- commonVoltages, commonCurrents, commonOutputs: common values for these tags -- associatedVehicleTypes and neverAssociatedWith: these work in tandem to hide options. If every associated vehicle type +- `key`: the key as described on the wiki, starts with `socket:` +- `image`: The associated image (a .svg) +- `description:en` A description in english +- `description:nl` A description in english +- `countryWhiteList`: Only show this plug type in these countries +- `countryBlackList`: Don't show this plug type in these countries. NOt compatibel with the whiteList +- `commonVoltages`, `commonCurrents`, `commonOutputs`: common values for these tags +- `associatedVehicleTypes` and `neverAssociatedWith`: these work in tandem to hide options. If every associated vehicle type is `no`, then the option is hidden If at least one `neverAssociatedVehicleType` is `yes` and none of the associated types is yes, then the option is hidden too +- `extraVisualisationCondition`: in some exceptional cases, a socket type is branded differently. This extra condition allows to hide these cases in the big multi-answer diff --git a/assets/layers/charging_station/Tesla-hpwc-model-s.svg b/assets/layers/charging_station/Tesla-hpwc-model-s.svg index bb89934acd..2959fca836 100644 --- a/assets/layers/charging_station/Tesla-hpwc-model-s.svg +++ b/assets/layers/charging_station/Tesla-hpwc-model-s.svg @@ -1,167 +1,19 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - xmlns="http://www.w3.org/2000/svg" - width="142.32359mm" - height="119.50872mm" - viewBox="0 0 504.2962 423.4561" - id="svg2" - version="1.1" - inkscape:version="0.92.5 (2060ec1f9f, 2020-04-08)" - sodipodi:docname="Tesla-hpwc-model-s.svg" - inkscape:export-filename="/Users/sss/Desktop/EV Plugs/tesla-hpwc-model-s.png" - inkscape:export-xdpi="600.09003" - inkscape:export-ydpi="600.09003"> - <defs - id="defs4"/> - <sodipodi:namedview - id="base" - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="0.0" - inkscape:pageshadow="2" - inkscape:zoom="0.98994949" - inkscape:cx="-95.934435" - inkscape:cy="240.84328" - inkscape:document-units="px" - inkscape:current-layer="layer1" - showgrid="true" - inkscape:snap-grids="false" - inkscape:window-width="1203" - inkscape:window-height="851" - inkscape:window-x="6" - inkscape:window-y="25" - inkscape:window-maximized="0"> - <inkscape:grid - type="xygrid" - id="grid4198" - originx="-112.84082" - originy="-334.16263"/> - </sodipodi:namedview> - <metadata - id="metadata7"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage"/> - <dc:title/> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:groupmode="layer" - id="layer2" - inkscape:label="Layer 2" - transform="translate(-112.84082,-294.7435)"> - <path - style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" - d="m 184.85792,610.92554 c 5.34247,-9.4116 20.61454,5.50266 32.32488,3.03046 11.71034,-2.4722 21.39574,-12.73143 34.34519,-19.1929 36.3074,-19.01022 81.45928,-28.17606 119.198,-28.28426 50.78584,1.91459 74.27116,7.41743 116.16754,29.29441 11.09057,5.78459 22.31528,18.45539 31.31473,20.20305 8.99945,1.74766 30.5459,-16.67466 37.37564,-6.06091 8.54045,13.27229 -26.26396,39.39595 -26.26396,39.39595 l -52.52794,30.30457 -67.68022,19.1929 -79.80205,1.01016 -58.58885,-15.15229 -55.55839,-32.32488 c 0,0 -38.74931,-26.53954 -30.30457,-41.41626 z" - id="path4164" - inkscape:connector-curvature="0" - sodipodi:nodetypes="azccczacccccca"/> - </g> - <g - inkscape:label="Layer 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(-112.84082,-294.7435)"> - <ellipse - style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:30;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - id="path4200" - cx="230.35025" - cy="418.67181" - rx="83.017761" - ry="86.048218"/> - <ellipse - ry="86.048218" - rx="83.017761" - cy="418.672" - cx="499.05084" - id="ellipse4202" - style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:30;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/> - <path - style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:35;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - d="m 279.30718,316.91023 c 0,0 -33.08645,4.35616 -48.9924,9.15229 -20.64561,6.22527 -42.55026,11.99792 -59.55839,25.25382 -11.00372,8.57614 -18.99908,20.90526 -25.25381,33.37564 -5.96623,11.89519 -8.55315,25.28589 -11.11168,38.34519 -2.47362,12.62593 -3.89722,25.52064 -4.04061,38.3858 -0.13556,12.16253 1.22253,24.33428 3.01015,36.36549 1.87312,12.60661 4.3376,25.18662 8.06092,37.37564 4.23784,13.87341 9.89121,27.32549 16.16244,40.4061 6.5181,13.59554 13.50529,27.09474 22.22335,39.39595 8.27833,11.68075 17.64849,22.74329 28.30458,32.30458 12.23566,10.97857 25.91139,20.51153 40.3858,28.30458 13.70868,7.38077 28.39314,13.16022 43.43656,17.17259 15.7817,4.20928 32.19147,5.9642 48.48732,7.07107 18.30969,1.24366 36.78558,1.25025 55.05331,-0.50508 17.55268,-1.68662 35.17398,-4.3949 52.02286,-9.59645 15.12757,-4.67015 29.67229,-11.39026 43.43656,-19.2132 11.12797,-6.3246 21.87658,-13.57735 31.31473,-22.22336 13.03065,-11.93698 24.40568,-25.77431 34.34518,-40.3858 9.65878,-14.1988 17.71912,-29.57201 24.24366,-45.45686 6.2739,-15.27462 10.91192,-31.2833 14.14214,-47.47717 2.84779,-14.27667 4.25784,-28.88148 4.54568,-43.43656 0.36027,-18.21734 -0.0313,-36.66748 -3.53553,-54.54824 -2.86199,-14.60363 -5.93988,-29.92825 -14.14213,-42.34518 -8.69267,-13.15935 -21.87573,-23.27593 -35.39595,-31.39595 -13.23084,-7.94622 -28.52892,-11.9986 -43.39595,-16.14214 -12.21526,-3.40448 -24.8878,-4.88763 -37.37565,-7.09137 l -17.17259,-3.03046" - id="path4206" - inkscape:connector-curvature="0" - sodipodi:nodetypes="caaaaaaaaaaaaaaaaaaaaaaaaasc" - inkscape:export-xdpi="600.09003" - inkscape:export-ydpi="600.09003"/> - <path - style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:20.26376724;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - d="m 248.31561,315.87298 c 0,0 24.12228,-5.07483 34.71983,-6.87468 10.59756,-1.79985 29.90209,-2.31504 50.08267,-3.11732 10.76112,-0.42781 21.52943,-0.99049 32.30252,-1.00526 11.81462,-0.0162 23.62307,0.55736 35.42857,1.00526 7.33923,0.27845 14.70208,0.29618 22.00802,1.04567 l 29.10539,2.9858" - id="path4208" - inkscape:connector-curvature="0" - sodipodi:nodetypes="cssaasc"/> - <path - sodipodi:nodetypes="cassc" - inkscape:connector-curvature="0" - id="path4214" - d="m 580.58137,560.70912 c 0,0 6.13362,-29.43998 3.88722,-43.98705 -0.97642,-6.32302 -2.73509,-13.49274 -7.37831,-17.7191 -4.24591,-3.8647 -8.88817,-7.84975 -18.02479,-8.84831 -9.13661,-0.99857 -26.30313,8.06042 -26.30313,8.06042" - style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:28.58847809;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/> - <path - style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:28.05994987;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - d="m 149.56008,560.95966 c 0,0 -6.37621,-30.10596 -3.67151,-44.86526 1.23348,-6.73102 3.5893,-13.78529 8.82103,-18.5376 0,0 10.0336,-5.77951 15.4336,-6.28404 5.4,-0.50453 18.66161,2.87436 18.66161,2.87436" - id="path4216" - inkscape:connector-curvature="0" - sodipodi:nodetypes="cassc"/> - <path - sodipodi:nodetypes="csc" - inkscape:connector-curvature="0" - id="path4220" - d="m 441.44301,349.74977 c 0,0 12.08212,-15.94331 7.5006,-28.5062 -4.53524,-12.43598 -20.09538,-13.81125 -20.09538,-13.81125" - style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:20.16927338;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/> - <rect - style="opacity:1;fill:none;fill-opacity:1;stroke:#000000;stroke-width:20;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="rect4224" - width="36.36549" - height="18.182745" - x="126.26907" - y="468.49402" - ry="9.0913725"/> - <rect - ry="9.0913725" - y="472.53464" - x="560.63464" - height="18.182745" - width="36.36549" - id="rect4226" - style="opacity:1;fill:none;fill-opacity:1;stroke:#000000;stroke-width:20;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/> - <ellipse - cy="625.19025" - cx="473.55237" - id="ellipse4236" - style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:14.23218822;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - rx="23.71863" - ry="23.213554"/> - <ellipse - style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:8.45023632;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - id="ellipse4238" - cx="369.21078" - cy="627.08795" - rx="37.338669" - ry="36.833595"/> - <ellipse - ry="23.213554" - rx="23.71863" - style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:14.23218822;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - id="ellipse4244" - cx="260.61938" - cy="625.06769"/> - <path - style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:20.16927338;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - d="m 287.06118,349.74977 c 0,0 -12.08212,-15.94331 -7.5006,-28.5062 4.53524,-12.43598 20.09538,-13.81125 20.09538,-13.81125" - id="path4157" - inkscape:connector-curvature="0" - sodipodi:nodetypes="csc"/> - </g> -</svg> +<?xml version="1.0" encoding="UTF-8" standalone="yes"?> +<svg xmlns="http://www.w3.org/2000/svg" width="374px" height="314px" viewBox="0 0 374 314" version="1.1"> + <g id="surface1"> + <path style="fill-rule:evenodd;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:4;" d="M 184.859585 610.923762 C 190.197805 601.515266 205.474704 616.428734 217.184006 613.958082 C 228.893309 611.482161 238.579042 601.225531 251.526727 594.761799 C 287.835051 575.755161 332.985954 566.588989 370.72764 566.478363 C 421.511866 568.395884 444.998978 573.895587 486.893198 595.773239 C 497.985944 601.557409 509.210433 614.226745 518.205833 615.975693 C 527.206504 617.724641 548.754361 599.302742 555.583909 609.917591 C 564.126114 623.187469 529.319659 649.31106 529.319659 649.31106 L 476.791157 679.617375 L 409.112231 698.80839 L 329.307694 699.819829 L 270.719023 684.669306 L 215.160436 652.340111 C 215.160436 652.340111 176.412235 625.800355 184.859585 610.923762 Z M 184.859585 610.923762 " transform="matrix(0.741264,0,0,0.741517,-83.553239,-218.557395)"/> + <path style="fill:none;stroke-width:30;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:4;" d="M 313.366812 418.671202 C 313.366812 466.193064 276.199524 504.722595 230.34775 504.722595 C 184.501245 504.722595 147.333958 466.193064 147.333958 418.671202 C 147.333958 371.14934 184.501245 332.625077 230.34775 332.625077 C 276.199524 332.625077 313.366812 371.14934 313.366812 418.671202 Z M 313.366812 418.671202 " transform="matrix(0.741264,0,0,0.741517,-83.553239,-218.557395)"/> + <path style="fill:none;stroke-width:30;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:4;" d="M 582.069488 418.671202 C 582.069488 466.193064 544.9022 504.722595 499.050426 504.722595 C 453.203921 504.722595 416.031364 466.193064 416.031364 418.671202 C 416.031364 371.14934 453.203921 332.625077 499.050426 332.625077 C 544.9022 332.625077 582.069488 371.14934 582.069488 418.671202 Z M 582.069488 418.671202 " transform="matrix(0.741264,0,0,0.741517,-83.553239,-218.557395)"/> + <path style="fill:none;stroke-width:35;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:4;" d="M 279.308655 316.910886 C 279.308655 316.910886 246.220126 321.267452 230.316132 326.061255 C 209.669395 332.28793 187.763197 338.061565 170.757833 351.31564 C 159.754672 359.891805 151.755247 372.223995 145.500098 384.69315 C 139.534782 396.588102 136.947353 409.979142 134.391542 423.038303 C 131.914777 435.665496 130.491954 448.556084 130.349672 461.425601 C 130.21266 473.583949 131.572246 485.7581 133.358678 497.790018 C 135.234696 510.396139 137.695652 522.97592 141.42134 535.165876 C 145.658189 549.036296 151.312591 562.490551 157.58355 575.570784 C 164.102185 589.167273 171.089825 602.663672 179.805931 614.964253 C 188.08465 626.648489 197.4542 637.711111 208.10956 647.272376 C 220.345834 658.250711 234.02074 667.78037 248.496642 675.576884 C 262.208436 682.957233 276.889857 688.736136 291.934888 692.750287 C 307.717679 696.959351 324.127566 698.713567 340.421519 699.819829 C 358.728503 701.063057 377.209387 701.068325 395.474213 699.314109 C 413.027628 697.628377 430.649549 694.920668 447.496822 689.715968 C 462.626168 685.048595 477.170577 678.326736 490.935068 670.503882 C 502.064702 664.177116 512.809647 656.928465 522.247703 648.278548 C 535.279704 636.341453 546.657015 622.507908 556.595694 607.894711 C 566.255078 593.69768 574.31247 578.320636 580.836375 562.437872 C 587.112603 547.166186 591.749951 531.156992 594.980285 514.963421 C 597.82593 500.682104 599.238213 486.079443 599.528048 471.524194 C 599.886388 453.307743 599.496429 434.859505 595.99207 416.974933 C 593.130616 402.372273 590.047833 387.047908 581.84816 374.631432 C 573.153133 361.47218 559.97358 351.352515 546.451496 343.234658 C 533.219246 335.290642 517.921269 331.234347 503.055408 327.093766 C 490.840213 323.690693 478.166553 322.205141 465.682602 320.003153 L 448.508607 316.968833 " transform="matrix(0.741264,0,0,0.741517,-83.553239,-218.557395)"/> + <path style="fill:none;stroke-width:20.263767;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:4;" d="M 248.317472 315.873107 C 248.317472 315.873107 272.436949 310.800105 283.034342 308.998478 C 293.631736 307.196851 312.939965 306.685863 333.117697 305.879872 C 343.878451 305.453171 354.649745 304.889504 365.421039 304.8737 C 377.235736 304.857897 389.045163 305.432099 400.84932 305.879872 C 408.190031 306.159072 415.55182 306.174875 422.855643 306.928187 L 451.960269 309.909827 " transform="matrix(0.741264,0,0,0.741517,-83.553239,-218.557395)"/> + <path style="fill:none;stroke-width:28.588478;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:4;" d="M 580.583429 560.709996 C 580.583429 560.709996 586.717375 531.267619 584.467207 516.722905 C 583.49231 510.401407 581.732226 503.231775 577.089609 499.001639 C 572.84222 495.140257 568.199603 491.152445 559.06719 490.156809 C 549.929507 489.155906 532.760781 498.216719 532.760781 498.216719 " transform="matrix(0.741264,0,0,0.741517,-83.553239,-218.557395)"/> + <path style="fill:none;stroke-width:28.05995;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:4;" d="M 149.557777 560.957588 C 149.557777 560.957588 143.181424 530.851453 145.890056 516.096023 C 147.123169 509.363628 149.478731 502.309889 154.711556 497.55823 C 154.711556 497.55823 164.74509 491.779327 170.141277 491.273607 C 175.542733 490.767888 188.806601 494.144621 188.806601 494.144621 " transform="matrix(0.741264,0,0,0.741517,-83.553239,-218.557395)"/> + <path style="fill:none;stroke-width:20.169273;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:4;" d="M 441.441921 349.751069 C 441.441921 349.751069 453.525374 333.80509 448.945993 321.241113 C 444.40877 308.808833 428.847307 307.433907 428.847307 307.433907 " transform="matrix(0.741264,0,0,0.741517,-83.553239,-218.557395)"/> + <path style="fill:none;stroke-width:20;stroke-linecap:round;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:4;" d="M 135.361169 468.495143 L 153.54168 468.495143 C 158.563717 468.495143 162.631935 472.561973 162.631935 477.587564 C 162.631935 482.607887 158.563717 486.674718 153.54168 486.674718 L 135.361169 486.674718 C 130.339133 486.674718 126.270914 482.607887 126.270914 477.587564 C 126.270914 472.561973 130.339133 468.495143 135.361169 468.495143 Z M 135.361169 468.495143 " transform="matrix(0.741264,0,0,0.741517,-83.553239,-218.557395)"/> + <path style="fill:none;stroke-width:20;stroke-linecap:round;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:4;" d="M 569.727819 472.535633 L 587.90833 472.535633 C 592.930367 472.535633 596.998585 476.602464 596.998585 481.628055 C 596.998585 486.648378 592.930367 490.715208 587.90833 490.715208 L 569.727819 490.715208 C 564.705783 490.715208 560.632294 486.648378 560.632294 481.628055 C 560.632294 476.602464 564.705783 472.535633 569.727819 472.535633 Z M 569.727819 472.535633 " transform="matrix(0.741264,0,0,0.741517,-83.553239,-218.557395)"/> + <path style="fill-rule:evenodd;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:14.232188;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:4;" d="M 497.269263 625.189276 C 497.269263 638.011382 486.650791 648.404978 473.550284 648.404978 C 460.455046 648.404978 449.831305 638.011382 449.831305 625.189276 C 449.831305 612.367171 460.455046 601.978843 473.550284 601.978843 C 486.650791 601.978843 497.269263 612.367171 497.269263 625.189276 Z M 497.269263 625.189276 " transform="matrix(0.741264,0,0,0.741517,-83.553239,-218.557395)"/> + <path style="fill-rule:evenodd;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:8.450236;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:4;" d="M 406.55115 627.085726 C 406.55115 647.430414 389.83035 663.918988 369.209962 663.918988 C 348.589575 663.918988 331.874044 647.430414 331.874044 627.085726 C 331.874044 606.746306 348.589575 590.252464 369.209962 590.252464 C 389.83035 590.252464 406.55115 606.746306 406.55115 627.085726 Z M 406.55115 627.085726 " transform="matrix(0.741264,0,0,0.741517,-83.553239,-218.557395)"/> + <path style="fill-rule:evenodd;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:14.232188;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:4;" d="M 284.335962 625.068114 C 284.335962 637.89022 273.717489 648.283816 260.616982 648.283816 C 247.521745 648.283816 236.903273 637.89022 236.903273 625.068114 C 236.903273 612.246009 247.521745 601.852413 260.616982 601.852413 C 273.717489 601.852413 284.335962 612.246009 284.335962 625.068114 Z M 284.335962 625.068114 " transform="matrix(0.741264,0,0,0.741517,-83.553239,-218.557395)"/> + <path style="fill:none;stroke-width:20.169273;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:4;" d="M 287.060403 349.751069 C 287.060403 349.751069 274.976951 333.80509 279.561601 321.241113 C 284.093555 308.808833 299.655018 307.433907 299.655018 307.433907 " transform="matrix(0.741264,0,0,0.741517,-83.553239,-218.557395)"/> + </g> +</svg> \ No newline at end of file diff --git a/assets/layers/charging_station/Type1-ccs.svg b/assets/layers/charging_station/Type1-ccs.svg index df34d24c73..ed066ab701 100644 --- a/assets/layers/charging_station/Type1-ccs.svg +++ b/assets/layers/charging_station/Type1-ccs.svg @@ -1,226 +1,40 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - xmlns="http://www.w3.org/2000/svg" - width="140.90894mm" - height="220.40805mm" - viewBox="0 0 499.28363 780.97341" - id="svg2" - version="1.1" - inkscape:version="0.92.5 (2060ec1f9f, 2020-04-08)" - sodipodi:docname="Type1-ccs.svg" - inkscape:export-filename="/Users/sss/Desktop/EV Plugs/type1-ccs.png" - inkscape:export-xdpi="600" - inkscape:export-ydpi="600"> - <defs - id="defs4"/> - <sodipodi:namedview - id="base" - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="0.0" - inkscape:pageshadow="2" - inkscape:zoom="0.98994949" - inkscape:cx="46.05434" - inkscape:cy="221.84629" - inkscape:document-units="px" - inkscape:current-layer="layer1" - showgrid="true" - inkscape:snap-to-guides="false" - inkscape:snap-grids="false" - inkscape:window-width="1100" - inkscape:window-height="865" - inkscape:window-x="486" - inkscape:window-y="18" - inkscape:window-maximized="0"> - <inkscape:grid - type="xygrid" - id="grid4198" - originx="-119.05579" - originy="-74.797752"/> - </sodipodi:namedview> - <metadata - id="metadata7"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage"/> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Layer 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(-119.0558,-196.59103)"> - <ellipse - style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:9.56927681;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - id="path4200" - cx="367.85715" - cy="495.93365" - rx="160.95374" - ry="162.38231" - inkscape:export-xdpi="600" - inkscape:export-ydpi="600"/> - <ellipse - style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:9.94517899;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - id="ellipse4204" - cx="295" - cy="428.79077" - rx="61.111416" - ry="59.682846" - inkscape:export-xdpi="600" - inkscape:export-ydpi="600"/> - <ellipse - ry="59.682846" - rx="61.111416" - cy="430.21933" - cx="443.57144" - id="ellipse4206" - style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:9.94517899;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - inkscape:export-xdpi="600" - inkscape:export-ydpi="600"/> - <ellipse - style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:9.94517899;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - id="ellipse4208" - cx="367.85715" - cy="597.36218" - rx="61.111416" - ry="59.682846" - inkscape:export-xdpi="600" - inkscape:export-ydpi="600"/> - <ellipse - id="ellipse4210" - style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:9.87373066;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - ry="43.907356" - rx="44.073235" - cy="548.79071" - cx="265.16583" - inkscape:export-xdpi="600" - inkscape:export-ydpi="600"/> - <ellipse - ry="45.200142" - rx="45.200138" - style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:10.14530182;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - id="ellipse4212" - cx="470.14282" - cy="548.21924" - inkscape:export-xdpi="600" - inkscape:export-ydpi="600"/> - <ellipse - cx="295.47043" - cy="427.82495" - rx="17.293442" - ry="16.875025" - style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - id="ellipse4236" - inkscape:export-xdpi="600" - inkscape:export-ydpi="600"/> - <ellipse - id="ellipse4238" - style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - ry="16.875025" - rx="17.293442" - cy="428.33002" - cx="442.9527" - inkscape:export-xdpi="600" - inkscape:export-ydpi="600"/> - <ellipse - cx="368.20142" - cy="596.01532" - rx="17.293442" - ry="16.875025" - style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - id="ellipse4242" - inkscape:export-xdpi="600" - inkscape:export-ydpi="600"/> - <ellipse - style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" - id="path4244" - cx="265.41757" - cy="550.31641" - rx="10.354064" - ry="10.606602" - inkscape:export-xdpi="600" - inkscape:export-ydpi="600"/> - <ellipse - ry="10.606602" - rx="10.354064" - cy="548.31641" - cx="470.49884" - id="ellipse4246" - style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" - inkscape:export-xdpi="600" - inkscape:export-ydpi="600"/> - <path - style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:10;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - d="m 314.15744,710.42556 c 0,0 -8.29727,-2.7314 -12.37437,-4.29314 -39.46429,-15.1169 -77.72925,-39.07475 -103.2881,-72.47845 -30.35641,-39.67379 -52.52967,-90.98412 -51.0127,-140.91628 1.68766,-55.55061 26.77332,-113.83333 66.16499,-153.03811 39.83025,-39.64128 98.86627,-66.73242 155.05842,-66.16499 58.16955,0.5874 118.77282,29.79424 159.09902,71.72083 37.0167,38.48575 58.80289,95.10989 60.10408,148.49243 1.19495,49.0241 -18.5798,100.033 -48.48732,138.89597 -27.02603,35.11865 -69.14587,60.36619 -110.10663,74.49875 -2.5427,0.8773 -7.57614,2.77792 -7.57614,2.77792 l -0.50508,22.22336 c -0.16266,7.15687 -6.98759,15.91815 -14.14213,16.16244 -39.7949,1.3588 -40.27174,0.57428 -74.75129,1.01015 -7.63331,0.0965 -17.49154,-10.55111 -17.67768,-18.18274 z" - id="path4248" - inkscape:connector-curvature="0" - sodipodi:nodetypes="csaaaaaaascssssc" - inkscape:export-xdpi="600" - inkscape:export-ydpi="600"/> - <path - style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:10;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - d="m 315.71429,217.3622 100,-0.71428" - id="path4271" - inkscape:connector-curvature="0" - inkscape:export-xdpi="600" - inkscape:export-ydpi="600"/> - <path - style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:10;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - d="M 315.71429,260.93363 315,201.64792 c 0,0 -6.46215,0.074 -9.28571,1.42857 -3.49459,1.67645 -7.45418,4.14575 -8.57143,7.85714 -6.43638,21.38096 -13.57143,57.85715 -13.57143,57.85715" - id="path4273" - inkscape:connector-curvature="0" - sodipodi:nodetypes="ccasc" - inkscape:export-xdpi="600" - inkscape:export-ydpi="600"/> - <path - sodipodi:nodetypes="ccasc" - inkscape:connector-curvature="0" - id="path4275" - d="m 415.80692,261.64792 0.71429,-59.28571 c 0,0 6.46215,0.074 9.28571,1.42857 3.49459,1.67645 7.45418,4.14575 8.57143,7.85714 6.43638,21.38096 13.57143,57.85715 13.57143,57.85715" - style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:10;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - inkscape:export-xdpi="600" - inkscape:export-ydpi="600"/> - <path - inkscape:export-ydpi="600" - inkscape:export-xdpi="600" - sodipodi:nodetypes="cssaaaaasscssssc" - inkscape:connector-curvature="0" - id="path4162" - d="m 303.19364,719.33863 c 0,0 -14.02596,-5.38809 -18.09154,-7.53768 -39.56925,-20.92145 -71.23025,-37.80068 -94.70835,-69.02148 -31.53528,-41.93512 -55.35856,-95.521 -53.75989,-147.94299 1.77855,-58.32061 28.21516,-119.50957 69.72818,-160.66928 41.97524,-41.61797 104.19053,-70.05998 163.4088,-69.46426 61.30216,0.61669 125.1691,31.27991 167.667,75.29715 39.01016,40.40482 61.96959,99.85249 63.34086,155.89691 1.2593,51.46867 -17.22512,103.56252 -51.0985,145.82194 -25.39274,31.67922 -57.71731,50.24435 -98.86363,71.14254 -2.52632,1.28312 -17.07551,5.94689 -17.07551,5.94689 l -0.53228,23.33152 c -0.17142,7.51375 2.73764,23.78297 -4.8022,24.03944 -41.93798,1.42656 -67.69432,0.60292 -104.03069,1.06052 -8.04439,0.10131 -19.33806,1.04132 -19.63984,-6.96758 z" - style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:35;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/> - <ellipse - style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:20;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - id="path4163" - cx="282.33765" - cy="866.49408" - rx="52.64222" - ry="54.157452"/> - <ellipse - ry="54.157452" - rx="52.64222" - cy="864.47375" - cx="455.07373" - id="ellipse4165" - style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:20;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/> - <rect - style="opacity:0.98999999;fill:none;fill-opacity:1;stroke:#000000;stroke-width:25;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="rect4167" - width="386.93753" - height="192.47308" - x="175.29277" - y="772.59137" - ry="95.432564"/> +<?xml version="1.0" encoding="UTF-8" standalone="yes"?> +<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="238px" height="372px" viewBox="0 0 238 372" version="1.1"> + <defs> + <filter id="alpha" filterUnits="objectBoundingBox" x="0%" y="0%" width="100%" height="100%"> + <feColorMatrix type="matrix" in="SourceGraphic" values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 1 0"/> + </filter> + <mask id="mask0"> + <g filter="url(#alpha)"> + <rect x="0" y="0" width="238" height="372" style="fill:rgb(0%,0%,0%);fill-opacity:0.99;stroke:none;"/> + </g> + </mask> + <clipPath id="clip1"> + <rect x="0" y="0" width="238" height="372"/> + </clipPath> + <g id="surface5" clip-path="url(#clip1)"> + <path style="fill:none;stroke-width:25;stroke-linecap:round;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:4;" d="M 270.722382 772.591884 L 466.795771 772.591884 C 519.503759 772.591884 562.230664 815.318893 562.230664 868.024016 L 562.230664 869.632331 C 562.230664 922.337454 519.503759 965.064462 466.795771 965.064462 L 270.722382 965.064462 C 218.022588 965.064462 175.295684 922.337454 175.295684 869.632331 L 175.295684 868.024016 C 175.295684 815.318893 218.022588 772.591884 270.722382 772.591884 Z M 270.722382 772.591884 " transform="matrix(0.476683,0,0,0.476042,-56.751872,-93.473561)"/> </g> -</svg> + </defs> + <g id="surface1"> + <path style="fill-rule:evenodd;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:9.569277;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:4;" d="M 528.812881 495.93717 C 528.812881 585.617116 456.74913 658.319497 367.853568 658.319497 C 278.9662 658.319497 206.902449 585.617116 206.902449 495.93717 C 206.902449 406.249019 278.9662 333.554844 367.853568 333.554844 C 456.74913 333.554844 528.812881 406.249019 528.812881 495.93717 Z M 528.812881 495.93717 " transform="matrix(0.476683,0,0,0.476042,-56.751872,-93.473561)"/> + <path style="fill-rule:evenodd;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:9.945179;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:4;" d="M 356.110634 428.790039 C 356.110634 461.752281 328.748698 488.469996 295.00313 488.469996 C 261.249367 488.469996 233.887431 461.752281 233.887431 428.790039 C 233.887431 395.827797 261.249367 369.110083 295.00313 369.110083 C 328.748698 369.110083 356.110634 395.827797 356.110634 428.790039 Z M 356.110634 428.790039 " transform="matrix(0.476683,0,0,0.476042,-56.751872,-93.473561)"/> + <path style="fill-rule:evenodd;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:9.945179;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:4;" d="M 504.679637 430.217829 C 504.679637 463.180071 477.325896 489.905991 443.572133 489.905991 C 409.81837 489.905991 382.456434 463.180071 382.456434 430.217829 C 382.456434 397.255587 409.81837 370.537872 443.572133 370.537872 C 477.325896 370.537872 504.679637 397.255587 504.679637 430.217829 Z M 504.679637 430.217829 " transform="matrix(0.476683,0,0,0.476042,-56.751872,-93.473561)"/> + <path style="fill-rule:evenodd;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:9.945179;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:4;" d="M 428.969267 597.359453 C 428.969267 630.321695 401.607331 657.047615 367.853568 657.047615 C 334.107999 657.047615 306.746063 630.321695 306.746063 597.359453 C 306.746063 564.397211 334.107999 537.679497 367.853568 537.679497 C 401.607331 537.679497 428.969267 564.397211 428.969267 597.359453 Z M 428.969267 597.359453 " transform="matrix(0.476683,0,0,0.476042,-56.751872,-93.473561)"/> + <path style="fill-rule:evenodd;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:9.873731;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:4;" d="M 309.237237 548.789996 C 309.237237 573.037799 289.50452 592.698623 265.166409 592.698623 C 240.828299 592.698623 221.095582 573.037799 221.095582 548.789996 C 221.095582 524.542193 240.828299 504.881369 265.166409 504.881369 C 289.50452 504.881369 309.237237 524.542193 309.237237 548.789996 Z M 309.237237 548.789996 " transform="matrix(0.476683,0,0,0.476042,-56.751872,-93.473561)"/> + <path style="fill-rule:evenodd;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:10.145302;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:4;" d="M 515.340877 548.215598 C 515.340877 573.185501 495.108286 593.420724 470.139188 593.420724 C 445.178284 593.420724 424.945694 573.185501 424.945694 548.215598 C 424.945694 523.2539 445.178284 503.018678 470.139188 503.018678 C 495.108286 503.018678 515.340877 523.2539 515.340877 548.215598 Z M 515.340877 548.215598 " transform="matrix(0.476683,0,0,0.476042,-56.751872,-93.473561)"/> + <path style="fill-rule:evenodd;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:4;" d="M 312.760936 427.821768 C 312.760936 437.143428 305.025187 444.700865 295.470225 444.700865 C 285.923458 444.700865 278.179514 437.143428 278.179514 427.821768 C 278.179514 418.508314 285.923458 410.950877 295.470225 410.950877 C 305.025187 410.950877 312.760936 418.508314 312.760936 427.821768 Z M 312.760936 427.821768 " transform="matrix(0.476683,0,0,0.476042,-56.751872,-93.473561)"/> + <path style="fill-rule:evenodd;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:4;" d="M 460.248245 428.330521 C 460.248245 437.652181 452.504301 445.201412 442.94934 445.201412 C 433.402572 445.201412 425.658628 437.652181 425.658628 428.330521 C 425.658628 419.008861 433.402572 411.451424 442.94934 411.451424 C 452.504301 411.451424 460.248245 419.008861 460.248245 428.330521 Z M 460.248245 428.330521 " transform="matrix(0.476683,0,0,0.476042,-56.751872,-93.473561)"/> + <path style="fill-rule:evenodd;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:4;" d="M 385.496649 596.013721 C 385.496649 605.33538 377.752705 612.892817 368.197743 612.892817 C 358.650976 612.892817 350.907032 605.33538 350.907032 596.013721 C 350.907032 586.692061 358.650976 579.14283 368.197743 579.14283 C 377.752705 579.14283 385.496649 586.692061 385.496649 596.013721 Z M 385.496649 596.013721 " transform="matrix(0.476683,0,0,0.476042,-56.751872,-93.473561)"/> + <path style="fill-rule:evenodd;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:4;" d="M 275.770286 550.316254 C 275.770286 556.175114 271.132115 560.926206 265.420444 560.926206 C 259.700578 560.926206 255.062406 556.175114 255.062406 550.316254 C 255.062406 544.457394 259.700578 539.706301 265.420444 539.706301 C 271.132115 539.706301 275.770286 544.457394 275.770286 550.316254 Z M 275.770286 550.316254 " transform="matrix(0.476683,0,0,0.476042,-56.751872,-93.473561)"/> + <path style="fill-rule:evenodd;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:4;" d="M 480.849595 548.314066 C 480.849595 554.172926 476.219618 558.924019 470.499753 558.924019 C 464.779887 558.924019 460.141715 554.172926 460.141715 548.314066 C 460.141715 542.455206 464.779887 537.712319 470.499753 537.712319 C 476.219618 537.712319 480.849595 542.455206 480.849595 548.314066 Z M 480.849595 548.314066 " transform="matrix(0.476683,0,0,0.476042,-56.751872,-93.473561)"/> + <path style="fill:none;stroke-width:10;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:4;" d="M 314.154027 710.425605 C 314.154027 710.425605 305.861041 707.693111 301.780105 706.134031 C 262.322866 691.019157 224.053851 667.058553 198.494738 633.653204 C 168.141754 593.97871 145.967032 542.668554 147.483042 492.736953 C 149.17114 437.184456 174.254963 378.907672 213.646645 339.700903 C 253.480839 300.059233 312.515097 272.964056 368.705811 273.538454 C 426.871436 274.121058 487.479067 303.325096 527.804939 345.256153 C 564.820173 383.740822 586.609747 440.368263 587.912697 493.746252 C 589.100921 542.775228 569.327231 593.781774 539.424953 632.643904 C 512.398998 667.764242 470.278497 693.013139 429.313442 707.14333 C 426.773101 708.021339 421.741586 709.916852 421.741586 709.916852 L 421.233517 732.146057 C 421.069624 739.301415 414.243481 748.065088 407.089551 748.303053 C 367.296331 749.665197 366.821042 748.877451 332.337955 749.312352 C 324.708736 749.410821 314.850572 738.768045 314.662095 731.136757 Z M 314.154027 710.425605 " transform="matrix(0.476683,0,0,0.476042,-56.751872,-93.473561)"/> + <path style="fill:none;stroke-width:10;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:4;" d="M 315.71101 217.362326 L 415.710323 216.648431 " transform="matrix(0.476683,0,0,0.476042,-56.751872,-93.473561)"/> + <path style="fill-rule:evenodd;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:10;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:4;" d="M 315.71101 260.93452 L 314.998076 201.648437 C 314.998076 201.648437 308.540692 201.722288 305.713537 203.076226 C 302.222616 204.750186 298.256406 207.220098 297.141933 210.937274 C 290.709133 232.313086 283.571593 268.787362 283.571593 268.787362 " transform="matrix(0.476683,0,0,0.476042,-56.751872,-93.473561)"/> + <path style="fill-rule:evenodd;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:10;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:4;" d="M 415.808659 261.648415 L 416.521594 202.362331 C 416.521594 202.362331 422.987172 202.436183 425.806132 203.790121 C 429.305247 205.464081 433.263263 207.933992 434.377736 211.651168 C 440.818731 233.026981 447.948076 269.501257 447.948076 269.501257 " transform="matrix(0.476683,0,0,0.476042,-56.751872,-93.473561)"/> + <path style="fill:none;stroke-width:35;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:4;" d="M 303.189585 719.33698 C 303.189585 719.33698 289.168539 713.95405 285.103993 711.80416 C 245.532028 690.87966 213.867901 674.000563 190.390229 642.777927 C 158.857216 600.84687 135.035369 547.255533 136.633325 494.837608 C 138.411565 436.519796 164.847505 375.329993 206.361602 334.170271 C 248.334599 292.55103 310.556575 264.110121 369.771116 264.70093 C 431.075292 265.316357 494.936199 295.981006 537.441848 339.996308 C 576.448381 380.401107 599.40979 439.851305 600.778297 495.896142 C 602.040273 547.362207 583.553143 599.460109 549.67646 641.719393 C 524.289435 673.401548 491.961541 691.962811 450.816203 712.862694 C 448.292251 714.142781 433.738553 718.811816 433.738553 718.811816 L 433.205901 742.140582 C 433.033813 749.656991 435.942914 765.920661 428.403836 766.183243 C 386.471812 767.602827 360.716028 766.782258 324.372755 767.241777 C 316.333804 767.340245 305.041576 768.283899 304.738374 760.275149 Z M 303.189585 719.33698 " transform="matrix(0.476683,0,0,0.476042,-56.751872,-93.473561)"/> + <path style="fill:none;stroke-width:20;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:4;" d="M 334.976632 866.497758 C 334.976632 896.407485 311.408819 920.655288 282.334201 920.655288 C 253.267778 920.655288 229.69177 896.407485 229.69177 866.497758 C 229.69177 836.579826 253.267778 812.340229 282.334201 812.340229 C 311.408819 812.340229 334.976632 836.579826 334.976632 866.497758 Z M 334.976632 866.497758 " transform="matrix(0.476683,0,0,0.476042,-56.751872,-93.473561)"/> + <path style="fill:none;stroke-width:20;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:4;" d="M 507.719852 864.470954 C 507.719852 894.380681 484.143845 918.628484 455.077421 918.628484 C 426.002803 918.628484 402.43499 894.380681 402.43499 864.470954 C 402.43499 834.561227 426.002803 810.313424 455.077421 810.313424 C 484.143845 810.313424 507.719852 834.561227 507.719852 864.470954 Z M 507.719852 864.470954 " transform="matrix(0.476683,0,0,0.476042,-56.751872,-93.473561)"/> + <use xlink:href="#surface5" transform="matrix(1,0,0,1,0,0)" mask="url(#mask0)"/> + </g> +</svg> \ No newline at end of file diff --git a/assets/layers/charging_station/Type1_J1772.svg b/assets/layers/charging_station/Type1_J1772.svg index ef32f65c0f..b82ff6fad3 100644 --- a/assets/layers/charging_station/Type1_J1772.svg +++ b/assets/layers/charging_station/Type1_J1772.svg @@ -1,204 +1,21 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - xmlns="http://www.w3.org/2000/svg" - width="140.90894mm" - height="166.03593mm" - viewBox="0 0 499.28363 588.3163" - id="svg2" - version="1.1" - inkscape:version="0.92.5 (2060ec1f9f, 2020-04-08)" - sodipodi:docname="Type1_J1772.svg" - inkscape:export-filename="/Users/sss/Desktop/EV Plugs/type1.png" - inkscape:export-xdpi="600" - inkscape:export-ydpi="600"> - <defs - id="defs4"/> - <sodipodi:namedview - id="base" - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="0.0" - inkscape:pageshadow="2" - inkscape:zoom="0.98994949" - inkscape:cx="70.01646" - inkscape:cy="258.782" - inkscape:document-units="px" - inkscape:current-layer="layer1" - showgrid="true" - inkscape:snap-to-guides="false" - inkscape:snap-grids="false" - inkscape:window-width="1095" - inkscape:window-height="830" - inkscape:window-x="82" - inkscape:window-y="96" - inkscape:window-maximized="0"> - <inkscape:grid - type="xygrid" - id="grid4198" - originx="-119.05579" - originy="-267.45484"/> - </sodipodi:namedview> - <metadata - id="metadata7"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage"/> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Layer 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(-119.0558,-196.59103)"> - <ellipse - style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:9.56927681;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - id="path4200" - cx="367.85715" - cy="495.93365" - rx="160.95374" - ry="162.38231" - inkscape:export-xdpi="600" - inkscape:export-ydpi="600"/> - <ellipse - style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:9.94517899;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - id="ellipse4204" - cx="295" - cy="428.79077" - rx="61.111416" - ry="59.682846" - inkscape:export-xdpi="600" - inkscape:export-ydpi="600"/> - <ellipse - ry="59.682846" - rx="61.111416" - cy="430.21933" - cx="443.57144" - id="ellipse4206" - style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:9.94517899;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - inkscape:export-xdpi="600" - inkscape:export-ydpi="600"/> - <ellipse - style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:9.94517899;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - id="ellipse4208" - cx="367.85715" - cy="597.36218" - rx="61.111416" - ry="59.682846" - inkscape:export-xdpi="600" - inkscape:export-ydpi="600"/> - <ellipse - id="ellipse4210" - style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:9.87373066;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - ry="43.907356" - rx="44.073235" - cy="548.79071" - cx="265.16583" - inkscape:export-xdpi="600" - inkscape:export-ydpi="600"/> - <ellipse - ry="45.200142" - rx="45.200138" - style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:10.14530182;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - id="ellipse4212" - cx="470.14282" - cy="548.21924" - inkscape:export-xdpi="600" - inkscape:export-ydpi="600"/> - <ellipse - cx="295.47043" - cy="427.82495" - rx="17.293442" - ry="16.875025" - style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - id="ellipse4236" - inkscape:export-xdpi="600" - inkscape:export-ydpi="600"/> - <ellipse - id="ellipse4238" - style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - ry="16.875025" - rx="17.293442" - cy="428.33002" - cx="442.9527" - inkscape:export-xdpi="600" - inkscape:export-ydpi="600"/> - <ellipse - cx="368.20142" - cy="596.01532" - rx="17.293442" - ry="16.875025" - style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - id="ellipse4242" - inkscape:export-xdpi="600" - inkscape:export-ydpi="600"/> - <ellipse - style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" - id="path4244" - cx="265.41757" - cy="550.31641" - rx="10.354064" - ry="10.606602" - inkscape:export-xdpi="600" - inkscape:export-ydpi="600"/> - <ellipse - ry="10.606602" - rx="10.354064" - cy="548.31641" - cx="470.49884" - id="ellipse4246" - style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" - inkscape:export-xdpi="600" - inkscape:export-ydpi="600"/> - <path - style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:10;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - d="m 314.15744,710.42556 c 0,0 -8.29727,-2.7314 -12.37437,-4.29314 -39.46429,-15.1169 -77.72925,-39.07475 -103.2881,-72.47845 -30.35641,-39.67379 -52.52967,-90.98412 -51.0127,-140.91628 1.68766,-55.55061 26.77332,-113.83333 66.16499,-153.03811 39.83025,-39.64128 98.86627,-66.73242 155.05842,-66.16499 58.16955,0.5874 118.77282,29.79424 159.09902,71.72083 37.0167,38.48575 58.80289,95.10989 60.10408,148.49243 1.19495,49.0241 -18.5798,100.033 -48.48732,138.89597 -27.02603,35.11865 -69.14587,60.36619 -110.10663,74.49875 -2.5427,0.8773 -7.57614,2.77792 -7.57614,2.77792 l -0.50508,22.22336 c -0.16266,7.15687 -6.98759,15.91815 -14.14213,16.16244 -39.7949,1.3588 -40.27174,0.57428 -74.75129,1.01015 -7.63331,0.0965 -17.49154,-10.55111 -17.67768,-18.18274 z" - id="path4248" - inkscape:connector-curvature="0" - sodipodi:nodetypes="csaaaaaaascssssc" - inkscape:export-xdpi="600" - inkscape:export-ydpi="600"/> - <path - style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:10;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - d="m 315.71429,217.3622 100,-0.71428" - id="path4271" - inkscape:connector-curvature="0" - inkscape:export-xdpi="600" - inkscape:export-ydpi="600"/> - <path - style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:10;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - d="M 315.71429,260.93363 315,201.64792 c 0,0 -6.46215,0.074 -9.28571,1.42857 -3.49459,1.67645 -7.45418,4.14575 -8.57143,7.85714 -6.43638,21.38096 -13.57143,57.85715 -13.57143,57.85715" - id="path4273" - inkscape:connector-curvature="0" - sodipodi:nodetypes="ccasc" - inkscape:export-xdpi="600" - inkscape:export-ydpi="600"/> - <path - sodipodi:nodetypes="ccasc" - inkscape:connector-curvature="0" - id="path4275" - d="m 415.80692,261.64792 0.71429,-59.28571 c 0,0 6.46215,0.074 9.28571,1.42857 3.49459,1.67645 7.45418,4.14575 8.57143,7.85714 6.43638,21.38096 13.57143,57.85715 13.57143,57.85715" - style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:10;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - inkscape:export-xdpi="600" - inkscape:export-ydpi="600"/> - <path - inkscape:export-ydpi="600" - inkscape:export-xdpi="600" - sodipodi:nodetypes="cssaaaaasscssssc" - inkscape:connector-curvature="0" - id="path4162" - d="m 303.19364,719.33863 c 0,0 -14.02596,-5.38809 -18.09154,-7.53768 -39.56925,-20.92145 -71.23025,-37.80068 -94.70835,-69.02148 -31.53528,-41.93512 -55.35856,-95.521 -53.75989,-147.94299 1.77855,-58.32061 28.21516,-119.50957 69.72818,-160.66928 41.97524,-41.61797 104.19053,-70.05998 163.4088,-69.46426 61.30216,0.61669 125.1691,31.27991 167.667,75.29715 39.01016,40.40482 61.96959,99.85249 63.34086,155.89691 1.2593,51.46867 -17.22512,103.56252 -51.0985,145.82194 -25.39274,31.67922 -57.71731,50.24435 -98.86363,71.14254 -2.52632,1.28312 -17.07551,5.94689 -17.07551,5.94689 l -0.53228,23.33152 c -0.17142,7.51375 2.73764,23.78297 -4.8022,24.03944 -41.93798,1.42656 -67.69432,0.60292 -104.03069,1.06052 -8.04439,0.10131 -19.33806,1.04132 -19.63984,-6.96758 z" - style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:35;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/> - </g> -</svg> +<?xml version="1.0" encoding="UTF-8" standalone="yes"?> +<svg xmlns="http://www.w3.org/2000/svg" width="316px" height="372px" viewBox="0 0 316 372" version="1.1"> + <g id="surface1"> + <path style="fill-rule:evenodd;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:9.569277;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:4;" d="M 528.809562 495.932438 C 528.809562 585.61708 456.752397 658.318662 367.858235 658.318662 C 278.964073 658.318662 206.900737 585.61708 206.900737 495.932438 C 206.900737 406.253974 278.964073 333.552392 367.858235 333.552392 C 456.752397 333.552392 528.809562 406.253974 528.809562 495.932438 Z M 528.809562 495.932438 " transform="matrix(0.632907,0,0,0.632294,-75.351225,-124.297596)"/> + <path style="fill-rule:evenodd;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:9.945179;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:4;" d="M 356.113072 428.79097 C 356.113072 461.750091 328.752951 488.475707 294.998721 488.475707 C 261.250663 488.475707 233.890543 461.750091 233.890543 428.79097 C 233.890543 395.831849 261.250663 369.106233 294.998721 369.106233 C 328.752951 369.106233 356.113072 395.831849 356.113072 428.79097 Z M 356.113072 428.79097 " transform="matrix(0.632907,0,0,0.632294,-75.351225,-124.297596)"/> + <path style="fill-rule:evenodd;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:9.945179;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:4;" d="M 504.683527 430.218066 C 504.683527 463.183365 477.323406 489.902803 443.569177 489.902803 C 409.821119 489.902803 382.460998 463.183365 382.460998 430.218066 C 382.460998 397.258945 409.821119 370.539507 443.569177 370.539507 C 477.323406 370.539507 504.683527 397.258945 504.683527 430.218066 Z M 504.683527 430.218066 " transform="matrix(0.632907,0,0,0.632294,-75.351225,-124.297596)"/> + <path style="fill-rule:evenodd;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:9.945179;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:4;" d="M 428.966414 597.361277 C 428.966414 630.326576 401.606293 657.046014 367.858235 657.046014 C 334.104006 657.046014 306.743885 630.326576 306.743885 597.361277 C 306.743885 564.402156 334.104006 537.67654 367.858235 537.67654 C 401.606293 537.67654 428.966414 564.402156 428.966414 597.361277 Z M 428.966414 597.361277 " transform="matrix(0.632907,0,0,0.632294,-75.351225,-124.297596)"/> + <path style="fill-rule:evenodd;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:9.873731;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:4;" d="M 309.23734 548.79059 C 309.23734 573.038866 289.505713 592.696959 265.163661 592.696959 C 240.827781 592.696959 221.089981 573.038866 221.089981 548.79059 C 221.089981 524.542315 240.827781 504.884222 265.163661 504.884222 C 289.505713 504.884222 309.23734 524.542315 309.23734 548.79059 Z M 309.23734 548.79059 " transform="matrix(0.632907,0,0,0.632294,-75.351225,-124.297596)"/> + <path style="fill-rule:evenodd;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:10.145302;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:4;" d="M 515.342433 548.222223 C 515.342433 573.180958 495.104708 593.419774 470.145464 593.419774 C 445.180048 593.419774 424.942322 573.180958 424.942322 548.222223 C 424.942322 523.25731 445.180048 503.018495 470.145464 503.018495 C 495.104708 503.018495 515.342433 523.25731 515.342433 548.222223 Z M 515.342433 548.222223 " transform="matrix(0.632907,0,0,0.632294,-75.351225,-124.297596)"/> + <path style="fill-rule:evenodd;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:4;" d="M 312.761507 427.827217 C 312.761507 437.143497 305.021919 444.699075 295.467787 444.699075 C 285.919827 444.699075 278.174068 437.143497 278.174068 427.827217 C 278.174068 418.504759 285.919827 410.949181 295.467787 410.949181 C 305.021919 410.949181 312.761507 418.504759 312.761507 427.827217 Z M 312.761507 427.827217 " transform="matrix(0.632907,0,0,0.632294,-75.351225,-124.297596)"/> + <path style="fill-rule:evenodd;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:4;" d="M 460.245704 428.327627 C 460.245704 437.650085 452.506117 445.205663 442.951985 445.205663 C 433.404025 445.205663 425.658265 437.650085 425.658265 428.327627 C 425.658265 419.011347 433.404025 411.45577 442.951985 411.45577 C 452.506117 411.45577 460.245704 419.011347 460.245704 428.327627 Z M 460.245704 428.327627 " transform="matrix(0.632907,0,0,0.632294,-75.351225,-124.297596)"/> + <path style="fill-rule:evenodd;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:4;" d="M 385.497582 596.014494 C 385.497582 605.336952 377.751823 612.892529 368.203863 612.892529 C 358.649731 612.892529 350.910143 605.336952 350.910143 596.014494 C 350.910143 586.698213 358.649731 579.142636 368.203863 579.142636 C 377.751823 579.142636 385.497582 586.698213 385.497582 596.014494 Z M 385.497582 596.014494 " transform="matrix(0.632907,0,0,0.632294,-75.351225,-124.297596)"/> + <path style="fill-rule:evenodd;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:4;" d="M 275.773191 550.316533 C 275.773191 556.173187 271.138079 560.923995 265.416709 560.923995 C 259.701512 560.923995 255.0664 556.173187 255.0664 550.316533 C 255.0664 544.459879 259.701512 539.709071 265.416709 539.709071 C 271.138079 539.709071 275.773191 544.459879 275.773191 550.316533 Z M 275.773191 550.316533 " transform="matrix(0.632907,0,0,0.632294,-75.351225,-124.297596)"/> + <path style="fill-rule:evenodd;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:4;" d="M 480.853745 548.314892 C 480.853745 554.171545 476.218633 558.922354 470.497263 558.922354 C 464.782065 558.922354 460.146953 554.171545 460.146953 548.314892 C 460.146953 542.458238 464.782065 537.707429 470.497263 537.707429 C 476.218633 537.707429 480.853745 542.458238 480.853745 548.314892 Z M 480.853745 548.314892 " transform="matrix(0.632907,0,0,0.632294,-75.351225,-124.297596)"/> + <path style="fill:none;stroke-width:10;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:4;" d="M 314.156361 710.42311 C 314.156361 710.42311 305.8613 707.692476 301.781661 706.129467 C 262.318406 691.018312 224.052502 667.060397 198.494582 633.656467 C 168.14108 593.981963 145.965372 542.668287 147.483664 492.738461 C 149.168598 437.186743 174.257453 378.90439 213.646645 339.699407 C 253.480216 300.055793 312.51463 272.965681 368.703788 273.534048 C 426.874133 274.120949 487.476215 303.330082 527.803539 345.253343 C 564.822715 383.741689 586.609592 440.368363 587.905695 493.74546 C 589.103047 542.773311 569.328216 593.778092 539.419092 632.643291 C 512.398427 667.764679 470.275074 693.007597 429.312042 707.142643 C 426.769211 708.019905 421.739096 709.9227 421.739096 709.9227 L 421.232999 732.144623 C 421.072529 739.298637 414.246385 748.065084 407.09313 748.306022 C 367.296591 749.665161 366.821353 748.880567 332.338837 749.319198 C 324.704172 749.411867 314.847616 738.767337 314.662458 731.131447 Z M 314.156361 710.42311 " transform="matrix(0.632907,0,0,0.632294,-75.351225,-124.297596)"/> + <path style="fill:none;stroke-width:10;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:4;" d="M 315.711684 217.364538 L 415.715302 216.647902 " transform="matrix(0.632907,0,0,0.632294,-75.351225,-124.297596)"/> + <path style="fill-rule:evenodd;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:10;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:4;" d="M 315.711684 260.931122 L 315.001914 201.647949 C 315.001914 201.647949 308.539914 201.722084 305.713174 203.075045 C 302.219868 204.755435 298.257495 207.220419 297.140378 210.93334 C 290.709237 232.315068 283.574498 268.789417 283.574498 268.789417 " transform="matrix(0.632907,0,0,0.632294,-75.351225,-124.297596)"/> + <path style="fill-rule:evenodd;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:10;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:4;" d="M 415.807881 261.647759 L 416.523824 202.364586 C 416.523824 202.364586 422.985824 202.438721 425.806391 203.791682 C 429.299698 205.465894 433.26207 207.937056 434.379188 211.649977 C 440.8165 233.031705 447.95124 269.506054 447.95124 269.506054 " transform="matrix(0.632907,0,0,0.632294,-75.351225,-124.297596)"/> + <path style="fill:none;stroke-width:35;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:4;" d="M 303.195031 719.337827 C 303.195031 719.337827 289.166257 713.950694 285.105134 711.800783 C 245.530784 690.882398 213.868835 673.998184 190.390851 642.781232 C 158.858513 600.845615 135.034902 547.25847 136.633429 494.838949 C 138.410942 436.513351 164.851447 375.327383 206.36378 334.170182 C 248.339007 292.549638 310.551959 264.106565 369.771531 264.705822 C 431.071039 265.317435 494.938066 295.984553 537.437906 340.002124 C 576.450612 380.405621 599.410153 439.855597 600.78032 495.895371 C 602.039391 547.363494 583.554491 599.461765 549.682995 641.718633 C 524.285545 673.398928 491.9632 691.963531 450.815011 712.863383 C 448.290695 714.142209 433.74348 718.806527 433.74348 718.806527 L 433.206523 742.140473 C 433.039881 749.652805 435.946856 765.925406 428.404769 766.1787 C 386.466574 767.605796 360.711152 766.784135 324.37706 767.2413 C 316.328876 767.340146 305.040435 768.279188 304.738011 760.272623 Z M 303.195031 719.337827 " transform="matrix(0.632907,0,0,0.632294,-75.351225,-124.297596)"/> + </g> +</svg> \ No newline at end of file diff --git a/assets/layers/charging_station/Type2_CCS.svg b/assets/layers/charging_station/Type2_CCS.svg index 7ab682d2b4..6fac6d0b1e 100644 --- a/assets/layers/charging_station/Type2_CCS.svg +++ b/assets/layers/charging_station/Type2_CCS.svg @@ -1,144 +1,17 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - xmlns="http://www.w3.org/2000/svg" - version="1.1" - id="svg2" - viewBox="0 0 479.99998 479.99998" - height="512" - width="512" - inkscape:version="0.92.4 (5da689c313, 2019-01-14)" - sodipodi:docname="Type2_CCS.svg" - inkscape:export-filename="/Users/sss/Desktop/Plug/combo-ccs-eu.png" - inkscape:export-xdpi="600" - inkscape:export-ydpi="600"> - <sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1588" - inkscape:window-height="862" - id="namedview18" - showgrid="true" - inkscape:zoom="0.50645487" - inkscape:cx="-336.156" - inkscape:cy="175.04524" - inkscape:window-x="545" - inkscape:window-y="71" - inkscape:window-maximized="0" - inkscape:current-layer="layer1" - units="px"> - <inkscape:grid - type="xygrid" - id="grid4146"/> - </sodipodi:namedview> - <defs - id="defs4"/> - <metadata - id="metadata7"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage"/> - <dc:title></dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <g - id="layer1" - transform="translate(0,-572.3623)"> - <ellipse - ry="25.405434" - rx="26.01803" - cy="784.30536" - cx="294.6178" - id="ellipse4206" - style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:17.87519264;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/> - <ellipse - style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:17.87519264;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="ellipse4208" - cx="211.30386" - cy="784.30536" - rx="26.01803" - ry="25.405434"/> - <ellipse - ry="25.405434" - rx="26.01803" - cy="715.69385" - cx="172.09726" - id="ellipse4210" - style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:17.87519264;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/> - <ellipse - style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:17.87519264;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="ellipse4212" - cx="252.96086" - cy="715.69385" - rx="26.01803" - ry="25.405434"/> - <ellipse - ry="25.405434" - rx="26.01803" - cy="715.69385" - cx="332.59918" - id="ellipse4214" - style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:17.87519264;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/> - <ellipse - style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:17.87519264;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="ellipse4216" - cx="294.00519" - cy="659.94702" - rx="18.99448" - ry="19.60709"/> - <ellipse - ry="19.60709" - rx="18.99448" - cy="659.94702" - cx="214.36687" - id="ellipse4218" - style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:17.87519264;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/> - <path - id="path4231" - d="m 170.872,602.3623 h 166.62799 c 0,0 17.47217,11.81438 24.83307,19.93225 7.36094,8.11789 14.37279,19.03261 19.27416,27.85052 4.90134,8.81791 8.87216,16.71607 12.25223,26.95479 3.38006,10.2387 6.47778,20.90654 7.35124,34.30575 0.87345,13.3992 -0.39632,31.73339 -3.67562,45.33259 -3.2793,13.59923 -9.37082,25.97493 -14.70245,35.531 -5.33165,9.55607 -9.23696,14.3983 -15.9277,22.0537 -6.69072,7.65533 -15.48267,16.28912 -24.50411,23.27887 -9.02144,6.98974 -18.51455,13.38674 -29.40493,18.37812 -10.89037,4.99137 -35.53097,11.02681 -35.53097,11.02681 0,0 -33.36559,4.47525 -60.03509,-4.90075 -10.6006,-3.72682 -17.54705,-4.99721 -29.40494,-11.02691 -14.85446,-7.55335 -29.16138,-17.12948 -40.43179,-29.40491 -15.48969,-16.87101 -27.90375,-37.21391 -35.53096,-58.80986 -6.03962,-17.10081 -8.01754,-35.78533 -7.35123,-53.90908 0.50616,-13.76782 3.72625,-27.53661 8.57643,-40.43178 4.11963,-10.95285 11.11006,-21.48823 17.15289,-30.63015 5.9113,-8.94293 16.32005,-18.74683 23.2789,-24.50411 6.95885,-5.75726 17.15288,-11.02685 17.15288,-11.02685 z" - style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:31.08729172;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - inkscape:connector-curvature="0" - sodipodi:nodetypes="ccscccccccccssssssssc"/> - <ellipse - ry="41.485447" - rx="40.872837" - cy="963.1853" - cx="185.57449" - id="path4151" - style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:17.87519264;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/> - <ellipse - style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:17.87519264;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="ellipse4204" - cx="319.12195" - cy="961.96027" - rx="40.872837" - ry="41.485447"/> - <rect - ry="74.562355" - y="889.23578" - x="101.21027" - height="149.12471" - width="302.27545" - id="rect4235" - style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:23.66584206;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/> - <path - id="path4237" - d="m 190.4751,873.13268 124.97101,1.22522" - style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:17.87519264;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - inkscape:connector-curvature="0"/> - </g> -</svg> +<?xml version="1.0" encoding="UTF-8" standalone="yes"?> +<svg xmlns="http://www.w3.org/2000/svg" width="375px" height="375px" viewBox="0 0 375 375" version="1.1"> + <g id="surface1"> + <path style="fill:none;stroke-width:17.875193;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:4;" d="M 320.63498 784.307291 C 320.63498 798.33729 308.98498 809.71229 294.619981 809.71229 C 280.249982 809.71229 268.599983 798.33729 268.599983 784.307291 C 268.599983 770.272292 280.249982 758.902293 294.619981 758.902293 C 308.98498 758.902293 320.63498 770.272292 320.63498 784.307291 Z M 320.63498 784.307291 " transform="matrix(0.78125,0,0,0.78125,0,-447.158079)"/> + <path style="fill:none;stroke-width:17.875193;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:4;" d="M 237.319985 784.307291 C 237.319985 798.33729 225.674986 809.71229 211.304987 809.71229 C 196.934987 809.71229 185.284988 798.33729 185.284988 784.307291 C 185.284988 770.272292 196.934987 758.902293 211.304987 758.902293 C 225.674986 758.902293 237.319985 770.272292 237.319985 784.307291 Z M 237.319985 784.307291 " transform="matrix(0.78125,0,0,0.78125,0,-447.158079)"/> + <path style="fill:none;stroke-width:17.875193;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:4;" d="M 198.114987 715.692296 C 198.114987 729.727295 186.464988 741.097294 172.094989 741.097294 C 157.72999 741.097294 146.079991 729.727295 146.079991 715.692296 C 146.079991 701.662296 157.72999 690.287297 172.094989 690.287297 C 186.464988 690.287297 198.114987 701.662296 198.114987 715.692296 Z M 198.114987 715.692296 " transform="matrix(0.78125,0,0,0.78125,0,-447.158079)"/> + <path style="fill:none;stroke-width:17.875193;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:4;" d="M 278.979982 715.692296 C 278.979982 729.727295 267.329983 741.097294 252.959984 741.097294 C 238.589985 741.097294 226.944986 729.727295 226.944986 715.692296 C 226.944986 701.662296 238.589985 690.287297 252.959984 690.287297 C 267.329983 690.287297 278.979982 701.662296 278.979982 715.692296 Z M 278.979982 715.692296 " transform="matrix(0.78125,0,0,0.78125,0,-447.158079)"/> + <path style="fill:none;stroke-width:17.875193;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:4;" d="M 358.614977 715.692296 C 358.614977 729.727295 346.969978 741.097294 332.599979 741.097294 C 318.22998 741.097294 306.579981 729.727295 306.579981 715.692296 C 306.579981 701.662296 318.22998 690.287297 332.599979 690.287297 C 346.969978 690.287297 358.614977 701.662296 358.614977 715.692296 Z M 358.614977 715.692296 " transform="matrix(0.78125,0,0,0.78125,0,-447.158079)"/> + <path style="fill:none;stroke-width:17.875193;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:4;" d="M 312.99998 659.947299 C 312.99998 670.777298 304.494981 679.552298 294.004981 679.552298 C 283.514982 679.552298 275.009983 670.777298 275.009983 659.947299 C 275.009983 649.1173 283.514982 640.3423 294.004981 640.3423 C 304.494981 640.3423 312.99998 649.1173 312.99998 659.947299 Z M 312.99998 659.947299 " transform="matrix(0.78125,0,0,0.78125,0,-447.158079)"/> + <path style="fill:none;stroke-width:17.875193;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:4;" d="M 233.359985 659.947299 C 233.359985 670.777298 224.854986 679.552298 214.364986 679.552298 C 203.874987 679.552298 195.369988 670.777298 195.369988 659.947299 C 195.369988 649.1173 203.874987 640.3423 214.364986 640.3423 C 224.854986 640.3423 233.359985 649.1173 233.359985 659.947299 Z M 233.359985 659.947299 " transform="matrix(0.78125,0,0,0.78125,0,-447.158079)"/> + <path style="fill:none;stroke-width:31.087292;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:4;" d="M 170.869989 602.362303 L 337.499979 602.362303 C 337.499979 602.362303 354.969977 614.177302 362.334977 622.292302 C 369.694976 630.412301 376.704976 641.3273 381.604976 650.1473 C 386.509975 658.962299 390.479975 666.862299 393.859975 677.102298 C 397.239975 687.337297 400.334975 698.007297 401.209974 711.407296 C 402.084974 724.807295 400.814975 743.137294 397.534975 756.737293 C 394.254975 770.337292 388.164975 782.712291 382.834976 792.267291 C 377.499976 801.82729 373.594976 806.66729 366.904977 814.322289 C 360.214977 821.977289 351.419978 830.612288 342.399978 837.602288 C 333.379979 844.592287 323.884979 850.987287 312.99498 855.982287 C 302.104981 860.972286 277.464982 867.007286 277.464982 867.007286 C 277.464982 867.007286 244.099984 871.482286 217.429986 862.107286 C 206.829987 858.377287 199.884987 857.107287 188.024988 851.077287 C 173.169989 843.527287 158.86499 833.947288 147.594991 821.672289 C 132.104992 804.80229 119.689992 784.462291 112.059993 762.862293 C 106.024993 745.762294 104.044993 727.077295 104.709993 708.957296 C 105.214993 695.187297 108.434993 681.417298 113.284993 668.522299 C 117.404993 657.572299 124.394992 647.0373 130.439992 637.892301 C 136.349991 628.952301 146.759991 619.147302 153.71999 613.387302 C 160.67999 607.632302 170.869989 602.362303 170.869989 602.362303 Z M 170.869989 602.362303 " transform="matrix(0.78125,0,0,0.78125,0,-447.158079)"/> + <path style="fill:none;stroke-width:17.875193;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:4;" d="M 226.444986 963.18728 C 226.444986 986.097278 208.149987 1004.672277 185.574988 1004.672277 C 162.99999 1004.672277 144.699991 986.097278 144.699991 963.18728 C 144.699991 940.272281 162.99999 921.702282 185.574988 921.702282 C 208.149987 921.702282 226.444986 940.272281 226.444986 963.18728 Z M 226.444986 963.18728 " transform="matrix(0.78125,0,0,0.78125,0,-447.158079)"/> + <path style="fill:none;stroke-width:17.875193;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:4;" d="M 359.994977 961.96228 C 359.994977 984.872278 341.694978 1003.447277 319.11998 1003.447277 C 296.549981 1003.447277 278.249982 984.872278 278.249982 961.96228 C 278.249982 939.047281 296.549981 920.477283 319.11998 920.477283 C 341.694978 920.477283 359.994977 939.047281 359.994977 961.96228 Z M 359.994977 961.96228 " transform="matrix(0.78125,0,0,0.78125,0,-447.158079)"/> + <path style="fill:none;stroke-width:23.665842;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:4;" d="M 175.774989 889.237285 L 328.924979 889.237285 C 370.104976 889.237285 403.484974 922.617282 403.484974 963.79728 C 403.484974 1004.977277 370.104976 1038.362275 328.924979 1038.362275 L 175.774989 1038.362275 C 134.594991 1038.362275 101.209994 1004.977277 101.209994 963.79728 C 101.209994 922.617282 134.594991 889.237285 175.774989 889.237285 Z M 175.774989 889.237285 " transform="matrix(0.78125,0,0,0.78125,0,-447.158079)"/> + <path style="fill:none;stroke-width:17.875193;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:4;" d="M 190.474988 873.132286 L 315.44498 874.357285 " transform="matrix(0.78125,0,0,0.78125,0,-447.158079)"/> + </g> +</svg> \ No newline at end of file diff --git a/assets/layers/charging_station/Type2_socket.svg b/assets/layers/charging_station/Type2_socket.svg index cfe7ad7dcb..bf583a767d 100644 --- a/assets/layers/charging_station/Type2_socket.svg +++ b/assets/layers/charging_station/Type2_socket.svg @@ -1,117 +1,13 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - xmlns="http://www.w3.org/2000/svg" - version="1.1" - id="svg2" - viewBox="0 0 479.99999 480.00001" - height="512" - width="512" - inkscape:version="0.92.4 (5da689c313, 2019-01-14)" - sodipodi:docname="Type2_socket.svg" - inkscape:export-filename="/Users/sss/Desktop/EV Plugs/type 2 mennekes.png" - inkscape:export-xdpi="600" - inkscape:export-ydpi="600"> - <sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1024" - inkscape:window-height="879" - id="namedview18" - showgrid="true" - inkscape:zoom="0.89702955" - inkscape:cx="228.55513" - inkscape:cy="364.00907" - inkscape:window-x="68" - inkscape:window-y="64" - inkscape:window-maximized="0" - inkscape:current-layer="layer1" - units="px"> - <inkscape:grid - type="xygrid" - id="grid4146"/> - </sodipodi:namedview> - <defs - id="defs4"/> - <metadata - id="metadata7"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage"/> - <dc:title></dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <g - id="layer1" - transform="translate(0,-572.36211)"> - <ellipse - ry="34.489124" - rx="35.320755" - cy="883.84094" - cx="295.16092" - id="ellipse4206" - style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:24.26645279;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/> - <ellipse - style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:24.26645279;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="ellipse4208" - cx="182.05814" - cy="883.84094" - rx="35.320755" - ry="34.489124"/> - <ellipse - ry="34.489124" - rx="35.320755" - cy="790.69739" - cx="128.83327" - id="ellipse4210" - style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:24.26645279;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/> - <ellipse - style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:24.26645279;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="ellipse4212" - cx="238.60956" - cy="790.69739" - rx="35.320755" - ry="34.489124"/> - <ellipse - ry="34.489124" - rx="35.320755" - cy="790.69739" - cx="346.72253" - id="ellipse4214" - style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:24.26645279;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/> - <ellipse - style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:24.26645279;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="ellipse4216" - cx="294.32932" - cy="715.01825" - rx="25.78594" - ry="26.61759"/> - <ellipse - ry="26.61759" - rx="25.78594" - cy="715.01825" - cx="186.21634" - id="ellipse4218" - style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:24.26645279;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/> - <path - id="path4231" - d="m 127.16991,636.84429 h 226.20567 c 0,0 23.71933,16.03862 33.71212,27.05902 9.99281,11.02041 19.51177,25.8377 26.16559,37.80844 6.65382,11.97074 12.04441,22.69288 16.63302,36.59244 4.58861,13.89956 8.79391,28.38165 9.97966,46.57174 1.18576,18.1901 -0.538,43.07964 -4.98982,61.54125 -4.45182,18.4616 -12.72136,35.26222 -19.95932,48.23504 -7.23795,12.97282 -12.5396,19.54645 -21.62261,29.93898 -9.08301,10.39253 -21.01848,22.11331 -33.26554,31.60226 -12.24706,9.48893 -25.13442,18.17309 -39.91864,24.94915 -14.78421,6.77606 -48.23504,14.9695 -48.23504,14.9695 0,0 -45.29542,6.07529 -81.50057,-6.6531 -14.39083,-5.05929 -23.82097,-6.78394 -39.91864,-14.9695 C 130.29012,964.2354 110.86777,951.23541 95.567644,934.57086 74.539633,911.66765 57.68693,884.05119 47.332613,854.73357 39.133538,831.5184 36.448423,806.15326 37.35296,781.54938 c 0.687142,-18.6905 5.058575,-37.38232 11.642929,-54.88813 5.592605,-14.86904 15.082455,-29.17133 23.285888,-41.58193 8.024885,-12.14047 22.155272,-25.44975 31.602253,-33.26553 9.44699,-7.81578 23.28588,-14.9695 23.28588,-14.9695 z" - style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:42.20252609;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - inkscape:connector-curvature="0" - sodipodi:nodetypes="ccscccccccccssssssssc"/> - </g> -</svg> +<?xml version="1.0" encoding="UTF-8" standalone="yes"?> +<svg xmlns="http://www.w3.org/2000/svg" width="375px" height="375px" viewBox="0 0 375 375" version="1.1"> + <g id="surface1"> + <path style="fill:none;stroke-width:24.266453;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:4;" d="M 330.48 883.842122 C 330.48 902.887122 314.67 918.332122 295.16 918.332122 C 275.655 918.332122 259.84 902.887122 259.84 883.842122 C 259.84 864.792122 275.655 849.352122 295.16 849.352122 C 314.67 849.352122 330.48 864.792122 330.48 883.842122 Z M 330.48 883.842122 " transform="matrix(0.78125,0,0,0.78125,0,-447.157907)"/> + <path style="fill:none;stroke-width:24.266453;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:4;" d="M 217.38 883.842122 C 217.38 902.887122 201.565 918.332122 182.06 918.332122 C 162.55 918.332122 146.735 902.887122 146.735 883.842122 C 146.735 864.792122 162.55 849.352122 182.06 849.352122 C 201.565 849.352122 217.38 864.792122 217.38 883.842122 Z M 217.38 883.842122 " transform="matrix(0.78125,0,0,0.78125,0,-447.157907)"/> + <path style="fill:none;stroke-width:24.266453;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:4;" d="M 164.155 790.697122 C 164.155 809.747122 148.34 825.187122 128.835 825.187122 C 109.325 825.187122 93.515 809.747122 93.515 790.697122 C 93.515 771.647122 109.325 756.207122 128.835 756.207122 C 148.34 756.207122 164.155 771.647122 164.155 790.697122 Z M 164.155 790.697122 " transform="matrix(0.78125,0,0,0.78125,0,-447.157907)"/> + <path style="fill:none;stroke-width:24.266453;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:4;" d="M 273.93 790.697122 C 273.93 809.747122 258.115 825.187122 238.61 825.187122 C 219.1 825.187122 203.29 809.747122 203.29 790.697122 C 203.29 771.647122 219.1 756.207122 238.61 756.207122 C 258.115 756.207122 273.93 771.647122 273.93 790.697122 Z M 273.93 790.697122 " transform="matrix(0.78125,0,0,0.78125,0,-447.157907)"/> + <path style="fill:none;stroke-width:24.266453;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:4;" d="M 382.045 790.697122 C 382.045 809.747122 366.23 825.187122 346.725 825.187122 C 327.215 825.187122 311.4 809.747122 311.4 790.697122 C 311.4 771.647122 327.215 756.207122 346.725 756.207122 C 366.23 756.207122 382.045 771.647122 382.045 790.697122 Z M 382.045 790.697122 " transform="matrix(0.78125,0,0,0.78125,0,-447.157907)"/> + <path style="fill:none;stroke-width:24.266453;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:4;" d="M 320.115 715.017122 C 320.115 729.717122 308.57 741.637122 294.33 741.637122 C 280.09 741.637122 268.545 729.717122 268.545 715.017122 C 268.545 700.317122 280.09 688.402122 294.33 688.402122 C 308.57 688.402122 320.115 700.317122 320.115 715.017122 Z M 320.115 715.017122 " transform="matrix(0.78125,0,0,0.78125,0,-447.157907)"/> + <path style="fill:none;stroke-width:24.266453;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:4;" d="M 212 715.017122 C 212 729.717122 200.46 741.637122 186.215 741.637122 C 171.975 741.637122 160.43 729.717122 160.43 715.017122 C 160.43 700.317122 171.975 688.402122 186.215 688.402122 C 200.46 688.402122 212 700.317122 212 715.017122 Z M 212 715.017122 " transform="matrix(0.78125,0,0,0.78125,0,-447.157907)"/> + <path style="fill:none;stroke-width:42.202526;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:4;" d="M 127.17 636.842122 L 353.375 636.842122 C 353.375 636.842122 377.095 652.882122 387.09 663.902122 C 397.08 674.922122 406.6 689.742122 413.255 701.712122 C 419.905 713.682122 425.3 724.407122 429.885 738.302122 C 434.475 752.202122 438.68 766.687122 439.865 784.877122 C 441.05 803.067122 439.33 827.957122 434.875 846.417122 C 430.425 864.877122 422.155 881.677122 414.915 894.652122 C 407.68 907.627122 402.375 914.197122 393.295 924.592122 C 384.21 934.982122 372.275 946.702122 360.03 956.192122 C 347.78 965.682122 334.895 974.367122 320.11 981.142122 C 305.325 987.917122 271.875 996.112122 271.875 996.112122 C 271.875 996.112122 226.58 1002.187122 190.375 989.457122 C 175.985 984.402122 166.555 982.677122 150.455 974.487122 C 130.29 964.237122 110.87 951.237122 95.57 934.572122 C 74.54 911.667122 57.685 884.052122 47.335 854.732122 C 39.135 831.517122 36.45 806.152122 37.355 781.547122 C 38.04 762.857122 42.41 744.167122 48.995 726.662122 C 54.59 711.792122 64.08 697.492122 72.28 685.077122 C 80.305 672.937122 94.435 659.627122 103.885 651.812122 C 113.33 643.997122 127.17 636.842122 127.17 636.842122 Z M 127.17 636.842122 " transform="matrix(0.78125,0,0,0.78125,0,-447.157907)"/> + </g> +</svg> \ No newline at end of file diff --git a/assets/layers/charging_station/Type2_tethered.svg b/assets/layers/charging_station/Type2_tethered.svg index d56c646aa1..bec4ba77b6 100644 --- a/assets/layers/charging_station/Type2_tethered.svg +++ b/assets/layers/charging_station/Type2_tethered.svg @@ -1,128 +1,15 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - xmlns="http://www.w3.org/2000/svg" - width="512" - height="512" - viewBox="0 0 135.46666 135.46667" - version="1.1" - id="svg8" - inkscape:version="0.92.4 (5da689c313, 2019-01-14)" - sodipodi:docname="Type2_tethered.svg"> - <defs - id="defs2"/> - <sodipodi:namedview - id="base" - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="0.0" - inkscape:pageshadow="2" - inkscape:zoom="0.35" - inkscape:cx="-528.57143" - inkscape:cy="674.28571" - inkscape:document-units="mm" - inkscape:current-layer="layer1" - showgrid="false" - inkscape:window-width="1920" - inkscape:window-height="1017" - inkscape:window-x="1912" - inkscape:window-y="-8" - inkscape:window-maximized="1" - units="px"/> - <metadata - id="metadata5"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage"/> - <dc:title></dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Layer 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(0,-161.53332)"> - <path - style="fill:#000000;stroke:#000000;stroke-width:0.18411405px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" - d="m 63.116159,171.4096 c 0,0 -21.284336,1.3788 -31.313385,8.87138 -4.876273,3.643 -7.784469,19.80035 -8.942683,25.77597 -3.506538,18.09141 7.038667,18.30482 22.093688,28.93221 15.129067,10.67965 72.155471,6.83253 42.083216,1.57811 C 13.036007,223.63735 63.116159,171.4096 63.116159,171.4096 Z" - id="path838" - inkscape:connector-curvature="0" - sodipodi:nodetypes="cssssc"/> - <g - id="layer1-5" - transform="matrix(0.19638834,0,0,0.19638834,11.412892,106.2242)"> - <ellipse - style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:23;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="ellipse4206" - cx="422.49423" - cy="566.02692" - rx="33.477383" - ry="32.689156"/> - <ellipse - ry="32.689156" - rx="33.477383" - cy="566.02692" - cx="315.29419" - id="ellipse4208" - style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:23;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/> - <ellipse - style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:23;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="ellipse4210" - cx="264.84711" - cy="477.74448" - rx="33.477383" - ry="32.689156"/> - <ellipse - ry="32.689156" - rx="33.477383" - cy="477.74448" - cx="368.89423" - id="ellipse4212" - style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:23;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/> - <ellipse - style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:23;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="ellipse4214" - cx="471.36487" - cy="477.74448" - rx="33.477383" - ry="32.689156"/> - <ellipse - ry="25.228432" - rx="24.440186" - cy="406.01505" - cx="421.70602" - id="ellipse4216" - style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:23;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"/> - <ellipse - style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:23;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - id="ellipse4218" - cx="319.23538" - cy="406.01505" - rx="24.440186" - ry="25.228432"/> - <path - sodipodi:nodetypes="ccscccccccccssssssssc" - inkscape:connector-curvature="0" - style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:40;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - d="m 263.27056,331.9209 h 214.40011 c 0,0 22.48143,15.20157 31.95271,25.64682 9.47129,10.44526 18.49346,24.48925 24.80002,35.83524 6.30656,11.34599 11.41582,21.50855 15.76495,34.6827 4.34913,13.17415 8.33496,26.90043 9.45883,44.14119 1.12387,17.24076 -0.50993,40.83133 -4.72941,58.32944 -4.21948,17.4981 -12.05744,33.4219 -18.91765,45.71768 -6.86021,12.29577 -11.88517,18.52633 -20.49414,28.37648 -8.60897,9.85015 -19.92154,20.95923 -31.52943,29.95295 -11.60789,8.99371 -23.82267,17.22465 -37.8353,23.64707 -14.01263,6.42242 -45.71768,14.18825 -45.71768,14.18825 0,0 -42.93148,5.75825 -77.2471,-6.30588 -13.63978,-4.79525 -22.57777,-6.42989 -37.83531,-14.18825 -19.11323,-9.71895 -37.52194,-22.04048 -52.02356,-37.83531 -19.93057,-21.70791 -35.90374,-47.88308 -45.71767,-75.67063 -7.77117,-22.00358 -10.31615,-46.04493 -9.45882,-69.36474 0.65128,-17.71506 4.79457,-35.43136 11.03529,-52.02355 5.30073,-14.09303 14.29531,-27.64889 22.07061,-39.41179 7.60607,-11.50687 20.999,-24.12154 29.95295,-31.52942 8.95395,-7.40788 22.0706,-14.18825 22.0706,-14.18825 z" - id="path4231"/> - </g> - <path - style="fill:none;stroke:#000000;stroke-width:12.01409435;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - d="m 36.481679,289.69734 c 0,0 10.908984,-23.89131 6.312483,-34.71866 -3.705817,-8.72928 -21.563423,-6.53522 -23.671809,-15.78119 -2.219697,-9.73413 15.255165,-25.77597 15.255165,-25.77597" - id="path844" - inkscape:connector-curvature="0" - sodipodi:nodetypes="cssc"/> - </g> -</svg> +<?xml version="1.0" encoding="UTF-8" standalone="yes"?> +<svg xmlns="http://www.w3.org/2000/svg" width="375px" height="375px" viewBox="0 0 375 375" version="1.1"> + <g id="surface1"> + <path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:0.184114;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:4;" d="M 63.116174 171.409692 C 63.116174 171.409692 41.832384 172.788348 31.802205 180.281349 C 26.926816 183.923427 24.018516 200.08065 22.859994 206.056706 C 19.353382 224.148562 29.898616 224.36164 44.953762 234.988718 C 60.082285 245.669419 117.109522 241.821319 87.037331 236.567752 C 13.035838 223.63774 63.116174 171.409692 63.116174 171.409692 Z M 63.116174 171.409692 " transform="matrix(2.768208,0,0,2.768208,0.0000211198,-447.157923)"/> + <path style="fill:none;stroke-width:23;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:4;" d="M 455.973483 566.026029 C 455.973483 584.082715 440.984925 598.719193 422.497121 598.719193 C 404.002131 598.719193 389.013573 584.082715 389.013573 566.026029 C 389.013573 547.976529 404.002131 533.340051 422.497121 533.340051 C 440.984925 533.340051 455.973483 547.976529 455.973483 566.026029 Z M 455.973483 566.026029 " transform="matrix(0.543644,0,0,0.543644,31.593287,-153.107197)"/> + <path style="fill:none;stroke-width:23;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:4;" d="M 348.768648 566.026029 C 348.768648 584.082715 333.78009 598.719193 315.292285 598.719193 C 296.804481 598.719193 281.815923 584.082715 281.815923 566.026029 C 281.815923 547.976529 296.804481 533.340051 315.292285 533.340051 C 333.78009 533.340051 348.768648 547.976529 348.768648 566.026029 Z M 348.768648 566.026029 " transform="matrix(0.543644,0,0,0.543644,31.593287,-153.107197)"/> + <path style="fill:none;stroke-width:23;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:4;" d="M 298.327767 477.747302 C 298.327767 495.796803 283.339209 510.433281 264.844219 510.433281 C 246.356415 510.433281 231.367857 495.796803 231.367857 477.747302 C 231.367857 459.690617 246.356415 445.054139 264.844219 445.054139 C 283.339209 445.054139 298.327767 459.690617 298.327767 477.747302 Z M 298.327767 477.747302 " transform="matrix(0.543644,0,0,0.543644,31.593287,-153.107197)"/> + <path style="fill:none;stroke-width:23;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:4;" d="M 402.371066 477.747302 C 402.371066 495.796803 387.382508 510.433281 368.894703 510.433281 C 350.406899 510.433281 335.418341 495.796803 335.418341 477.747302 C 335.418341 459.690617 350.406899 445.054139 368.894703 445.054139 C 387.382508 445.054139 402.371066 459.690617 402.371066 477.747302 Z M 402.371066 477.747302 " transform="matrix(0.543644,0,0,0.543644,31.593287,-153.107197)"/> + <path style="fill:none;stroke-width:23;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:4;" d="M 504.840781 477.747302 C 504.840781 495.796803 489.852223 510.433281 471.364419 510.433281 C 452.876614 510.433281 437.888056 495.796803 437.888056 477.747302 C 437.888056 459.690617 452.876614 445.054139 471.364419 445.054139 C 489.852223 445.054139 504.840781 459.690617 504.840781 477.747302 Z M 504.840781 477.747302 " transform="matrix(0.543644,0,0,0.543644,31.593287,-153.107197)"/> + <path style="fill:none;stroke-width:23;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:4;" d="M 446.143978 406.016346 C 446.143978 419.948663 435.20075 431.243972 421.706737 431.243972 C 408.205538 431.243972 397.26231 419.948663 397.26231 406.016346 C 397.26231 392.084028 408.205538 380.78872 421.706737 380.78872 C 435.20075 380.78872 446.143978 392.084028 446.143978 406.016346 Z M 446.143978 406.016346 " transform="matrix(0.543644,0,0,0.543644,31.593287,-153.107197)"/> + <path style="fill:none;stroke-width:23;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:4;" d="M 343.674263 406.016346 C 343.674263 419.948663 332.731034 431.243972 319.237021 431.243972 C 305.735822 431.243972 294.792594 419.948663 294.792594 406.016346 C 294.792594 392.084028 305.735822 380.78872 319.237021 380.78872 C 332.731034 380.78872 343.674263 392.084028 343.674263 406.016346 Z M 343.674263 406.016346 " transform="matrix(0.543644,0,0,0.543644,31.593287,-153.107197)"/> + <path style="fill:none;stroke-width:40;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:4;" d="M 263.270636 331.921422 L 477.673122 331.921422 C 477.673122 331.921422 500.148773 347.125539 509.626198 357.565796 C 519.096438 368.013237 528.114003 382.06052 534.422705 393.406125 C 540.731408 404.751731 545.840164 414.91176 550.187277 428.082435 C 554.53439 441.260295 558.522238 454.984238 559.650331 472.228984 C 560.77124 489.466544 559.140174 513.055919 554.915212 530.559336 C 550.697434 548.055567 542.85826 563.978216 536.003474 576.272282 C 529.141502 588.566349 524.111785 594.803199 515.503782 604.647074 C 506.89578 614.498135 495.586101 625.606626 483.974639 634.602635 C 472.370362 643.598644 460.155334 651.825824 446.143978 658.249492 C 432.125437 664.67316 400.423846 672.440481 400.423846 672.440481 C 400.423846 672.440481 357.491615 678.195915 323.174571 666.131778 C 309.536851 661.339176 300.598325 659.700925 285.34391 651.947975 C 266.230984 642.226249 247.822218 629.903441 233.315076 614.110129 C 213.390209 592.403305 197.417263 566.227218 187.602129 538.441622 C 179.827623 516.433015 177.284023 492.390965 178.139075 469.074632 C 178.792938 451.355656 182.938862 433.643865 189.175712 417.052983 C 194.478471 402.955403 203.47448 389.403907 211.248987 377.641554 C 218.851045 366.130686 232.244464 353.520466 241.197362 346.11241 C 250.157444 338.704355 263.270636 331.921422 263.270636 331.921422 Z M 263.270636 331.921422 " transform="matrix(0.543644,0,0,0.543644,31.593287,-153.107197)"/> + <path style="fill:none;stroke-width:12.014094;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:4;" d="M 36.48145 289.6975 C 36.48145 289.6975 47.390751 265.805976 42.794762 254.97852 C 39.087772 246.249386 21.23016 248.443664 19.12196 239.198063 C 16.902282 229.462807 34.377483 213.421295 34.377483 213.421295 " transform="matrix(2.768208,0,0,2.768208,0.0000211198,-447.157923)"/> + </g> +</svg> \ No newline at end of file diff --git a/assets/layers/charging_station/Type3c.svg b/assets/layers/charging_station/Type3c.svg index 41e8ac58d4..f881a6b076 100644 --- a/assets/layers/charging_station/Type3c.svg +++ b/assets/layers/charging_station/Type3c.svg @@ -1,122 +1,13 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - xmlns="http://www.w3.org/2000/svg" - width="60" - height="60" - version="1.1" - id="svg876" - sodipodi:docname="Type 3c.svg" - inkscape:version="0.92.4 (5da689c313, 2019-01-14)"> - <metadata - id="metadata882"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage"/> - <dc:title/> - <cc:license - rdf:resource="http://creativecommons.org/licenses/by/4.0/"/> - <dc:creator> - <cc:Agent> - <dc:title>Yves Pratter</dc:title> - </cc:Agent> - </dc:creator> - </cc:Work> - <cc:License - rdf:about="http://creativecommons.org/licenses/by/4.0/"> - <cc:permits - rdf:resource="http://creativecommons.org/ns#Reproduction"/> - <cc:permits - rdf:resource="http://creativecommons.org/ns#Distribution"/> - <cc:requires - rdf:resource="http://creativecommons.org/ns#Notice"/> - <cc:requires - rdf:resource="http://creativecommons.org/ns#Attribution"/> - <cc:permits - rdf:resource="http://creativecommons.org/ns#DerivativeWorks"/> - </cc:License> - </rdf:RDF> - </metadata> - <defs - id="defs880"/> - <sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1600" - inkscape:window-height="837" - id="namedview878" - showgrid="true" - fit-margin-top="0" - fit-margin-left="0" - fit-margin-right="0" - fit-margin-bottom="0" - inkscape:zoom="11.15" - inkscape:cx="13.946188" - inkscape:cy="30" - inkscape:window-x="-8" - inkscape:window-y="-8" - inkscape:window-maximized="1" - inkscape:current-layer="svg876"> - <inkscape:grid - type="xygrid" - id="grid820"/> - </sodipodi:namedview> - <g - id="g1522" - transform="matrix(0.75444887,0,0,0.75444887,48.746137,14.015914)"> - <path - sodipodi:nodetypes="csccscc" - inkscape:connector-curvature="0" - id="path1438-5" - d="m -5.965395,29.423729 c 0,10.428275 -8.453788,18.882063 -18.882063,18.882063 -10.428275,0 -18.882063,-8.453788 -18.882063,-18.882063 V 12.949153 c 0,-10.4282754 8.453788,-18.882063 18.882063,-18.882063 10.428275,0 18.882063,8.4537876 18.882063,18.882063 z" - style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/> - <path - inkscape:connector-curvature="0" - id="path1457" - d="m -33.823223,29.500001 a 1.5242352,1.5242352 0 0 1 -1.524235,1.524235 1.5242352,1.5242352 0 0 1 -1.524236,-1.524235 1.5242352,1.5242352 0 0 1 1.524236,-1.524236 1.5242352,1.5242352 0 0 1 1.524235,1.524236 z" - style="opacity:1;fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:1.93477261;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"/> - <path - id="path1457-2" - d="m -12.577459,29.500002 a 1.5242352,1.5242352 0 0 1 -1.524235,1.524235 1.5242352,1.5242352 0 0 1 -1.524236,-1.524235 1.5242352,1.5242352 0 0 1 1.524236,-1.524236 1.5242352,1.5242352 0 0 1 1.524235,1.524236 z" - style="opacity:1;fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:1.93477261;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - inkscape:connector-curvature="0"/> - <path - id="path1457-25" - d="m -23.20034,40.20339 a 1.5242352,1.5242352 0 0 1 -1.524235,1.524235 1.5242352,1.5242352 0 0 1 -1.524236,-1.524235 1.5242352,1.5242352 0 0 1 1.524236,-1.524236 1.5242352,1.5242352 0 0 1 1.524235,1.524236 z" - style="opacity:1;fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:1.93477261;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - inkscape:connector-curvature="0"/> - <path - id="path1457-6" - d="m -33.823223,15.932204 a 1.5242352,1.5242352 0 0 1 -1.524235,1.524235 1.5242352,1.5242352 0 0 1 -1.524236,-1.524235 1.5242352,1.5242352 0 0 1 1.524236,-1.524236 1.5242352,1.5242352 0 0 1 1.524235,1.524236 z" - style="opacity:1;fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:1.93477261;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - inkscape:connector-curvature="0"/> - <path - id="path1457-7" - d="m -12.577459,15.932204 a 1.5242352,1.5242352 0 0 1 -1.524235,1.524234 1.5242352,1.5242352 0 0 1 -1.524236,-1.524234 1.5242352,1.5242352 0 0 1 1.524236,-1.524236 1.5242352,1.5242352 0 0 1 1.524235,1.524236 z" - style="opacity:1;fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:1.93477261;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - inkscape:connector-curvature="0"/> - <path - id="path1457-29" - d="m -34.300176,5.7457629 a 1.0472821,1.0472821 0 0 1 -1.047282,1.047282 1.0472821,1.0472821 0 0 1 -1.047283,-1.047282 1.0472821,1.0472821 0 0 1 1.047283,-1.0472826 1.0472821,1.0472821 0 0 1 1.047282,1.0472826 z" - style="opacity:1;fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:1.32935703;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - inkscape:connector-curvature="0"/> - <path - id="path1457-29-9" - d="m -13.054412,5.7457629 a 1.0472821,1.0472821 0 0 1 -1.047282,1.047282 1.0472821,1.0472821 0 0 1 -1.047283,-1.047282 1.0472821,1.0472821 0 0 1 1.047283,-1.0472826 1.0472821,1.0472821 0 0 1 1.047282,1.0472826 z" - style="opacity:1;fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:1.32935703;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - inkscape:connector-curvature="0"/> - </g> -</svg> +<?xml version="1.0" encoding="UTF-8" standalone="yes"?> +<svg xmlns="http://www.w3.org/2000/svg" width="375px" height="375px" viewBox="0 0 375 375" version="1.1"> + <g id="surface1"> + <path style="fill:none;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:4;" d="M -5.965296 29.423413 C -5.965296 39.852383 -14.419314 48.305573 -24.847456 48.305573 C -35.275598 48.305573 -43.729617 39.852383 -43.729617 29.423413 L -43.729617 12.949467 C -43.729617 2.520497 -35.275598 -5.932693 -24.847456 -5.932693 C -14.419314 -5.932693 -5.965296 2.520497 -5.965296 12.949467 Z M -5.965296 29.423413 " transform="matrix(4.715306,0,0,4.715306,304.663348,87.599462)"/> + <path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:1.934773;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:4;" d="M -33.823379 29.499627 C -33.823379 30.34213 -34.505996 31.023919 -35.34767 31.023919 C -36.189344 31.023919 -36.871962 30.34213 -36.871962 29.499627 C -36.871962 28.657953 -36.189344 27.976164 -35.34767 27.976164 C -34.505996 27.976164 -33.823379 28.657953 -33.823379 29.499627 Z M -33.823379 29.499627 " transform="matrix(4.715306,0,0,4.715306,304.663348,87.599462)"/> + <path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:1.934773;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:4;" d="M -12.577738 29.499627 C -12.577738 30.34213 -13.259527 31.023919 -14.10203 31.023919 C -14.943704 31.023919 -15.626321 30.34213 -15.626321 29.499627 C -15.626321 28.657953 -14.943704 27.976164 -14.10203 27.976164 C -13.259527 27.976164 -12.577738 28.657953 -12.577738 29.499627 Z M -12.577738 29.499627 " transform="matrix(4.715306,0,0,4.715306,304.663348,87.599462)"/> + <path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:1.934773;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:4;" d="M -23.200559 40.203633 C -23.200559 41.045307 -23.883176 41.727924 -24.72485 41.727924 C -25.566524 41.727924 -26.249142 41.045307 -26.249142 40.203633 C -26.249142 39.361959 -25.566524 38.679341 -24.72485 38.679341 C -23.883176 38.679341 -23.200559 39.361959 -23.200559 40.203633 Z M -23.200559 40.203633 " transform="matrix(4.715306,0,0,4.715306,304.663348,87.599462)"/> + <path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:1.934773;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:4;" d="M -33.823379 15.932605 C -33.823379 16.774279 -34.505996 17.456068 -35.34767 17.456068 C -36.189344 17.456068 -36.871962 16.774279 -36.871962 15.932605 C -36.871962 15.090102 -36.189344 14.408313 -35.34767 14.408313 C -34.505996 14.408313 -33.823379 15.090102 -33.823379 15.932605 Z M -33.823379 15.932605 " transform="matrix(4.715306,0,0,4.715306,304.663348,87.599462)"/> + <path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:1.934773;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:4;" d="M -12.577738 15.932605 C -12.577738 16.774279 -13.259527 17.456068 -14.10203 17.456068 C -14.943704 17.456068 -15.626321 16.774279 -15.626321 15.932605 C -15.626321 15.090102 -14.943704 14.408313 -14.10203 14.408313 C -13.259527 14.408313 -12.577738 15.090102 -12.577738 15.932605 Z M -12.577738 15.932605 " transform="matrix(4.715306,0,0,4.715306,304.663348,87.599462)"/> + <path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:1.329357;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:4;" d="M -34.300548 5.745533 C -34.300548 6.32377 -34.769434 6.792655 -35.34767 6.792655 C -35.925907 6.792655 -36.394792 6.32377 -36.394792 5.745533 C -36.394792 5.167296 -35.925907 4.698411 -35.34767 4.698411 C -34.769434 4.698411 -34.300548 5.167296 -34.300548 5.745533 Z M -34.300548 5.745533 " transform="matrix(4.715306,0,0,4.715306,304.663348,87.599462)"/> + <path style="fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;stroke-width:1.329357;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:4;" d="M -13.054079 5.745533 C -13.054079 6.32377 -13.522965 6.792655 -14.10203 6.792655 C -14.680266 6.792655 -15.149152 6.32377 -15.149152 5.745533 C -15.149152 5.167296 -14.680266 4.698411 -14.10203 4.698411 C -13.522965 4.698411 -13.054079 5.167296 -13.054079 5.745533 Z M -13.054079 5.745533 " transform="matrix(4.715306,0,0,4.715306,304.663348,87.599462)"/> + </g> +</svg> \ No newline at end of file diff --git a/assets/layers/charging_station/TypeE.svg b/assets/layers/charging_station/TypeE.svg index 89ab8e69c0..b5548d49d9 100644 --- a/assets/layers/charging_station/TypeE.svg +++ b/assets/layers/charging_station/TypeE.svg @@ -1,92 +1,8 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - xmlns="http://www.w3.org/2000/svg" - width="204.5" - height="205.5" - viewBox="0 0 54.107291 54.371876" - version="1.1" - id="svg8" - inkscape:version="0.92.5 (2060ec1f9f, 2020-04-08)" - sodipodi:docname="TypeE.svg"> - <defs - id="defs2"/> - <sodipodi:namedview - id="base" - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="0.0" - inkscape:pageshadow="2" - inkscape:zoom="16" - inkscape:cx="107.73386" - inkscape:cy="144.41751" - inkscape:document-units="mm" - inkscape:current-layer="layer1" - showgrid="false" - inkscape:window-width="1920" - inkscape:window-height="999" - inkscape:window-x="0" - inkscape:window-y="0" - inkscape:window-maximized="1" - units="px" - showguides="true" - inkscape:guide-bbox="true" - inkscape:snap-grids="true" - inkscape:snap-nodes="false"> - <sodipodi:guide - position="27.057699,27.185938" - orientation="0,1" - id="guide820" - inkscape:locked="false"/> - <sodipodi:guide - position="27.053646,27.148731" - orientation="1,0" - id="guide822" - inkscape:locked="false"/> - </sodipodi:namedview> - <metadata - id="metadata5"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage"/> - <dc:title/> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="1. réteg" - inkscape:groupmode="layer" - id="layer1" - style="display:inline" - transform="translate(0.52916652,-243.28956)"> - <ellipse - style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:1.32291663;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - id="path818" - cx="26.524479" - cy="270.47549" - rx="26.392187" - ry="26.524479"/> - <circle - style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" - id="path826" - cx="26.524479" - cy="253.60205" - r="3.0136123"/> - <path - style="opacity:1;vector-effect:none;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.01308249;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1" - d="m 37.605863,266.45426 c -1.974567,0.003 -3.572059,1.60654 -3.569449,3.57957 0.0028,1.97303 1.604985,3.57007 3.579563,3.56876 1.974581,-0.001 3.574846,-1.6013 3.574846,-3.57956 -0.0057,-1.97827 -1.610381,-3.57269 -3.58496,-3.56877 z m -23.271216,0.006 c -1.974577,0.003 -3.572322,1.60653 -3.56945,3.57956 0.0028,1.97303 1.605659,3.57007 3.58024,3.56876 1.974577,-0.001 3.574168,-1.60129 3.574168,-3.57955 -0.0057,-1.97827 -1.61038,-3.5727 -3.584958,-3.56877 z" - id="path826-3-2" - inkscape:connector-curvature="0" - sodipodi:nodetypes="cccccccccc"/> - </g> -</svg> +<?xml version="1.0" encoding="UTF-8" standalone="yes"?> +<svg xmlns="http://www.w3.org/2000/svg" width="373px" height="374px" viewBox="0 0 373 374" version="1.1"> + <g id="surface1"> + <path style="fill:none;stroke-width:1.322917;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:4;" d="M 52.916604 270.475504 C 52.916604 285.124745 41.100326 296.999852 26.52448 296.999852 C 11.948633 296.999852 0.132355 285.124745 0.132355 270.475504 C 0.132355 255.826263 11.948633 243.951156 26.52448 243.951156 C 41.100326 243.951156 52.916604 255.826263 52.916604 270.475504 Z M 52.916604 270.475504 " transform="matrix(6.893628,0,0,6.878556,3.650092,-1673.480939)"/> + <path style="fill:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:4;" d="M 29.537905 253.601846 C 29.537905 255.266326 28.18872 256.615628 26.52448 256.615628 C 24.860239 256.615628 23.511054 255.266326 23.511054 253.601846 C 23.511054 251.937934 24.860239 250.588631 26.52448 250.588631 C 28.18872 250.588631 29.537905 251.937934 29.537905 253.601846 Z M 29.537905 253.601846 " transform="matrix(6.893628,0,0,6.878556,3.650092,-1673.480939)"/> + <path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 262.890625 159.339844 C 249.277344 159.359375 238.265625 170.390625 238.285156 183.960938 C 238.304688 197.535156 249.347656 208.519531 262.960938 208.511719 C 276.574219 208.503906 287.605469 197.496094 287.605469 183.886719 C 287.566406 170.28125 276.503906 159.3125 262.890625 159.339844 Z M 102.46875 159.382812 C 88.855469 159.402344 77.839844 170.429688 77.863281 184.003906 C 77.878906 197.574219 88.929688 208.558594 102.542969 208.550781 C 116.152344 208.542969 127.179688 197.535156 127.179688 183.929688 C 127.140625 170.320312 116.078125 159.355469 102.46875 159.382812 Z M 102.46875 159.382812 "/> + </g> +</svg> \ No newline at end of file diff --git a/assets/layers/charging_station/bosch-3pin.svg b/assets/layers/charging_station/bosch-3pin.svg index 515136803e..c5ae175e5b 100644 --- a/assets/layers/charging_station/bosch-3pin.svg +++ b/assets/layers/charging_station/bosch-3pin.svg @@ -1,111 +1,12 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - xmlns="http://www.w3.org/2000/svg" - width="46.74284mm" - height="36.190933mm" - viewBox="0 0 46.74284 36.190933" - version="1.1" - id="svg8" - inkscape:version="0.92.5 (2060ec1f9f, 2020-04-08)" - sodipodi:docname="bosch-3pin.svg"> - <defs - id="defs2"/> - <sodipodi:namedview - id="base" - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="0.0" - inkscape:pageshadow="2" - inkscape:zoom="2.8" - inkscape:cx="70.652971" - inkscape:cy="63.253829" - inkscape:document-units="mm" - inkscape:current-layer="layer1" - showgrid="false" - inkscape:window-width="1920" - inkscape:window-height="1039" - inkscape:window-x="1920" - inkscape:window-y="0" - inkscape:window-maximized="1"/> - <metadata - id="metadata5"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage"/> - <dc:title></dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Layer 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(-56.579508,-203.85482)" - style="display:inline"> - <path - style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:1.12588477;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.92222218" - id="path876" - sodipodi:type="arc" - sodipodi:cx="-79.950958" - sodipodi:cy="221.95029" - sodipodi:rx="22.808449" - sodipodi:ry="17.532524" - sodipodi:start="0" - sodipodi:end="6.2828013" - sodipodi:open="true" - d="m -57.142509,221.95029 a 22.808449,17.532524 0 0 1 -22.80626,17.53252 22.808449,17.532524 0 0 1 -22.810641,-17.52916 22.808449,17.532524 0 0 1 22.801883,-17.53589 22.808449,17.532524 0 0 1 22.815016,17.52579" - transform="scale(-1,1)"/> - <path - style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.92222218" - d="m 95.928119,223.11628 -8.797552,0.0777 -3.134766,1.94325 h -8.089702" - id="path919" - inkscape:connector-curvature="0"/> - <path - style="fill:none;stroke:#000000;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.92222218" - d="m 72.605191,217.14329 -8.371301,0.0109" - id="path921" - inkscape:connector-curvature="0" - sodipodi:nodetypes="cc"/> - <rect - style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.58553958;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.92222218" - id="rect927-7" - width="1.9557446" - height="11.019188" - x="-69.33577" - y="216.90891" - transform="scale(-1,1)"/> - <rect - style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.60303307;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.92222218" - id="rect927-7-5" - width="2.3979976" - height="9.5319748" - x="-81.749748" - y="211.3553" - transform="scale(-1,1)"/> - <path - style="display:inline;fill:none;stroke:#000000;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.92222218" - d="m 84.691994,210.50136 -8.3713,0.0109" - id="path921-6" - inkscape:connector-curvature="0" - sodipodi:nodetypes="cc"/> - <rect - style="display:inline;fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.51650959;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.92222218" - id="rect927-7-53" - width="2.0247746" - height="8.281888" - x="-91.173843" - y="223.57133" - transform="scale(-1,1)"/> - </g> -</svg> +<?xml version="1.0" encoding="UTF-8" standalone="yes"?> +<svg xmlns="http://www.w3.org/2000/svg" width="379px" height="293px" viewBox="0 0 379 293" version="1.1"> + <g id="surface1"> + <path style="fill:none;stroke-width:1.125885;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:0.922222;stroke-miterlimit:4;" d="M -57.142719 221.950279 C -57.142719 231.632493 -67.352694 239.48171 -79.948995 239.482675 C -92.544812 239.48364 -102.757205 231.63587 -102.759624 221.953657 C -102.762043 212.271443 -92.553519 204.420778 -79.957702 204.417883 C -67.361401 204.414989 -57.147557 212.261311 -57.142719 221.943524 " transform="matrix(-8.074977,0,0,8.09595,-456.101941,-1650.39845)"/> + <path style="fill:none;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.922222;stroke-miterlimit:4;" d="M 95.928142 223.116468 L 87.13071 223.19415 L 83.996026 225.137154 L 75.906317 225.137154 " transform="matrix(8.074977,0,0,8.09595,-456.101941,-1650.39845)"/> + <path style="fill:none;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.922222;stroke-miterlimit:4;" d="M 72.605224 217.143188 L 64.233974 217.154286 " transform="matrix(8.074977,0,0,8.09595,-456.101941,-1650.39845)"/> + <path style="fill:none;stroke-width:0.58554;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:0.922222;stroke-miterlimit:4;" d="M -69.335575 216.908696 L -67.379784 216.908696 L -67.379784 227.927901 L -69.335575 227.927901 Z M -69.335575 216.908696 " transform="matrix(-8.074977,0,0,8.09595,-456.101941,-1650.39845)"/> + <path style="fill:none;stroke-width:0.603033;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:0.922222;stroke-miterlimit:4;" d="M -81.749987 211.355187 L -79.351567 211.355187 L -79.351567 220.887344 L -81.749987 220.887344 Z M -81.749987 211.355187 " transform="matrix(-8.074977,0,0,8.09595,-456.101941,-1650.39845)"/> + <path style="fill:none;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.922222;stroke-miterlimit:4;" d="M 84.692139 210.501172 L 76.320888 210.512269 " transform="matrix(8.074977,0,0,8.09595,-456.101941,-1650.39845)"/> + <path style="fill:none;stroke-width:0.51651;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:0.922222;stroke-miterlimit:4;" d="M -91.173871 223.57146 L -89.148904 223.57146 L -89.148904 231.852992 L -91.173871 231.852992 Z M -91.173871 223.57146 " transform="matrix(-8.074977,0,0,8.09595,-456.101941,-1650.39845)"/> + </g> +</svg> \ No newline at end of file diff --git a/assets/layers/charging_station/bosch-5pin.svg b/assets/layers/charging_station/bosch-5pin.svg index 1a29624221..7cb71f3199 100644 --- a/assets/layers/charging_station/bosch-5pin.svg +++ b/assets/layers/charging_station/bosch-5pin.svg @@ -1,127 +1,14 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - xmlns="http://www.w3.org/2000/svg" - width="46.74284mm" - height="36.190933mm" - viewBox="0 0 46.74284 36.190933" - version="1.1" - id="svg8" - inkscape:version="0.92.5 (2060ec1f9f, 2020-04-08)" - sodipodi:docname="bosch-5pin.svg"> - <defs - id="defs2"/> - <sodipodi:namedview - id="base" - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="0.0" - inkscape:pageshadow="2" - inkscape:zoom="2.8" - inkscape:cx="2.2601139" - inkscape:cy="63.253829" - inkscape:document-units="mm" - inkscape:current-layer="layer1" - showgrid="false" - inkscape:window-width="1920" - inkscape:window-height="1039" - inkscape:window-x="0" - inkscape:window-y="0" - inkscape:window-maximized="1"/> - <metadata - id="metadata5"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage"/> - <dc:title/> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Layer 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(-56.579508,-203.85482)" - style="display:inline"> - <path - style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:1.12588477;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.92222218" - id="path876" - sodipodi:type="arc" - sodipodi:cx="-79.950958" - sodipodi:cy="221.95029" - sodipodi:rx="22.808449" - sodipodi:ry="17.532524" - sodipodi:start="0" - sodipodi:end="6.2828013" - sodipodi:open="true" - d="m -57.142509,221.95029 a 22.808449,17.532524 0 0 1 -22.80626,17.53252 22.808449,17.532524 0 0 1 -22.810641,-17.52916 22.808449,17.532524 0 0 1 22.801883,-17.53589 22.808449,17.532524 0 0 1 22.815016,17.52579" - transform="scale(-1,1)"/> - <path - style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.92222218" - d="m 95.928119,223.11628 -8.797552,0.0777 -3.134766,1.94325 h -8.089702" - id="path919" - inkscape:connector-curvature="0"/> - <path - style="fill:none;stroke:#000000;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.92222218" - d="m 72.605191,217.14329 -8.371301,0.0109" - id="path921" - inkscape:connector-curvature="0" - sodipodi:nodetypes="cc"/> - <rect - style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.58553958;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.92222218" - id="rect927-7" - width="1.9557446" - height="11.019188" - x="-69.33577" - y="216.90891" - transform="scale(-1,1)"/> - <rect - style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.60303307;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.92222218" - id="rect927-7-5" - width="2.3979976" - height="9.5319748" - x="-81.749748" - y="211.3553" - transform="scale(-1,1)"/> - <path - style="display:inline;fill:none;stroke:#000000;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0.92222218" - d="m 84.691994,210.50136 -8.3713,0.0109" - id="path921-6" - inkscape:connector-curvature="0" - sodipodi:nodetypes="cc"/> - <rect - style="display:inline;fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.51650959;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.92222218" - id="rect927-7-53" - width="2.0247746" - height="8.281888" - x="-91.173843" - y="223.57133" - transform="scale(-1,1)"/> - <rect - style="display:inline;fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.51650959;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.92222218" - id="rect927-7-53-5" - width="2.0247746" - height="8.281888" - x="-81.017601" - y="225.57587" - transform="scale(-1,1)"/> - <rect - style="display:inline;fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.51650959;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:0.92222218" - id="rect927-7-53-5-6" - width="2.0247746" - height="8.281888" - x="-94.935867" - y="215.15581" - transform="scale(-1,1)"/> - </g> -</svg> +<?xml version="1.0" encoding="UTF-8" standalone="yes"?> +<svg xmlns="http://www.w3.org/2000/svg" width="379px" height="293px" viewBox="0 0 379 293" version="1.1"> + <g id="surface1"> + <path style="fill:none;stroke-width:1.125885;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:0.922222;stroke-miterlimit:4;" d="M -57.142719 221.950279 C -57.142719 231.632493 -67.352694 239.48171 -79.948995 239.482675 C -92.544812 239.48364 -102.757205 231.63587 -102.759624 221.953657 C -102.762043 212.271443 -92.553519 204.420778 -79.957702 204.417883 C -67.361401 204.414989 -57.147557 212.261311 -57.142719 221.943524 " transform="matrix(-8.074977,0,0,8.09595,-456.101941,-1650.39845)"/> + <path style="fill:none;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.922222;stroke-miterlimit:4;" d="M 95.928142 223.116468 L 87.13071 223.19415 L 83.996026 225.137154 L 75.906317 225.137154 " transform="matrix(8.074977,0,0,8.09595,-456.101941,-1650.39845)"/> + <path style="fill:none;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.922222;stroke-miterlimit:4;" d="M 72.605224 217.143188 L 64.233974 217.154286 " transform="matrix(8.074977,0,0,8.09595,-456.101941,-1650.39845)"/> + <path style="fill:none;stroke-width:0.58554;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:0.922222;stroke-miterlimit:4;" d="M -69.335575 216.908696 L -67.379784 216.908696 L -67.379784 227.927901 L -69.335575 227.927901 Z M -69.335575 216.908696 " transform="matrix(-8.074977,0,0,8.09595,-456.101941,-1650.39845)"/> + <path style="fill:none;stroke-width:0.603033;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:0.922222;stroke-miterlimit:4;" d="M -81.749987 211.355187 L -79.351567 211.355187 L -79.351567 220.887344 L -81.749987 220.887344 Z M -81.749987 211.355187 " transform="matrix(-8.074977,0,0,8.09595,-456.101941,-1650.39845)"/> + <path style="fill:none;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:0.922222;stroke-miterlimit:4;" d="M 84.692139 210.501172 L 76.320888 210.512269 " transform="matrix(8.074977,0,0,8.09595,-456.101941,-1650.39845)"/> + <path style="fill:none;stroke-width:0.51651;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:0.922222;stroke-miterlimit:4;" d="M -91.173871 223.57146 L -89.148904 223.57146 L -89.148904 231.852992 L -91.173871 231.852992 Z M -91.173871 223.57146 " transform="matrix(-8.074977,0,0,8.09595,-456.101941,-1650.39845)"/> + <path style="fill:none;stroke-width:0.51651;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:0.922222;stroke-miterlimit:4;" d="M -81.017593 225.575741 L -78.992626 225.575741 L -78.992626 233.857756 L -81.017593 233.857756 Z M -81.017593 225.575741 " transform="matrix(-8.074977,0,0,8.09595,-456.101941,-1650.39845)"/> + <path style="fill:none;stroke-width:0.51651;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:0.922222;stroke-miterlimit:4;" d="M -94.935976 215.155794 L -92.911009 215.155794 L -92.911009 223.437809 L -94.935976 223.437809 Z M -94.935976 215.155794 " transform="matrix(-8.074977,0,0,8.09595,-456.101941,-1650.39845)"/> + </g> +</svg> \ No newline at end of file diff --git a/assets/layers/charging_station/charging_station.json b/assets/layers/charging_station/charging_station.json index b96c4ae41b..bb90ac136c 100644 --- a/assets/layers/charging_station/charging_station.json +++ b/assets/layers/charging_station/charging_station.json @@ -2,28 +2,70 @@ "id": "charging_station", "name": { "en": "Charging stations", - "nl": "Oplaadpunten" + "nl": "Oplaadpunten", + "de": "Ladestationen" }, "minzoom": 10, "source": { "osmTags": { - "or": [ - "amenity=charging_station", - "disused:amenity=charging_station", - "planned:amenity=charging_station", - "construction:amenity=charging_station" + "and": [ + { + "or": [ + "amenity=charging_station", + "disused:amenity=charging_station", + "planned:amenity=charging_station", + "construction:amenity=charging_station" + ] + } ] } }, "title": { "render": { "en": "Charging station", - "nl": "Oplaadpunten" - } + "nl": "Oplaadpunt" + }, + "mappings": [ + { + "if": { + "and": [ + "bicycle=yes", + { + "or": [ + "motorcar=", + "motorcar=no" + ] + } + ] + }, + "then": { + "en": "Charging station for electrical bicycles", + "nl": "Oplaadpunt voor elektrische fietsen" + } + }, + { + "if": { + "and": [ + "motorcar=yes", + { + "or": [ + "bicycle=", + "bicycle=no" + ] + } + ] + }, + "then": { + "en": "Charging station for cars", + "nl": "Oplaadpunt voor elektrische auto's" + } + } + ] }, "description": { "en": "A charging station", - "nl": "Oplaadpunten" + "nl": "Oplaadpunten", + "de": "Eine Ladestation" }, "tagRenderings": [ "images", @@ -32,7 +74,9 @@ "#": "Allowed vehicle types", "question": { "en": "Which vehicles are allowed to charge here?", - "nl": "Welke voertuigen kunnen hier opgeladen worden?" + "nl": "Welke voertuigen kunnen hier opgeladen worden?", + "de": "Welche Fahrzeuge dürfen hier laden?", + "es": "¿A qué vehículos se permite la carga aquí?" }, "multiAnswer": true, "mappings": [ @@ -40,8 +84,9 @@ "if": "bicycle=yes", "ifnot": "bicycle=no", "then": { - "en": "<b>Bcycles</b> can be charged here", - "nl": "<b>Fietsen</b> kunnen hier opgeladen worden" + "en": "<b>Bicycles</b> can be charged here", + "nl": "<b>Elektrische fietsen</b> kunnen hier opgeladen worden", + "de": "<b>Fahrräder</b> können hier geladen werden" } }, { @@ -49,7 +94,8 @@ "ifnot": "motorcar=no", "then": { "en": "<b>Cars</b> can be charged here", - "nl": "<b>Elektrische auto's</b> kunnen hier opgeladen worden" + "nl": "<b>Elektrische auto's</b> kunnen hier opgeladen worden", + "de": "<b>Autos</b> können hier geladen werden" } }, { @@ -57,7 +103,8 @@ "ifnot": "scooter=no", "then": { "en": "<b>Scooters</b> can be charged here", - "nl": "<b>Electrische scooters</b> (snorfiets of bromfiets) kunnen hier opgeladen worden" + "nl": "<b>Elektrische scooters</b> (snorfiets of bromfiets) kunnen hier opgeladen worden", + "de": "<b>Roller</b> können hier geladen werden" } }, { @@ -65,7 +112,8 @@ "ifnot": "hgv=no", "then": { "en": "<b>Heavy good vehicles</b> (such as trucks) can be charged here", - "nl": "<b>Vrachtwagens</b> kunnen hier opgeladen worden" + "nl": "<b>Vrachtwagens</b> kunnen hier opgeladen worden", + "de": "<b>LKW</b> können hier geladen werden" } }, { @@ -73,7 +121,8 @@ "ifnot": "bus=no", "then": { "en": "<b>Buses</b> can be charged here", - "nl": "<b>Bussen</b> kunnen hier opgeladen worden" + "nl": "<b>Bussen</b> kunnen hier opgeladen worden", + "de": "<b>Busse</b> können hier geladen werden" } } ] @@ -150,7 +199,8 @@ "id": "Available_charging_stations (generated)", "question": { "en": "Which charging connections are available here?", - "nl": "Welke aansluitingen zijn hier beschikbaar?" + "nl": "Welke laadaansluitingen zijn hier beschikbaar?", + "de": "Welche Ladeanschlüsse gibt es hier?" }, "multiAnswer": true, "mappings": [ @@ -158,8 +208,12 @@ "if": "socket:schuko=1", "ifnot": "socket:schuko=", "then": { - "en": "<div class='flex'><img class='w-12 mx-4' src='./assets/layers/charging_station/CEE7_4F.svg'/> <span><b>Schuko wall plug</b> without ground pin (CEE7/4 type F)</span></div>", - "nl": "<div class='flex'><img class='w-12 mx-4' src='./assets/layers/charging_station/CEE7_4F.svg'/> <span><b>Schuko stekker</b> zonder aardingspin (CEE7/4 type F)</span></div>" + "en": "<b>Schuko wall plug</b> without ground pin (CEE7/4 type F)", + "nl": "<b>Schuko stekker</b> zonder aardingspin (CEE7/4 type F)" + }, + "icon": { + "path": "./assets/layers/charging_station/CEE7_4F.svg", + "class": "medium" }, "hideInAnswer": { "or": [ @@ -182,17 +236,25 @@ ] }, "then": { - "en": "<div class='flex'><img class='w-12 mx-4' src='./assets/layers/charging_station/CEE7_4F.svg'/> <span><b>Schuko wall plug</b> without ground pin (CEE7/4 type F)</span></div>", - "nl": "<div class='flex'><img class='w-12 mx-4' src='./assets/layers/charging_station/CEE7_4F.svg'/> <span><b>Schuko stekker</b> zonder aardingspin (CEE7/4 type F)</span></div>" + "en": "<b>Schuko wall plug</b> without ground pin (CEE7/4 type F)", + "nl": "<b>Schuko stekker</b> zonder aardingspin (CEE7/4 type F)" }, - "hideInAnswer": true + "hideInAnswer": true, + "icon": { + "path": "./assets/layers/charging_station/CEE7_4F.svg", + "class": "medium" + } }, { "if": "socket:typee=1", "ifnot": "socket:typee=", "then": { - "en": "<div class='flex'><img class='w-12 mx-4' src='./assets/layers/charging_station/TypeE.svg'/> <span><b>European wall plug</b> with ground pin (CEE7/4 type E)</span></div>", - "nl": "<div class='flex'><img class='w-12 mx-4' src='./assets/layers/charging_station/TypeE.svg'/> <span><b>Europese stekker</b> met aardingspin (CEE7/4 type E)</span></div>" + "en": "<b>European wall plug</b> with ground pin (CEE7/4 type E)", + "nl": "<b>Europese stekker</b> met aardingspin (CEE7/4 type E)" + }, + "icon": { + "path": "./assets/layers/charging_station/TypeE.svg", + "class": "medium" } }, { @@ -203,17 +265,25 @@ ] }, "then": { - "en": "<div class='flex'><img class='w-12 mx-4' src='./assets/layers/charging_station/TypeE.svg'/> <span><b>European wall plug</b> with ground pin (CEE7/4 type E)</span></div>", - "nl": "<div class='flex'><img class='w-12 mx-4' src='./assets/layers/charging_station/TypeE.svg'/> <span><b>Europese stekker</b> met aardingspin (CEE7/4 type E)</span></div>" + "en": "<b>European wall plug</b> with ground pin (CEE7/4 type E)", + "nl": "<b>Europese stekker</b> met aardingspin (CEE7/4 type E)" }, - "hideInAnswer": true + "hideInAnswer": true, + "icon": { + "path": "./assets/layers/charging_station/TypeE.svg", + "class": "medium" + } }, { "if": "socket:chademo=1", "ifnot": "socket:chademo=", "then": { - "en": "<div class='flex'><img class='w-12 mx-4' src='./assets/layers/charging_station/Chademo_type4.svg'/> <span><b>Chademo</b></span></div>", - "nl": "<div class='flex'><img class='w-12 mx-4' src='./assets/layers/charging_station/Chademo_type4.svg'/> <span><b>Chademo</b></span></div>" + "en": "<b>Chademo</b>", + "nl": "<b>Chademo</b>" + }, + "icon": { + "path": "./assets/layers/charging_station/Chademo_type4.svg", + "class": "medium" }, "hideInAnswer": { "or": [ @@ -250,17 +320,25 @@ ] }, "then": { - "en": "<div class='flex'><img class='w-12 mx-4' src='./assets/layers/charging_station/Chademo_type4.svg'/> <span><b>Chademo</b></span></div>", - "nl": "<div class='flex'><img class='w-12 mx-4' src='./assets/layers/charging_station/Chademo_type4.svg'/> <span><b>Chademo</b></span></div>" + "en": "<b>Chademo</b>", + "nl": "<b>Chademo</b>" }, - "hideInAnswer": true + "hideInAnswer": true, + "icon": { + "path": "./assets/layers/charging_station/Chademo_type4.svg", + "class": "medium" + } }, { "if": "socket:type1_cable=1", "ifnot": "socket:type1_cable=", "then": { - "en": "<div class='flex'><img class='w-12 mx-4' src='./assets/layers/charging_station/Type1_J1772.svg'/> <span><b>Type 1 with cable</b> (J1772)</span></div>", - "nl": "<div class='flex'><img class='w-12 mx-4' src='./assets/layers/charging_station/Type1_J1772.svg'/> <span><b>Type 1 met kabel</b> (J1772)</span></div>" + "en": "<b>Type 1 with cable</b> (J1772)", + "nl": "<b>Type 1 met kabel</b> (J1772)" + }, + "icon": { + "path": "./assets/layers/charging_station/Type1_J1772.svg", + "class": "medium" }, "hideInAnswer": { "or": [ @@ -297,17 +375,25 @@ ] }, "then": { - "en": "<div class='flex'><img class='w-12 mx-4' src='./assets/layers/charging_station/Type1_J1772.svg'/> <span><b>Type 1 with cable</b> (J1772)</span></div>", - "nl": "<div class='flex'><img class='w-12 mx-4' src='./assets/layers/charging_station/Type1_J1772.svg'/> <span><b>Type 1 met kabel</b> (J1772)</span></div>" + "en": "<b>Type 1 with cable</b> (J1772)", + "nl": "<b>Type 1 met kabel</b> (J1772)" }, - "hideInAnswer": true + "hideInAnswer": true, + "icon": { + "path": "./assets/layers/charging_station/Type1_J1772.svg", + "class": "medium" + } }, { "if": "socket:type1=1", "ifnot": "socket:type1=", "then": { - "en": "<div class='flex'><img class='w-12 mx-4' src='./assets/layers/charging_station/Type1_J1772.svg'/> <span><b>Type 1 <i>without</i> cable</b> (J1772)</span></div>", - "nl": "<div class='flex'><img class='w-12 mx-4' src='./assets/layers/charging_station/Type1_J1772.svg'/> <span><b>Type 1 <i>zonder</i> kabel</b> (J1772)</span></div>" + "en": "<b>Type 1 <i>without</i> cable</b> (J1772)", + "nl": "<b>Type 1 <i>zonder</i> kabel</b> (J1772)" + }, + "icon": { + "path": "./assets/layers/charging_station/Type1_J1772.svg", + "class": "medium" }, "hideInAnswer": { "or": [ @@ -344,17 +430,25 @@ ] }, "then": { - "en": "<div class='flex'><img class='w-12 mx-4' src='./assets/layers/charging_station/Type1_J1772.svg'/> <span><b>Type 1 <i>without</i> cable</b> (J1772)</span></div>", - "nl": "<div class='flex'><img class='w-12 mx-4' src='./assets/layers/charging_station/Type1_J1772.svg'/> <span><b>Type 1 <i>zonder</i> kabel</b> (J1772)</span></div>" + "en": "<b>Type 1 <i>without</i> cable</b> (J1772)", + "nl": "<b>Type 1 <i>zonder</i> kabel</b> (J1772)" }, - "hideInAnswer": true + "hideInAnswer": true, + "icon": { + "path": "./assets/layers/charging_station/Type1_J1772.svg", + "class": "medium" + } }, { "if": "socket:type1_combo=1", "ifnot": "socket:type1_combo=", "then": { - "en": "<div class='flex'><img class='w-12 mx-4' src='./assets/layers/charging_station/Type1-ccs.svg'/> <span><b>Type 1 CCS</b> (aka Type 1 Combo)</span></div>", - "nl": "<div class='flex'><img class='w-12 mx-4' src='./assets/layers/charging_station/Type1-ccs.svg'/> <span><b>Type 1 CCS</b> (ook gekend als Type 1 Combo)</span></div>" + "en": "<b>Type 1 CCS</b> (aka Type 1 Combo)", + "nl": "<b>Type 1 CCS</b> (ook gekend als Type 1 Combo)" + }, + "icon": { + "path": "./assets/layers/charging_station/Type1-ccs.svg", + "class": "medium" }, "hideInAnswer": { "or": [ @@ -391,17 +485,25 @@ ] }, "then": { - "en": "<div class='flex'><img class='w-12 mx-4' src='./assets/layers/charging_station/Type1-ccs.svg'/> <span><b>Type 1 CCS</b> (aka Type 1 Combo)</span></div>", - "nl": "<div class='flex'><img class='w-12 mx-4' src='./assets/layers/charging_station/Type1-ccs.svg'/> <span><b>Type 1 CCS</b> (ook gekend als Type 1 Combo)</span></div>" + "en": "<b>Type 1 CCS</b> (aka Type 1 Combo)", + "nl": "<b>Type 1 CCS</b> (ook gekend als Type 1 Combo)" }, - "hideInAnswer": true + "hideInAnswer": true, + "icon": { + "path": "./assets/layers/charging_station/Type1-ccs.svg", + "class": "medium" + } }, { "if": "socket:tesla_supercharger=1", "ifnot": "socket:tesla_supercharger=", "then": { - "en": "<div class='flex'><img class='w-12 mx-4' src='./assets/layers/charging_station/Tesla-hpwc-model-s.svg'/> <span><b>Tesla Supercharger</b></span></div>", - "nl": "<div class='flex'><img class='w-12 mx-4' src='./assets/layers/charging_station/Tesla-hpwc-model-s.svg'/> <span><b>Tesla Supercharger</b></span></div>" + "en": "<b>Tesla Supercharger</b>", + "nl": "<b>Tesla Supercharger</b>" + }, + "icon": { + "path": "./assets/layers/charging_station/Tesla-hpwc-model-s.svg", + "class": "medium" }, "hideInAnswer": { "or": [ @@ -438,17 +540,25 @@ ] }, "then": { - "en": "<div class='flex'><img class='w-12 mx-4' src='./assets/layers/charging_station/Tesla-hpwc-model-s.svg'/> <span><b>Tesla Supercharger</b></span></div>", - "nl": "<div class='flex'><img class='w-12 mx-4' src='./assets/layers/charging_station/Tesla-hpwc-model-s.svg'/> <span><b>Tesla Supercharger</b></span></div>" + "en": "<b>Tesla Supercharger</b>", + "nl": "<b>Tesla Supercharger</b>" }, - "hideInAnswer": true + "hideInAnswer": true, + "icon": { + "path": "./assets/layers/charging_station/Tesla-hpwc-model-s.svg", + "class": "medium" + } }, { "if": "socket:type2=1", "ifnot": "socket:type2=", "then": { - "en": "<div class='flex'><img class='w-12 mx-4' src='./assets/layers/charging_station/Type2_socket.svg'/> <span><b>Type 2</b> (mennekes)</span></div>", - "nl": "<div class='flex'><img class='w-12 mx-4' src='./assets/layers/charging_station/Type2_socket.svg'/> <span><b>Type 2</b> (mennekes)</span></div>" + "en": "<b>Type 2</b> (mennekes)", + "nl": "<b>Type 2</b> (mennekes)" + }, + "icon": { + "path": "./assets/layers/charging_station/Type2_socket.svg", + "class": "medium" }, "hideInAnswer": { "or": [ @@ -485,17 +595,25 @@ ] }, "then": { - "en": "<div class='flex'><img class='w-12 mx-4' src='./assets/layers/charging_station/Type2_socket.svg'/> <span><b>Type 2</b> (mennekes)</span></div>", - "nl": "<div class='flex'><img class='w-12 mx-4' src='./assets/layers/charging_station/Type2_socket.svg'/> <span><b>Type 2</b> (mennekes)</span></div>" + "en": "<b>Type 2</b> (mennekes)", + "nl": "<b>Type 2</b> (mennekes)" }, - "hideInAnswer": true + "hideInAnswer": true, + "icon": { + "path": "./assets/layers/charging_station/Type2_socket.svg", + "class": "medium" + } }, { "if": "socket:type2_combo=1", "ifnot": "socket:type2_combo=", "then": { - "en": "<div class='flex'><img class='w-12 mx-4' src='./assets/layers/charging_station/Type2_CCS.svg'/> <span><b>Type 2 CCS</b> (mennekes)</span></div>", - "nl": "<div class='flex'><img class='w-12 mx-4' src='./assets/layers/charging_station/Type2_CCS.svg'/> <span><b>Type 2 CCS</b> (mennekes)</span></div>" + "en": "<b>Type 2 CCS</b> (mennekes)", + "nl": "<b>Type 2 CCS</b> (mennekes)" + }, + "icon": { + "path": "./assets/layers/charging_station/Type2_CCS.svg", + "class": "medium" }, "hideInAnswer": { "or": [ @@ -532,17 +650,25 @@ ] }, "then": { - "en": "<div class='flex'><img class='w-12 mx-4' src='./assets/layers/charging_station/Type2_CCS.svg'/> <span><b>Type 2 CCS</b> (mennekes)</span></div>", - "nl": "<div class='flex'><img class='w-12 mx-4' src='./assets/layers/charging_station/Type2_CCS.svg'/> <span><b>Type 2 CCS</b> (mennekes)</span></div>" + "en": "<b>Type 2 CCS</b> (mennekes)", + "nl": "<b>Type 2 CCS</b> (mennekes)" }, - "hideInAnswer": true + "hideInAnswer": true, + "icon": { + "path": "./assets/layers/charging_station/Type2_CCS.svg", + "class": "medium" + } }, { "if": "socket:type2_cable=1", "ifnot": "socket:type2_cable=", "then": { - "en": "<div class='flex'><img class='w-12 mx-4' src='./assets/layers/charging_station/Type2_tethered.svg'/> <span><b>Type 2 with cable</b> (mennekes)</span></div>", - "nl": "<div class='flex'><img class='w-12 mx-4' src='./assets/layers/charging_station/Type2_tethered.svg'/> <span><b>Type 2 met kabel</b> (J1772)</span></div>" + "en": "<b>Type 2 with cable</b> (mennekes)", + "nl": "<b>Type 2 met kabel</b> (J1772)" + }, + "icon": { + "path": "./assets/layers/charging_station/Type2_tethered.svg", + "class": "medium" }, "hideInAnswer": { "or": [ @@ -579,17 +705,25 @@ ] }, "then": { - "en": "<div class='flex'><img class='w-12 mx-4' src='./assets/layers/charging_station/Type2_tethered.svg'/> <span><b>Type 2 with cable</b> (mennekes)</span></div>", - "nl": "<div class='flex'><img class='w-12 mx-4' src='./assets/layers/charging_station/Type2_tethered.svg'/> <span><b>Type 2 met kabel</b> (J1772)</span></div>" + "en": "<b>Type 2 with cable</b> (mennekes)", + "nl": "<b>Type 2 met kabel</b> (J1772)" }, - "hideInAnswer": true + "hideInAnswer": true, + "icon": { + "path": "./assets/layers/charging_station/Type2_tethered.svg", + "class": "medium" + } }, { "if": "socket:tesla_supercharger_ccs=1", "ifnot": "socket:tesla_supercharger_ccs=", "then": { - "en": "<div class='flex'><img class='w-12 mx-4' src='./assets/layers/charging_station/Type2_CCS.svg'/> <span><b>Tesla Supercharger CCS</b> (a branded type2_css)</span></div>", - "nl": "<div class='flex'><img class='w-12 mx-4' src='./assets/layers/charging_station/Type2_CCS.svg'/> <span><b>Tesla Supercharger CCS</b> (een type2 CCS met Tesla-logo)</span></div>" + "en": "<b>Tesla Supercharger CCS</b> (a branded type2_css)", + "nl": "<b>Tesla Supercharger CCS</b> (een type2 CCS met Tesla-logo)" + }, + "icon": { + "path": "./assets/layers/charging_station/Type2_CCS.svg", + "class": "medium" }, "hideInAnswer": { "or": [ @@ -626,17 +760,25 @@ ] }, "then": { - "en": "<div class='flex'><img class='w-12 mx-4' src='./assets/layers/charging_station/Type2_CCS.svg'/> <span><b>Tesla Supercharger CCS</b> (a branded type2_css)</span></div>", - "nl": "<div class='flex'><img class='w-12 mx-4' src='./assets/layers/charging_station/Type2_CCS.svg'/> <span><b>Tesla Supercharger CCS</b> (een type2 CCS met Tesla-logo)</span></div>" + "en": "<b>Tesla Supercharger CCS</b> (a branded type2_css)", + "nl": "<b>Tesla Supercharger CCS</b> (een type2 CCS met Tesla-logo)" }, - "hideInAnswer": true + "hideInAnswer": true, + "icon": { + "path": "./assets/layers/charging_station/Type2_CCS.svg", + "class": "medium" + } }, { "if": "socket:tesla_destination=1", "ifnot": "socket:tesla_destination=", "then": { - "en": "<div class='flex'><img class='w-12 mx-4' src='./assets/layers/charging_station/Tesla-hpwc-model-s.svg'/> <span><b>Tesla Supercharger (destination)</b></span></div>", - "nl": "<div class='flex'><img class='w-12 mx-4' src='./assets/layers/charging_station/Tesla-hpwc-model-s.svg'/> <span><b>Tesla Supercharger (destination)</b></span></div>" + "en": "<b>Tesla Supercharger (destination)</b>", + "nl": "<b>Tesla Supercharger (destination)</b>" + }, + "icon": { + "path": "./assets/layers/charging_station/Tesla-hpwc-model-s.svg", + "class": "medium" }, "hideInAnswer": { "or": [ @@ -674,21 +816,30 @@ "if": { "and": [ "socket:tesla_destination~*", - "socket:tesla_destination!=1" + "socket:tesla_destination!=1", + "_country=us" ] }, "then": { - "en": "<div class='flex'><img class='w-12 mx-4' src='./assets/layers/charging_station/Tesla-hpwc-model-s.svg'/> <span><b>Tesla Supercharger (destination)</b></span></div>", - "nl": "<div class='flex'><img class='w-12 mx-4' src='./assets/layers/charging_station/Tesla-hpwc-model-s.svg'/> <span><b>Tesla Supercharger (destination)</b></span></div>" + "en": "<b>Tesla Supercharger (destination)</b>", + "nl": "<b>Tesla Supercharger (destination)</b>" }, - "hideInAnswer": true + "hideInAnswer": true, + "icon": { + "path": "./assets/layers/charging_station/Tesla-hpwc-model-s.svg", + "class": "medium" + } }, { "if": "socket:tesla_destination=1", "ifnot": "socket:tesla_destination=", "then": { - "en": "<div class='flex'><img class='w-12 mx-4' src='./assets/layers/charging_station/Type2_tethered.svg'/> <span><b>Tesla supercharger (destination</b> (A Type 2 with cable branded as tesla)</span></div>", - "nl": "<div class='flex'><img class='w-12 mx-4' src='./assets/layers/charging_station/Type2_tethered.svg'/> <span><b>Tesla supercharger (destination</b> (Een Type 2 met kabel en Tesla-logo)</span></div>" + "en": "<b>Tesla supercharger (destination)</b> (A Type 2 with cable branded as tesla)", + "nl": "<b>Tesla supercharger (destination</b> (Een Type 2 met kabel en Tesla-logo)" + }, + "icon": { + "path": "./assets/layers/charging_station/Type2_tethered.svg", + "class": "medium" }, "hideInAnswer": { "or": [ @@ -726,21 +877,30 @@ "if": { "and": [ "socket:tesla_destination~*", - "socket:tesla_destination!=1" + "socket:tesla_destination!=1", + "_country!=us" ] }, "then": { - "en": "<div class='flex'><img class='w-12 mx-4' src='./assets/layers/charging_station/Type2_tethered.svg'/> <span><b>Tesla supercharger (destination</b> (A Type 2 with cable branded as tesla)</span></div>", - "nl": "<div class='flex'><img class='w-12 mx-4' src='./assets/layers/charging_station/Type2_tethered.svg'/> <span><b>Tesla supercharger (destination</b> (Een Type 2 met kabel en Tesla-logo)</span></div>" + "en": "<b>Tesla supercharger (destination)</b> (A Type 2 with cable branded as tesla)", + "nl": "<b>Tesla supercharger (destination</b> (Een Type 2 met kabel en Tesla-logo)" }, - "hideInAnswer": true + "hideInAnswer": true, + "icon": { + "path": "./assets/layers/charging_station/Type2_tethered.svg", + "class": "medium" + } }, { "if": "socket:USB-A=1", "ifnot": "socket:USB-A=", "then": { - "en": "<div class='flex'><img class='w-12 mx-4' src='./assets/layers/charging_station/usb_port.svg'/> <span><b>USB</b> to charge phones and small electronics</span></div>", - "nl": "<div class='flex'><img class='w-12 mx-4' src='./assets/layers/charging_station/usb_port.svg'/> <span><b>USB</b> om GSMs en kleine electronica op te laden</span></div>" + "en": "<b>USB</b> to charge phones and small electronics", + "nl": "<b>USB</b> om GSMs en kleine electronica op te laden" + }, + "icon": { + "path": "./assets/layers/charging_station/usb_port.svg", + "class": "medium" } }, { @@ -751,17 +911,25 @@ ] }, "then": { - "en": "<div class='flex'><img class='w-12 mx-4' src='./assets/layers/charging_station/usb_port.svg'/> <span><b>USB</b> to charge phones and small electronics</span></div>", - "nl": "<div class='flex'><img class='w-12 mx-4' src='./assets/layers/charging_station/usb_port.svg'/> <span><b>USB</b> om GSMs en kleine electronica op te laden</span></div>" + "en": "<b>USB</b> to charge phones and small electronics", + "nl": "<b>USB</b> om GSMs en kleine electronica op te laden" }, - "hideInAnswer": true + "hideInAnswer": true, + "icon": { + "path": "./assets/layers/charging_station/usb_port.svg", + "class": "medium" + } }, { "if": "socket:bosch_3pin=1", "ifnot": "socket:bosch_3pin=", "then": { - "en": "<div class='flex'><img class='w-12 mx-4' src='./assets/layers/charging_station/bosch-3pin.svg'/> <span><b>Bosch Active Connect with 3 pins</b> and cable</span></div>", - "nl": "<div class='flex'><img class='w-12 mx-4' src='./assets/layers/charging_station/bosch-3pin.svg'/> <span><b>Bosch Active Connect met 3 pinnen</b> aan een kabel</span></div>" + "en": "<b>Bosch Active Connect with 3 pins</b> and cable", + "nl": "<b>Bosch Active Connect met 3 pinnen</b> aan een kabel" + }, + "icon": { + "path": "./assets/layers/charging_station/bosch-3pin.svg", + "class": "medium" }, "hideInAnswer": { "or": [ @@ -794,17 +962,25 @@ ] }, "then": { - "en": "<div class='flex'><img class='w-12 mx-4' src='./assets/layers/charging_station/bosch-3pin.svg'/> <span><b>Bosch Active Connect with 3 pins</b> and cable</span></div>", - "nl": "<div class='flex'><img class='w-12 mx-4' src='./assets/layers/charging_station/bosch-3pin.svg'/> <span><b>Bosch Active Connect met 3 pinnen</b> aan een kabel</span></div>" + "en": "<b>Bosch Active Connect with 3 pins</b> and cable", + "nl": "<b>Bosch Active Connect met 3 pinnen</b> aan een kabel" }, - "hideInAnswer": true + "hideInAnswer": true, + "icon": { + "path": "./assets/layers/charging_station/bosch-3pin.svg", + "class": "medium" + } }, { "if": "socket:bosch_5pin=1", "ifnot": "socket:bosch_5pin=", "then": { - "en": "<div class='flex'><img class='w-12 mx-4' src='./assets/layers/charging_station/bosch-5pin.svg'/> <span><b>Bosch Active Connect with 5 pins</b> and cable</span></div>", - "nl": "<div class='flex'><img class='w-12 mx-4' src='./assets/layers/charging_station/bosch-5pin.svg'/> <span><b>Bosch Active Connect met 5 pinnen</b> aan een kabel</span></div>" + "en": "<b>Bosch Active Connect with 5 pins</b> and cable", + "nl": "<b>Bosch Active Connect met 5 pinnen</b> aan een kabel" + }, + "icon": { + "path": "./assets/layers/charging_station/bosch-5pin.svg", + "class": "medium" }, "hideInAnswer": { "or": [ @@ -837,10 +1013,14 @@ ] }, "then": { - "en": "<div class='flex'><img class='w-12 mx-4' src='./assets/layers/charging_station/bosch-5pin.svg'/> <span><b>Bosch Active Connect with 5 pins</b> and cable</span></div>", - "nl": "<div class='flex'><img class='w-12 mx-4' src='./assets/layers/charging_station/bosch-5pin.svg'/> <span><b>Bosch Active Connect met 5 pinnen</b> aan een kabel</span></div>" + "en": "<b>Bosch Active Connect with 5 pins</b> and cable", + "nl": "<b>Bosch Active Connect met 5 pinnen</b> aan een kabel" }, - "hideInAnswer": true + "hideInAnswer": true, + "icon": { + "path": "./assets/layers/charging_station/bosch-5pin.svg", + "class": "medium" + } } ] }, @@ -1099,11 +1279,11 @@ { "id": "plugs-12", "question": { - "en": "How much plugs of type <div style='display: inline-block'><b><b>Tesla supercharger (destination</b> (A Type 2 with cable branded as tesla)</b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/Type2_tethered.svg'/></div> are available here?", - "nl": "Hoeveel stekkers van type <div style='display: inline-block'><b><b>Tesla supercharger (destination</b> (Een Type 2 met kabel en Tesla-logo)</b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/Type2_tethered.svg'/></div> heeft dit oplaadpunt?" + "en": "How much plugs of type <div style='display: inline-block'><b><b>Tesla supercharger (destination)</b> (A Type 2 with cable branded as tesla)</b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/Type2_tethered.svg'/></div> are available here?", + "nl": "Hoeveel stekkers van type <div style='display: inline-block'><b><b>Tesla supercharger (destination)</b> (Een Type 2 met kabel en Tesla-logo)</b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/Type2_tethered.svg'/></div> heeft dit oplaadpunt?" }, "render": { - "en": "There are <b class='text-xl'>{socket:tesla_destination}</b> plugs of type <div style='display: inline-block'><b><b>Tesla supercharger (destination</b> (A Type 2 with cable branded as tesla)</b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/Type2_tethered.svg'/></div> available here", + "en": "There are <b class='text-xl'>{socket:tesla_destination}</b> plugs of type <div style='display: inline-block'><b><b>Tesla supercharger (destination)</b> (A Type 2 with cable branded as tesla)</b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/Type2_tethered.svg'/></div> available here", "nl": "Hier zijn <b class='text-xl'>{socket:tesla_destination}</b> stekkers van het type <div style='display: inline-block'><b><b>Tesla supercharger (destination</b> (Een Type 2 met kabel en Tesla-logo)</b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/Type2_tethered.svg'/></div>" }, "freeform": { @@ -1199,8 +1379,12 @@ { "if": "socket:socket:schuko:voltage=230 V", "then": { - "en": "<div style='display: inline-block'><b><b>Schuko wall plug</b> without ground pin (CEE7/4 type F)</b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/CEE7_4F.svg'/></div> outputs 230 volt", - "nl": "<div style='display: inline-block'><b><b>Schuko stekker</b> zonder aardingspin (CEE7/4 type F)</b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/CEE7_4F.svg'/></div> heeft een spanning van 230 volt" + "en": "<b>Schuko wall plug</b> without ground pin (CEE7/4 type F) outputs 230 volt", + "nl": "<b>Schuko stekker</b> zonder aardingspin (CEE7/4 type F) heeft een spanning van 230 volt" + }, + "icon": { + "path": "./assets/layers/charging_station/CEE7_4F.svg", + "class": "medium" } } ], @@ -1230,8 +1414,12 @@ { "if": "socket:socket:schuko:current=16 A", "then": { - "en": "<div style='display: inline-block'><b><b>Schuko wall plug</b> without ground pin (CEE7/4 type F)</b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/CEE7_4F.svg'/></div> outputs at most 16 A", - "nl": "<div style='display: inline-block'><b><b>Schuko stekker</b> zonder aardingspin (CEE7/4 type F)</b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/CEE7_4F.svg'/></div> levert een stroom van maximaal 16 A" + "en": "<b>Schuko wall plug</b> without ground pin (CEE7/4 type F) outputs at most 16 A", + "nl": "<b>Schuko stekker</b> zonder aardingspin (CEE7/4 type F) levert een stroom van maximaal 16 A" + }, + "icon": { + "path": "./assets/layers/charging_station/CEE7_4F.svg", + "class": "medium" } } ], @@ -1261,8 +1449,12 @@ { "if": "socket:socket:schuko:output=3.6 kw", "then": { - "en": "<div style='display: inline-block'><b><b>Schuko wall plug</b> without ground pin (CEE7/4 type F)</b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/CEE7_4F.svg'/></div> outputs at most 3.6 kw", - "nl": "<div style='display: inline-block'><b><b>Schuko stekker</b> zonder aardingspin (CEE7/4 type F)</b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/CEE7_4F.svg'/></div> levert een vermogen van maximaal 3.6 kw" + "en": "<b>Schuko wall plug</b> without ground pin (CEE7/4 type F) outputs at most 3.6 kw A", + "nl": "<b>Schuko stekker</b> zonder aardingspin (CEE7/4 type F) levert een vermogen van maximaal 3.6 kw A" + }, + "icon": { + "path": "./assets/layers/charging_station/CEE7_4F.svg", + "class": "medium" } } ], @@ -1292,8 +1484,12 @@ { "if": "socket:socket:typee:voltage=230 V", "then": { - "en": "<div style='display: inline-block'><b><b>European wall plug</b> with ground pin (CEE7/4 type E)</b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/TypeE.svg'/></div> outputs 230 volt", - "nl": "<div style='display: inline-block'><b><b>Europese stekker</b> met aardingspin (CEE7/4 type E)</b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/TypeE.svg'/></div> heeft een spanning van 230 volt" + "en": "<b>European wall plug</b> with ground pin (CEE7/4 type E) outputs 230 volt", + "nl": "<b>Europese stekker</b> met aardingspin (CEE7/4 type E) heeft een spanning van 230 volt" + }, + "icon": { + "path": "./assets/layers/charging_station/TypeE.svg", + "class": "medium" } } ], @@ -1323,8 +1519,12 @@ { "if": "socket:socket:typee:current=16 A", "then": { - "en": "<div style='display: inline-block'><b><b>European wall plug</b> with ground pin (CEE7/4 type E)</b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/TypeE.svg'/></div> outputs at most 16 A", - "nl": "<div style='display: inline-block'><b><b>Europese stekker</b> met aardingspin (CEE7/4 type E)</b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/TypeE.svg'/></div> levert een stroom van maximaal 16 A" + "en": "<b>European wall plug</b> with ground pin (CEE7/4 type E) outputs at most 16 A", + "nl": "<b>Europese stekker</b> met aardingspin (CEE7/4 type E) levert een stroom van maximaal 16 A" + }, + "icon": { + "path": "./assets/layers/charging_station/TypeE.svg", + "class": "medium" } } ], @@ -1354,15 +1554,23 @@ { "if": "socket:socket:typee:output=3 kw", "then": { - "en": "<div style='display: inline-block'><b><b>European wall plug</b> with ground pin (CEE7/4 type E)</b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/TypeE.svg'/></div> outputs at most 3 kw", - "nl": "<div style='display: inline-block'><b><b>Europese stekker</b> met aardingspin (CEE7/4 type E)</b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/TypeE.svg'/></div> levert een vermogen van maximaal 3 kw" + "en": "<b>European wall plug</b> with ground pin (CEE7/4 type E) outputs at most 3 kw A", + "nl": "<b>Europese stekker</b> met aardingspin (CEE7/4 type E) levert een vermogen van maximaal 3 kw A" + }, + "icon": { + "path": "./assets/layers/charging_station/TypeE.svg", + "class": "medium" } }, { "if": "socket:socket:typee:output=22 kw", "then": { - "en": "<div style='display: inline-block'><b><b>European wall plug</b> with ground pin (CEE7/4 type E)</b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/TypeE.svg'/></div> outputs at most 22 kw", - "nl": "<div style='display: inline-block'><b><b>Europese stekker</b> met aardingspin (CEE7/4 type E)</b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/TypeE.svg'/></div> levert een vermogen van maximaal 22 kw" + "en": "<b>European wall plug</b> with ground pin (CEE7/4 type E) outputs at most 22 kw A", + "nl": "<b>Europese stekker</b> met aardingspin (CEE7/4 type E) levert een vermogen van maximaal 22 kw A" + }, + "icon": { + "path": "./assets/layers/charging_station/TypeE.svg", + "class": "medium" } } ], @@ -1392,8 +1600,12 @@ { "if": "socket:socket:chademo:voltage=500 V", "then": { - "en": "<div style='display: inline-block'><b><b>Chademo</b></b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/Chademo_type4.svg'/></div> outputs 500 volt", - "nl": "<div style='display: inline-block'><b><b>Chademo</b></b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/Chademo_type4.svg'/></div> heeft een spanning van 500 volt" + "en": "<b>Chademo</b> outputs 500 volt", + "nl": "<b>Chademo</b> heeft een spanning van 500 volt" + }, + "icon": { + "path": "./assets/layers/charging_station/Chademo_type4.svg", + "class": "medium" } } ], @@ -1423,8 +1635,12 @@ { "if": "socket:socket:chademo:current=120 A", "then": { - "en": "<div style='display: inline-block'><b><b>Chademo</b></b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/Chademo_type4.svg'/></div> outputs at most 120 A", - "nl": "<div style='display: inline-block'><b><b>Chademo</b></b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/Chademo_type4.svg'/></div> levert een stroom van maximaal 120 A" + "en": "<b>Chademo</b> outputs at most 120 A", + "nl": "<b>Chademo</b> levert een stroom van maximaal 120 A" + }, + "icon": { + "path": "./assets/layers/charging_station/Chademo_type4.svg", + "class": "medium" } } ], @@ -1454,8 +1670,12 @@ { "if": "socket:socket:chademo:output=50 kw", "then": { - "en": "<div style='display: inline-block'><b><b>Chademo</b></b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/Chademo_type4.svg'/></div> outputs at most 50 kw", - "nl": "<div style='display: inline-block'><b><b>Chademo</b></b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/Chademo_type4.svg'/></div> levert een vermogen van maximaal 50 kw" + "en": "<b>Chademo</b> outputs at most 50 kw A", + "nl": "<b>Chademo</b> levert een vermogen van maximaal 50 kw A" + }, + "icon": { + "path": "./assets/layers/charging_station/Chademo_type4.svg", + "class": "medium" } } ], @@ -1485,15 +1705,23 @@ { "if": "socket:socket:type1_cable:voltage=200 V", "then": { - "en": "<div style='display: inline-block'><b><b>Type 1 with cable</b> (J1772)</b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/Type1_J1772.svg'/></div> outputs 200 volt", - "nl": "<div style='display: inline-block'><b><b>Type 1 met kabel</b> (J1772)</b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/Type1_J1772.svg'/></div> heeft een spanning van 200 volt" + "en": "<b>Type 1 with cable</b> (J1772) outputs 200 volt", + "nl": "<b>Type 1 met kabel</b> (J1772) heeft een spanning van 200 volt" + }, + "icon": { + "path": "./assets/layers/charging_station/Type1_J1772.svg", + "class": "medium" } }, { "if": "socket:socket:type1_cable:voltage=240 V", "then": { - "en": "<div style='display: inline-block'><b><b>Type 1 with cable</b> (J1772)</b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/Type1_J1772.svg'/></div> outputs 240 volt", - "nl": "<div style='display: inline-block'><b><b>Type 1 met kabel</b> (J1772)</b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/Type1_J1772.svg'/></div> heeft een spanning van 240 volt" + "en": "<b>Type 1 with cable</b> (J1772) outputs 240 volt", + "nl": "<b>Type 1 met kabel</b> (J1772) heeft een spanning van 240 volt" + }, + "icon": { + "path": "./assets/layers/charging_station/Type1_J1772.svg", + "class": "medium" } } ], @@ -1523,8 +1751,12 @@ { "if": "socket:socket:type1_cable:current=32 A", "then": { - "en": "<div style='display: inline-block'><b><b>Type 1 with cable</b> (J1772)</b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/Type1_J1772.svg'/></div> outputs at most 32 A", - "nl": "<div style='display: inline-block'><b><b>Type 1 met kabel</b> (J1772)</b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/Type1_J1772.svg'/></div> levert een stroom van maximaal 32 A" + "en": "<b>Type 1 with cable</b> (J1772) outputs at most 32 A", + "nl": "<b>Type 1 met kabel</b> (J1772) levert een stroom van maximaal 32 A" + }, + "icon": { + "path": "./assets/layers/charging_station/Type1_J1772.svg", + "class": "medium" } } ], @@ -1554,15 +1786,23 @@ { "if": "socket:socket:type1_cable:output=3.7 kw", "then": { - "en": "<div style='display: inline-block'><b><b>Type 1 with cable</b> (J1772)</b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/Type1_J1772.svg'/></div> outputs at most 3.7 kw", - "nl": "<div style='display: inline-block'><b><b>Type 1 met kabel</b> (J1772)</b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/Type1_J1772.svg'/></div> levert een vermogen van maximaal 3.7 kw" + "en": "<b>Type 1 with cable</b> (J1772) outputs at most 3.7 kw A", + "nl": "<b>Type 1 met kabel</b> (J1772) levert een vermogen van maximaal 3.7 kw A" + }, + "icon": { + "path": "./assets/layers/charging_station/Type1_J1772.svg", + "class": "medium" } }, { "if": "socket:socket:type1_cable:output=7 kw", "then": { - "en": "<div style='display: inline-block'><b><b>Type 1 with cable</b> (J1772)</b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/Type1_J1772.svg'/></div> outputs at most 7 kw", - "nl": "<div style='display: inline-block'><b><b>Type 1 met kabel</b> (J1772)</b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/Type1_J1772.svg'/></div> levert een vermogen van maximaal 7 kw" + "en": "<b>Type 1 with cable</b> (J1772) outputs at most 7 kw A", + "nl": "<b>Type 1 met kabel</b> (J1772) levert een vermogen van maximaal 7 kw A" + }, + "icon": { + "path": "./assets/layers/charging_station/Type1_J1772.svg", + "class": "medium" } } ], @@ -1592,15 +1832,23 @@ { "if": "socket:socket:type1:voltage=200 V", "then": { - "en": "<div style='display: inline-block'><b><b>Type 1 <i>without</i> cable</b> (J1772)</b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/Type1_J1772.svg'/></div> outputs 200 volt", - "nl": "<div style='display: inline-block'><b><b>Type 1 <i>zonder</i> kabel</b> (J1772)</b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/Type1_J1772.svg'/></div> heeft een spanning van 200 volt" + "en": "<b>Type 1 <i>without</i> cable</b> (J1772) outputs 200 volt", + "nl": "<b>Type 1 <i>zonder</i> kabel</b> (J1772) heeft een spanning van 200 volt" + }, + "icon": { + "path": "./assets/layers/charging_station/Type1_J1772.svg", + "class": "medium" } }, { "if": "socket:socket:type1:voltage=240 V", "then": { - "en": "<div style='display: inline-block'><b><b>Type 1 <i>without</i> cable</b> (J1772)</b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/Type1_J1772.svg'/></div> outputs 240 volt", - "nl": "<div style='display: inline-block'><b><b>Type 1 <i>zonder</i> kabel</b> (J1772)</b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/Type1_J1772.svg'/></div> heeft een spanning van 240 volt" + "en": "<b>Type 1 <i>without</i> cable</b> (J1772) outputs 240 volt", + "nl": "<b>Type 1 <i>zonder</i> kabel</b> (J1772) heeft een spanning van 240 volt" + }, + "icon": { + "path": "./assets/layers/charging_station/Type1_J1772.svg", + "class": "medium" } } ], @@ -1630,8 +1878,12 @@ { "if": "socket:socket:type1:current=32 A", "then": { - "en": "<div style='display: inline-block'><b><b>Type 1 <i>without</i> cable</b> (J1772)</b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/Type1_J1772.svg'/></div> outputs at most 32 A", - "nl": "<div style='display: inline-block'><b><b>Type 1 <i>zonder</i> kabel</b> (J1772)</b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/Type1_J1772.svg'/></div> levert een stroom van maximaal 32 A" + "en": "<b>Type 1 <i>without</i> cable</b> (J1772) outputs at most 32 A", + "nl": "<b>Type 1 <i>zonder</i> kabel</b> (J1772) levert een stroom van maximaal 32 A" + }, + "icon": { + "path": "./assets/layers/charging_station/Type1_J1772.svg", + "class": "medium" } } ], @@ -1661,29 +1913,45 @@ { "if": "socket:socket:type1:output=3.7 kw", "then": { - "en": "<div style='display: inline-block'><b><b>Type 1 <i>without</i> cable</b> (J1772)</b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/Type1_J1772.svg'/></div> outputs at most 3.7 kw", - "nl": "<div style='display: inline-block'><b><b>Type 1 <i>zonder</i> kabel</b> (J1772)</b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/Type1_J1772.svg'/></div> levert een vermogen van maximaal 3.7 kw" + "en": "<b>Type 1 <i>without</i> cable</b> (J1772) outputs at most 3.7 kw A", + "nl": "<b>Type 1 <i>zonder</i> kabel</b> (J1772) levert een vermogen van maximaal 3.7 kw A" + }, + "icon": { + "path": "./assets/layers/charging_station/Type1_J1772.svg", + "class": "medium" } }, { "if": "socket:socket:type1:output=6.6 kw", "then": { - "en": "<div style='display: inline-block'><b><b>Type 1 <i>without</i> cable</b> (J1772)</b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/Type1_J1772.svg'/></div> outputs at most 6.6 kw", - "nl": "<div style='display: inline-block'><b><b>Type 1 <i>zonder</i> kabel</b> (J1772)</b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/Type1_J1772.svg'/></div> levert een vermogen van maximaal 6.6 kw" + "en": "<b>Type 1 <i>without</i> cable</b> (J1772) outputs at most 6.6 kw A", + "nl": "<b>Type 1 <i>zonder</i> kabel</b> (J1772) levert een vermogen van maximaal 6.6 kw A" + }, + "icon": { + "path": "./assets/layers/charging_station/Type1_J1772.svg", + "class": "medium" } }, { "if": "socket:socket:type1:output=7 kw", "then": { - "en": "<div style='display: inline-block'><b><b>Type 1 <i>without</i> cable</b> (J1772)</b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/Type1_J1772.svg'/></div> outputs at most 7 kw", - "nl": "<div style='display: inline-block'><b><b>Type 1 <i>zonder</i> kabel</b> (J1772)</b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/Type1_J1772.svg'/></div> levert een vermogen van maximaal 7 kw" + "en": "<b>Type 1 <i>without</i> cable</b> (J1772) outputs at most 7 kw A", + "nl": "<b>Type 1 <i>zonder</i> kabel</b> (J1772) levert een vermogen van maximaal 7 kw A" + }, + "icon": { + "path": "./assets/layers/charging_station/Type1_J1772.svg", + "class": "medium" } }, { "if": "socket:socket:type1:output=7.2 kw", "then": { - "en": "<div style='display: inline-block'><b><b>Type 1 <i>without</i> cable</b> (J1772)</b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/Type1_J1772.svg'/></div> outputs at most 7.2 kw", - "nl": "<div style='display: inline-block'><b><b>Type 1 <i>zonder</i> kabel</b> (J1772)</b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/Type1_J1772.svg'/></div> levert een vermogen van maximaal 7.2 kw" + "en": "<b>Type 1 <i>without</i> cable</b> (J1772) outputs at most 7.2 kw A", + "nl": "<b>Type 1 <i>zonder</i> kabel</b> (J1772) levert een vermogen van maximaal 7.2 kw A" + }, + "icon": { + "path": "./assets/layers/charging_station/Type1_J1772.svg", + "class": "medium" } } ], @@ -1713,15 +1981,23 @@ { "if": "socket:socket:type1_combo:voltage=400 V", "then": { - "en": "<div style='display: inline-block'><b><b>Type 1 CCS</b> (aka Type 1 Combo)</b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/Type1-ccs.svg'/></div> outputs 400 volt", - "nl": "<div style='display: inline-block'><b><b>Type 1 CCS</b> (ook gekend als Type 1 Combo)</b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/Type1-ccs.svg'/></div> heeft een spanning van 400 volt" + "en": "<b>Type 1 CCS</b> (aka Type 1 Combo) outputs 400 volt", + "nl": "<b>Type 1 CCS</b> (ook gekend als Type 1 Combo) heeft een spanning van 400 volt" + }, + "icon": { + "path": "./assets/layers/charging_station/Type1-ccs.svg", + "class": "medium" } }, { "if": "socket:socket:type1_combo:voltage=1000 V", "then": { - "en": "<div style='display: inline-block'><b><b>Type 1 CCS</b> (aka Type 1 Combo)</b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/Type1-ccs.svg'/></div> outputs 1000 volt", - "nl": "<div style='display: inline-block'><b><b>Type 1 CCS</b> (ook gekend als Type 1 Combo)</b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/Type1-ccs.svg'/></div> heeft een spanning van 1000 volt" + "en": "<b>Type 1 CCS</b> (aka Type 1 Combo) outputs 1000 volt", + "nl": "<b>Type 1 CCS</b> (ook gekend als Type 1 Combo) heeft een spanning van 1000 volt" + }, + "icon": { + "path": "./assets/layers/charging_station/Type1-ccs.svg", + "class": "medium" } } ], @@ -1751,15 +2027,23 @@ { "if": "socket:socket:type1_combo:current=50 A", "then": { - "en": "<div style='display: inline-block'><b><b>Type 1 CCS</b> (aka Type 1 Combo)</b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/Type1-ccs.svg'/></div> outputs at most 50 A", - "nl": "<div style='display: inline-block'><b><b>Type 1 CCS</b> (ook gekend als Type 1 Combo)</b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/Type1-ccs.svg'/></div> levert een stroom van maximaal 50 A" + "en": "<b>Type 1 CCS</b> (aka Type 1 Combo) outputs at most 50 A", + "nl": "<b>Type 1 CCS</b> (ook gekend als Type 1 Combo) levert een stroom van maximaal 50 A" + }, + "icon": { + "path": "./assets/layers/charging_station/Type1-ccs.svg", + "class": "medium" } }, { "if": "socket:socket:type1_combo:current=125 A", "then": { - "en": "<div style='display: inline-block'><b><b>Type 1 CCS</b> (aka Type 1 Combo)</b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/Type1-ccs.svg'/></div> outputs at most 125 A", - "nl": "<div style='display: inline-block'><b><b>Type 1 CCS</b> (ook gekend als Type 1 Combo)</b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/Type1-ccs.svg'/></div> levert een stroom van maximaal 125 A" + "en": "<b>Type 1 CCS</b> (aka Type 1 Combo) outputs at most 125 A", + "nl": "<b>Type 1 CCS</b> (ook gekend als Type 1 Combo) levert een stroom van maximaal 125 A" + }, + "icon": { + "path": "./assets/layers/charging_station/Type1-ccs.svg", + "class": "medium" } } ], @@ -1789,29 +2073,45 @@ { "if": "socket:socket:type1_combo:output=50 kw", "then": { - "en": "<div style='display: inline-block'><b><b>Type 1 CCS</b> (aka Type 1 Combo)</b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/Type1-ccs.svg'/></div> outputs at most 50 kw", - "nl": "<div style='display: inline-block'><b><b>Type 1 CCS</b> (ook gekend als Type 1 Combo)</b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/Type1-ccs.svg'/></div> levert een vermogen van maximaal 50 kw" + "en": "<b>Type 1 CCS</b> (aka Type 1 Combo) outputs at most 50 kw A", + "nl": "<b>Type 1 CCS</b> (ook gekend als Type 1 Combo) levert een vermogen van maximaal 50 kw A" + }, + "icon": { + "path": "./assets/layers/charging_station/Type1-ccs.svg", + "class": "medium" } }, { "if": "socket:socket:type1_combo:output=62.5 kw", "then": { - "en": "<div style='display: inline-block'><b><b>Type 1 CCS</b> (aka Type 1 Combo)</b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/Type1-ccs.svg'/></div> outputs at most 62.5 kw", - "nl": "<div style='display: inline-block'><b><b>Type 1 CCS</b> (ook gekend als Type 1 Combo)</b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/Type1-ccs.svg'/></div> levert een vermogen van maximaal 62.5 kw" + "en": "<b>Type 1 CCS</b> (aka Type 1 Combo) outputs at most 62.5 kw A", + "nl": "<b>Type 1 CCS</b> (ook gekend als Type 1 Combo) levert een vermogen van maximaal 62.5 kw A" + }, + "icon": { + "path": "./assets/layers/charging_station/Type1-ccs.svg", + "class": "medium" } }, { "if": "socket:socket:type1_combo:output=150 kw", "then": { - "en": "<div style='display: inline-block'><b><b>Type 1 CCS</b> (aka Type 1 Combo)</b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/Type1-ccs.svg'/></div> outputs at most 150 kw", - "nl": "<div style='display: inline-block'><b><b>Type 1 CCS</b> (ook gekend als Type 1 Combo)</b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/Type1-ccs.svg'/></div> levert een vermogen van maximaal 150 kw" + "en": "<b>Type 1 CCS</b> (aka Type 1 Combo) outputs at most 150 kw A", + "nl": "<b>Type 1 CCS</b> (ook gekend als Type 1 Combo) levert een vermogen van maximaal 150 kw A" + }, + "icon": { + "path": "./assets/layers/charging_station/Type1-ccs.svg", + "class": "medium" } }, { "if": "socket:socket:type1_combo:output=350 kw", "then": { - "en": "<div style='display: inline-block'><b><b>Type 1 CCS</b> (aka Type 1 Combo)</b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/Type1-ccs.svg'/></div> outputs at most 350 kw", - "nl": "<div style='display: inline-block'><b><b>Type 1 CCS</b> (ook gekend als Type 1 Combo)</b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/Type1-ccs.svg'/></div> levert een vermogen van maximaal 350 kw" + "en": "<b>Type 1 CCS</b> (aka Type 1 Combo) outputs at most 350 kw A", + "nl": "<b>Type 1 CCS</b> (ook gekend als Type 1 Combo) levert een vermogen van maximaal 350 kw A" + }, + "icon": { + "path": "./assets/layers/charging_station/Type1-ccs.svg", + "class": "medium" } } ], @@ -1841,8 +2141,12 @@ { "if": "socket:socket:tesla_supercharger:voltage=480 V", "then": { - "en": "<div style='display: inline-block'><b><b>Tesla Supercharger</b></b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/Tesla-hpwc-model-s.svg'/></div> outputs 480 volt", - "nl": "<div style='display: inline-block'><b><b>Tesla Supercharger</b></b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/Tesla-hpwc-model-s.svg'/></div> heeft een spanning van 480 volt" + "en": "<b>Tesla Supercharger</b> outputs 480 volt", + "nl": "<b>Tesla Supercharger</b> heeft een spanning van 480 volt" + }, + "icon": { + "path": "./assets/layers/charging_station/Tesla-hpwc-model-s.svg", + "class": "medium" } } ], @@ -1872,15 +2176,23 @@ { "if": "socket:socket:tesla_supercharger:current=125 A", "then": { - "en": "<div style='display: inline-block'><b><b>Tesla Supercharger</b></b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/Tesla-hpwc-model-s.svg'/></div> outputs at most 125 A", - "nl": "<div style='display: inline-block'><b><b>Tesla Supercharger</b></b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/Tesla-hpwc-model-s.svg'/></div> levert een stroom van maximaal 125 A" + "en": "<b>Tesla Supercharger</b> outputs at most 125 A", + "nl": "<b>Tesla Supercharger</b> levert een stroom van maximaal 125 A" + }, + "icon": { + "path": "./assets/layers/charging_station/Tesla-hpwc-model-s.svg", + "class": "medium" } }, { "if": "socket:socket:tesla_supercharger:current=350 A", "then": { - "en": "<div style='display: inline-block'><b><b>Tesla Supercharger</b></b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/Tesla-hpwc-model-s.svg'/></div> outputs at most 350 A", - "nl": "<div style='display: inline-block'><b><b>Tesla Supercharger</b></b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/Tesla-hpwc-model-s.svg'/></div> levert een stroom van maximaal 350 A" + "en": "<b>Tesla Supercharger</b> outputs at most 350 A", + "nl": "<b>Tesla Supercharger</b> levert een stroom van maximaal 350 A" + }, + "icon": { + "path": "./assets/layers/charging_station/Tesla-hpwc-model-s.svg", + "class": "medium" } } ], @@ -1910,22 +2222,34 @@ { "if": "socket:socket:tesla_supercharger:output=120 kw", "then": { - "en": "<div style='display: inline-block'><b><b>Tesla Supercharger</b></b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/Tesla-hpwc-model-s.svg'/></div> outputs at most 120 kw", - "nl": "<div style='display: inline-block'><b><b>Tesla Supercharger</b></b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/Tesla-hpwc-model-s.svg'/></div> levert een vermogen van maximaal 120 kw" + "en": "<b>Tesla Supercharger</b> outputs at most 120 kw A", + "nl": "<b>Tesla Supercharger</b> levert een vermogen van maximaal 120 kw A" + }, + "icon": { + "path": "./assets/layers/charging_station/Tesla-hpwc-model-s.svg", + "class": "medium" } }, { "if": "socket:socket:tesla_supercharger:output=150 kw", "then": { - "en": "<div style='display: inline-block'><b><b>Tesla Supercharger</b></b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/Tesla-hpwc-model-s.svg'/></div> outputs at most 150 kw", - "nl": "<div style='display: inline-block'><b><b>Tesla Supercharger</b></b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/Tesla-hpwc-model-s.svg'/></div> levert een vermogen van maximaal 150 kw" + "en": "<b>Tesla Supercharger</b> outputs at most 150 kw A", + "nl": "<b>Tesla Supercharger</b> levert een vermogen van maximaal 150 kw A" + }, + "icon": { + "path": "./assets/layers/charging_station/Tesla-hpwc-model-s.svg", + "class": "medium" } }, { "if": "socket:socket:tesla_supercharger:output=250 kw", "then": { - "en": "<div style='display: inline-block'><b><b>Tesla Supercharger</b></b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/Tesla-hpwc-model-s.svg'/></div> outputs at most 250 kw", - "nl": "<div style='display: inline-block'><b><b>Tesla Supercharger</b></b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/Tesla-hpwc-model-s.svg'/></div> levert een vermogen van maximaal 250 kw" + "en": "<b>Tesla Supercharger</b> outputs at most 250 kw A", + "nl": "<b>Tesla Supercharger</b> levert een vermogen van maximaal 250 kw A" + }, + "icon": { + "path": "./assets/layers/charging_station/Tesla-hpwc-model-s.svg", + "class": "medium" } } ], @@ -1955,15 +2279,23 @@ { "if": "socket:socket:type2:voltage=230 V", "then": { - "en": "<div style='display: inline-block'><b><b>Type 2</b> (mennekes)</b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/Type2_socket.svg'/></div> outputs 230 volt", - "nl": "<div style='display: inline-block'><b><b>Type 2</b> (mennekes)</b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/Type2_socket.svg'/></div> heeft een spanning van 230 volt" + "en": "<b>Type 2</b> (mennekes) outputs 230 volt", + "nl": "<b>Type 2</b> (mennekes) heeft een spanning van 230 volt" + }, + "icon": { + "path": "./assets/layers/charging_station/Type2_socket.svg", + "class": "medium" } }, { "if": "socket:socket:type2:voltage=400 V", "then": { - "en": "<div style='display: inline-block'><b><b>Type 2</b> (mennekes)</b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/Type2_socket.svg'/></div> outputs 400 volt", - "nl": "<div style='display: inline-block'><b><b>Type 2</b> (mennekes)</b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/Type2_socket.svg'/></div> heeft een spanning van 400 volt" + "en": "<b>Type 2</b> (mennekes) outputs 400 volt", + "nl": "<b>Type 2</b> (mennekes) heeft een spanning van 400 volt" + }, + "icon": { + "path": "./assets/layers/charging_station/Type2_socket.svg", + "class": "medium" } } ], @@ -1993,15 +2325,23 @@ { "if": "socket:socket:type2:current=16 A", "then": { - "en": "<div style='display: inline-block'><b><b>Type 2</b> (mennekes)</b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/Type2_socket.svg'/></div> outputs at most 16 A", - "nl": "<div style='display: inline-block'><b><b>Type 2</b> (mennekes)</b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/Type2_socket.svg'/></div> levert een stroom van maximaal 16 A" + "en": "<b>Type 2</b> (mennekes) outputs at most 16 A", + "nl": "<b>Type 2</b> (mennekes) levert een stroom van maximaal 16 A" + }, + "icon": { + "path": "./assets/layers/charging_station/Type2_socket.svg", + "class": "medium" } }, { "if": "socket:socket:type2:current=32 A", "then": { - "en": "<div style='display: inline-block'><b><b>Type 2</b> (mennekes)</b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/Type2_socket.svg'/></div> outputs at most 32 A", - "nl": "<div style='display: inline-block'><b><b>Type 2</b> (mennekes)</b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/Type2_socket.svg'/></div> levert een stroom van maximaal 32 A" + "en": "<b>Type 2</b> (mennekes) outputs at most 32 A", + "nl": "<b>Type 2</b> (mennekes) levert een stroom van maximaal 32 A" + }, + "icon": { + "path": "./assets/layers/charging_station/Type2_socket.svg", + "class": "medium" } } ], @@ -2031,15 +2371,23 @@ { "if": "socket:socket:type2:output=11 kw", "then": { - "en": "<div style='display: inline-block'><b><b>Type 2</b> (mennekes)</b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/Type2_socket.svg'/></div> outputs at most 11 kw", - "nl": "<div style='display: inline-block'><b><b>Type 2</b> (mennekes)</b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/Type2_socket.svg'/></div> levert een vermogen van maximaal 11 kw" + "en": "<b>Type 2</b> (mennekes) outputs at most 11 kw A", + "nl": "<b>Type 2</b> (mennekes) levert een vermogen van maximaal 11 kw A" + }, + "icon": { + "path": "./assets/layers/charging_station/Type2_socket.svg", + "class": "medium" } }, { "if": "socket:socket:type2:output=22 kw", "then": { - "en": "<div style='display: inline-block'><b><b>Type 2</b> (mennekes)</b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/Type2_socket.svg'/></div> outputs at most 22 kw", - "nl": "<div style='display: inline-block'><b><b>Type 2</b> (mennekes)</b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/Type2_socket.svg'/></div> levert een vermogen van maximaal 22 kw" + "en": "<b>Type 2</b> (mennekes) outputs at most 22 kw A", + "nl": "<b>Type 2</b> (mennekes) levert een vermogen van maximaal 22 kw A" + }, + "icon": { + "path": "./assets/layers/charging_station/Type2_socket.svg", + "class": "medium" } } ], @@ -2069,15 +2417,23 @@ { "if": "socket:socket:type2_combo:voltage=500 V", "then": { - "en": "<div style='display: inline-block'><b><b>Type 2 CCS</b> (mennekes)</b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/Type2_CCS.svg'/></div> outputs 500 volt", - "nl": "<div style='display: inline-block'><b><b>Type 2 CCS</b> (mennekes)</b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/Type2_CCS.svg'/></div> heeft een spanning van 500 volt" + "en": "<b>Type 2 CCS</b> (mennekes) outputs 500 volt", + "nl": "<b>Type 2 CCS</b> (mennekes) heeft een spanning van 500 volt" + }, + "icon": { + "path": "./assets/layers/charging_station/Type2_CCS.svg", + "class": "medium" } }, { "if": "socket:socket:type2_combo:voltage=920 V", "then": { - "en": "<div style='display: inline-block'><b><b>Type 2 CCS</b> (mennekes)</b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/Type2_CCS.svg'/></div> outputs 920 volt", - "nl": "<div style='display: inline-block'><b><b>Type 2 CCS</b> (mennekes)</b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/Type2_CCS.svg'/></div> heeft een spanning van 920 volt" + "en": "<b>Type 2 CCS</b> (mennekes) outputs 920 volt", + "nl": "<b>Type 2 CCS</b> (mennekes) heeft een spanning van 920 volt" + }, + "icon": { + "path": "./assets/layers/charging_station/Type2_CCS.svg", + "class": "medium" } } ], @@ -2107,15 +2463,23 @@ { "if": "socket:socket:type2_combo:current=125 A", "then": { - "en": "<div style='display: inline-block'><b><b>Type 2 CCS</b> (mennekes)</b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/Type2_CCS.svg'/></div> outputs at most 125 A", - "nl": "<div style='display: inline-block'><b><b>Type 2 CCS</b> (mennekes)</b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/Type2_CCS.svg'/></div> levert een stroom van maximaal 125 A" + "en": "<b>Type 2 CCS</b> (mennekes) outputs at most 125 A", + "nl": "<b>Type 2 CCS</b> (mennekes) levert een stroom van maximaal 125 A" + }, + "icon": { + "path": "./assets/layers/charging_station/Type2_CCS.svg", + "class": "medium" } }, { "if": "socket:socket:type2_combo:current=350 A", "then": { - "en": "<div style='display: inline-block'><b><b>Type 2 CCS</b> (mennekes)</b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/Type2_CCS.svg'/></div> outputs at most 350 A", - "nl": "<div style='display: inline-block'><b><b>Type 2 CCS</b> (mennekes)</b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/Type2_CCS.svg'/></div> levert een stroom van maximaal 350 A" + "en": "<b>Type 2 CCS</b> (mennekes) outputs at most 350 A", + "nl": "<b>Type 2 CCS</b> (mennekes) levert een stroom van maximaal 350 A" + }, + "icon": { + "path": "./assets/layers/charging_station/Type2_CCS.svg", + "class": "medium" } } ], @@ -2145,8 +2509,12 @@ { "if": "socket:socket:type2_combo:output=50 kw", "then": { - "en": "<div style='display: inline-block'><b><b>Type 2 CCS</b> (mennekes)</b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/Type2_CCS.svg'/></div> outputs at most 50 kw", - "nl": "<div style='display: inline-block'><b><b>Type 2 CCS</b> (mennekes)</b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/Type2_CCS.svg'/></div> levert een vermogen van maximaal 50 kw" + "en": "<b>Type 2 CCS</b> (mennekes) outputs at most 50 kw A", + "nl": "<b>Type 2 CCS</b> (mennekes) levert een vermogen van maximaal 50 kw A" + }, + "icon": { + "path": "./assets/layers/charging_station/Type2_CCS.svg", + "class": "medium" } } ], @@ -2176,15 +2544,23 @@ { "if": "socket:socket:type2_cable:voltage=230 V", "then": { - "en": "<div style='display: inline-block'><b><b>Type 2 with cable</b> (mennekes)</b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/Type2_tethered.svg'/></div> outputs 230 volt", - "nl": "<div style='display: inline-block'><b><b>Type 2 met kabel</b> (J1772)</b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/Type2_tethered.svg'/></div> heeft een spanning van 230 volt" + "en": "<b>Type 2 with cable</b> (mennekes) outputs 230 volt", + "nl": "<b>Type 2 met kabel</b> (J1772) heeft een spanning van 230 volt" + }, + "icon": { + "path": "./assets/layers/charging_station/Type2_tethered.svg", + "class": "medium" } }, { "if": "socket:socket:type2_cable:voltage=400 V", "then": { - "en": "<div style='display: inline-block'><b><b>Type 2 with cable</b> (mennekes)</b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/Type2_tethered.svg'/></div> outputs 400 volt", - "nl": "<div style='display: inline-block'><b><b>Type 2 met kabel</b> (J1772)</b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/Type2_tethered.svg'/></div> heeft een spanning van 400 volt" + "en": "<b>Type 2 with cable</b> (mennekes) outputs 400 volt", + "nl": "<b>Type 2 met kabel</b> (J1772) heeft een spanning van 400 volt" + }, + "icon": { + "path": "./assets/layers/charging_station/Type2_tethered.svg", + "class": "medium" } } ], @@ -2214,15 +2590,23 @@ { "if": "socket:socket:type2_cable:current=16 A", "then": { - "en": "<div style='display: inline-block'><b><b>Type 2 with cable</b> (mennekes)</b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/Type2_tethered.svg'/></div> outputs at most 16 A", - "nl": "<div style='display: inline-block'><b><b>Type 2 met kabel</b> (J1772)</b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/Type2_tethered.svg'/></div> levert een stroom van maximaal 16 A" + "en": "<b>Type 2 with cable</b> (mennekes) outputs at most 16 A", + "nl": "<b>Type 2 met kabel</b> (J1772) levert een stroom van maximaal 16 A" + }, + "icon": { + "path": "./assets/layers/charging_station/Type2_tethered.svg", + "class": "medium" } }, { "if": "socket:socket:type2_cable:current=32 A", "then": { - "en": "<div style='display: inline-block'><b><b>Type 2 with cable</b> (mennekes)</b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/Type2_tethered.svg'/></div> outputs at most 32 A", - "nl": "<div style='display: inline-block'><b><b>Type 2 met kabel</b> (J1772)</b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/Type2_tethered.svg'/></div> levert een stroom van maximaal 32 A" + "en": "<b>Type 2 with cable</b> (mennekes) outputs at most 32 A", + "nl": "<b>Type 2 met kabel</b> (J1772) levert een stroom van maximaal 32 A" + }, + "icon": { + "path": "./assets/layers/charging_station/Type2_tethered.svg", + "class": "medium" } } ], @@ -2252,15 +2636,23 @@ { "if": "socket:socket:type2_cable:output=11 kw", "then": { - "en": "<div style='display: inline-block'><b><b>Type 2 with cable</b> (mennekes)</b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/Type2_tethered.svg'/></div> outputs at most 11 kw", - "nl": "<div style='display: inline-block'><b><b>Type 2 met kabel</b> (J1772)</b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/Type2_tethered.svg'/></div> levert een vermogen van maximaal 11 kw" + "en": "<b>Type 2 with cable</b> (mennekes) outputs at most 11 kw A", + "nl": "<b>Type 2 met kabel</b> (J1772) levert een vermogen van maximaal 11 kw A" + }, + "icon": { + "path": "./assets/layers/charging_station/Type2_tethered.svg", + "class": "medium" } }, { "if": "socket:socket:type2_cable:output=22 kw", "then": { - "en": "<div style='display: inline-block'><b><b>Type 2 with cable</b> (mennekes)</b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/Type2_tethered.svg'/></div> outputs at most 22 kw", - "nl": "<div style='display: inline-block'><b><b>Type 2 met kabel</b> (J1772)</b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/Type2_tethered.svg'/></div> levert een vermogen van maximaal 22 kw" + "en": "<b>Type 2 with cable</b> (mennekes) outputs at most 22 kw A", + "nl": "<b>Type 2 met kabel</b> (J1772) levert een vermogen van maximaal 22 kw A" + }, + "icon": { + "path": "./assets/layers/charging_station/Type2_tethered.svg", + "class": "medium" } } ], @@ -2290,15 +2682,23 @@ { "if": "socket:socket:tesla_supercharger_ccs:voltage=500 V", "then": { - "en": "<div style='display: inline-block'><b><b>Tesla Supercharger CCS</b> (a branded type2_css)</b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/Type2_CCS.svg'/></div> outputs 500 volt", - "nl": "<div style='display: inline-block'><b><b>Tesla Supercharger CCS</b> (een type2 CCS met Tesla-logo)</b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/Type2_CCS.svg'/></div> heeft een spanning van 500 volt" + "en": "<b>Tesla Supercharger CCS</b> (a branded type2_css) outputs 500 volt", + "nl": "<b>Tesla Supercharger CCS</b> (een type2 CCS met Tesla-logo) heeft een spanning van 500 volt" + }, + "icon": { + "path": "./assets/layers/charging_station/Type2_CCS.svg", + "class": "medium" } }, { "if": "socket:socket:tesla_supercharger_ccs:voltage=920 V", "then": { - "en": "<div style='display: inline-block'><b><b>Tesla Supercharger CCS</b> (a branded type2_css)</b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/Type2_CCS.svg'/></div> outputs 920 volt", - "nl": "<div style='display: inline-block'><b><b>Tesla Supercharger CCS</b> (een type2 CCS met Tesla-logo)</b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/Type2_CCS.svg'/></div> heeft een spanning van 920 volt" + "en": "<b>Tesla Supercharger CCS</b> (a branded type2_css) outputs 920 volt", + "nl": "<b>Tesla Supercharger CCS</b> (een type2 CCS met Tesla-logo) heeft een spanning van 920 volt" + }, + "icon": { + "path": "./assets/layers/charging_station/Type2_CCS.svg", + "class": "medium" } } ], @@ -2328,15 +2728,23 @@ { "if": "socket:socket:tesla_supercharger_ccs:current=125 A", "then": { - "en": "<div style='display: inline-block'><b><b>Tesla Supercharger CCS</b> (a branded type2_css)</b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/Type2_CCS.svg'/></div> outputs at most 125 A", - "nl": "<div style='display: inline-block'><b><b>Tesla Supercharger CCS</b> (een type2 CCS met Tesla-logo)</b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/Type2_CCS.svg'/></div> levert een stroom van maximaal 125 A" + "en": "<b>Tesla Supercharger CCS</b> (a branded type2_css) outputs at most 125 A", + "nl": "<b>Tesla Supercharger CCS</b> (een type2 CCS met Tesla-logo) levert een stroom van maximaal 125 A" + }, + "icon": { + "path": "./assets/layers/charging_station/Type2_CCS.svg", + "class": "medium" } }, { "if": "socket:socket:tesla_supercharger_ccs:current=350 A", "then": { - "en": "<div style='display: inline-block'><b><b>Tesla Supercharger CCS</b> (a branded type2_css)</b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/Type2_CCS.svg'/></div> outputs at most 350 A", - "nl": "<div style='display: inline-block'><b><b>Tesla Supercharger CCS</b> (een type2 CCS met Tesla-logo)</b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/Type2_CCS.svg'/></div> levert een stroom van maximaal 350 A" + "en": "<b>Tesla Supercharger CCS</b> (a branded type2_css) outputs at most 350 A", + "nl": "<b>Tesla Supercharger CCS</b> (een type2 CCS met Tesla-logo) levert een stroom van maximaal 350 A" + }, + "icon": { + "path": "./assets/layers/charging_station/Type2_CCS.svg", + "class": "medium" } } ], @@ -2366,8 +2774,12 @@ { "if": "socket:socket:tesla_supercharger_ccs:output=50 kw", "then": { - "en": "<div style='display: inline-block'><b><b>Tesla Supercharger CCS</b> (a branded type2_css)</b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/Type2_CCS.svg'/></div> outputs at most 50 kw", - "nl": "<div style='display: inline-block'><b><b>Tesla Supercharger CCS</b> (een type2 CCS met Tesla-logo)</b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/Type2_CCS.svg'/></div> levert een vermogen van maximaal 50 kw" + "en": "<b>Tesla Supercharger CCS</b> (a branded type2_css) outputs at most 50 kw A", + "nl": "<b>Tesla Supercharger CCS</b> (een type2 CCS met Tesla-logo) levert een vermogen van maximaal 50 kw A" + }, + "icon": { + "path": "./assets/layers/charging_station/Type2_CCS.svg", + "class": "medium" } } ], @@ -2397,8 +2809,12 @@ { "if": "socket:socket:tesla_destination:voltage=480 V", "then": { - "en": "<div style='display: inline-block'><b><b>Tesla Supercharger (destination)</b></b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/Tesla-hpwc-model-s.svg'/></div> outputs 480 volt", - "nl": "<div style='display: inline-block'><b><b>Tesla Supercharger (destination)</b></b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/Tesla-hpwc-model-s.svg'/></div> heeft een spanning van 480 volt" + "en": "<b>Tesla Supercharger (destination)</b> outputs 480 volt", + "nl": "<b>Tesla Supercharger (destination)</b> heeft een spanning van 480 volt" + }, + "icon": { + "path": "./assets/layers/charging_station/Tesla-hpwc-model-s.svg", + "class": "medium" } } ], @@ -2428,15 +2844,23 @@ { "if": "socket:socket:tesla_destination:current=125 A", "then": { - "en": "<div style='display: inline-block'><b><b>Tesla Supercharger (destination)</b></b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/Tesla-hpwc-model-s.svg'/></div> outputs at most 125 A", - "nl": "<div style='display: inline-block'><b><b>Tesla Supercharger (destination)</b></b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/Tesla-hpwc-model-s.svg'/></div> levert een stroom van maximaal 125 A" + "en": "<b>Tesla Supercharger (destination)</b> outputs at most 125 A", + "nl": "<b>Tesla Supercharger (destination)</b> levert een stroom van maximaal 125 A" + }, + "icon": { + "path": "./assets/layers/charging_station/Tesla-hpwc-model-s.svg", + "class": "medium" } }, { "if": "socket:socket:tesla_destination:current=350 A", "then": { - "en": "<div style='display: inline-block'><b><b>Tesla Supercharger (destination)</b></b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/Tesla-hpwc-model-s.svg'/></div> outputs at most 350 A", - "nl": "<div style='display: inline-block'><b><b>Tesla Supercharger (destination)</b></b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/Tesla-hpwc-model-s.svg'/></div> levert een stroom van maximaal 350 A" + "en": "<b>Tesla Supercharger (destination)</b> outputs at most 350 A", + "nl": "<b>Tesla Supercharger (destination)</b> levert een stroom van maximaal 350 A" + }, + "icon": { + "path": "./assets/layers/charging_station/Tesla-hpwc-model-s.svg", + "class": "medium" } } ], @@ -2466,22 +2890,34 @@ { "if": "socket:socket:tesla_destination:output=120 kw", "then": { - "en": "<div style='display: inline-block'><b><b>Tesla Supercharger (destination)</b></b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/Tesla-hpwc-model-s.svg'/></div> outputs at most 120 kw", - "nl": "<div style='display: inline-block'><b><b>Tesla Supercharger (destination)</b></b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/Tesla-hpwc-model-s.svg'/></div> levert een vermogen van maximaal 120 kw" + "en": "<b>Tesla Supercharger (destination)</b> outputs at most 120 kw A", + "nl": "<b>Tesla Supercharger (destination)</b> levert een vermogen van maximaal 120 kw A" + }, + "icon": { + "path": "./assets/layers/charging_station/Tesla-hpwc-model-s.svg", + "class": "medium" } }, { "if": "socket:socket:tesla_destination:output=150 kw", "then": { - "en": "<div style='display: inline-block'><b><b>Tesla Supercharger (destination)</b></b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/Tesla-hpwc-model-s.svg'/></div> outputs at most 150 kw", - "nl": "<div style='display: inline-block'><b><b>Tesla Supercharger (destination)</b></b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/Tesla-hpwc-model-s.svg'/></div> levert een vermogen van maximaal 150 kw" + "en": "<b>Tesla Supercharger (destination)</b> outputs at most 150 kw A", + "nl": "<b>Tesla Supercharger (destination)</b> levert een vermogen van maximaal 150 kw A" + }, + "icon": { + "path": "./assets/layers/charging_station/Tesla-hpwc-model-s.svg", + "class": "medium" } }, { "if": "socket:socket:tesla_destination:output=250 kw", "then": { - "en": "<div style='display: inline-block'><b><b>Tesla Supercharger (destination)</b></b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/Tesla-hpwc-model-s.svg'/></div> outputs at most 250 kw", - "nl": "<div style='display: inline-block'><b><b>Tesla Supercharger (destination)</b></b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/Tesla-hpwc-model-s.svg'/></div> levert een vermogen van maximaal 250 kw" + "en": "<b>Tesla Supercharger (destination)</b> outputs at most 250 kw A", + "nl": "<b>Tesla Supercharger (destination)</b> levert een vermogen van maximaal 250 kw A" + }, + "icon": { + "path": "./assets/layers/charging_station/Tesla-hpwc-model-s.svg", + "class": "medium" } } ], @@ -2496,11 +2932,11 @@ "id": "voltage-12", "group": "technical", "question": { - "en": "What voltage do the plugs with <div style='display: inline-block'><b><b>Tesla supercharger (destination</b> (A Type 2 with cable branded as tesla)</b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/Type2_tethered.svg'/></div> offer?", + "en": "What voltage do the plugs with <div style='display: inline-block'><b><b>Tesla supercharger (destination)</b> (A Type 2 with cable branded as tesla)</b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/Type2_tethered.svg'/></div> offer?", "nl": "Welke spanning levert de stekker van type <div style='display: inline-block'><b><b>Tesla supercharger (destination</b> (Een Type 2 met kabel en Tesla-logo)</b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/Type2_tethered.svg'/></div>" }, "render": { - "en": "<div style='display: inline-block'><b><b>Tesla supercharger (destination</b> (A Type 2 with cable branded as tesla)</b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/Type2_tethered.svg'/></div> outputs {socket:tesla_destination:voltage} volt", + "en": "<div style='display: inline-block'><b><b>Tesla supercharger (destination)</b> (A Type 2 with cable branded as tesla)</b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/Type2_tethered.svg'/></div> outputs {socket:tesla_destination:voltage} volt", "nl": "<div style='display: inline-block'><b><b>Tesla supercharger (destination</b> (Een Type 2 met kabel en Tesla-logo)</b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/Type2_tethered.svg'/></div> heeft een spanning van {socket:tesla_destination:voltage} volt" }, "freeform": { @@ -2511,15 +2947,23 @@ { "if": "socket:socket:tesla_destination:voltage=230 V", "then": { - "en": "<div style='display: inline-block'><b><b>Tesla supercharger (destination</b> (A Type 2 with cable branded as tesla)</b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/Type2_tethered.svg'/></div> outputs 230 volt", - "nl": "<div style='display: inline-block'><b><b>Tesla supercharger (destination</b> (Een Type 2 met kabel en Tesla-logo)</b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/Type2_tethered.svg'/></div> heeft een spanning van 230 volt" + "en": "<b>Tesla supercharger (destination)</b> (A Type 2 with cable branded as tesla) outputs 230 volt", + "nl": "<b>Tesla supercharger (destination</b> (Een Type 2 met kabel en Tesla-logo) heeft een spanning van 230 volt" + }, + "icon": { + "path": "./assets/layers/charging_station/Type2_tethered.svg", + "class": "medium" } }, { "if": "socket:socket:tesla_destination:voltage=400 V", "then": { - "en": "<div style='display: inline-block'><b><b>Tesla supercharger (destination</b> (A Type 2 with cable branded as tesla)</b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/Type2_tethered.svg'/></div> outputs 400 volt", - "nl": "<div style='display: inline-block'><b><b>Tesla supercharger (destination</b> (Een Type 2 met kabel en Tesla-logo)</b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/Type2_tethered.svg'/></div> heeft een spanning van 400 volt" + "en": "<b>Tesla supercharger (destination)</b> (A Type 2 with cable branded as tesla) outputs 400 volt", + "nl": "<b>Tesla supercharger (destination</b> (Een Type 2 met kabel en Tesla-logo) heeft een spanning van 400 volt" + }, + "icon": { + "path": "./assets/layers/charging_station/Type2_tethered.svg", + "class": "medium" } } ], @@ -2534,12 +2978,12 @@ "id": "current-12", "group": "technical", "question": { - "en": "What current do the plugs with <div style='display: inline-block'><b><b>Tesla supercharger (destination</b> (A Type 2 with cable branded as tesla)</b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/Type2_tethered.svg'/></div> offer?", - "nl": "Welke stroom levert de stekker van type <div style='display: inline-block'><b><b>Tesla supercharger (destination</b> (Een Type 2 met kabel en Tesla-logo)</b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/Type2_tethered.svg'/></div>?" + "en": "What current do the plugs with <div style='display: inline-block'><b><b>Tesla supercharger (destination)</b> (A Type 2 with cable branded as tesla)</b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/Type2_tethered.svg'/></div> offer?", + "nl": "Welke stroom levert de stekker van type <div style='display: inline-block'><b><b>Tesla supercharger (destination)</b> (Een Type 2 met kabel en Tesla-logo)</b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/Type2_tethered.svg'/></div>?" }, "render": { - "en": "<div style='display: inline-block'><b><b>Tesla supercharger (destination</b> (A Type 2 with cable branded as tesla)</b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/Type2_tethered.svg'/></div> outputs at most {socket:tesla_destination:current}A", - "nl": "<div style='display: inline-block'><b><b>Tesla supercharger (destination</b> (Een Type 2 met kabel en Tesla-logo)</b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/Type2_tethered.svg'/></div> levert een stroom van maximaal {socket:tesla_destination:current}A" + "en": "<div style='display: inline-block'><b><b>Tesla supercharger (destination)</b> (A Type 2 with cable branded as tesla)</b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/Type2_tethered.svg'/></div> outputs at most {socket:tesla_destination:current}A", + "nl": "<div style='display: inline-block'><b><b>Tesla supercharger (destination)</b> (Een Type 2 met kabel en Tesla-logo)</b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/Type2_tethered.svg'/></div> levert een stroom van maximaal {socket:tesla_destination:current}A" }, "freeform": { "key": "socket:tesla_destination:current", @@ -2549,15 +2993,23 @@ { "if": "socket:socket:tesla_destination:current=16 A", "then": { - "en": "<div style='display: inline-block'><b><b>Tesla supercharger (destination</b> (A Type 2 with cable branded as tesla)</b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/Type2_tethered.svg'/></div> outputs at most 16 A", - "nl": "<div style='display: inline-block'><b><b>Tesla supercharger (destination</b> (Een Type 2 met kabel en Tesla-logo)</b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/Type2_tethered.svg'/></div> levert een stroom van maximaal 16 A" + "en": "<b>Tesla supercharger (destination)</b> (A Type 2 with cable branded as tesla) outputs at most 16 A", + "nl": "<b>Tesla supercharger (destination</b> (Een Type 2 met kabel en Tesla-logo) levert een stroom van maximaal 16 A" + }, + "icon": { + "path": "./assets/layers/charging_station/Type2_tethered.svg", + "class": "medium" } }, { "if": "socket:socket:tesla_destination:current=32 A", "then": { - "en": "<div style='display: inline-block'><b><b>Tesla supercharger (destination</b> (A Type 2 with cable branded as tesla)</b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/Type2_tethered.svg'/></div> outputs at most 32 A", - "nl": "<div style='display: inline-block'><b><b>Tesla supercharger (destination</b> (Een Type 2 met kabel en Tesla-logo)</b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/Type2_tethered.svg'/></div> levert een stroom van maximaal 32 A" + "en": "<b>Tesla supercharger (destination)</b> (A Type 2 with cable branded as tesla) outputs at most 32 A", + "nl": "<b>Tesla supercharger (destination</b> (Een Type 2 met kabel en Tesla-logo) levert een stroom van maximaal 32 A" + }, + "icon": { + "path": "./assets/layers/charging_station/Type2_tethered.svg", + "class": "medium" } } ], @@ -2572,11 +3024,11 @@ "id": "power-output-12", "group": "technical", "question": { - "en": "What power output does a single plug of type <div style='display: inline-block'><b><b>Tesla supercharger (destination</b> (A Type 2 with cable branded as tesla)</b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/Type2_tethered.svg'/></div> offer?", + "en": "What power output does a single plug of type <div style='display: inline-block'><b><b>Tesla supercharger (destination)</b> (A Type 2 with cable branded as tesla)</b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/Type2_tethered.svg'/></div> offer?", "nl": "Welk vermogen levert een enkele stekker van type <div style='display: inline-block'><b><b>Tesla supercharger (destination</b> (Een Type 2 met kabel en Tesla-logo)</b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/Type2_tethered.svg'/></div>?" }, "render": { - "en": "<div style='display: inline-block'><b><b>Tesla supercharger (destination</b> (A Type 2 with cable branded as tesla)</b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/Type2_tethered.svg'/></div> outputs at most {socket:tesla_destination:output}", + "en": "<div style='display: inline-block'><b><b>Tesla supercharger (destination)</b> (A Type 2 with cable branded as tesla)</b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/Type2_tethered.svg'/></div> outputs at most {socket:tesla_destination:output}", "nl": "<div style='display: inline-block'><b><b>Tesla supercharger (destination</b> (Een Type 2 met kabel en Tesla-logo)</b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/Type2_tethered.svg'/></div> levert een vermogen van maximaal {socket:tesla_destination:output}" }, "freeform": { @@ -2587,15 +3039,23 @@ { "if": "socket:socket:tesla_destination:output=11 kw", "then": { - "en": "<div style='display: inline-block'><b><b>Tesla supercharger (destination</b> (A Type 2 with cable branded as tesla)</b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/Type2_tethered.svg'/></div> outputs at most 11 kw", - "nl": "<div style='display: inline-block'><b><b>Tesla supercharger (destination</b> (Een Type 2 met kabel en Tesla-logo)</b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/Type2_tethered.svg'/></div> levert een vermogen van maximaal 11 kw" + "en": "<b>Tesla supercharger (destination)</b> (A Type 2 with cable branded as tesla) outputs at most 11 kw A", + "nl": "<b>Tesla supercharger (destination</b> (Een Type 2 met kabel en Tesla-logo) levert een vermogen van maximaal 11 kw A" + }, + "icon": { + "path": "./assets/layers/charging_station/Type2_tethered.svg", + "class": "medium" } }, { "if": "socket:socket:tesla_destination:output=22 kw", "then": { - "en": "<div style='display: inline-block'><b><b>Tesla supercharger (destination</b> (A Type 2 with cable branded as tesla)</b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/Type2_tethered.svg'/></div> outputs at most 22 kw", - "nl": "<div style='display: inline-block'><b><b>Tesla supercharger (destination</b> (Een Type 2 met kabel en Tesla-logo)</b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/Type2_tethered.svg'/></div> levert een vermogen van maximaal 22 kw" + "en": "<b>Tesla supercharger (destination)</b> (A Type 2 with cable branded as tesla) outputs at most 22 kw A", + "nl": "<b>Tesla supercharger (destination</b> (Een Type 2 met kabel en Tesla-logo) levert een vermogen van maximaal 22 kw A" + }, + "icon": { + "path": "./assets/layers/charging_station/Type2_tethered.svg", + "class": "medium" } } ], @@ -2625,8 +3085,12 @@ { "if": "socket:socket:USB-A:voltage=5 V", "then": { - "en": "<div style='display: inline-block'><b><b>USB</b> to charge phones and small electronics</b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/usb_port.svg'/></div> outputs 5 volt", - "nl": "<div style='display: inline-block'><b><b>USB</b> om GSMs en kleine electronica op te laden</b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/usb_port.svg'/></div> heeft een spanning van 5 volt" + "en": "<b>USB</b> to charge phones and small electronics outputs 5 volt", + "nl": "<b>USB</b> om GSMs en kleine electronica op te laden heeft een spanning van 5 volt" + }, + "icon": { + "path": "./assets/layers/charging_station/usb_port.svg", + "class": "medium" } } ], @@ -2656,15 +3120,23 @@ { "if": "socket:socket:USB-A:current=1 A", "then": { - "en": "<div style='display: inline-block'><b><b>USB</b> to charge phones and small electronics</b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/usb_port.svg'/></div> outputs at most 1 A", - "nl": "<div style='display: inline-block'><b><b>USB</b> om GSMs en kleine electronica op te laden</b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/usb_port.svg'/></div> levert een stroom van maximaal 1 A" + "en": "<b>USB</b> to charge phones and small electronics outputs at most 1 A", + "nl": "<b>USB</b> om GSMs en kleine electronica op te laden levert een stroom van maximaal 1 A" + }, + "icon": { + "path": "./assets/layers/charging_station/usb_port.svg", + "class": "medium" } }, { "if": "socket:socket:USB-A:current=2 A", "then": { - "en": "<div style='display: inline-block'><b><b>USB</b> to charge phones and small electronics</b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/usb_port.svg'/></div> outputs at most 2 A", - "nl": "<div style='display: inline-block'><b><b>USB</b> om GSMs en kleine electronica op te laden</b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/usb_port.svg'/></div> levert een stroom van maximaal 2 A" + "en": "<b>USB</b> to charge phones and small electronics outputs at most 2 A", + "nl": "<b>USB</b> om GSMs en kleine electronica op te laden levert een stroom van maximaal 2 A" + }, + "icon": { + "path": "./assets/layers/charging_station/usb_port.svg", + "class": "medium" } } ], @@ -2694,15 +3166,23 @@ { "if": "socket:socket:USB-A:output=5w", "then": { - "en": "<div style='display: inline-block'><b><b>USB</b> to charge phones and small electronics</b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/usb_port.svg'/></div> outputs at most 5w", - "nl": "<div style='display: inline-block'><b><b>USB</b> om GSMs en kleine electronica op te laden</b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/usb_port.svg'/></div> levert een vermogen van maximaal 5w" + "en": "<b>USB</b> to charge phones and small electronics outputs at most 5w A", + "nl": "<b>USB</b> om GSMs en kleine electronica op te laden levert een vermogen van maximaal 5w A" + }, + "icon": { + "path": "./assets/layers/charging_station/usb_port.svg", + "class": "medium" } }, { "if": "socket:socket:USB-A:output=10w", "then": { - "en": "<div style='display: inline-block'><b><b>USB</b> to charge phones and small electronics</b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/usb_port.svg'/></div> outputs at most 10w", - "nl": "<div style='display: inline-block'><b><b>USB</b> om GSMs en kleine electronica op te laden</b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/usb_port.svg'/></div> levert een vermogen van maximaal 10w" + "en": "<b>USB</b> to charge phones and small electronics outputs at most 10w A", + "nl": "<b>USB</b> om GSMs en kleine electronica op te laden levert een vermogen van maximaal 10w A" + }, + "icon": { + "path": "./assets/layers/charging_station/usb_port.svg", + "class": "medium" } } ], @@ -2860,14 +3340,18 @@ }, "question": { "en": "When is this charging station opened?", - "nl": "Wanneer is dit oplaadpunt beschikbaar??" + "nl": "Wanneer is dit oplaadpunt beschikbaar??", + "de": "Wann ist diese Ladestation geöffnet?", + "es": "¿Cuándo abre esta estación de carga?" }, "mappings": [ { "if": "opening_hours=24/7", "then": { "en": "24/7 opened (including holidays)", - "nl": "24/7 open - ook tijdens vakanties" + "nl": "24/7 open - ook tijdens vakanties", + "de": "durchgehend geöffnet (einschließlich Feiertage)", + "es": "Abre 24/7 (incluidos días festivos)" } } ] @@ -2962,32 +3446,14 @@ }, { "id": "payment-options", - "builtin": "payment-options", + "builtin": "payment-options-advanced", "override": { "condition": { "or": [ "fee=yes", "charge~*" ] - }, - "mappings+": [ - { - "if": "payment:app=yes", - "ifnot": "payment:app=no", - "then": { - "en": "Payment is done using a dedicated app", - "nl": "Betalen via een app van het netwerk" - } - }, - { - "if": "payment:membership_card=yes", - "ifnot": "payment:membership_card=no", - "then": { - "en": "Payment is done using a membership card", - "nl": "Betalen via een lidkaart van het netwerk" - } - } - ] + } } }, { @@ -2995,7 +3461,9 @@ "#": "In some cases, charging is free but one has to be authenticated. We only ask for authentication if fee is no (or unset). By default one sees the questions for either the payment options or the authentication options, but normally not both", "question": { "en": "What kind of authentication is available at the charging station?", - "nl": "Hoe kan men zich aanmelden aan dit oplaadstation?" + "nl": "Hoe kan men zich aanmelden aan dit oplaadstation?", + "de": "Welche Art der Authentifizierung ist an der Ladestation möglich?", + "fr": "Quelle sorte d'authentification est disponible à cette station de charge ?" }, "multiAnswer": true, "mappings": [ @@ -3004,7 +3472,10 @@ "ifnot": "authentication:membership_card=no", "then": { "en": "Authentication by a membership card", - "nl": "Aanmelden met een lidkaart is mogelijk" + "nl": "Aanmelden met een lidkaart is mogelijk", + "de": "Authentifizierung per Mitgliedskarte", + "es": "Autenticación mediante tarjeta de membresía", + "fr": "Authentification par carte de membre" } }, { @@ -3012,7 +3483,10 @@ "ifnot": "authentication:app=no", "then": { "en": "Authentication by an app", - "nl": "Aanmelden via een applicatie is mogelijk" + "nl": "Aanmelden via een applicatie is mogelijk", + "de": "Authentifizierung per App", + "es": "Autenticación mediante aplicación", + "fr": "Authentification par une app" } }, { @@ -3020,7 +3494,10 @@ "ifnot": "authentication:phone_call=no", "then": { "en": "Authentication via phone call is available", - "nl": "Aanmelden door te bellen naar een telefoonnummer is mogelijk" + "nl": "Aanmelden door te bellen naar een telefoonnummer is mogelijk", + "de": "Authentifizierung per Anruf ist möglich", + "es": "Autenticación mediante llamada telefónica disponible", + "fr": "Authentification par appel téléphonique est disponible" } }, { @@ -3028,7 +3505,10 @@ "ifnot": "authentication:short_message=no", "then": { "en": "Authentication via SMS is available", - "nl": "Aanmelden via SMS is mogelijk" + "nl": "Aanmelden via SMS is mogelijk", + "de": "Authentifizierung per SMS ist möglich", + "es": "Autenticación mediante SMS disponible", + "fr": "Authentification par SMS est disponible" } }, { @@ -3036,7 +3516,10 @@ "ifnot": "authentication:nfc=no", "then": { "en": "Authentication via NFC is available", - "nl": "Aanmelden via NFC is mogelijk" + "nl": "Aanmelden via NFC is mogelijk", + "de": "Authentifizierung per NFC ist möglich", + "es": "Autenticación mediante NFC disponible", + "fr": "Authentification par NFC est disponible" } }, { @@ -3044,7 +3527,9 @@ "ifnot": "authentication:money_card=no", "then": { "en": "Authentication via Money Card is available", - "nl": "Aanmelden met Money Card is mogelijk" + "nl": "Aanmelden met Money Card is mogelijk", + "de": "Authentifizierung per Geldkarte ist möglich", + "es": "Autenticación mediante Money Card disponible" } }, { @@ -3052,7 +3537,10 @@ "ifnot": "authentication:debit_card=no", "then": { "en": "Authentication via debit card is available", - "nl": "Aanmelden met een betaalkaart is mogelijk" + "nl": "Aanmelden met een betaalkaart is mogelijk", + "de": "Authentifizierung per Kreditkarte ist möglich", + "es": "Autenticación mediante tarjeta de débito disponible", + "fr": "Authentification par carte de débit est disponible" } }, { @@ -3060,7 +3548,9 @@ "ifnot": "authentication:none=no", "then": { "en": "Charging here is (also) possible without authentication", - "nl": "Hier opladen is (ook) mogelijk zonder aan te melden" + "nl": "Hier opladen is (ook) mogelijk zonder aan te melden", + "de": "Das Laden ist hier (auch) ohne Authentifizierung möglich", + "fr": "Charger ici est (aussi) possible sans authentification" } } ], @@ -3127,11 +3617,15 @@ "id": "Network", "render": { "en": "Part of the network <b>{network}</b>", - "nl": "Maakt deel uit van het <b>{network}</b>-netwerk" + "nl": "Maakt deel uit van het <b>{network}</b>-netwerk", + "de": "Teil des Netzwerks <b>{network}</b>", + "es": "Parte de la red <b>{network}</b>" }, "question": { "en": "Is this charging station part of a network?", - "nl": "Is dit oplaadpunt deel van een groter netwerk?" + "nl": "Is dit oplaadpunt deel van een groter netwerk?", + "de": "Ist diese Ladestation Teil eines Netzwerks?", + "es": "¿Esta estación de carga forma parte de una red?" }, "freeform": { "key": "network" @@ -3140,15 +3634,18 @@ { "if": "no:network=yes", "then": { - "en": "Not part of a bigger network", - "nl": "Maakt geen deel uit van een groter netwerk" + "en": "Not part of a bigger network, e.g. because the charging station is maintained by a local business", + "nl": "Maakt geen deel uit van een groter netwerk, een lokale zaak of organisatie beheert dit oplaadpunt", + "de": "Nicht Teil eines größeren Netzwerks, z. B. weil die Ladestation von einem lokalen Unternehmen betrieben wird" } }, { "if": "network=none", "then": { "en": "Not part of a bigger network", - "nl": "Maakt geen deel uit van een groter netwerk" + "nl": "Maakt geen deel uit van een groter netwerk", + "de": "Nicht Teil eines größeren Netzwerks", + "es": "No forma parte de una red mayor" }, "hideInAnswer": true }, @@ -3161,8 +3658,32 @@ "then": "Blink" }, { - "if": "network=eVgo", - "then": "eVgo" + "if": "network=EVgo", + "then": "EVgo", + "addExtraTags": [ + "brand:wikidata=Q61803820" + ] + }, + { + "if": "network=Allego", + "then": "Allego", + "addExtraTags": [ + "brand:wikidata=Q75560554" + ] + }, + { + "if": "network=Blue Corner", + "then": "Blue Corner", + "addExtraTags": [ + "brand:wikidata=Q106902344" + ] + }, + { + "if": "network=Tesla", + "then": "Tesla", + "addExtraTags": [ + "brand:wikidata=Q478214" + ] } ] }, @@ -3170,11 +3691,13 @@ "id": "Operator", "question": { "en": "Who is the operator of this charging station?", - "nl": "Wie beheert dit oplaadpunt?" + "nl": "Wie beheert dit oplaadpunt?", + "de": "Wer ist der Betreiber dieser Ladestation?" }, "render": { "en": "This charging station is operated by {operator}", - "nl": "Wordt beheerd door {operator}" + "nl": "Wordt beheerd door {operator}", + "de": "Diese Ladestation wird betrieben von {operator}" }, "freeform": { "key": "operator" @@ -3188,14 +3711,16 @@ }, "then": { "en": "Actually, {operator} is the network", - "nl": "Eigenlijk is {operator} het netwerk waarvan het deel uitmaakt" + "nl": "Eigenlijk is {operator} het netwerk waarvan het deel uitmaakt", + "de": "Eigentlich ist {operator} das Netzwerk" }, "addExtraTags": [ "operator=" ], "hideInAnswer": "operator=" } - ] + ], + "condition": "network=" }, { "id": "phone", @@ -3263,7 +3788,8 @@ "id": "Operational status", "question": { "en": "Is this charging point in use?", - "nl": "Is dit oplaadpunt operationeel?" + "nl": "Is dit oplaadpunt operationeel?", + "de": "Ist dieser Ladepunkt in Betrieb?" }, "mappings": [ { @@ -3278,7 +3804,8 @@ }, "then": { "en": "This charging station works", - "nl": "Dit oplaadpunt werkt" + "nl": "Dit oplaadpunt werkt", + "de": "Diese Ladestation ist betriebsbereit" } }, { @@ -3293,7 +3820,8 @@ }, "then": { "en": "This charging station is broken", - "nl": "Dit oplaadpunt is kapot" + "nl": "Dit oplaadpunt is kapot", + "de": "Diese Ladestation ist defekt" } }, { @@ -3308,7 +3836,8 @@ }, "then": { "en": "A charging station is planned here", - "nl": "Hier zal binnenkort een oplaadpunt gebouwd worden" + "nl": "Hier zal binnenkort een oplaadpunt gebouwd worden", + "de": "Hier ist eine Ladestation geplant" } }, { @@ -3323,7 +3852,8 @@ }, "then": { "en": "A charging station is constructed here", - "nl": "Hier wordt op dit moment een oplaadpunt gebouwd" + "nl": "Hier wordt op dit moment een oplaadpunt gebouwd", + "de": "Hier wird eine Ladestation errichtet" } }, { @@ -3338,7 +3868,8 @@ }, "then": { "en": "This charging station has beed permanently disabled and is not in use anymore but is still visible", - "nl": "Dit oplaadpunt is niet meer in gebruik maar is wel nog aanwezig" + "nl": "Dit oplaadpunt is niet meer in gebruik maar is wel nog aanwezig", + "de": "Diese Ladestation wurde dauerhaft geschlossen und wird nicht mehr benutzt, ist aber noch sichtbar" } } ] @@ -3347,21 +3878,24 @@ "id": "Parking:fee", "question": { "en": "Does one have to pay a parking fee while charging?", - "nl": "Moet men parkeergeld betalen tijdens het opladen?" + "nl": "Moet men parkeergeld betalen tijdens het opladen?", + "de": "Muss man während des Ladens eine Parkgebühr bezahlen?" }, "mappings": [ { "if": "parking:fee=no", "then": { "en": "No additional parking cost while charging", - "nl": "Geen extra parkeerkost tijdens het opladen" + "nl": "Geen extra parkeerkost tijdens het opladen", + "de": "Keine zusätzlichen Parkkosten während des Ladens" } }, { "if": "parking:fee=yes", "then": { "en": "An additional parking fee should be paid while charging", - "nl": "Tijdens het opladen moet er parkeergeld betaald worden" + "nl": "Tijdens het opladen moet er parkeergeld betaald worden", + "de": "Während des Ladens ist eine zusätzliche Parkgebühr zu entrichten" } } ], @@ -3384,12 +3918,6 @@ "render": { "en": "<h3>Technical questions</h3>The questions below are very technical. Feel free to ignore them<br/>{questions}", "nl": "<h3>Technische vragen</h3>De vragen hieronder zijn erg technisch - sla deze over indien je hier geen tijd voor hebt<br/>{questions}" - }, - "freeform": { - "key": "questions", - "helperArgs": { - "showAllQuestions": true - } } } ], @@ -3425,7 +3953,7 @@ "operational_status=broken" ] }, - "then": "cross:#c22;" + "then": "close:#c22;" }, { "if": { @@ -3465,21 +3993,7 @@ "socket:typee=1" ], "title": { - "en": "charging station with a normal european wall plug <img src='./assets/layers/charging_station/TypeE.svg' style='width: 2rem; height: 2rem; float: left; background: white; border-radius: 1rem; margin-right: 0.5rem'/> (meant to charge electrical bikes)", - "nl": "laadpunt met gewone stekker(s) <img src='./assets/layers/charging_station/TypeE.svg' style='width: 2rem; height: 2rem; float: left; background: white; border-radius: 1rem; margin-right: 0.5rem'/> (bedoeld om electrische fietsen op te laden)" - }, - "preciseInput": { - "preferredBackground": "map" - } - }, - { - "tags": [ - "amenity=charging_station", - "motorcar=no", - "bicycle=yes" - ], - "title": { - "en": "charging station for e-bikes", + "en": "charging station for electrical bikes with a normal european wall plug <img src='./assets/layers/charging_station/TypeE.svg' style='width: 2rem; height: 2rem; float: left; background: white; border-radius: 1rem; margin-right: 0.5rem'/> (meant to charge electrical bikes)", "nl": "oplaadpunt voor elektrische fietsen" }, "preciseInput": { @@ -3494,19 +4008,8 @@ ], "title": { "en": "charging station for cars", - "nl": "oplaadstation voor elektrische auto's" - }, - "preciseInput": { - "preferredBackground": "map" - } - }, - { - "tags": [ - "amenity=charging_station" - ], - "title": { - "en": "charging station", - "nl": "oplaadstation" + "nl": "oplaadstation voor elektrische auto's", + "de": "Ladestation für e-bikes" }, "preciseInput": { "preferredBackground": "map" @@ -3520,20 +4023,26 @@ { "question": { "en": "All vehicle types", - "nl": "Alle voertuigen" + "nl": "Alle voertuigen", + "de": "Alle Fahrzeugtypen", + "fr": "Tout type de véhicule" } }, { "question": { "en": "Charging station for bicycles", - "nl": "Oplaadpunten voor fietsen" + "nl": "Oplaadpunten voor fietsen", + "de": "Ladestation für Fahrräder", + "fr": "Station de charge pour vélos" }, "osmTags": "bicycle=yes" }, { "question": { "en": "Charging station for cars", - "nl": "Oplaadpunten voor auto's" + "nl": "Oplaadpunten voor auto's", + "de": "Ladestation für Autos", + "fr": "Station de charge pour automobiles" }, "osmTags": { "or": [ @@ -3550,7 +4059,8 @@ { "question": { "en": "Only working charging stations", - "nl": "Enkel werkende oplaadpunten" + "nl": "Enkel werkende oplaadpunten", + "de": "Nur funktionierende Ladestationen" }, "osmTags": { "and": [ @@ -3567,13 +4077,15 @@ { "question": { "en": "All connectors", - "nl": "Alle types" + "nl": "Alle types", + "de": "Alle Anschlüsse" } }, { "question": { "en": "Has a <div style='display: inline-block'><b><b>Schuko wall plug</b> without ground pin (CEE7/4 type F)</b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/CEE7_4F.svg'/></div> connector", - "nl": "Heeft een <div style='display: inline-block'><b><b>Schuko stekker</b> zonder aardingspin (CEE7/4 type F)</b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/CEE7_4F.svg'/></div>" + "nl": "Heeft een <div style='display: inline-block'><b><b>Schuko stekker</b> zonder aardingspin (CEE7/4 type F)</b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/CEE7_4F.svg'/></div>", + "de": "Verfügt über einen <div style='display: inline-block'><b><b>Schuko-Stecker</b> ohne Erdungsstift (CEE7/4 Typ F)</b><img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/CEE7_4F.svg'/></div>" }, "osmTags": "socket:schuko~*" }, @@ -3587,35 +4099,40 @@ { "question": { "en": "Has a <div style='display: inline-block'><b><b>Chademo</b></b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/Chademo_type4.svg'/></div> connector", - "nl": "Heeft een <div style='display: inline-block'><b><b>Chademo</b></b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/Chademo_type4.svg'/></div>" + "nl": "Heeft een <div style='display: inline-block'><b><b>Chademo</b></b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/Chademo_type4.svg'/></div>", + "de": "Verfügt über einen <div style='display: inline-block'><b><b>Chademo</b></b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/Chademo_type4.svg'/></div> Stecker" }, "osmTags": "socket:chademo~*" }, { "question": { "en": "Has a <div style='display: inline-block'><b><b>Type 1 with cable</b> (J1772)</b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/Type1_J1772.svg'/></div> connector", - "nl": "Heeft een <div style='display: inline-block'><b><b>Type 1 met kabel</b> (J1772)</b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/Type1_J1772.svg'/></div>" + "nl": "Heeft een <div style='display: inline-block'><b><b>Type 1 met kabel</b> (J1772)</b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/Type1_J1772.svg'/></div>", + "de": "Verfügt über einen <div style='display: inline-block'><b><b>Typ 1 </b> (J1772)</b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/Type1_J1772.svg'/></div> Stecker mit Kabel" }, "osmTags": "socket:type1_cable~*" }, { "question": { "en": "Has a <div style='display: inline-block'><b><b>Type 1 <i>without</i> cable</b> (J1772)</b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/Type1_J1772.svg'/></div> connector", - "nl": "Heeft een <div style='display: inline-block'><b><b>Type 1 <i>zonder</i> kabel</b> (J1772)</b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/Type1_J1772.svg'/></div>" + "nl": "Heeft een <div style='display: inline-block'><b><b>Type 1 <i>zonder</i> kabel</b> (J1772)</b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/Type1_J1772.svg'/></div>", + "de": "Verfügt über einen <div style='display: inline-block'><b><b>Typ 1 (J1772) <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/Type1_J1772.svg'/></div> Stecker <i>ohne</i> Kabel</b>" }, "osmTags": "socket:type1~*" }, { "question": { "en": "Has a <div style='display: inline-block'><b><b>Type 1 CCS</b> (aka Type 1 Combo)</b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/Type1-ccs.svg'/></div> connector", - "nl": "Heeft een <div style='display: inline-block'><b><b>Type 1 CCS</b> (ook gekend als Type 1 Combo)</b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/Type1-ccs.svg'/></div>" + "nl": "Heeft een <div style='display: inline-block'><b><b>Type 1 CCS</b> (ook gekend als Type 1 Combo)</b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/Type1-ccs.svg'/></div>", + "de": "Verfügt über einen <div style='display: inline-block'><b><b>Typ 1 CCS <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/Type1-ccs.svg'/></div> Stecker, auch bekannt als Typ 1 Combo</b>" }, "osmTags": "socket:type1_combo~*" }, { "question": { "en": "Has a <div style='display: inline-block'><b><b>Tesla Supercharger</b></b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/Tesla-hpwc-model-s.svg'/></div> connector", - "nl": "Heeft een <div style='display: inline-block'><b><b>Tesla Supercharger</b></b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/Tesla-hpwc-model-s.svg'/></div>" + "nl": "Heeft een <div style='display: inline-block'><b><b>Tesla Supercharger</b></b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/Tesla-hpwc-model-s.svg'/></div>", + "de": "Verfügt über einen <div style='display: inline-block'><b><b>Tesla Supercharger</b></b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/Tesla-hpwc-model-s.svg'/></div> Stecker" }, "osmTags": "socket:tesla_supercharger~*" }, @@ -3656,8 +4173,8 @@ }, { "question": { - "en": "Has a <div style='display: inline-block'><b><b>Tesla supercharger (destination</b> (A Type 2 with cable branded as tesla)</b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/Type2_tethered.svg'/></div> connector", - "nl": "Heeft een <div style='display: inline-block'><b><b>Tesla supercharger (destination</b> (Een Type 2 met kabel en Tesla-logo)</b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/Type2_tethered.svg'/></div>" + "en": "Has a <div style='display: inline-block'><b><b>Tesla supercharger (destination)</b> (A Type 2 with cable branded as tesla)</b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/Type2_tethered.svg'/></div> connector", + "nl": "Heeft een <div style='display: inline-block'><b><b>Tesla supercharger (destination)</b> (Een Type 2 met kabel en Tesla-logo)</b> <img style='width:1rem; display: inline-block' src='./assets/layers/charging_station/Type2_tethered.svg'/></div>" }, "osmTags": "socket:tesla_destination~*" }, @@ -3703,11 +4220,13 @@ ], "human": { "en": " minutes", - "nl": " minuten" + "nl": " minuten", + "ru": " минут" }, "humanSingular": { "en": " minute", - "nl": " minuut" + "nl": " minuut", + "ru": " минута" } }, { @@ -3723,11 +4242,13 @@ ], "human": { "en": " hours", - "nl": " uren" + "nl": " uren", + "ru": " часов" }, "humanSingular": { "en": " hour", - "nl": " uur" + "nl": " uur", + "ru": " час" } }, { @@ -3740,11 +4261,13 @@ ], "human": { "en": " days", - "nl": " day" + "nl": " day", + "ru": " дней" }, "humanSingular": { "en": " day", - "nl": " dag" + "nl": " dag", + "ru": " день" } } ] @@ -3780,7 +4303,8 @@ ], "human": { "en": "Volts", - "nl": "volt" + "nl": "volt", + "ru": "Вольт" } } ], @@ -3849,7 +4373,8 @@ ], "human": { "en": "kilowatt", - "nl": "kilowatt" + "nl": "kilowatt", + "ru": "киловатт" } }, { @@ -3859,7 +4384,8 @@ ], "human": { "en": "megawatt", - "nl": "megawatt" + "nl": "megawatt", + "ru": "мегаватт" } } ], diff --git a/assets/layers/charging_station/charging_station.protojson b/assets/layers/charging_station/charging_station.protojson index 985f383124..35a2fc40af 100644 --- a/assets/layers/charging_station/charging_station.protojson +++ b/assets/layers/charging_station/charging_station.protojson @@ -7,19 +7,59 @@ "minzoom": 10, "source": { "osmTags": { - "or": [ - "amenity=charging_station", - "disused:amenity=charging_station", - "planned:amenity=charging_station", - "construction:amenity=charging_station" + "and": [ + { + "or": [ + "amenity=charging_station", + "disused:amenity=charging_station", + "planned:amenity=charging_station", + "construction:amenity=charging_station" + ] + } ] } }, "title": { "render": { "en": "Charging station", - "nl": "Oplaadpunten" - } + "nl": "Oplaadpunt" + }, + "mappings": [ + { + "if": { + "and": [ + "bicycle=yes", + { + "or": [ + "motorcar=", + "motorcar=no" + ] + } + ] + }, + "then": { + "en": "Charging station for electrical bicycles", + "nl": "Oplaadpunt voor elektrische fietsen" + } + }, + { + "if": { + "and": [ + "motorcar=yes", + { + "or": [ + "bicycle=", + "bicycle=no" + ] + } + ] + }, + "then": { + "en": "Charging station for cars", + "nl": "Oplaadpunt voor elektrische auto's" + } + } + ] }, "description": { "en": "A charging station", @@ -40,8 +80,8 @@ "if": "bicycle=yes", "ifnot": "bicycle=no", "then": { - "en": "<b>Bcycles</b> can be charged here", - "nl": "<b>Fietsen</b> kunnen hier opgeladen worden" + "en": "<b>Bicycles</b> can be charged here", + "nl": "<b>Elektrische fietsen</b> kunnen hier opgeladen worden" } }, { @@ -57,7 +97,7 @@ "ifnot": "scooter=no", "then": { "en": "<b>Scooters</b> can be charged here", - "nl": "<b>Electrische scooters</b> (snorfiets of bromfiets) kunnen hier opgeladen worden" + "nl": "<b>Elektrische scooters</b> (snorfiets of bromfiets) kunnen hier opgeladen worden" } }, { @@ -260,32 +300,14 @@ }, { "id": "payment-options", - "builtin": "payment-options", + "builtin": "payment-options-advanced", "override": { "condition": { "or": [ "fee=yes", "charge~*" ] - }, - "mappings+": [ - { - "if": "payment:app=yes", - "ifnot": "payment:app=no", - "then": { - "en": "Payment is done using a dedicated app", - "nl": "Betalen via een app van het netwerk" - } - }, - { - "if": "payment:membership_card=yes", - "ifnot": "payment:membership_card=no", - "then": { - "en": "Payment is done using a membership card", - "nl": "Betalen via een lidkaart van het netwerk" - } - } - ] + } } }, { @@ -438,8 +460,8 @@ { "if": "no:network=yes", "then": { - "en": "Not part of a bigger network", - "nl": "Maakt geen deel uit van een groter netwerk" + "en": "Not part of a bigger network, e.g. because the charging station is maintained by a local business", + "nl": "Maakt geen deel uit van een groter netwerk, een lokale zaak of organisatie beheert dit oplaadpunt" } }, { @@ -459,8 +481,32 @@ "then": "Blink" }, { - "if": "network=eVgo", - "then": "eVgo" + "if": "network=EVgo", + "then": "EVgo", + "addExtraTags": [ + "brand:wikidata=Q61803820" + ] + }, + { + "if": "network=Allego", + "then": "Allego", + "addExtraTags": [ + "brand:wikidata=Q75560554" + ] + }, + { + "if": "network=Blue Corner", + "then": "Blue Corner", + "addExtraTags": [ + "brand:wikidata=Q106902344" + ] + }, + { + "if": "network=Tesla", + "then": "Tesla", + "addExtraTags": [ + "brand:wikidata=Q478214" + ] } ] }, @@ -493,7 +539,8 @@ ], "hideInAnswer": "operator=" } - ] + ], + "condition": "network=" }, { "id": "phone", @@ -717,7 +764,7 @@ "operational_status=broken" ] }, - "then": "cross:#c22;" + "then": "close:#c22;" }, { "if": { @@ -757,21 +804,7 @@ "socket:typee=1" ], "title": { - "en": "charging station with a normal european wall plug <img src='./assets/layers/charging_station/TypeE.svg' style='width: 2rem; height: 2rem; float: left; background: white; border-radius: 1rem; margin-right: 0.5rem'/> (meant to charge electrical bikes)", - "nl": "laadpunt met gewone stekker(s) <img src='./assets/layers/charging_station/TypeE.svg' style='width: 2rem; height: 2rem; float: left; background: white; border-radius: 1rem; margin-right: 0.5rem'/> (bedoeld om electrische fietsen op te laden)" - }, - "preciseInput": { - "preferredBackground": "map" - } - }, - { - "tags": [ - "amenity=charging_station", - "motorcar=no", - "bicycle=yes" - ], - "title": { - "en": "charging station for e-bikes", + "en": "charging station for electrical bikes with a normal european wall plug <img src='./assets/layers/charging_station/TypeE.svg' style='width: 2rem; height: 2rem; float: left; background: white; border-radius: 1rem; margin-right: 0.5rem'/> (meant to charge electrical bikes)", "nl": "oplaadpunt voor elektrische fietsen" }, "preciseInput": { @@ -791,18 +824,6 @@ "preciseInput": { "preferredBackground": "map" } - }, - { - "tags": [ - "amenity=charging_station" - ], - "title": { - "en": "charging station", - "nl": "oplaadstation" - }, - "preciseInput": { - "preferredBackground": "map" - } } ], "filter": [ diff --git a/assets/layers/charging_station/csvToJson.ts b/assets/layers/charging_station/csvToJson.ts index 2d4bfe5528..ea1d55ac92 100644 --- a/assets/layers/charging_station/csvToJson.ts +++ b/assets/layers/charging_station/csvToJson.ts @@ -3,6 +3,7 @@ import {Utils} from "../../../Utils"; import {TagRenderingConfigJson} from "../../../Models/ThemeConfig/Json/TagRenderingConfigJson"; import ScriptUtils from "../../../scripts/ScriptUtils"; import {LayerConfigJson} from "../../../Models/ThemeConfig/Json/LayerConfigJson"; +import FilterConfigJson from "../../../Models/ThemeConfig/Json/FilterConfigJson"; function colonSplit(value: string): string[] { @@ -19,7 +20,8 @@ function loadCsv(file): { commonCurrents?: number[], commonOutputs?: string[], associatedVehicleTypes?: string[], - neverAssociatedWith?: string[] + neverAssociatedWith?: string[], + extraVisualisationCondition: string }[] { const entries: string[] = Utils.NoNull(readFileSync(file, "utf8").split("\n").map(str => str.trim())) const header = entries.shift().split(",") @@ -70,13 +72,17 @@ function run(file, protojson) { for (let i = 0; i < entries.length; i++) { const e = entries[i]; const txt = { - en: `<div class='flex'><img class='w-12 mx-4' src='./assets/layers/charging_station/${e.image}'/> <span>${e.description.get("en")}</span></div>`, - nl: `<div class='flex'><img class='w-12 mx-4' src='./assets/layers/charging_station/${e.image}'/> <span>${e.description.get("nl")}</span></div>` + en: e.description.get("en"), + nl: e.description.get("nl") } const json = { if: `${e.key}=1`, ifnot: `${e.key}=`, then: txt, + icon:{ + path:"./assets/layers/charging_station/" + e.image, + class:"medium" + } } if (e.countryWhiteList.length > 0 && e.countryBlackList.length > 0) { @@ -120,10 +126,14 @@ function run(file, protojson) { // We add a second time for any amount to trigger a visualisation; but this is not an answer option const no_ask_json = { if: { - and: [`${e.key}~*`, `${e.key}!=1`] + and:Utils.NoEmpty( [`${e.key}~*`, `${e.key}!=1`, ...e.extraVisualisationCondition.split(";")]) }, then: txt, - hideInAnswer: true + hideInAnswer: true, + icon:{ + path: `./assets/layers/charging_station/${e.image}`, + class:"medium" + } } overview_question_answers.push(no_ask_json) @@ -168,8 +178,12 @@ function run(file, protojson) { return { if: `socket:${e.key}:voltage=${voltage} V`, then: { - en: `${descrWithImage_en} outputs ${voltage} volt`, - nl: `${descrWithImage_nl} heeft een spanning van ${voltage} volt` + en: `${e.description.get("en")} outputs ${voltage} volt`, + nl: `${e.description.get("nl")} heeft een spanning van ${voltage} volt` + }, + icon: { + path: `./assets/layers/charging_station/${e.image}`, + class:"medium" } } }), @@ -198,8 +212,12 @@ function run(file, protojson) { return { if: `socket:${e.key}:current=${current} A`, then: { - en: `${descrWithImage_en} outputs at most ${current} A`, - nl: `${descrWithImage_nl} levert een stroom van maximaal ${current} A` + en: `${e.description.get("en")} outputs at most ${current} A`, + nl: `${e.description.get("nl")} levert een stroom van maximaal ${current} A` + }, + icon: { + path: `./assets/layers/charging_station/${e.image}`, + class:"medium" } } }), @@ -228,8 +246,12 @@ function run(file, protojson) { return { if: `socket:${e.key}:output=${output}`, then: { - en: `${descrWithImage_en} outputs at most ${output}`, - nl: `${descrWithImage_nl} levert een vermogen van maximaal ${output}` + en: `${e.description.get("en")} outputs at most ${output} A`, + nl: `${e.description.get("nl")} levert een vermogen van maximaal ${output} A` + }, + icon: { + path: `./assets/layers/charging_station/${e.image}`, + class:"medium" } } }), @@ -264,6 +286,10 @@ function run(file, protojson) { protoString = protoString.replace(/{[ \t\n]*"id"[ \t\n]*:[ \t\n]*"\$\$\$"[ \t\n]*}/, stringified.join(",\n")) const proto = <LayerConfigJson>JSON.parse(protoString) + if(typeof proto.filter === "string"){ + throw "Filters of a the protojson should be a list of FilterConfigJsons" + } + proto.filter = <FilterConfigJson[]> proto.filter; proto.tagRenderings.forEach(tr => { if (typeof tr === "string") { return; @@ -274,7 +300,7 @@ function run(file, protojson) { } }) - proto["filter"].push({ + proto.filter.push({ id: "connection_type", options: filterOptions }) diff --git a/assets/layers/charging_station/types.csv b/assets/layers/charging_station/types.csv index 784a45eb9e..d31c004ba2 100644 --- a/assets/layers/charging_station/types.csv +++ b/assets/layers/charging_station/types.csv @@ -1,17 +1,17 @@ -key,image,description:en,countryWhiteList,countryBlackList,commonVoltages,commonCurrents,commonOutputs,description:nl,associatedVehicleTypes,neverAssociatedWith -socket:schuko,CEE7_4F.svg,<b>Schuko wall plug</b> without ground pin (CEE7/4 type F),be;fr;ma;tn;pl;cs;sk;mo,,230,16,3.6 kW,<b>Schuko stekker</b> zonder aardingspin (CEE7/4 type F),*, -socket:typee,TypeE.svg,<b>European wall plug</b> with ground pin (CEE7/4 type E),,,230,16,3 kW;22 kW;,<b>Europese stekker</b> met aardingspin (CEE7/4 type E),*, -socket:chademo,Chademo_type4.svg,<b>Chademo</b>,,,500,120,50 kW,<b>Chademo</b>,car;motorcar;hgv;bus,bicycle;scooter -socket:type1_cable,Type1_J1772.svg,<b>Type 1 with cable</b> (J1772),,,200;240,32,3.7 kW;7 kW,<b>Type 1 met kabel</b> (J1772),car;motorcar;hgv;bus,bicycle;scooter -socket:type1,Type1_J1772.svg,<b>Type 1 <i>without</i> cable</b> (J1772),,,200;240,32,3.7 kW;6.6 kW;7 kW;7.2 kW,<b>Type 1 <i>zonder</i> kabel</b> (J1772),car;motorcar;hgv;bus,bicycle;scooter -socket:type1_combo,Type1-ccs.svg,<b>Type 1 CCS</b> (aka Type 1 Combo),,,400;1000,50;125,50 kW;62.5 kW;150 kW;350 kW;,<b>Type 1 CCS</b> (ook gekend als Type 1 Combo),car;motorcar;hgv;bus,bicycle;scooter -socket:tesla_supercharger,Tesla-hpwc-model-s.svg,<b>Tesla Supercharger</b>,,,480,125;350,120 kW;150 kW;250 kW,<b>Tesla Supercharger</b>,car;motorcar;hgv;bus,bicycle;scooter -socket:type2,Type2_socket.svg,<b>Type 2</b> (mennekes),,,230;400,16;32,11 kW;22 kW,<b>Type 2</b> (mennekes),car;motorcar;hgv;bus,bicycle;scooter -socket:type2_combo,Type2_CCS.svg,<b>Type 2 CCS</b> (mennekes),,,500;920,125;350,50 kW,<b>Type 2 CCS</b> (mennekes),car;motorcar;hgv;bus,bicycle;scooter -socket:type2_cable,Type2_tethered.svg,<b>Type 2 with cable</b> (mennekes),,,230;400,16;32,11 kW;22 kW,<b>Type 2 met kabel</b> (J1772),car;motorcar;hgv;bus,bicycle;scooter -socket:tesla_supercharger_ccs,Type2_CCS.svg,<b>Tesla Supercharger CCS</b> (a branded type2_css),,,500;920,125;350,50 kW,<b>Tesla Supercharger CCS</b> (een type2 CCS met Tesla-logo),car;motorcar;hgv;bus,bicycle;scooter -socket:tesla_destination,Tesla-hpwc-model-s.svg,<b>Tesla Supercharger (destination)</b>,us,,480,125;350,120 kW;150 kW;250 kW,<b>Tesla Supercharger (destination)</b>,car;motorcar;hgv;bus,bicycle;scooter -socket:tesla_destination,Type2_tethered.svg,<b>Tesla supercharger (destination</b> (A Type 2 with cable branded as tesla),,us,230;400,16;32,11 kW;22 kW,<b>Tesla supercharger (destination</b> (Een Type 2 met kabel en Tesla-logo),car;motorcar;hgv;bus,bicycle;scooter -socket:USB-A,usb_port.svg,<b>USB</b> to charge phones and small electronics,,,5,1;2,5W;10W,<b>USB</b> om GSMs en kleine electronica op te laden,*, -socket:bosch_3pin,bosch-3pin.svg,<b>Bosch Active Connect with 3 pins</b> and cable,,,,,,<b>Bosch Active Connect met 3 pinnen</b> aan een kabel,bicycle,car;motorcar;hgv;bus -socket:bosch_5pin,bosch-5pin.svg,<b>Bosch Active Connect with 5 pins</b> and cable,,,,,,<b>Bosch Active Connect met 5 pinnen</b> aan een kabel,bicycle,car;motorcar;hgv;bus +key,image,description:en,countryWhiteList,countryBlackList,commonVoltages,commonCurrents,commonOutputs,description:nl,associatedVehicleTypes,neverAssociatedWith,extraVisualisationCondition +socket:schuko,CEE7_4F.svg,<b>Schuko wall plug</b> without ground pin (CEE7/4 type F),be;fr;ma;tn;pl;cs;sk;mo,,230,16,3.6 kW,<b>Schuko stekker</b> zonder aardingspin (CEE7/4 type F),*,, +socket:typee,TypeE.svg,<b>European wall plug</b> with ground pin (CEE7/4 type E),,,230,16,3 kW;22 kW;,<b>Europese stekker</b> met aardingspin (CEE7/4 type E),*,, +socket:chademo,Chademo_type4.svg,<b>Chademo</b>,,,500,120,50 kW,<b>Chademo</b>,car;motorcar;hgv;bus,bicycle;scooter, +socket:type1_cable,Type1_J1772.svg,<b>Type 1 with cable</b> (J1772),,,200;240,32,3.7 kW;7 kW,<b>Type 1 met kabel</b> (J1772),car;motorcar;hgv;bus,bicycle;scooter, +socket:type1,Type1_J1772.svg,<b>Type 1 <i>without</i> cable</b> (J1772),,,200;240,32,3.7 kW;6.6 kW;7 kW;7.2 kW,<b>Type 1 <i>zonder</i> kabel</b> (J1772),car;motorcar;hgv;bus,bicycle;scooter, +socket:type1_combo,Type1-ccs.svg,<b>Type 1 CCS</b> (aka Type 1 Combo),,,400;1000,50;125,50 kW;62.5 kW;150 kW;350 kW;,<b>Type 1 CCS</b> (ook gekend als Type 1 Combo),car;motorcar;hgv;bus,bicycle;scooter, +socket:tesla_supercharger,Tesla-hpwc-model-s.svg,<b>Tesla Supercharger</b>,,,480,125;350,120 kW;150 kW;250 kW,<b>Tesla Supercharger</b>,car;motorcar;hgv;bus,bicycle;scooter, +socket:type2,Type2_socket.svg,<b>Type 2</b> (mennekes),,,230;400,16;32,11 kW;22 kW,<b>Type 2</b> (mennekes),car;motorcar;hgv;bus,bicycle;scooter, +socket:type2_combo,Type2_CCS.svg,<b>Type 2 CCS</b> (mennekes),,,500;920,125;350,50 kW,<b>Type 2 CCS</b> (mennekes),car;motorcar;hgv;bus,bicycle;scooter, +socket:type2_cable,Type2_tethered.svg,<b>Type 2 with cable</b> (mennekes),,,230;400,16;32,11 kW;22 kW,<b>Type 2 met kabel</b> (J1772),car;motorcar;hgv;bus,bicycle;scooter, +socket:tesla_supercharger_ccs,Type2_CCS.svg,<b>Tesla Supercharger CCS</b> (a branded type2_css),,,500;920,125;350,50 kW,<b>Tesla Supercharger CCS</b> (een type2 CCS met Tesla-logo),car;motorcar;hgv;bus,bicycle;scooter, +socket:tesla_destination,Tesla-hpwc-model-s.svg,<b>Tesla Supercharger (destination)</b>,us,,480,125;350,120 kW;150 kW;250 kW,<b>Tesla Supercharger (destination)</b>,car;motorcar;hgv;bus,bicycle;scooter,_country=us +socket:tesla_destination,Type2_tethered.svg,<b>Tesla supercharger (destination)</b> (A Type 2 with cable branded as tesla),,us,230;400,16;32,11 kW;22 kW,<b>Tesla supercharger (destination</b> (Een Type 2 met kabel en Tesla-logo),car;motorcar;hgv;bus,bicycle;scooter,_country!=us +socket:USB-A,usb_port.svg,<b>USB</b> to charge phones and small electronics,,,5,1;2,5W;10W,<b>USB</b> om GSMs en kleine electronica op te laden,*,, +socket:bosch_3pin,bosch-3pin.svg,<b>Bosch Active Connect with 3 pins</b> and cable,,,,,,<b>Bosch Active Connect met 3 pinnen</b> aan een kabel,bicycle,car;motorcar;hgv;bus, +socket:bosch_5pin,bosch-5pin.svg,<b>Bosch Active Connect with 5 pins</b> and cable,,,,,,<b>Bosch Active Connect met 5 pinnen</b> aan een kabel,bicycle,car;motorcar;hgv;bus, diff --git a/assets/layers/charging_station/under_construction.svg b/assets/layers/charging_station/under_construction.svg index d98433870b..c9128cbecc 100644 --- a/assets/layers/charging_station/under_construction.svg +++ b/assets/layers/charging_station/under_construction.svg @@ -1,59 +1,7 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - xmlns="http://www.w3.org/2000/svg" - width="184.99873" - height="160.99916" - version="1.1" - id="svg8" - sodipodi:docname="under_construction.svg" - style="stroke-linejoin:round" - inkscape:version="0.92.5 (2060ec1f9f, 2020-04-08)"> - <metadata - id="metadata14"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage"/> - </cc:Work> - </rdf:RDF> - </metadata> - <defs - id="defs12"/> - <sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1043" - id="namedview10" - showgrid="false" - inkscape:zoom="3.7083822" - inkscape:cx="84.786789" - inkscape:cy="27.5718" - inkscape:window-x="0" - inkscape:window-y="0" - inkscape:window-maximized="1" - inkscape:current-layer="svg8"/> - <path - d="M 92.49937,8.4991633 8.4993703,152.49916 H 176.49937 Z" - id="path4" - inkscape:connector-curvature="0" - style="fill:#ffffff;stroke:#cc0000;stroke-width:17"/> - <path - d="m 93.970423,112.12145 a 2.1244582,2.1244582 0 0 1 -3.186687,1.06223 l -2.124459,-3.18669 V 93.00133 l -6.373374,10.62229 -11.68452,-6.373373 9.560062,-19.120124 H 73.78807 L 65.290237,93.00133 62.10355,89.814643 v -3.186687 l 8.497833,-14.871207 h 21.244582 a 4.2489163,4.2489163 0 0 1 4.248916,4.248916 z m 16.995667,12.74675 -43.551394,-36.115786 1.062229,-3.186687 44.613625,37.178013 8.49783,-10.62229 a 5.3111454,5.3111454 0 0 1 9.56006,0 l 23.36904,30.80464 H 93.970423 L 107.7794,125.93043 Z m -29.742416,-19.12012 7.435603,10.62229 1.062229,26.55572 a 8.4978327,8.4978327 0 0 1 -6.373374,-4.24891 l -1.062229,-18.0579 -8.497833,-11.68452 -19.120123,32.92911 a 4.2489163,4.2489163 0 0 1 -2.124459,-2.12446 L 51.481259,133.36603 69.539154,99.374705 Z M 95.032652,67.507832 a 7.435604,7.435604 0 0 1 14.871208,0 7.435604,7.435604 0 0 1 -14.871208,0" - id="path6" - inkscape:connector-curvature="0" - style="stroke-width:1.06222904"/> -</svg> +<?xml version="1.0" encoding="UTF-8" standalone="yes"?> +<svg xmlns="http://www.w3.org/2000/svg" width="374px" height="326px" viewBox="0 0 374 326" version="1.1"> + <g id="surface1"> + <path style="fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;stroke-width:17;stroke-linecap:butt;stroke-linejoin:round;stroke:rgb(80.000001%,0%,0%);stroke-opacity:1;stroke-miterlimit:4;" d="M 92.499367 8.499836 L 8.499711 152.499325 L 176.499023 152.499325 Z M 92.499367 8.499836 " transform="matrix(2.021632,0,0,2.024855,0.000305411,0)"/> + <path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 189.972656 227.03125 C 189.535156 228.285156 188.539062 229.265625 187.277344 229.6875 C 186.019531 230.109375 184.636719 229.921875 183.53125 229.179688 L 179.238281 222.726562 L 179.238281 188.3125 L 166.351562 209.824219 L 142.730469 196.917969 L 162.058594 158.203125 L 149.171875 158.203125 L 131.992188 188.3125 L 125.550781 181.863281 L 125.550781 175.410156 L 142.730469 145.296875 L 185.679688 145.296875 C 190.421875 145.296875 194.269531 149.148438 194.269531 153.902344 Z M 224.332031 252.839844 L 136.289062 179.710938 L 138.433594 173.257812 L 228.628906 248.539062 L 245.808594 227.03125 C 247.601562 223.320312 251.355469 220.964844 255.472656 220.964844 C 259.585938 220.964844 263.339844 223.320312 265.132812 227.03125 L 312.378906 289.40625 L 189.972656 289.40625 L 217.890625 254.992188 Z M 164.203125 214.125 L 179.238281 235.632812 L 181.382812 289.40625 C 175.96875 288.75 171.1875 285.554688 168.5 280.800781 L 166.351562 244.238281 L 149.171875 220.578125 L 110.519531 287.253906 C 108.613281 286.390625 107.085938 284.863281 106.222656 282.953125 L 104.078125 270.046875 L 140.582031 201.21875 Z M 192.121094 136.695312 C 192.121094 128.378906 198.851562 121.636719 207.152344 121.636719 C 215.457031 121.636719 222.183594 128.378906 222.183594 136.695312 C 222.183594 145.007812 215.457031 151.75 207.152344 151.75 C 198.851562 151.75 192.121094 145.007812 192.121094 136.695312 "/> + </g> +</svg> \ No newline at end of file diff --git a/assets/layers/charging_station/usb_port.svg b/assets/layers/charging_station/usb_port.svg index f48417a790..2b600c1754 100644 --- a/assets/layers/charging_station/usb_port.svg +++ b/assets/layers/charging_station/usb_port.svg @@ -1,82 +1,12 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - xmlns="http://www.w3.org/2000/svg" - version="1.1" - x="0px" - y="0px" - viewBox="0 0 164 151.74825" - enable-background="new 0 0 330.229 227.989" - xml:space="preserve" - id="svg32" - sodipodi:docname="noun_usb port_94768.svg" - width="164" - height="151.74825" - inkscape:version="0.92.5 (2060ec1f9f, 2020-04-08)"><metadata - id="metadata38"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage"/></cc:Work></rdf:RDF></metadata> - <defs - id="defs36"/> - <sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="1043" - id="namedview34" - showgrid="false" - inkscape:zoom="1.6562203" - inkscape:cx="65.373425" - inkscape:cy="46.568307" - inkscape:window-x="0" - inkscape:window-y="0" - inkscape:window-maximized="1" - inkscape:current-layer="svg32"/> - <g - id="g4" - transform="translate(-84.147,-70.403)"><path - d="m 235.402,78.403 c 2.47,0 4.745,2.021 4.745,4.49 v 42.02 c 0,2.47 -2.354,4.49 -4.823,4.49 H 96.971 c -2.47,0 -4.824,-2.021 -4.824,-4.49 v -42.02 c 0,-2.47 2.354,-4.49 4.824,-4.49 h 138.176 m 0.177,-8 H 96.971 c -7.015,0 -12.824,5.475 -12.824,12.49 v 42.02 c 0,7.015 5.809,12.49 12.824,12.49 h 138.353 c 7.016,0 12.823,-5.475 12.823,-12.49 v -42.02 c 0,-7.015 -5.807,-12.49 -12.823,-12.49 z" - id="path2" - inkscape:connector-curvature="0" /></g> - <g - id="g26" - transform="translate(-84.147,-70.403)"><g - id="g8"><path - d="m 129.147,112.403 c 0,0.55 -0.45,1 -1,1 h -12 c -0.55,0 -1,-0.45 -1,-1 v -10 c 0,-0.55 0.45,-1 1,-1 h 12 c 0.55,0 1,0.45 1,1 z" - id="path6" - inkscape:connector-curvature="0" /></g> - <g - id="g12"><path - d="m 159.147,112.403 c 0,0.55 -0.45,1 -1,1 h -12 c -0.55,0 -1,-0.45 -1,-1 v -10 c 0,-0.55 0.45,-1 1,-1 h 12 c 0.55,0 1,0.45 1,1 z" - id="path10" - inkscape:connector-curvature="0" /></g> - <g - id="g16"><path - d="m 185.147,112.403 c 0,0.55 -0.45,1 -1,1 h -12 c -0.55,0 -1,-0.45 -1,-1 v -10 c 0,-0.55 0.45,-1 1,-1 h 12 c 0.55,0 1,0.45 1,1 z" - id="path14" - inkscape:connector-curvature="0" /></g> - <g - id="g20"><path - d="m 215.147,112.403 c 0,0.55 -0.45,1 -1,1 h -12 c -0.55,0 -1,-0.45 -1,-1 v -10 c 0,-0.55 0.45,-1 1,-1 h 12 c 0.55,0 1,0.45 1,1 z" - id="path18" - inkscape:connector-curvature="0" /></g> - <g - id="g24"><path - d="m 233.147,104.403 c 0,1.65 -1.35,3 -3,3 h -129 c -1.65,0 -3,-1.35 -3,-3 v -16 c 0,-1.65 1.35,-3 3,-3 h 129 c 1.65,0 3,1.35 3,3 z" - id="path22" - inkscape:connector-curvature="0" /></g></g> - <path - id="path1334" - d="m 145.86777,120.95936 -15.39372,-8.88977 v 6.34152 H 51.79247 l 15.3202,-16.18591 c 1.3038,-1.04508 3.0097,-1.77819 4.76452,-1.81881 7.09895,0 11.31463,-0.002 12.8664,-0.005 1.05185,2.99679 3.87728,5.15986 7.23616,5.15986 4.24921,0 7.69763,-3.44811 7.69763,-7.69887 0,-4.2526 -3.4481,-7.69947 -7.69763,-7.69947 -3.35888,0 -6.18431,2.16183 -7.23616,5.15616 l -12.71565,-0.003 c -3.44626,0 -7.05742,1.89079 -9.35585,4.10739 0.0627,-0.0659 0.12798,-0.13598 -0.003,8.5e-4 -0.0486,0.0547 -16.2542,17.171 -16.2542,17.171 -1.30104,1.04353 -3.00602,1.77204 -4.7596,1.81388 h -8.90084 c -1.17983,-5.88006 -6.37229,-10.31016 -12.6009,-10.31016 -7.10142,0 -12.85779,5.75637 -12.85779,12.85563 0,7.10141 5.75637,12.8581 12.85779,12.8581 6.22984,0 11.4223,-4.43381 12.60213,-10.31879 h 8.74486 c 0.0224,0 0.045,8.5e-4 0.0677,0 H 60.9103 c 1.7502,0.0446 3.45302,0.77404 4.75283,1.81881 0,0 16.2019,17.115 16.25205,17.17038 0.12983,0.13752 0.0652,0.0659 8.5e-4,8.5e-4 2.29843,2.21629 5.91113,4.10585 9.358,4.10585 l 12.25418,-0.003 v 5.16139 h 15.39773 v -15.39539 h -15.39773 v 5.15463 c 0,0 -3.22752,-0.006 -12.40431,-0.006 -1.75512,-0.0403 -3.46287,-0.7725 -4.76606,-1.81757 l -15.32358,-16.189 h 59.44012 v 6.35168 z" - inkscape:connector-curvature="0" - style="stroke-width:0.30764675"/></svg> \ No newline at end of file +<?xml version="1.0" encoding="UTF-8" standalone="yes"?> +<svg xmlns="http://www.w3.org/2000/svg" width="372px" height="345px" viewBox="0 0 372 345" version="1.1"> + <g id="surface1"> + <path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 343.089844 18.445312 C 348.691406 18.445312 353.855469 23.03125 353.855469 28.632812 L 353.855469 124.007812 C 353.855469 129.617188 348.515625 134.199219 342.914062 134.199219 L 29.089844 134.199219 C 23.484375 134.199219 18.144531 129.613281 18.144531 124.007812 L 18.144531 28.632812 C 18.144531 23.027344 23.484375 18.445312 29.089844 18.445312 L 342.511719 18.445312 M 342.914062 0.285156 L 29.089844 0.285156 C 13.175781 0.285156 0 12.710938 0 28.632812 L 0 124.007812 C 0 139.929688 13.175781 152.359375 29.089844 152.359375 L 342.914062 152.359375 C 358.828125 152.359375 372 139.929688 372 124.007812 L 372 28.632812 C 372 12.710938 358.828125 0.285156 342.914062 0.285156 Z M 342.914062 0.285156 "/> + <path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 102.074219 95.613281 C 102.074219 96.863281 101.050781 97.882812 99.804688 97.882812 L 72.585938 97.882812 C 71.335938 97.882812 70.316406 96.863281 70.316406 95.613281 L 70.316406 72.917969 C 70.316406 71.667969 71.335938 70.648438 72.585938 70.648438 L 99.804688 70.648438 C 101.050781 70.648438 102.074219 71.667969 102.074219 72.917969 Z M 102.074219 95.613281 "/> + <path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 170.121094 95.613281 C 170.121094 96.863281 169.101562 97.882812 167.855469 97.882812 L 140.632812 97.882812 C 139.386719 97.882812 138.367188 96.863281 138.367188 95.613281 L 138.367188 72.917969 C 138.367188 71.667969 139.386719 70.648438 140.632812 70.648438 L 167.855469 70.648438 C 169.101562 70.648438 170.121094 71.667969 170.121094 72.917969 Z M 170.121094 95.613281 "/> + <path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 229.097656 95.613281 C 229.097656 96.863281 228.078125 97.882812 226.828125 97.882812 L 199.609375 97.882812 C 198.363281 97.882812 197.339844 96.863281 197.339844 95.613281 L 197.339844 72.917969 C 197.339844 71.667969 198.363281 70.648438 199.609375 70.648438 L 226.828125 70.648438 C 228.078125 70.648438 229.097656 71.667969 229.097656 72.917969 Z M 229.097656 95.613281 "/> + <path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 297.144531 95.613281 C 297.144531 96.863281 296.125 97.882812 294.878906 97.882812 L 267.660156 97.882812 C 266.410156 97.882812 265.390625 96.863281 265.390625 95.613281 L 265.390625 72.917969 C 265.390625 71.667969 266.410156 70.648438 267.660156 70.648438 L 294.878906 70.648438 C 296.125 70.648438 297.144531 71.667969 297.144531 72.917969 Z M 297.144531 95.613281 "/> + <path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 337.976562 77.457031 C 337.976562 81.203125 334.914062 84.265625 331.171875 84.265625 L 38.5625 84.265625 C 34.816406 84.265625 31.757812 81.203125 31.757812 77.457031 L 31.757812 41.140625 C 31.757812 37.394531 34.816406 34.332031 38.5625 34.332031 L 331.171875 34.332031 C 334.914062 34.332031 337.976562 37.394531 337.976562 41.140625 Z M 337.976562 77.457031 "/> + <path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 330.871094 274.832031 L 295.953125 254.652344 L 295.953125 269.046875 L 117.480469 269.046875 L 152.230469 232.308594 C 155.1875 229.9375 159.058594 228.273438 163.039062 228.183594 C 179.140625 228.183594 188.703125 228.175781 192.222656 228.171875 C 194.609375 234.972656 201.019531 239.882812 208.636719 239.882812 C 218.277344 239.882812 226.097656 232.054688 226.097656 222.40625 C 226.097656 212.753906 218.277344 204.933594 208.636719 204.933594 C 201.019531 204.933594 194.609375 209.839844 192.222656 216.636719 L 163.378906 216.628906 C 155.5625 216.628906 147.371094 220.917969 142.160156 225.949219 C 142.300781 225.800781 142.449219 225.640625 142.152344 225.953125 C 142.042969 226.078125 105.28125 264.925781 105.28125 264.925781 C 102.332031 267.292969 98.464844 268.949219 94.488281 269.042969 L 74.296875 269.042969 C 71.621094 255.695312 59.84375 245.640625 45.714844 245.640625 C 29.605469 245.640625 16.550781 258.707031 16.550781 274.820312 C 16.550781 290.9375 29.605469 304.003906 45.714844 304.003906 C 59.84375 304.003906 71.625 293.941406 74.300781 280.585938 L 94.136719 280.585938 C 94.1875 280.585938 94.238281 280.585938 94.289062 280.585938 L 138.164062 280.585938 C 142.132812 280.6875 145.996094 282.339844 148.941406 284.710938 C 148.941406 284.710938 185.695312 323.558594 185.808594 323.683594 C 186.101562 323.996094 185.957031 323.835938 185.808594 323.6875 C 191.023438 328.71875 199.21875 333.007812 207.035156 333.007812 L 234.832031 333 L 234.832031 344.714844 L 269.757812 344.714844 L 269.757812 309.769531 L 234.832031 309.769531 L 234.832031 321.46875 C 234.832031 321.46875 227.511719 321.457031 206.695312 321.457031 C 202.714844 321.367188 198.839844 319.703125 195.886719 317.332031 L 161.125 280.585938 L 295.953125 280.585938 L 295.953125 295.003906 Z M 330.871094 274.832031 "/> + </g> +</svg> \ No newline at end of file diff --git a/assets/layers/conflation/conflation.json b/assets/layers/conflation/conflation.json index 75220077ef..ffafc9bca4 100644 --- a/assets/layers/conflation/conflation.json +++ b/assets/layers/conflation/conflation.json @@ -1,6 +1,6 @@ { "id": "conflation", - "description": "If the import-button is set to conflate two ways, a preview is shown. This layer defines how this preview is rendered. This layer cannot be included in a theme.", + "description": "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.", "minzoom": 1, "source": { "osmTags": { @@ -15,21 +15,65 @@ "mapRendering": [ { "location": "point", - "icon": "addSmall:#000", + "icon": { + "render": "addSmall:#000", + "mappings": [ + { + "if": "detach=yes", + "then": "circle:white;close:#c33" + } + ] + }, "iconSize": "10,10,center" }, { "location": "end", - "icon": "circle:#0f0", + "icon": { + "render": "circle:#0f0", + "mappings": [ + { + "if": "reprojection=yes", + "then": "none:#f00" + }, + { + "if": "move=no", + "then": "ring:#0f0" + } + ] + }, "iconSize": "10,10,center" }, { "location": "start", - "icon": "square:#f00", - "iconSize": "10,10,center" + "icon": { + "render": "square:#f00", + "mappings": [ + { + "if": "reprojection=yes", + "then": "reload:#f00" + } + ] + }, + "iconSize": { + "render": "10,10,center", + "mappings": [ + { + "if": "distance<0.1", + "then": "0,0,center" + } + ] + } }, { - "width": "3", + "width": { + "render": "3", + "mappings": [ + { + "if": "distance<0.2", + "then": "0" + } + ] + }, "color": "#00f", "dasharray": { "render": "", diff --git a/assets/layers/crab_address/crab_address.json b/assets/layers/crab_address/crab_address.json new file mode 100644 index 0000000000..a86147ba4d --- /dev/null +++ b/assets/layers/crab_address/crab_address.json @@ -0,0 +1,36 @@ +{ + "id": "crab_address", + "description": "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", + "source": { + "osmTags": "HUISNR~*", + "geoJson": "https://raw.githubusercontent.com/pietervdvn/MapComplete-data/main/CRAB_2021_10_26/tile_{z}_{x}_{y}.geojson", + "geoJsonZoomLevel": 18, + "maxCacheAge": 0 + }, + "name": "CRAB-addressen", + "title": "CRAB-adres", + "mapRendering": [ + { + "location": [ + "point", + "centroid" + ], + "iconSize": "50,50,center", + "icon": "./assets/layers/crab_address/housenumber_blank.svg", + "label": { + "render": "<div style='margin-top: -42px; color: white' class='rounded-full p-1 font-bold relative'>{_HNRLABEL}</div>" + } + } + ], + "calculatedTags": [ + "_HNRLABEL=(() => {const lbl = feat.properties.HNRLABEL?.split('-')?.map(l => Number(l))?.filter(i => !isNaN (i)) ;if(lbl?.length != 2) {return feat.properties.HNRLABEL}; const addresses = []; for(let i = lbl[0]; i <= lbl[1]; i += 1){addresses.push(''+i);}; return addresses.join(';') })()" + ], + "tagRenderings": [ + { + "id": "render_crab", + "render": { + "nl": "Volgens het CRAB ligt hier <b>{STRAATNM}</b> {HUISNR} (label: {HNRLABEL})" + } + } + ] +} \ No newline at end of file diff --git a/assets/layers/crab_address/housenumber_blank.svg b/assets/layers/crab_address/housenumber_blank.svg new file mode 100644 index 0000000000..206227d522 --- /dev/null +++ b/assets/layers/crab_address/housenumber_blank.svg @@ -0,0 +1,7 @@ +<?xml version="1.0" encoding="UTF-8" standalone="yes"?> +<svg xmlns="http://www.w3.org/2000/svg" width="371px" height="190px" viewBox="0 0 371 190" version="1.1"> + <g id="surface1"> + <path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,35.294119%,67.843139%);fill-opacity:1;" d="M 30.542969 0 L 340.457031 0 C 357.261719 0 370.792969 13.542969 370.792969 30.363281 L 370.792969 159.636719 C 370.792969 176.457031 357.261719 190 340.457031 190 L 30.542969 190 C 13.738281 190 0.210938 176.457031 0.210938 159.636719 L 0.210938 30.363281 C 0.210938 13.542969 13.738281 0 30.542969 0 Z M 30.542969 0 "/> + <path style="fill:none;stroke-width:5.0152;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:4;" d="M 8.747177 22.772972 L 8.747177 65.005236 C 15.786155 65.005236 22.825134 72.044549 22.825134 79.083862 L 148.642348 79.083862 C 148.642348 72.044549 155.681326 65.005236 162.720304 65.005236 L 162.720304 22.772972 C 155.681326 22.772972 148.642348 15.733659 148.642348 8.694346 L 22.825134 8.694346 C 22.825134 15.733659 15.786155 22.772972 8.747177 22.772972 Z M 8.747177 22.772972 " transform="matrix(2.159848,0,0,2.161965,0.208987,0.000000000000015341)"/> + </g> +</svg> \ No newline at end of file diff --git a/assets/layers/crab_address/license_info.json b/assets/layers/crab_address/license_info.json new file mode 100644 index 0000000000..8ea1617ec5 --- /dev/null +++ b/assets/layers/crab_address/license_info.json @@ -0,0 +1,10 @@ +[ + { + "path": "housenumber_blank.svg", + "license": "CC0", + "authors": [ + "Pieter Vander Vennet" + ], + "sources": [] + } +] \ No newline at end of file diff --git a/assets/layers/crossings/Belgian_road_sign_B22.svg b/assets/layers/crossings/Belgian_road_sign_B22.svg index e918797eeb..e2d4fa1fb8 100644 --- a/assets/layers/crossings/Belgian_road_sign_B22.svg +++ b/assets/layers/crossings/Belgian_road_sign_B22.svg @@ -1,125 +1,9 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - xmlns="http://www.w3.org/2000/svg" - id="svg2816" - version="1.1" - inkscape:version="0.47 r22583" - width="95.81649" - height="83.729599" - xml:space="preserve" - sodipodi:docname="Belgian road sign B22.svg"><metadata - id="metadata2822"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage"/><dc:title></dc:title></cc:Work></rdf:RDF></metadata> - <defs - id="defs2820"><inkscape:perspective - sodipodi:type="inkscape:persp3d" - inkscape:vp_x="0 : 0.5 : 1" - inkscape:vp_y="0 : 1000 : 0" - inkscape:vp_z="1 : 0.5 : 1" - inkscape:persp3d-origin="0.5 : 0.33333333 : 1" - id="perspective2824" /> - <clipPath - clipPathUnits="userSpaceOnUse" - id="clipPath2844"><path - d="m 2562,672.668 3,0 0,-108 -3,0 0,108 z" - id="path2846" /></clipPath> - <clipPath - clipPathUnits="userSpaceOnUse" - id="clipPath2854"><path - d="m 731,6133.67 780,0 0,-679 -780,0 0,679 z" - id="path2856" /></clipPath> - <clipPath - clipPathUnits="userSpaceOnUse" - id="clipPath2892"><path - d="m 731,4841.67 780,0 0,-680 -780,0 0,680 z" - id="path2894" /></clipPath> - <clipPath - clipPathUnits="userSpaceOnUse" - id="clipPath3090"><path - d="m 731,2387.67 779,0 0,-684 -779,0" - id="path3092" /></clipPath> - <inkscape:perspective - id="perspective3129" - inkscape:persp3d-origin="47.908001 : 27.909665 : 1" - inkscape:vp_z="95.816002 : 41.864498 : 1" - inkscape:vp_y="0 : 1000 : 0" - inkscape:vp_x="0 : 41.864498 : 1" - sodipodi:type="inkscape:persp3d"/> - <inkscape:perspective - id="perspective4211" - inkscape:persp3d-origin="39.790001 : 26.495 : 1" - inkscape:vp_z="79.580002 : 39.7425 : 1" - inkscape:vp_y="0 : 1000 : 0" - inkscape:vp_x="0 : 39.7425 : 1" - sodipodi:type="inkscape:persp3d"/></defs> - <sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1600" - inkscape:window-height="838" - id="namedview2818" - showgrid="false" - inkscape:zoom="2.140677" - inkscape:cx="47.742493" - inkscape:cy="42.339324" - inkscape:window-x="0" - inkscape:window-y="0" - inkscape:window-maximized="1" - inkscape:current-layer="g2826"/> - <g - id="g2826" - inkscape:groupmode="layer" - inkscape:label="Belgio" - transform="matrix(1.25,0,0,-1.25,346.87909,480.97823)"><g - id="g2840" - transform="matrix(0.09762902,0,0,0.09762902,-202.75728,115.54083)"><g - clip-path="url(#clipPath2844)" - id="g2842"><g - transform="scale(8.33333,8.33333)" - id="g2848" /></g></g> - - - <path - id="path3115" - d="m -242.61678,319.6165 c 0.704,-1.1168 1.9512,-1.8176 3.3904,-1.8176 1.3752,0 1.984,0.6704 2.7192,1.6896 l 34.8976,58.5576 c 1.216,1.5944 0.9264,4.1144 -0.544,5.5816 -0.832,0.8288 -1.792,1.212 -2.8792,1.148 l -69.1224,-0.032 c -0.7992,-0.1272 -1.5672,-0.5104 -2.1752,-1.116 -1.1832,-1.212 -1.4712,-2.9656 -0.864,-4.4656 l 34.5776,-59.5456 z" - style="fill:#ed1c24"/> - <path - id="path3117" - d="m -242.61678,319.6165 c 0.704,-1.1168 1.9512,-1.8176 3.3904,-1.8176 1.3752,0 1.984,0.6704 2.7192,1.6896 l 34.8976,58.5576 c 1.216,1.5944 0.9264,4.1144 -0.544,5.5816 -0.832,0.8296 -1.792,1.212 -2.8792,1.148 l -69.1224,-0.032 c -0.7992,-0.1272 -1.5672,-0.5104 -2.1752,-1.116 -1.1832,-1.212 -1.4712,-2.9656 -0.864,-4.4656 l 34.5776,-59.5456 z" - stroke-miterlimit="3.863" - style="fill:none;stroke:#ed1c24;stroke-width:0;stroke-miterlimit:3.86299992"/> - <polygon - id="polygon3119" - points="47.926,68.261 81.192,10.892 14.66,10.892 " - clip-rule="evenodd" - transform="matrix(0.8,0,0,-0.8,-277.50318,384.7821)" - style="fill:#ffffff;fill-rule:evenodd"/> - <polygon - id="polygon3121" - points="47.926,68.261 81.192,10.892 14.66,10.892 " - stroke-miterlimit="3.863" - transform="matrix(0.8,0,0,-0.8,-277.50318,384.7821)" - style="fill:none;stroke:#ed1c24;stroke-width:0;stroke-miterlimit:3.86299992"/> - <path - style="fill:#ffed45;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.31999999;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" - d="m -231.26354,357.69838 c -1.34367,0.12281 -2.52121,0.69462 -3.46633,1.68322 -0.998,1.04394 -1.53671,2.27606 -1.60888,3.67984 -0.0339,0.65964 0.11226,1.24682 0.51395,2.0645 0.57894,1.1785 1.43752,2.19077 2.29437,2.70506 0.10668,0.0641 0.31479,0.15627 0.46244,0.20495 0.52155,0.17194 0.62599,0.26164 0.62055,0.53293 -0.006,0.26596 -0.33704,0.82354 -0.7403,1.2444 -0.12913,0.13476 -0.16161,0.15184 -0.28886,0.15184 -0.16967,0 -0.31579,-0.0771 -0.958,-0.5056 -2.04063,-1.36152 -6.41288,-4.73175 -6.60552,-5.09169 -0.0559,-0.10455 -0.0285,-0.42985 0.0492,-0.58259 0.0315,-0.062 0.12797,-0.20932 0.21429,-0.32741 0.31765,-0.43453 0.41348,-0.73823 0.38564,-1.22219 -0.032,-0.55638 -0.20725,-0.9062 -0.6338,-1.26523 -0.51867,-0.43658 -0.64949,-0.45651 -1.37516,-0.20944 -0.27308,0.093 -0.50906,0.1534 -0.59909,0.1534 -0.24478,0 -0.41506,-0.14213 -0.83113,-0.69367 -0.82327,-1.09133 -1.74662,-1.78358 -2.92939,-2.19619 -0.60899,-0.21244 -0.95078,-0.26471 -1.73015,-0.26455 -0.73272,1.3e-4 -0.93055,0.0262 -1.49924,0.19736 -1.92475,0.57934 -3.4522,2.40105 -3.72021,4.43692 -0.30411,2.3101 1.01272,4.62854 3.15722,5.55867 0.64918,0.28156 1.19823,0.39229 2.06223,0.41592 0.76732,0.021 1.32941,-0.0495 1.88997,-0.23708 0.70208,-0.2349 1.19254,-0.54828 1.99128,-1.27237 0.52363,-0.4747 0.92806,-0.76798 1.03743,-0.75235 0.0574,0.008 0.0679,0.0305 0.0622,0.13141 -0.0225,0.38996 -0.5451,1.79029 -1.27378,3.41288 -0.39655,0.88303 -0.45502,0.99838 -0.67399,1.32971 -0.24305,0.36776 -0.39642,0.48005 -0.778,0.56964 -0.35042,0.0823 -0.51951,0.16055 -0.61842,0.28628 -0.16426,0.20883 -0.006,0.37121 0.43469,0.4444 0.39259,0.0653 3.63288,0.0655 3.99004,3.1e-4 0.30374,-0.0554 0.42221,-0.11317 0.46536,-0.22667 0.0531,-0.1398 -0.0206,-0.27007 -0.19734,-0.34823 -0.12228,-0.0541 -0.28608,-0.0742 -0.89427,-0.10965 -0.40952,-0.0239 -0.80194,-0.0602 -0.87206,-0.0805 -0.11725,-0.0341 -0.12596,-0.0447 -0.10851,-0.13201 0.10648,-0.53243 2.27576,-5.44935 2.40417,-5.44935 0.15339,0 0.83299,0.39345 1.84192,1.06636 0.91635,0.61116 1.72519,1.19134 4.07094,2.92004 l 1.83714,1.35389 1.84918,0.0223 c 2.38508,0.0288 2.55796,0.0498 2.81579,0.34273 0.15082,0.17134 0.32526,0.57007 0.37407,0.855 0.0282,0.16441 0.0242,0.24368 -0.0211,0.42763 -0.073,0.29561 -0.28752,0.73526 -0.42498,0.87079 -0.25047,0.24694 -0.44151,0.28458 -1.85986,0.36645 -1.21249,0.07 -1.53162,0.10049 -1.92144,0.18373 -0.23089,0.0493 -0.33407,0.1108 -0.29417,0.17536 0.0366,0.0592 0.46162,0.1317 1.0045,0.17138 0.69842,0.051 2.40993,0.0222 2.70529,-0.0456 0.34217,-0.0786 0.55789,-0.20879 0.78273,-0.47256 0.50948,-0.59769 0.72258,-1.2471 0.60028,-1.8293 -0.0842,-0.40068 -0.25149,-0.70122 -0.56153,-1.00855 -0.30557,-0.3029 -0.57152,-0.46469 -0.99823,-0.60726 -0.3324,-0.11107 -0.62458,-0.15262 -1.38578,-0.19709 -0.72069,-0.0421 -0.90676,-0.12032 -0.90536,-0.38058 8e-4,-0.18061 0.0813,-0.34664 0.32122,-0.66377 0.52666,-0.69617 0.97508,-0.97276 1.87468,-1.15631 0.72541,-0.14801 1.1711,-0.32548 1.78453,-0.71059 1.7548,-1.10164 2.62477,-2.72806 2.55011,-4.76748 -0.03,-0.81857 -0.19121,-1.47945 -0.53315,-2.18515 -0.29617,-0.61127 -0.67699,-1.08214 -1.25031,-1.54601 -1.20112,-0.97181 -2.72396,-1.52872 -3.88898,-1.42224 z" - id="path4186"/> - <path - style="fill:#ffed45;fill-opacity:1;stroke:#000000;stroke-width:0.31999999;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" - d="m -236.21364,351.37729 0.0849,2.17946 2.34342,-4.05028 -2.48076,-4.20684 0.0189,2.18003 -8.2238,0.17008 0.0334,3.86459 8.22401,-0.13708 0,-1e-5 0,5e-5 z" - id="path4222" - sodipodi:nodetypes="cccccccccc"/></g></svg> \ No newline at end of file +<?xml version="1.0" encoding="UTF-8" standalone="yes"?> +<svg xmlns="http://www.w3.org/2000/svg" width="374px" height="328px" viewBox="0 0 374 328" version="1.1"> + <g id="surface1"> + <path style=" stroke:none;fill-rule:nonzero;fill:rgb(92.941177%,10.980392%,14.117648%);fill-opacity:1;" d="M 170.21875 318.898438 C 173.652344 324.359375 179.734375 327.785156 186.757812 327.785156 C 193.464844 327.785156 196.4375 324.503906 200.023438 319.519531 L 370.292969 33.160156 C 376.230469 25.363281 374.816406 13.035156 367.640625 5.863281 C 363.582031 1.808594 358.898438 -0.0625 353.59375 0.246094 L 16.335938 0.402344 C 12.4375 1.027344 8.6875 2.898438 5.722656 5.863281 C -0.0507812 11.789062 -1.457031 20.367188 1.507812 27.703125 Z M 170.21875 318.898438 "/> + <path style=" stroke:none;fill-rule:evenodd;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 187.070312 267.273438 L 316.917969 42.828125 L 57.222656 42.828125 Z M 187.070312 267.273438 "/> + <path style="fill-rule:evenodd;fill:rgb(100%,92.941177%,27.058825%);fill-opacity:1;stroke-width:0.32;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:4;" d="M -231.263463 357.697782 C -232.606879 357.821592 -233.78457 358.392716 -234.730085 359.3816 C -235.728441 360.425599 -236.266448 361.658109 -236.339303 363.061557 C -236.372928 363.720546 -236.226417 364.308445 -235.825314 365.126391 C -235.245675 366.304584 -234.387426 367.316632 -233.529978 367.831043 C -233.423497 367.894945 -233.21534 367.987603 -233.068028 368.036329 C -232.546834 368.208065 -232.442755 368.297528 -232.447559 368.569112 C -232.453964 368.835104 -232.784614 369.392649 -233.187318 369.813603 C -233.316216 369.947798 -233.349841 369.964572 -233.476337 369.964572 C -233.646866 369.964572 -233.792576 369.887889 -234.434662 369.458947 C -236.475406 368.097834 -240.847513 364.727802 -241.039658 364.368353 C -241.095701 364.263714 -241.06848 363.937813 -240.990821 363.785247 C -240.959598 363.722943 -240.863525 363.575968 -240.776259 363.457749 C -240.458419 363.023216 -240.363147 362.719681 -240.391168 362.235623 C -240.423192 361.679676 -240.598525 361.329014 -241.024447 360.970364 C -241.543239 360.533434 -241.673738 360.513464 -242.399887 360.761085 C -242.672894 360.853742 -242.908272 360.914449 -242.999541 360.914449 C -243.244526 360.914449 -243.414255 360.772267 -243.830569 360.220314 C -244.652791 359.129187 -245.57669 358.436649 -246.759185 358.024481 C -247.368446 357.812007 -247.711105 357.760086 -248.489294 357.760086 C -249.222648 357.760086 -249.420398 357.786446 -249.988828 357.957384 C -251.914284 358.537294 -253.441039 360.358502 -253.709242 362.393781 C -254.013472 364.703839 -252.696476 367.022683 -250.551654 367.953256 C -249.903163 368.234425 -249.353948 368.345455 -248.489294 368.368619 C -247.723114 368.389387 -247.160288 368.319095 -246.599864 368.131383 C -245.896933 367.896543 -245.406962 367.583423 -244.607958 366.858934 C -244.084361 366.38526 -243.680056 366.091311 -243.571173 366.107287 C -243.51433 366.115274 -243.503122 366.13764 -243.508726 366.238286 C -243.531944 366.628887 -244.053938 368.02914 -244.78249 369.651452 C -245.178789 370.534099 -245.237234 370.649921 -245.456599 370.980614 C -245.699984 371.348849 -245.852899 371.461477 -246.234788 371.550141 C -246.585453 371.633213 -246.753581 371.711493 -246.853656 371.836901 C -247.01698 372.045381 -246.859261 372.208331 -246.418127 372.28102 C -246.02583 372.346519 -242.785779 372.346519 -242.428709 372.281819 C -242.124479 372.226703 -242.005989 372.169191 -241.962757 372.054966 C -241.909917 371.915181 -241.983572 371.78498 -242.160506 371.706701 C -242.282198 371.653183 -242.446322 371.633213 -243.054783 371.59647 C -243.463892 371.573305 -243.856989 371.536561 -243.926642 371.516592 C -244.043531 371.482245 -244.052337 371.471861 -244.034724 371.384794 C -243.929044 370.85281 -241.759403 365.93555 -241.630505 365.93555 C -241.47759 365.93555 -240.797875 366.328547 -239.789112 367.001915 C -238.872419 367.612978 -238.063807 368.193687 -235.718033 369.921438 L -233.880643 371.275362 L -232.031244 371.297728 C -229.64624 371.326484 -229.47411 371.34805 -229.216315 371.641201 C -229.065 371.81134 -228.891269 372.210728 -228.842432 372.49589 C -228.81361 372.660438 -228.817613 372.739517 -228.863248 372.923235 C -228.936103 373.218782 -229.150665 373.658108 -229.288369 373.7939 C -229.538959 374.040722 -229.729503 374.078264 -231.147375 374.160538 C -232.360293 374.23083 -232.678934 374.261183 -233.069629 374.344256 C -233.300204 374.39378 -233.403482 374.454487 -233.363452 374.519987 C -233.326624 374.579096 -232.901502 374.650986 -232.358692 374.690925 C -231.660564 374.741247 -229.948869 374.712491 -229.653445 374.645394 C -229.311587 374.567114 -229.095423 374.436115 -228.871254 374.172519 C -228.361268 373.575036 -228.148307 372.92643 -228.270799 372.343324 C -228.354863 371.943138 -228.521389 371.642799 -228.832024 371.334471 C -229.137855 371.031736 -229.403656 370.870383 -229.830379 370.727402 C -230.16263 370.617171 -230.454851 370.575635 -231.216227 370.530105 C -231.936772 370.488568 -232.122513 370.410288 -232.120912 370.149888 C -232.120111 369.969365 -232.040051 369.804018 -231.799869 369.486106 C -231.273871 368.790372 -230.825532 368.513996 -229.925651 368.330278 C -229.200302 368.181706 -228.754365 368.004378 -228.141101 367.619368 C -226.386174 366.517857 -225.515915 364.891551 -225.591172 362.851479 C -225.621595 362.033533 -225.781717 361.372148 -226.123575 360.666829 C -226.419799 360.054967 -226.801688 359.584489 -227.374922 359.121199 C -228.57583 358.14909 -230.098582 357.592343 -231.263463 357.697782 Z M -231.263463 357.697782 " transform="matrix(4.879119,0,0,-4.8903,1353.971313,1881.917358)"/> + <path style="fill-rule:nonzero;fill:rgb(100%,92.941177%,27.058825%);fill-opacity:1;stroke-width:0.32;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:4;" d="M -236.213608 351.377074 L -236.128743 353.556931 L -233.785371 349.506343 L -236.265647 345.299194 L -236.247233 347.479051 L -244.471054 347.649989 L -244.438229 351.514463 Z M -236.213608 351.377074 " transform="matrix(4.879119,0,0,-4.8903,1353.971313,1881.917358)"/> + </g> +</svg> \ No newline at end of file diff --git a/assets/layers/crossings/Belgian_road_sign_B23.svg b/assets/layers/crossings/Belgian_road_sign_B23.svg index c060016e8e..dd99779911 100644 --- a/assets/layers/crossings/Belgian_road_sign_B23.svg +++ b/assets/layers/crossings/Belgian_road_sign_B23.svg @@ -1,126 +1,9 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - xmlns="http://www.w3.org/2000/svg" - id="svg2816" - version="1.1" - inkscape:version="0.47 r22583" - width="95.81649" - height="83.729599" - xml:space="preserve" - sodipodi:docname="Belgio.pdf"><metadata - id="metadata2822"><rdf:RDF><cc:Work - rdf:about=""><dc:format>image/svg+xml</dc:format><dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage"/><dc:title></dc:title></cc:Work></rdf:RDF></metadata> - <defs - id="defs2820"><inkscape:perspective - sodipodi:type="inkscape:persp3d" - inkscape:vp_x="0 : 0.5 : 1" - inkscape:vp_y="0 : 1000 : 0" - inkscape:vp_z="1 : 0.5 : 1" - inkscape:persp3d-origin="0.5 : 0.33333333 : 1" - id="perspective2824" /> - <clipPath - clipPathUnits="userSpaceOnUse" - id="clipPath2844"><path - d="m 2562,672.668 3,0 0,-108 -3,0 0,108 z" - id="path2846" /></clipPath> - <clipPath - clipPathUnits="userSpaceOnUse" - id="clipPath2854"><path - d="m 731,6133.67 780,0 0,-679 -780,0 0,679 z" - id="path2856" /></clipPath> - <clipPath - clipPathUnits="userSpaceOnUse" - id="clipPath2892"><path - d="m 731,4841.67 780,0 0,-680 -780,0 0,680 z" - id="path2894" /></clipPath> - <clipPath - clipPathUnits="userSpaceOnUse" - id="clipPath3090"><path - d="m 731,2387.67 779,0 0,-684 -779,0" - id="path3092" /></clipPath> - <inkscape:perspective - id="perspective3129" - inkscape:persp3d-origin="47.908001 : 27.909665 : 1" - inkscape:vp_z="95.816002 : 41.864498 : 1" - inkscape:vp_y="0 : 1000 : 0" - inkscape:vp_x="0 : 41.864498 : 1" - sodipodi:type="inkscape:persp3d"/> - <inkscape:perspective - id="perspective4211" - inkscape:persp3d-origin="39.790001 : 26.495 : 1" - inkscape:vp_z="79.580002 : 39.7425 : 1" - inkscape:vp_y="0 : 1000 : 0" - inkscape:vp_x="0 : 39.7425 : 1" - sodipodi:type="inkscape:persp3d"/></defs> - <sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1600" - inkscape:window-height="838" - id="namedview2818" - showgrid="false" - inkscape:zoom="2.140677" - inkscape:cx="47.742493" - inkscape:cy="42.339324" - inkscape:window-x="0" - inkscape:window-y="0" - inkscape:window-maximized="1" - inkscape:current-layer="g2826"/> - <g - id="g2826" - inkscape:groupmode="layer" - inkscape:label="Belgio" - transform="matrix(1.25,0,0,-1.25,346.87909,480.97823)"><g - id="g2840" - transform="matrix(0.09762902,0,0,0.09762902,-202.75728,115.54083)"><g - clip-path="url(#clipPath2844)" - id="g2842"><g - transform="scale(8.33333,8.33333)" - id="g2848" /></g></g> - - - <g - id="g4226"><path - style="fill:#ed1c24" - d="m -242.61678,319.6165 c 0.704,-1.1168 1.9512,-1.8176 3.3904,-1.8176 1.3752,0 1.984,0.6704 2.7192,1.6896 l 34.8976,58.5576 c 1.216,1.5944 0.9264,4.1144 -0.544,5.5816 -0.832,0.8288 -1.792,1.212 -2.8792,1.148 l -69.1224,-0.032 c -0.7992,-0.1272 -1.5672,-0.5104 -2.1752,-1.116 -1.1832,-1.212 -1.4712,-2.9656 -0.864,-4.4656 l 34.5776,-59.5456 z" - id="path3115" /> - <path - style="fill:none;stroke:#ed1c24;stroke-width:0;stroke-miterlimit:3.86299992" - stroke-miterlimit="3.863" - d="m -242.61678,319.6165 c 0.704,-1.1168 1.9512,-1.8176 3.3904,-1.8176 1.3752,0 1.984,0.6704 2.7192,1.6896 l 34.8976,58.5576 c 1.216,1.5944 0.9264,4.1144 -0.544,5.5816 -0.832,0.8296 -1.792,1.212 -2.8792,1.148 l -69.1224,-0.032 c -0.7992,-0.1272 -1.5672,-0.5104 -2.1752,-1.116 -1.1832,-1.212 -1.4712,-2.9656 -0.864,-4.4656 l 34.5776,-59.5456 z" - id="path3117"/> - <polygon - style="fill:#ffffff;fill-rule:evenodd" - transform="matrix(0.8,0,0,-0.8,-277.50318,384.7821)" - clip-rule="evenodd" - points="81.192,10.892 14.66,10.892 47.926,68.261 " - id="polygon3119"/> - <polygon - style="fill:none;stroke:#ed1c24;stroke-width:0;stroke-miterlimit:3.86299992" - transform="matrix(0.8,0,0,-0.8,-277.50318,384.7821)" - stroke-miterlimit="3.863" - points="81.192,10.892 14.66,10.892 47.926,68.261 " - id="polygon3121"/> - <path - id="path4186" - d="m -231.26354,357.69838 c -1.34367,0.12281 -2.52121,0.69462 -3.46633,1.68322 -0.998,1.04394 -1.53671,2.27606 -1.60888,3.67984 -0.0339,0.65964 0.11226,1.24682 0.51395,2.0645 0.57894,1.1785 1.43752,2.19077 2.29437,2.70506 0.10668,0.0641 0.31479,0.15627 0.46244,0.20495 0.52155,0.17194 0.62599,0.26164 0.62055,0.53293 -0.006,0.26596 -0.33704,0.82354 -0.7403,1.2444 -0.12913,0.13476 -0.16161,0.15184 -0.28886,0.15184 -0.16967,0 -0.31579,-0.0771 -0.958,-0.5056 -2.04063,-1.36152 -6.41288,-4.73175 -6.60552,-5.09169 -0.0559,-0.10455 -0.0285,-0.42985 0.0492,-0.58259 0.0315,-0.062 0.12797,-0.20932 0.21429,-0.32741 0.31765,-0.43453 0.41348,-0.73823 0.38564,-1.22219 -0.032,-0.55638 -0.20725,-0.9062 -0.6338,-1.26523 -0.51867,-0.43658 -0.64949,-0.45651 -1.37516,-0.20944 -0.27308,0.093 -0.50906,0.1534 -0.59909,0.1534 -0.24478,0 -0.41506,-0.14213 -0.83113,-0.69367 -0.82327,-1.09133 -1.74662,-1.78358 -2.92939,-2.19619 -0.60899,-0.21244 -0.95078,-0.26471 -1.73015,-0.26455 -0.73272,1.3e-4 -0.93055,0.0262 -1.49924,0.19736 -1.92475,0.57934 -3.4522,2.40105 -3.72021,4.43692 -0.30411,2.3101 1.01272,4.62854 3.15722,5.55867 0.64918,0.28156 1.19823,0.39229 2.06223,0.41592 0.76732,0.021 1.32941,-0.0495 1.88997,-0.23708 0.70208,-0.2349 1.19254,-0.54828 1.99128,-1.27237 0.52363,-0.4747 0.92806,-0.76798 1.03743,-0.75235 0.0574,0.008 0.0679,0.0305 0.0622,0.13141 -0.0225,0.38996 -0.5451,1.79029 -1.27378,3.41288 -0.39655,0.88303 -0.45502,0.99838 -0.67399,1.32971 -0.24305,0.36776 -0.39642,0.48005 -0.778,0.56964 -0.35042,0.0823 -0.51951,0.16055 -0.61842,0.28628 -0.16426,0.20883 -0.006,0.37121 0.43469,0.4444 0.39259,0.0653 3.63288,0.0655 3.99004,3.1e-4 0.30374,-0.0554 0.42221,-0.11317 0.46536,-0.22667 0.0531,-0.1398 -0.0206,-0.27007 -0.19734,-0.34823 -0.12228,-0.0541 -0.28608,-0.0742 -0.89427,-0.10965 -0.40952,-0.0239 -0.80194,-0.0602 -0.87206,-0.0805 -0.11725,-0.0341 -0.12596,-0.0447 -0.10851,-0.13201 0.10648,-0.53243 2.27576,-5.44935 2.40417,-5.44935 0.15339,0 0.83299,0.39345 1.84192,1.06636 0.91635,0.61116 1.72519,1.19134 4.07094,2.92004 l 1.83714,1.35389 1.84918,0.0223 c 2.38508,0.0288 2.55796,0.0498 2.81579,0.34273 0.15082,0.17134 0.32526,0.57007 0.37407,0.855 0.0282,0.16441 0.0242,0.24368 -0.0211,0.42763 -0.073,0.29561 -0.28752,0.73526 -0.42498,0.87079 -0.25047,0.24694 -0.44151,0.28458 -1.85986,0.36645 -1.21249,0.07 -1.53162,0.10049 -1.92144,0.18373 -0.23089,0.0493 -0.33407,0.1108 -0.29417,0.17536 0.0366,0.0592 0.46162,0.1317 1.0045,0.17138 0.69842,0.051 2.40993,0.0222 2.70529,-0.0456 0.34217,-0.0786 0.55789,-0.20879 0.78273,-0.47256 0.50948,-0.59769 0.72258,-1.2471 0.60028,-1.8293 -0.0842,-0.40068 -0.25149,-0.70122 -0.56153,-1.00855 -0.30557,-0.3029 -0.57152,-0.46469 -0.99823,-0.60726 -0.3324,-0.11107 -0.62458,-0.15262 -1.38578,-0.19709 -0.72069,-0.0421 -0.90676,-0.12032 -0.90536,-0.38058 8e-4,-0.18061 0.0813,-0.34664 0.32122,-0.66377 0.52666,-0.69617 0.97508,-0.97276 1.87468,-1.15631 0.72541,-0.14801 1.1711,-0.32548 1.78453,-0.71059 1.7548,-1.10164 2.62477,-2.72806 2.55011,-4.76748 -0.03,-0.81857 -0.19121,-1.47945 -0.53315,-2.18515 -0.29617,-0.61127 -0.67699,-1.08214 -1.25031,-1.54601 -1.20112,-0.97181 -2.72396,-1.52872 -3.88898,-1.42224 z" - style="fill:#ffed45;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.31999999;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0"/> - <path - sodipodi:nodetypes="cccccccccc" - id="path4222" - d="m -241.06949,349.14367 -2.18011,0.0661 4.0299,2.37829 4.22809,-2.44436 -2.18011,4e-5 -0.0991,-8.22496 -3.86473,10e-6 0.0661,8.22488 1e-5,0 -5e-5,0 z" - style="fill:#ffed45;fill-opacity:1;stroke:#000000;stroke-width:0.31999999;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"/></g></g></svg> \ No newline at end of file +<?xml version="1.0" encoding="UTF-8" standalone="yes"?> +<svg xmlns="http://www.w3.org/2000/svg" width="374px" height="328px" viewBox="0 0 374 328" version="1.1"> + <g id="surface1"> + <path style=" stroke:none;fill-rule:nonzero;fill:rgb(92.941177%,10.980392%,14.117648%);fill-opacity:1;" d="M 170.21875 318.898438 C 173.652344 324.359375 179.734375 327.785156 186.757812 327.785156 C 193.464844 327.785156 196.4375 324.503906 200.023438 319.519531 L 370.292969 33.160156 C 376.230469 25.363281 374.816406 13.035156 367.640625 5.863281 C 363.582031 1.808594 358.898438 -0.0625 353.59375 0.246094 L 16.335938 0.402344 C 12.4375 1.027344 8.6875 2.898438 5.722656 5.863281 C -0.0507812 11.789062 -1.457031 20.367188 1.507812 27.703125 Z M 170.21875 318.898438 "/> + <path style=" stroke:none;fill-rule:evenodd;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 316.917969 42.828125 L 57.222656 42.828125 L 187.070312 267.273438 Z M 316.917969 42.828125 "/> + <path style="fill-rule:evenodd;fill:rgb(100%,92.941177%,27.058825%);fill-opacity:1;stroke-width:0.32;stroke-linecap:round;stroke-linejoin:round;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:4;" d="M -231.263463 357.697782 C -232.606879 357.821592 -233.78457 358.392716 -234.730085 359.3816 C -235.728441 360.425599 -236.266448 361.658109 -236.339303 363.061557 C -236.372928 363.720546 -236.226417 364.308445 -235.825314 365.126391 C -235.245675 366.304584 -234.387426 367.316632 -233.529978 367.831043 C -233.423497 367.894945 -233.21534 367.987603 -233.068028 368.036329 C -232.546834 368.208065 -232.442755 368.297528 -232.447559 368.569112 C -232.453964 368.835104 -232.784614 369.392649 -233.187318 369.813603 C -233.316216 369.947798 -233.349841 369.964572 -233.476337 369.964572 C -233.646866 369.964572 -233.792576 369.887889 -234.434662 369.458947 C -236.475406 368.097834 -240.847513 364.727802 -241.039658 364.368353 C -241.095701 364.263714 -241.06848 363.937813 -240.990821 363.785247 C -240.959598 363.722943 -240.863525 363.575968 -240.776259 363.457749 C -240.458419 363.023216 -240.363147 362.719681 -240.391168 362.235623 C -240.423192 361.679676 -240.598525 361.329014 -241.024447 360.970364 C -241.543239 360.533434 -241.673738 360.513464 -242.399887 360.761085 C -242.672894 360.853742 -242.908272 360.914449 -242.999541 360.914449 C -243.244526 360.914449 -243.414255 360.772267 -243.830569 360.220314 C -244.652791 359.129187 -245.57669 358.436649 -246.759185 358.024481 C -247.368446 357.812007 -247.711105 357.760086 -248.489294 357.760086 C -249.222648 357.760086 -249.420398 357.786446 -249.988828 357.957384 C -251.914284 358.537294 -253.441039 360.358502 -253.709242 362.393781 C -254.013472 364.703839 -252.696476 367.022683 -250.551654 367.953256 C -249.903163 368.234425 -249.353948 368.345455 -248.489294 368.368619 C -247.723114 368.389387 -247.160288 368.319095 -246.599864 368.131383 C -245.896933 367.896543 -245.406962 367.583423 -244.607958 366.858934 C -244.084361 366.38526 -243.680056 366.091311 -243.571173 366.107287 C -243.51433 366.115274 -243.503122 366.13764 -243.508726 366.238286 C -243.531944 366.628887 -244.053938 368.02914 -244.78249 369.651452 C -245.178789 370.534099 -245.237234 370.649921 -245.456599 370.980614 C -245.699984 371.348849 -245.852899 371.461477 -246.234788 371.550141 C -246.585453 371.633213 -246.753581 371.711493 -246.853656 371.836901 C -247.01698 372.045381 -246.859261 372.208331 -246.418127 372.28102 C -246.02583 372.346519 -242.785779 372.346519 -242.428709 372.281819 C -242.124479 372.226703 -242.005989 372.169191 -241.962757 372.054966 C -241.909917 371.915181 -241.983572 371.78498 -242.160506 371.706701 C -242.282198 371.653183 -242.446322 371.633213 -243.054783 371.59647 C -243.463892 371.573305 -243.856989 371.536561 -243.926642 371.516592 C -244.043531 371.482245 -244.052337 371.471861 -244.034724 371.384794 C -243.929044 370.85281 -241.759403 365.93555 -241.630505 365.93555 C -241.47759 365.93555 -240.797875 366.328547 -239.789112 367.001915 C -238.872419 367.612978 -238.063807 368.193687 -235.718033 369.921438 L -233.880643 371.275362 L -232.031244 371.297728 C -229.64624 371.326484 -229.47411 371.34805 -229.216315 371.641201 C -229.065 371.81134 -228.891269 372.210728 -228.842432 372.49589 C -228.81361 372.660438 -228.817613 372.739517 -228.863248 372.923235 C -228.936103 373.218782 -229.150665 373.658108 -229.288369 373.7939 C -229.538959 374.040722 -229.729503 374.078264 -231.147375 374.160538 C -232.360293 374.23083 -232.678934 374.261183 -233.069629 374.344256 C -233.300204 374.39378 -233.403482 374.454487 -233.363452 374.519987 C -233.326624 374.579096 -232.901502 374.650986 -232.358692 374.690925 C -231.660564 374.741247 -229.948869 374.712491 -229.653445 374.645394 C -229.311587 374.567114 -229.095423 374.436115 -228.871254 374.172519 C -228.361268 373.575036 -228.148307 372.92643 -228.270799 372.343324 C -228.354863 371.943138 -228.521389 371.642799 -228.832024 371.334471 C -229.137855 371.031736 -229.403656 370.870383 -229.830379 370.727402 C -230.16263 370.617171 -230.454851 370.575635 -231.216227 370.530105 C -231.936772 370.488568 -232.122513 370.410288 -232.120912 370.149888 C -232.120111 369.969365 -232.040051 369.804018 -231.799869 369.486106 C -231.273871 368.790372 -230.825532 368.513996 -229.925651 368.330278 C -229.200302 368.181706 -228.754365 368.004378 -228.141101 367.619368 C -226.386174 366.517857 -225.515915 364.891551 -225.591172 362.851479 C -225.621595 362.033533 -225.781717 361.372148 -226.123575 360.666829 C -226.419799 360.054967 -226.801688 359.584489 -227.374922 359.121199 C -228.57583 358.14909 -230.098582 357.592343 -231.263463 357.697782 Z M -231.263463 357.697782 " transform="matrix(4.879119,0,0,-4.8903,1353.971313,1881.917358)"/> + <path style="fill-rule:nonzero;fill:rgb(100%,92.941177%,27.058825%);fill-opacity:1;stroke-width:0.32;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:4;" d="M -241.069281 349.143699 L -243.25013 349.209997 L -239.219882 351.587951 L -234.991884 349.143699 L -237.171132 349.143699 L -237.271208 340.918711 L -241.135731 340.918711 Z M -241.069281 349.143699 " transform="matrix(4.879119,0,0,-4.8903,1353.971313,1881.917358)"/> + </g> +</svg> \ No newline at end of file diff --git a/assets/layers/crossings/crossings.json b/assets/layers/crossings/crossings.json index 984545be69..dd6a4f7b5c 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" + } } ] }, @@ -273,7 +289,7 @@ "then": { "en": "This traffic light does not have a button to request green light", "nl": "Dit verkeerlicht heeft geen knop voor groen licht", - "de": "Diese Ampel hat keine Taste, um ein grünes Signal anzufordern." + "de": "Diese Ampel hat keine Taste, um ein grünes Signal anzufordern" } } ] @@ -290,11 +306,15 @@ { "if": "red_turn:right:bicycle=yes", "then": { - "en": "A cyclist can turn right if the light is red <img src='./assets/layers/crossings/Belgian_road_sign_B22.svg' style='width: 3em'>", - "nl": "Een fietser mag wel rechtsaf slaan als het licht rood is <img src='./assets/layers/crossings/Belgian_road_sign_B22.svg' style='width: 3em'>", - "de": "Ein Radfahrer kann bei roter Ampel rechts abbiegen <img src='./assets/layers/crossings/Belgian_road_sign_B22.svg' style='width: 3em'>" + "en": "A cyclist can turn right if the light is red", + "nl": "Een fietser mag wel rechtsaf slaan als het licht rood is", + "de": "Ein Radfahrer kann bei roter Ampel rechts abbiegen" }, - "hideInAnswer": "_country!=be" + "hideInAnswer": "_country!=be", + "icon": { + "path": "./assets/layers/crossings/Belgian_road_sign_B22.svg", + "class": "medium" + } }, { "if": "red_turn:right:bicycle=yes", @@ -327,11 +347,15 @@ { "if": "red_turn:straight:bicycle=yes", "then": { - "en": "A cyclist can go straight on if the light is red <img src='./assets/layers/crossings/Belgian_road_sign_B23.svg' style='width: 3em'>", - "nl": "Een fietser mag wel rechtdoor gaan als het licht rood is <img src='./assets/layers/crossings/Belgian_road_sign_B23.svg' style='width: 3em'>", - "de": "Ein Radfahrer kann bei roter Ampel geradeaus fahren <img src='./assets/layers/crossings/Belgian_road_sign_B23.svg' style='width: 3em'>" + "en": "A cyclist can go straight on if the light is red", + "nl": "Een fietser mag wel rechtdoor gaan als het licht rood is", + "de": "Ein Radfahrer kann bei roter Ampel geradeaus fahren" }, - "hideInAnswer": "_country!=be" + "hideInAnswer": "_country!=be", + "icon": { + "path": "./assets/layers/crossings/Belgian_road_sign_B23.svg", + "class": "medium" + } }, { "if": "red_turn:straight:bicycle=yes", diff --git a/assets/layers/crossings/pedestrian_crossing.svg b/assets/layers/crossings/pedestrian_crossing.svg index 334e48d674..bfd5532088 100644 --- a/assets/layers/crossings/pedestrian_crossing.svg +++ b/assets/layers/crossings/pedestrian_crossing.svg @@ -1,23 +1,11 @@ -<?xml version="1.0" encoding="UTF-8"?> -<svg version="1.1" viewBox="0 0 128 128" xmlns="http://www.w3.org/2000/svg"> - <path d="m128 64c0 35.346-28.654 64-64 64-35.346 0-64-28.654-64-64 0-35.346 28.654-64 64-64 35.346 0 64 28.654 64 64" - fill="#529add" stroke-width=".2"/> - <path d="m92.422 79.992 16.697 29.377c3.0226-3.0054 5.7459-6.3104 8.123-9.8672l-14.854-19.51zm-66.023 0.007812-15.354 19.957c2.4026 3.5304 5.1551 6.8008 8.1973 9.7773l17.156-29.734zm17.029 0-16.107 36.416c1.8389 1.2898 3.7449 2.4898 5.7188 3.584h8.9609l11-40zm15.572 0-4.0176 40.004h18l-3.9824-40.004zm16.504 0 10.5 40h8.9961c2.327-1.29 4.5634-2.7231 6.7012-4.2832l-16.02-35.717z" - fill-opacity=".2" style="paint-order:stroke fill markers"/> - <path d="m59.018 75.996-4.0176 40.004h18l-3.9824-40.004zm-32.59 0.003906-16.77 21.799c2.3519 3.7733 5.0886 7.2789 8.1504 10.473l18.619-32.271zm17 0-17.459 39.471 1.0312 0.5293h15l11-40zm32.072 0 10.5 40h15l2.0352-1.2988-17.357-38.701zm16.941 0 18.121 31.881c3.0397-3.2242 5.7588-6.7537 8.082-10.555l-16.236-21.326z" - fill="#fff" style="paint-order:stroke fill markers"/> - <g shape-rendering="auto"> - <path d="m71.299 17.922c-6.887 0-12.545 5.655-12.545 12.543 0 3.3248 1.3636 6.3273 3.502 8.5801-0.80144 0.22851-1.5812 0.5488-2.3047 0.99414l0.58984-0.28906c-4.9491 1.851-9.5049 4.3883-12.953 8.041-3.4482 3.6527-5.6738 8.5251-5.7207 14.236v0.02734c0 4.3407 3.5924 7.9316 7.9316 7.9316 1.4032 0 2.6595-0.47614 3.8105-1.1309-1.0607 2.5391-2.982 4.8594-5.3965 6.9102-3.1794 2.7004-7.0921 4.8263-10.18 6.2305-3.9679 1.7629-5.7943 6.5041-4.0312 10.473v2e-3c1.7636 3.9663 6.504 5.7926 10.473 4.0293l0.09766-0.04297 0.09375-0.04883c7.8911-4.1097 17.996-10.303 22.869-19.449 5.0514 3.4579 9.5237 9.0918 10.295 13.514l-0.017581-0.10356c0.61316 4.3 4.6807 7.343 8.9766 6.7305 4.2955-0.61376 7.3465-4.6749 6.7324-8.9727l-0.0118-0.08204c-2.0863-12.414-10.688-21.564-21.055-26.787-0.01225-0.01706-0.06233-0.07308-0.15039-0.24805-0.11944-0.2373-0.23873-0.7591-0.36133-1.2051 7.4762 3.0887 15.486 4.0441 23.312 0.20312l0.01172-0.0059 0.01172-0.0039c3.8853-1.9415 5.4873-6.7625 3.5469-10.645v-2e-3c-1.9409-3.8803-6.759-5.4882-10.641-3.5468-4.163 2.0536-6.7656 1.5075-9.6387 0.13281-1.6546-0.79165-3.2845-1.954-4.957-3.1621 5.8039-1.0901 10.252-6.207 10.252-12.311 0-6.8876-5.6554-12.543-12.543-12.543z" - color="#000000" color-rendering="auto" dominant-baseline="auto" fill-opacity=".18824" - image-rendering="auto" solid-color="#000000" stop-color="#000000" - style="font-feature-settings:normal;font-variant-alternates:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-variant-ligatures:normal;font-variant-numeric:normal;font-variant-position:normal;font-variation-settings:normal;inline-size:0;isolation:auto;mix-blend-mode:normal;paint-order:stroke fill markers;shape-margin:0;shape-padding:0;text-decoration-color:#000000;text-decoration-line:none;text-decoration-style:solid;text-indent:0;text-orientation:mixed;text-transform:none;white-space:normal"/> - <path d="m71.781 14.625c-6.671 0-12.143 5.4725-12.143 12.145 0 3.4881 1.5174 6.6223 3.8984 8.8438-0.88458 0.17673-1.746 0.4518-2.5488 0.88477-4.8413 1.8308-9.2786 4.3242-12.627 7.8711-3.3897 3.5907-5.5652 8.35-5.6113 13.965v0.0254c0 4.1249 3.4097 7.5312 7.5332 7.5312 1.7136 0 3.2302-0.68653 4.5039-1.6699-0.9587 3.044-3.0545 5.7932-5.832 8.1523-3.2238 2.7381-7.168 4.8773-10.277 6.291-3.7706 1.6752-5.5034 6.1761-3.8281 9.9473h0.0016c1.6759 3.7691 6.1742 5.5037 9.9453 3.8281l0.08397-0.03909 0.08397-0.043c7.9725-4.1521 18.147-10.47 22.873-19.682 5.3039 3.4687 10.048 9.3267 10.869 14.033l-0.01563-0.09375c0.58265 4.086 4.4431 6.9747 8.5254 6.3926 4.082-0.58325 6.9761-4.4374 6.3926-8.5215l-0.0042-0.03711-0.0077-0.03711c-2.063-12.275-10.566-21.323-20.852-26.502l-0.08201-0.04102-0.08397-0.03711c0.19424 0.08344 0.06977 0.09376-0.14844-0.33984-0.21824-0.4336-0.46052-1.1958-0.61914-2.0508-0.0042-0.02286 0.0026-0.03949-0.0016-0.0625 7.6188 3.3262 15.77 4.489 23.752 0.57227l0.01173-2e-3 0.0098-0.0059c3.6919-1.8449 5.2131-6.4203 3.3691-10.109l-0.0016-0.0021c-1.8445-3.6875-6.4149-5.2102-10.104-3.3652-4.2669 2.1057-7.0441 1.5444-9.9902 0.13476-1.9932-0.95368-3.9283-2.3906-5.918-3.8086 6.1272-0.59675 10.986-5.7478 10.986-12.023 0-6.6716-5.4729-12.145-12.145-12.145z" - color="#000000" color-rendering="auto" dominant-baseline="auto" fill="#529add" image-rendering="auto" - solid-color="#000000" stop-color="#000000" - style="font-feature-settings:normal;font-variant-alternates:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-variant-ligatures:normal;font-variant-numeric:normal;font-variant-position:normal;font-variation-settings:normal;inline-size:0;isolation:auto;mix-blend-mode:normal;paint-order:stroke fill markers;shape-margin:0;shape-padding:0;text-decoration-color:#000000;text-decoration-line:none;text-decoration-style:solid;text-indent:0;text-orientation:mixed;text-transform:none;white-space:normal"/> - <path d="m71.782 17.624c-5.0493 0-9.1445 4.0943-9.1445 9.1445 0 5.0502 4.0952 9.1428 9.1445 9.1428 5.0502 0 9.1445-4.0926 9.1445-9.1428 0-5.0502-4.0943-9.1445-9.1445-9.1445zm-9.5661 21.614c-9.2519 3.4603-16.386 9.3397-16.466 19.121 0 2.5039 2.0294 4.5316 4.5332 4.5316 2.5044 0 4.5343-2.0279 4.5349-4.5316 0.07516-2.4998 1.135-4.6219 2.6841-6.3176 0.04866 2.2271 0.40401 4.7273 1.1702 7.5012-0.47188 0.78559-0.66893 1.9679-0.48304 3.6966-1.5998 9.2061-11.749 15.196-18.292 18.168-2.2886 1.0168-3.3206 3.6972-2.304 5.9857 1.0175 2.2884 3.6972 3.3208 5.9857 2.304 8.6826-4.522 19.726-11.816 22.905-21.393 7.2127 3.3625 13.962 10.917 15.178 17.889 0.3535 2.479 2.6518 4.1995 5.1308 3.846 2.479-0.35422 4.2019-2.6484 3.8477-5.1275-1.8805-11.189-9.6066-19.469-19.243-24.321-2.7914-1.1991-3.0124-7.7148-2.8551-10.064 8.4551 4.7998 17.123 6.9431 25.701 2.7339 2.2402-1.1194 3.1462-3.844 2.0268-6.0836-1.1202-2.2394-3.8407-3.1469-6.0803-2.0268-10.082 4.9845-16.362-2.6485-21.667-5.7383-1.8977-1.3294-4.4203-1.3334-6.306-0.17263z" - color="#000000" color-rendering="auto" dominant-baseline="auto" fill="#fff" image-rendering="auto" - solid-color="#000000" stop-color="#000000" - style="font-feature-settings:normal;font-variant-alternates:normal;font-variant-caps:normal;font-variant-east-asian:normal;font-variant-ligatures:normal;font-variant-numeric:normal;font-variant-position:normal;font-variation-settings:normal;inline-size:0;isolation:auto;mix-blend-mode:normal;paint-order:stroke fill markers;shape-margin:0;shape-padding:0;text-decoration-color:#000000;text-decoration-line:none;text-decoration-style:solid;text-indent:0;text-orientation:mixed;text-transform:none;white-space:normal"/> - </g> -</svg> +<?xml version="1.0" encoding="UTF-8" standalone="yes"?> +<svg xmlns="http://www.w3.org/2000/svg" width="375px" height="375px" viewBox="0 0 375 375" version="1.1"> + <g id="surface1"> + <path style=" stroke:none;fill-rule:nonzero;fill:rgb(32.156864%,60.392159%,86.666667%);fill-opacity:1;" d="M 375 187.5 C 375 291.054688 291.054688 375 187.5 375 C 83.949219 375 0 291.054688 0 187.5 C 0 83.949219 83.949219 0 187.5 0 C 291.054688 0 375 83.949219 375 187.5 "/> + <path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:0.2;" d="M 270.765625 234.351562 L 319.683594 320.417969 C 328.539062 311.613281 336.519531 301.929688 343.484375 291.507812 L 299.964844 234.351562 Z M 77.339844 234.375 L 32.359375 292.84375 C 39.398438 303.183594 47.460938 312.765625 56.375 321.488281 L 106.636719 234.375 Z M 127.230469 234.375 L 80.042969 341.0625 C 85.429688 344.839844 91.011719 348.355469 96.796875 351.5625 L 123.050781 351.5625 L 155.277344 234.375 Z M 172.851562 234.375 L 161.082031 351.574219 L 213.816406 351.574219 L 202.148438 234.375 Z M 221.203125 234.375 L 251.964844 351.5625 L 278.320312 351.5625 C 285.136719 347.78125 291.691406 343.585938 297.953125 339.011719 L 251.019531 234.375 Z M 221.203125 234.375 "/> + <path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 172.90625 222.644531 L 161.132812 339.84375 L 213.867188 339.84375 L 202.203125 222.644531 Z M 77.425781 222.65625 L 28.292969 286.519531 C 35.183594 297.574219 43.203125 307.84375 52.171875 317.203125 L 106.722656 222.660156 Z M 127.230469 222.65625 L 76.082031 338.292969 L 79.101562 339.84375 L 123.046875 339.84375 L 155.273438 222.65625 Z M 221.191406 222.65625 L 251.953125 339.84375 L 295.898438 339.84375 L 301.859375 336.039062 L 251.011719 222.65625 Z M 270.824219 222.65625 L 323.914062 316.058594 C 332.816406 306.613281 340.785156 296.269531 347.589844 285.132812 L 300.023438 222.65625 Z M 270.824219 222.65625 "/> + <path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:0.18824;" d="M 208.882812 52.503906 C 188.707031 52.503906 172.132812 69.074219 172.132812 89.253906 C 172.132812 98.992188 176.125 107.789062 182.390625 114.390625 C 180.042969 115.058594 177.757812 115.996094 175.636719 117.300781 L 177.367188 116.457031 C 162.867188 121.878906 149.519531 129.3125 139.417969 140.011719 C 129.316406 150.714844 122.796875 164.988281 122.660156 181.71875 L 122.660156 181.800781 C 122.660156 194.515625 133.183594 205.039062 145.894531 205.039062 C 150.007812 205.039062 153.6875 203.640625 157.058594 201.722656 C 153.953125 209.164062 148.324219 215.960938 141.25 221.96875 C 131.933594 229.878906 120.472656 236.109375 111.425781 240.222656 C 99.800781 245.386719 94.449219 259.277344 99.613281 270.90625 L 99.613281 270.910156 C 104.78125 282.53125 118.667969 287.882812 130.296875 282.714844 L 130.582031 282.589844 L 130.859375 282.445312 C 153.976562 270.40625 183.582031 252.261719 197.855469 225.46875 C 212.65625 235.597656 225.757812 252.101562 228.019531 265.058594 L 227.96875 264.753906 C 229.761719 277.351562 241.679688 286.269531 254.265625 284.472656 C 266.851562 282.675781 275.789062 270.777344 273.988281 258.1875 L 273.953125 257.945312 C 267.84375 221.578125 242.640625 194.769531 212.269531 179.46875 C 212.234375 179.417969 212.085938 179.253906 211.828125 178.742188 C 211.480469 178.046875 211.128906 176.519531 210.769531 175.210938 C 232.675781 184.261719 256.140625 187.058594 279.066406 175.804688 L 279.101562 175.789062 L 279.136719 175.777344 C 290.519531 170.089844 295.210938 155.964844 289.527344 144.589844 L 289.527344 144.585938 C 283.839844 133.21875 269.726562 128.507812 258.351562 134.195312 C 246.15625 140.210938 238.53125 138.609375 230.113281 134.582031 C 225.265625 132.265625 220.492188 128.859375 215.59375 125.320312 C 232.597656 122.125 245.628906 107.136719 245.628906 89.253906 C 245.628906 69.074219 229.058594 52.503906 208.878906 52.503906 Z M 208.882812 52.503906 "/> + <path style=" stroke:none;fill-rule:nonzero;fill:rgb(32.156864%,60.392159%,86.666667%);fill-opacity:1;" d="M 210.296875 42.847656 C 190.75 42.847656 174.722656 58.878906 174.722656 78.429688 C 174.722656 88.648438 179.167969 97.828125 186.140625 104.335938 C 183.550781 104.855469 181.027344 105.660156 178.675781 106.929688 C 164.492188 112.292969 151.492188 119.597656 141.679688 129.988281 C 131.75 140.507812 125.378906 154.453125 125.242188 170.902344 L 125.242188 170.976562 C 125.242188 183.0625 135.230469 193.039062 147.3125 193.039062 C 152.332031 193.039062 156.777344 191.03125 160.507812 188.148438 C 157.699219 197.066406 151.558594 205.121094 143.421875 212.03125 C 133.976562 220.054688 122.421875 226.320312 113.3125 230.464844 C 102.265625 235.371094 97.191406 248.558594 102.097656 259.605469 L 102.101562 259.605469 C 107.011719 270.648438 120.191406 275.730469 131.238281 270.820312 L 131.484375 270.707031 L 131.730469 270.578125 C 155.085938 258.414062 184.894531 239.90625 198.742188 212.917969 C 214.28125 223.082031 228.179688 240.242188 230.585938 254.03125 L 230.539062 253.753906 C 232.246094 265.726562 243.554688 274.1875 255.515625 272.484375 C 267.472656 270.773438 275.953125 259.484375 274.242188 247.519531 L 274.230469 247.410156 L 274.207031 247.300781 C 268.164062 211.339844 243.253906 184.832031 213.117188 169.660156 L 212.878906 169.539062 L 212.632812 169.429688 C 213.203125 169.675781 212.835938 169.703125 212.199219 168.433594 C 211.558594 167.164062 210.847656 164.929688 210.382812 162.425781 C 210.371094 162.359375 210.390625 162.308594 210.378906 162.242188 C 232.699219 171.988281 256.582031 175.394531 279.964844 163.917969 L 280 163.914062 L 280.027344 163.894531 C 290.84375 158.492188 295.300781 145.085938 289.898438 134.28125 L 289.894531 134.273438 C 284.488281 123.46875 271.101562 119.007812 260.292969 124.414062 C 247.792969 130.582031 239.65625 128.9375 231.023438 124.808594 C 225.183594 122.015625 219.515625 117.804688 213.6875 113.652344 C 231.636719 111.902344 245.871094 96.8125 245.871094 78.429688 C 245.871094 58.882812 229.839844 42.847656 210.289062 42.847656 Z M 210.296875 42.847656 "/> + <path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 210.296875 51.632812 C 195.507812 51.632812 183.507812 63.628906 183.507812 78.421875 C 183.507812 93.21875 195.507812 105.207031 210.296875 105.207031 C 225.09375 105.207031 237.089844 93.21875 237.089844 78.421875 C 237.089844 63.628906 225.09375 51.632812 210.296875 51.632812 Z M 182.273438 114.957031 C 155.167969 125.09375 134.265625 142.316406 134.03125 170.972656 C 134.03125 178.308594 139.976562 184.25 147.3125 184.25 C 154.652344 184.25 160.597656 178.308594 160.601562 170.972656 C 160.820312 163.648438 163.925781 157.433594 168.464844 152.464844 C 168.605469 158.988281 169.648438 166.316406 171.890625 174.441406 C 170.507812 176.742188 169.933594 180.207031 170.476562 185.269531 C 165.789062 212.242188 136.054688 229.789062 116.886719 238.496094 C 110.179688 241.476562 107.15625 249.328125 110.136719 256.035156 C 113.117188 262.738281 120.96875 265.761719 127.671875 262.785156 C 153.109375 249.535156 185.464844 228.167969 194.777344 200.109375 C 215.90625 209.960938 235.679688 232.09375 239.242188 252.519531 C 240.28125 259.78125 247.011719 264.820312 254.277344 263.785156 C 261.539062 262.75 266.585938 256.027344 265.546875 248.765625 C 260.039062 215.984375 237.402344 191.726562 209.171875 177.511719 C 200.996094 173.996094 200.347656 154.910156 200.808594 148.027344 C 225.578125 162.089844 250.972656 168.367188 276.105469 156.035156 C 282.667969 152.757812 285.320312 144.773438 282.042969 138.214844 C 278.757812 131.652344 270.789062 128.992188 264.226562 132.273438 C 234.691406 146.878906 216.292969 124.515625 200.75 115.464844 C 195.191406 111.570312 187.800781 111.558594 182.277344 114.957031 Z M 182.273438 114.957031 "/> + </g> +</svg> \ No newline at end of file diff --git a/assets/layers/crossings/traffic_lights.svg b/assets/layers/crossings/traffic_lights.svg index 22dae94a9a..be2c64cc88 100644 --- a/assets/layers/crossings/traffic_lights.svg +++ b/assets/layers/crossings/traffic_lights.svg @@ -1,31 +1,22 @@ -<?xml version="1.0" encoding="UTF-8"?> -<svg version="1.1" viewBox="0 0 128 128" xmlns="http://www.w3.org/2000/svg"> - <path d="m119.42 95.995c-17.67 30.605-56.806 41.092-87.411 23.422-30.605-17.67-41.092-56.806-23.422-87.411 17.67-30.605 56.806-41.092 87.411-23.422 30.605 17.67 41.092 56.806 23.422 87.411" - fill="#529add" stroke-width=".19997"/> - <g> - <path d="m43.429 20.007v7.9987h-15.997c-1.0546 12.363 6.0163 12.511 15.997 19.997v7.9987h-15.997c-1.0546 12.363 6.0163 12.511 15.997 19.997v7.9987h-15.997c-1.0546 12.363 6.0163 12.511 15.997 19.997v11.998h39.993v-11.998c9.9811-7.4858 17.052-7.6337 15.997-19.997h-15.997v-7.9987c9.9811-7.4858 17.052-7.6337 15.997-19.997h-15.997v-7.9987c9.9811-7.4858 17.052-7.6337 15.997-19.997h-15.997v-7.9987z" - fill-opacity=".2" style="paint-order:stroke fill markers"/> - <path d="m43.429 16.008h39.993v95.984h-39.993z" fill="#888" style="paint-order:stroke fill markers"/> - <path d="m75.536 37.46a11.996 11.996 0 0 1-11.996 11.996 11.996 11.996 0 0 1-11.996-11.996 11.996 11.996 0 0 1 11.996-11.996 11.996 11.996 0 0 1 11.996 11.996" - fill="#ff6969" stroke="#555" stroke-width="2.9995" style="paint-order:normal"/> - <path d="m75.54 65.483a11.998 11.998 0 0 1-11.998 11.998 11.998 11.998 0 0 1-11.998-11.998 11.998 11.998 0 0 1 11.998-11.998 11.998 11.998 0 0 1 11.998 11.998" - fill="#ffff69" stroke="#555" stroke-width="2.9995" style="paint-order:normal"/> - <path d="m75.522 93.509a11.998 11.998 0 0 1-11.998 11.998 11.998 11.998 0 0 1-11.998-11.998 11.998 11.998 0 0 1 11.998-11.998 11.998 11.998 0 0 1 11.998 11.998" - fill="#69ff69" stroke="#555" stroke-width="2.9995" style="paint-order:normal"/> - <path d="m43.429 24.007h-15.997c-1.0546 12.363 6.0163 12.511 15.997 19.997z" fill="#555" fill-rule="evenodd"/> - <path d="m43.429 52.002h-15.997c-1.0546 12.363 6.0163 12.511 15.997 19.997z" fill="#555" fill-rule="evenodd"/> - <path d="m43.429 79.997h-15.997c-1.0546 12.363 6.0163 12.511 15.997 19.997z" fill="#555" fill-rule="evenodd"/> - <path d="m83.422 24.007h15.997c1.0546 12.363-6.0163 12.511-15.997 19.997z" fill="#555" fill-rule="evenodd"/> - <path d="m83.422 52.002h15.997c1.0546 12.363-6.0163 12.511-15.997 19.997z" fill="#555" fill-rule="evenodd"/> - <path d="m83.422 79.997h15.997c1.0546 12.363-6.0163 12.511-15.997 19.997z" fill="#555" fill-rule="evenodd"/> - <path d="m75.529 93.475s-5.3717 7.9483-11.998 7.9483c-6.6263 0-11.987-7.906-11.987-7.906 0 6.6263 5.3606 11.987 11.987 11.987 6.6263 0 11.998-5.4029 11.998-12.029z" - fill="#fff" fill-opacity=".37647" style="paint-order:stroke fill markers"/> - <path d="m57.427 111.99h12.063v15.997h-12.063z" fill="#555" style="paint-order:stroke fill markers"/> - <path d="m75.517 65.437s-5.3717 7.9483-11.998 7.9483-11.987-7.906-11.987-7.906c0 6.6263 5.3606 11.987 11.987 11.987s11.998-5.4029 11.998-12.029z" - fill="#fff" fill-opacity=".37647" style="paint-order:stroke fill markers"/> - <path d="m75.517 37.442s-5.3717 7.9483-11.998 7.9483-11.987-7.906-11.987-7.906c0 6.6263 5.3606 11.987 11.987 11.987s11.998-5.4029 11.998-12.029z" - fill="#fff" fill-opacity=".37647" style="paint-order:stroke fill markers"/> - <path d="m90.532 64.479a27.66 27.66 0 0 1-27.66 27.66 27.66 27.66 0 0 1-27.66-27.66 27.66 27.66 0 0 1 27.66-27.66 27.66 27.66 0 0 1 27.66 27.66" - fill="#ffff69" fill-opacity=".26667" style="paint-order:normal"/> - </g> -</svg> +<?xml version="1.0" encoding="UTF-8" standalone="yes"?> +<svg xmlns="http://www.w3.org/2000/svg" width="375px" height="375px" viewBox="0 0 375 375" version="1.1"> + <g id="surface1"> + <path style=" stroke:none;fill-rule:nonzero;fill:rgb(32.156864%,60.392159%,86.666667%);fill-opacity:1;" d="M 349.863281 281.234375 C 298.09375 370.898438 183.4375 401.621094 93.777344 349.855469 C 4.113281 298.085938 -26.609375 183.429688 25.15625 93.765625 C 76.925781 4.105469 191.582031 -26.621094 281.242188 25.148438 C 370.90625 76.914062 401.632812 191.570312 349.863281 281.234375 "/> + <path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:0.2;" d="M 127.234375 58.613281 L 127.234375 82.046875 L 80.367188 82.046875 C 77.277344 118.269531 97.992188 118.703125 127.234375 140.632812 L 127.234375 164.066406 L 80.367188 164.066406 C 77.277344 200.285156 97.992188 200.71875 127.234375 222.652344 L 127.234375 246.085938 L 80.367188 246.085938 C 77.277344 282.304688 97.992188 282.738281 127.234375 304.671875 L 127.234375 339.820312 L 244.398438 339.820312 L 244.398438 304.671875 C 273.640625 282.738281 294.355469 282.304688 291.265625 246.085938 L 244.398438 246.085938 L 244.398438 222.652344 C 273.640625 200.71875 294.355469 200.289062 291.265625 164.066406 L 244.398438 164.066406 L 244.398438 140.632812 C 273.640625 118.703125 294.355469 118.269531 291.265625 82.046875 L 244.398438 82.046875 L 244.398438 58.613281 Z M 127.234375 58.613281 "/> + <path style=" stroke:none;fill-rule:nonzero;fill:rgb(53.333336%,53.333336%,53.333336%);fill-opacity:1;" d="M 127.234375 46.898438 L 244.398438 46.898438 L 244.398438 328.101562 L 127.234375 328.101562 Z M 127.234375 46.898438 "/> + <path style="fill-rule:nonzero;fill:rgb(100%,41.176471%,41.176471%);fill-opacity:1;stroke-width:2.9995;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(33.333334%,33.333334%,33.333334%);stroke-opacity:1;stroke-miterlimit:4;" d="M 75.535988 37.459994 C 75.535988 44.085326 70.165322 49.455992 63.53999 49.455992 C 56.914657 49.455992 51.543992 44.085326 51.543992 37.459994 C 51.543992 30.834662 56.914657 25.463996 63.53999 25.463996 C 70.165322 25.463996 75.535988 30.834662 75.535988 37.459994 " transform="matrix(2.929688,0,0,2.929688,0,0)"/> + <path style="fill-rule:nonzero;fill:rgb(100%,100%,41.176471%);fill-opacity:1;stroke-width:2.9995;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(33.333334%,33.333334%,33.333334%);stroke-opacity:1;stroke-miterlimit:4;" d="M 75.539988 65.482656 C 75.539988 72.109322 70.167989 77.481321 63.542656 77.481321 C 56.915991 77.481321 51.543992 72.109322 51.543992 65.482656 C 51.543992 58.857324 56.915991 53.485325 63.541323 53.485325 C 70.167989 53.485325 75.539988 58.857324 75.539988 65.482656 " transform="matrix(2.929688,0,0,2.929688,0,0)"/> + <path style="fill-rule:nonzero;fill:rgb(41.176471%,100%,41.176471%);fill-opacity:1;stroke-width:2.9995;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(33.333334%,33.333334%,33.333334%);stroke-opacity:1;stroke-miterlimit:4;" d="M 75.521321 93.509318 C 75.521321 100.13465 70.150655 105.506649 63.52399 105.506649 C 56.897324 105.506649 51.525325 100.13465 51.525325 93.509318 C 51.525325 86.882653 56.897324 81.510653 63.52399 81.510653 C 70.150655 81.510653 75.521321 86.882653 75.521321 93.509318 " transform="matrix(2.929688,0,0,2.929688,0,0)"/> + <path style=" stroke:none;fill-rule:evenodd;fill:rgb(33.333334%,33.333334%,33.333334%);fill-opacity:1;" d="M 127.234375 70.332031 L 80.367188 70.332031 C 77.277344 106.554688 97.992188 106.984375 127.234375 128.917969 Z M 127.234375 70.332031 "/> + <path style=" stroke:none;fill-rule:evenodd;fill:rgb(33.333334%,33.333334%,33.333334%);fill-opacity:1;" d="M 127.234375 152.351562 L 80.367188 152.351562 C 77.277344 188.570312 97.992188 189.003906 127.234375 210.933594 Z M 127.234375 152.351562 "/> + <path style=" stroke:none;fill-rule:evenodd;fill:rgb(33.333334%,33.333334%,33.333334%);fill-opacity:1;" d="M 127.234375 234.367188 L 80.367188 234.367188 C 77.277344 270.585938 97.992188 271.019531 127.234375 292.953125 Z M 127.234375 234.367188 "/> + <path style=" stroke:none;fill-rule:evenodd;fill:rgb(33.333334%,33.333334%,33.333334%);fill-opacity:1;" d="M 244.398438 70.332031 L 291.265625 70.332031 C 294.355469 106.554688 273.640625 106.984375 244.398438 128.917969 Z M 244.398438 70.332031 "/> + <path style=" stroke:none;fill-rule:evenodd;fill:rgb(33.333334%,33.333334%,33.333334%);fill-opacity:1;" d="M 244.398438 152.351562 L 291.265625 152.351562 C 294.355469 188.570312 273.640625 189.003906 244.398438 210.933594 Z M 244.398438 152.351562 "/> + <path style=" stroke:none;fill-rule:evenodd;fill:rgb(33.333334%,33.333334%,33.333334%);fill-opacity:1;" d="M 244.398438 234.367188 L 291.265625 234.367188 C 294.355469 270.585938 273.640625 271.019531 244.398438 292.953125 Z M 244.398438 234.367188 "/> + <path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:0.37647;" d="M 221.277344 273.851562 C 221.277344 273.851562 205.539062 297.136719 186.125 297.136719 C 166.714844 297.136719 151.007812 273.976562 151.007812 273.976562 C 151.007812 293.390625 166.710938 309.09375 186.125 309.09375 C 205.539062 309.09375 221.277344 293.265625 221.277344 273.851562 Z M 221.277344 273.851562 "/> + <path style=" stroke:none;fill-rule:nonzero;fill:rgb(33.333334%,33.333334%,33.333334%);fill-opacity:1;" d="M 168.242188 328.09375 L 203.582031 328.09375 L 203.582031 374.960938 L 168.242188 374.960938 Z M 168.242188 328.09375 "/> + <path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:0.37647;" d="M 221.242188 191.710938 C 221.242188 191.710938 205.503906 214.996094 186.089844 214.996094 C 166.679688 214.996094 150.972656 191.832031 150.972656 191.832031 C 150.972656 211.246094 166.675781 226.953125 186.089844 226.953125 C 205.503906 226.953125 221.242188 211.125 221.242188 191.710938 Z M 221.242188 191.710938 "/> + <path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:0.37647;" d="M 221.242188 109.695312 C 221.242188 109.695312 205.503906 132.980469 186.089844 132.980469 C 166.679688 132.980469 150.972656 109.816406 150.972656 109.816406 C 150.972656 129.230469 166.675781 144.933594 186.089844 144.933594 C 205.503906 144.933594 221.242188 129.105469 221.242188 109.695312 Z M 221.242188 109.695312 "/> + <path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,41.176471%);fill-opacity:0.26667;" d="M 265.230469 188.902344 C 265.230469 233.65625 228.949219 269.9375 184.195312 269.9375 C 139.441406 269.9375 103.160156 233.65625 103.160156 188.902344 C 103.160156 144.148438 139.441406 107.867188 184.195312 107.867188 C 228.949219 107.867188 265.230469 144.148438 265.230469 188.902344 "/> + </g> +</svg> \ No newline at end of file diff --git a/assets/layers/current_view/current_view.json b/assets/layers/current_view/current_view.json new file mode 100644 index 0000000000..b3649f4bd2 --- /dev/null +++ b/assets/layers/current_view/current_view.json @@ -0,0 +1,16 @@ +{ + "id": "current_view", + "description": "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.\n\nThe icon on the button is the default icon of the layer, but can be customized by detecting 'button=yes'.", + "source": { + "osmTags": "current_view=yes", + "maxCacheAge": 0 + }, + "shownByDefault": false, + "title": "Current View", + "tagRenderings": [], + "mapRendering": [ + { + "color": "#cccc0088" + } + ] +} \ No newline at end of file diff --git a/assets/layers/cycleways_and_roads/cycleways_and_roads.json b/assets/layers/cycleways_and_roads/cycleways_and_roads.json index 82287015b9..a0b7327c11 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" } } ] @@ -685,7 +692,8 @@ "then": { "en": "Usable for thin rollers: rollerblade, skateboard", "de": "Geeignet für dünne Rollen: Rollerblades, Skateboard", - "id": "Dapat digunakan untuk roller tipis: rollerblade, skateboard" + "id": "Dapat digunakan untuk roller tipis: rollerblade, skateboard", + "nl": "Bruikbaar voor kleine, harde wielen: rollerblade, skateboard" } }, { @@ -693,7 +701,8 @@ "then": { "en": "Usable for thin wheels: racing bike", "de": "Geeignet für dünne Reifen: Rennrad", - "id": "Dapat digunakan untuk roda tipis: sepeda balap" + "id": "Dapat digunakan untuk roda tipis: sepeda balap", + "nl": "Bruikbaar voor smalle wielen: racefiets" } }, { @@ -701,7 +710,8 @@ "then": { "en": "Usable for normal wheels: city bike, wheelchair, scooter", "de": "Geeignet für normale Reifen: Fahrrad, Rollstuhl, Scooter", - "id": "Dapat digunakan untuk roda normal: sepeda kota, kursi roda, skuter" + "id": "Dapat digunakan untuk roda normal: sepeda kota, kursi roda, skuter", + "nl": "Bruikbaar voor normale wielen: stadsfiets, rolwagen, step" } }, { @@ -709,14 +719,16 @@ "then": { "en": "Usable for robust wheels: trekking bike, car, rickshaw", "de": "Geeignet für breite Reifen: Trekkingfahrrad, Auto, Rikscha", - "id": "Dapat digunakan untuk roda yang kuat: sepeda trekking, mobil, becak" + "id": "Dapat digunakan untuk roda yang kuat: sepeda trekking, mobil, becak", + "nl": "Bruikbaar voor robuuste wielen: trekking fiets, auto, rickshaw" } }, { "if": "smoothness=very_bad", "then": { "en": "Usable for vehicles with high clearance: light duty off-road vehicle", - "de": "Geeignet für Fahrzeuge mit großer Bodenfreiheit: leichte Geländewagen" + "de": "Geeignet für Fahrzeuge mit großer Bodenfreiheit: leichte Geländewagen", + "nl": "Bruikbaar voor terreinvoertuigen: 4x4 personenwagens" } }, { @@ -724,7 +736,8 @@ "then": { "en": "Usable for off-road vehicles: heavy duty off-road vehicle", "de": "Geeignet für Geländefahrzeuge: schwerer Geländewagen", - "id": "Dapat digunakan untuk kendaraan off-road: kendaraan off-road berat" + "id": "Dapat digunakan untuk kendaraan off-road: kendaraan off-road berat", + "nl": "Bruikbaar voor terreinvoertuigen: zware 4x4 voertuigen" } }, { @@ -732,14 +745,16 @@ "then": { "en": "Usable for specialized off-road vehicles: tractor, ATV", "de": "Geeignet für spezielle Geländewagen: Traktor, ATV", - "id": "Dapat digunakan untuk kendaraan off-road khusus: traktor, ATV" + "id": "Dapat digunakan untuk kendaraan off-road khusus: traktor, ATV", + "nl": "Bruikbaar voor uitzonderlijke terreinvoertuigen: tractor, ATV" } }, { "if": "smoothness=impassable", "then": { "en": "Impassable / No wheeled vehicle", - "de": "Unpassierbar / Keine bereiften Fahrzeuge" + "de": "Unpassierbar / Keine bereiften Fahrzeuge", + "nl": "Onmogelijk om met een voertuig met wielen te passeren" } } ], @@ -790,50 +805,66 @@ { "if": "cycleway:traffic_sign=BE:D7", "then": { - "en": "Compulsory cycleway <img src='./assets/themes/cycle_infra/Belgian_road_sign_D07.svg' style='width: 3em'>", - "nl": "Verplicht fietspad <img src='./assets/themes/cycle_infra/Belgian_road_sign_D07.svg' style='width: 3em'>", - "de": "Vorgeschriebener Radweg <img src='./assets/themes/cycle_infra/Belgian_road_sign_D07.svg' style='width: 3em'>", - "id": "Jalur sepeda wajib <img src='./assets/themes/cycle_infra/Belgian_road_sign_D07.svg' style='width: 3em'>" + "en": "Compulsory cycleway", + "nl": "Verplicht fietspad", + "de": "Vorgeschriebener Radweg", + "id": "Jalur sepeda wajib" }, - "hideInAnswer": "_country!=be" + "hideInAnswer": "_country!=be", + "icon": { + "path": "./assets/themes/cycle_infra/Belgian_road_sign_D07.svg", + "class": "medium" + } }, { "if": "cycleway:traffic_sign~BE:D7;.*", "then": { - "en": "Compulsory cycleway (with supplementary sign)<br><img src='./assets/themes/cycle_infra/Belgian_road_sign_D07.svg' style='width: 3em'> ", - "nl": "Verplicht fietspad (met onderbord)<br><img src='./assets/themes/cycle_infra/Belgian_road_sign_D07.svg' style='width: 3em'>", - "de": "Vorgeschriebener Radweg (mit Zusatzschild)<br><img src='./assets/themes/cycle_infra/Belgian_road_sign_D07.svg' style='width: 3em'> ", - "id": "Jalur sepeda wajib (dengan tanda tambahan)<br><img src ='./aset/tema/cycle_infra/Belgian_road_sign_D07.svg' style='width: 3em'> " + "en": "Compulsory cycleway (with supplementary sign)<br>", + "nl": "Verplicht fietspad (met onderbord)<br>", + "de": "Vorgeschriebener Radweg (mit Zusatzschild)<br>", + "id": "Jalur sepeda wajib (dengan tanda tambahan)<br>" }, - "hideInAnswer": true + "hideInAnswer": true, + "icon": { + "path": "./assets/themes/cycle_infra/Belgian_road_sign_D07.svg", + "class": "medium" + } }, { "if": "cycleway:traffic_sign=BE:D9", "then": { - "en": "Segregated foot/cycleway <img src='./assets/themes/cycle_infra/Belgian_road_sign_D09.svg' style='width: 3em'>", - "nl": "Afgescheiden voet-/fietspad <img src='./assets/themes/cycle_infra/Belgian_road_sign_D09.svg' style='width: 3em'>", - "de": "Getrennter Fuß-/Radweg <img src='./assets/themes/cycle_infra/Belgian_road_sign_D09.svg' style='width: 3em'>", - "id": "Jalur pejalan kaki/sepeda terpisah <img src='./assets/themes/cycle_infra/Belgian_road_sign_D09.svg' style='width: 3em'>" + "en": "Segregated foot/cycleway", + "nl": "Afgescheiden voet-/fietspad", + "de": "Getrennter Fuß-/Radweg", + "id": "Jalur pejalan kaki/sepeda terpisah" }, "hideInAnswer": "_country!=be", "addExtraTags": [ "cycleway:foot=designated", "cycleway:segregated=yes" - ] + ], + "icon": { + "path": "./assets/themes/cycle_infra/Belgian_road_sign_D09.svg", + "class": "medium" + } }, { "if": "cycleway:traffic_sign=BE:D10", "then": { - "en": "Unsegregated foot/cycleway <img src='./assets/themes/cycle_infra/Belgian_road_sign_D10.svg' style='width: 3em'>", - "nl": "Gedeeld voet-/fietspad <img src='./assets/themes/cycle_infra/Belgian_road_sign_D10.svg' style='width: 3em'>", - "de": "Gemeinsamer Fuß-/Radweg <img src='./assets/themes/cycle_infra/Belgian_road_sign_D10.svg' style='width: 3em'>", - "id": "Jalur pejalan kaki/sepeda tidak terpisah <img src='./assets/themes/cycle_infra/Belgian_road_sign_D10.svg' style='width: 3em'>" + "en": "Unsegregated foot/cycleway", + "nl": "Gedeeld voet-/fietspad", + "de": "Gemeinsamer Fuß-/Radweg", + "id": "Jalur pejalan kaki/sepeda tidak terpisah" }, "hideInAnswer": "_country!=be", "addExtraTags": [ "cycleway:foot=designated", "cycleway:segregated=no" - ] + ], + "icon": { + "path": "./assets/themes/cycle_infra/Belgian_road_sign_D10.svg", + "class": "medium" + } }, { "if": "cycleway:traffic_sign=none", @@ -863,10 +894,10 @@ { "if": "traffic_sign=BE:D7", "then": { - "en": "Compulsory cycleway <img src='./assets/themes/cycle_infra/Belgian_road_sign_D07.svg' style='width: 3em'>", - "nl": "Verplicht fietspad <img src='./assets/themes/cycle_infra/Belgian_road_sign_D07.svg' style='width: 3em'>", - "de": "Vorgeschriebener Radweg <img src='./assets/themes/cycle_infra/Belgian_road_sign_D07.svg' style='width: 3em'>", - "id": "Jalur sepeda wajib <img src='./assets/themes/cycle_infra/Belgian_road_sign_D07.svg' style='width: 3em'>" + "en": "Compulsory cycleway", + "nl": "Verplicht fietspad", + "de": "Vorgeschriebener Radweg", + "id": "Jalur sepeda wajib" }, "hideInAnswer": "_country!=be", "addExtraTags": [ @@ -874,23 +905,31 @@ "mofa=designated", "moped=yes", "speed_pedelec=yes" - ] + ], + "icon": { + "path": "./assets/themes/cycle_infra/Belgian_road_sign_D07.svg", + "class": "medium" + } }, { "if": "traffic_sign~BE:D7;.*", "then": { - "en": "Compulsory cycleway (with supplementary sign)<br><img src='./assets/themes/cycle_infra/Belgian_road_sign_D07.svg' style='width: 3em'> ", - "nl": "Verplicht fietspad (met onderbord)<br><img src='./assets/themes/cycle_infra/Belgian_road_sign_D07.svg' style='width: 3em'>", - "de": "Vorgeschriebener Radweg (mit Zusatzschild)<br><img src='./assets/themes/cycle_infra/Belgian_road_sign_D07.svg' style='width: 3em'> " + "en": "Compulsory cycleway (with supplementary sign)<br>", + "nl": "Verplicht fietspad (met onderbord)<br>", + "de": "Vorgeschriebener Radweg (mit Zusatzschild)<br>" }, - "hideInAnswer": true + "hideInAnswer": true, + "icon": { + "path": "./assets/themes/cycle_infra/Belgian_road_sign_D07.svg", + "class": "medium" + } }, { "if": "traffic_sign=BE:D9", "then": { - "en": "Segregated foot/cycleway <img src='./assets/themes/cycle_infra/Belgian_road_sign_D09.svg' style='width: 3em'>", - "nl": "Afgescheiden voet-/fietspad <img src='./assets/themes/cycle_infra/Belgian_road_sign_D09.svg' style='width: 3em'>", - "de": "Getrennter Fuß-/Radweg <img src='./assets/themes/cycle_infra/Belgian_road_sign_D09.svg' style='width: 3em'>" + "en": "Segregated foot/cycleway", + "nl": "Afgescheiden voet-/fietspad", + "de": "Getrennter Fuß-/Radweg" }, "hideInAnswer": "_country!=be", "addExtraTags": [ @@ -900,14 +939,18 @@ "moped=no", "speed_pedelec=no", "segregated=yes" - ] + ], + "icon": { + "path": "./assets/themes/cycle_infra/Belgian_road_sign_D09.svg", + "class": "medium" + } }, { "if": "traffic_sign=BE:D10", "then": { - "en": "Unsegregated foot/cycleway <img src='./assets/themes/cycle_infra/Belgian_road_sign_D10.svg' style='width: 3em'>", - "nl": "Gedeeld voet-/fietspad <img src='./assets/themes/cycle_infra/Belgian_road_sign_D10.svg' style='width: 3em'>", - "de": "Gemeinsamer Fuß-/Radweg <img src='./assets/themes/cycle_infra/Belgian_road_sign_D10.svg' style='width: 3em'>" + "en": "Unsegregated foot/cycleway", + "nl": "Gedeeld voet-/fietspad", + "de": "Gemeinsamer Fuß-/Radweg" }, "hideInAnswer": "_country!=be", "addExtraTags": [ @@ -917,7 +960,11 @@ "moped=no", "speed_pedelec=no", "segregated=no" - ] + ], + "icon": { + "path": "./assets/themes/cycle_infra/Belgian_road_sign_D10.svg", + "class": "medium" + } }, { "if": "traffic_sign=none", @@ -946,70 +993,94 @@ { "if": "cycleway:traffic_sign=BE:D7;BE:M6", "then": { - "en": "<img src='./assets/themes/cycle_infra/Belgian_traffic_sign_M6.svg' style='width: 3em'>", - "nl": "<img src='./assets/themes/cycle_infra/Belgian_traffic_sign_M6.svg' style='width: 3em'>" + "en": "Mopeds must use the cycleway", + "nl": "Bromfiets Klass B verplicht op het fietspad" }, "hideInAnswer": "_country!=be", "addExtraTags": [ "cycleway:moped=designated" - ] + ], + "icon": { + "path": "./assets/themes/cycle_infra/Belgian_traffic_sign_M6.svg", + "class": "medium" + } }, { "if": "cycleway:traffic_sign=BE:D7;BE:M13", "then": { - "en": "<img src='./assets/themes/cycle_infra/Belgian_traffic_sign_M13.svg' style='width: 3em'>", - "nl": "<img src='./assets/themes/cycle_infra/Belgian_traffic_sign_M13.svg' style='width: 3em'>" + "en": "Speedpedelecs must use the cycleway", + "nl": "Speedpedelec (Bromfiets klasse P) verplicht op het fietspad" }, "hideInAnswer": "_country!=be", "addExtraTags": [ "cycleway:speed_pedelec=designated" - ] + ], + "icon": { + "path": "./assets/themes/cycle_infra/Belgian_traffic_sign_M13.svg", + "class": "medium" + } }, { "if": "cycleway:traffic_sign=BE:D7;BE:M14", "then": { - "en": "<img src='./assets/themes/cycle_infra/Belgian_traffic_sign_M14.svg' style='width: 3em'>", - "nl": "<img src='./assets/themes/cycle_infra/Belgian_traffic_sign_M14.svg' style='width: 3em'>" + "en": "Mopeds and speedpedelecs must use the cycleway", + "nl": "Bromfiets klasse B en speedpedelec (Klasse P) verplicht op het fietspad" }, "hideInAnswer": "_country!=be", "addExtraTags": [ "cycleway:moped=designated", "cycleway:speed_pedelec=designated" - ] + ], + "icon": { + "path": "./assets/themes/cycle_infra/Belgian_traffic_sign_M14.svg", + "class": "medium" + } }, { "if": "cycleway:traffic_sign=BE:D7;BE:M7", "then": { - "en": "<img src='./assets/themes/cycle_infra/Belgian_traffic_sign_M7.svg' style='width: 3em'>", - "nl": "<img src='./assets/themes/cycle_infra/Belgian_traffic_sign_M7.svg' style='width: 3em'>" + "en": "Mopeds are not allowed", + "nl": "Bromfiets klasse B <b>verboden</b>" }, "hideInAnswer": "_country!=be", "addExtraTags": [ "cycleway:moped=no" - ] + ], + "icon": { + "path": "./assets/themes/cycle_infra/Belgian_traffic_sign_M7.svg", + "class": "medium" + } }, { "if": "cycleway:traffic_sign=BE:D7;BE:M15", "then": { - "en": "<img src='./assets/themes/cycle_infra/Belgian_traffic_sign_M15.svg' style='width: 3em'>", - "nl": "<img src='./assets/themes/cycle_infra/Belgian_traffic_sign_M15.svg' style='width: 3em'>" + "en": "Speedpedelecs are not allowed", + "nl": "Speedpedelec (bromfiets klasse P) <b>verboden</b>" }, "hideInAnswer": "_country!=be", "addExtraTags": [ "cycleway:speed_pedelec=no" - ] + ], + "icon": { + "path": "./assets/themes/cycle_infra/Belgian_traffic_sign_M15.svg", + "class": "medium" + } }, { "if": "cycleway:traffic_sign=BE:D7;BE:M16", "then": { - "en": "<img src='./assets/themes/cycle_infra/Belgian_traffic_sign_M16.svg' style='width: 3em'>", - "nl": "<img src='./assets/themes/cycle_infra/Belgian_traffic_sign_M16.svg' style='width: 3em'>" + "en": "Mopeds and speedpedelecs are not allowed", + "nl": "Bromfiets klasse B en speedpedelec (klasse P) <b>verboden</b>" }, "hideInAnswer": "_country!=be", "addExtraTags": [ "cycleway:moped=designated", "cycleway:speed_pedelec=no" - ] + ], + "icon": { + "path": "./assets/themes/cycle_infra/Belgian_traffic_sign_M16.svg", + "class": "medium" + } }, { "if": "cycleway:traffic_sign:supplementary=none", @@ -1021,99 +1092,6 @@ } ] }, - { - "id": "cycleway-traffic-signs-D7-supplementary", - "question": { - "en": "Does the traffic sign D7 (<img src='./assets/themes/cycle_infra/Belgian_road_sign_D07.svg' style='width: 1.5em'>) have a supplementary sign?", - "nl": "Heeft het verkeersbord D7 (<img src='./assets/themes/cycle_infra/Belgian_road_sign_D07.svg' style='width: 1.5em'>) een onderbord?", - "de": "Hat das Verkehrszeichen D7 (<img src='./assets/themes/cycle_infra/Belgian_road_sign_D07.svg' style='width: 1.5em'>) ein Zusatzzeichen?" - }, - "condition": { - "or": [ - "traffic_sign=BE:D7", - "traffic_sign~BE:D7;.*" - ] - }, - "mappings": [ - { - "if": "traffic_sign=BE:D7;BE:M6", - "then": { - "en": "<img src='./assets/themes/cycle_infra/Belgian_traffic_sign_M6.svg' style='width: 3em'>", - "nl": "<img src='./assets/themes/cycle_infra/Belgian_traffic_sign_M6.svg' style='width: 3em'>" - }, - "hideInAnswer": "_country!=be", - "addExtraTags": [ - "moped=designated" - ] - }, - { - "if": "traffic_sign=BE:D7;BE:M13", - "then": { - "en": "<img src='./assets/themes/cycle_infra/Belgian_traffic_sign_M13.svg' style='width: 3em'>", - "nl": "<img src='./assets/themes/cycle_infra/Belgian_traffic_sign_M13.svg' style='width: 3em'>", - "de": "<img src='./assets/themes/cycle_infra/Belgian_traffic_sign_M13.svg' style='width: 3em'>" - }, - "hideInAnswer": "_country!=be", - "addExtraTags": [ - "speed_pedelec=designated" - ] - }, - { - "if": "traffic_sign=BE:D7;BE:M14", - "then": { - "en": "<img src='./assets/themes/cycle_infra/Belgian_traffic_sign_M14.svg' style='width: 3em'>", - "nl": "<img src='./assets/themes/cycle_infra/Belgian_traffic_sign_M14.svg' style='width: 3em'>" - }, - "hideInAnswer": "_country!=be", - "addExtraTags": [ - "moped=designated", - "speed_pedelec=designated" - ] - }, - { - "if": "traffic_sign=BE:D7;BE:M7", - "then": { - "en": "<img src='./assets/themes/cycle_infra/Belgian_traffic_sign_M7.svg' style='width: 3em'>", - "nl": "<img src='./assets/themes/cycle_infra/Belgian_traffic_sign_M7.svg' style='width: 3em'>" - }, - "hideInAnswer": "_country!=be", - "addExtraTags": [ - "moped=no" - ] - }, - { - "if": ":traffic_sign=BE:D7;BE:M15", - "then": { - "en": "<img src='./assets/themes/cycle_infra/Belgian_traffic_sign_M15.svg' style='width: 3em'>", - "nl": "<img src='./assets/themes/cycle_infra/Belgian_traffic_sign_M15.svg' style='width: 3em'>" - }, - "hideInAnswer": "_country!=be", - "addExtraTags": [ - "speed_pedelec=no" - ] - }, - { - "if": "traffic_sign=BE:D7;BE:M16", - "then": { - "en": "<img src='./assets/themes/cycle_infra/Belgian_traffic_sign_M16.svg' style='width: 3em'>", - "nl": "<img src='./assets/themes/cycle_infra/Belgian_traffic_sign_M16.svg' style='width: 3em'>" - }, - "hideInAnswer": "_country!=be", - "addExtraTags": [ - "moped=designated", - "speed_pedelec=no" - ] - }, - { - "if": "traffic_sign:supplementary=none", - "then": { - "en": "No supplementary traffic sign present", - "nl": "Geen onderbord aanwezig", - "de": "Kein zusätzliches Verkehrszeichen vorhanden" - } - } - ] - }, { "render": { "en": "The buffer besides this cycleway is {cycleway:buffer} m", @@ -1330,5 +1308,9 @@ ] } } - ] + ], + "description": { + "en": "All infrastructure that someone can cycle over, accompanied with questions about this infrastructure\"", + "nl": "Alle infrastructuur waar je over kunt fietsen, met vragen over die infrastructuur" + } } \ No newline at end of file diff --git a/assets/layers/defibrillator/aed_checked.svg b/assets/layers/defibrillator/aed_checked.svg index 301897b711..246aab1e2e 100644 --- a/assets/layers/defibrillator/aed_checked.svg +++ b/assets/layers/defibrillator/aed_checked.svg @@ -1,8 +1,8 @@ -<?xml version="1.0" encoding="UTF-8"?> -<svg version="1.1" viewBox="0 0 184 184" xmlns="http://www.w3.org/2000/svg"> - <path d="m0 0v184h184v-184z" style="fill:#29bb3e"/> - <g style="fill:#fff"> - <path d="m137 16.1h14.8v14.9h14.9v14.8h-14.9v14.9h-14.8v-14.9h-14.9v-14.8h14.9z"/> - <path d="m47.5 56.3c-19.2 0.2-36.4 19.3-31.2 44.5 3.9 19.3 24.4 44.3 60.1 68.5 35.7-24.3 56.2-49.3 60.1-68.5 5.2-25.3-11.9-44.3-31.2-44.5-9.9-0.2-22.3 5.1-28.9 17.7-6.6-12.6-19-17.9-28.9-17.7zm44.3 15.3-16.8 34.5h21.3l-37.3 43.4 14.4-34h-20.7l39.1-43.9z"/> - </g> -</svg> +<?xml version="1.0" encoding="UTF-8" standalone="yes"?> +<svg xmlns="http://www.w3.org/2000/svg" width="375px" height="375px" viewBox="0 0 375 375" version="1.1"> + <g id="surface1"> + <rect x="0" y="0" width="375" height="375" style="fill:rgb(16.078432%,73.333335%,24.313726%);fill-opacity:1;stroke:none;"/> + <path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 279.210938 32.8125 L 309.375 32.8125 L 309.375 63.179688 L 339.742188 63.179688 L 339.742188 93.34375 L 309.375 93.34375 L 309.375 123.710938 L 279.210938 123.710938 L 279.210938 93.34375 L 248.84375 93.34375 L 248.84375 63.179688 L 279.210938 63.179688 Z M 279.210938 32.8125 "/> + <path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%,100%,100%);fill-opacity:1;" d="M 96.808594 114.742188 C 57.675781 115.148438 22.621094 154.074219 33.21875 205.433594 C 41.167969 244.769531 82.949219 295.71875 155.707031 345.039062 C 228.464844 295.515625 270.246094 244.566406 278.191406 205.433594 C 288.789062 153.871094 253.941406 115.148438 214.605469 114.742188 C 194.429688 114.335938 169.15625 125.136719 155.707031 150.816406 C 142.253906 125.136719 116.984375 114.335938 96.808594 114.742188 Z M 187.09375 145.925781 L 152.851562 216.238281 L 196.261719 216.238281 L 120.246094 304.6875 L 149.59375 235.394531 L 107.40625 235.394531 Z M 187.09375 145.925781 "/> + </g> +</svg> \ No newline at end of file diff --git a/assets/layers/defibrillator/defibrillator.json b/assets/layers/defibrillator/defibrillator.json index 74068d4028..fa984a091d 100644 --- a/assets/layers/defibrillator/defibrillator.json +++ b/assets/layers/defibrillator/defibrillator.json @@ -42,11 +42,22 @@ "it": "Defibrillatore", "ru": "Дефибриллятор" }, + "tags": [ + "emergency=defibrillator" + ] + }, + { + "title": { + "en": "defibrillator mounted on a wall", + "nl": "defibrillator die aan een muur hangt" + }, "tags": [ "emergency=defibrillator" ], "preciseInput": { - "preferredBackground": "map" + "preferredBackground": "map", + "snapToLayer": "walls_and_buildings", + "maxSnapDistance": 5 } } ], @@ -228,9 +239,10 @@ } }, { - "if": "defibrillator~", + "if": "defibrillator~*", "then": { - "en": "This is a special type of defibrillator: {defibrillator}" + "en": "This is a special type of defibrillator: {defibrillator}", + "nl": "Dit is een speciaal type defibrillator: {defibrillator}" }, "hideInAnswer": true } @@ -568,5 +580,9 @@ { "color": "#0000ff" } - ] + ], + "description": { + "en": "A layer showing defibrillators which can be used in case of emergency. This contains public defibrillators, but also defibrillators which might need staff to fetch the actual device", + "nl": "Een laag die defibrillatoren toont die je kan gebruiken bij noodgevallen. Dit omvat zowel publiek beschikbare toestellen als defibrillatoren waarvoor het toestel enkel door personeel aangeboden kan worden" + } } \ No newline at end of file diff --git a/assets/layers/direction/direction.json b/assets/layers/direction/direction.json index c60322d116..81dc20931b 100644 --- a/assets/layers/direction/direction.json +++ b/assets/layers/direction/direction.json @@ -32,16 +32,7 @@ "presets": [], "mapRendering": [ { - "icon": { - "render": "direction_gradient:var(--catch-detail-color)", - "#": "For some weird reason, showing the icon in the layer control panel breaks the svg-gradient (because the svg gradient has a global color or smthng) - so we use a different icon without gradient", - "mappings": [ - { - "if": "id=node/-1", - "then": "direction:var(--catch-detail-color)" - } - ] - }, + "icon": "direction_gradient:var(--catch-detail-color)", "iconSize": "200,200,center", "location": [ "point", diff --git a/assets/layers/drinking_water/drinking_water.json b/assets/layers/drinking_water/drinking_water.json index 4e960226f2..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 <i>{operational_status}</i>", "nl": "Deze waterkraan-status is <i>{operational_status}</i>", "it": "Lo stato operativo è <i>{operational_status}</i>", "fr": "L'état opérationnel est <i>{operational_status}</i>", - "de": "Der Betriebsstatus ist <i>{operational_status}/i>" + "de": "Der Betriebsstatus ist <i>{operational_status}</i>", + "hu": "Működési állapota: <i>{operational_status}</i>" }, "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": "<a href='#{_closest_other_drinking_water_id}'>Er bevindt zich een ander drinkwaterpunt op {_closest_other_drinking_water_distance} meter</a>", "it": "<a href='#{_closest_other_drinking_water_id}'>C’è un’altra fontanella a {_closest_other_drinking_water_distance} metri</a>", "de": "<a href='#{_closest_other_drinking_water_id}'>Ein weiterer Trinkwasserbrunnen befindet sich in {_closest_other_drinking_water_distance} Meter</a>", - "fr": "<a href='#{_closest_other_drinking_water_id}'>Une autre source d’eau potable est à {_closest_other_drinking_water_distance} mètres a>" + "fr": "<a href='#{_closest_other_drinking_water_id}'>Une autre source d’eau potable est à {_closest_other_drinking_water_distance} mètres a>", + "hu": "<a href='#{_closest_other_drinking_water_id}'>Van egy másik ivóvízkút {_closest_other_drinking_water_distance} méter távolságra</a>" }, "condition": "_closest_other_drinking_water_id~*" } @@ -187,5 +199,10 @@ "centroid" ] } - ] + ], + "description": { + "en": "A layer showing drinking water fountains", + "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/drinking_water/drips.svg b/assets/layers/drinking_water/drips.svg index 1cbadc99e5..c483b7c6ff 100644 --- a/assets/layers/drinking_water/drips.svg +++ b/assets/layers/drinking_water/drips.svg @@ -1,100 +1,45 @@ <?xml version="1.0" encoding="UTF-8" standalone="no"?> <svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - xmlns="http://www.w3.org/2000/svg" - width="98" - height="124" - viewBox="0 0 98 124" - fill="none" - version="1.1" - id="svg27" - sodipodi:docname="drips.svg" - inkscape:version="0.92.4 (5da689c313, 2019-01-14)"> - <metadata - id="metadata31"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage"/> - </cc:Work> - </rdf:RDF> - </metadata> - <sodipodi:namedview - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1" - objecttolerance="10" - gridtolerance="10" - guidetolerance="10" - inkscape:pageopacity="0" - inkscape:pageshadow="2" - inkscape:window-width="1920" - inkscape:window-height="995" - id="namedview29" - showgrid="false" - inkscape:zoom="1.9032258" - inkscape:cx="-125.44068" - inkscape:cy="62" - inkscape:window-x="0" - inkscape:window-y="0" - inkscape:window-maximized="1" - inkscape:current-layer="svg27"/> - <g - id="g8" - transform="matrix(1.1921948,0,0,1.1921948,-9.5136428,-10.474617)" - style="filter:url(#filter0_d)"> - <path - d="M 79,41.8705 C 79,39.3976 77.4079,35.6726 74.1327,30.4823 71.8064,26.7956 69.5171,23.8005 69.4208,23.6747 69.0964,23.2513 68.5726,23 68.0144,23 c -0.5582,0 -1.0822,0.2514 -1.4066,0.6748 -0.2291,0.299 -4.7798,6.2642 -7.5136,11.694 C 54.8849,28.8794 50.9494,23.7307 50.9067,23.6748 50.5821,23.2513 50.0582,23 49.5,23 c -0.5582,0 -1.0821,0.2513 -1.4066,0.6747 -0.0466,0.061 -4.7264,6.1834 -9.3404,13.4954 -0.4943,0.7835 -0.9674,1.5491 -1.4235,2.3005 -2.3812,-3.8202 -4.8133,-7.0045 -4.9373,-7.1663 -0.3245,-0.4234 -0.8484,-0.6747 -1.4066,-0.6747 -0.5582,0 -1.082,0.2513 -1.4065,0.6747 -0.0963,0.1257 -2.3856,3.1209 -4.7119,6.8076 C 21.5921,44.3021 20,48.0271 20,50.5 c 0,5.1193 4.0504,9.3732 9.3205,10.1234 C 30.1402,70.3329 38.8775,78 49.5,78 c 11.1619,0 20.2429,-8.4653 20.2429,-18.8705 0,-1.8756 -0.5352,-4.2206 -1.598,-7.0198 C 74.1423,52.0443 79,47.4766 79,41.8705 Z M 23.457,50.5 c 0,-1.043 0.5687,-3.6947 4.3774,-9.7344 1.1411,-1.8094 2.2916,-3.4709 3.1512,-4.6727 1.172,1.6389 2.8862,4.1349 4.3885,6.7079 -3.4518,6.0994 -5.4558,10.9816 -5.9787,14.5599 C 26.0053,56.6784 23.457,53.8613 23.457,50.5 Z M 49.5,74.7773 c -9.2557,0 -16.7858,-7.0195 -16.7858,-15.6478 0,-2.7503 1.5624,-8.5056 9.0059,-20.3054 3.0174,-4.7834 6.0639,-9.0496 7.7799,-11.3887 1.713,2.3348 4.7519,6.5904 7.7673,11.3688 7.4539,11.8125 9.0184,17.5731 9.0184,20.3254 10e-5,8.6282 -7.53,15.6477 -16.7857,15.6477 z M 68.0144,48.8887 c -0.4308,0 -0.8584,-0.0338 -1.2782,-0.1008 -1.3649,-2.9346 -3.199,-6.2819 -5.4645,-9.9716 1.536,-3.812 4.8482,-8.7016 6.7432,-11.3525 0.8558,1.1963 1.9999,2.8487 3.1381,4.6524 3.8197,6.0532 4.39,8.7095 4.39,9.7543 0,3.8697 -3.3774,7.0182 -7.5286,7.0182 z" - id="path6" - inkscape:connector-curvature="0" - style="fill:#ffffff"/> - </g> - <defs - id="defs25"> - <filter - id="filter0_d" - x="16" - y="23" - width="67" - height="63" - filterUnits="userSpaceOnUse" - color-interpolation-filters="sRGB"> - <feFlood - flood-opacity="0" - result="BackgroundImageFix" - id="feFlood10"/> - <feColorMatrix - in="SourceAlpha" - type="matrix" - values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" - id="feColorMatrix12"/> - <feOffset - dy="4" - id="feOffset14"/> - <feGaussianBlur - stdDeviation="2" - id="feGaussianBlur16"/> - <feColorMatrix - type="matrix" - values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0" - id="feColorMatrix18"/> - <feBlend - mode="normal" - in2="BackgroundImageFix" - result="effect1_dropShadow" - id="feBlend20"/> - <feBlend - mode="normal" - in="SourceGraphic" - in2="effect1_dropShadow" - result="shape" - id="feBlend22"/> - </filter> - </defs> + width="500" + height="500" + viewBox="0 0 499.99999 500" + version="1.1" + id="svg29" + 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" + xmlns:svg="http://www.w3.org/2000/svg"> + <defs + id="defs9" /> + <sodipodi:namedview + id="namedview7" + pagecolor="#505050" + bordercolor="#eeeeee" + borderopacity="1" + inkscape:pageshadow="0" + inkscape:pageopacity="0" + inkscape:pagecheckerboard="0" + showgrid="false" + inkscape:zoom="0.77013483" + inkscape:cx="138.93671" + inkscape:cy="44.148114" + inkscape:current-layer="svg29" /> + <g + id="surface1" + transform="matrix(0.64131719,0,0,0.64131719,63.670174,26.053743)"> + <path + id="path2491" + style="fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:25;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="m 297.54125,93.736223 c 0,0 -97.66331,138.251507 -121.53965,192.350587 -18.87491,42.76677 -57.15972,130.87766 39.81975,195.81645 29.12336,19.50142 58.91773,23.5263 74.80026,24.20173 0,0 0.13482,0.009 0.14164,0.009 0.10579,0.009 1.07732,0.0644 2.65043,0.1203 1.18948,0.0264 2.10887,0.048 3.07569,0.0429 0.96661,0.005 1.88658,-0.0154 3.0757,-0.0429 1.57468,-0.0558 2.55226,-0.11128 2.65471,-0.1203 0.007,-6e-4 0.13746,-0.009 0.13746,-0.009 15.88304,-0.67569 45.67384,-4.70114 74.79595,-24.20173 96.97952,-64.93879 61.82793,-145.05288 43.768,-188.17014 C 400.23449,244.34457 297.54125,93.736223 297.54125,93.736223 Z" /> + <path + id="path1818" + style="fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:25;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="m 443.84765,92.381799 c 0,0 -48.16663,68.181201 -59.94158,94.860971 -2.86326,6.48757 -6.61781,15.10166 -9.07243,24.83746 19.63103,31.5125 37.35873,61.71249 45.25044,79.83477 8.2426,2.78413 15.57473,3.62873 20.34852,3.83173 0,0 0.0695,0.005 0.073,0.005 0.0523,0.005 0.5301,0.0327 1.30589,0.0603 0.58661,0.0131 1.03955,0.0244 1.51635,0.022 0.47672,0.002 0.92994,-0.009 1.51637,-0.022 0.7766,-0.0284 1.25967,-0.0561 1.31019,-0.0603 l 0.0686,-0.005 c 7.83299,-0.33342 22.52479,-2.3206 36.88678,-11.93761 47.82688,-32.02551 30.4922,-71.53514 21.58567,-92.79906 -10.20203,-24.3567 -60.8479,-98.628261 -60.8479,-98.628261 z" /> + <path + id="path1969" + style="fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:25;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + d="m 151.43377,160.12858 c 0,0 -52.404887,69.01788 -65.216644,96.0251 -10.128041,21.34992 -30.671413,65.33765 21.366594,97.75623 15.62724,9.73547 31.61194,11.74648 40.13431,12.08367 0,0 0.0737,0.005 0.0773,0.005 0.0568,0.005 0.57775,0.0324 1.42186,0.06 0.63826,0.0132 1.13074,0.0236 1.64953,0.022 0.51867,0.002 1.01146,-0.009 1.64954,-0.022 0.16545,-0.005 0.13946,-0.007 0.27921,-0.0132 2.08229,-31.72555 14.62939,-60.5284 23.20514,-79.95934 5.73155,-12.98657 15.77012,-30.87394 27.63395,-50.48253 -20.13469,-31.70275 -52.20082,-75.47438 -52.20082,-75.47438 z" /> + </g> </svg> diff --git a/assets/layers/entrance/door.svg b/assets/layers/entrance/door.svg new file mode 100644 index 0000000000..4720d93d98 --- /dev/null +++ b/assets/layers/entrance/door.svg @@ -0,0 +1,6 @@ +<?xml version="1.0" encoding="UTF-8" standalone="yes"?> +<svg xmlns="http://www.w3.org/2000/svg" width="375px" height="375px" viewBox="0 0 375 375" version="1.1"> + <g id="surface1"> + <path style=" stroke:none;fill-rule:nonzero;fill:rgb(0%,0%,0%);fill-opacity:1;" d="M 63.628906 7.519531 C 61.664062 7.894531 60.253906 9.632812 60.289062 11.636719 L 60.289062 361.71875 L 23.269531 361.71875 C 23.011719 361.691406 22.753906 361.691406 22.496094 361.71875 C 20.226562 361.929688 18.554688 363.945312 18.769531 366.222656 C 18.980469 368.496094 20.996094 370.167969 23.269531 369.953125 L 352.339844 369.953125 C 353.820312 369.976562 355.199219 369.195312 355.949219 367.914062 C 356.695312 366.628906 356.695312 365.042969 355.949219 363.761719 C 355.199219 362.476562 353.820312 361.695312 352.339844 361.71875 L 315.316406 361.71875 L 315.316406 11.636719 C 315.316406 9.363281 313.476562 7.519531 311.203125 7.519531 L 64.402344 7.519531 C 64.144531 7.496094 63.886719 7.496094 63.628906 7.519531 Z M 68.515625 15.753906 L 307.089844 15.753906 L 307.089844 361.71875 L 282.410156 361.71875 L 282.410156 44.585938 C 282.410156 42.3125 280.570312 40.46875 278.296875 40.46875 L 97.308594 40.46875 C 97.050781 40.441406 96.792969 40.441406 96.539062 40.46875 C 94.570312 40.84375 93.160156 42.582031 93.195312 44.585938 L 93.195312 361.71875 L 68.515625 361.71875 Z M 101.421875 48.703125 L 274.183594 48.703125 L 274.183594 361.71875 L 101.421875 361.71875 Z M 237.164062 199.03125 C 234.121094 199.03125 231.515625 200.691406 230.09375 203.152344 L 212.484375 203.152344 C 212.226562 203.128906 211.96875 203.128906 211.710938 203.152344 C 209.449219 203.375 207.789062 205.386719 208.003906 207.65625 C 208.214844 209.921875 210.21875 211.589844 212.484375 211.390625 L 230.09375 211.390625 C 231.515625 213.847656 234.121094 215.507812 237.164062 215.507812 C 241.707031 215.507812 245.390625 211.820312 245.390625 207.269531 C 245.390625 202.722656 241.707031 199.03125 237.164062 199.03125 Z M 237.164062 199.03125 "/> + </g> +</svg> \ No newline at end of file diff --git a/assets/layers/entrance/emergency_door.svg b/assets/layers/entrance/emergency_door.svg new file mode 100644 index 0000000000..56e05be0f7 --- /dev/null +++ b/assets/layers/entrance/emergency_door.svg @@ -0,0 +1,9 @@ +<?xml version="1.0" encoding="UTF-8" standalone="yes"?> +<svg xmlns="http://www.w3.org/2000/svg" width="375px" height="375px" viewBox="0 0 375 375" version="1.1"> + <g id="surface1"> + <path style="fill:none;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:4;" d="M 0 1031.362212 L 114.000007 1031.362212 " transform="matrix(3.307291,0,0,3.307291,0,-3105.468564)"/> + <path style="fill-rule:nonzero;fill:rgb(88.627452%,88.627452%,88.627452%);fill-opacity:1;stroke-width:2;stroke-linecap:square;stroke-linejoin:miter;stroke:rgb(0%,0%,0%);stroke-opacity:1;stroke-miterlimit:4;" d="M 34.500002 951.362601 L 94.500006 951.362601 L 94.500006 1031.362212 L 34.500002 1031.362212 Z M 34.500002 951.362601 " transform="matrix(3.307291,0,0,3.307291,0,-3105.468564)"/> + <path style="fill-rule:nonzero;fill:rgb(0.392157%,58.431375%,0.392157%);fill-opacity:1;stroke-width:0.936624;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:4;" d="M 68.306279 997.516586 C 67.446724 996.493306 64.399009 996.616099 64.399009 996.616099 L 60.291509 996.616099 L 57.403094 993.28961 C 55.815628 991.467619 53.586537 988.990729 52.458164 987.774962 L 50.397223 985.556934 L 40.317087 985.415334 C 31.734812 985.287009 29.96039 985.377722 28.504567 986.069127 C 25.586283 987.872312 24.580703 990.889051 23.073993 993.446698 C 20.229828 998.257772 20.246422 999.804307 23.145899 1000.724706 C 26.918206 1000.149457 27.874005 996.295287 29.50019 993.602679 L 31.248063 990.717583 L 34.404189 990.717583 C 36.299193 990.717583 37.573591 990.929982 37.573591 991.243051 C 37.573591 991.761881 34.229402 999.133921 32.883098 1001.593111 C 32.448342 1002.385185 31.953849 1005.710568 31.61755 1010.177599 C 31.315544 1014.188855 30.988094 1017.759825 30.892957 1018.097231 C 30.76242 1018.556324 28.720285 1018.706774 22.804069 1018.706774 C 12.803583 1018.706774 11.305722 1019.297511 10.039068 1023.710336 L 9.640819 1025.088721 L 22.847212 1025.088721 C 35.496057 1025.088721 36.098962 1025.052215 36.991705 1024.091991 C 37.778247 1023.250136 37.974053 1021.981269 38.270528 1015.876991 C 38.595765 1009.180869 38.866796 1007.406446 39.378989 1008.644338 C 39.491826 1008.912051 42.389091 1014.65348 45.817354 1021.394958 C 49.815336 1029.246003 52.507945 1033.977427 53.308869 1034.554889 C 54.291217 1035.259569 55.279097 1035.423294 57.830106 1035.30935 L 61.088008 1035.154476 L 54.760267 1022.404962 C 51.280009 1015.385816 47.959051 1008.625532 47.38159 1007.393171 L 46.330654 1005.146381 L 48.646032 1000.141713 C 49.924855 997.390473 51.098584 995.156958 51.262309 995.180189 C 51.426034 995.204526 52.908407 996.799737 54.546761 998.734565 L 57.530313 1002.257966 L 63.020624 1002.402885 C 63.020624 1002.402885 67.370392 1002.714847 68.50651 1001.230261 C 69.259865 1000.2457 69.10499 998.46464 68.306279 997.516586 Z M 68.306279 997.516586 " transform="matrix(3.531078,0,0,3.531078,12.117669,-3356.063263)"/> + <path style="fill-rule:nonzero;fill:rgb(0.392157%,58.431375%,0.392157%);fill-opacity:1;stroke-width:0.936624;stroke-linecap:square;stroke-linejoin:round;stroke:rgb(100%,100%,100%);stroke-opacity:1;stroke-miterlimit:4;" d="M 55.591059 977.942626 C 55.591059 981.221546 52.932744 983.879861 49.652718 983.879861 C 46.373797 983.879861 43.715482 981.221546 43.715482 977.942626 C 43.715482 974.663706 46.373797 972.005391 49.652718 972.005391 C 52.932744 972.005391 55.591059 974.663706 55.591059 977.942626 Z M 55.591059 977.942626 " transform="matrix(3.531078,0,0,3.531078,12.117669,-3356.063263)"/> + </g> +</svg> \ No newline at end of file diff --git a/assets/layers/entrance/entrance.json b/assets/layers/entrance/entrance.json new file mode 100644 index 0000000000..8b2b0b2d49 --- /dev/null +++ b/assets/layers/entrance/entrance.json @@ -0,0 +1,311 @@ +{ + "id": "entrance", + "name": { + "en": "Entrance", + "nl": "Toegang" + }, + "description": { + "en": "A layer showing entrances and offering capabilities to survey some advanced data which is important for e.g. wheelchair users (but also bicycle users, people who want to deliver, ...)", + "nl": "Een laag met ingangen (van gebouwen etc.) waarmee je details kunt aanvullen die belangrijk zijn voor bijvoorbeeld rolstoelgebruikers (en fietsers, leveranciers, ...)" + }, + "source": { + "osmTags": { + "or": [ + "entrance~*", + "indoor=door" + ] + } + }, + "minzoom": 14, + "title": { + "render": { + "en": "Entrance" + } + }, + "tagRenderings": [ + "images", + { + "id": "Entrance type", + "question": { + "en": "What type of entrance is this?", + "nl": "Wat voor ingang is dit?" + }, + "mappings": [ + { + "if": "entrance=yes", + "then": { + "en": "No specific entrance type is known", + "nl": "Het specifieke type ingang is onbekend" + }, + "hideInAnswer": true + }, + { + "if": { + "and": [ + "entrance=", + "indoor=door" + ] + }, + "then": { + "en": "This is an indoor door, separating a room or a corridor within a single building", + "nl": "Dit is een binnendeur, die een kamer of een gang volledig binnen hetzelfde gebouw afsluit" + } + }, + { + "if": { + "and": [ + "indoor=", + "entrance=main" + ] + }, + "then": { + "en": "This is the main entrance", + "nl": "Dit is de hoofdingang" + } + }, + { + "if": { + "and": [ + "indoor=", + "entrance=secondary" + ] + }, + "then": { + "en": "This is a secondary entrance", + "nl": "Dit is een secundaire ingang" + } + }, + { + "if": { + "and": [ + "indoor=", + "entrance=service" + ] + }, + "then": { + "en": "This is a service entrance - normally only used for employees, delivery, ...", + "nl": "Dit is een dienstingang - normaal gezien enkel gebruikt door werknemers, leveranciers, ..." + } + }, + { + "if": { + "and": [ + "indoor=", + "entrance=exit" + ] + }, + "then": { + "en": "This is an exit where one can not enter", + "nl": "Dit is enkel een uitgang, je kan hier niet naar binnen" + } + }, + { + "if": { + "and": [ + "indoor=", + "entrance=entrance" + ] + }, + "then": { + "en": "This is an entrance where one can only enter (but not exit)", + "nl": "Dit is een ingang waar je enkel naar binnen kunt (niet naar buiten)" + } + }, + { + "if": { + "and": [ + "indoor=", + "entrance=emergency" + ] + }, + "then": { + "en": "This is emergency exit", + "nl": "Dit is een nooduitgang" + } + }, + { + "if": { + "and": [ + "indoor=", + "entrance=home" + ] + }, + "then": { + "en": "This is the entrance to a private home", + "nl": "Dit is de ingang van een private woning" + } + } + ] + }, + { + "id": "Door_type", + "question": { + "en": "What is the type of this door?<br/><span class='subtle'>Wether or not the door is automated is asked in the next question</span>", + "nl": "Om wat voor deur gaat het?<br/><span class='subtle'>Of de deur al of niet automatisch werkt, vragen we hierna </span>" + }, + "mappings": [ + { + "if": "door=yes", + "then": { + "en": "The door type is not known", + "nl": "Het type deur is onbekend" + }, + "hideInAnswer": true + }, + { + "if": "door=hinged", + "then": { + "en": "A classical, hinged door supported by joints", + "nl": "Een gewone deur die aan scharnieren ophangt en openzwaait" + } + }, + { + "if": "door=revolving", + "then": { + "en": "A revolving door which hangs on a central shaft, rotating within a cylindrical enclosure", + "nl": "Een tourniquet-deur (draaideur) die in een cylinder rond een centrale as draait" + } + }, + { + "if": "door=sliding", + "then": { + "en": "A sliding door where the door slides sidewards, typically parallel with a wall", + "nl": "Een schuifdeur or roldeur die bij het openen en sluiten zijwaarts beweegt" + } + }, + { + "if": "door=overhead", + "then": { + "en": "A door which rolls from overhead, typically seen for garages", + "nl": "Een poort die langs boven dichtrolt, typisch voor garages" + } + }, + { + "if": "door=no", + "then": { + "en": "This is an entrance without a physical door", + "nl": "Er is een toegang zonder een deur" + }, + "hideInAnswer": "entrance=" + } + ] + }, + { + "id": "automatic_door", + "question": "Is this door automated?", + "condition": "door!=no", + "mappings": [ + { + "if": "automatic_door=yes", + "then": { + "en": "This is an automatic door", + "nl": "Dit is een automatische deur" + }, + "hideInAnswer": true + }, + { + "if": "automatic_door=no", + "then": { + "en": "This door is <b>not</b> automated", + "nl": "Deze deur is <b>niet</b> automatisch" + } + }, + { + "if": "automatic_door=motion", + "then": { + "en": "This door will open automatically when <b>motion</b> is detected", + "nl": "De deur gaat automatisch open wanneer er <b>beweging</b> wordt gedetecteerd" + } + }, + { + "if": "automatic_door=floor", + "then": { + "en": "This door will open automatically when a <b>sensor in the floor</b> is triggered", + "nl": "De deur gaat automatisch open wanneer <b>een sensor in de vloer</b> wordt geactiveerd" + } + }, + { + "if": "automatic_door=button", + "then": { + "en": "This door will open automatically when a <b>button is pressed</b>", + "nl": "De deur gaat open wanneer <b>een knop wordt ingedrukt</b>" + } + }, + { + "if": "automatic_door=slowdown_button", + "then": { + "en": "This door revolves automatically all the time, but has a <b>button to slow it down</b>, e.g. for wheelchair users", + "nl": "De deur draait continue automatisch, maar heeft een <b>knop om te vertragen</b>, bijvoorbeeld voor rolstoelgebruikers" + } + }, + { + "if": "automatic_door=continuous", + "then": { + "en": "This door revolves automatically all the time", + "nl": "De deur draait continue automatisch" + } + }, + { + "if": "automatic_door=serviced_on_button_press", + "then": { + "en": "This door will be opened by staff when requested by <b>pressing a button</b>", + "nl": "De deur wordt geopend door personeel als je dat vraagt <b>door op een knop te duwen</b>" + } + }, + { + "if": "automatic_door=serviced_on_request", + "then": { + "en": "This door will be opened by staff when requested", + "nl": "De deur wordt geopend door personeel wanneer je het vraagt" + } + } + ] + }, + { + "id": "width", + "render": { + "en": "This door has a width of {canonical(width)} meter" + }, + "question": { + "en": "What is the width of this door/entrance?", + "nl": "Wat is de breedte van deze deur/toegang?" + }, + "freeform": { + "key": "width", + "type": "length" + } + } + ], + "mapRendering": [ + { + "location": [ + "point", + "centroid" + ], + "icon": { + "render": "circle:white;./assets/layers/entrance/door.svg", + "mappings": [ + { + "if": "entrance=emergency", + "then": "circle:white;./assets/layers/entrance/emergency_door.svg" + } + ] + } + } + ], + "presets": [ + { + "title": "entrance", + "preciseInput": { + "preferredBackground": "photo", + "snapToLayer": [ + "walls_and_buildings", + "pedestrian_path" + ] + }, + "tags": [ + "entrance=yes" + ] + } + ] +} \ No newline at end of file diff --git a/assets/layers/entrance/license_info.json b/assets/layers/entrance/license_info.json new file mode 100644 index 0000000000..c5919b9c81 --- /dev/null +++ b/assets/layers/entrance/license_info.json @@ -0,0 +1,22 @@ +[ + { + "path": "door.svg", + "license": "CC-BY 3.0 Unported", + "authors": [ + "Icons Bazaar" + ], + "sources": [ + "https://commons.wikimedia.org/wiki/File:Noun_Project_Door_icon_1512154.svg" + ] + }, + { + "path": "emergency_door.svg", + "license": "CC-BY-SA 4.0 international", + "authors": [ + "PanierAvide" + ], + "sources": [ + "https://commons.wikimedia.org/wiki/File:Emergency_door_icon.svg" + ] + } +] \ No newline at end of file diff --git a/assets/layers/etymology/etymology.json b/assets/layers/etymology/etymology.json index e9645a4bb0..46d8a22ba7 100644 --- a/assets/layers/etymology/etymology.json +++ b/assets/layers/etymology/etymology.json @@ -9,9 +9,13 @@ "minzoom": 12, "source": { "osmTags": { - "or": [ - "name:etymology:wikidata~*", - "name:etymology~*" + "and": [ + { + "or": [ + "name:etymology:wikidata~*", + "name:etymology~*" + ] + } ] } }, @@ -138,12 +142,19 @@ "en": "{multi_apply(_same_name_ids, name:etymology:wikidata;name:etymology, Auto-applying data on all segments with the same name, true)}" } }, - "wikipedia" + { + "id": "wikipedia", + "#": "Note that this is a _read_only_ option, to prevent people entering a 'wikidata'-link instead of 'name:etymology:wikidata'", + "render": { + "en": "A Wikipedia article about this <b>street</b> exists:<br/>{wikipedia():max-height:25rem}" + }, + "condition": "wikidata~*" + } ], "mapRendering": [ { "icon": { - "render": "pin:#05d7fcaa;./assets/layers/etymology/logo.svg", + "render": "pin:#05d7fcaa", "mappings": [ { "if": { @@ -152,7 +163,7 @@ "name:etymology:wikidata=" ] }, - "then": "pin:#fcca05aa;./assets/layers/etymology/logo.svg" + "then": "pin:#fcca05aa" } ] }, @@ -178,8 +189,15 @@ } ] }, + "fill": "no", "width": { - "render": "8" + "render": "8", + "mappings": [ + { + "if": "_geometry:type=Polygon", + "then": "16" + } + ] } } ] diff --git a/assets/layers/etymology/logo.svg b/assets/layers/etymology/logo.svg index bb88d30403..84b464808a 100644 --- a/assets/layers/etymology/logo.svg +++ b/assets/layers/etymology/logo.svg @@ -1,106 +1,86 @@ <?xml version="1.0" encoding="UTF-8" standalone="no"?> -<!-- Created with Inkscape (http://www.inkscape.org/) --> - <svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" - xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" - xmlns="http://www.w3.org/2000/svg" - width="31.41128mm" - height="21.6535mm" - viewBox="0 0 31.41128 21.6535" - version="1.1" - id="svg8" - inkscape:version="0.92.5 (2060ec1f9f, 2020-04-08)" - sodipodi:docname="logo.svg"> - <defs - id="defs2"/> - <sodipodi:namedview - id="base" - pagecolor="#ffffff" - bordercolor="#666666" - borderopacity="1.0" - inkscape:pageopacity="0.0" - inkscape:pageshadow="2" - inkscape:zoom="1.979899" - inkscape:cx="100.68267" - inkscape:cy="-27.941339" - inkscape:document-units="mm" - inkscape:current-layer="flowRoot10" - showgrid="false" - inkscape:window-width="1920" - inkscape:window-height="1003" - inkscape:window-x="862" - inkscape:window-y="1080" - inkscape:window-maximized="1"/> - <metadata - id="metadata5"> - <rdf:RDF> - <cc:Work - rdf:about=""> - <dc:format>image/svg+xml</dc:format> - <dc:type - rdf:resource="http://purl.org/dc/dcmitype/StillImage"/> - <dc:title></dc:title> - </cc:Work> - </rdf:RDF> - </metadata> - <g - inkscape:label="Layer 1" - inkscape:groupmode="layer" - id="layer1" - transform="translate(-18.484101,-182.07744)"> - <g - aria-label="ετυμο -λογία " - transform="matrix(0.21233122,0,0,0.21233122,6.7520733,38.096318)" - style="font-style:normal;font-weight:normal;font-size:40px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none" - id="flowRoot10"> - <path - d="m 86.101172,696.96673 v 4.12 h -3.28 q -3.08,0 -4.4,0.68 -1.32,0.68 -1.32,2 0,1.08 1.2,1.76 1.2,0.68 4.04,0.68 2.44,0 4.56,-0.52 2.12,-0.52 3.48,-1.16 v 4.76 q -1.48,0.68 -3.64,1.12 -2.16,0.4 -4.84,0.4 -5.64,0 -8.16,-1.76 -2.52,-1.76 -2.52,-4.68 0,-2.4 1.44,-3.6 1.48,-1.2 3.88,-1.64 v -0.2 q -2.08,-0.48 -3.12,-1.76 -1.04,-1.32 -1.04,-3.28 0,-2.08 1.28,-3.32 1.28,-1.28 3.44,-1.84 2.16,-0.56 4.8,-0.56 2.28,0 4.56,0.44 2.28,0.44 3.96,1.2 l -1.84,4.32 q -1.44,-0.6 -3,-1.08 -1.52,-0.48 -3.52,-0.48 -4.36,0 -4.36,2.04 0,1.28 1.28,1.84 1.32,0.52 4.12,0.52 z" - style="font-weight:bold" - id="path28"/> - <path - d="m 111.90111,688.56673 v 4.48 h -7.76 v 10.52 q 0,1.24 0.72,1.88 0.72,0.6 1.88,0.6 1,0 1.92,-0.2 0.92,-0.2 1.84,-0.48 v 4.44 q -0.88,0.4 -2.24,0.68 -1.32,0.32 -2.88,0.32 -2.04,0 -3.68,-0.64 -1.6,-0.64 -2.560002,-2.2 -0.96,-1.6 -0.96,-4.4 v -10.52 h -5.48 v -2.48 l 3.44,-2 z" - style="font-weight:bold" - id="path30"/> - <path - d="m 126.26104,710.76673 q -3.92,0 -6.12,-1.36 -2.16,-1.4 -3.04,-3.72 -0.88,-2.36 -0.88,-5.24 v -11.88 h 5.96 v 12.08 q 0,2.84 1.04,4.12 1.04,1.24 3.24,1.24 2.36,0 3.52,-1.72 1.16,-1.72 1.16,-5.88 0,-2.6 -0.4,-4.88 -0.36,-2.32 -1,-4.96 h 6 q 0.68,2.6 1,4.92 0.36,2.28 0.36,5.08 0,6.28 -2.76,9.24 -2.72,2.96 -8.08,2.96 z" - style="font-weight:bold" - id="path32"/> - <path - d="m 162.50098,688.56673 v 21.84 h -4.52 l -0.84,-2.92 h -0.28 q -0.8,1.64 -2,2.48 -1.16,0.84 -2.88,0.84 -2.44,0 -3.76,-1.76 h -0.12 q 0.08,0.4 0.12,1.28 0.04,0.84 0.04,1.76 0.04,0.96 0.04,1.68 v 6.24 h -5.96 v -31.44 h 5.96 v 12.76 q 0,4.72 3.56,4.72 2.68,0 3.68,-1.84 1,-1.88 1,-5.36 v -10.28 z" - style="font-weight:bold" - id="path34"/> - <path - d="m 188.58097,699.44673 q 0,5.44 -2.88,8.4 -2.84,2.96 -7.76,2.96 -3.04,0 -5.44,-1.32 -2.36,-1.32 -3.72,-3.84 -1.36,-2.56 -1.36,-6.2 0,-5.44 2.84,-8.36 2.84,-2.92 7.8,-2.92 3.08,0 5.44,1.32 2.36,1.32 3.72,3.84 1.36,2.48 1.36,6.12 z m -15.08,0 q 0,3.24 1.04,4.92 1.08,1.64 3.48,1.64 2.36,0 3.4,-1.64 1.08,-1.68 1.08,-4.92 0,-3.24 -1.08,-4.84 -1.04,-1.64 -3.44,-1.64 -2.36,0 -3.44,1.64 -1.04,1.6 -1.04,4.84 z" - style="font-weight:bold" - id="path36"/> - <path - d="m 69.861172,760.40673 9.24,-20.64 -0.68,-1.8 q -0.84,-2.08 -1.8,-2.64 -0.96,-0.56 -2.56,-0.56 -0.52,0 -1.08,0.08 -0.52,0.08 -0.92,0.16 v -4.92 q 0.56,-0.12 1.52,-0.2 1,-0.12 1.72,-0.12 2.56,0 4.16,0.84 1.64,0.8 2.68,2.36 1.04,1.56 1.84,3.8 l 5.48,15.08 q 0.92,2.48 1.68,3.24 0.76,0.72 1.6,0.72 0.56,0 1.36,-0.2 v 4.6 q -0.48,0.24 -1.6,0.4 -1.08,0.2 -1.84,0.2 -2.44,0 -3.72,-1.2 -1.24,-1.24 -1.96,-3.24 l -1.88,-5.32 q -0.44,-1.28 -0.84,-2.48 -0.4,-1.24 -0.6,-2.12 h -0.12 q -0.28,1.04 -0.68,2.28 -0.4,1.24 -0.8,2.2 l -4.04,9.48 z" - style="font-weight:bold" - id="path38"/> - <path - d="m 116.86115,749.44673 q 0,5.44 -2.88,8.4 -2.84,2.96 -7.76,2.96 -3.04,0 -5.44,-1.32 -2.359996,-1.32 -3.719996,-3.84 -1.36,-2.56 -1.36,-6.2 0,-5.44 2.84,-8.36 2.839996,-2.92 7.799996,-2.92 3.08,0 5.44,1.32 2.36,1.32 3.72,3.84 1.36,2.48 1.36,6.12 z m -15.08,0 q 0,3.24 1.04,4.92 1.08,1.64 3.48,1.64 2.36,0 3.4,-1.64 1.08,-1.68 1.08,-4.92 0,-3.24 -1.08,-4.84 -1.04,-1.64 -3.44,-1.64 -2.36,0 -3.44,1.64 -1.04,1.6 -1.04,4.84 z" - style="font-weight:bold" - id="path40"/> - <path - d="m 140.58111,738.56673 -8.08,21.48 q -0.6,1.6 -1.04,3.4 -0.44,1.8 -0.68,3.48 -0.2,1.72 -0.2,3.08 h -6.32 q 0,-1.12 0.24,-2.8 0.28,-1.68 0.72,-3.56 0.44,-1.84 1,-3.48 l -8.32,-21.6 h 6.2 l 3.2,9.64 q 0.36,1.04 0.76,2.52 0.44,1.44 0.76,2.8 0.32,1.32 0.44,2.04 h 0.12 q 0.08,-0.6 0.32,-1.76 0.28,-1.2 0.64,-2.6 0.4,-1.44 0.84,-2.72 l 3.2,-9.92 z" - style="font-weight:bold" - id="path42"/> - <path - d="m 149.66107,738.56673 v 15 q 0,1.24 0.72,1.88 0.72,0.6 1.88,0.6 1,0 1.92,-0.2 0.92,-0.2 1.84,-0.48 v 4.44 q -0.88,0.4 -2.24,0.68 -1.32,0.32 -2.88,0.32 -2.04,0 -3.68,-0.64 -1.6,-0.64 -2.56,-2.2 -0.96,-1.6 -0.96,-4.4 v -15 z m -4.84,-2.4 v -0.6 q 0.32,-0.96 0.6,-2.2 0.32,-1.24 0.6,-2.52 0.28,-1.28 0.4,-2.28 h 5.52 v 0.48 q -0.64,1.56 -1.56,3.4 -0.92,1.84 -2.08,3.72 z" - style="font-weight:bold" - id="path44"/> - <path - d="m 167.22105,760.80673 q -3.84,0 -6.2,-2.84 -2.36,-2.88 -2.36,-8.4 0,-5.6 2.44,-8.48 2.44,-2.88 6.56,-2.88 2.32,0 3.8,0.84 1.48,0.8 2.48,2.44 h 0.28 q 0.2,-0.68 0.52,-1.48 0.32,-0.84 0.8,-1.44 h 4.92 q -0.44,1.28 -0.92,3.72 -0.48,2.44 -0.48,5.12 v 6.08 q 0,1.36 0.48,1.84 0.52,0.48 1.16,0.48 0.28,0 0.64,-0.08 0.36,-0.08 0.52,-0.12 v 4.68 q -0.28,0.16 -1.16,0.32 -0.84,0.2 -1.52,0.2 -2,0 -3.24,-0.72 -1.24,-0.72 -1.92,-2.56 h -0.4 q -0.88,1.36 -2.4,2.32 -1.52,0.96 -4,0.96 z m 1.8,-4.76 q 2.48,0 3.44,-1.48 1,-1.52 1.04,-4.8 v -0.24 q 0,-3.2 -1,-4.88 -0.96,-1.68 -3.56,-1.68 -2.12,0 -3.16,1.72 -1.04,1.68 -1.04,4.92 0,6.44 4.28,6.44 z" - style="font-weight:bold" - id="path46"/> - </g> - <g - style="font-style:normal;font-weight:normal;font-size:8.49324894px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.21233122" - id="text20"/> - </g> + width="500" + height="500" + viewBox="0 0 500 500" + version="1.1" + id="svg23" + sodipodi:docname="logo.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" + xmlns:svg="http://www.w3.org/2000/svg"> + <defs + id="defs27" /> + <sodipodi:namedview + id="namedview25" + pagecolor="#505050" + bordercolor="#eeeeee" + borderopacity="1" + inkscape:pageshadow="0" + inkscape:pageopacity="0" + inkscape:pagecheckerboard="0" + showgrid="false" + width="500px" + showguides="true" + inkscape:guide-bbox="true" + inkscape:snap-global="false" + inkscape:zoom="0.8765339" + inkscape:cx="95.832004" + inkscape:cy="148.31143" + inkscape:current-layer="svg23"> + <sodipodi:guide + position="248.77835,429.24652" + orientation="1,0" + id="guide844" /> + <sodipodi:guide + position="-168.89539,252.36283" + orientation="0,-1" + id="guide846" /> + </sodipodi:namedview> + <g + id="surface1" + transform="matrix(1.6098689,0,0,1.6098689,-47.96469,64.699761)"> + <path + style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none" + d="m 77.988281,48.621094 v 10.4375 h -8.292969 c -5.191406,0 -8.898437,0.574218 -11.125,1.722656 -2.222656,1.152344 -3.339843,2.839844 -3.339843,5.070312 0,1.824219 1.015625,3.308594 3.035156,4.457032 2.023437,1.148437 5.429687,1.726562 10.214844,1.726562 4.117187,0 7.957031,-0.441406 11.527343,-1.320312 3.578126,-0.878906 6.507813,-1.859375 8.796876,-2.941406 v 12.0625 c -2.488282,1.144531 -5.558594,2.09375 -9.199219,2.835937 -3.640625,0.675781 -7.71875,1.011719 -12.234375,1.011719 -9.507813,0 -16.386719,-1.480469 -20.632813,-4.457032 -4.246093,-2.972656 -6.371093,-6.925781 -6.371093,-11.855468 0,-4.054688 1.214843,-7.09375 3.640624,-9.121094 2.496094,-2.027344 5.765626,-3.414062 9.8125,-4.152344 v -0.507812 c -3.503906,-0.8125 -6.136718,-2.300782 -7.886718,-4.460938 -1.753906,-2.230468 -2.632813,-5 -2.632813,-8.3125 0,-3.511718 1.078125,-6.316406 3.238281,-8.410156 2.15625,-2.160156 5.054688,-3.71875 8.691407,-4.660156 3.640625,-0.949219 7.691406,-1.417969 12.140625,-1.417969 3.839844,0 7.683594,0.371094 11.527344,1.113281 3.839843,0.746094 7.175781,1.753906 10.011718,3.039063 l -4.65625,10.945312 C 81.828125,40.414062 79.300781,39.5 76.671875,38.691406 c -2.558594,-0.8125 -5.527344,-1.21875 -8.898437,-1.21875 -7.347657,0 -11.023438,1.726563 -11.023438,5.171875 0,2.160157 1.082031,3.714844 3.234375,4.65625 2.230469,0.882813 5.699219,1.320313 10.421875,1.320313 z m 0,0" + id="path2" /> + <path + style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none" + d="M 143.21094,27.339844 V 38.691406 H 123.59375 V 65.34375 c 0,2.09375 0.60547,3.683594 1.82031,4.761719 1.21094,1.015625 2.79688,1.519531 4.75391,1.519531 1.68359,0 3.30469,-0.167969 4.85156,-0.503906 1.55469,-0.339844 3.10156,-0.742188 4.65625,-1.21875 v 11.25 c -1.48437,0.675781 -3.375,1.25 -5.66406,1.726562 -2.22656,0.539063 -4.65625,0.804688 -7.28125,0.804688 -3.44141,0 -6.54297,-0.539063 -9.30469,-1.617188 -2.69922,-1.085937 -4.85547,-2.941406 -6.46875,-5.574218 -1.62109,-2.703126 -2.42969,-6.417969 -2.42969,-11.148438 V 38.691406 H 94.671875 V 32.40625 l 8.699215,-5.066406 z m 0,0" + id="path4" /> + <path + style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none" + d="m 179.51562,83.585938 c -6.60546,0 -11.76171,-1.148438 -15.47265,-3.449219 -3.64063,-2.363281 -6.20313,-5.503907 -7.6836,-9.421875 C 154.875,66.726562 154.13281,62.300781 154.13281,57.4375 V 27.339844 h 15.07031 v 30.605468 c 0,4.796876 0.875,8.273438 2.62891,10.4375 1.75391,2.09375 4.48047,3.144532 8.19141,3.144532 3.97656,0 6.94531,-1.453125 8.89843,-4.359375 1.95313,-2.90625 2.9336,-7.871094 2.9336,-14.898438 0,-4.390625 -0.33594,-8.515625 -1.01172,-12.363281 -0.60547,-3.917969 -1.44922,-8.105469 -2.53125,-12.566406 h 15.16797 c 1.15234,4.390625 1.99219,8.546875 2.53125,12.464844 0.60547,3.851562 0.91015,8.140624 0.91015,12.871093 0,10.605469 -2.32812,18.410157 -6.97656,23.40625 -4.58594,5.003907 -11.39844,7.503907 -20.42969,7.503907 z m 0,0" + id="path6" /> + <path + style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none" + d="m 271.13672,27.339844 v 55.332031 h -11.42969 l -2.12109,-7.394531 h -0.70703 c -1.35157,2.765625 -3.03516,4.859375 -5.0586,6.28125 -1.95703,1.417968 -4.38281,2.125 -7.28125,2.125 -4.10937,0 -7.28125,-1.480469 -9.5039,-4.457032 h -0.30469 c 0.13672,0.675782 0.23828,1.753907 0.30469,3.242188 0.0664,1.421875 0.10156,2.90625 0.10156,4.460938 0.0664,1.621093 0.0977,3.042968 0.0977,4.257812 v 15.80859 h -15.0625 V 27.339844 h 15.0625 v 32.332031 c 0,7.96875 3.00391,11.953125 9,11.953125 4.51954,0 7.6211,-1.550781 9.30469,-4.660156 1.6875,-3.175782 2.52735,-7.703125 2.52735,-13.582032 V 27.339844 Z m 0,0" + id="path8" /> + <path + style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none" + d="m 337.07031,54.902344 c 0,9.191406 -2.42969,16.285156 -7.28125,21.285156 -4.78515,5 -11.32422,7.496094 -19.62109,7.496094 -5.1211,0 -9.70703,-1.109375 -13.75,-3.339844 -3.98047,-2.234375 -7.11328,-5.476562 -9.40235,-9.730469 -2.29687,-4.324219 -3.4414,-9.558593 -3.4414,-15.710937 0,-9.1875 2.39453,-16.246094 7.17969,-21.179688 4.78515,-4.929687 11.35937,-7.394531 19.71875,-7.394531 5.19531,0 9.77734,1.113281 13.7539,3.339844 3.97656,2.230469 7.10938,5.476562 9.40625,9.730469 2.28906,4.191406 3.4375,9.359374 3.4375,15.503906 z m -38.125,0 c 0,5.476562 0.87891,9.628906 2.62891,12.46875 1.82031,2.769531 4.75,4.15625 8.80078,4.15625 3.97266,0 6.83984,-1.386719 8.59375,-4.15625 1.82031,-2.839844 2.73047,-6.992188 2.73047,-12.46875 0,-5.46875 -0.91016,-9.558594 -2.73047,-12.257813 -1.75391,-2.769531 -4.65234,-4.160156 -8.69922,-4.160156 -3.97656,0 -6.875,1.390625 -8.69531,4.160156 -1.75,2.699219 -2.62891,6.789063 -2.62891,12.257813 z m 0,0" + id="path10" /> + <path + style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none" + d="M 36.929688,209.35156 60.289062,157.05859 58.570312,152.5 c -1.414062,-3.51563 -2.929687,-5.74609 -4.550781,-6.69141 -1.617187,-0.94531 -3.773437,-1.41797 -6.472656,-1.41797 -0.875,0 -1.785156,0.0664 -2.730469,0.20313 -0.875,0.13672 -1.652344,0.26953 -2.324218,0.40625 v -12.46484 c 0.945312,-0.20313 2.226562,-0.3711 3.84375,-0.50782 1.683593,-0.20312 3.132812,-0.30468 4.347656,-0.30468 4.3125,0 7.820312,0.70703 10.515625,2.1289 2.765625,1.35156 5.023437,3.34766 6.777343,5.97656 1.753907,2.63672 3.300782,5.84766 4.652344,9.62891 l 13.855469,38.20703 c 1.546875,4.1875 2.964844,6.92578 4.246094,8.20703 1.28125,1.21485 2.625,1.82813 4.042969,1.82813 0.945312,0 2.089843,-0.17188 3.441406,-0.50781 v 11.65625 c -0.8125,0.40234 -2.160156,0.73828 -4.046875,1.01171 -1.820313,0.33594 -3.371094,0.50782 -4.652344,0.50782 -4.109375,0 -7.25,-1.01563 -9.402344,-3.04297 -2.09375,-2.09375 -3.746093,-4.83203 -4.957031,-8.21094 l -4.75,-13.47656 c -0.746094,-2.16016 -1.453125,-4.25391 -2.125,-6.28125 -0.675781,-2.09766 -1.183594,-3.88281 -1.515625,-5.3711 h -0.304687 c -0.476563,1.75391 -1.046876,3.6836 -1.71875,5.77344 -0.675782,2.09375 -1.351563,3.95313 -2.027344,5.57422 L 52.5,209.35156 Z m 0,0" + id="path12" /> + <path + style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none" + d="m 155.75391,181.58594 c 0,9.1875 -2.42579,16.28125 -7.28125,21.27734 -4.78516,5.00391 -11.32813,7.50391 -19.61719,7.50391 -5.125,0 -9.71094,-1.11719 -13.75781,-3.34766 -3.97266,-2.22656 -7.10938,-5.46875 -9.40235,-9.72656 -2.29297,-4.32422 -3.4375,-9.5625 -3.4375,-15.70703 0,-9.19141 2.39063,-16.25 7.17969,-21.17969 4.78516,-4.9375 11.35938,-7.40234 19.71875,-7.40234 5.19141,0 9.77734,1.11328 13.75391,3.34765 3.97656,2.22656 7.11328,5.46875 9.40234,9.72656 2.29687,4.1875 3.44141,9.35547 3.44141,15.50782 z m -38.125,0 c 0,5.46875 0.875,9.625 2.6289,12.46093 1.81641,2.77344 4.75391,4.15625 8.79688,4.15625 3.97656,0 6.84375,-1.38281 8.59765,-4.15625 1.82032,-2.83593 2.73047,-6.99218 2.73047,-12.46093 0,-5.47657 -0.91015,-9.5625 -2.73047,-12.26563 -1.7539,-2.76953 -4.65234,-4.15234 -8.69922,-4.15234 -3.97656,0 -6.8789,1.38281 -8.69531,4.15234 -1.7539,2.70313 -2.6289,6.78906 -2.6289,12.26563 z m 0,0" + id="path14" /> + <path + style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none" + d="m 215.71875,154.01953 -20.42969,54.41797 c -1.00781,2.70312 -1.88281,5.57422 -2.625,8.61328 -0.74219,3.04297 -1.3164,5.98438 -1.71875,8.81641 -0.33594,2.91015 -0.50781,5.51172 -0.50781,7.80468 h -15.97656 c 0,-1.89062 0.19922,-4.2539 0.60937,-7.08984 0.46875,-2.83984 1.07813,-5.84766 1.82031,-9.02344 0.73829,-3.10547 1.57813,-6.04297 2.52344,-8.8164 l -21.03515,-54.72266 h 15.67578 l 8.08984,24.42188 c 0.60938,1.75781 1.24609,3.88671 1.92188,6.38671 0.74218,2.42969 1.38671,4.79297 1.92187,7.09375 0.53906,2.22657 0.91016,3.94922 1.11328,5.16407 h 0.30078 c 0.13672,-1.01172 0.40625,-2.4961 0.8125,-4.45703 0.46875,-2.02735 1.00782,-4.22266 1.61328,-6.58594 0.67579,-2.42969 1.38672,-4.73047 2.125,-6.89453 l 8.08985,-25.12891 z m 0,0" + id="path16" /> + <path + style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none" + d="m 238.67578,154.01953 v 38 c 0,2.09766 0.60547,3.68359 1.82031,4.76563 1.21485,1.01562 2.79688,1.52343 4.75391,1.52343 1.68359,0 3.30078,-0.17187 4.85547,-0.50781 1.54687,-0.33984 3.10156,-0.74609 4.64844,-1.21875 v 11.25 c -1.48438,0.67578 -3.36719,1.25 -5.66407,1.72266 -2.22265,0.53906 -4.64843,0.8125 -7.28125,0.8125 -3.4375,0 -6.53906,-0.53907 -9.30468,-1.625 -2.69532,-1.07813 -4.85157,-2.9375 -6.46875,-5.57422 -1.61719,-2.70313 -2.42969,-6.41797 -2.42969,-11.14844 v -38 z M 226.4375,147.9375 v -1.51953 c 0.54297,-1.625 1.04687,-3.48047 1.51562,-5.57422 0.54297,-2.09375 1.04688,-4.22266 1.51954,-6.38672 0.47265,-2.15625 0.80859,-4.08594 1.01171,-5.77344 h 13.95704 v 1.21485 c -1.07813,2.63672 -2.39844,5.50781 -3.94532,8.61328 -1.55468,3.10937 -3.30468,6.25 -5.26172,9.42578 z m 0,0" + id="path18" /> + <path + style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none" + d="m 283.07031,210.36719 c -6.47265,0 -11.69922,-2.39844 -15.67578,-7.19922 -3.98047,-4.85938 -5.96484,-11.95703 -5.96484,-21.27735 0,-9.46093 2.05468,-16.625 6.16406,-21.48437 4.11719,-4.86719 9.64453,-7.29688 16.58594,-7.29688 3.91406,0 7.11328,0.70704 9.60937,2.125 2.49219,1.35157 4.58594,3.41016 6.26953,6.1836 h 0.70703 c 0.33985,-1.14844 0.77344,-2.40235 1.3125,-3.75391 0.54297,-1.41797 1.21485,-2.63281 2.02344,-3.64453 h 12.4375 c -0.74219,2.16016 -1.51562,5.30078 -2.32031,9.42578 -0.8125,4.1211 -1.21484,8.44141 -1.21484,12.96875 v 15.40625 c 0,2.29688 0.40234,3.85156 1.21484,4.66016 0.87109,0.8125 1.85156,1.21875 2.92969,1.21875 0.46875,0 1.01172,-0.0664 1.62109,-0.20313 0.60547,-0.13672 1.03906,-0.23828 1.3125,-0.30468 v 11.85546 c -0.47266,0.27344 -1.44922,0.53907 -2.93359,0.8125 -1.41407,0.33594 -2.69532,0.50782 -3.83985,0.50782 -3.375,0 -6.10547,-0.60938 -8.19531,-1.82813 -2.08984,-1.21484 -3.70703,-3.375 -4.85547,-6.48437 H 299.25 c -1.48047,2.29687 -3.50781,4.25781 -6.07031,5.875 -2.5625,1.625 -5.92969,2.4375 -10.10938,2.4375 z m 4.55078,-12.0586 c 4.17969,0 7.07813,-1.2539 8.69532,-3.7539 1.6875,-2.56641 2.5625,-6.6211 2.6289,-12.16016 v -0.60937 c 0,-5.40235 -0.84375,-9.52344 -2.52734,-12.36329 -1.6211,-2.83593 -4.61719,-4.2539 -9,-4.2539 -3.57422,0 -6.23438,1.44922 -7.98828,4.35937 -1.75391,2.83203 -2.62891,6.98828 -2.62891,12.46094 0,10.875 3.60156,16.32031 10.82031,16.32031 z m 0,0" + id="path20" /> + </g> </svg> diff --git a/assets/layers/extinguisher/extinguisher.json b/assets/layers/extinguisher/extinguisher.json new file mode 100644 index 0000000000..61a010cc32 --- /dev/null +++ b/assets/layers/extinguisher/extinguisher.json @@ -0,0 +1,137 @@ +{ + "id": "extinguisher", + "name": { + "en": "Map of fire extinguishers.", + "ja": "消火器の地図です。", + "nb_NO": "Kart over brannhydranter", + "ru": "Карта огнетушителей.", + "fr": "Couche des extincteurs.", + "de": "Karte mit Feuerlöschern.", + "it": "Cartina degli estintori." + }, + "minzoom": 14, + "source": { + "osmTags": { + "and": [ + "emergency=fire_extinguisher" + ] + } + }, + "title": { + "render": { + "en": "Extinguishers", + "ru": "Огнетушители", + "ja": "消火器", + "nb_NO": "Brannslokkere", + "fr": "Exctincteurs", + "de": "Feuerlöscher", + "it": "Estintori" + } + }, + "description": { + "en": "Map layer to show fire hydrants.", + "ja": "消火栓を表示するマップレイヤ。", + "zh_Hant": "顯示消防栓的地圖圖層。", + "nb_NO": "Kartlag for å vise brannslokkere.", + "ru": "Слой карты, отображающий огнетушители.", + "fr": "Couche des lances à incendie.", + "de": "Kartenebene zur Anzeige von Hydranten.", + "it": "Livello della mappa che mostra gli idranti antincendio." + }, + "tagRenderings": [ + { + "id": "extinguisher-location", + "render": { + "en": "Location: {location}", + "ja": "場所:{location}", + "ru": "Местоположение: {location}", + "fr": "Emplacement : {location}", + "de": "Standort: {location}", + "eo": "Loko: {location}", + "it": "Posizione: {location}" + }, + "question": { + "en": "Where is it positioned?", + "ja": "どこにあるんですか?", + "ru": "Где это расположено?", + "fr": "Où est-elle positionnée ?", + "de": "Wo befindet er sich?", + "it": "Dove è posizionato?" + }, + "mappings": [ + { + "if": { + "and": [ + "location=indoor" + ] + }, + "then": { + "en": "Found indoors.", + "ja": "屋内にある。", + "ru": "Внутри.", + "fr": "Intérieur.", + "de": "Im Innenraum vorhanden.", + "it": "Si trova all’interno." + } + }, + { + "if": { + "and": [ + "location=outdoor" + ] + }, + "then": { + "en": "Found outdoors.", + "ja": "屋外にある。", + "ru": "Снаружи.", + "fr": "Extérieur.", + "de": "Im Außenraum vorhanden.", + "it": "Si trova all’esterno." + } + } + ], + "freeform": { + "key": "location" + } + }, + "images" + ], + "presets": [ + { + "tags": [ + "emergency=fire_extinguisher" + ], + "title": { + "en": "Fire extinguisher", + "ja": "消火器", + "nb_NO": "Brannslukker", + "ru": "Огнетушитель", + "fr": "Extincteur", + "de": "Feuerlöscher", + "it": "Estintore" + }, + "description": { + "en": "A fire extinguisher is a small, portable device used to stop a fire", + "ja": "消火器は、火災を止めるために使用される小型で携帯可能な装置である", + "ru": "Огнетушитель - небольшое переносное устройство для тушения огня", + "fr": "Un extincteur est un appareil portatif servant à éteindre un feu", + "de": "Ein Feuerlöscher ist ein kleines, tragbares Gerät, das dazu dient, ein Feuer zu löschen", + "it": "Un estintore è un dispositivo portatile di piccole dimensioni usato per spegnere un incendio" + } + } + ], + "mapRendering": [ + { + "icon": { + "render": "./assets/themes/hailhydrant/Twemoji12_1f9ef.svg" + }, + "iconSize": { + "render": "20,20,center" + }, + "location": [ + "point", + "centroid" + ] + } + ] +} \ No newline at end of file diff --git a/assets/layers/fire_station/fire_station.json b/assets/layers/fire_station/fire_station.json new file mode 100644 index 0000000000..66c850e314 --- /dev/null +++ b/assets/layers/fire_station/fire_station.json @@ -0,0 +1,257 @@ +{ + "id": "fire_station", + "name": { + "en": "Map of fire stations", + "ja": "消防署の地図", + "nb_NO": "Kart over brannstasjoner", + "it": "Mappa delle caserme dei vigili del fuoco", + "ru": "Карта пожарных частей", + "fr": "Couche des stations de pompiers", + "de": "Karte der Feuerwachen" + }, + "minzoom": 12, + "source": { + "osmTags": { + "and": [ + "amenity=fire_station" + ] + } + }, + "title": { + "render": { + "en": "Fire Station", + "ja": "消防署", + "ru": "Пожарная часть", + "nb_NO": "Brannstasjon", + "it": "Caserma dei vigili del fuoco", + "fr": "Station de pompiers", + "de": "Feuerwache" + } + }, + "description": { + "en": "Map layer to show fire stations.", + "ja": "消防署を表示するためのマップレイヤ。", + "it": "Livello che mostra le caserme dei vigili del fuoco.", + "ru": "Слой карты, отображающий пожарные части.", + "fr": "Couche des stations de pompiers.", + "de": "Kartenebene zur Darstellung von Feuerwachen." + }, + "tagRenderings": [ + { + "id": "station-name", + "freeform": { + "key": "name" + }, + "question": { + "en": "What is the name of this fire station?", + "ja": "この消防署の名前は何ですか?", + "ru": "Как называется эта пожарная часть?", + "it": "Come si chiama questa caserma dei vigili del fuoco?", + "fr": "Quel est le nom de la station ?", + "de": "Wie lautet der Name dieser Feuerwache?" + }, + "render": { + "en": "This station is called {name}.", + "ja": "このステーションの名前は{name}です。", + "it": "Questa caserma si chiama {name}.", + "ru": "Эта часть называется {name}.", + "fr": "Cette station s’appelle {name}.", + "nb_NO": "Denne stasjonen heter {name}." + } + }, + { + "id": "station-street", + "freeform": { + "key": "addr:street" + }, + "question": { + "en": " What is the street name where the station located?", + "ja": " 救急ステーションの所在地はどこですか?", + "it": " Qual è il nome della via in cui si trova la caserma?", + "ru": " По какому адресу расположена эта часть?", + "fr": " Quel est le nom de la rue dans lequel elle se situe ?" + }, + "render": { + "en": "This station is along a highway called {addr:street}.", + "ja": "{addr:street} 沿いにあります。", + "ru": "Часть расположена вдоль шоссе {addr:street}.", + "fr": "La station fait partie de la {addr:street}.", + "it": "La stazione si trova in una strada chiamata {addr:street}." + } + }, + { + "id": "station-place", + "question": { + "en": "Where is the station located? (e.g. name of neighborhood, villlage, or town)", + "ja": "このステーションの住所は?(例: 地区、村、または町の名称)", + "ru": "Где расположена часть? (напр., название населённого пункта)", + "fr": "Dans quelle localité la station est-elle située ?", + "it": "In che località si trova la stazione? (ad es. quartiere, paese o città)" + }, + "freeform": { + "key": "addr:place" + }, + "render": { + "en": "This station is found within {addr:place}.", + "ja": "このステーションは{addr:place}にあります。", + "ru": "Эта часть расположена в {addr:place}.", + "fr": "La station fait partie de {addr:place}.", + "it": "La stazione si trova a {addr:place}." + } + }, + { + "id": "station-agency", + "question": { + "en": "What agency operates this station?", + "ja": "このステーションを運営しているのはどこですか?", + "fr": "Quel est l’exploitant de la station ?", + "it": "Quale agenzia gestisce questa stazione?" + }, + "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}." + }, + "freeform": { + "key": "operator" + }, + "mappings": [ + { + "if": { + "and": [ + "operator=Bureau of Fire Protection", + "operator:type=government" + ] + }, + "then": { + "en": "Bureau of Fire Protection", + "ja": "消防局(消防庁)", + "fr": "Brigade de Protection du Feu", + "de": "Brandschutzbehörde", + "it": "Servizio antincendio governativo" + } + } + ] + }, + { + "id": "station-operator", + "question": { + "en": "How is the station operator classified?", + "ja": "ステーションの運営の分類は?", + "fr": "Quel est le type d’exploitant ?", + "it": "Com’è classificato il gestore di questa stazione?" + }, + "render": { + "en": "The operator is a(n) {operator:type} entity.", + "ja": "運営者は、{operator:type} です。", + "fr": "L’exploitant est de type {operator:type}.", + "it": "Il gestore è un ente {operator:type}." + }, + "freeform": { + "key": "operator:type" + }, + "mappings": [ + { + "if": { + "and": [ + "operator:type=government" + ] + }, + "then": { + "en": "The station is operated by the government.", + "ja": "ステーションは自治体が運営する。", + "fr": "La station est opérée par le gouvernement.", + "it": "Questa stazione è gestita dal governo.", + "nb_NO": "Stasjonen drives av myndighetene." + } + }, + { + "if": { + "and": [ + "operator:type=community" + ] + }, + "then": { + "en": "The station is operated by a community-based, or informal organization.", + "ja": "任意団体やコミュニティが運営しているステーションである。", + "fr": "La station est opérée par une organisation informelle.", + "it": "Questa stazione è gestita dalla comunità oppure un’associazione informale." + } + }, + { + "if": { + "and": [ + "operator:type=ngo" + ] + }, + "then": { + "en": "The station is operated by a formal group of volunteers.", + "ja": "公益団体が運営しているステーションである。", + "fr": "La station est opérée par un groupe officiel de bénévoles.", + "it": "Questa stazione è gestita da un gruppo di volontari ufficiale." + } + }, + { + "if": { + "and": [ + "operator:type=private" + ] + }, + "then": { + "en": "The station is privately operated.", + "ja": "個人が運営しているステーションである。", + "fr": "La station est opérée par un groupe privé.", + "it": "Questa stazione è gestita da privati." + } + } + ] + }, + "images" + ], + "presets": [ + { + "tags": [ + "amenity=fire_station" + ], + "title": { + "en": "Fire station", + "ja": "消防署", + "ru": "Пожарная часть", + "fr": "Caserne de pompiers", + "de": "Feuerwache", + "it": "Caserma dei vigili del fuoco", + "nb_NO": "Brannstasjon" + }, + "description": { + "en": "A fire station is a place where the fire trucks and firefighters are located when not in operation.", + "ja": "消防署は、運転していないときに消防車や消防士がいる場所です。", + "fr": "Une caserne de pompiers est un lieu où les pompiers et leur équipements sont situés en dehors des missions.", + "de": "Eine Feuerwache ist ein Ort, an dem die Feuerwehrfahrzeuge und die Feuerwehrleute untergebracht sind, wenn sie nicht im Einsatz sind.", + "it": "Una caserma dei pompieri è un luogo dove si trovano i mezzi antincendio e i pompieri tra una missione e l’altra." + } + } + ], + "mapRendering": [ + { + "icon": { + "render": "./assets/themes/hailhydrant/Twemoji12_1f692.svg" + }, + "iconSize": { + "render": "35,35,center" + }, + "location": [ + "point", + "centroid" + ] + }, + { + "color": { + "render": "#c22" + }, + "width": { + "render": "1" + } + } + ] +} \ No newline at end of file diff --git a/assets/layers/food/Vegetarian-mark.svg b/assets/layers/food/Vegetarian-mark.svg index d6ecd68c05..9ec14b57a4 100644 --- a/assets/layers/food/Vegetarian-mark.svg +++ b/assets/layers/food/Vegetarian-mark.svg @@ -1,30 +1,6 @@ -<?xml version="1.0" encoding="UTF-8" standalone="no"?> -<svg - xmlns:dc="http://purl.org/dc/elements/1.1/" - xmlns:cc="http://creativecommons.org/ns#" - xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" - xmlns="http://www.w3.org/2000/svg" - version="1.0" - width="340pt" - height="362pt" - viewBox="0 0 340 362"> - <title>Vegetarian mark - - - - image/svg+xml - - Vegetarian mark - - - - - - - + + + + + + \ No newline at end of file diff --git a/assets/layers/food/fastfood.svg b/assets/layers/food/fastfood.svg index 31c20a3d09..6e3fd193e5 100644 --- a/assets/layers/food/fastfood.svg +++ b/assets/layers/food/fastfood.svg @@ -1,25 +1,6 @@ - - - - - - image/svg+xml - - - - - - - - - + + + + + + \ No newline at end of file diff --git a/assets/layers/food/food.json b/assets/layers/food/food.json index 260d281ad5..816aa36454 100644 --- a/assets/layers/food/food.json +++ b/assets/layers/food/food.json @@ -64,6 +64,7 @@ "cuisine=friture" ], "description": { + "en": "A fastfood-buisiness focused on french fries", "nl": "Een fastfood-zaak waar je frieten koopt" }, "preciseInput": { @@ -73,6 +74,7 @@ ], "title": { "render": { + "en": "Restaurant", "nl": "Eetgelegenheid" }, "mappings": [ @@ -101,6 +103,18 @@ "en": "Fastfood {name}", "de": "Schnellrestaurant{name}" } + }, + { + "if": { + "and": [ + "amenity=fast_food" + ] + }, + "then": { + "nl": "Fastfood-zaak", + "en": "Fastfood", + "de": "Schnellrestaurant" + } } ] }, @@ -132,12 +146,14 @@ { "if": "amenity=fast_food", "then": { + "en": "This is a fastfood-business, focussed on fast service. If seating is available, these are rather limited and functional.", "nl": "Dit is een fastfood-zaak. De focus ligt op snelle bediening, zitplaatsen zijn vaak beperkt en functioneel" } }, { "if": "amenity=restaurant", "then": { + "en": "A restaurant, focussed on creating a nice experience where one is served at the table", "nl": "Dit is een restaurant. De focus ligt op een aangename ervaring waar je aan tafel wordt bediend" } } @@ -195,72 +211,84 @@ { "if": "cuisine=kebab", "then": { + "en": "This is kebab shop", "nl": "Dit is een kebabzaak" } }, { "if": "cuisine=sandwich", "then": { + "en": "This is a sandwichbar", "nl": "Dit is een broodjeszaak" } }, { "if": "cuisine=burger", "then": { + "en": "Burgers are served here", "nl": "Dit is een hamburgerrestaurant" } }, { "if": "cuisine=sushi", "then": { + "en": "Sushi is served here", "nl": "Dit is een sushirestaurant" } }, { "if": "cuisine=coffee", "then": { + "en": "Coffee is served here", "nl": "Dit is een koffiezaak" } }, { "if": "cuisine=italian", "then": { + "en": "This is an italian restaurant (which serves more then pasta and pizza)", "nl": "Dit is een Italiaans restaurant (dat meer dan enkel pasta of pizza verkoopt)" } }, { "if": "cuisine=french", "then": { + "en": "French dishes are served here", "nl": "Dit is een Frans restaurant" } }, { "if": "cuisine=chinese", "then": { + "en": "Chinese dishes are served here", "nl": "Dit is een Chinees restaurant" } }, { "if": "cuisine=greek", "then": { + "en": "Greek dishes are served here", "nl": "Dit is een Grieks restaurant" } }, { "if": "cuisine=indian", "then": { + "en": "Indian dishes are served here", "nl": "Dit is een Indisch restaurant" } }, { "if": "cuisine=turkish", "then": { + "en": "Turkish dishes are served here", "nl": "Dit is een Turks restaurant (dat meer dan enkel kebab verkoopt)" } }, { "if": "cuisine=thai", "then": { + "en": "Thai dishes are served here", "nl": "Dit is een Thaïs restaurant" } } @@ -311,24 +339,28 @@ { "if": "diet:vegetarian=no", "then": { + "en": "No vegetarian options are available", "nl": "Geen vegetarische opties beschikbaar" } }, { "if": "diet:vegetarian=limited", "then": { + "en": "Some vegetarian options are available", "nl": "Beperkte vegetarische opties zijn beschikbaar" } }, { "if": "diet:vegetarian=yes", "then": { + "en": "No vegetarian options are available", "nl": "Vegetarische opties zijn beschikbaar" } }, { "if": "diet:vegetarian=only", "then": { + "en": "All dishes are vegetarian", "nl": "Enkel vegetarische opties zijn beschikbaar" } } @@ -338,30 +370,35 @@ }, { "question": { + "en": "Does this business serve vegan meals?", "nl": "Heeft deze eetgelegenheid een veganistische optie?" }, "mappings": [ { "if": "diet:vegan=no", "then": { + "en": "No vegan options available", "nl": "Geen veganistische opties beschikbaar" } }, { "if": "diet:vegan=limited", "then": { + "en": "Some vegan options are available", "nl": "Beperkte veganistische opties zijn beschikbaar" } }, { "if": "diet:vegan=yes", "then": { + "en": "Vegan options are available", "nl": "Veganistische opties zijn beschikbaar" } }, { "if": "diet:vegan=only", "then": { + "en": "All dishes are vegan", "nl": "Enkel veganistische opties zijn beschikbaar" } } @@ -415,6 +452,7 @@ { "id": "friture-vegetarian", "question": { + "en": "Does this fries shop have vegetarian snacks?", "nl": "Heeft deze frituur vegetarische snacks?", "fr": "Cette friterie est-elle équipée de snacks végétariens ?" }, @@ -422,6 +460,7 @@ { "if": "diet:vegetarian=yes", "then": { + "en": "Vegetarian snacks are available", "nl": "Er zijn vegetarische snacks aanwezig", "fr": "Des collations végétariens sont disponibles" } @@ -429,6 +468,7 @@ { "if": "diet:vegetarian=limited", "then": { + "en": "Only a small selection of snacks are vegetarian", "nl": "Slechts enkele vegetarische snacks", "fr": "Quelques snacks végétariens seulement" } @@ -436,6 +476,7 @@ { "if": "diet:vegetarian=no", "then": { + "en": "No vegetarian snacks are available", "nl": "Geen vegetarische snacks beschikbaar", "fr": "Pas d'en-cas végétariens disponibles" } @@ -446,6 +487,7 @@ { "id": "friture-vegan", "question": { + "en": "Does this fries shop have vegan snacks?", "nl": "Heeft deze frituur veganistische snacks?", "fr": "Cette friterie est-elle équipée de snacks végétaliens ?" }, @@ -453,6 +495,7 @@ { "if": "diet:vegan=yes", "then": { + "en": "Vegan snacks are available", "nl": "Er zijn veganistische snacks aanwezig", "fr": "Des collations végétaliens sont disponibles" } @@ -460,6 +503,7 @@ { "if": "diet:vegan=limited", "then": { + "en": "A small selection of vegan snacks are available", "nl": "Slechts enkele veganistische snacks", "fr": "Quelques snacks végétaliens seulement" } @@ -467,6 +511,7 @@ { "if": "diet:vegan=no", "then": { + "en": "No vegan snacks are available", "nl": "Geen veganistische snacks beschikbaar", "fr": "Pas d'en-cas végétaliens disponibles" } @@ -477,6 +522,7 @@ { "id": "friture-oil", "question": { + "en": "Does this fries shop use vegetable or animal cooking?", "nl": "Bakt deze frituur met dierlijk vet of met plantaardige olie?", "fr": "Cette friteuse fonctionne-t-elle avec de la graisse animale ou végétale ?" }, @@ -484,13 +530,15 @@ { "if": "friture:oil=vegetable", "then": { - "nl": "Plantaardige olie", + "en": "Vegetable oil", + "nl": "Bakt in plantaardige olie", "fr": "Huile végétale" } }, { "if": "friture:oil=animal", "then": { + "en": "Animal oil", "nl": "Dierlijk vet", "fr": "Graisse animale" } @@ -543,7 +591,8 @@ "condition": "cuisine=friture" }, "service:electricity", - "dog-access" + "dog-access", + "reviews" ], "filter": [ { @@ -675,5 +724,8 @@ "centroid" ] } - ] + ], + "description": { + "en": "A layer showing restaurants and fast-food amenities (with a special rendering for friteries)" + } } \ No newline at end of file diff --git a/assets/layers/food/fries.svg b/assets/layers/food/fries.svg index d4b1b941ea..763c73b697 100644 --- a/assets/layers/food/fries.svg +++ b/assets/layers/food/fries.svg @@ -1,27 +1,18 @@ - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/assets/layers/food/restaurant.svg b/assets/layers/food/restaurant.svg index 1a3c59d688..ef20328706 100644 --- a/assets/layers/food/restaurant.svg +++ b/assets/layers/food/restaurant.svg @@ -1,30 +1,6 @@ - - - - - - image/svg+xml - - - - - - - - + + + + + + \ No newline at end of file diff --git a/assets/layers/ghost_bike/ghost_bike.json b/assets/layers/ghost_bike/ghost_bike.json index be4b2292e2..98697e3e92 100644 --- a/assets/layers/ghost_bike/ghost_bike.json +++ b/assets/layers/ghost_bike/ghost_bike.json @@ -10,12 +10,12 @@ "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", "pt_BR": "Bicicleta fantasma", - "ru": "Велосипед Ghost", + "ru": "Велосипед ghost", "sv": "Spökcykel", "zh_Hant": "幽靈單車", "pt": "Bicicleta fantasma" @@ -65,7 +65,20 @@ "nl": "Witte fiets", "de": "Geisterrad", "it": "Bici fantasma", - "fr": "Vélo fantôme" + "fr": "Vélo fantôme", + "eo": "Fantombiciklo", + "es": "Bicicleta blanca", + "fi": "Haamupyörä", + "gl": "Bicicleta pantasma", + "hu": "Emlékkerékpár", + "ja": "ゴーストバイク", + "nb_NO": "Spøkelsessykler", + "pl": "Duch roweru", + "pt": "Bicicleta fantasma", + "pt_BR": "Bicicleta fantasma", + "ru": "Велосипед ghost", + "sv": "Spökcykel", + "zh_Hant": "幽靈單車" }, "tags": [ "historic=memorial", @@ -209,5 +222,8 @@ "centroid" ] } - ] + ], + "description": { + "en": "A layer showing memorials for cyclists, killed in road accidents" + } } \ No newline at end of file diff --git a/assets/layers/ghost_bike/ghost_bike.svg b/assets/layers/ghost_bike/ghost_bike.svg index e998b4d44e..f5ece04543 100644 --- a/assets/layers/ghost_bike/ghost_bike.svg +++ b/assets/layers/ghost_bike/ghost_bike.svg @@ -1,72 +1,12 @@ - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + \ No newline at end of file diff --git a/assets/layers/gps_location/gps_location.json b/assets/layers/gps_location/gps_location.json index 5016797eb9..292c16fce4 100644 --- a/assets/layers/gps_location/gps_location.json +++ b/assets/layers/gps_location/gps_location.json @@ -8,7 +8,7 @@ }, "mapRendering": [ { - "icon": "crosshair:#00f", + "icon": "crosshair:var(--catch-detail-color)", "iconSize": "40,40,center", "location": [ "point", diff --git a/assets/layers/gps_location_history/gps_location_history.json b/assets/layers/gps_location_history/gps_location_history.json index 988016183d..056ce5980b 100644 --- a/assets/layers/gps_location_history/gps_location_history.json +++ b/assets/layers/gps_location_history/gps_location_history.json @@ -4,7 +4,8 @@ "minzoom": 0, "source": { "osmTags": "user:location=yes", - "maxCacheAge": 604800 + "#": "Cache is disabled here as these points are kept seperately", + "maxCacheAge": 0 }, "mapRendering": null } \ No newline at end of file diff --git a/assets/layers/gps_track/gps_track.json b/assets/layers/gps_track/gps_track.json index 39e7ec69cf..60e160adef 100644 --- a/assets/layers/gps_track/gps_track.json +++ b/assets/layers/gps_track/gps_track.json @@ -9,25 +9,32 @@ "title": { "render": "Your travelled path" }, + "shownByDefault": false, "tagRenderings": [ { "id": "Privacy notice", "render": { - "en": "This is the path you've travelled since this website is opened. Don't worry - this is only visible to you and no one else. Your location data is never sent off-device without your permission." + "en": "This is the path you've travelled since this website is opened. Don't worry - this is only visible to you and no one else. Your location data is never sent off-device.", + "nl": "Dit is waar je was sinds je deze website hebt geopened. Dit is enkel zichtbaar voor jou en niemand anders, je locatie wordt niet verstuurd" } }, "export_as_gpx", + "export_as_geojson", "minimap", { "id": "delete", "render": "{clear_location_history()}" } ], - "name": "Your track", + "name": { + "en": "Your travelled track", + "nl": "Jouw afgelegde route" + }, "mapRendering": [ { "width": 3, "color": "#bb000077" } - ] + ], + "syncSelection": "global" } \ No newline at end of file diff --git a/assets/layers/grass_in_parks/grass_in_parks.json b/assets/layers/grass_in_parks/grass_in_parks.json index 87ea8db0dc..ca677ccfac 100644 --- a/assets/layers/grass_in_parks/grass_in_parks.json +++ b/assets/layers/grass_in_parks/grass_in_parks.json @@ -60,5 +60,8 @@ "color": "#0f0", "width": "1" } - ] + ], + "description": { + "en": "Searches for all accessible grass patches within public parks - these are 'groenzones'\"" + } } \ No newline at end of file diff --git a/assets/layers/hydrant/hydrant.json b/assets/layers/hydrant/hydrant.json new file mode 100644 index 0000000000..af931bc9bd --- /dev/null +++ b/assets/layers/hydrant/hydrant.json @@ -0,0 +1,334 @@ +{ + "id": "hydrant", + "name": { + "en": "Map of hydrants", + "ja": "消火栓の地図", + "zh_Hant": "消防栓地圖", + "nb_NO": "Kart over brannhydranter", + "ru": "Карта пожарных гидрантов", + "fr": "Carte des bornes incendie", + "de": "Karte der Hydranten", + "it": "Mappa degli idranti" + }, + "minzoom": 14, + "source": { + "osmTags": { + "and": [ + "emergency=fire_hydrant" + ] + } + }, + "title": { + "render": { + "en": "Hydrant", + "ru": "Гидрант", + "ja": "消火栓", + "nb_NO": "Brannhydrant", + "fr": "Bornes incendie", + "de": "Hydrant", + "it": "Idrante" + } + }, + "description": { + "en": "Map layer to show fire hydrants.", + "ja": "消火栓を表示するマップレイヤ。", + "zh_Hant": "顯示消防栓的地圖圖層。", + "nb_NO": "Kartlag for å vise brannhydranter.", + "ru": "Слой карты, отображающий пожарные гидранты.", + "fr": "Couche des bornes incendie.", + "de": "Kartenebene zur Anzeige von Hydranten.", + "it": "Livello della mappa che mostra gli idranti antincendio." + }, + "tagRenderings": [ + { + "id": "hydrant-color", + "question": { + "en": "What color is the hydrant?", + "ja": "消火栓の色は何色ですか?", + "nb_NO": "Hvilken farge har brannhydranten?", + "ru": "Какого цвета гидрант?", + "fr": "Quelle est la couleur de la borne ?", + "de": "Welche Farbe hat der Hydrant?", + "it": "Qual è il colore dell’idrante?" + }, + "render": { + "en": "The hydrant color is {colour}", + "ja": "消火栓の色は{colour}です", + "nb_NO": "Brannhydranter er {colour}", + "ru": "Цвет гидранта {colour}", + "fr": "La borne est {colour}", + "de": "Der Hydrant hat die Farbe {colour}", + "it": "Il colore dell’idrante è {colour}" + }, + "freeform": { + "key": "colour" + }, + "mappings": [ + { + "if": { + "and": [ + "colour=" + ] + }, + "then": { + "en": "The hydrant color is unknown.", + "ja": "消火栓の色は不明です。", + "ru": "Цвет гидранта не определён.", + "fr": "La borne est de couleur inconnue.", + "de": "Die Farbe des Hydranten ist unbekannt.", + "it": "Il colore dell’idrante è sconosciuto." + }, + "hideInAnswer": true + }, + { + "if": { + "and": [ + "colour=yellow" + ] + }, + "then": { + "en": "The hydrant color is yellow.", + "ja": "消火栓の色は黄色です。", + "ru": "Гидрант жёлтого цвета.", + "fr": "La borne est jaune.", + "de": "Die Farbe des Hydranten ist gelb.", + "it": "Il colore dell’idrante è giallo." + } + }, + { + "if": { + "and": [ + "colour=red" + ] + }, + "then": { + "en": "The hydrant color is red.", + "ja": "消火栓の色は赤です。", + "it": "L'idrante è rosso.", + "ru": "Гидрант красного цвета.", + "fr": "La borne est rouge.", + "de": "Die Farbe des Hydranten ist rot." + } + } + ] + }, + { + "id": "hydrant-type", + "question": { + "en": "What type of hydrant is it?", + "ja": "どんな消火栓なんですか?", + "it": "Di che tipo è questo idrante?", + "ru": "К какому типу относится этот гидрант?", + "fr": "De quel type de borne s’agit-il ?", + "de": "Um welche Art von Hydrant handelt es sich?" + }, + "freeform": { + "key": "fire_hydrant:type" + }, + "render": { + "en": " Hydrant type: {fire_hydrant:type}", + "ru": " Тип гидранта: {fire_hydrant:type}", + "ja": " 消火栓のタイプ:{fire_hydrant:type}", + "it": " Tipo di idrante: {fire_hydrant:type}", + "fr": " Type de borne : {fire_hydrant:type}", + "de": " Hydranten-Typ: {fire_hydrant:type}" + }, + "mappings": [ + { + "if": { + "and": [ + "fire_hydrant:type=" + ] + }, + "then": { + "en": "The hydrant type is unknown.", + "ja": "消火栓の種類は不明です。", + "it": "Il tipo di idrante è sconosciuto.", + "ru": "Тип гидранта не определён.", + "fr": "La borne est de type inconnu.", + "de": "Der Typ des Hydranten ist unbekannt." + }, + "hideInAnswer": true + }, + { + "if": { + "and": [ + "fire_hydrant:type=pillar" + ] + }, + "then": { + "en": "Pillar type.", + "ja": "ピラー型。", + "fr": "Pilier.", + "de": "Säulenart.", + "it": "Soprasuolo." + }, + "icon": { + "path": "./assets/themes/hailhydrant/hydrant_pillar.svg", + "class": "small" + } + }, + { + "if": { + "and": [ + "fire_hydrant:type=pipe" + ] + }, + "then": { + "en": "Pipe type.", + "ja": "パイプ型。", + "fr": "Tuyau.", + "de": "Rohrtyp.", + "it": "Tubo." + }, + "icon": { + "path": "./assets/themes/hailhydrant/hydrant_unknown.svg", + "class": "small" + } + }, + { + "if": { + "and": [ + "fire_hydrant:type=wall" + ] + }, + "then": { + "en": "Wall type.", + "id": "Jenis dinding.", + "ru": "Тип стены.", + "ja": "壁型。", + "fr": "Mural.", + "de": "Wandtyp.", + "it": "A muro." + }, + "icon": { + "path": "./assets/themes/hailhydrant/hydrant_unknown.svg", + "class": "small" + } + }, + { + "if": { + "and": [ + "fire_hydrant:type=underground" + ] + }, + "then": { + "en": "Underground type.", + "ja": "地下式。", + "fr": "Enterré.", + "de": "Untergrundtyp.", + "it": "Sottosuolo." + }, + "icon": { + "path": "./assets/themes/hailhydrant/hydrant_underground.svg", + "class": "small" + } + } + ] + }, + { + "id": "hydrant-state", + "question": { + "en": "Is this hydrant still working?", + "ja": "消火栓のライフサイクルステータスを更新します。", + "fr": "Mettre à jour l’état de la borne.", + "de": "Ist dieser Hydrant noch in Betrieb?", + "it": "Aggiorna lo stato di funzionamento dell’idrante." + }, + "mappings": [ + { + "if": { + "and": [ + "emergency=fire_hydrant" + ] + }, + "then": { + "en": "The hydrant is (fully or partially) working", + "ja": "消火栓は(完全にまたは部分的に)機能しています。", + "ru": "Гидрант (полностью или частично) в рабочем состоянии", + "fr": "La borne est en état, ou partiellement en état, de fonctionner.", + "de": "Der Hydrant ist (ganz oder teilweise) in Betrieb", + "it": "L’idrante è (parzialmente o completamente) funzionante." + } + }, + { + "if": { + "and": [ + "disused:emergency=fire_hydrant", + "emergency=" + ] + }, + "then": { + "en": "The hydrant is unavailable", + "ja": "消火栓は使用できません。", + "fr": "La borne est hors-service.", + "de": "Der Hydrant ist nicht verfügbar", + "it": "L’idrante è fuori servizio." + } + }, + { + "if": { + "and": [ + "removed:emergency=fire_hydrant", + "emergency=" + ] + }, + "then": { + "en": "The hydrant has been removed", + "ja": "消火栓が撤去されました。", + "ru": "Гидрант демонтирован", + "fr": "La borne a été retirée.", + "de": "Der Hydrant wurde entfernt", + "it": "L’idrante è stato rimosso." + } + } + ] + }, + "images" + ], + "presets": [ + { + "tags": [ + "emergency=fire_hydrant" + ], + "title": { + "en": "Fire hydrant", + "ru": "Пожарный гидрант", + "ja": "消火栓", + "nb_NO": "Brannhydrant", + "fr": "Borne incendie", + "de": "Löschwasser-Hydrant", + "it": "Idrante antincendio" + }, + "description": { + "en": "A hydrant is a connection point where firefighters can tap water. It might be located underground.", + "ja": "消火栓は消防士が水を汲み上げることができる接続点です。地下にあるかもしれません。", + "fr": "Une borne incendie est un point où les pompiers peuvent s’alimenter en eau. Elle peut être enterrée.", + "de": "Ein Hydrant ist ein Anschlusspunkt, an dem die Feuerwehr Wasser zapfen kann. Er kann sich unterirdisch befinden.", + "it": "Un idrante è un punto di collegamento dove i pompieri possono estrarre acqua. Potrebbe trovarsi sottoterra." + } + } + ], + "mapRendering": [ + { + "icon": { + "render": "./assets/themes/hailhydrant/hydrant.svg" + }, + "iconSize": { + "render": "20,20,center" + }, + "location": [ + "point", + "centroid" + ] + }, + { + "color": { + "render": "#00f" + }, + "width": { + "render": "8" + } + } + ] +} \ No newline at end of file diff --git a/assets/layers/import_candidate/import_candidate.json b/assets/layers/import_candidate/import_candidate.json new file mode 100644 index 0000000000..70720181e7 --- /dev/null +++ b/assets/layers/import_candidate/import_candidate.json @@ -0,0 +1,26 @@ +{ + "id": "import_candidate", + "description": "Layer used in the importHelper", + "source": { + "osmTags": { + "and": [] + } + }, + "mapRendering": [ + { + "location": [ + "point", + "centroid" + ], + "icon": "square:red;", + "iconSize": "15,15,center" + } + ], + "title": "Import candidate", + "tagRenderings": [ + { + "id": "all_tags", + "render": "{all_tags()}" + } + ] +} \ No newline at end of file diff --git a/assets/layers/information_board/board.svg b/assets/layers/information_board/board.svg index 7152dc7914..435cb4c0f0 100644 --- a/assets/layers/information_board/board.svg +++ b/assets/layers/information_board/board.svg @@ -1,71 +1,7 @@ - - - - - - - image/svg+xml - - - - - - - - - - - - - + + + + + + + \ No newline at end of file diff --git a/assets/layers/information_board/information_board.json b/assets/layers/information_board/information_board.json index b482ff5b36..d82fe3d94e 100644 --- a/assets/layers/information_board/information_board.json +++ b/assets/layers/information_board/information_board.json @@ -77,5 +77,9 @@ "render": "#00f" } } - ] + ], + "description": { + "en": "A layer showing touristical, road side information boards (e.g. giving information about the landscape, a building, a feature, a map, ...)", + "nl": "Deze laag toont informatieborden in de publieke ruimte die uitleg geven over een bezienswaardigheid (bv. uitleg over het landschap, een ruine, een kaart van de omgeving, ...)" + } } \ No newline at end of file diff --git a/assets/layers/map/map-stickered.svg b/assets/layers/map/map-stickered.svg index 346a09ea57..a6fa883bd5 100644 --- a/assets/layers/map/map-stickered.svg +++ b/assets/layers/map/map-stickered.svg @@ -12,14 +12,7 @@ width="256" height="256" id="svg3038" - version="1.1" - inkscape:version="0.92.4 (5da689c313, 2019-01-14)" - sodipodi:docname="map-stickered.svg" - inkscape:export-filename="/home/fred/bla.png" - inkscape:export-xdpi="180" - inkscape:export-ydpi="180" - sodipodi:version="0.32" - inkscape:output_extension="org.inkscape.output.svg.inkscape"> + version="1.1"> OpenStreetMap logo 2011 @@ -2326,20 +2319,6 @@ id="path36" d="M 3,5.848 H 23.234 V 24.41 H 3 Z"/> - - - @@ -2356,20 +2335,6 @@ id="path66" d="M 1.5,4.348 H 22.836 V 21.91 H 1.5 Z"/> - - - @@ -4548,20 +4513,6 @@ id="path2110" d="M 3,2.848 H 21.352 V 20.293 H 3 Z"/> - - - @@ -11238,51 +11189,6 @@ - - - - - - - - - - - - - - - - - - - - - diff --git a/assets/layers/map/map.svg b/assets/layers/map/map.svg index 5c19ba9feb..6df96d0b5f 100644 --- a/assets/layers/map/map.svg +++ b/assets/layers/map/map.svg @@ -12,14 +12,7 @@ width="256" height="256" id="svg3038" - version="1.1" - inkscape:version="0.92.4 (5da689c313, 2019-01-14)" - sodipodi:docname="map.svg" - inkscape:export-filename="/home/fred/bla.png" - inkscape:export-xdpi="180" - inkscape:export-ydpi="180" - sodipodi:version="0.32" - inkscape:output_extension="org.inkscape.output.svg.inkscape"> + version="1.1"> OpenStreetMap logo 2011 @@ -2326,20 +2319,7 @@ id="path36" d="M 3,5.848 H 23.234 V 24.41 H 3 Z"/> - - - + @@ -2356,20 +2336,6 @@ id="path66" d="M 1.5,4.348 H 22.836 V 21.91 H 1.5 Z"/> - - - @@ -4548,20 +4514,6 @@ id="path2110" d="M 3,2.848 H 21.352 V 20.293 H 3 Z"/> - - - diff --git a/assets/layers/matchpoint/matchpoint.json b/assets/layers/matchpoint/matchpoint.json new file mode 100644 index 0000000000..0a3d3080fe --- /dev/null +++ b/assets/layers/matchpoint/matchpoint.json @@ -0,0 +1,18 @@ +{ + "id": "matchpoint", + "description": "The default rendering for a locationInput which snaps onto another object", + "source": { + "osmTags": { + "and": [] + } + }, + "mapRendering": [ + { + "location": [ + "point", + "centroid" + ], + "icon": "./assets/svg/crosshair-empty.svg" + } + ] +} \ No newline at end of file diff --git a/assets/layers/named_streets/named_streets.json b/assets/layers/named_streets/named_streets.json new file mode 100644 index 0000000000..03bab2dc89 --- /dev/null +++ b/assets/layers/named_streets/named_streets.json @@ -0,0 +1,24 @@ +{ + "id": "named_streets", + "description": "Hidden layer with all streets which have a name. Useful to detect addresses", + "minzoom": 18, + "source": { + "osmTags": { + "and": [ + "highway~*", + "name~*" + ] + } + }, + "mapRendering": [ + { + "color": { + "render": "#ccc" + }, + "width": { + "render": "3" + } + } + ], + "shownByDefault": false +} \ No newline at end of file diff --git a/assets/layers/nature_reserve/groen_logo.svg b/assets/layers/nature_reserve/groen_logo.svg index 4d9670c35f..6d33010762 100644 --- a/assets/layers/nature_reserve/groen_logo.svg +++ b/assets/layers/nature_reserve/groen_logo.svg @@ -1,8 +1,6 @@ - - Shape 126 - Created with Avocode. - - + + + + + \ No newline at end of file diff --git a/assets/layers/nature_reserve/nature_reserve.json b/assets/layers/nature_reserve/nature_reserve.json index ca6baadd22..f264a56939 100644 --- a/assets/layers/nature_reserve/nature_reserve.json +++ b/assets/layers/nature_reserve/nature_reserve.json @@ -1,6 +1,7 @@ { "id": "nature_reserve", "name": { + "en": "Nature reserve", "nl": "Natuurgebied" }, "minzoom": 12, @@ -23,19 +24,10 @@ }, "title": { "render": { - "nl": "Natuurgebied" + "nl": "Natuurgebied", + "en": "Nature reserve" }, "mappings": [ - { - "if": { - "and": [ - "name:nl~*" - ] - }, - "then": { - "nl": "{name:nl}" - } - }, { "if": { "and": [ @@ -43,21 +35,25 @@ ] }, "then": { + "*": "{name}", "nl": "{name}" } } ] }, "description": { + "en": "A nature reserve is an area where nature can take its course", "nl": "Een natuurgebied is een gebied waar actief ruimte gemaakt word voor de natuur. Typisch zijn deze in beheer van Natuurpunt of het Agentschap Natuur en Bos of zijn deze erkend door de overheid." }, "tagRenderings": [ "images", { "render": { + "en": "Accessin this nature reserve: {access:description}", "nl": "De toegankelijkheid van dit gebied is: {access:description}" }, "question": { + "en": "Is this nature reserve accessible to the public?", "nl": "Is dit gebied toegankelijk?" }, "freeform": { @@ -72,6 +68,7 @@ ] }, "then": { + "en": "Publicly accessible", "nl": "Vrij toegankelijk" } }, @@ -83,6 +80,7 @@ ] }, "then": { + "en": "Not accessible", "nl": "Niet toegankelijk" } }, @@ -94,6 +92,7 @@ ] }, "then": { + "en": "Not accessible as this is a private area", "nl": "Niet toegankelijk, want privégebied" } }, @@ -105,6 +104,7 @@ ] }, "then": { + "en": "Accessible despite being a privately owned area", "nl": "Toegankelijk, ondanks dat het privegebied is" } }, @@ -116,6 +116,7 @@ ] }, "then": { + "en": "Only accessible with a guide or during organised activities", "nl": "Enkel toegankelijk met een gids of tijdens een activiteit" } }, @@ -127,6 +128,7 @@ ] }, "then": { + "en": "Accessible with fee", "nl": "Toegankelijk mits betaling" } } @@ -135,9 +137,11 @@ }, { "render": { + "en": "Operated by {operator}", "nl": "Beheer door {operator}" }, "question": { + "en": "Who operates this area?", "nl": "Wie beheert dit gebied?" }, "freeform": { @@ -151,8 +155,10 @@ ] }, "then": { - "nl": "Dit gebied wordt beheerd door Natuurpunt" - } + "en": "Operated by Natuurpunt", + "nl": "Dit gebied wordt beheerd door Natuurpunt" + }, + "icon": "./assets/layers/nature_reserve/Natuurpunt.jpg" }, { "if": { @@ -161,8 +167,10 @@ ] }, "then": { - "nl": "Dit gebied wordt beheerd door {operator}" + "en": "Operated by {operator}", + "nl": "Dit gebied wordt beheerd door {operator}" }, + "icon": "./assets/layers/nature_reserve/Natuurpunt.jpg", "hideInAnswer": true }, { @@ -172,35 +180,22 @@ ] }, "then": { - "nl": "Dit gebied wordt beheerd door het Agentschap Natuur en Bos" - } + "en": "Operated by Agentschap Natuur en Bos", + "nl": "Dit gebied wordt beheerd door het Agentschap Natuur en Bos" + }, + "icon": "./assets/layers/nature_reserve/ANB.jpg" } ], "id": "Operator tag" }, { "render": { - "nl": "Dit gebied heet {name:nl}" + "nl": "Dit gebied heet {name}", + "en": "This area is named {name}" }, "question": { - "nl": "Wat is de Nederlandstalige naam van dit gebied?" - }, - "freeform": { - "key": "name:nl" - }, - "condition": { - "and": [ - "name:nl~*" - ] - }, - "id": "Name:nl-tag" - }, - { - "render": { - "nl": "Dit gebied heet {name}" - }, - "question": { - "nl": "Wat is de naam van dit gebied?" + "nl": "Wat is de naam van dit gebied?", + "en": "What is the name of this area?" }, "freeform": { "key": "name", @@ -222,6 +217,7 @@ ] }, "then": { + "en": "This area doesn't have a name", "nl": "Dit gebied heeft geen naam" } } @@ -277,21 +273,7 @@ ], "id": "Dogs?" }, - { - "question": { - "en": "On which webpage can one find more information about this nature reserve?", - "nl": "Op welke webpagina kan men meer informatie vinden over dit natuurgebied?", - "it": "In quale pagina web si possono trovare altre informazioni riguardanti questa riserva naturale?", - "fr": "Sur quelle page web peut-on trouver plus d'informations sur cette réserve naturelle ?", - "de": "Auf welcher Webseite kann man mehr Informationen über dieses Naturschutzgebiet finden?" - }, - "render": "{website}", - "freeform": { - "key": "website", - "type": "url" - }, - "id": "Website" - }, + "website", { "question": { "nl": "Wie is de conservator van dit gebied?
Respecteer privacy - geef deze naam enkel als die duidelijk is gepubliceerd", @@ -346,14 +328,7 @@ "de": "Welche Telefonnummer kann man bei Fragen und Problemen zu diesem Naturschutzgebiet anrufen?
Respektieren Sie die Privatsphäre - geben Sie nur eine Telefonnummer an, wenn diese allgemein bekannt ist" }, "render": { - "nl": "{phone}", - "en": "{phone}", - "ca": "{phone}", - "de": "{phone}", - "fr": "{phone}", - "it": "{phone}", - "ru": "{phone}", - "id": "{phone}" + "*": "{phone}" }, "freeform": { "key": "phone", @@ -363,6 +338,7 @@ }, { "render": { + "en": "Extra information: {description}", "nl": "Extra info: {description}" }, "freeform": { @@ -371,8 +347,12 @@ "id": "Non-editable description" }, { - "question": "Is er extra info die je kwijt wil?", + "question": { + "en": "Is there some extra info?", + "nl": "Is er extra info die je kwijt wil?" + }, "render": { + "en": "Extra info: {description:0}", "nl": "Extra info: {description:0}" }, "freeform": { @@ -388,14 +368,7 @@ "fr": "Superficie : {_surface:ha} ha", "de": "Grundfläche: {_surface:ha}ha" }, - "mappings": [ - { - "if": "_surface:ha=0", - "then": { - "*": "" - } - } - ], + "condition": "_surface:ha!=0", "id": "Surface area" }, "wikipedia" @@ -407,9 +380,11 @@ "fixme=Toegevoegd met MapComplete, geometry nog uit te tekenen" ], "title": { + "en": "nature reserve", "nl": "natuurreservaat" }, "description": { + "en": "Add a missing nature reserve", "nl": "Voeg een ontbrekend, erkend natuurreservaat toe, bv. een gebied dat beheerd wordt door het ANB of natuurpunt" } } @@ -420,6 +395,7 @@ "options": [ { "question": { + "en": "Freely accesible", "nl": "Vrij te bezoeken" }, "osmTags": "access=yes" @@ -431,17 +407,20 @@ "options": [ { "question": { + "en": "All nature reserves", "nl": "Alle natuurgebieden" } }, { "question": { + "en": "Dogs are allowed to roam freely", "nl": "Honden mogen vrij rondlopen" }, "osmTags": "dog=yes" }, { "question": { + "en": "Dogs are allowed if they are leashed", "nl": "Honden welkom aan de leiband" }, "osmTags": { diff --git a/assets/layers/nature_reserve/nature_reserve.svg b/assets/layers/nature_reserve/nature_reserve.svg index df171d3479..97d700ba9f 100644 --- a/assets/layers/nature_reserve/nature_reserve.svg +++ b/assets/layers/nature_reserve/nature_reserve.svg @@ -1,9 +1,7 @@ - - - - - Svg Vector Icons : http://www.onlinewebfonts.com/icon - - + + + + + + \ No newline at end of file diff --git a/assets/layers/note/note.json b/assets/layers/note/note.json new file mode 100644 index 0000000000..10a55aaf61 --- /dev/null +++ b/assets/layers/note/note.json @@ -0,0 +1,218 @@ +{ + "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?limit=10000&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", + "_is_import_note:=(() => {const lines = feat.properties['_first_comment'].split('\\n'); const matchesMapCompleteURL = lines.map(l => l.match(\".*https://mapcomplete.osm.be/\\([a-zA-Z_-]+\\)\\(.html\\).*#import\")); const matchedIndexes = matchesMapCompleteURL.map((doesMatch, i) => [doesMatch !== null, i]).filter(v => v[0]).map(v => v[1]); return matchedIndexes[0] })()" + ], + "titleIcons": [ + { + "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" + } + } + ] + }, + { + "id": "no_imports", + "options": [ + { + "osmTags": "_is_import_note=", + "question": { + "en": "Hide import 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 cda4271f85..e60d4ff561 100644 --- a/assets/layers/observation_tower/Tower_observation.svg +++ b/assets/layers/observation_tower/Tower_observation.svg @@ -1,37 +1,6 @@ - - - - - - image/svgxml - - - - - - - - + + + + + \ No newline at end of file diff --git a/assets/layers/observation_tower/observation_tower.json b/assets/layers/observation_tower/observation_tower.json index c098033d0c..662fd09ee6 100644 --- a/assets/layers/observation_tower/observation_tower.json +++ b/assets/layers/observation_tower/observation_tower.json @@ -77,22 +77,29 @@ "id": "Height" }, { + "id": "access", "question": { - "en": "Who maintains this tower?", - "nl": "Wie onderhoudt deze toren?", - "de": "Wer betreibt diesen Turm?" + "en": "Can this tower be visited?", + "nl": "Is deze toren publiek toegankelijk?", + "es": "¿Se puede visitar esta torre?" }, - "render": { - "nl": "Wordt onderhouden door {operator}", - "en": "Maintained by {operator}", - "de": "Betrieben von {operator}" - }, - "freeform": { - "key": "operator" - }, - "id": "Operator" + "mappings": [ + { + "if": "access=yes", + "then": { + "en": "This tower is publicly accessible", + "nl": "Deze toren is publiek toegankelijk" + } + }, + { + "if": "access=guided", + "then": { + "en": "This tower can only be visited with a guide", + "nl": "Deze toren can enkel bezocht worden met een gids" + } + } + ] }, - "website", { "question": { "en": "How much does one have to pay to enter this tower?", @@ -125,7 +132,13 @@ } } ], - "id": "Fee" + "id": "Fee", + "condition": { + "or": [ + "access=yes", + "access=guided" + ] + } }, { "builtin": "payment-options", @@ -139,25 +152,90 @@ }, "id": "Payment methods" }, - "wheelchair-access", - "wikipedia" - ], - "presets": [ + "website", { - "tags": [ - "man_made=tower", - "tower:type=observation" - ], - "title": { - "en": "observation tower", - "nl": "Uitkijktoren", - "ru": "смотровая башня", - "de": "Beobachtungsturm" + "id": "step_count", + "question": { + "en": "How much individual steps does one have to climb to reach the top of this tower?", + "nl": "Hoeveel treden moet men beklimmen op de top van de toren te bereiken?" }, - "description": { - "nl": "Een publiek toegankelijke uitkijktoren" + "freeform": { + "key": "step_count", + "type": "pnat" + }, + "render": { + "en": "This tower has {step_count} steps to reach the top", + "nl": "Deze toren heeft {step_count} traptredes" + }, + "condition": { + "or": [ + "access=yes", + "access=guided" + ] } - } + }, + { + "id": "elevator", + "question": { + "en": "Does this tower have an elevator?", + "nl": "Heeft deze toren een lift?" + }, + "mappings": [ + { + "if": "elevator=yes", + "then": { + "en": "This tower has an elevator which takes visitors to the top", + "nl": "Deze toren heeft een lift die bezoekers naar de top van de toren brengt" + } + }, + { + "if": "elevator=no", + "then": { + "en": "This tower does not have an elevator", + "nl": "Deze toren heeft geen lift" + } + } + ], + "condition": { + "or": [ + "access=yes", + "access=guided" + ] + } + }, + { + "question": { + "en": "Who maintains this tower?", + "nl": "Wie onderhoudt deze toren?", + "de": "Wer betreibt diesen Turm?" + }, + "render": { + "nl": "Wordt onderhouden door {operator}", + "en": "Maintained by {operator}", + "de": "Betrieben von {operator}" + }, + "freeform": { + "key": "operator" + }, + "id": "Operator" + }, + { + "builtin": "wheelchair-access", + "override": { + "condition": { + "and": [ + "elevator=yes", + { + "or": [ + "access=yes", + "access=guided" + ] + } + ] + } + } + }, + "wikipedia" ], "source": { "osmTags": { diff --git a/assets/layers/parking/parking.json b/assets/layers/parking/parking.json index 8e7764b35e..1d3a5bf919 100644 --- a/assets/layers/parking/parking.json +++ b/assets/layers/parking/parking.json @@ -1,6 +1,7 @@ { "id": "parking", "name": { + "en": "Parking", "nl": "Parking" }, "minzoom": 12, diff --git a/assets/layers/parking/parking.svg b/assets/layers/parking/parking.svg index c79264f227..1369443d9d 100644 --- a/assets/layers/parking/parking.svg +++ b/assets/layers/parking/parking.svg @@ -1,60 +1,15 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + \ No newline at end of file diff --git a/assets/layers/pedestrian_path/pedestrian_path.json b/assets/layers/pedestrian_path/pedestrian_path.json new file mode 100644 index 0000000000..3e34b2ef23 --- /dev/null +++ b/assets/layers/pedestrian_path/pedestrian_path.json @@ -0,0 +1,34 @@ +{ + "id": "pedestrian_path", + "name": { + "en": "Pedestrain paths" + }, + "minzoom": 18, + "source": { + "osmTags": { + "or": [ + "highway=footway", + "highway=path", + "highway=corridor", + "highway=steps" + ] + } + }, + "title": {}, + "description": { + "en": "Pedestrian footpaths, especially used for indoor navigation and snapping entrances to this layer" + }, + "mapRendering": [ + { + "icon": "./assets/svg/bug.svg", + "location": [ + "point" + ] + }, + { + "color": "#b33", + "width": 4, + "dashArray": "12 6" + } + ] +} \ No newline at end of file diff --git a/assets/layers/picnic_table/picnic_table.json b/assets/layers/picnic_table/picnic_table.json index fd06f63f4f..03082ea333 100644 --- a/assets/layers/picnic_table/picnic_table.json +++ b/assets/layers/picnic_table/picnic_table.json @@ -2,7 +2,7 @@ "id": "picnic_table", "name": { "en": "Picnic tables", - "nl": "Picnictafels", + "nl": "Picknicktafels", "it": "Tavoli da picnic", "ru": "Столы для пикника", "fr": "Tables de pique-nique", @@ -15,7 +15,7 @@ "title": { "render": { "en": "Picnic table", - "nl": "Picnictafel", + "nl": "Picknicktafel", "it": "Tavolo da picnic", "ru": "Стол для пикника", "fr": "Table de pique-nique", @@ -24,17 +24,18 @@ }, "description": { "en": "The layer showing picnic tables", - "nl": "Deze laag toont picnictafels", + "nl": "Deze laag toont picknicktafels", "it": "Il livello che mostra i tavoli da picnic", "fr": "La couche montrant les tables de pique-nique", "ru": "Слой, отображающий столы для пикника", "de": "Die Ebene zeigt Picknicktische an" }, "tagRenderings": [ + "images", { "question": { "en": "What material is this picnic table made of?", - "nl": "Van welk materiaal is deze picnictafel gemaakt?", + "nl": "Van welk materiaal is deze picknicktafel gemaakt?", "it": "Di che materiale è fatto questo tavolo da picnic?", "de": "Aus welchem Material besteht dieser Picknicktisch?", "ru": "Из чего изготовлен этот стол для пикника?", @@ -42,7 +43,7 @@ }, "render": { "en": "This picnic table is made of {material}", - "nl": "Deze picnictafel is gemaakt van {material}", + "nl": "Deze picknicktafel is gemaakt van {material}", "it": "Questo tavolo da picnic è fatto di {material}", "de": "Dieser Picknicktisch besteht aus {material}", "ru": "Этот стол для пикника сделан из {material}", @@ -56,7 +57,7 @@ "if": "material=wood", "then": { "en": "This is a wooden picnic table", - "nl": "Deze picnictafel is gemaakt uit hout", + "nl": "Deze picknicktafel is gemaakt uit hout", "it": "È un tavolo da picnic in legno", "ru": "Это деревянный стол для пикника", "de": "Dies ist ein Picknicktisch aus Holz", @@ -67,7 +68,7 @@ "if": "material=concrete", "then": { "en": "This is a concrete picnic table", - "nl": "Deze picnictafel is gemaakt uit beton", + "nl": "Deze picknicktafel is gemaakt uit beton", "it": "È un tavolo da picnic in cemento", "ru": "Это бетонный стол для пикника", "de": "Dies ist ein Picknicktisch aus Beton", diff --git a/assets/layers/picnic_table/picnic_table.svg b/assets/layers/picnic_table/picnic_table.svg index 7fab6ba180..c6211ab54e 100644 --- a/assets/layers/picnic_table/picnic_table.svg +++ b/assets/layers/picnic_table/picnic_table.svg @@ -1,49 +1,6 @@ - -image/svg+xml - - - \ No newline at end of file + + + + + + \ No newline at end of file diff --git a/assets/layers/play_forest/icon.svg b/assets/layers/play_forest/icon.svg index 7e5ae747ff..229042923a 100644 --- a/assets/layers/play_forest/icon.svg +++ b/assets/layers/play_forest/icon.svg @@ -1,61 +1,38 @@ - - - - - - - - image/svg+xml - - - - - - - - + width="400" + height="400" + viewBox="0 0 400 400" + version="1.1" + id="svg5" + sodipodi:docname="icon.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" + xmlns:svg="http://www.w3.org/2000/svg"> + + + + + diff --git a/assets/layers/playground/playground.json b/assets/layers/playground/playground.json index b6df6429ac..6c6b62bf5a 100644 --- a/assets/layers/playground/playground.json +++ b/assets/layers/playground/playground.json @@ -165,6 +165,9 @@ "id": "playground-surface" }, { + "labels": [ + "extra" + ], "id": "playground-lit", "question": { "nl": "Is deze speeltuin 's nachts verlicht?", @@ -200,6 +203,9 @@ ] }, { + "labels": [ + "extra" + ], "render": { "nl": "Toegankelijk vanaf {min_age} jaar oud", "en": "Accessible to kids older than {min_age} years", @@ -223,6 +229,9 @@ "id": "playground-min_age" }, { + "labels": [ + "extra" + ], "render": { "nl": "Toegankelijk tot {max_age}", "en": "Accessible to kids of at most {max_age}", @@ -274,17 +283,6 @@ "fr": "L’aire de jeu est-elle accessible au public ?" }, "mappings": [ - { - "if": "access=", - "then": { - "en": "Accessible to the general public", - "nl": "Vrij toegankelijk voor het publiek", - "it": "Accessibile pubblicamente", - "de": "Zugänglich für die Allgemeinheit", - "fr": "Accessible au public" - }, - "hideInAnswer": true - }, { "if": "access=yes", "then": { @@ -309,11 +307,12 @@ "if": "access=students", "then": { "en": "Only accessible to students of the school", - "nl": "Vrij toegankelijk voor scholieren van de school", + "nl": "Enkel toegankelijk voor scholieren van de bijhorende school", "it": "Accessibile solamente agli studenti della scuola", "de": "Nur für Schüler der Schule zugänglich", "fr": "Réservée aux élèves de l’école" - } + }, + "hideInAnswer": true }, { "if": "access=private", @@ -458,18 +457,6 @@ "it": "Si può sempre accedere", "de": "Immer zugänglich" } - }, - { - "if": "opening_hours=", - "then": { - "nl": "Dag en nacht toegankelijk", - "en": "Always accessible", - "ru": "Всегда доступен", - "fr": "Toujours accessible", - "it": "Si può sempre accedere", - "de": "Immer zugänglich" - }, - "hideInAnswer": true } ], "id": "playground-opening_hours" @@ -486,12 +473,12 @@ "leisure=playground" ], "title": { - "nl": "Speeltuin", - "en": "Playground", + "nl": "speeltuin", + "en": "playground", "ru": "Детская площадка", - "fr": "Terrain de jeux", - "it": "Campetto", - "de": "Spielplatz" + "fr": "terrain de jeux", + "it": "campetto", + "de": "spielplatz" } } ], diff --git a/assets/layers/public_bookcase/public_bookcase.json b/assets/layers/public_bookcase/public_bookcase.json index ebb432d1a2..8d267bdbd1 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" @@ -63,10 +68,6 @@ ], "tagRenderings": [ "images", - { - "id": "minimap", - "render": "{minimap():height: 9rem; border-radius: 2.5rem; overflow:hidden;border:1px solid gray}" - }, { "render": { "en": "The name of this bookcase is {name}", @@ -74,15 +75,17 @@ "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?", - "nl": "Wat is de naam van dit boekenuilkastje?", + "nl": "Wat is de naam van dit boekenruilkastje?", "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 +104,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 +118,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 +127,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 +145,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 +157,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 +169,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 +181,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 +194,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 +204,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 +215,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 +226,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 +242,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 +254,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 +265,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 +278,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 +301,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,14 +323,18 @@ "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": [ "brand=Little Free Library", "nobrand=" ] - } + }, + "addExtraTags": [ + "brand:wikidata=Q6650101" + ] }, { "if": { @@ -323,7 +348,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" } } ], @@ -335,14 +361,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": { @@ -355,7 +383,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": [ @@ -375,7 +404,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}", @@ -383,7 +413,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", @@ -398,7 +429,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?", @@ -406,7 +438,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", @@ -451,7 +484,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/recycling/batteries.svg b/assets/layers/recycling/batteries.svg new file mode 100644 index 0000000000..2ba5474734 --- /dev/null +++ b/assets/layers/recycling/batteries.svg @@ -0,0 +1,15 @@ + + + + + + + + + + + + + + + diff --git a/assets/layers/recycling/beverage_cartons.svg b/assets/layers/recycling/beverage_cartons.svg new file mode 100644 index 0000000000..05909ef8f2 --- /dev/null +++ b/assets/layers/recycling/beverage_cartons.svg @@ -0,0 +1,20 @@ + + + + + + + + + + + + + + + + + + + + diff --git a/assets/layers/recycling/cans.svg b/assets/layers/recycling/cans.svg new file mode 100644 index 0000000000..2aaff3f9a6 --- /dev/null +++ b/assets/layers/recycling/cans.svg @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/assets/layers/recycling/clothes.svg b/assets/layers/recycling/clothes.svg new file mode 100644 index 0000000000..f99861248c --- /dev/null +++ b/assets/layers/recycling/clothes.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/assets/layers/recycling/cooking_oil.svg b/assets/layers/recycling/cooking_oil.svg new file mode 100644 index 0000000000..7a742beab2 --- /dev/null +++ b/assets/layers/recycling/cooking_oil.svg @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/assets/layers/recycling/engine_oil.svg b/assets/layers/recycling/engine_oil.svg new file mode 100644 index 0000000000..f92afd355f --- /dev/null +++ b/assets/layers/recycling/engine_oil.svg @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/assets/layers/recycling/garden_waste.svg b/assets/layers/recycling/garden_waste.svg new file mode 100644 index 0000000000..8788c11470 --- /dev/null +++ b/assets/layers/recycling/garden_waste.svg @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + + + + + + + diff --git a/assets/layers/recycling/glass.svg b/assets/layers/recycling/glass.svg new file mode 100644 index 0000000000..46488037e4 --- /dev/null +++ b/assets/layers/recycling/glass.svg @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/assets/layers/recycling/glass_bottles.svg b/assets/layers/recycling/glass_bottles.svg new file mode 100644 index 0000000000..7d234e9912 --- /dev/null +++ b/assets/layers/recycling/glass_bottles.svg @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/assets/layers/recycling/license_info.json b/assets/layers/recycling/license_info.json new file mode 100644 index 0000000000..ec788ff437 --- /dev/null +++ b/assets/layers/recycling/license_info.json @@ -0,0 +1,186 @@ +[ + { + "path": "batteries.svg", + "license": "CC-BY-SA", + "authors": [ + "Tobias Zwick" + ], + "sources": [ + "https://github.com/streetcomplete/StreetComplete/blob/master/res/graphics/recycling%20icons/batteries.svg" + ] + }, + { + "path": "beverage_cartons.svg", + "license": "CC-BY-SA", + "authors": [ + "Tobias Zwick" + ], + "sources": [ + "https://github.com/streetcomplete/StreetComplete/blob/master/res/graphics/recycling%20icons/beverage_cartons.svg" + ] + }, + { + "path": "cans.svg", + "license": "CC-BY-SA", + "authors": [ + "Tobias Zwick" + ], + "sources": [ + "https://github.com/streetcomplete/StreetComplete/blob/master/res/graphics/recycling%20icons/cans.svg" + ] + }, + { + "path": "clothes.svg", + "license": "CC-BY-SA", + "authors": [ + "Adrien Pavie", + "modified from EmojiOne 2: U+1F456, U+1F45" + ], + "sources": [ + "https://github.com/streetcomplete/StreetComplete/blob/master/res/graphics/recycling%20icons/clothes.svg" + ] + }, + { + "path": "cooking_oil.svg", + "license": "CC-BY-SA", + "authors": [ + "Tobias Zwick" + ], + "sources": [ + "https://github.com/streetcomplete/StreetComplete/blob/master/res/graphics/recycling%20icons/cooking_oil.svg" + ] + }, + { + "path": "engine_oil.svg", + "license": "CC-BY-SA", + "authors": [ + "Tobias Zwick" + ], + "sources": [ + "https://github.com/streetcomplete/StreetComplete/blob/master/res/graphics/recycling%20icons/engine_oil.svg" + ] + }, + { + "path": "garden_waste.svg", + "license": "CC-BY-SA", + "authors": [ + "Tobias Zwick", + "modified from Twemoji: U+1F33F" + ], + "sources": [ + "https://github.com/streetcomplete/StreetComplete/blob/master/res/graphics/recycling%20icons/garden_waste.svg" + ] + }, + { + "path": "glass.svg", + "license": "CC-BY-SA", + "authors": [ + "Tobias Zwick" + ], + "sources": [ + "https://github.com/streetcomplete/StreetComplete/blob/master/res/graphics/recycling%20icons/glass.svg" + ] + }, + { + "path": "glass_bottles.svg", + "license": "CC-BY-SA", + "authors": [ + "Tobias Zwick" + ], + "sources": [ + "https://github.com/streetcomplete/StreetComplete/blob/master/res/graphics/recycling%20icons/glass_bottles.svg" + ] + }, + { + "path": "newspaper.svg", + "license": "CC-BY-SA", + "authors": [ + "Tobias Zwick", + "modified from EmojiOne 2: U+1F4F0" + ], + "sources": [ + "https://github.com/streetcomplete/StreetComplete/blob/master/res/graphics/recycling%20icons/newspaper.svg" + ] + }, + { + "path": "paper.svg", + "license": "CC-BY-SA", + "authors": [ + "Tobias Zwick" + ], + "sources": [ + "https://github.com/streetcomplete/StreetComplete/blob/master/res/graphics/recycling%20icons/paper.svg" + ] + }, + { + "path": "plastic.svg", + "license": "CC-BY-SA", + "authors": [ + "Tobias Zwick" + ], + "sources": [ + "https://github.com/streetcomplete/StreetComplete/blob/master/res/graphics/recycling%20icons/plastic.svg" + ] + }, + { + "path": "plastic_bottles.svg", + "license": "CC-BY-SA", + "authors": [ + "Tobias Zwick" + ], + "sources": [ + "https://github.com/streetcomplete/StreetComplete/blob/master/res/graphics/recycling%20icons/plastic_bottles.svg" + ] + }, + { + "path": "plastic_packaging.svg", + "license": "CC-BY-SA", + "authors": [ + "Tobias Zwick" + ], + "sources": [ + "https://github.com/streetcomplete/StreetComplete/blob/master/res/graphics/recycling%20icons/plastic_packaging.svg" + ] + }, + { + "path": "recycling-14.svg", + "license": "CC0", + "authors": [ + "Michael Glanznig" + ], + "sources": [ + "https://github.com/gmgeo/osmic/blob/master/amenity/recycling-14.svg" + ] + }, + { + "path": "scrap_metal.svg", + "license": "CC-BY-SA", + "authors": [ + "Tobias Zwick" + ], + "sources": [ + "https://github.com/streetcomplete/StreetComplete/blob/master/res/graphics/recycling%20icons/scrap_metal.svg" + ] + }, + { + "path": "shoes.svg", + "license": "CC-BY-SA", + "authors": [ + "Tobias Zwick", + "modified from EmojiOne 2: U+1F45F" + ], + "sources": [ + "https://github.com/streetcomplete/StreetComplete/blob/master/res/graphics/recycling%20icons/shoes.svg" + ] + }, + { + "path": "small_electrical_appliances.svg", + "license": "CC-BY-SA", + "authors": [ + "EmojiOne 2: U+1F50C" + ], + "sources": [ + "https://github.com/streetcomplete/StreetComplete/blob/master/res/graphics/recycling%20icons/small_electrical_appliances.svg" + ] + } +] \ No newline at end of file diff --git a/assets/layers/recycling/newspaper.svg b/assets/layers/recycling/newspaper.svg new file mode 100644 index 0000000000..19ffa9d543 --- /dev/null +++ b/assets/layers/recycling/newspaper.svg @@ -0,0 +1,13 @@ + + + + + + + + + + + + + diff --git a/assets/layers/recycling/paper.svg b/assets/layers/recycling/paper.svg new file mode 100644 index 0000000000..76cb422177 --- /dev/null +++ b/assets/layers/recycling/paper.svg @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/assets/layers/recycling/plastic.svg b/assets/layers/recycling/plastic.svg new file mode 100644 index 0000000000..755c2e865b --- /dev/null +++ b/assets/layers/recycling/plastic.svg @@ -0,0 +1,78 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/assets/layers/recycling/plastic_bottles.svg b/assets/layers/recycling/plastic_bottles.svg new file mode 100644 index 0000000000..6693129729 --- /dev/null +++ b/assets/layers/recycling/plastic_bottles.svg @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/assets/layers/recycling/plastic_packaging.svg b/assets/layers/recycling/plastic_packaging.svg new file mode 100644 index 0000000000..7ae9d650fd --- /dev/null +++ b/assets/layers/recycling/plastic_packaging.svg @@ -0,0 +1,55 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/assets/layers/recycling/recycling-14.svg b/assets/layers/recycling/recycling-14.svg new file mode 100644 index 0000000000..6244f41247 --- /dev/null +++ b/assets/layers/recycling/recycling-14.svg @@ -0,0 +1,40 @@ + + + + + + + + image/svg+xml + + + + + + + + + diff --git a/assets/layers/recycling/recycling.json b/assets/layers/recycling/recycling.json new file mode 100644 index 0000000000..bab282396b --- /dev/null +++ b/assets/layers/recycling/recycling.json @@ -0,0 +1,999 @@ +{ + "id": "recycling", + "name": { + "en": "Recycling", + "nl": "Recycling" + }, + "description": { + "en": "A layer with recycling containers and centres", + "nl": "Een laag met recyclagingcontainers en -centrums" + }, + "source": { + "osmTags": "amenity=recycling" + }, + "calculatedTags": [ + "_waste_amount=Object.values(Object.keys(feat.properties).filter((key) => key.startsWith('recycling:')).reduce((cur, key) => { return Object.assign(cur, { [key]: feat.properties[key] })}, {})).reduce((n, x) => n + (x == \"yes\"), 0);" + ], + "minzoom": 12, + "title": { + "render": { + "en": "Recycling facility", + "nl": "Recyclingfaciliteit" + }, + "mappings": [ + { + "if": "name~*", + "then": { + "*": "{name}", + "en": "Recycling centre", + "nl": "Recyclingcentrum" + } + }, + { + "if": "recycling_type=centre", + "then": { + "en": "Recycling container", + "nl": "Recyclingcontainer" + } + }, + { + "if": "recycling_type=container", + "then": { + "en": "Recycling container", + "nl": "Recyclingcontainer" + } + } + ] + }, + "mapRendering": [ + { + "location": [ + "point", + "centroid" + ], + "icon": { + "render": "circle:white;./assets/layers/recycling/recycling-14.svg", + "mappings": [ + { + "if": { + "and": [ + "_waste_amount=1", + "recycling:batteries=yes" + ] + }, + "then": "circle:white;./assets/layers/recycling/batteries.svg" + }, + { + "if": { + "and": [ + "_waste_amount=1", + "recycling:beverage_cartons=yes" + ] + }, + "then": "circle:white;./assets/layers/recycling/beverage_cartons.svg" + }, + { + "if": { + "and": [ + "_waste_amount=1", + "recycling:cans=yes" + ] + }, + "then": "circle:white;./assets/layers/recycling/cans.svg" + }, + { + "if": { + "and": [ + "_waste_amount=1", + "recycling:clothes=yes" + ] + }, + "then": "circle:white;./assets/layers/recycling/clothes.svg" + }, + { + "if": { + "and": [ + "_waste_amount=1", + "recycling:cooking_oil=yes" + ] + }, + "then": "circle:white;./assets/layers/recycling/cooking_oil.svg" + }, + { + "if": { + "and": [ + "_waste_amount=1", + "recycling:engine_oil=yes" + ] + }, + "then": "circle:white;./assets/layers/recycling/engine_oil.svg" + }, + { + "if": { + "and": [ + "_waste_amount=1", + "recycling:glass=yes" + ] + }, + "then": "circle:white;./assets/layers/recycling/glass.svg" + }, + { + "if": { + "and": [ + "_waste_amount=1", + "recycling:glass_bottles=yes" + ] + }, + "then": "circle:white;./assets/layers/recycling/glass_bottles.svg" + }, + { + "if": { + "and": [ + "_waste_amount=1", + { + "or": [ + "recycling:green_waste=yes", + "recycling:organic=yes" + ] + } + ] + }, + "then": "circle:white;./assets/layers/recycling/garden_waste.svg" + }, + { + "if": { + "and": [ + "_waste_amount=1", + "recycling:newspaper=yes" + ] + }, + "then": "circle:white;./assets/layers/recycling/newspaper.svg" + }, + { + "if": { + "and": [ + "_waste_amount=1", + "recycling:paper=yes" + ] + }, + "then": "circle:white;./assets/layers/recycling/paper.svg" + }, + { + "if": { + "and": [ + "_waste_amount=1", + "recycling:plastic_bottles=yes" + ] + }, + "then": "circle:white;./assets/layers/recycling/plastic_bottles.svg" + }, + { + "if": { + "and": [ + "_waste_amount=1", + "recycling:plastic_packaging=yes" + ] + }, + "then": "circle:white;./assets/layers/recycling/plastic_packaging.svg" + }, + { + "if": { + "and": [ + "_waste_amount=1", + "recycling:plastic=yes" + ] + }, + "then": "circle:white;./assets/layers/recycling/plastic.svg" + }, + { + "if": { + "and": [ + "_waste_amount=1", + "recycling:scrap_metal=yes" + ] + }, + "then": "circle:white;./assets/layers/recycling/scrap_metal.svg" + }, + { + "if": { + "and": [ + "_waste_amount=1", + "recycling:shoes=yes" + ] + }, + "then": "circle:white;./assets/layers/recycling/shoes.svg" + }, + { + "if": { + "and": [ + "_waste_amount=1", + { + "or": [ + "recycling:small_appliances=yes", + "recycling:small_electric_appliances=yes" + ] + } + ] + }, + "then": "circle:white;./assets/layers/recycling/small_electrical_appliances.svg" + }, + { + "if": { + "and": [ + "_waste_amount=1", + "recycling:waste=yes" + ] + }, + "then": "circle:white;./assets/layers/waste_disposal/waste_disposal.svg" + } + ] + }, + "iconBadges": [ + { + "if": { + "and": [ + "_waste_amount>1", + "recycling:batteries=yes" + ] + }, + "then": "circle:white;./assets/layers/recycling/batteries.svg" + }, + { + "if": { + "and": [ + "_waste_amount>1", + "recycling:beverage_cartons=yes" + ] + }, + "then": "circle:white;./assets/layers/recycling/beverage_cartons.svg" + }, + { + "if": { + "and": [ + "_waste_amount>1", + "recycling:cans=yes" + ] + }, + "then": "circle:white;./assets/layers/recycling/cans.svg" + }, + { + "if": { + "and": [ + "_waste_amount>1", + "recycling:clothes=yes" + ] + }, + "then": "circle:white;./assets/layers/recycling/clothes.svg" + }, + { + "if": { + "and": [ + "_waste_amount>1", + "recycling:cooking_oil=yes" + ] + }, + "then": "circle:white;./assets/layers/recycling/cooking_oil.svg" + }, + { + "if": { + "and": [ + "_waste_amount>1", + "recycling:engine_oil=yes" + ] + }, + "then": "circle:white;./assets/layers/recycling/engine_oil.svg" + }, + { + "if": { + "and": [ + "_waste_amount>1", + "recycling:glass=yes" + ] + }, + "then": "circle:white;./assets/layers/recycling/glass.svg" + }, + { + "if": { + "and": [ + "_waste_amount>1", + "recycling:glass_bottles=yes" + ] + }, + "then": "circle:white;./assets/layers/recycling/glass_bottles.svg" + }, + { + "if": { + "and": [ + "_waste_amount>1", + { + "or": [ + "recycling:green_waste=yes", + "recycling:organic=yes" + ] + } + ] + }, + "then": "circle:white;./assets/layers/recycling/garden_waste.svg" + }, + { + "if": { + "and": [ + "_waste_amount>1", + "recycling:newspaper=yes" + ] + }, + "then": "circle:white;./assets/layers/recycling/newspaper.svg" + }, + { + "if": { + "and": [ + "_waste_amount>1", + "recycling:paper=yes" + ] + }, + "then": "circle:white;./assets/layers/recycling/paper.svg" + }, + { + "if": { + "and": [ + "_waste_amount>1", + "recycling:plastic_bottles=yes" + ] + }, + "then": "circle:white;./assets/layers/recycling/plastic_bottles.svg" + }, + { + "if": { + "and": [ + "_waste_amount>1", + "recycling:plastic_packaging=yes" + ] + }, + "then": "circle:white;./assets/layers/recycling/plastic_packaging.svg" + }, + { + "if": { + "and": [ + "_waste_amount>1", + "recycling:plastic=yes" + ] + }, + "then": "circle:white;./assets/layers/recycling/plastic.svg" + }, + { + "if": { + "and": [ + "_waste_amount>1", + "recycling:scrap_metal=yes" + ] + }, + "then": "circle:white;./assets/layers/recycling/scrap_metal.svg" + }, + { + "if": { + "and": [ + "_waste_amount>1", + "recycling:shoes=yes" + ] + }, + "then": "circle:white;./assets/layers/recycling/shoes.svg" + }, + { + "if": { + "and": [ + "_waste_amount>1", + { + "or": [ + "recycling:small_appliances=yes", + "recycling:small_electrical_appliances=yes" + ] + } + ] + }, + "then": "circle:white;./assets/layers/recycling/small_electrical_appliances.svg" + }, + { + "if": { + "and": [ + "_waste_amount>1", + "recycling:waste=yes" + ] + }, + "then": "circle:white;./assets/layers/waste_disposal/waste_disposal.svg" + } + ] + } + ], + "presets": [ + { + "title": { + "en": "recycling container", + "nl": "recycling container" + }, + "tags": [ + "amenity=recycling", + "recycling_type=container" + ] + }, + { + "title": { + "en": "recycling centre", + "nl": "recycling centre" + }, + "tags": [ + "amenity=recycling", + "recycling_type=centre" + ] + } + ], + "tagRenderings": [ + "images", + { + "id": "recycling-type", + "question": { + "en": "What type of recycling is this?", + "nl": "Wat voor soort recycling is dit?" + }, + "mappings": [ + { + "if": "recycling_type=container", + "then": { + "en": "This is a recycling container", + "nl": "Dit is een recyclingcontainer" + } + }, + { + "if": "recycling_type=centre", + "then": { + "en": "This is a recycling centre", + "nl": "Dit is een recyclingcentrum" + } + }, + { + "if": "amenity=waste_disposal", + "then": { + "en": "Waste disposal container for residual waste", + "nl": "Afvalcontainer voor restafval" + }, + "addExtraTags": [ + "recycling:batteries=", + "recycling:beverage_cartons=", + "recycling:cans=", + "recycling:clothes=", + "recycling:cooking_oil=", + "recycling:engine_oil=", + "recycling:green_waste=", + "recycling:organic=", + "recycling:glass_bottles=", + "recycling:glass=", + "recycling:newspaper=", + "recycling:paper=", + "recycling:plastic_bottles=", + "recycling:plastic_packaging=", + "recycling:plastic=", + "recycling:scrap_metal=", + "recycling:shoes=", + "recycling:small_appliances=", + "recycling:small_electrical_appliances=", + "recycling:waste=" + ] + } + ] + }, + { + "id": "recycling-centre-name", + "question": { + "en": "What is the name of this recycling centre?", + "nl": "Wat is de naam van dit recyclagecentrum?" + }, + "render": { + "en": "This recycling centre is named {name}", + "nl": "Dit recyclagecentrum heet {name}" + }, + "freeform": { + "key": "name" + }, + "mappings": [ + { + "if": "noname=yes", + "then": { + "en": "This recycling centre doesn't have a specific name", + "nl": "Dit recyclagecentrum heeft geen specifieke naam" + } + } + ], + "condition": "recycling_type=centre" + }, + { + "id": "container-location", + "question": { + "en": "Where is this container located?", + "nl": "Waar bevindt deze container zich?" + }, + "condition": "recycling_type=container", + "mappings": [ + { + "if": "location=underground", + "then": { + "en": "This is an underground container", + "nl": "Dit is een ondergrondse container" + } + }, + { + "if": "location=indoor", + "then": { + "en": "This container is located indoors", + "nl": "Deze container bevindt zich binnen" + } + }, + { + "if": "location=", + "then": { + "en": "This container is located outdoors", + "nl": "Deze container is buiten" + } + } + ] + }, + { + "id": "recycling-accepts", + "question": { + "en": "What can be recycled here?", + "nl": "Wat kan hier gerecycled worden?" + }, + "multiAnswer": true, + "mappings": [ + { + "if": "recycling:batteries=yes", + "ifnot": "recycling:batteries=", + "then": { + "en": "Batteries can be recycled here", + "nl": "Batterijen kunnen hier gerecycled worden" + }, + "icon": { + "path": "./assets/layers/recycling/batteries.svg", + "class": "medium" + } + }, + { + "if": "recycling:beverage_cartons=yes", + "ifnot": "recycling:beverage_cartons=", + "then": { + "en": "Beverage cartons can be recycled here", + "nl": "Drankpakken kunnen hier gerecycled worden" + }, + "icon": { + "path": "./assets/layers/recycling/beverage_cartons.svg", + "class": "medium" + } + }, + { + "if": "recycling:cans=yes", + "ifnot": "recycling:cans=", + "then": { + "en": "Cans can be recycled here", + "nl": "Blikken kunnen hier gerecycled worden" + }, + "icon": { + "path": "./assets/layers/recycling/cans.svg", + "class": "medium" + } + }, + { + "if": "recycling:clothes=yes", + "ifnot": "recycling:clothes=", + "then": { + "en": "Clothes can be recycled here", + "nl": "Kleren kunnen hier gerecycled worden" + }, + "icon": { + "path": "./assets/layers/recycling/clothes.svg", + "class": "medium" + } + }, + { + "if": "recycling:cooking_oil=yes", + "ifnot": "recycling:cooking_oil=", + "then": { + "en": "Cooking oil can be recycled here", + "nl": "Frituurvet kan hier gerecycled worden" + }, + "icon": { + "path": "./assets/layers/recycling/cooking_oil.svg", + "class": "medium" + } + }, + { + "if": "recycling:engine_oil=yes", + "ifnot": "recycling:engine_oil=", + "then": { + "en": "Engine oil can be recycled here", + "nl": "Motorolie kan hier gerecycled worden" + }, + "icon": { + "path": "./assets/layers/recycling/engine_oil.svg", + "class": "medium" + } + }, + { + "if": "recycling:green_waste=yes", + "ifnot": "recycling:green_waste=", + "then": { + "en": "Green waste can be recycled here", + "nl": "Groen afval kan hier gerecycled worden" + }, + "icon": { + "path": "./assets/layers/recycling/garden_waste.svg", + "class": "medium" + } + }, + { + "if": "recycling:organic=yes", + "ifnot": "recycling:organic=", + "then": { + "en": "Organic waste can be recycled here", + "nl": "Organisch afval kan hier gerecycled worden" + }, + "hideInAnswer": true, + "icon": { + "path": "./assets/layers/recycling/garden_waste.svg", + "class": "medium" + } + }, + { + "if": "recycling:glass_bottles=yes", + "ifnot": "recycling:glass_bottles=", + "then": { + "en": "Glass bottles can be recycled here", + "nl": "Glazen flessen kunnen hier gerecycled worden" + }, + "icon": { + "path": "./assets/layers/recycling/glass_bottles.svg", + "class": "medium" + } + }, + { + "if": "recycling:glass=yes", + "ifnot": "recycling:glass=", + "then": { + "en": "Glass can be recycled here", + "nl": "Glas kan hier gerecycled worden" + }, + "icon": { + "path": "./assets/layers/recycling/glass.svg", + "class": "medium" + } + }, + { + "if": "recycling:newspaper=yes", + "ifnot": "recycling:newspaper=", + "then": { + "en": "Newspapers can be recycled here", + "nl": "Kranten kunnen hier gerecycled worden" + }, + "icon": { + "path": "./assets/layers/recycling/newspaper.svg", + "class": "medium" + } + }, + { + "if": "recycling:paper=yes", + "ifnot": "recycling:paper=", + "then": { + "en": "Paper can be recycled here", + "nl": "Papier kan hier gerecycled worden" + }, + "icon": { + "path": "./assets/layers/recycling/paper.svg", + "class": "medium" + } + }, + { + "if": "recycling:plastic_bottles=yes", + "ifnot": "recycling:plastic_bottles=", + "then": { + "en": "Plastic bottles can be recycled here", + "nl": "Plastic flessen kunnen hier gerecycled worden" + }, + "icon": { + "path": "./assets/layers/recycling/plastic_bottles.svg", + "class": "medium" + } + }, + { + "if": "recycling:plastic_packaging=yes", + "ifnot": "recycling:plastic_packaging=", + "then": { + "en": "Plastic packaging can be recycled here", + "nl": "Plastic verpakking kan hier gerecycled worden" + }, + "icon": { + "path": "./assets/layers/recycling/plastic_packaging.svg", + "class": "medium" + } + }, + { + "if": "recycling:plastic=yes", + "ifnot": "recycling:plastic=", + "then": { + "en": "Plastic can be recycled here", + "nl": "Plastic kan hier gerecycled worden" + }, + "icon": { + "path": "./assets/layers/recycling/plastic.svg", + "class": "medium" + } + }, + { + "if": "recycling:scrap_metal=yes", + "ifnot": "recycling:scrap_metal=", + "then": { + "en": "Scrap metal can be recycled here", + "nl": "Oud metaal kan hier gerecycled worden" + }, + "icon": { + "path": "./assets/layers/recycling/scrap_metal.svg", + "class": "medium" + } + }, + { + "if": "recycling:shoes=yes", + "ifnot": "recycling:shoes=", + "then": { + "en": "Shoes can be recycled here", + "nl": "Schoenen kunnen hier gerecycled worden" + }, + "icon": { + "path": "./assets/layers/recycling/shoes.svg", + "class": "medium" + } + }, + { + "if": "recycling:small_appliances=yes", + "ifnot": "recycling:small_appliances=", + "then": { + "en": "Small electrical appliances can be recycled here", + "nl": "Kleine elektrische apparaten kunnen hier gerecycled worden" + }, + "icon": { + "path": "./assets/layers/recycling/small_electrical_appliances.svg", + "class": "medium" + } + }, + { + "if": "recycling:small_electrical_appliances=yes", + "ifnot": "recycling:small_electrical_appliances=", + "then": { + "en": "Small electrical appliances can be recycled here", + "nl": "Kleine elektrische apparaten kunnen hier gerecycled worden" + }, + "hideInAnswer": true, + "icon": { + "path": "./assets/layers/recycling/small_electrical_appliances.svg", + "class": "medium" + } + }, + { + "if": "recycling:waste=yes", + "ifnot": "recycling:waste=", + "then": { + "en": "Residual waste can be recycled here", + "nl": "Restafval kan hier gerecycled worden" + }, + "icon": { + "path": "./assets/layers/waste_disposal/waste_disposal.svg", + "class": "medium" + }, + "hideInAnswer": "recycling_type=container" + } + ] + }, + { + "id": "operator", + "render": { + "en": "This recycling facility is operated by {operator}", + "nl": "Deze recyclingfaciliteit wordt beheerd door {operator}" + }, + "question": { + "en": "What company operates this recycling facility?", + "nl": "Wat is de beheerder van deze recyclingfaciliteit?" + }, + "freeform": { + "key": "operator", + "type": "string" + } + }, + { + "builtin": [ + "website", + "email", + "phone" + ], + "override": { + "condition": "recycling_type=centre" + } + }, + { + "id": "opening_hours", + "render": "{opening_hours_table()}", + "question": { + "en": "What are the opening hours of this recycling facility?", + "nl": "Wat zijn de openingstijden van deze recyclingfaciliteit?" + }, + "freeform": { + "key": "opening_hours", + "type": "opening_hours" + }, + "mappings": [ + { + "if": "opening_hours=24/7", + "then": { + "en": "24/7", + "nl": "24/7" + } + } + ] + } + ], + "filter": [ + { + "id": "isOpen", + "options": [ + { + "question": { + "en": "Currently open", + "nl": "Op dit moment open" + }, + "osmTags": "_isOpen=yes" + } + ] + }, + { + "id": "recyclingType", + "options": [ + { + "question": { + "en": "All recycling types", + "nl": "Alle recyclingtypes" + } + }, + { + "question": { + "en": "Recycling of batteries", + "nl": "Recycling van batterijen" + }, + "osmTags": "recycling:batteries=yes" + }, + { + "question": { + "en": "Recycling of beverage cartons", + "nl": "Recycling van drankpakken" + }, + "osmTags": "recycling:beverage_cartons=yes" + }, + { + "question": { + "en": "Recycling of cans", + "nl": "Recycling van blikken" + }, + "osmTags": "recycling:cans=yes" + }, + { + "question": { + "en": "Recycling of clothes", + "nl": "Recycling van kleding" + }, + "osmTags": "recycling:clothes=yes" + }, + { + "question": { + "en": "Recycling of cooking oil", + "nl": "Recycling van frituurvet" + }, + "osmTags": "recycling:cooking_oil=yes" + }, + { + "question": { + "en": "Recycling of engine oil", + "nl": "Recycling van motorolie" + }, + "osmTags": "recycling:engine_oil=yes" + }, + { + "question": { + "en": "Recycling of green waste", + "nl": "Recycling van groen afval" + }, + "osmTags": { + "or": [ + "recycling:green_waste=yes", + "recycling:organic=yes" + ] + } + }, + { + "question": { + "en": "Recycling of glass bottles", + "nl": "Recycling van glazen flessen" + }, + "osmTags": "recycling:glass_bottles=yes" + }, + { + "question": { + "en": "Recycling of glass", + "nl": "Recycling van glas" + }, + "osmTags": "recycling:glass=yes" + }, + { + "question": { + "en": "Recycling of newspapers", + "nl": "Recycling van kranten" + }, + "osmTags": "recycling:newspaper=yes" + }, + { + "question": { + "en": "Recycling of paper", + "nl": "Recycling van papier" + }, + "osmTags": "recycling:paper=yes" + }, + { + "question": { + "en": "Recycling of plastic bottles", + "nl": "Recycling van plastic flessen" + }, + "osmTags": "recycling:plastic_bottles=yes" + }, + { + "question": { + "en": "Recycling of plastic packaging", + "nl": "Recycling van plastic verpakking" + }, + "osmTags": "recycling:plastic_packaging=yes" + }, + { + "question": { + "en": "Recycling of plastic", + "nl": "Recycling van plastic" + }, + "osmTags": "recycling:plastic=yes" + }, + { + "question": { + "en": "Recycling of scrap metal", + "nl": "Recycling van oud metaal" + }, + "osmTags": "recycling:scrap_metal=yes" + }, + { + "question": { + "en": "Recycling of small electrical appliances", + "nl": "Recycling van kleine elektrische apparaten" + }, + "osmTags": { + "or": [ + "recycling:small_appliances=yes", + "recycling:small_electrical_appliances=yes" + ] + } + }, + { + "question": { + "en": "Recycling of residual waste", + "nl": "Recycling van restafval" + }, + "osmTags": "recycling:waste=yes" + } + ] + } + ], + "deletion": { + "neededChangesets": 1 + }, + "allowMove": { + "enableRelocation": false, + "enableImproveAccuracy": true + } +} \ No newline at end of file diff --git a/assets/layers/recycling/scrap_metal.svg b/assets/layers/recycling/scrap_metal.svg new file mode 100644 index 0000000000..9ff4dfeeb9 --- /dev/null +++ b/assets/layers/recycling/scrap_metal.svg @@ -0,0 +1,19 @@ + + + + + + + + + + + + + + + + + + + diff --git a/assets/layers/recycling/shoes.svg b/assets/layers/recycling/shoes.svg new file mode 100644 index 0000000000..0a5bd834e4 --- /dev/null +++ b/assets/layers/recycling/shoes.svg @@ -0,0 +1,24 @@ + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/assets/layers/recycling/small_electrical_appliances.svg b/assets/layers/recycling/small_electrical_appliances.svg new file mode 100644 index 0000000000..b5529c91fc --- /dev/null +++ b/assets/layers/recycling/small_electrical_appliances.svg @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/assets/layers/shops/shops.json b/assets/layers/shops/shops.json index b739986fbf..c9c4461bfc 100644 --- a/assets/layers/shops/shops.json +++ b/assets/layers/shops/shops.json @@ -321,6 +321,7 @@ }, "id": "shops-opening_hours" }, + "payment-options", "questions", "reviews" ], diff --git a/assets/layers/slow_roads/slow_road.svg b/assets/layers/slow_roads/slow_road.svg index d4044ac3e6..a633590771 100644 --- a/assets/layers/slow_roads/slow_road.svg +++ b/assets/layers/slow_roads/slow_road.svg @@ -1,17 +1,7 @@ - - - - - - - + + + + + + + \ No newline at end of file diff --git a/assets/layers/slow_roads/slow_roads.json b/assets/layers/slow_roads/slow_roads.json index 88be0f2513..9984d916f9 100644 --- a/assets/layers/slow_roads/slow_roads.json +++ b/assets/layers/slow_roads/slow_roads.json @@ -71,7 +71,11 @@ { "if": "highway=living_street", "then": { - "nl:": "
Dit is een woonerf:
  • Voetgangers mogen hier de volledige breedte van de straat gebruiken
  • Gemotoriseerd verkeer mag maximaal 20km/h rijden
" + "nl:": "
Dit is een woonerf:
  • Voetgangers mogen hier de volledige breedte van de straat gebruiken
  • Gemotoriseerd verkeer mag maximaal 20km/h rijden
" + }, + "icon": { + "path": "./assets/layers/slow_roads/woonerf.svg", + "class": "medium" } }, { @@ -274,5 +278,8 @@ ] } } - ] + ], + "description": { + "en": "All carfree roads" + } } \ No newline at end of file diff --git a/assets/layers/slow_roads/woonerf.svg b/assets/layers/slow_roads/woonerf.svg index 6917461fe1..c026fa216c 100644 --- a/assets/layers/slow_roads/woonerf.svg +++ b/assets/layers/slow_roads/woonerf.svg @@ -1,91 +1,21 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/assets/layers/split_point/split_point.json b/assets/layers/split_point/split_point.json new file mode 100644 index 0000000000..52d9a22a50 --- /dev/null +++ b/assets/layers/split_point/split_point.json @@ -0,0 +1,20 @@ +{ + "id": "split_point", + "description": "Layer rendering the little scissors for the minimap in the 'splitRoadWizard'", + "minzoom": 1, + "source": { + "osmTags": "_split_point=yes" + }, + "name": "Split point", + "title": "Split point", + "mapRendering": [ + { + "location": [ + "point", + "centroid" + ], + "icon": "circle:white;./assets/svg/scissors.svg", + "iconSize": "30,30,center" + } + ] +} \ No newline at end of file diff --git a/assets/layers/sport_pitch/baseball.svg b/assets/layers/sport_pitch/baseball.svg index 0bdd6f2939..b4ee679708 100644 --- a/assets/layers/sport_pitch/baseball.svg +++ b/assets/layers/sport_pitch/baseball.svg @@ -1,72 +1,7 @@ - - - - - - image/svg+xml - - - - - - - - - - - + + + + + + + \ No newline at end of file diff --git a/assets/layers/sport_pitch/basketball.svg b/assets/layers/sport_pitch/basketball.svg index 99face17c8..e67ae7f64e 100644 --- a/assets/layers/sport_pitch/basketball.svg +++ b/assets/layers/sport_pitch/basketball.svg @@ -1,72 +1,7 @@ - - - - - - image/svg+xml - - - - - - - - - - - + + + + + + + \ No newline at end of file diff --git a/assets/layers/sport_pitch/beachvolleyball.svg b/assets/layers/sport_pitch/beachvolleyball.svg index cb1c1e72a7..e61a0003d3 100644 --- a/assets/layers/sport_pitch/beachvolleyball.svg +++ b/assets/layers/sport_pitch/beachvolleyball.svg @@ -1,72 +1,7 @@ - - - - - - image/svg+xml - - - - - - - - - - - + + + + + + + \ No newline at end of file diff --git a/assets/layers/sport_pitch/boules.svg b/assets/layers/sport_pitch/boules.svg index c7db29cdd8..d5790a7e21 100644 --- a/assets/layers/sport_pitch/boules.svg +++ b/assets/layers/sport_pitch/boules.svg @@ -1,84 +1,9 @@ - - - - - - image/svg+xml - - - - - - - - - - - - - + + + + + + + + + \ No newline at end of file diff --git a/assets/layers/sport_pitch/lock.svg b/assets/layers/sport_pitch/lock.svg index a87a195a9e..2d4e2c0324 100644 --- a/assets/layers/sport_pitch/lock.svg +++ b/assets/layers/sport_pitch/lock.svg @@ -1,11 +1,6 @@ - - - - - - + + + + + + \ No newline at end of file diff --git a/assets/layers/sport_pitch/skateboard.svg b/assets/layers/sport_pitch/skateboard.svg index a0a082379a..895237f488 100644 --- a/assets/layers/sport_pitch/skateboard.svg +++ b/assets/layers/sport_pitch/skateboard.svg @@ -1,78 +1,8 @@ - - - - - - image/svg+xml - - - - - - - - - - - - + + + + + + + + \ No newline at end of file diff --git a/assets/layers/sport_pitch/soccer.svg b/assets/layers/sport_pitch/soccer.svg index 0c1616ecdc..454cc841ad 100644 --- a/assets/layers/sport_pitch/soccer.svg +++ b/assets/layers/sport_pitch/soccer.svg @@ -1,72 +1,7 @@ - - - - - - image/svg+xml - - - - - - - - - - - + + + + + + + \ No newline at end of file diff --git a/assets/layers/sport_pitch/sport_pitch.svg b/assets/layers/sport_pitch/sport_pitch.svg index 7f93260994..8252ab908e 100644 --- a/assets/layers/sport_pitch/sport_pitch.svg +++ b/assets/layers/sport_pitch/sport_pitch.svg @@ -1,17 +1,7 @@ - - - - - - - + + + + + + + \ No newline at end of file diff --git a/assets/layers/sport_pitch/table_tennis.svg b/assets/layers/sport_pitch/table_tennis.svg index b70d5336e8..3c233754b3 100644 --- a/assets/layers/sport_pitch/table_tennis.svg +++ b/assets/layers/sport_pitch/table_tennis.svg @@ -1,78 +1,8 @@ - - - - - - image/svg+xml - - - - - - - - - - - - + + + + + + + + \ No newline at end of file diff --git a/assets/layers/sport_pitch/tennis.svg b/assets/layers/sport_pitch/tennis.svg index bdf15bf9a9..83a32373e3 100644 --- a/assets/layers/sport_pitch/tennis.svg +++ b/assets/layers/sport_pitch/tennis.svg @@ -1,78 +1,8 @@ - - - - - - image/svg+xml - - - - - - - - - - - - + + + + + + + + \ No newline at end of file diff --git a/assets/layers/sport_pitch/volleyball.svg b/assets/layers/sport_pitch/volleyball.svg index cb1c1e72a7..e61a0003d3 100644 --- a/assets/layers/sport_pitch/volleyball.svg +++ b/assets/layers/sport_pitch/volleyball.svg @@ -1,72 +1,7 @@ - - - - - - image/svg+xml - - - - - - - - - - - + + + + + + + \ No newline at end of file diff --git a/assets/layers/street_lamps/bent_pole_1.svg b/assets/layers/street_lamps/bent_pole_1.svg index c702d8b440..80db7bd068 100644 --- a/assets/layers/street_lamps/bent_pole_1.svg +++ b/assets/layers/street_lamps/bent_pole_1.svg @@ -1,99 +1,8 @@ - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - + + + + + + + + \ No newline at end of file diff --git a/assets/layers/street_lamps/bent_pole_2.svg b/assets/layers/street_lamps/bent_pole_2.svg index f015028aa1..6368637091 100644 --- a/assets/layers/street_lamps/bent_pole_2.svg +++ b/assets/layers/street_lamps/bent_pole_2.svg @@ -1,137 +1,10 @@ - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + \ No newline at end of file diff --git a/assets/layers/street_lamps/straight_pole.svg b/assets/layers/street_lamps/straight_pole.svg index 38c0300415..e0e849d465 100644 --- a/assets/layers/street_lamps/straight_pole.svg +++ b/assets/layers/street_lamps/straight_pole.svg @@ -1,159 +1,15 @@ - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/assets/layers/street_lamps/street_lamp.svg b/assets/layers/street_lamps/street_lamp.svg index 2942456b4e..4d912d7c68 100644 --- a/assets/layers/street_lamps/street_lamp.svg +++ b/assets/layers/street_lamps/street_lamp.svg @@ -1,6 +1,23 @@ - - - - + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/assets/layers/street_lamps/street_lamps.json b/assets/layers/street_lamps/street_lamps.json index a880d499b4..401b72f92f 100644 --- a/assets/layers/street_lamps/street_lamps.json +++ b/assets/layers/street_lamps/street_lamps.json @@ -48,7 +48,7 @@ "tags": [ "highway=street_lamp" ], - "preciseInput": true + "preciseInput": {} } ], "tagRenderings": [ @@ -366,9 +366,12 @@ } } ], - "deletion": true, + "deletion": {}, "allowMove": { "enableImproveAccuracy": true, "enableRelocation": false + }, + "description": { + "en": "A layer showing street lights" } } \ No newline at end of file diff --git a/assets/layers/surveillance_camera/surveillance_camera.json b/assets/layers/surveillance_camera/surveillance_camera.json index 637192b723..a6a2f31b99 100644 --- a/assets/layers/surveillance_camera/surveillance_camera.json +++ b/assets/layers/surveillance_camera/surveillance_camera.json @@ -459,7 +459,22 @@ "man_made=surveillance", "surveillance:type=camera" ], - "title": "Surveillance camera" + "title": { + "en": "surveillance camera" + } + }, + { + "tags": [ + "man_made=surveillance", + "surveillance:type=camera", + "camera:mount=wall" + ], + "title": { + "en": "surveillance camera mounted on a wall" + }, + "preciseInput": { + "snapToLayer": "walls_and_buildings" + } } ], "mapRendering": [ @@ -521,5 +536,8 @@ "render": "8" } } - ] + ], + "description": { + "en": "This layer shows surveillance cameras and allows a contributor to update information and add new cameras" + } } \ No newline at end of file diff --git a/assets/layers/toilet/toilet.json b/assets/layers/toilet/toilet.json index b6b280bf31..e74afb0896 100644 --- a/assets/layers/toilet/toilet.json +++ b/assets/layers/toilet/toilet.json @@ -25,31 +25,23 @@ "presets": [ { "title": { - "en": "toilet", - "de": "toilette", - "fr": "toilettes", - "nl": "toilet", - "ru": "tуалет", - "it": "servizi igienici" + "en": "public toilet", + "de": "öffentlich zugängliche Toilette", + "fr": "toilette publique", + "nl": "publiek toilet", + "ru": "общественный туалет ", + "it": "servizi igienici aperti al pubblico" }, "tags": [ "amenity=toilets" - ], - "description": { - "en": "A publicly accessible toilet or restroom", - "de": "Eine öffentlich zugängliche Toilette", - "fr": "Des toilettes", - "nl": "Een publieke toilet", - "it": "Servizi igienici aperti al pubblico", - "ru": "Туалет или комната отдыха со свободным доступом" - } + ] }, { "title": { "en": "toilets with wheelchair accessible toilet", "de": "toiletten mit rollstuhlgerechter Toilette", "fr": "toilettes accessible aux personnes à mobilité réduite", - "nl": "een rolstoeltoegankelijke toilet", + "nl": "rolstoeltoegankelijke, publiek toilet", "it": "servizi igienici accessibili per persone in sedia a rotelle", "ru": "tуалет с доступом для пользователей кресел-колясок" }, @@ -470,8 +462,8 @@ ] } }, -"level", -"description" + "level", + "description" ], "filter": [ { @@ -581,5 +573,9 @@ "centroid" ] } - ] -} + ], + "description": { + "en": "A layer showing (public) toilets", + "nl": "Een laag die publieke toiletten toont" + } +} \ No newline at end of file diff --git a/assets/layers/toilet/toilets.svg b/assets/layers/toilet/toilets.svg index 6723f04e35..02ade60d58 100644 --- a/assets/layers/toilet/toilets.svg +++ b/assets/layers/toilet/toilets.svg @@ -1,81 +1,7 @@ - - - - - - - image/svg+xml - - - - - - - - - - - - - - + + + + + + + \ No newline at end of file diff --git a/assets/layers/toilet/urinal.svg b/assets/layers/toilet/urinal.svg index 21b115ee0b..0b6579e1f5 100644 --- a/assets/layers/toilet/urinal.svg +++ b/assets/layers/toilet/urinal.svg @@ -1,61 +1,13 @@ - -image/svg+xml - - - - - - - - - + + + + + + + + + + + + + \ No newline at end of file diff --git a/assets/layers/toilet/wheelchair.svg b/assets/layers/toilet/wheelchair.svg index 2c191b1905..e6ccd1d1a3 100644 --- a/assets/layers/toilet/wheelchair.svg +++ b/assets/layers/toilet/wheelchair.svg @@ -1,71 +1,8 @@ - - - -image/svg+xml - - - - - - - - \ No newline at end of file + + + + + + + + \ No newline at end of file diff --git a/assets/layers/trail/pushchair.svg b/assets/layers/trail/pushchair.svg index 8e209cd35b..4f3ca7261e 100644 --- a/assets/layers/trail/pushchair.svg +++ b/assets/layers/trail/pushchair.svg @@ -1,58 +1,15 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/assets/layers/trail/trail.json b/assets/layers/trail/trail.json index 4ff87d1053..0ec5f307b4 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": { @@ -12,9 +13,10 @@ "and": [ { "or": [ - "route=hiking", - "route=bycicle", - "route=horse" + "route~.*foot.*", + "route~.*hiking.*", + "route~.*bycicle.*", + "route~.*horse.*" ] } ] @@ -25,7 +27,8 @@ "en": "Trail", "nl": "Wandeltocht", "ru": "Тропа", - "de": "Wanderweg" + "de": "Wanderweg", + "fr": "Sentier" }, "mappings": [ { @@ -74,7 +77,11 @@ ] }, "then": { - "nl": "Dit gebied wordt beheerd door Natuurpunt" + "nl": "Dit gebied wordt beheerd door Natuurpunt" + }, + "icon": { + "path": "./assets/themes/buurtnatuur/Natuurpunt.jpg", + "class": "small" } }, { @@ -84,9 +91,13 @@ ] }, "then": { - "nl": "Dit gebied wordt beheerd door {operator}" + "nl": "Dit gebied wordt beheerd door {operator}" }, - "hideInAnswer": true + "hideInAnswer": true, + "icon": { + "path": "./assets/themes/buurtnatuur/Natuurpunt.jpg", + "class": "small" + } } ], "id": "Operator tag" diff --git a/assets/layers/trail/trail.svg b/assets/layers/trail/trail.svg index e0c6a65685..678c600c5e 100644 --- a/assets/layers/trail/trail.svg +++ b/assets/layers/trail/trail.svg @@ -1,49 +1,19 @@ - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/assets/layers/trail/wheelchair.svg b/assets/layers/trail/wheelchair.svg index 929ea6c401..719c5fd260 100644 --- a/assets/layers/trail/wheelchair.svg +++ b/assets/layers/trail/wheelchair.svg @@ -1,77 +1,9 @@ - - - -image/svg+xml - - - - - - - - \ No newline at end of file + + + + + + + + + \ No newline at end of file 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 568f3f10aa..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,16 +1,18 @@ - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/assets/layers/tree_node/tree_node.json b/assets/layers/tree_node/tree_node.json index b7e2201a49..ae1696f06f 100644 --- a/assets/layers/tree_node/tree_node.json +++ b/assets/layers/tree_node/tree_node.json @@ -30,15 +30,7 @@ { "if": "name~*", "then": { - "nl": "{name}", - "en": "{name}", - "ca": "{name}", - "de": "{name}", - "fr": "{name}", - "it": "{name}", - "ru": "{name}", - "id": "{name}", - "eo": "{name}" + "*": "{name}" } } ] @@ -95,11 +87,15 @@ ] }, "then": { - "nl": "\"\"/ Loofboom", - "en": "\"\"/ Broadleaved", - "it": "\"\"/ Latifoglia", - "fr": "\"\"/ Feuillu", - "de": "\"\"/ Laubbaum" + "nl": "Loofboom", + "en": "Broadleaved", + "it": "Latifoglia", + "fr": "Feuillu", + "de": "Laubbaum" + }, + "icon": { + "path": "./assets/themes/trees/broadleaved.svg", + "class": "small" } }, { @@ -109,11 +105,15 @@ ] }, "then": { - "nl": "\"\"/ Naaldboom", - "en": "\"\"/ Needleleaved", - "it": "\"\"/ Aghifoglia", - "fr": "\"\"/ Résineux", - "de": "\"\"/ Nadelbaum" + "nl": "Naaldboom", + "en": "Needleleaved", + "it": "Aghifoglia", + "fr": "Résineux", + "de": "Nadelbaum" + }, + "icon": { + "path": "./assets/themes/trees/needleleaved.svg", + "class": "small" } }, { @@ -123,13 +123,17 @@ ] }, "then": { - "nl": "\"\"/ Permanent bladloos", - "en": "\"\"/ Permanently leafless", - "it": "\"\"/ Privo di foglie (permanente)", - "fr": "\"\"/ Sans feuilles (Permanent)", - "de": "\"\"/ Dauerhaft blattlos" + "nl": "Permanent bladloos", + "en": "Permanently leafless", + "it": "Privo di foglie (permanente)", + "fr": "Sans feuilles (Permanent)", + "de": "Dauerhaft blattlos" }, - "hideInAnswer": true + "hideInAnswer": true, + "icon": { + "path": "./assets/themes/trees/leafless.svg", + "class": "small" + } } ] }, @@ -373,11 +377,15 @@ ] }, "then": { - "nl": "\"\"/ Erkend als houtig erfgoed door Onroerend Erfgoed Vlaanderen", - "en": "\"\"/ Registered as heritage by Onroerend Erfgoed Flanders", - "it": "\"\"/Registrato come patrimonio da Onroerend Erfgoed Flanders", - "fr": "\"\"/ Fait partie du patrimoine par Onroerend Erfgoed", - "de": "\"\"/ Als Denkmal registriert von der Onroerend Erfgoed Flandern" + "nl": "Erkend als houtig erfgoed door Onroerend Erfgoed Vlaanderen", + "en": "Registered as heritage by Onroerend Erfgoed Flanders", + "it": "Registrato come patrimonio da Onroerend Erfgoed Flanders", + "fr": "Fait partie du patrimoine par Onroerend Erfgoed", + "de": "Als Denkmal registriert von der Onroerend Erfgoed Flandern" + }, + "icon": { + "path": "./assets/layers/tree_node/Onroerend_Erfgoed_logo_without_text.svg", + "class": "small" } }, { @@ -619,5 +627,8 @@ "centroid" ] } - ] + ], + "description": { + "en": "A layer showing trees" + } } \ No newline at end of file diff --git a/assets/layers/type_node/type_node.json b/assets/layers/type_node/type_node.json index 4609041eda..7f9228a510 100644 --- a/assets/layers/type_node/type_node.json +++ b/assets/layers/type_node/type_node.json @@ -3,7 +3,8 @@ "description": "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.", "minzoom": 18, "source": { - "osmTags": "id~node/.*" + "osmTags": "id~node/.*", + "maxCacheAge": 0 }, "mapRendering": null, "name": "All OSM Nodes", diff --git a/assets/layers/viewpoint/viewpoint.svg b/assets/layers/viewpoint/viewpoint.svg index def2d9ebc3..720cb95a6b 100644 --- a/assets/layers/viewpoint/viewpoint.svg +++ b/assets/layers/viewpoint/viewpoint.svg @@ -1,81 +1,7 @@ - - - - - - - image/svg+xml - - - - - - - - - - - - - - + + + + + + + \ No newline at end of file diff --git a/assets/layers/village_green/village_green.json b/assets/layers/village_green/village_green.json index 061ea1612a..c078dbfecd 100644 --- a/assets/layers/village_green/village_green.json +++ b/assets/layers/village_green/village_green.json @@ -44,5 +44,8 @@ "color": "#937f20", "width": "1" } - ] + ], + "description": { + "en": "A layer showing village-green (which are communal green areas, but not quite parks\"" + } } \ No newline at end of file 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/walls_and_buildings/walls_and_buildings.json b/assets/layers/walls_and_buildings/walls_and_buildings.json new file mode 100644 index 0000000000..b7a9e116a8 --- /dev/null +++ b/assets/layers/walls_and_buildings/walls_and_buildings.json @@ -0,0 +1,42 @@ +{ + "id": "walls_and_buildings", + "minzoom": 18, + "title": { + "render": { + "en": "Wall or building" + } + }, + "description": { + "en": "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." + }, + "source": { + "osmTags": { + "or": [ + "barrier=wall", + "building~*" + ] + } + }, + "passAllFeatures": true, + "shownByDefault": false, + "mapRendering": [ + { + "color": { + "render": "#fff" + }, + "fill": "no", + "width": { + "render": "3" + } + }, + { + "color": { + "render": "#333" + }, + "fill": "no", + "width": { + "render": "2" + } + } + ] +} \ No newline at end of file diff --git a/assets/layers/waste_basket/waste_basket.json b/assets/layers/waste_basket/waste_basket.json index 49a365d2be..d78595b87e 100644 --- a/assets/layers/waste_basket/waste_basket.json +++ b/assets/layers/waste_basket/waste_basket.json @@ -86,6 +86,14 @@ "nl": "Een vuilnisbak voor injectienaalden en andere scherpe voorwerpen", "de": "Ein Abfalleimer für Nadeln und andere scharfe Gegenstände" } + }, + { + "if": "waste=plastic", + "then": { + "en": "A waste basket for plastic", + "nl": "Een vuilnisbak voor plastic", + "de": "Ein Abfalleimer für Plastik" + } } ] }, @@ -126,7 +134,7 @@ }, "then": { "en": "This waste basket does not have a dispenser for (dog) excrement bags", - "nl": "Deze vuilnisbak heeft geenverdeler voor hondenpoepzakjes", + "nl": "Deze vuilnisbak heeft geen verdeler voor hondenpoepzakjes", "de": "Dieser Abfalleimer hat keinen Spender für (Hunde-)Kotbeutel" } }, @@ -134,10 +142,10 @@ "if": "vending=", "then": { "en": "This waste basket does not have a dispenser for (dog) excrement bags", - "nl": "Deze vuilnisbaak heeft waarschijnlijk geen verdeler voor hondenpoepzakjes", + "nl": "Deze vuilnisbak heeft waarschijnlijk geen verdeler voor hondenpoepzakjes", "de": "Dieser Abfalleimer hat keinen Spender für (Hunde-)Kotbeutel" }, - "hideInAnwer": true + "hideInAnswer": true } ] } @@ -159,6 +167,81 @@ } } ], + "filter": [ + { + "id": "waste-type", + "options": [ + { + "question": { + "en": "All types", + "nl": "Alle soorten", + "de": "Alle Typen" + } + }, + { + "question": { + "en": "Waste basket for cigarettes", + "nl": "Vuilnisbak voor sigarettenpeuken", + "de": "Mülleimer für Zigaretten" + }, + "osmTags": "waste~.*cigarettes.*" + }, + { + "question": { + "en": "Waste basket for drugs", + "nl": "Vuilnisbak voor (vervallen) medicatie en drugs", + "de": "Mülleimer für Drogen" + }, + "osmTags": "waste~.*drugs.*" + }, + { + "question": { + "en": "Waste basket for dog excrement", + "nl": "Vuilnisbak voor hondenuitwerpselen", + "de": "Mülleimer für Hundekot" + }, + "osmTags": "waste~.*dog_excrement.*" + }, + { + "question": { + "en": "Waste basket for trash", + "nl": "Vuilnisbak voor zwerfvuil", + "de": "Mülleimer für allgemeinen Müll" + }, + "osmTags": "waste~.*trash.*" + }, + { + "question": { + "en": "Waste basket for sharps", + "nl": "Vuilnisbak voor injectienaalden en andere scherpe voorwerpen", + "de": "Mülleimer für Nadeln und andere scharfe Gegenstände" + }, + "osmTags": "waste~.*sharps.*" + }, + { + "question": { + "en": "Waste basket for plastic", + "nl": "Vuilnisbak voor plastic", + "de": "Mülleimer für Plastik" + }, + "osmTags": "waste~.*plastic.*" + } + ] + }, + { + "id": "waste-vending", + "options": [ + { + "question": { + "en": "Waste basket with dispenser for (dog) excrement bags", + "nl": "Vuilnisbak met verdeler voor hondenpoepzakjes", + "de": "Abfalleimer mit Spender für (Hunde-)Kotbeutel" + }, + "osmTags": "vending=dog_excrement_bag" + } + ] + } + ], "deletion": { "softDeletionTags": { "and": [ diff --git a/assets/layers/waste_disposal/license_info.json b/assets/layers/waste_disposal/license_info.json new file mode 100644 index 0000000000..aeeec767e4 --- /dev/null +++ b/assets/layers/waste_disposal/license_info.json @@ -0,0 +1,12 @@ +[ + { + "path": "waste_disposal.svg", + "license": "CC0", + "authors": [ + "kocio-pl" + ], + "sources": [ + "https://github.com/gravitystorm/openstreetmap-carto/blob/master/symbols/amenity/waste_disposal.svg" + ] + } +] \ No newline at end of file diff --git a/assets/layers/waste_disposal/waste_disposal.json b/assets/layers/waste_disposal/waste_disposal.json new file mode 100644 index 0000000000..a589d75d1c --- /dev/null +++ b/assets/layers/waste_disposal/waste_disposal.json @@ -0,0 +1,119 @@ +{ + "id": "waste_disposal", + "name": { + "en": "Waste Disposal Bins" + }, + "description": { + "en": "Waste Disposal Bin, medium to large bin for disposal of (household) waste" + }, + "source": { + "osmTags": "amenity=waste_disposal" + }, + "minzoom": 18, + "minzoomVisible": 18, + "title": { + "render": { + "en": "Waste Disposal" + } + }, + "mapRendering": [ + { + "location": [ + "point", + "centroid" + ], + "icon": "circle:white;./assets/layers/waste_disposal/waste_disposal.svg" + } + ], + "presets": [ + { + "title": { + "en": "Waste Disposal Bin" + }, + "tags": [ + "amenity=waste_disposal" + ], + "description": { + "en": "Medium to large bin for disposal of (household) waste" + } + } + ], + "tagRenderings": [ + { + "id": "access", + "render": { + "en": "Access: {access}" + }, + "question": { + "en": "Who can use this waste disposal bin?" + }, + "freeform": { + "key": "access", + "type": "string" + }, + "mappings": [ + { + "if": "access=yes", + "then": { + "en": "This bin can be used by anyone" + } + }, + { + "if": "access=no", + "then": { + "en": "This bin is private" + } + }, + { + "if": "access=residents", + "then": { + "en": "This bin is only for residents" + } + } + ] + }, + { + "id": "disposal-location", + "question": { + "en": "Where is this container located?", + "nl": "Waar bevindt deze container zich?" + }, + "mappings": [ + { + "if": "location=underground", + "then": { + "en": "This is an underground container", + "nl": "Dit is een ondergrondse container" + } + }, + { + "if": "location=indoor", + "then": { + "en": "This container is located indoors", + "nl": "Deze container bevindt zich binnen" + } + }, + { + "if": "location=", + "then": { + "en": "This container is located outdoors", + "nl": "Deze container is buiten" + } + } + ] + } + ], + "filter": [ + { + "id": "public-access", + "options": [ + { + "question": { + "en": "Only public access" + }, + "osmTags": "access=yes" + } + ] + } + ] +} \ No newline at end of file diff --git a/assets/layers/waste_disposal/waste_disposal.svg b/assets/layers/waste_disposal/waste_disposal.svg new file mode 100644 index 0000000000..db755349c1 --- /dev/null +++ b/assets/layers/waste_disposal/waste_disposal.svg @@ -0,0 +1,31 @@ + + + + + + image/svg+xml + + + + + + + + diff --git a/assets/layers/watermill/watermill.json b/assets/layers/watermill/watermill.json index 2654f82325..b69a4d4de6 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": { @@ -145,7 +146,11 @@ ] }, "then": { - "nl": "Dit gebied wordt beheerd door Natuurpunt" + "nl": "Dit gebied wordt beheerd door Natuurpunt" + }, + "icon": { + "path": "./assets/themes/buurtnatuur/Natuurpunt.jpg", + "class": "small" } }, { @@ -155,9 +160,13 @@ ] }, "then": { - "nl": "Dit gebied wordt beheerd door {operator}" + "nl": "Dit gebied wordt beheerd door {operator}" }, - "hideInAnswer": true + "hideInAnswer": true, + "icon": { + "path": "./assets/themes/buurtnatuur/Natuurpunt.jpg", + "class": "small" + } } ], "id": "Operator tag" diff --git a/assets/layers/watermill/watermill.svg b/assets/layers/watermill/watermill.svg index 1fc2e695cb..86c14d61da 100644 --- a/assets/layers/watermill/watermill.svg +++ b/assets/layers/watermill/watermill.svg @@ -1,11 +1,6 @@ - - - - - - - - - + + + + + \ No newline at end of file diff --git a/assets/layoutconfigmeta.json b/assets/layoutconfigmeta.json new file mode 100644 index 0000000000..c596f78b9a --- /dev/null +++ b/assets/layoutconfigmeta.json @@ -0,0 +1,6114 @@ +[ + { + "path": [], + "type": "object" + }, + { + "path": [ + "id" + ], + "type": "string" + }, + { + "path": [ + "credits" + ], + "type": "string" + }, + { + "path": [ + "maintainer" + ], + "type": "string" + }, + { + "path": [ + "version" + ], + "type": "string" + }, + { + "path": [ + "mustHaveLanguage" + ], + "type": "array" + }, + { + "path": [ + "title" + ] + }, + { + "path": [ + "shortDescription" + ] + }, + { + "path": [ + "description" + ] + }, + { + "path": [ + "descriptionTail" + ] + }, + { + "path": [ + "icon" + ], + "typeHint": "icon", + "type": "string" + }, + { + "path": [ + "socialImage" + ], + "typeHint": "image", + "type": "string" + }, + { + "path": [ + "startZoom" + ], + "type": "number" + }, + { + "path": [ + "widenFactor" + ], + "type": "number" + }, + { + "path": [ + "overpassMaxZoom" + ], + "type": "number" + }, + { + "path": [ + "osmApiTileSize" + ], + "type": "number" + }, + { + "path": [ + "overrideAll" + ] + }, + { + "path": [ + "defaultBackgroundId" + ], + "type": "string" + }, + { + "path": [ + "tileLayerSources" + ], + "type": "array" + }, + { + "path": [ + "tileLayerSources" + ], + "type": "object" + }, + { + "path": [ + "tileLayerSources", + "id" + ], + "type": "string" + }, + { + "path": [ + "tileLayerSources", + "source" + ], + "type": "string" + }, + { + "path": [ + "tileLayerSources", + "isOverlay" + ], + "type": "boolean" + }, + { + "path": [ + "tileLayerSources", + "name" + ] + }, + { + "path": [ + "tileLayerSources", + "minZoom" + ], + "type": "number" + }, + { + "path": [ + "tileLayerSources", + "maxZoom" + ], + "type": "number" + }, + { + "path": [ + "tileLayerSources", + "defaultState" + ], + "type": "boolean" + }, + { + "path": [ + "layers" + ], + "type": "array" + }, + { + "path": [ + "layers" + ], + "type": "object" + }, + { + "path": [ + "layers", + "id" + ], + "type": "string" + }, + { + "path": [ + "layers", + "name" + ] + }, + { + "path": [ + "layers", + "description" + ] + }, + { + "path": [ + "layers", + "source" + ], + "type": [ + { + "allOf": [ + { + "type": "object", + "properties": { + "osmTags": { + "description": "Every source must set which tags have to be present in order to load the given layer.", + "anyOf": [ + { + "$ref": "#/definitions/AndOrTagConfigJson" + }, + { + "type": "string" + } + ] + }, + "maxCacheAge": { + "description": "The maximum amount of seconds that a tile is allowed to linger in the cache", + "type": "number" + } + }, + "required": [ + "osmTags" + ] + }, + { + "type": "object", + "properties": { + "overpassScript": { + "type": "string" + } + } + } + ] + }, + { + "allOf": [ + { + "type": "object", + "properties": { + "osmTags": { + "description": "Every source must set which tags have to be present in order to load the given layer.", + "anyOf": [ + { + "$ref": "#/definitions/AndOrTagConfigJson" + }, + { + "type": "string" + } + ] + }, + "maxCacheAge": { + "description": "The maximum amount of seconds that a tile is allowed to linger in the cache", + "type": "number" + } + }, + "required": [ + "osmTags" + ] + }, + { + "type": "object", + "properties": { + "geoJson": { + "description": "The actual source of the data to load, if loaded via geojson.\n\n# A single geojson-file\nsource: {geoJson: \"https://my.source.net/some-geo-data.geojson\"}\n fetches a geojson from a third party source\n\n# A tiled geojson source\nsource: {geoJson: \"https://my.source.net/some-tile-geojson-{layer}-{z}-{x}-{y}.geojson\", geoJsonZoomLevel: 14}\n to use a tiled geojson source. The web server must offer multiple geojsons. {z}, {x} and {y} are substituted by the location; {layer} is substituted with the id of the loaded layer\n\nSome API's use a BBOX instead of a tile, this can be used by specifying {y_min}, {y_max}, {x_min} and {x_max}", + "type": "string" + }, + "geoJsonZoomLevel": { + "description": "To load a tiled geojson layer, set the zoomlevel of the tiles", + "type": "number" + }, + "isOsmCache": { + "description": "Indicates that the upstream geojson data is OSM-derived.\nUseful for e.g. merging or for scripts generating this cache", + "type": "boolean" + }, + "mercatorCrs": { + "description": "Some API's use a mercator-projection (EPSG:900913) instead of WGS84. Set the flag `mercatorCrs: true` in the source for this", + "type": "boolean" + }, + "idKey": { + "description": "Some API's have an id-field, but give it a different name.\nSetting this key will rename this field into 'id'", + "type": "string" + } + }, + "required": [ + "geoJson" + ] + } + ] + } + ] + }, + { + "path": [ + "layers", + "calculatedTags" + ], + "type": "array" + }, + { + "path": [ + "layers", + "doNotDownload" + ], + "type": "boolean" + }, + { + "path": [ + "layers", + "isShown" + ], + "type": "object" + }, + { + "path": [ + "layers", + "isShown", + "id" + ], + "type": "string" + }, + { + "path": [ + "layers", + "isShown", + "group" + ], + "type": "string" + }, + { + "path": [ + "layers", + "isShown", + "labels" + ], + "type": "array" + }, + { + "path": [ + "layers", + "isShown", + "render" + ], + "typeHint": "rendered" + }, + { + "path": [ + "layers", + "isShown", + "question" + ] + }, + { + "path": [ + "layers", + "isShown", + "condition" + ], + "type": [ + { + "$ref": "#/definitions/AndOrTagConfigJson" + }, + { + "type": "string" + } + ] + }, + { + "path": [ + "layers", + "isShown", + "freeform" + ], + "type": "object" + }, + { + "path": [ + "layers", + "isShown", + "freeform", + "key" + ], + "type": "string" + }, + { + "path": [ + "layers", + "isShown", + "freeform", + "type" + ], + "type": "string" + }, + { + "path": [ + "layers", + "isShown", + "freeform", + "placeholder" + ] + }, + { + "path": [ + "layers", + "isShown", + "freeform", + "helperArgs" + ], + "type": "array" + }, + { + "path": [ + "layers", + "isShown", + "freeform", + "addExtraTags" + ], + "type": "array" + }, + { + "path": [ + "layers", + "isShown", + "freeform", + "inline" + ], + "type": "boolean" + }, + { + "path": [ + "layers", + "isShown", + "freeform", + "default" + ], + "type": "string" + }, + { + "path": [ + "layers", + "isShown", + "multiAnswer" + ], + "type": "boolean" + }, + { + "path": [ + "layers", + "isShown", + "mappings" + ], + "type": "array" + }, + { + "path": [ + "layers", + "isShown", + "mappings", + "if" + ], + "type": [ + { + "$ref": "#/definitions/AndOrTagConfigJson" + }, + { + "type": "string" + } + ] + }, + { + "path": [ + "layers", + "isShown", + "mappings", + "then" + ], + "typeHint": "rendered" + }, + { + "path": [ + "layers", + "isShown", + "mappings", + "icon" + ], + "typeHint": "icon", + "type": [ + { + "type": "object", + "properties": { + "path": { + "description": "The path to the icon\nType: icon", + "type": "string" + }, + "class": { + "description": "A hint to mapcomplete on how to render this icon within the mapping.\nThis is translated to 'mapping-icon-', so defining your own in combination with a custom CSS is possible (but discouraged)", + "type": "string" + } + }, + "required": [ + "class", + "path" + ] + }, + { + "type": "string" + } + ] + }, + { + "path": [ + "layers", + "isShown", + "mappings", + "icon", + "path" + ], + "typeHint": "icon", + "type": "string" + }, + { + "path": [ + "layers", + "isShown", + "mappings", + "icon", + "class" + ], + "type": "string" + }, + { + "path": [ + "layers", + "isShown", + "mappings", + "hideInAnswer" + ], + "type": [ + { + "$ref": "#/definitions/AndOrTagConfigJson" + }, + { + "type": [ + "string", + "boolean" + ] + } + ] + }, + { + "path": [ + "layers", + "isShown", + "mappings", + "ifnot" + ], + "type": [ + { + "$ref": "#/definitions/AndOrTagConfigJson" + }, + { + "type": "string" + } + ] + }, + { + "path": [ + "layers", + "isShown", + "mappings", + "addExtraTags" + ], + "type": "array" + }, + { + "path": [ + "layers", + "forceLoad" + ], + "type": "boolean" + }, + { + "path": [ + "layers", + "minzoom" + ], + "type": "number" + }, + { + "path": [ + "layers", + "shownByDefault" + ], + "type": "boolean" + }, + { + "path": [ + "layers", + "minzoomVisible" + ], + "type": "number" + }, + { + "path": [ + "layers", + "title" + ], + "type": [ + { + "$ref": "#/definitions/TagRenderingConfigJson" + }, + { + "type": "string" + } + ] + }, + { + "path": [ + "layers", + "title" + ], + "type": "object" + }, + { + "path": [ + "layers", + "title", + "id" + ], + "type": "string" + }, + { + "path": [ + "layers", + "title", + "group" + ], + "type": "string" + }, + { + "path": [ + "layers", + "title", + "labels" + ], + "type": "array" + }, + { + "path": [ + "layers", + "title", + "render" + ], + "typeHint": "rendered" + }, + { + "path": [ + "layers", + "title", + "question" + ] + }, + { + "path": [ + "layers", + "title", + "condition" + ], + "type": [ + { + "$ref": "#/definitions/AndOrTagConfigJson" + }, + { + "type": "string" + } + ] + }, + { + "path": [ + "layers", + "title", + "freeform" + ], + "type": "object" + }, + { + "path": [ + "layers", + "title", + "freeform", + "key" + ], + "type": "string" + }, + { + "path": [ + "layers", + "title", + "freeform", + "type" + ], + "type": "string" + }, + { + "path": [ + "layers", + "title", + "freeform", + "placeholder" + ] + }, + { + "path": [ + "layers", + "title", + "freeform", + "helperArgs" + ], + "type": "array" + }, + { + "path": [ + "layers", + "title", + "freeform", + "addExtraTags" + ], + "type": "array" + }, + { + "path": [ + "layers", + "title", + "freeform", + "inline" + ], + "type": "boolean" + }, + { + "path": [ + "layers", + "title", + "freeform", + "default" + ], + "type": "string" + }, + { + "path": [ + "layers", + "title", + "multiAnswer" + ], + "type": "boolean" + }, + { + "path": [ + "layers", + "title", + "mappings" + ], + "type": "array" + }, + { + "path": [ + "layers", + "title", + "mappings", + "if" + ], + "type": [ + { + "$ref": "#/definitions/AndOrTagConfigJson" + }, + { + "type": "string" + } + ] + }, + { + "path": [ + "layers", + "title", + "mappings", + "then" + ], + "typeHint": "rendered" + }, + { + "path": [ + "layers", + "title", + "mappings", + "icon" + ], + "typeHint": "icon", + "type": [ + { + "type": "object", + "properties": { + "path": { + "description": "The path to the icon\nType: icon", + "type": "string" + }, + "class": { + "description": "A hint to mapcomplete on how to render this icon within the mapping.\nThis is translated to 'mapping-icon-', so defining your own in combination with a custom CSS is possible (but discouraged)", + "type": "string" + } + }, + "required": [ + "class", + "path" + ] + }, + { + "type": "string" + } + ] + }, + { + "path": [ + "layers", + "title", + "mappings", + "icon", + "path" + ], + "typeHint": "icon", + "type": "string" + }, + { + "path": [ + "layers", + "title", + "mappings", + "icon", + "class" + ], + "type": "string" + }, + { + "path": [ + "layers", + "title", + "mappings", + "hideInAnswer" + ], + "type": [ + { + "$ref": "#/definitions/AndOrTagConfigJson" + }, + { + "type": [ + "string", + "boolean" + ] + } + ] + }, + { + "path": [ + "layers", + "title", + "mappings", + "ifnot" + ], + "type": [ + { + "$ref": "#/definitions/AndOrTagConfigJson" + }, + { + "type": "string" + } + ] + }, + { + "path": [ + "layers", + "title", + "mappings", + "addExtraTags" + ], + "type": "array" + }, + { + "path": [ + "layers", + "titleIcons" + ], + "typeHint": "icon[]", + "type": [ + { + "type": "array", + "items": { + "anyOf": [ + { + "$ref": "#/definitions/TagRenderingConfigJson" + }, + { + "type": "string" + } + ] + } + }, + { + "type": "array", + "items": [ + { + "type": "string", + "enum": [ + "defaults" + ] + } + ], + "minItems": 1, + "maxItems": 1 + } + ] + }, + { + "path": [ + "layers", + "titleIcons" + ], + "type": "object" + }, + { + "path": [ + "layers", + "titleIcons", + "id" + ], + "type": "string" + }, + { + "path": [ + "layers", + "titleIcons", + "group" + ], + "type": "string" + }, + { + "path": [ + "layers", + "titleIcons", + "labels" + ], + "type": "array" + }, + { + "path": [ + "layers", + "titleIcons", + "render" + ], + "typeHint": "rendered" + }, + { + "path": [ + "layers", + "titleIcons", + "question" + ] + }, + { + "path": [ + "layers", + "titleIcons", + "condition" + ], + "type": [ + { + "$ref": "#/definitions/AndOrTagConfigJson" + }, + { + "type": "string" + } + ] + }, + { + "path": [ + "layers", + "titleIcons", + "freeform" + ], + "type": "object" + }, + { + "path": [ + "layers", + "titleIcons", + "freeform", + "key" + ], + "type": "string" + }, + { + "path": [ + "layers", + "titleIcons", + "freeform", + "type" + ], + "type": "string" + }, + { + "path": [ + "layers", + "titleIcons", + "freeform", + "placeholder" + ] + }, + { + "path": [ + "layers", + "titleIcons", + "freeform", + "helperArgs" + ], + "type": "array" + }, + { + "path": [ + "layers", + "titleIcons", + "freeform", + "addExtraTags" + ], + "type": "array" + }, + { + "path": [ + "layers", + "titleIcons", + "freeform", + "inline" + ], + "type": "boolean" + }, + { + "path": [ + "layers", + "titleIcons", + "freeform", + "default" + ], + "type": "string" + }, + { + "path": [ + "layers", + "titleIcons", + "multiAnswer" + ], + "type": "boolean" + }, + { + "path": [ + "layers", + "titleIcons", + "mappings" + ], + "type": "array" + }, + { + "path": [ + "layers", + "titleIcons", + "mappings", + "if" + ], + "type": [ + { + "$ref": "#/definitions/AndOrTagConfigJson" + }, + { + "type": "string" + } + ] + }, + { + "path": [ + "layers", + "titleIcons", + "mappings", + "then" + ], + "typeHint": "rendered" + }, + { + "path": [ + "layers", + "titleIcons", + "mappings", + "icon" + ], + "typeHint": "icon", + "type": [ + { + "type": "object", + "properties": { + "path": { + "description": "The path to the icon\nType: icon", + "type": "string" + }, + "class": { + "description": "A hint to mapcomplete on how to render this icon within the mapping.\nThis is translated to 'mapping-icon-', so defining your own in combination with a custom CSS is possible (but discouraged)", + "type": "string" + } + }, + "required": [ + "class", + "path" + ] + }, + { + "type": "string" + } + ] + }, + { + "path": [ + "layers", + "titleIcons", + "mappings", + "icon", + "path" + ], + "typeHint": "icon", + "type": "string" + }, + { + "path": [ + "layers", + "titleIcons", + "mappings", + "icon", + "class" + ], + "type": "string" + }, + { + "path": [ + "layers", + "titleIcons", + "mappings", + "hideInAnswer" + ], + "type": [ + { + "$ref": "#/definitions/AndOrTagConfigJson" + }, + { + "type": [ + "string", + "boolean" + ] + } + ] + }, + { + "path": [ + "layers", + "titleIcons", + "mappings", + "ifnot" + ], + "type": [ + { + "$ref": "#/definitions/AndOrTagConfigJson" + }, + { + "type": "string" + } + ] + }, + { + "path": [ + "layers", + "titleIcons", + "mappings", + "addExtraTags" + ], + "type": "array" + }, + { + "path": [ + "layers", + "mapRendering" + ], + "type": "object" + }, + { + "path": [ + "layers", + "mapRendering", + "location" + ], + "type": "array" + }, + { + "path": [ + "layers", + "mapRendering", + "icon" + ], + "typeHint": "icon", + "type": [ + { + "$ref": "#/definitions/TagRenderingConfigJson" + }, + { + "type": "string" + } + ] + }, + { + "path": [ + "layers", + "mapRendering", + "icon" + ], + "type": "object" + }, + { + "path": [ + "layers", + "mapRendering", + "icon", + "id" + ], + "type": "string" + }, + { + "path": [ + "layers", + "mapRendering", + "icon", + "group" + ], + "type": "string" + }, + { + "path": [ + "layers", + "mapRendering", + "icon", + "labels" + ], + "type": "array" + }, + { + "path": [ + "layers", + "mapRendering", + "icon", + "render" + ], + "typeHint": "rendered" + }, + { + "path": [ + "layers", + "mapRendering", + "icon", + "question" + ] + }, + { + "path": [ + "layers", + "mapRendering", + "icon", + "condition" + ], + "type": [ + { + "$ref": "#/definitions/AndOrTagConfigJson" + }, + { + "type": "string" + } + ] + }, + { + "path": [ + "layers", + "mapRendering", + "icon", + "freeform" + ], + "type": "object" + }, + { + "path": [ + "layers", + "mapRendering", + "icon", + "freeform", + "key" + ], + "type": "string" + }, + { + "path": [ + "layers", + "mapRendering", + "icon", + "freeform", + "type" + ], + "type": "string" + }, + { + "path": [ + "layers", + "mapRendering", + "icon", + "freeform", + "placeholder" + ] + }, + { + "path": [ + "layers", + "mapRendering", + "icon", + "freeform", + "helperArgs" + ], + "type": "array" + }, + { + "path": [ + "layers", + "mapRendering", + "icon", + "freeform", + "addExtraTags" + ], + "type": "array" + }, + { + "path": [ + "layers", + "mapRendering", + "icon", + "freeform", + "inline" + ], + "type": "boolean" + }, + { + "path": [ + "layers", + "mapRendering", + "icon", + "freeform", + "default" + ], + "type": "string" + }, + { + "path": [ + "layers", + "mapRendering", + "icon", + "multiAnswer" + ], + "type": "boolean" + }, + { + "path": [ + "layers", + "mapRendering", + "icon", + "mappings" + ], + "type": "array" + }, + { + "path": [ + "layers", + "mapRendering", + "icon", + "mappings", + "if" + ], + "type": [ + { + "$ref": "#/definitions/AndOrTagConfigJson" + }, + { + "type": "string" + } + ] + }, + { + "path": [ + "layers", + "mapRendering", + "icon", + "mappings", + "then" + ], + "typeHint": "rendered" + }, + { + "path": [ + "layers", + "mapRendering", + "icon", + "mappings", + "icon" + ], + "typeHint": "icon", + "type": [ + { + "type": "object", + "properties": { + "path": { + "description": "The path to the icon\nType: icon", + "type": "string" + }, + "class": { + "description": "A hint to mapcomplete on how to render this icon within the mapping.\nThis is translated to 'mapping-icon-', so defining your own in combination with a custom CSS is possible (but discouraged)", + "type": "string" + } + }, + "required": [ + "class", + "path" + ] + }, + { + "type": "string" + } + ] + }, + { + "path": [ + "layers", + "mapRendering", + "icon", + "mappings", + "icon", + "path" + ], + "typeHint": "icon", + "type": "string" + }, + { + "path": [ + "layers", + "mapRendering", + "icon", + "mappings", + "icon", + "class" + ], + "type": "string" + }, + { + "path": [ + "layers", + "mapRendering", + "icon", + "mappings", + "hideInAnswer" + ], + "type": [ + { + "$ref": "#/definitions/AndOrTagConfigJson" + }, + { + "type": [ + "string", + "boolean" + ] + } + ] + }, + { + "path": [ + "layers", + "mapRendering", + "icon", + "mappings", + "ifnot" + ], + "type": [ + { + "$ref": "#/definitions/AndOrTagConfigJson" + }, + { + "type": "string" + } + ] + }, + { + "path": [ + "layers", + "mapRendering", + "icon", + "mappings", + "addExtraTags" + ], + "type": "array" + }, + { + "path": [ + "layers", + "mapRendering", + "iconBadges" + ], + "type": "array" + }, + { + "path": [ + "layers", + "mapRendering", + "iconBadges", + "then" + ], + "typeHint": "icon", + "type": [ + { + "$ref": "#/definitions/TagRenderingConfigJson" + }, + { + "type": "string" + } + ] + }, + { + "path": [ + "layers", + "mapRendering", + "iconBadges", + "then" + ], + "type": "object" + }, + { + "path": [ + "layers", + "mapRendering", + "iconBadges", + "then", + "id" + ], + "type": "string" + }, + { + "path": [ + "layers", + "mapRendering", + "iconBadges", + "then", + "group" + ], + "type": "string" + }, + { + "path": [ + "layers", + "mapRendering", + "iconBadges", + "then", + "labels" + ], + "type": "array" + }, + { + "path": [ + "layers", + "mapRendering", + "iconBadges", + "then", + "render" + ], + "typeHint": "rendered" + }, + { + "path": [ + "layers", + "mapRendering", + "iconBadges", + "then", + "question" + ] + }, + { + "path": [ + "layers", + "mapRendering", + "iconBadges", + "then", + "condition" + ], + "type": [ + { + "$ref": "#/definitions/AndOrTagConfigJson" + }, + { + "type": "string" + } + ] + }, + { + "path": [ + "layers", + "mapRendering", + "iconBadges", + "then", + "freeform" + ], + "type": "object" + }, + { + "path": [ + "layers", + "mapRendering", + "iconBadges", + "then", + "freeform", + "key" + ], + "type": "string" + }, + { + "path": [ + "layers", + "mapRendering", + "iconBadges", + "then", + "freeform", + "type" + ], + "type": "string" + }, + { + "path": [ + "layers", + "mapRendering", + "iconBadges", + "then", + "freeform", + "placeholder" + ] + }, + { + "path": [ + "layers", + "mapRendering", + "iconBadges", + "then", + "freeform", + "helperArgs" + ], + "type": "array" + }, + { + "path": [ + "layers", + "mapRendering", + "iconBadges", + "then", + "freeform", + "addExtraTags" + ], + "type": "array" + }, + { + "path": [ + "layers", + "mapRendering", + "iconBadges", + "then", + "freeform", + "inline" + ], + "type": "boolean" + }, + { + "path": [ + "layers", + "mapRendering", + "iconBadges", + "then", + "freeform", + "default" + ], + "type": "string" + }, + { + "path": [ + "layers", + "mapRendering", + "iconBadges", + "then", + "multiAnswer" + ], + "type": "boolean" + }, + { + "path": [ + "layers", + "mapRendering", + "iconBadges", + "then", + "mappings" + ], + "type": "array" + }, + { + "path": [ + "layers", + "mapRendering", + "iconBadges", + "then", + "mappings", + "if" + ], + "type": [ + { + "$ref": "#/definitions/AndOrTagConfigJson" + }, + { + "type": "string" + } + ] + }, + { + "path": [ + "layers", + "mapRendering", + "iconBadges", + "then", + "mappings", + "then" + ], + "typeHint": "rendered" + }, + { + "path": [ + "layers", + "mapRendering", + "iconBadges", + "then", + "mappings", + "icon" + ], + "typeHint": "icon", + "type": [ + { + "type": "object", + "properties": { + "path": { + "description": "The path to the icon\nType: icon", + "type": "string" + }, + "class": { + "description": "A hint to mapcomplete on how to render this icon within the mapping.\nThis is translated to 'mapping-icon-', so defining your own in combination with a custom CSS is possible (but discouraged)", + "type": "string" + } + }, + "required": [ + "class", + "path" + ] + }, + { + "type": "string" + } + ] + }, + { + "path": [ + "layers", + "mapRendering", + "iconBadges", + "then", + "mappings", + "icon", + "path" + ], + "typeHint": "icon", + "type": "string" + }, + { + "path": [ + "layers", + "mapRendering", + "iconBadges", + "then", + "mappings", + "icon", + "class" + ], + "type": "string" + }, + { + "path": [ + "layers", + "mapRendering", + "iconBadges", + "then", + "mappings", + "hideInAnswer" + ], + "type": [ + { + "$ref": "#/definitions/AndOrTagConfigJson" + }, + { + "type": [ + "string", + "boolean" + ] + } + ] + }, + { + "path": [ + "layers", + "mapRendering", + "iconBadges", + "then", + "mappings", + "ifnot" + ], + "type": [ + { + "$ref": "#/definitions/AndOrTagConfigJson" + }, + { + "type": "string" + } + ] + }, + { + "path": [ + "layers", + "mapRendering", + "iconBadges", + "then", + "mappings", + "addExtraTags" + ], + "type": "array" + }, + { + "path": [ + "layers", + "mapRendering", + "iconSize" + ], + "type": [ + { + "$ref": "#/definitions/TagRenderingConfigJson" + }, + { + "type": "string" + } + ] + }, + { + "path": [ + "layers", + "mapRendering", + "iconSize" + ], + "type": "object" + }, + { + "path": [ + "layers", + "mapRendering", + "iconSize", + "id" + ], + "type": "string" + }, + { + "path": [ + "layers", + "mapRendering", + "iconSize", + "group" + ], + "type": "string" + }, + { + "path": [ + "layers", + "mapRendering", + "iconSize", + "labels" + ], + "type": "array" + }, + { + "path": [ + "layers", + "mapRendering", + "iconSize", + "render" + ], + "typeHint": "rendered" + }, + { + "path": [ + "layers", + "mapRendering", + "iconSize", + "question" + ] + }, + { + "path": [ + "layers", + "mapRendering", + "iconSize", + "condition" + ], + "type": [ + { + "$ref": "#/definitions/AndOrTagConfigJson" + }, + { + "type": "string" + } + ] + }, + { + "path": [ + "layers", + "mapRendering", + "iconSize", + "freeform" + ], + "type": "object" + }, + { + "path": [ + "layers", + "mapRendering", + "iconSize", + "freeform", + "key" + ], + "type": "string" + }, + { + "path": [ + "layers", + "mapRendering", + "iconSize", + "freeform", + "type" + ], + "type": "string" + }, + { + "path": [ + "layers", + "mapRendering", + "iconSize", + "freeform", + "placeholder" + ] + }, + { + "path": [ + "layers", + "mapRendering", + "iconSize", + "freeform", + "helperArgs" + ], + "type": "array" + }, + { + "path": [ + "layers", + "mapRendering", + "iconSize", + "freeform", + "addExtraTags" + ], + "type": "array" + }, + { + "path": [ + "layers", + "mapRendering", + "iconSize", + "freeform", + "inline" + ], + "type": "boolean" + }, + { + "path": [ + "layers", + "mapRendering", + "iconSize", + "freeform", + "default" + ], + "type": "string" + }, + { + "path": [ + "layers", + "mapRendering", + "iconSize", + "multiAnswer" + ], + "type": "boolean" + }, + { + "path": [ + "layers", + "mapRendering", + "iconSize", + "mappings" + ], + "type": "array" + }, + { + "path": [ + "layers", + "mapRendering", + "iconSize", + "mappings", + "if" + ], + "type": [ + { + "$ref": "#/definitions/AndOrTagConfigJson" + }, + { + "type": "string" + } + ] + }, + { + "path": [ + "layers", + "mapRendering", + "iconSize", + "mappings", + "then" + ], + "typeHint": "rendered" + }, + { + "path": [ + "layers", + "mapRendering", + "iconSize", + "mappings", + "icon" + ], + "typeHint": "icon", + "type": [ + { + "type": "object", + "properties": { + "path": { + "description": "The path to the icon\nType: icon", + "type": "string" + }, + "class": { + "description": "A hint to mapcomplete on how to render this icon within the mapping.\nThis is translated to 'mapping-icon-', so defining your own in combination with a custom CSS is possible (but discouraged)", + "type": "string" + } + }, + "required": [ + "class", + "path" + ] + }, + { + "type": "string" + } + ] + }, + { + "path": [ + "layers", + "mapRendering", + "iconSize", + "mappings", + "icon", + "path" + ], + "typeHint": "icon", + "type": "string" + }, + { + "path": [ + "layers", + "mapRendering", + "iconSize", + "mappings", + "icon", + "class" + ], + "type": "string" + }, + { + "path": [ + "layers", + "mapRendering", + "iconSize", + "mappings", + "hideInAnswer" + ], + "type": [ + { + "$ref": "#/definitions/AndOrTagConfigJson" + }, + { + "type": [ + "string", + "boolean" + ] + } + ] + }, + { + "path": [ + "layers", + "mapRendering", + "iconSize", + "mappings", + "ifnot" + ], + "type": [ + { + "$ref": "#/definitions/AndOrTagConfigJson" + }, + { + "type": "string" + } + ] + }, + { + "path": [ + "layers", + "mapRendering", + "iconSize", + "mappings", + "addExtraTags" + ], + "type": "array" + }, + { + "path": [ + "layers", + "mapRendering", + "rotation" + ], + "type": [ + { + "$ref": "#/definitions/TagRenderingConfigJson" + }, + { + "type": "string" + } + ] + }, + { + "path": [ + "layers", + "mapRendering", + "rotation" + ], + "type": "object" + }, + { + "path": [ + "layers", + "mapRendering", + "rotation", + "id" + ], + "type": "string" + }, + { + "path": [ + "layers", + "mapRendering", + "rotation", + "group" + ], + "type": "string" + }, + { + "path": [ + "layers", + "mapRendering", + "rotation", + "labels" + ], + "type": "array" + }, + { + "path": [ + "layers", + "mapRendering", + "rotation", + "render" + ], + "typeHint": "rendered" + }, + { + "path": [ + "layers", + "mapRendering", + "rotation", + "question" + ] + }, + { + "path": [ + "layers", + "mapRendering", + "rotation", + "condition" + ], + "type": [ + { + "$ref": "#/definitions/AndOrTagConfigJson" + }, + { + "type": "string" + } + ] + }, + { + "path": [ + "layers", + "mapRendering", + "rotation", + "freeform" + ], + "type": "object" + }, + { + "path": [ + "layers", + "mapRendering", + "rotation", + "freeform", + "key" + ], + "type": "string" + }, + { + "path": [ + "layers", + "mapRendering", + "rotation", + "freeform", + "type" + ], + "type": "string" + }, + { + "path": [ + "layers", + "mapRendering", + "rotation", + "freeform", + "placeholder" + ] + }, + { + "path": [ + "layers", + "mapRendering", + "rotation", + "freeform", + "helperArgs" + ], + "type": "array" + }, + { + "path": [ + "layers", + "mapRendering", + "rotation", + "freeform", + "addExtraTags" + ], + "type": "array" + }, + { + "path": [ + "layers", + "mapRendering", + "rotation", + "freeform", + "inline" + ], + "type": "boolean" + }, + { + "path": [ + "layers", + "mapRendering", + "rotation", + "freeform", + "default" + ], + "type": "string" + }, + { + "path": [ + "layers", + "mapRendering", + "rotation", + "multiAnswer" + ], + "type": "boolean" + }, + { + "path": [ + "layers", + "mapRendering", + "rotation", + "mappings" + ], + "type": "array" + }, + { + "path": [ + "layers", + "mapRendering", + "rotation", + "mappings", + "if" + ], + "type": [ + { + "$ref": "#/definitions/AndOrTagConfigJson" + }, + { + "type": "string" + } + ] + }, + { + "path": [ + "layers", + "mapRendering", + "rotation", + "mappings", + "then" + ], + "typeHint": "rendered" + }, + { + "path": [ + "layers", + "mapRendering", + "rotation", + "mappings", + "icon" + ], + "typeHint": "icon", + "type": [ + { + "type": "object", + "properties": { + "path": { + "description": "The path to the icon\nType: icon", + "type": "string" + }, + "class": { + "description": "A hint to mapcomplete on how to render this icon within the mapping.\nThis is translated to 'mapping-icon-', so defining your own in combination with a custom CSS is possible (but discouraged)", + "type": "string" + } + }, + "required": [ + "class", + "path" + ] + }, + { + "type": "string" + } + ] + }, + { + "path": [ + "layers", + "mapRendering", + "rotation", + "mappings", + "icon", + "path" + ], + "typeHint": "icon", + "type": "string" + }, + { + "path": [ + "layers", + "mapRendering", + "rotation", + "mappings", + "icon", + "class" + ], + "type": "string" + }, + { + "path": [ + "layers", + "mapRendering", + "rotation", + "mappings", + "hideInAnswer" + ], + "type": [ + { + "$ref": "#/definitions/AndOrTagConfigJson" + }, + { + "type": [ + "string", + "boolean" + ] + } + ] + }, + { + "path": [ + "layers", + "mapRendering", + "rotation", + "mappings", + "ifnot" + ], + "type": [ + { + "$ref": "#/definitions/AndOrTagConfigJson" + }, + { + "type": "string" + } + ] + }, + { + "path": [ + "layers", + "mapRendering", + "rotation", + "mappings", + "addExtraTags" + ], + "type": "array" + }, + { + "path": [ + "layers", + "mapRendering", + "label" + ], + "type": [ + { + "$ref": "#/definitions/TagRenderingConfigJson" + }, + { + "type": "string" + } + ] + }, + { + "path": [ + "layers", + "mapRendering", + "label" + ], + "type": "object" + }, + { + "path": [ + "layers", + "mapRendering", + "label", + "id" + ], + "type": "string" + }, + { + "path": [ + "layers", + "mapRendering", + "label", + "group" + ], + "type": "string" + }, + { + "path": [ + "layers", + "mapRendering", + "label", + "labels" + ], + "type": "array" + }, + { + "path": [ + "layers", + "mapRendering", + "label", + "render" + ], + "typeHint": "rendered" + }, + { + "path": [ + "layers", + "mapRendering", + "label", + "question" + ] + }, + { + "path": [ + "layers", + "mapRendering", + "label", + "condition" + ], + "type": [ + { + "$ref": "#/definitions/AndOrTagConfigJson" + }, + { + "type": "string" + } + ] + }, + { + "path": [ + "layers", + "mapRendering", + "label", + "freeform" + ], + "type": "object" + }, + { + "path": [ + "layers", + "mapRendering", + "label", + "freeform", + "key" + ], + "type": "string" + }, + { + "path": [ + "layers", + "mapRendering", + "label", + "freeform", + "type" + ], + "type": "string" + }, + { + "path": [ + "layers", + "mapRendering", + "label", + "freeform", + "placeholder" + ] + }, + { + "path": [ + "layers", + "mapRendering", + "label", + "freeform", + "helperArgs" + ], + "type": "array" + }, + { + "path": [ + "layers", + "mapRendering", + "label", + "freeform", + "addExtraTags" + ], + "type": "array" + }, + { + "path": [ + "layers", + "mapRendering", + "label", + "freeform", + "inline" + ], + "type": "boolean" + }, + { + "path": [ + "layers", + "mapRendering", + "label", + "freeform", + "default" + ], + "type": "string" + }, + { + "path": [ + "layers", + "mapRendering", + "label", + "multiAnswer" + ], + "type": "boolean" + }, + { + "path": [ + "layers", + "mapRendering", + "label", + "mappings" + ], + "type": "array" + }, + { + "path": [ + "layers", + "mapRendering", + "label", + "mappings", + "if" + ], + "type": [ + { + "$ref": "#/definitions/AndOrTagConfigJson" + }, + { + "type": "string" + } + ] + }, + { + "path": [ + "layers", + "mapRendering", + "label", + "mappings", + "then" + ], + "typeHint": "rendered" + }, + { + "path": [ + "layers", + "mapRendering", + "label", + "mappings", + "icon" + ], + "typeHint": "icon", + "type": [ + { + "type": "object", + "properties": { + "path": { + "description": "The path to the icon\nType: icon", + "type": "string" + }, + "class": { + "description": "A hint to mapcomplete on how to render this icon within the mapping.\nThis is translated to 'mapping-icon-', so defining your own in combination with a custom CSS is possible (but discouraged)", + "type": "string" + } + }, + "required": [ + "class", + "path" + ] + }, + { + "type": "string" + } + ] + }, + { + "path": [ + "layers", + "mapRendering", + "label", + "mappings", + "icon", + "path" + ], + "typeHint": "icon", + "type": "string" + }, + { + "path": [ + "layers", + "mapRendering", + "label", + "mappings", + "icon", + "class" + ], + "type": "string" + }, + { + "path": [ + "layers", + "mapRendering", + "label", + "mappings", + "hideInAnswer" + ], + "type": [ + { + "$ref": "#/definitions/AndOrTagConfigJson" + }, + { + "type": [ + "string", + "boolean" + ] + } + ] + }, + { + "path": [ + "layers", + "mapRendering", + "label", + "mappings", + "ifnot" + ], + "type": [ + { + "$ref": "#/definitions/AndOrTagConfigJson" + }, + { + "type": "string" + } + ] + }, + { + "path": [ + "layers", + "mapRendering", + "label", + "mappings", + "addExtraTags" + ], + "type": "array" + }, + { + "path": [ + "layers", + "mapRendering" + ], + "type": "object" + }, + { + "path": [ + "layers", + "mapRendering", + "color" + ], + "type": [ + { + "$ref": "#/definitions/TagRenderingConfigJson" + }, + { + "type": "string" + } + ] + }, + { + "path": [ + "layers", + "mapRendering", + "color" + ], + "type": "object" + }, + { + "path": [ + "layers", + "mapRendering", + "color", + "id" + ], + "type": "string" + }, + { + "path": [ + "layers", + "mapRendering", + "color", + "group" + ], + "type": "string" + }, + { + "path": [ + "layers", + "mapRendering", + "color", + "labels" + ], + "type": "array" + }, + { + "path": [ + "layers", + "mapRendering", + "color", + "render" + ], + "typeHint": "rendered" + }, + { + "path": [ + "layers", + "mapRendering", + "color", + "question" + ] + }, + { + "path": [ + "layers", + "mapRendering", + "color", + "condition" + ], + "type": [ + { + "$ref": "#/definitions/AndOrTagConfigJson" + }, + { + "type": "string" + } + ] + }, + { + "path": [ + "layers", + "mapRendering", + "color", + "freeform" + ], + "type": "object" + }, + { + "path": [ + "layers", + "mapRendering", + "color", + "freeform", + "key" + ], + "type": "string" + }, + { + "path": [ + "layers", + "mapRendering", + "color", + "freeform", + "type" + ], + "type": "string" + }, + { + "path": [ + "layers", + "mapRendering", + "color", + "freeform", + "placeholder" + ] + }, + { + "path": [ + "layers", + "mapRendering", + "color", + "freeform", + "helperArgs" + ], + "type": "array" + }, + { + "path": [ + "layers", + "mapRendering", + "color", + "freeform", + "addExtraTags" + ], + "type": "array" + }, + { + "path": [ + "layers", + "mapRendering", + "color", + "freeform", + "inline" + ], + "type": "boolean" + }, + { + "path": [ + "layers", + "mapRendering", + "color", + "freeform", + "default" + ], + "type": "string" + }, + { + "path": [ + "layers", + "mapRendering", + "color", + "multiAnswer" + ], + "type": "boolean" + }, + { + "path": [ + "layers", + "mapRendering", + "color", + "mappings" + ], + "type": "array" + }, + { + "path": [ + "layers", + "mapRendering", + "color", + "mappings", + "if" + ], + "type": [ + { + "$ref": "#/definitions/AndOrTagConfigJson" + }, + { + "type": "string" + } + ] + }, + { + "path": [ + "layers", + "mapRendering", + "color", + "mappings", + "then" + ], + "typeHint": "rendered" + }, + { + "path": [ + "layers", + "mapRendering", + "color", + "mappings", + "icon" + ], + "typeHint": "icon", + "type": [ + { + "type": "object", + "properties": { + "path": { + "description": "The path to the icon\nType: icon", + "type": "string" + }, + "class": { + "description": "A hint to mapcomplete on how to render this icon within the mapping.\nThis is translated to 'mapping-icon-', so defining your own in combination with a custom CSS is possible (but discouraged)", + "type": "string" + } + }, + "required": [ + "class", + "path" + ] + }, + { + "type": "string" + } + ] + }, + { + "path": [ + "layers", + "mapRendering", + "color", + "mappings", + "icon", + "path" + ], + "typeHint": "icon", + "type": "string" + }, + { + "path": [ + "layers", + "mapRendering", + "color", + "mappings", + "icon", + "class" + ], + "type": "string" + }, + { + "path": [ + "layers", + "mapRendering", + "color", + "mappings", + "hideInAnswer" + ], + "type": [ + { + "$ref": "#/definitions/AndOrTagConfigJson" + }, + { + "type": [ + "string", + "boolean" + ] + } + ] + }, + { + "path": [ + "layers", + "mapRendering", + "color", + "mappings", + "ifnot" + ], + "type": [ + { + "$ref": "#/definitions/AndOrTagConfigJson" + }, + { + "type": "string" + } + ] + }, + { + "path": [ + "layers", + "mapRendering", + "color", + "mappings", + "addExtraTags" + ], + "type": "array" + }, + { + "path": [ + "layers", + "mapRendering", + "width" + ], + "type": [ + { + "$ref": "#/definitions/TagRenderingConfigJson" + }, + { + "type": [ + "string", + "number" + ] + } + ] + }, + { + "path": [ + "layers", + "mapRendering", + "width" + ], + "type": "object" + }, + { + "path": [ + "layers", + "mapRendering", + "width", + "id" + ], + "type": "string" + }, + { + "path": [ + "layers", + "mapRendering", + "width", + "group" + ], + "type": "string" + }, + { + "path": [ + "layers", + "mapRendering", + "width", + "labels" + ], + "type": "array" + }, + { + "path": [ + "layers", + "mapRendering", + "width", + "render" + ], + "typeHint": "rendered" + }, + { + "path": [ + "layers", + "mapRendering", + "width", + "question" + ] + }, + { + "path": [ + "layers", + "mapRendering", + "width", + "condition" + ], + "type": [ + { + "$ref": "#/definitions/AndOrTagConfigJson" + }, + { + "type": "string" + } + ] + }, + { + "path": [ + "layers", + "mapRendering", + "width", + "freeform" + ], + "type": "object" + }, + { + "path": [ + "layers", + "mapRendering", + "width", + "freeform", + "key" + ], + "type": "string" + }, + { + "path": [ + "layers", + "mapRendering", + "width", + "freeform", + "type" + ], + "type": "string" + }, + { + "path": [ + "layers", + "mapRendering", + "width", + "freeform", + "placeholder" + ] + }, + { + "path": [ + "layers", + "mapRendering", + "width", + "freeform", + "helperArgs" + ], + "type": "array" + }, + { + "path": [ + "layers", + "mapRendering", + "width", + "freeform", + "addExtraTags" + ], + "type": "array" + }, + { + "path": [ + "layers", + "mapRendering", + "width", + "freeform", + "inline" + ], + "type": "boolean" + }, + { + "path": [ + "layers", + "mapRendering", + "width", + "freeform", + "default" + ], + "type": "string" + }, + { + "path": [ + "layers", + "mapRendering", + "width", + "multiAnswer" + ], + "type": "boolean" + }, + { + "path": [ + "layers", + "mapRendering", + "width", + "mappings" + ], + "type": "array" + }, + { + "path": [ + "layers", + "mapRendering", + "width", + "mappings", + "if" + ], + "type": [ + { + "$ref": "#/definitions/AndOrTagConfigJson" + }, + { + "type": "string" + } + ] + }, + { + "path": [ + "layers", + "mapRendering", + "width", + "mappings", + "then" + ], + "typeHint": "rendered" + }, + { + "path": [ + "layers", + "mapRendering", + "width", + "mappings", + "icon" + ], + "typeHint": "icon", + "type": [ + { + "type": "object", + "properties": { + "path": { + "description": "The path to the icon\nType: icon", + "type": "string" + }, + "class": { + "description": "A hint to mapcomplete on how to render this icon within the mapping.\nThis is translated to 'mapping-icon-', so defining your own in combination with a custom CSS is possible (but discouraged)", + "type": "string" + } + }, + "required": [ + "class", + "path" + ] + }, + { + "type": "string" + } + ] + }, + { + "path": [ + "layers", + "mapRendering", + "width", + "mappings", + "icon", + "path" + ], + "typeHint": "icon", + "type": "string" + }, + { + "path": [ + "layers", + "mapRendering", + "width", + "mappings", + "icon", + "class" + ], + "type": "string" + }, + { + "path": [ + "layers", + "mapRendering", + "width", + "mappings", + "hideInAnswer" + ], + "type": [ + { + "$ref": "#/definitions/AndOrTagConfigJson" + }, + { + "type": [ + "string", + "boolean" + ] + } + ] + }, + { + "path": [ + "layers", + "mapRendering", + "width", + "mappings", + "ifnot" + ], + "type": [ + { + "$ref": "#/definitions/AndOrTagConfigJson" + }, + { + "type": "string" + } + ] + }, + { + "path": [ + "layers", + "mapRendering", + "width", + "mappings", + "addExtraTags" + ], + "type": "array" + }, + { + "path": [ + "layers", + "mapRendering", + "dashArray" + ], + "type": [ + { + "$ref": "#/definitions/TagRenderingConfigJson" + }, + { + "type": "string" + } + ] + }, + { + "path": [ + "layers", + "mapRendering", + "dashArray" + ], + "type": "object" + }, + { + "path": [ + "layers", + "mapRendering", + "dashArray", + "id" + ], + "type": "string" + }, + { + "path": [ + "layers", + "mapRendering", + "dashArray", + "group" + ], + "type": "string" + }, + { + "path": [ + "layers", + "mapRendering", + "dashArray", + "labels" + ], + "type": "array" + }, + { + "path": [ + "layers", + "mapRendering", + "dashArray", + "render" + ], + "typeHint": "rendered" + }, + { + "path": [ + "layers", + "mapRendering", + "dashArray", + "question" + ] + }, + { + "path": [ + "layers", + "mapRendering", + "dashArray", + "condition" + ], + "type": [ + { + "$ref": "#/definitions/AndOrTagConfigJson" + }, + { + "type": "string" + } + ] + }, + { + "path": [ + "layers", + "mapRendering", + "dashArray", + "freeform" + ], + "type": "object" + }, + { + "path": [ + "layers", + "mapRendering", + "dashArray", + "freeform", + "key" + ], + "type": "string" + }, + { + "path": [ + "layers", + "mapRendering", + "dashArray", + "freeform", + "type" + ], + "type": "string" + }, + { + "path": [ + "layers", + "mapRendering", + "dashArray", + "freeform", + "placeholder" + ] + }, + { + "path": [ + "layers", + "mapRendering", + "dashArray", + "freeform", + "helperArgs" + ], + "type": "array" + }, + { + "path": [ + "layers", + "mapRendering", + "dashArray", + "freeform", + "addExtraTags" + ], + "type": "array" + }, + { + "path": [ + "layers", + "mapRendering", + "dashArray", + "freeform", + "inline" + ], + "type": "boolean" + }, + { + "path": [ + "layers", + "mapRendering", + "dashArray", + "freeform", + "default" + ], + "type": "string" + }, + { + "path": [ + "layers", + "mapRendering", + "dashArray", + "multiAnswer" + ], + "type": "boolean" + }, + { + "path": [ + "layers", + "mapRendering", + "dashArray", + "mappings" + ], + "type": "array" + }, + { + "path": [ + "layers", + "mapRendering", + "dashArray", + "mappings", + "if" + ], + "type": [ + { + "$ref": "#/definitions/AndOrTagConfigJson" + }, + { + "type": "string" + } + ] + }, + { + "path": [ + "layers", + "mapRendering", + "dashArray", + "mappings", + "then" + ], + "typeHint": "rendered" + }, + { + "path": [ + "layers", + "mapRendering", + "dashArray", + "mappings", + "icon" + ], + "typeHint": "icon", + "type": [ + { + "type": "object", + "properties": { + "path": { + "description": "The path to the icon\nType: icon", + "type": "string" + }, + "class": { + "description": "A hint to mapcomplete on how to render this icon within the mapping.\nThis is translated to 'mapping-icon-', so defining your own in combination with a custom CSS is possible (but discouraged)", + "type": "string" + } + }, + "required": [ + "class", + "path" + ] + }, + { + "type": "string" + } + ] + }, + { + "path": [ + "layers", + "mapRendering", + "dashArray", + "mappings", + "icon", + "path" + ], + "typeHint": "icon", + "type": "string" + }, + { + "path": [ + "layers", + "mapRendering", + "dashArray", + "mappings", + "icon", + "class" + ], + "type": "string" + }, + { + "path": [ + "layers", + "mapRendering", + "dashArray", + "mappings", + "hideInAnswer" + ], + "type": [ + { + "$ref": "#/definitions/AndOrTagConfigJson" + }, + { + "type": [ + "string", + "boolean" + ] + } + ] + }, + { + "path": [ + "layers", + "mapRendering", + "dashArray", + "mappings", + "ifnot" + ], + "type": [ + { + "$ref": "#/definitions/AndOrTagConfigJson" + }, + { + "type": "string" + } + ] + }, + { + "path": [ + "layers", + "mapRendering", + "dashArray", + "mappings", + "addExtraTags" + ], + "type": "array" + }, + { + "path": [ + "layers", + "mapRendering", + "lineCap" + ], + "type": [ + { + "$ref": "#/definitions/TagRenderingConfigJson" + }, + { + "type": "string" + } + ] + }, + { + "path": [ + "layers", + "mapRendering", + "lineCap" + ], + "type": "object" + }, + { + "path": [ + "layers", + "mapRendering", + "lineCap", + "id" + ], + "type": "string" + }, + { + "path": [ + "layers", + "mapRendering", + "lineCap", + "group" + ], + "type": "string" + }, + { + "path": [ + "layers", + "mapRendering", + "lineCap", + "labels" + ], + "type": "array" + }, + { + "path": [ + "layers", + "mapRendering", + "lineCap", + "render" + ], + "typeHint": "rendered" + }, + { + "path": [ + "layers", + "mapRendering", + "lineCap", + "question" + ] + }, + { + "path": [ + "layers", + "mapRendering", + "lineCap", + "condition" + ], + "type": [ + { + "$ref": "#/definitions/AndOrTagConfigJson" + }, + { + "type": "string" + } + ] + }, + { + "path": [ + "layers", + "mapRendering", + "lineCap", + "freeform" + ], + "type": "object" + }, + { + "path": [ + "layers", + "mapRendering", + "lineCap", + "freeform", + "key" + ], + "type": "string" + }, + { + "path": [ + "layers", + "mapRendering", + "lineCap", + "freeform", + "type" + ], + "type": "string" + }, + { + "path": [ + "layers", + "mapRendering", + "lineCap", + "freeform", + "placeholder" + ] + }, + { + "path": [ + "layers", + "mapRendering", + "lineCap", + "freeform", + "helperArgs" + ], + "type": "array" + }, + { + "path": [ + "layers", + "mapRendering", + "lineCap", + "freeform", + "addExtraTags" + ], + "type": "array" + }, + { + "path": [ + "layers", + "mapRendering", + "lineCap", + "freeform", + "inline" + ], + "type": "boolean" + }, + { + "path": [ + "layers", + "mapRendering", + "lineCap", + "freeform", + "default" + ], + "type": "string" + }, + { + "path": [ + "layers", + "mapRendering", + "lineCap", + "multiAnswer" + ], + "type": "boolean" + }, + { + "path": [ + "layers", + "mapRendering", + "lineCap", + "mappings" + ], + "type": "array" + }, + { + "path": [ + "layers", + "mapRendering", + "lineCap", + "mappings", + "if" + ], + "type": [ + { + "$ref": "#/definitions/AndOrTagConfigJson" + }, + { + "type": "string" + } + ] + }, + { + "path": [ + "layers", + "mapRendering", + "lineCap", + "mappings", + "then" + ], + "typeHint": "rendered" + }, + { + "path": [ + "layers", + "mapRendering", + "lineCap", + "mappings", + "icon" + ], + "typeHint": "icon", + "type": [ + { + "type": "object", + "properties": { + "path": { + "description": "The path to the icon\nType: icon", + "type": "string" + }, + "class": { + "description": "A hint to mapcomplete on how to render this icon within the mapping.\nThis is translated to 'mapping-icon-', so defining your own in combination with a custom CSS is possible (but discouraged)", + "type": "string" + } + }, + "required": [ + "class", + "path" + ] + }, + { + "type": "string" + } + ] + }, + { + "path": [ + "layers", + "mapRendering", + "lineCap", + "mappings", + "icon", + "path" + ], + "typeHint": "icon", + "type": "string" + }, + { + "path": [ + "layers", + "mapRendering", + "lineCap", + "mappings", + "icon", + "class" + ], + "type": "string" + }, + { + "path": [ + "layers", + "mapRendering", + "lineCap", + "mappings", + "hideInAnswer" + ], + "type": [ + { + "$ref": "#/definitions/AndOrTagConfigJson" + }, + { + "type": [ + "string", + "boolean" + ] + } + ] + }, + { + "path": [ + "layers", + "mapRendering", + "lineCap", + "mappings", + "ifnot" + ], + "type": [ + { + "$ref": "#/definitions/AndOrTagConfigJson" + }, + { + "type": "string" + } + ] + }, + { + "path": [ + "layers", + "mapRendering", + "lineCap", + "mappings", + "addExtraTags" + ], + "type": "array" + }, + { + "path": [ + "layers", + "mapRendering", + "fill" + ], + "type": [ + { + "$ref": "#/definitions/TagRenderingConfigJson" + }, + { + "enum": [ + "no", + "yes" + ], + "type": "string" + } + ] + }, + { + "path": [ + "layers", + "mapRendering", + "fill" + ], + "type": "object" + }, + { + "path": [ + "layers", + "mapRendering", + "fill", + "id" + ], + "type": "string" + }, + { + "path": [ + "layers", + "mapRendering", + "fill", + "group" + ], + "type": "string" + }, + { + "path": [ + "layers", + "mapRendering", + "fill", + "labels" + ], + "type": "array" + }, + { + "path": [ + "layers", + "mapRendering", + "fill", + "render" + ], + "typeHint": "rendered" + }, + { + "path": [ + "layers", + "mapRendering", + "fill", + "question" + ] + }, + { + "path": [ + "layers", + "mapRendering", + "fill", + "condition" + ], + "type": [ + { + "$ref": "#/definitions/AndOrTagConfigJson" + }, + { + "type": "string" + } + ] + }, + { + "path": [ + "layers", + "mapRendering", + "fill", + "freeform" + ], + "type": "object" + }, + { + "path": [ + "layers", + "mapRendering", + "fill", + "freeform", + "key" + ], + "type": "string" + }, + { + "path": [ + "layers", + "mapRendering", + "fill", + "freeform", + "type" + ], + "type": "string" + }, + { + "path": [ + "layers", + "mapRendering", + "fill", + "freeform", + "placeholder" + ] + }, + { + "path": [ + "layers", + "mapRendering", + "fill", + "freeform", + "helperArgs" + ], + "type": "array" + }, + { + "path": [ + "layers", + "mapRendering", + "fill", + "freeform", + "addExtraTags" + ], + "type": "array" + }, + { + "path": [ + "layers", + "mapRendering", + "fill", + "freeform", + "inline" + ], + "type": "boolean" + }, + { + "path": [ + "layers", + "mapRendering", + "fill", + "freeform", + "default" + ], + "type": "string" + }, + { + "path": [ + "layers", + "mapRendering", + "fill", + "multiAnswer" + ], + "type": "boolean" + }, + { + "path": [ + "layers", + "mapRendering", + "fill", + "mappings" + ], + "type": "array" + }, + { + "path": [ + "layers", + "mapRendering", + "fill", + "mappings", + "if" + ], + "type": [ + { + "$ref": "#/definitions/AndOrTagConfigJson" + }, + { + "type": "string" + } + ] + }, + { + "path": [ + "layers", + "mapRendering", + "fill", + "mappings", + "then" + ], + "typeHint": "rendered" + }, + { + "path": [ + "layers", + "mapRendering", + "fill", + "mappings", + "icon" + ], + "typeHint": "icon", + "type": [ + { + "type": "object", + "properties": { + "path": { + "description": "The path to the icon\nType: icon", + "type": "string" + }, + "class": { + "description": "A hint to mapcomplete on how to render this icon within the mapping.\nThis is translated to 'mapping-icon-', so defining your own in combination with a custom CSS is possible (but discouraged)", + "type": "string" + } + }, + "required": [ + "class", + "path" + ] + }, + { + "type": "string" + } + ] + }, + { + "path": [ + "layers", + "mapRendering", + "fill", + "mappings", + "icon", + "path" + ], + "typeHint": "icon", + "type": "string" + }, + { + "path": [ + "layers", + "mapRendering", + "fill", + "mappings", + "icon", + "class" + ], + "type": "string" + }, + { + "path": [ + "layers", + "mapRendering", + "fill", + "mappings", + "hideInAnswer" + ], + "type": [ + { + "$ref": "#/definitions/AndOrTagConfigJson" + }, + { + "type": [ + "string", + "boolean" + ] + } + ] + }, + { + "path": [ + "layers", + "mapRendering", + "fill", + "mappings", + "ifnot" + ], + "type": [ + { + "$ref": "#/definitions/AndOrTagConfigJson" + }, + { + "type": "string" + } + ] + }, + { + "path": [ + "layers", + "mapRendering", + "fill", + "mappings", + "addExtraTags" + ], + "type": "array" + }, + { + "path": [ + "layers", + "mapRendering", + "fillColor" + ], + "type": [ + { + "$ref": "#/definitions/TagRenderingConfigJson" + }, + { + "type": "string" + } + ] + }, + { + "path": [ + "layers", + "mapRendering", + "fillColor" + ], + "type": "object" + }, + { + "path": [ + "layers", + "mapRendering", + "fillColor", + "id" + ], + "type": "string" + }, + { + "path": [ + "layers", + "mapRendering", + "fillColor", + "group" + ], + "type": "string" + }, + { + "path": [ + "layers", + "mapRendering", + "fillColor", + "labels" + ], + "type": "array" + }, + { + "path": [ + "layers", + "mapRendering", + "fillColor", + "render" + ], + "typeHint": "rendered" + }, + { + "path": [ + "layers", + "mapRendering", + "fillColor", + "question" + ] + }, + { + "path": [ + "layers", + "mapRendering", + "fillColor", + "condition" + ], + "type": [ + { + "$ref": "#/definitions/AndOrTagConfigJson" + }, + { + "type": "string" + } + ] + }, + { + "path": [ + "layers", + "mapRendering", + "fillColor", + "freeform" + ], + "type": "object" + }, + { + "path": [ + "layers", + "mapRendering", + "fillColor", + "freeform", + "key" + ], + "type": "string" + }, + { + "path": [ + "layers", + "mapRendering", + "fillColor", + "freeform", + "type" + ], + "type": "string" + }, + { + "path": [ + "layers", + "mapRendering", + "fillColor", + "freeform", + "placeholder" + ] + }, + { + "path": [ + "layers", + "mapRendering", + "fillColor", + "freeform", + "helperArgs" + ], + "type": "array" + }, + { + "path": [ + "layers", + "mapRendering", + "fillColor", + "freeform", + "addExtraTags" + ], + "type": "array" + }, + { + "path": [ + "layers", + "mapRendering", + "fillColor", + "freeform", + "inline" + ], + "type": "boolean" + }, + { + "path": [ + "layers", + "mapRendering", + "fillColor", + "freeform", + "default" + ], + "type": "string" + }, + { + "path": [ + "layers", + "mapRendering", + "fillColor", + "multiAnswer" + ], + "type": "boolean" + }, + { + "path": [ + "layers", + "mapRendering", + "fillColor", + "mappings" + ], + "type": "array" + }, + { + "path": [ + "layers", + "mapRendering", + "fillColor", + "mappings", + "if" + ], + "type": [ + { + "$ref": "#/definitions/AndOrTagConfigJson" + }, + { + "type": "string" + } + ] + }, + { + "path": [ + "layers", + "mapRendering", + "fillColor", + "mappings", + "then" + ], + "typeHint": "rendered" + }, + { + "path": [ + "layers", + "mapRendering", + "fillColor", + "mappings", + "icon" + ], + "typeHint": "icon", + "type": [ + { + "type": "object", + "properties": { + "path": { + "description": "The path to the icon\nType: icon", + "type": "string" + }, + "class": { + "description": "A hint to mapcomplete on how to render this icon within the mapping.\nThis is translated to 'mapping-icon-', so defining your own in combination with a custom CSS is possible (but discouraged)", + "type": "string" + } + }, + "required": [ + "class", + "path" + ] + }, + { + "type": "string" + } + ] + }, + { + "path": [ + "layers", + "mapRendering", + "fillColor", + "mappings", + "icon", + "path" + ], + "typeHint": "icon", + "type": "string" + }, + { + "path": [ + "layers", + "mapRendering", + "fillColor", + "mappings", + "icon", + "class" + ], + "type": "string" + }, + { + "path": [ + "layers", + "mapRendering", + "fillColor", + "mappings", + "hideInAnswer" + ], + "type": [ + { + "$ref": "#/definitions/AndOrTagConfigJson" + }, + { + "type": [ + "string", + "boolean" + ] + } + ] + }, + { + "path": [ + "layers", + "mapRendering", + "fillColor", + "mappings", + "ifnot" + ], + "type": [ + { + "$ref": "#/definitions/AndOrTagConfigJson" + }, + { + "type": "string" + } + ] + }, + { + "path": [ + "layers", + "mapRendering", + "fillColor", + "mappings", + "addExtraTags" + ], + "type": "array" + }, + { + "path": [ + "layers", + "mapRendering", + "offset" + ], + "type": [ + { + "$ref": "#/definitions/TagRenderingConfigJson" + }, + { + "type": "number" + } + ] + }, + { + "path": [ + "layers", + "mapRendering", + "offset" + ], + "type": "object" + }, + { + "path": [ + "layers", + "mapRendering", + "offset", + "id" + ], + "type": "string" + }, + { + "path": [ + "layers", + "mapRendering", + "offset", + "group" + ], + "type": "string" + }, + { + "path": [ + "layers", + "mapRendering", + "offset", + "labels" + ], + "type": "array" + }, + { + "path": [ + "layers", + "mapRendering", + "offset", + "render" + ], + "typeHint": "rendered" + }, + { + "path": [ + "layers", + "mapRendering", + "offset", + "question" + ] + }, + { + "path": [ + "layers", + "mapRendering", + "offset", + "condition" + ], + "type": [ + { + "$ref": "#/definitions/AndOrTagConfigJson" + }, + { + "type": "string" + } + ] + }, + { + "path": [ + "layers", + "mapRendering", + "offset", + "freeform" + ], + "type": "object" + }, + { + "path": [ + "layers", + "mapRendering", + "offset", + "freeform", + "key" + ], + "type": "string" + }, + { + "path": [ + "layers", + "mapRendering", + "offset", + "freeform", + "type" + ], + "type": "string" + }, + { + "path": [ + "layers", + "mapRendering", + "offset", + "freeform", + "placeholder" + ] + }, + { + "path": [ + "layers", + "mapRendering", + "offset", + "freeform", + "helperArgs" + ], + "type": "array" + }, + { + "path": [ + "layers", + "mapRendering", + "offset", + "freeform", + "addExtraTags" + ], + "type": "array" + }, + { + "path": [ + "layers", + "mapRendering", + "offset", + "freeform", + "inline" + ], + "type": "boolean" + }, + { + "path": [ + "layers", + "mapRendering", + "offset", + "freeform", + "default" + ], + "type": "string" + }, + { + "path": [ + "layers", + "mapRendering", + "offset", + "multiAnswer" + ], + "type": "boolean" + }, + { + "path": [ + "layers", + "mapRendering", + "offset", + "mappings" + ], + "type": "array" + }, + { + "path": [ + "layers", + "mapRendering", + "offset", + "mappings", + "if" + ], + "type": [ + { + "$ref": "#/definitions/AndOrTagConfigJson" + }, + { + "type": "string" + } + ] + }, + { + "path": [ + "layers", + "mapRendering", + "offset", + "mappings", + "then" + ], + "typeHint": "rendered" + }, + { + "path": [ + "layers", + "mapRendering", + "offset", + "mappings", + "icon" + ], + "typeHint": "icon", + "type": [ + { + "type": "object", + "properties": { + "path": { + "description": "The path to the icon\nType: icon", + "type": "string" + }, + "class": { + "description": "A hint to mapcomplete on how to render this icon within the mapping.\nThis is translated to 'mapping-icon-', so defining your own in combination with a custom CSS is possible (but discouraged)", + "type": "string" + } + }, + "required": [ + "class", + "path" + ] + }, + { + "type": "string" + } + ] + }, + { + "path": [ + "layers", + "mapRendering", + "offset", + "mappings", + "icon", + "path" + ], + "typeHint": "icon", + "type": "string" + }, + { + "path": [ + "layers", + "mapRendering", + "offset", + "mappings", + "icon", + "class" + ], + "type": "string" + }, + { + "path": [ + "layers", + "mapRendering", + "offset", + "mappings", + "hideInAnswer" + ], + "type": [ + { + "$ref": "#/definitions/AndOrTagConfigJson" + }, + { + "type": [ + "string", + "boolean" + ] + } + ] + }, + { + "path": [ + "layers", + "mapRendering", + "offset", + "mappings", + "ifnot" + ], + "type": [ + { + "$ref": "#/definitions/AndOrTagConfigJson" + }, + { + "type": "string" + } + ] + }, + { + "path": [ + "layers", + "mapRendering", + "offset", + "mappings", + "addExtraTags" + ], + "type": "array" + }, + { + "path": [ + "layers", + "passAllFeatures" + ], + "type": "boolean" + }, + { + "path": [ + "layers", + "presets" + ], + "type": "array" + }, + { + "path": [ + "layers", + "presets", + "title" + ] + }, + { + "path": [ + "layers", + "presets", + "tags" + ], + "type": "array" + }, + { + "path": [ + "layers", + "presets", + "description" + ] + }, + { + "path": [ + "layers", + "presets", + "exampleImages" + ], + "typeHint": "image", + "type": "array" + }, + { + "path": [ + "layers", + "presets", + "preciseInput" + ], + "type": [ + { + "type": "object", + "properties": { + "preferredBackground": { + "description": "The type of background picture", + "anyOf": [ + { + "type": "array", + "items": { + "type": "string" + } + }, + { + "type": "string" + } + ] + }, + "snapToLayer": { + "description": "If specified, these layers will be shown to and the new point will be snapped towards it", + "anyOf": [ + { + "type": "array", + "items": { + "type": "string" + } + }, + { + "type": "string" + } + ] + }, + "maxSnapDistance": { + "description": "If specified, a new point will only be snapped if it is within this range.\nDistance in meter\n\nDefault: 10", + "type": "number" + } + }, + "required": [ + "preferredBackground" + ] + }, + { + "enum": [ + true + ], + "type": "boolean" + } + ] + }, + { + "path": [ + "layers", + "presets", + "preciseInput", + "preferredBackground" + ], + "type": [ + { + "type": "array", + "items": { + "type": "string" + } + }, + { + "type": "string" + } + ] + }, + { + "path": [ + "layers", + "presets", + "preciseInput", + "snapToLayer" + ], + "type": [ + { + "type": "array", + "items": { + "type": "string" + } + }, + { + "type": "string" + } + ] + }, + { + "path": [ + "layers", + "presets", + "preciseInput", + "maxSnapDistance" + ], + "type": "number" + }, + { + "path": [ + "layers", + "tagRenderings" + ], + "type": "array" + }, + { + "path": [ + "layers", + "tagRenderings" + ], + "type": "object" + }, + { + "path": [ + "layers", + "tagRenderings", + "id" + ], + "type": "string" + }, + { + "path": [ + "layers", + "tagRenderings", + "group" + ], + "type": "string" + }, + { + "path": [ + "layers", + "tagRenderings", + "labels" + ], + "type": "array" + }, + { + "path": [ + "layers", + "tagRenderings", + "render" + ], + "typeHint": "rendered" + }, + { + "path": [ + "layers", + "tagRenderings", + "question" + ] + }, + { + "path": [ + "layers", + "tagRenderings", + "condition" + ], + "type": [ + { + "$ref": "#/definitions/AndOrTagConfigJson" + }, + { + "type": "string" + } + ] + }, + { + "path": [ + "layers", + "tagRenderings", + "freeform" + ], + "type": "object" + }, + { + "path": [ + "layers", + "tagRenderings", + "freeform", + "key" + ], + "type": "string" + }, + { + "path": [ + "layers", + "tagRenderings", + "freeform", + "type" + ], + "type": "string" + }, + { + "path": [ + "layers", + "tagRenderings", + "freeform", + "placeholder" + ] + }, + { + "path": [ + "layers", + "tagRenderings", + "freeform", + "helperArgs" + ], + "type": "array" + }, + { + "path": [ + "layers", + "tagRenderings", + "freeform", + "addExtraTags" + ], + "type": "array" + }, + { + "path": [ + "layers", + "tagRenderings", + "freeform", + "inline" + ], + "type": "boolean" + }, + { + "path": [ + "layers", + "tagRenderings", + "freeform", + "default" + ], + "type": "string" + }, + { + "path": [ + "layers", + "tagRenderings", + "multiAnswer" + ], + "type": "boolean" + }, + { + "path": [ + "layers", + "tagRenderings", + "mappings" + ], + "type": "array" + }, + { + "path": [ + "layers", + "tagRenderings", + "mappings", + "if" + ], + "type": [ + { + "$ref": "#/definitions/AndOrTagConfigJson" + }, + { + "type": "string" + } + ] + }, + { + "path": [ + "layers", + "tagRenderings", + "mappings", + "then" + ], + "typeHint": "rendered" + }, + { + "path": [ + "layers", + "tagRenderings", + "mappings", + "icon" + ], + "typeHint": "icon", + "type": [ + { + "type": "object", + "properties": { + "path": { + "description": "The path to the icon\nType: icon", + "type": "string" + }, + "class": { + "description": "A hint to mapcomplete on how to render this icon within the mapping.\nThis is translated to 'mapping-icon-', so defining your own in combination with a custom CSS is possible (but discouraged)", + "type": "string" + } + }, + "required": [ + "class", + "path" + ] + }, + { + "type": "string" + } + ] + }, + { + "path": [ + "layers", + "tagRenderings", + "mappings", + "icon", + "path" + ], + "typeHint": "icon", + "type": "string" + }, + { + "path": [ + "layers", + "tagRenderings", + "mappings", + "icon", + "class" + ], + "type": "string" + }, + { + "path": [ + "layers", + "tagRenderings", + "mappings", + "hideInAnswer" + ], + "type": [ + { + "$ref": "#/definitions/AndOrTagConfigJson" + }, + { + "type": [ + "string", + "boolean" + ] + } + ] + }, + { + "path": [ + "layers", + "tagRenderings", + "mappings", + "ifnot" + ], + "type": [ + { + "$ref": "#/definitions/AndOrTagConfigJson" + }, + { + "type": "string" + } + ] + }, + { + "path": [ + "layers", + "tagRenderings", + "mappings", + "addExtraTags" + ], + "type": "array" + }, + { + "path": [ + "layers", + "tagRenderings", + "renderings" + ], + "type": "object" + }, + { + "path": [ + "layers", + "tagRenderings", + "renderings", + "id" + ], + "type": "string" + }, + { + "path": [ + "layers", + "tagRenderings", + "renderings", + "group" + ], + "type": "string" + }, + { + "path": [ + "layers", + "tagRenderings", + "renderings", + "labels" + ], + "type": "array" + }, + { + "path": [ + "layers", + "tagRenderings", + "renderings", + "render" + ], + "typeHint": "rendered" + }, + { + "path": [ + "layers", + "tagRenderings", + "renderings", + "question" + ] + }, + { + "path": [ + "layers", + "tagRenderings", + "renderings", + "condition" + ], + "type": [ + { + "$ref": "#/definitions/AndOrTagConfigJson" + }, + { + "type": "string" + } + ] + }, + { + "path": [ + "layers", + "tagRenderings", + "renderings", + "freeform" + ], + "type": "object" + }, + { + "path": [ + "layers", + "tagRenderings", + "renderings", + "freeform", + "key" + ], + "type": "string" + }, + { + "path": [ + "layers", + "tagRenderings", + "renderings", + "freeform", + "type" + ], + "type": "string" + }, + { + "path": [ + "layers", + "tagRenderings", + "renderings", + "freeform", + "placeholder" + ] + }, + { + "path": [ + "layers", + "tagRenderings", + "renderings", + "freeform", + "helperArgs" + ], + "type": "array" + }, + { + "path": [ + "layers", + "tagRenderings", + "renderings", + "freeform", + "addExtraTags" + ], + "type": "array" + }, + { + "path": [ + "layers", + "tagRenderings", + "renderings", + "freeform", + "inline" + ], + "type": "boolean" + }, + { + "path": [ + "layers", + "tagRenderings", + "renderings", + "freeform", + "default" + ], + "type": "string" + }, + { + "path": [ + "layers", + "tagRenderings", + "renderings", + "multiAnswer" + ], + "type": "boolean" + }, + { + "path": [ + "layers", + "tagRenderings", + "renderings", + "mappings" + ], + "type": "array" + }, + { + "path": [ + "layers", + "tagRenderings", + "renderings", + "mappings", + "if" + ], + "type": [ + { + "$ref": "#/definitions/AndOrTagConfigJson" + }, + { + "type": "string" + } + ] + }, + { + "path": [ + "layers", + "tagRenderings", + "renderings", + "mappings", + "then" + ], + "typeHint": "rendered" + }, + { + "path": [ + "layers", + "tagRenderings", + "renderings", + "mappings", + "icon" + ], + "typeHint": "icon", + "type": [ + { + "type": "object", + "properties": { + "path": { + "description": "The path to the icon\nType: icon", + "type": "string" + }, + "class": { + "description": "A hint to mapcomplete on how to render this icon within the mapping.\nThis is translated to 'mapping-icon-', so defining your own in combination with a custom CSS is possible (but discouraged)", + "type": "string" + } + }, + "required": [ + "class", + "path" + ] + }, + { + "type": "string" + } + ] + }, + { + "path": [ + "layers", + "tagRenderings", + "renderings", + "mappings", + "icon", + "path" + ], + "typeHint": "icon", + "type": "string" + }, + { + "path": [ + "layers", + "tagRenderings", + "renderings", + "mappings", + "icon", + "class" + ], + "type": "string" + }, + { + "path": [ + "layers", + "tagRenderings", + "renderings", + "mappings", + "hideInAnswer" + ], + "type": [ + { + "$ref": "#/definitions/AndOrTagConfigJson" + }, + { + "type": [ + "string", + "boolean" + ] + } + ] + }, + { + "path": [ + "layers", + "tagRenderings", + "renderings", + "mappings", + "ifnot" + ], + "type": [ + { + "$ref": "#/definitions/AndOrTagConfigJson" + }, + { + "type": "string" + } + ] + }, + { + "path": [ + "layers", + "tagRenderings", + "renderings", + "mappings", + "addExtraTags" + ], + "type": "array" + }, + { + "path": [ + "layers", + "filter" + ], + "type": [ + { + "type": "array", + "items": { + "$ref": "#/definitions/default_1" + } + }, + { + "type": "object", + "properties": { + "sameAs": { + "type": "string" + } + }, + "required": [ + "sameAs" + ] + } + ] + }, + { + "path": [ + "layers", + "filter", + "id" + ], + "type": "string" + }, + { + "path": [ + "layers", + "filter", + "options" + ], + "type": "array" + }, + { + "path": [ + "layers", + "deletion" + ], + "type": [ + { + "$ref": "#/definitions/DeleteConfigJson" + }, + { + "type": "boolean" + } + ] + }, + { + "path": [ + "layers", + "deletion", + "extraDeleteReasons" + ], + "type": "array" + }, + { + "path": [ + "layers", + "deletion", + "extraDeleteReasons", + "explanation" + ] + }, + { + "path": [ + "layers", + "deletion", + "extraDeleteReasons", + "changesetMessage" + ], + "type": "string" + }, + { + "path": [ + "layers", + "deletion", + "nonDeleteMappings" + ], + "type": "array" + }, + { + "path": [ + "layers", + "deletion", + "softDeletionTags" + ], + "type": [ + { + "$ref": "#/definitions/AndOrTagConfigJson" + }, + { + "type": "string" + } + ] + }, + { + "path": [ + "layers", + "deletion", + "neededChangesets" + ], + "type": "number" + }, + { + "path": [ + "layers", + "allowMove" + ], + "type": [ + { + "$ref": "#/definitions/default_3" + }, + { + "type": "boolean" + } + ] + }, + { + "path": [ + "layers", + "allowMove", + "enableImproveAccuracy" + ], + "type": "boolean" + }, + { + "path": [ + "layers", + "allowMove", + "enableRelocation" + ], + "type": "boolean" + }, + { + "path": [ + "layers", + "allowSplit" + ], + "type": "boolean" + }, + { + "path": [ + "layers", + "units" + ], + "type": "array" + }, + { + "path": [ + "layers", + "units", + "appliesToKey" + ], + "type": "array" + }, + { + "path": [ + "layers", + "units", + "eraseInvalidValues" + ], + "type": "boolean" + }, + { + "path": [ + "layers", + "units", + "applicableUnits" + ], + "type": "array" + }, + { + "path": [ + "layers", + "units", + "applicableUnits", + "canonicalDenomination" + ], + "type": "string" + }, + { + "path": [ + "layers", + "units", + "applicableUnits", + "canonicalDenominationSingular" + ], + "type": "string" + }, + { + "path": [ + "layers", + "units", + "applicableUnits", + "alternativeDenomination" + ], + "type": "array" + }, + { + "path": [ + "layers", + "units", + "applicableUnits", + "human" + ] + }, + { + "path": [ + "layers", + "units", + "applicableUnits", + "humanSingular" + ] + }, + { + "path": [ + "layers", + "units", + "applicableUnits", + "prefix" + ], + "type": "boolean" + }, + { + "path": [ + "layers", + "units", + "applicableUnits", + "default" + ], + "type": "boolean" + }, + { + "path": [ + "layers", + "syncSelection" + ], + "type": "string" + }, + { + "path": [ + "layers", + "hideTagRenderingsWithLabels" + ], + "type": "array" + }, + { + "path": [ + "clustering" + ], + "type": [ + { + "type": "object", + "properties": { + "maxZoom": { + "description": "All zoom levels above 'maxzoom' are not clustered anymore.\nDefaults to 18", + "type": "number" + }, + "minNeededElements": { + "description": "The number of elements per tile needed to start clustering\nIf clustering is defined, defaults to 250", + "type": "number" + } + } + }, + { + "enum": [ + false + ], + "type": "boolean" + } + ] + }, + { + "path": [ + "clustering", + "maxZoom" + ], + "type": "number" + }, + { + "path": [ + "clustering", + "minNeededElements" + ], + "type": "number" + }, + { + "path": [ + "customCss" + ], + "type": "string" + }, + { + "path": [ + "hideFromOverview" + ], + "type": "boolean" + }, + { + "path": [ + "lockLocation" + ], + "type": [ + { + "type": "array", + "items": [ + { + "type": "array", + "items": [ + { + "type": "number" + }, + { + "type": "number" + } + ], + "minItems": 2, + "maxItems": 2 + }, + { + "type": "array", + "items": [ + { + "type": "number" + }, + { + "type": "number" + } + ], + "minItems": 2, + "maxItems": 2 + } + ], + "minItems": 2, + "maxItems": 2 + }, + { + "type": "array", + "items": { + "type": "array", + "items": { + "type": "number" + } + } + } + ] + }, + { + "path": [ + "enableUserBadge" + ], + "type": "boolean" + }, + { + "path": [ + "enableShareScreen" + ], + "type": "boolean" + }, + { + "path": [ + "enableMoreQuests" + ], + "type": "boolean" + }, + { + "path": [ + "enableLayers" + ], + "type": "boolean" + }, + { + "path": [ + "enableSearch" + ], + "type": "boolean" + }, + { + "path": [ + "enableAddNewPoints" + ], + "type": "boolean" + }, + { + "path": [ + "enableGeolocation" + ], + "type": "boolean" + }, + { + "path": [ + "enableBackgroundLayerSelection" + ], + "type": "boolean" + }, + { + "path": [ + "enableShowAllQuestions" + ], + "type": "boolean" + }, + { + "path": [ + "enableDownload" + ], + "type": "boolean" + }, + { + "path": [ + "enablePdfDownload" + ], + "type": "boolean" + }, + { + "path": [ + "enableNoteImports" + ], + "type": "boolean" + }, + { + "path": [ + "overpassUrl" + ], + "type": [ + { + "type": "array", + "items": { + "type": "string" + } + }, + { + "type": "string" + } + ] + }, + { + "path": [ + "overpassTimeout" + ], + "type": "number" + } +] \ No newline at end of file diff --git a/assets/svg/add.svg b/assets/svg/add.svg index dbd09da280..e0ec8b41a0 100644 --- a/assets/svg/add.svg +++ b/assets/svg/add.svg @@ -1,288 +1,9 @@ - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + \ No newline at end of file diff --git a/assets/svg/addSmall.svg b/assets/svg/addSmall.svg index 252e5c1d04..91d6a9156d 100644 --- a/assets/svg/addSmall.svg +++ b/assets/svg/addSmall.svg @@ -1,282 +1,7 @@ - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + \ No newline at end of file diff --git a/assets/svg/add_pin.svg b/assets/svg/add_pin.svg index f12debaebd..9963cbdf35 100644 --- a/assets/svg/add_pin.svg +++ b/assets/svg/add_pin.svg @@ -1,269 +1,6 @@ - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + \ No newline at end of file diff --git a/assets/svg/ampersand.svg b/assets/svg/ampersand.svg index 67a0a86f24..1b5cbf7d45 100644 --- a/assets/svg/ampersand.svg +++ b/assets/svg/ampersand.svg @@ -1,52 +1,6 @@ - - - - - - image/svg+xml - - - - - - - - + + + + + + \ No newline at end of file diff --git a/assets/svg/arrow-download.svg b/assets/svg/arrow-download.svg deleted file mode 100644 index b1f2ff8eaf..0000000000 --- a/assets/svg/arrow-download.svg +++ /dev/null @@ -1,5 +0,0 @@ - - - diff --git a/assets/svg/arrow-left-smooth.svg b/assets/svg/arrow-left-smooth.svg deleted file mode 100644 index d5bb1d8e49..0000000000 --- a/assets/svg/arrow-left-smooth.svg +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - - - - - - image/svg+xml - - - - - - - - - diff --git a/assets/svg/arrow-left-thin.svg b/assets/svg/arrow-left-thin.svg deleted file mode 100644 index 5eb76481bb..0000000000 --- a/assets/svg/arrow-left-thin.svg +++ /dev/null @@ -1,3 +0,0 @@ - - - diff --git a/assets/svg/arrow-right-smooth.svg b/assets/svg/arrow-right-smooth.svg deleted file mode 100644 index 4fec56311d..0000000000 --- a/assets/svg/arrow-right-smooth.svg +++ /dev/null @@ -1,75 +0,0 @@ - - - - - - - - - - - - - image/svg+xml - - - - - - - - - diff --git a/assets/svg/back.svg b/assets/svg/back.svg index 1f8d58f162..2536cfc299 100644 --- a/assets/svg/back.svg +++ b/assets/svg/back.svg @@ -1,76 +1,7 @@ - - - - - - - - - - - - - image/svg+xml - - - - - - - - + + + + + + + \ No newline at end of file diff --git a/assets/svg/blocked.svg b/assets/svg/blocked.svg index b552364073..4d2914f4cc 100644 --- a/assets/svg/blocked.svg +++ b/assets/svg/blocked.svg @@ -1,828 +1,196 @@ - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/assets/svg/bug.svg b/assets/svg/bug.svg index 604c223320..ac79e84e30 100644 --- a/assets/svg/bug.svg +++ b/assets/svg/bug.svg @@ -1,3 +1,6 @@ - - + + + + + \ No newline at end of file diff --git a/assets/svg/camera-plus.svg b/assets/svg/camera-plus.svg index 8122b555f3..38168e90d6 100644 --- a/assets/svg/camera-plus.svg +++ b/assets/svg/camera-plus.svg @@ -1,78 +1,9 @@ - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - + + + + + + + + + \ No newline at end of file diff --git a/assets/svg/cash.svg b/assets/svg/cash.svg new file mode 100644 index 0000000000..5f47efb1a9 --- /dev/null +++ b/assets/svg/cash.svg @@ -0,0 +1,7 @@ + + + + + Svg Vector Icons : http://www.onlinewebfonts.com/icon + + \ No newline at end of file diff --git a/assets/svg/checkbox-empty.svg b/assets/svg/checkbox-empty.svg index 3fd8d2a5a8..2cf245bf1a 100644 --- a/assets/svg/checkbox-empty.svg +++ b/assets/svg/checkbox-empty.svg @@ -1,3 +1,6 @@ - - - + + + + + + \ No newline at end of file diff --git a/assets/svg/checkbox-filled.svg b/assets/svg/checkbox-filled.svg index 72b6c093a6..1684232e41 100644 --- a/assets/svg/checkbox-filled.svg +++ b/assets/svg/checkbox-filled.svg @@ -1,4 +1,7 @@ - - - - + + + + + + + \ No newline at end of file diff --git a/assets/svg/checkmark.svg b/assets/svg/checkmark.svg index 6e5b5d61d7..34ae82a765 100644 --- a/assets/svg/checkmark.svg +++ b/assets/svg/checkmark.svg @@ -1,4 +1,6 @@ - - + + + + + \ No newline at end of file diff --git a/assets/svg/circle.svg b/assets/svg/circle.svg index e491b4a5de..2cfde629fa 100644 --- a/assets/svg/circle.svg +++ b/assets/svg/circle.svg @@ -1,14 +1,6 @@ - - - - + + + + + + \ No newline at end of file diff --git a/assets/svg/clock.svg b/assets/svg/clock.svg index ca87aa481a..afca6d9ad9 100644 --- a/assets/svg/clock.svg +++ b/assets/svg/clock.svg @@ -1,35 +1,7 @@ - - - - - - image/svg+xml - - - - - - - - - + + + + + + + \ No newline at end of file diff --git a/assets/svg/close.svg b/assets/svg/close.svg index 9ccf69a14b..d092683841 100644 --- a/assets/svg/close.svg +++ b/assets/svg/close.svg @@ -1,80 +1,7 @@ - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - + + + + + + + \ No newline at end of file diff --git a/assets/svg/compass.svg b/assets/svg/compass.svg index a6d3458e39..fd3d583e58 100644 --- a/assets/svg/compass.svg +++ b/assets/svg/compass.svg @@ -1,209 +1 @@ - - - - - - - image/svg+xml - - - - - - - N - S - - E - - W - - - NW - - - SW - - - NE - - - SE - - + \ No newline at end of file diff --git a/assets/svg/copyright.svg b/assets/svg/copyright.svg index 0483bef251..786af75a29 100644 --- a/assets/svg/copyright.svg +++ b/assets/svg/copyright.svg @@ -1,4 +1,6 @@ - - + + + + + \ No newline at end of file diff --git a/assets/svg/cross_bottom_right.svg b/assets/svg/cross_bottom_right.svg index a50f5d4088..0b4c0e2f84 100644 --- a/assets/svg/cross_bottom_right.svg +++ b/assets/svg/cross_bottom_right.svg @@ -1,84 +1,7 @@ - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - + + + + + + + \ No newline at end of file diff --git a/assets/svg/crosshair-blue-center.svg b/assets/svg/crosshair-blue-center.svg index 659ee29b35..15f86df086 100644 --- a/assets/svg/crosshair-blue-center.svg +++ b/assets/svg/crosshair-blue-center.svg @@ -1,99 +1,11 @@ - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - + + + + + + + + + + + \ No newline at end of file diff --git a/assets/svg/crosshair-blue.svg b/assets/svg/crosshair-blue.svg index 36d44e7b21..c2ba4364bc 100644 --- a/assets/svg/crosshair-blue.svg +++ b/assets/svg/crosshair-blue.svg @@ -1,102 +1,11 @@ - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - + + + + + + + + + + + \ No newline at end of file diff --git a/assets/svg/crosshair-empty.svg b/assets/svg/crosshair-empty.svg index 6a86341cfc..54528d8b0f 100644 --- a/assets/svg/crosshair-empty.svg +++ b/assets/svg/crosshair-empty.svg @@ -1,82 +1,7 @@ - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - + + + + + + + \ No newline at end of file diff --git a/assets/svg/crosshair-locked.svg b/assets/svg/crosshair-locked.svg index cbe335af57..6c528f58f4 100644 --- a/assets/svg/crosshair-locked.svg +++ b/assets/svg/crosshair-locked.svg @@ -1,105 +1,11 @@ - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - + + + + + + + + + + + \ No newline at end of file diff --git a/assets/svg/crosshair.svg b/assets/svg/crosshair.svg index 0253a04990..a1d12eb224 100644 --- a/assets/svg/crosshair.svg +++ b/assets/svg/crosshair.svg @@ -1,58 +1,11 @@ - - - - - - - image/svg+xml - - - - - - - - - - - - - - + + + + + + + + + + + \ No newline at end of file diff --git a/assets/svg/delete_icon.svg b/assets/svg/delete_icon.svg index 6902451318..c9f1bc15f2 100644 --- a/assets/svg/delete_icon.svg +++ b/assets/svg/delete_icon.svg @@ -1,54 +1,6 @@ - - - - - - image/svg+xml - - - - - - - - + + + + + + \ No newline at end of file diff --git a/assets/svg/delete_not_allowed.svg b/assets/svg/delete_not_allowed.svg index e6e9d9322a..2f7913bc57 100644 --- a/assets/svg/delete_not_allowed.svg +++ b/assets/svg/delete_not_allowed.svg @@ -1,85 +1,10 @@ - - - - - - image/svg+xml - - - - - - - - - - - - - - - - + + + + + + + + + + \ No newline at end of file diff --git a/assets/svg/direction.svg b/assets/svg/direction.svg deleted file mode 100644 index 9e2f0e9110..0000000000 --- a/assets/svg/direction.svg +++ /dev/null @@ -1,30 +0,0 @@ - - - - - - image/svg+xml - - - - - - - - diff --git a/assets/svg/direction_masked.svg b/assets/svg/direction_masked.svg deleted file mode 100644 index af763459eb..0000000000 --- a/assets/svg/direction_masked.svg +++ /dev/null @@ -1,69 +0,0 @@ - - - - - - - - - Created by potrace 1.15, written by Peter Selinger 2001-2017 - - - image/svg+xml - - - - - - diff --git a/assets/svg/direction_outline.svg b/assets/svg/direction_outline.svg deleted file mode 100644 index e90b7da5b3..0000000000 --- a/assets/svg/direction_outline.svg +++ /dev/null @@ -1,71 +0,0 @@ - - - - - - - - - Created by potrace 1.15, written by Peter Selinger 2001-2017 - - - image/svg+xml - - - - - - - diff --git a/assets/svg/direction_stroke.svg b/assets/svg/direction_stroke.svg index 56889ecf92..521b40b0d3 100644 --- a/assets/svg/direction_stroke.svg +++ b/assets/svg/direction_stroke.svg @@ -1,104 +1,9 @@ - - - - - - - - - Created by potrace 1.15, written by Peter Selinger 2001-2017 - - - image/svg+xml - - - - - - - - - - - - + + + + + + + + + \ No newline at end of file diff --git a/assets/svg/down.svg b/assets/svg/down.svg deleted file mode 100644 index 0f1acab6bf..0000000000 --- a/assets/svg/down.svg +++ /dev/null @@ -1,57 +0,0 @@ - - - - - - image/svg+xml - - - - - - - - - - diff --git a/assets/svg/download.svg b/assets/svg/download.svg index 70a7408498..95998b9296 100644 --- a/assets/svg/download.svg +++ b/assets/svg/download.svg @@ -1,68 +1,6 @@ - - - -image/svg+xml - - - - - - - - - + + + + + \ No newline at end of file diff --git a/assets/svg/envelope.svg b/assets/svg/envelope.svg index 4605a660bd..1e324366a1 100644 --- a/assets/svg/envelope.svg +++ b/assets/svg/envelope.svg @@ -1,46 +1,10 @@ - - - - - - image/svg+xml - - - - - - - - - - - - + + + + + + + + + + \ No newline at end of file diff --git a/assets/svg/eye.svg b/assets/svg/eye.svg new file mode 100644 index 0000000000..0321ac0e71 --- /dev/null +++ b/assets/svg/eye.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/assets/svg/filter.svg b/assets/svg/filter.svg index af566bcbd0..a4448913e4 100644 --- a/assets/svg/filter.svg +++ b/assets/svg/filter.svg @@ -1,55 +1,6 @@ - - - - - - image/svg+xml - - - - - - - - + + + + + + \ No newline at end of file diff --git a/assets/svg/gear.svg b/assets/svg/gear.svg index 6f7cb65655..6d9fba7176 100644 --- a/assets/svg/gear.svg +++ b/assets/svg/gear.svg @@ -1,5 +1,7 @@ - - - + + + + + + \ No newline at end of file diff --git a/assets/svg/gender_bi.svg b/assets/svg/gender_bi.svg index 033f83fadb..5e09e2fe87 100644 --- a/assets/svg/gender_bi.svg +++ b/assets/svg/gender_bi.svg @@ -1,14 +1,6 @@ - -Created with Fabric.js 1.7.22 - - - - - - - + + + + + \ No newline at end of file diff --git a/assets/svg/gender_female.svg b/assets/svg/gender_female.svg index 57b9e57b7f..5d5e12ae8d 100644 --- a/assets/svg/gender_female.svg +++ b/assets/svg/gender_female.svg @@ -1,14 +1,6 @@ - -Created with Fabric.js 1.7.22 - - - - - - - + + + + + \ No newline at end of file diff --git a/assets/svg/gender_inter.svg b/assets/svg/gender_inter.svg index 00be6806e5..7aa50c45e6 100644 --- a/assets/svg/gender_inter.svg +++ b/assets/svg/gender_inter.svg @@ -1,14 +1,6 @@ - -Created with Fabric.js 1.7.22 - - - - - - - + + + + + \ No newline at end of file diff --git a/assets/svg/gender_male.svg b/assets/svg/gender_male.svg index ff408991d1..692e49c1f8 100644 --- a/assets/svg/gender_male.svg +++ b/assets/svg/gender_male.svg @@ -1,14 +1,6 @@ - -Created with Fabric.js 1.7.22 - - - - - - - + + + + + \ No newline at end of file diff --git a/assets/svg/gender_queer.svg b/assets/svg/gender_queer.svg index 7073042e46..3e742c2adf 100644 --- a/assets/svg/gender_queer.svg +++ b/assets/svg/gender_queer.svg @@ -1,14 +1,6 @@ - -Created with Fabric.js 1.7.22 - - - - - - - + + + + + \ No newline at end of file diff --git a/assets/svg/gender_trans.svg b/assets/svg/gender_trans.svg index 6d6d3d4f99..a41e21ce54 100644 --- a/assets/svg/gender_trans.svg +++ b/assets/svg/gender_trans.svg @@ -1,14 +1,6 @@ - -Created with Fabric.js 1.7.22 - - - - - - - + + + + + \ No newline at end of file diff --git a/assets/svg/generic_map.svg b/assets/svg/generic_map.svg new file mode 100644 index 0000000000..5dfe67b7e3 --- /dev/null +++ b/assets/svg/generic_map.svg @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/assets/svg/hand.svg b/assets/svg/hand.svg index 9e2c50c2c9..7a4525224e 100644 --- a/assets/svg/hand.svg +++ b/assets/svg/hand.svg @@ -1,29 +1,6 @@ - - - - - - image/svg+xml - - - - - - - - + + + + + + \ No newline at end of file diff --git a/assets/svg/help.svg b/assets/svg/help.svg index 7e9901e68b..7515e07381 100644 --- a/assets/svg/help.svg +++ b/assets/svg/help.svg @@ -1,15 +1,7 @@ - - - - - + + + + + + + \ No newline at end of file diff --git a/assets/svg/home.svg b/assets/svg/home.svg index 5b8e7d8f69..c151ae16eb 100644 --- a/assets/svg/home.svg +++ b/assets/svg/home.svg @@ -1,7 +1,6 @@ - - - - + + + + + \ No newline at end of file diff --git a/assets/svg/home_white_bg.svg b/assets/svg/home_white_bg.svg deleted file mode 100644 index 96d62bcb41..0000000000 --- a/assets/svg/home_white_bg.svg +++ /dev/null @@ -1,29 +0,0 @@ - -image/svg+xml - - - - \ No newline at end of file diff --git a/assets/svg/invalid.svg b/assets/svg/invalid.svg new file mode 100644 index 0000000000..4b913ae581 --- /dev/null +++ b/assets/svg/invalid.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/svg/layers.svg b/assets/svg/layers.svg index 4bdc0487bd..0fc110faaa 100644 --- a/assets/svg/layers.svg +++ b/assets/svg/layers.svg @@ -1,66 +1,8 @@ - - - - - - image/svg+xml - - - - - - - - - - - + + + + + + + + \ No newline at end of file diff --git a/assets/svg/layersAdd.svg b/assets/svg/layersAdd.svg deleted file mode 100644 index ff0535d1fe..0000000000 --- a/assets/svg/layersAdd.svg +++ /dev/null @@ -1,299 +0,0 @@ - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/assets/svg/length-crosshair.svg b/assets/svg/length-crosshair.svg index ce45f5ca4a..fe2cd33625 100644 --- a/assets/svg/length-crosshair.svg +++ b/assets/svg/length-crosshair.svg @@ -1,114 +1,12 @@ - - - - - - Created by potrace 1.15, written by Peter Selinger 2001-2017 - - - image/svg+xml - - - - - - - - - - - - - - + + + + + + + + + + + + \ No newline at end of file diff --git a/assets/svg/liberapay.svg b/assets/svg/liberapay.svg index 0374269c9a..ce5b50b28b 100644 --- a/assets/svg/liberapay.svg +++ b/assets/svg/liberapay.svg @@ -1,10 +1,8 @@ - - - - - - - - - + + + + + + + + \ No newline at end of file diff --git a/assets/svg/license_info.json b/assets/svg/license_info.json index 1adcb7e908..47eda46781 100644 --- a/assets/svg/license_info.json +++ b/assets/svg/license_info.json @@ -71,54 +71,6 @@ "authors": [], "sources": [] }, - { - "path": "arrow-download.svg", - "license": "CC0", - "authors": [ - "Hannah Declerck" - ], - "sources": [] - }, - { - "path": "arrow-left-smooth.svg", - "license": "CC0", - "authors": [ - "Pieter Vander Vennet" - ], - "sources": [] - }, - { - "path": "arrow-left-smooth.svg", - "license": "CC0", - "authors": [ - "Pieter Vander Vennet" - ], - "sources": [] - }, - { - "path": "arrow-left-thin.svg", - "license": "CC0", - "authors": [ - "Hannah Declerck" - ], - "sources": [] - }, - { - "path": "arrow-right-smooth.svg", - "license": "CC0", - "authors": [ - "Pieter Vander Vennet" - ], - "sources": [] - }, - { - "path": "arrow-right-smooth.svg", - "license": "CC0", - "authors": [ - "Pieter Vander Vennet" - ], - "sources": [] - }, { "path": "back.svg", "license": "CC0", @@ -189,6 +141,16 @@ "https://commons.wikimedia.org/wiki/File:Camera_font_awesome.svg" ] }, + { + "path": "cash.svg", + "license": "CC-BY 3.0", + "authors": [ + "Online Web Fonts" + ], + "sources": [ + "https://www.onlinewebfonts.com/icon/464494" + ] + }, { "path": "checkbox-empty.svg", "license": "CC0", @@ -373,18 +335,6 @@ ], "sources": [] }, - { - "path": "direction.svg", - "license": "CC0; trivial", - "authors": [], - "sources": [] - }, - { - "path": "direction.svg", - "license": "CC0; trivial", - "authors": [], - "sources": [] - }, { "path": "direction_gradient.svg", "license": "CC0; trivial", @@ -397,38 +347,6 @@ "authors": [], "sources": [] }, - { - "path": "direction_masked.svg", - "license": "CC0", - "authors": [ - "Pieter Vander Vennet" - ], - "sources": [] - }, - { - "path": "direction_masked.svg", - "license": "CC0", - "authors": [ - "Pieter Vander Vennet" - ], - "sources": [] - }, - { - "path": "direction_outline.svg", - "license": "CC0", - "authors": [ - "Pieter Vander Vennet" - ], - "sources": [] - }, - { - "path": "direction_outline.svg", - "license": "CC0", - "authors": [ - "Pieter Vander Vennet" - ], - "sources": [] - }, { "path": "direction_stroke.svg", "license": "CC0", @@ -445,18 +363,6 @@ ], "sources": [] }, - { - "path": "down.svg", - "license": "CC0; trivial", - "authors": [], - "sources": [] - }, - { - "path": "down.svg", - "license": "CC0; trivial", - "authors": [], - "sources": [] - }, { "path": "download.svg", "license": "CC0", @@ -487,6 +393,16 @@ "authors": [], "sources": [] }, + { + "path": "eye.svg", + "license": "CC-BY-SA 3.0 Unported", + "authors": [ + "Dave Gandy" + ], + "sources": [ + "https://en.wikipedia.org/wiki/File:Eye_open_font_awesome.svg" + ] + }, { "path": "filter.svg", "license": "CC0", @@ -617,6 +533,16 @@ "https://www.iconpacks.net/free-icon-pack/gender-107.html" ] }, + { + "path": "generic_map.svg", + "license": "CC0", + "authors": [ + "Svg Repo" + ], + "sources": [ + "https://www.svgrepo.com/svg/22182/map" + ] + }, { "path": "hand.svg", "license": "CC0", @@ -660,23 +586,13 @@ ] }, { - "path": "home_white_bg.svg", - "license": "CC-BY-SA 3.0", + "path": "invalid.svg", + "license": "CC-BY 4.0", "authors": [ - "Timothy Miller" + "Twemoji" ], "sources": [ - "https://commons.wikimedia.org/wiki/File:Home-icon.svg" - ] - }, - { - "path": "home_white_bg.svg", - "license": "CC-BY-SA 3.0", - "authors": [ - "Timothy Miller" - ], - "sources": [ - "https://commons.wikimedia.org/wiki/File:Home-icon.svg" + "https://github.com/twitter/twemoji" ] }, { @@ -713,18 +629,6 @@ "authors": [], "sources": [] }, - { - "path": "layersAdd.svg", - "license": "CC0; trivial", - "authors": [], - "sources": [] - }, - { - "path": "layersAdd.svg", - "license": "CC0; trivial", - "authors": [], - "sources": [] - }, { "path": "length-crosshair.svg", "license": "CC0", @@ -921,6 +825,16 @@ ], "sources": [] }, + { + "path": "nfc_card.svg", + "license": "CC0", + "authors": [ + "Stijn Wens" + ], + "sources": [ + "https://wens.be/free-antwerpenize-bicycle-font" + ] + }, { "path": "no_checkmark.svg", "license": "CC0; trivial", @@ -934,33 +848,29 @@ "sources": [] }, { - "path": "or.svg", - "license": "CC0; trivial", + "path": "none.svg", + "license": "CC0", "authors": [], "sources": [] }, { - "path": "or.svg", - "license": "CC0; trivial", - "authors": [], + "path": "not_found.svg", + "license": "CC-BY 4.0", + "authors": [ + "Twemoji" + ], + "sources": [ + "https://github.com/twitter/twemoji" + ] + }, + { + "path": "note.svg", + "license": "CC0", + "authors": [ + "Pieter Vander Vennet" + ], "sources": [] }, - { - "path": "osm-copyright.svg", - "license": "logo; all rights reserved", - "authors": [], - "sources": [ - "https://www.OpenStreetMap.org" - ] - }, - { - "path": "osm-copyright.svg", - "license": "logo; all rights reserved", - "authors": [], - "sources": [ - "https://www.OpenStreetMap.org" - ] - }, { "path": "osm-logo-us.svg", "license": "Logo", @@ -997,6 +907,16 @@ "https://www.OpenStreetMap.org" ] }, + { + "path": "payment_card.svg", + "license": "CC0", + "authors": [ + " \tMaxi Koichi (maxixam)" + ], + "sources": [ + "https://commons.wikimedia.org/wiki/File:Credit_Card_-_The_Noun_Project.svg" + ] + }, { "path": "pencil.svg", "license": "MIT", @@ -1103,6 +1023,14 @@ ], "sources": [] }, + { + "path": "resolved.svg", + "license": "CC0", + "authors": [ + "Pieter Vander Vennet" + ], + "sources": [] + }, { "path": "ring.svg", "license": "CC0; trivial", @@ -1115,6 +1043,26 @@ "authors": [], "sources": [] }, + { + "path": "robot.svg", + "license": "CC-BY 4.0 International", + "authors": [ + "Font Awesome" + ], + "sources": [ + "https://commons.wikimedia.org/wiki/File:Font_Awesome_5_solid_robot.svg" + ] + }, + { + "path": "satellite.svg", + "license": "CC0", + "authors": [ + "SVG Repo" + ], + "sources": [ + "https://www.svgrepo.com/svg/80960/satellite" + ] + }, { "path": "scissors.svg", "license": "CC-BY 3.0", @@ -1171,6 +1119,26 @@ "authors": [], "sources": [] }, + { + "path": "smartphone.svg", + "license": "CC-BY 3.0", + "authors": [ + "To Uyen" + ], + "sources": [ + "https://commons.wikimedia.org/wiki/File:Smartphone_icon_-_Noun_Project_283536.svg" + ] + }, + { + "path": "speech_bubble.svg", + "license": "CC-BY 4.0", + "authors": [ + "Twemoji" + ], + "sources": [ + "https://github.com/twitter/twemoji" + ] + }, { "path": "square.svg", "license": "CC0; trivial", @@ -1262,9 +1230,7 @@ { "path": "teardrop_with_hole_green.svg", "license": "CC0", - "authors": [ - "Pieter Vander Vennet" - ], + "authors": [], "sources": [] }, { diff --git a/assets/svg/loading.svg b/assets/svg/loading.svg index d06aa4471c..7bb6275a1f 100644 --- a/assets/svg/loading.svg +++ b/assets/svg/loading.svg @@ -1,78 +1,7 @@ - - - - - - image/svg+xml - - - - - - - - - - - - + + + + + + + \ No newline at end of file diff --git a/assets/svg/location-empty.svg b/assets/svg/location-empty.svg index adf75bec19..e15d6f45f2 100644 --- a/assets/svg/location-empty.svg +++ b/assets/svg/location-empty.svg @@ -1,9 +1,6 @@ - - - - - - - + + + + + \ No newline at end of file diff --git a/assets/svg/location-refused.svg b/assets/svg/location-refused.svg index 264a83e236..20d0f2f1ed 100644 --- a/assets/svg/location-refused.svg +++ b/assets/svg/location-refused.svg @@ -1,40 +1,7 @@ - - - - - - image/svg+xml - - - - - - - - - - - - - + + + + + + + \ No newline at end of file diff --git a/assets/svg/location.svg b/assets/svg/location.svg index 7504ad7fb6..d289b6960c 100644 --- a/assets/svg/location.svg +++ b/assets/svg/location.svg @@ -1,59 +1,7 @@ - - - - - - image/svg+xml - - - - - - - - - + + + + + + + \ No newline at end of file diff --git a/assets/svg/location_locked.svg b/assets/svg/location_locked.svg index 17a76771f0..9d74a0a6d5 100644 --- a/assets/svg/location_locked.svg +++ b/assets/svg/location_locked.svg @@ -1,60 +1,7 @@ - - - - - - image/svg+xml - - - - - - - - - + + + + + + + \ No newline at end of file diff --git a/assets/svg/location_unlocked.svg b/assets/svg/location_unlocked.svg index 5bc2a8a82a..2aa0774036 100644 --- a/assets/svg/location_unlocked.svg +++ b/assets/svg/location_unlocked.svg @@ -1,58 +1,7 @@ - - - - - - image/svg+xml - - - - - - - - - + + + + + + + \ No newline at end of file diff --git a/assets/svg/logo.svg b/assets/svg/logo.svg index 0f79bad29a..b51870735b 100644 --- a/assets/svg/logo.svg +++ b/assets/svg/logo.svg @@ -1,296 +1,9 @@ - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + \ No newline at end of file diff --git a/assets/svg/logout.svg b/assets/svg/logout.svg index b68cff9ecd..35af5e5508 100644 --- a/assets/svg/logout.svg +++ b/assets/svg/logout.svg @@ -1,93 +1,9 @@ - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - + + + + + + + + + \ No newline at end of file diff --git a/assets/svg/mapillary.svg b/assets/svg/mapillary.svg index 3636c1b3fc..31d6f8b023 100644 --- a/assets/svg/mapillary.svg +++ b/assets/svg/mapillary.svg @@ -1,5 +1,6 @@ - - + + + + + \ No newline at end of file diff --git a/assets/svg/mapillary_black.svg b/assets/svg/mapillary_black.svg index 170532df6b..93f0d1dacf 100644 --- a/assets/svg/mapillary_black.svg +++ b/assets/svg/mapillary_black.svg @@ -1,57 +1,6 @@ - - - - - - image/svg+xml - - - - - - - - + + + + + + \ No newline at end of file diff --git a/assets/svg/min.svg b/assets/svg/min.svg index f9f588267c..e153377704 100644 --- a/assets/svg/min.svg +++ b/assets/svg/min.svg @@ -1,238 +1,6 @@ - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + \ No newline at end of file diff --git a/assets/svg/move-arrows.svg b/assets/svg/move-arrows.svg index d31f779ce6..ff0adf9704 100644 --- a/assets/svg/move-arrows.svg +++ b/assets/svg/move-arrows.svg @@ -1,114 +1,11 @@ - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - + + + + + + + + + + + \ No newline at end of file diff --git a/assets/svg/move.svg b/assets/svg/move.svg index 097261675f..56eb488d26 100644 --- a/assets/svg/move.svg +++ b/assets/svg/move.svg @@ -1,7 +1,6 @@ - - - - move - - - + + + + + + \ No newline at end of file diff --git a/assets/svg/move_confirm.svg b/assets/svg/move_confirm.svg index f38038b637..88b386a6ec 100644 --- a/assets/svg/move_confirm.svg +++ b/assets/svg/move_confirm.svg @@ -1,280 +1,8 @@ - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - move - - - - - - - + + + + + + + + \ No newline at end of file diff --git a/assets/svg/move_not_allowed.svg b/assets/svg/move_not_allowed.svg index ace1ddd2a3..a44e090710 100644 --- a/assets/svg/move_not_allowed.svg +++ b/assets/svg/move_not_allowed.svg @@ -1,284 +1,9 @@ - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - move - - - - - - - - + + + + + + + + + \ No newline at end of file diff --git a/assets/svg/nfc_card.svg b/assets/svg/nfc_card.svg new file mode 100644 index 0000000000..f7e89fabfd --- /dev/null +++ b/assets/svg/nfc_card.svg @@ -0,0 +1,34 @@ + + + + + + diff --git a/assets/svg/no_checkmark.svg b/assets/svg/no_checkmark.svg index 3199381509..7c6392c8d5 100644 --- a/assets/svg/no_checkmark.svg +++ b/assets/svg/no_checkmark.svg @@ -1,2 +1,4 @@ - + + + \ No newline at end of file diff --git a/assets/svg/none.svg b/assets/svg/none.svg new file mode 100644 index 0000000000..5adcc79f0a --- /dev/null +++ b/assets/svg/none.svg @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/assets/svg/not_found.svg b/assets/svg/not_found.svg new file mode 100644 index 0000000000..36763bb065 --- /dev/null +++ b/assets/svg/not_found.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/svg/note.svg b/assets/svg/note.svg new file mode 100644 index 0000000000..34daea0061 --- /dev/null +++ b/assets/svg/note.svg @@ -0,0 +1,46 @@ + + + + + + + + + diff --git a/assets/svg/or.svg b/assets/svg/or.svg deleted file mode 100644 index 20841f19be..0000000000 --- a/assets/svg/or.svg +++ /dev/null @@ -1,53 +0,0 @@ - - - - - - image/svg+xml - - - - - - - - diff --git a/assets/svg/osm-copyright.svg b/assets/svg/osm-copyright.svg deleted file mode 100644 index 42c1744d2f..0000000000 --- a/assets/svg/osm-copyright.svg +++ /dev/null @@ -1,115 +0,0 @@ - - diff --git a/assets/svg/osm-logo-us.svg b/assets/svg/osm-logo-us.svg index 21ada510e6..68523bc305 100644 --- a/assets/svg/osm-logo-us.svg +++ b/assets/svg/osm-logo-us.svg @@ -1,7 +1,8 @@ -WP", "condition": { diff --git a/assets/tagRenderings/questions.json b/assets/tagRenderings/questions.json index 4415089c4b..a61d9f2e4f 100644 --- a/assets/tagRenderings/questions.json +++ b/assets/tagRenderings/questions.json @@ -1,4 +1,5 @@ { + "id": "shared_questions", "questions": { "id": "questions" }, @@ -8,6 +9,9 @@ "export_as_gpx": { "render": "{export_as_gpx()}" }, + "export_as_geojson": { + "render": "{export_as_geojson()}" + }, "wikipedia": { "render": "{wikipedia():max-height:25rem}", "question": { @@ -17,7 +21,13 @@ "pt": "Qual é a entidade Wikidata correspondente?", "hu": "Mi a megfelelő Wikidata-elem?", "it": "Qual è l’elemento Wikidata corrispondente?", - "nb_NO": "Hva er respektivt Wikipedia-element?" + "nb_NO": "Hva er respektivt Wikipedia-element?", + "fr": "Quelle est l'entité Wikidata correspondante ?", + "ca": "Quina és la correspondent entitat a Wikidata?", + "sv": "Vad är den motsvarande Wikidata-enheten?", + "zh_Hant": "對應的維基資料項目是?", + "pl": "Jaki jest powiązany obiekt Wikidata?", + "ja": "対応するウィキデータのエンティティは何ですか?" }, "mappings": [ { @@ -29,7 +39,14 @@ "pt": "Ainda não foi vinculada nenhuma página da Wikipédia", "hu": "Még nincs Wikipédia-oldal belinkelve", "it": "Nessuna pagina Wikipedia è ancora stata collegata", - "nb_NO": "Ingen Wikipedia-side lenket enda" + "nb_NO": "Ingen Wikipedia-side lenket enda", + "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": "還沒有連結到維基百科頁面", + "ru": "Никакой страницы на Википедии не было прикреплено", + "pl": "Link do strony Wikipedii nie został jeszcze określony", + "ja": "ウィキペディアのページはまだリンクされていません" }, "hideInAnswer": true } @@ -47,26 +64,38 @@ }, "phone": { "question": { - "en": "What is the phone number of {name}?", - "nl": "Wat is het telefoonnummer van {name}?", - "fr": "Quel est le numéro de téléphone de {name} ?", - "de": "Was ist die Telefonnummer von {name}?", - "nb_NO": "Hva er telefonnummeret til {name}?", - "ru": "Какой номер телефона у {name}?", - "sv": "Vad är telefonnumret till {name}?", - "zh_Hant": "{name} 的電話號碼是什麼?", - "it": "Qual è il numero di telefono di {name}?", - "pt_BR": "Qual o número de telefone de {name}?", - "id": "Nomor telepon dari {name|?", - "pl": "Jaki jest numer telefonu do {name}?", - "pt": "Qual é o número de telefone de {name}?", - "eo": "Kio estas la telefonnumero de {name}?", - "hu": "Mi a telefonszáma ennek: {name}?" + "en": "What is the phone number of {title()}?", + "nl": "Wat is het telefoonnummer van {title()}?", + "fr": "Quel est le numéro de téléphone de {title()} ?", + "de": "Was ist die Telefonnummer von {title()}?", + "nb_NO": "Hva er telefonnummeret til {title()}?", + "ru": "Какой номер телефона у {title()}?", + "sv": "Vad är telefonnumret till {title()}?", + "zh_Hant": "{title()} 的電話號碼是什麼?", + "it": "Qual è il numero di telefono di {title()}?", + "pt_BR": "Qual o número de telefone de {title()}?", + "id": "Nomor telepon dari {title()}?", + "pl": "Jaki jest numer telefonu do {title()}?", + "pt": "Qual é o número de telefone de {title()}?", + "eo": "Kio estas la telefonnumero de {title()}?", + "hu": "Mi a telefonszáma ennek: {title()}?", + "ca": "Quin és el telèfon de {title()}?", + "ja": "{title()}の電話番号は?" }, "render": "{phone}", + "mappings": [ + { + "if": "contact:phone~*", + "then": "{contact:phone}", + "hideInAnswer": true + } + ], "freeform": { "key": "phone", - "type": "phone" + "type": "phone", + "addExtraTags": [ + "contact:phone=" + ] } }, "osmlink": { @@ -87,7 +116,13 @@ "pt": "Qual é o item correspondente na Wikipédia?", "hu": "Mi a megfelelő szócikk a Wikipédián?", "it": "Qual è il corrispondente elemento su Wikipedia?", - "nb_NO": "Hva er respektivt element på Wikipedia?" + "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": "維基百科上對應的項目是什麼?", + "fr": "Quel est l’élément Wikipédia correspondant ?", + "pl": "Jaki jest link do strony Wikipedii?", + "ja": "Wikipediaの該当項目は何ですか?" }, "mappings": [ { @@ -99,7 +134,13 @@ "pt": "Não vinculado à Wikipédia", "hu": "Nincs belinkelve a Wikipédiához", "it": "Non collegato a Wikipedia", - "nb_NO": "Ikke lenket med Wikipedia" + "nb_NO": "Ikke lenket med Wikipedia", + "fr": "Non lié avec Wikipedia", + "ca": "No enllaçat amb Viquipèdia", + "sv": "Inte länkad med Wikipedia", + "zh_Hant": "沒有連結到維基百科", + "pl": "Brak linku do strony Wikipedii", + "ja": "ウィキペディアと連動していない" } } ], @@ -111,51 +152,75 @@ "email": { "render": "{email}", "question": { - "nl": "Wat is het e-mailadres van {name}?", - "fr": "Quelle est l'adresse courriel de {name} ?", - "en": "What is the email address of {name}?", - "nb_NO": "Hva er e-postadressen til {name}?", - "ru": "Какой адрес электронной почты у {name}?", - "id": "Apa alamat surel dari {name}?", - "zh_Hant": "{name} 的電子郵件地址是什麼?", - "it": "Qual è l'indirizzo email di {name}?", - "de": "Was ist die Mail-Adresse von {name}?", - "pt_BR": "Qual o endereço de e-mail de {name}?", - "pl": "Jaki jest adres e-mail do {name}?", - "sv": "Vad är e-postadressen till {name}?", - "pt": "Qual é o endereço de e-mail de {name}?", - "eo": "Kio estas la retpoŝta adreso de {name}?", - "hu": "Mi a(z) {name} e-mail címe?" + "nl": "Wat is het e-mailadres van {title()}?", + "fr": "Quelle est l'adresse courriel de {title()} ?", + "en": "What is the email address of {title()}?", + "nb_NO": "Hva er e-postadressen til {title()}?", + "ru": "Какой адрес электронной почты у {title()}?", + "id": "Apa alamat surel dari {title()}?", + "zh_Hant": "{title()} 的電子郵件地址是什麼?", + "it": "Qual è l'indirizzo email di {title()}?", + "de": "Was ist die Mail-Adresse von {title()}?", + "pt_BR": "Qual o endereço de e-mail de {title()}?", + "pl": "Jaki jest adres e-mail do {title()}?", + "sv": "Vad är e-postadressen till {title()}?", + "pt": "Qual é o endereço de e-mail de {title()}?", + "eo": "Kio estas la retpoŝta adreso de {title()}?", + "hu": "Mi a(z) {title()} e-mail címe?", + "ca": "Quina és l'adreça de correu electrònic de {title()}?", + "ja": "{title()}のEメールアドレスは何ですか?" }, + "mappings": [ + { + "if": "contact:email~*", + "then": "{contact:email}", + "hideInAnswer": true + } + ], "freeform": { "key": "email", - "type": "email" + "type": "email", + "addExtraTags": [ + "contact:email=" + ] } }, "website": { "question": { - "en": "What is the website of {name}?", - "nl": "Wat is de website van {name}?", - "fr": "Quel est le site web de {name} ?", - "gl": "Cal é a páxina web de {name}?", - "nb_NO": "Hva er nettsiden til {name}?", - "ru": "Какой сайт у {name}?", - "id": "Apa situs web dari {name}?", - "zh_Hant": "{name} 網址是什麼?", - "it": "Qual è il sito web di {name}?", - "de": "Was ist die Website von {name}?", - "pt_BR": "Qual o site de {name}?", - "pl": "Jaka jest strona internetowa {name}?", - "sv": "Vad är webbplatsen för {name}?", - "pt": "Qual é o sítio web de {name}?", - "eo": "Kie estas la retejo de {name}?", - "hu": "Mi a weboldala ennek: {name}?" + "en": "What is the website of {title()}?", + "nl": "Wat is de website van {title()}?", + "fr": "Quel est le site web de {title()} ?", + "gl": "Cal é a páxina web de {title()}?", + "nb_NO": "Hva er nettsiden til {title()}?", + "ru": "Какой сайт у {title()}?", + "id": "Apa situs web dari {title()}?", + "zh_Hant": "{title()} 網址是什麼?", + "it": "Qual è il sito web di {title()}?", + "de": "Was ist die Website von {title()}?", + "pt_BR": "Qual o site de {title()}?", + "pl": "Jaka jest strona internetowa {title()}?", + "sv": "Vad är webbplatsen för {title()}?", + "pt": "Qual é o sítio web de {title()}?", + "eo": "Kie estas la retejo de {title()}?", + "hu": "Mi a weboldala ennek: {title()}?", + "ca": "Quina és la web de {title()}?", + "ja": "{title()}のウェブサイトは?" }, "render": "{website}", "freeform": { "key": "website", - "type": "url" - } + "type": "url", + "addExtraTags": [ + "contact:website=" + ] + }, + "mappings": [ + { + "if": "contact:website~*", + "then": "{contact:website}", + "hideInAnswer": true + } + ] }, "wheelchair-access": { "question": { @@ -167,7 +232,12 @@ "fr": "Est-ce que cet endroit est accessible en chaise roulante ?", "hu": "Akadálymentes-e ez a hely?", "it": "Questo luogo è accessibile con una sedia a rotelle?", - "nb_NO": "Er dette stedet tilgjengelig for rullestoler?" + "nb_NO": "Er dette stedet tilgjengelig for rullestoler?", + "ca": "Aquest lloc és accessible amb cadira de rodes?", + "sv": "Är det här stället tillgängligt med en rullstol?", + "zh_Hant": "這個地方可以坐輪椅到達嗎?", + "pl": "Czy to miejsce jest dostępne dla osób na wózkach inwalidzkich?", + "ja": "車いすでのアクセスは可能ですか?" }, "mappings": [ { @@ -184,7 +254,14 @@ "de": "Dieser Ort ist speziell für Rollstuhlfahrer eingerichtet", "hu": "Ez a hely kifejezetten kerekesszékeseknek lett kialakítva", "it": "Questo luogo è stato adattato per favorire le persone in sedia a rotelle", - "nb_NO": "Dette stedet er spesielt tilpasset rullestolsbrukere" + "nb_NO": "Dette stedet er spesielt tilpasset rullestolsbrukere", + "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": "這個地方有特別設計給輪椅使用者", + "ru": "Это место подходит для людей на инвалидной коляске", + "pl": "W tym miejscu zainstalowane zostały udogodnienia dla osób na wózkach inwalidzkich", + "ja": "この場所は、車椅子の方のための特別仕様になっています" } }, { @@ -201,7 +278,14 @@ "de": "Dieser Ort ist mit einem Rollstuhl leicht zu erreichen", "hu": "Ez a hely könnyedén elérhető kerekesszékkel", "it": "Questo luogo è facilmente raggiungibile con una sedia a rotelle", - "nb_NO": "Dette stedet kan enkelt besøkes med rullestol" + "nb_NO": "Dette stedet kan enkelt besøkes med rullestol", + "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": "這個地方坐輪椅很容易到達", + "ru": "До этого места легко добраться на инвалидной коляске", + "pl": "To miejsce jest łatwo dostępne dla osób na wózkach inwalidzkich", + "ja": "この場所は、車いすで簡単に行くことができます" } }, { @@ -219,7 +303,13 @@ "fr": "Il est possible d'accéder à cet endroit en chaise roulante, mais ce n'est pas facile", "hu": "Ez a hely ugyan elérhető kerekesszékkel, de nehezen", "it": "È possibile raggiungere questo luogo con una sedia a rotella ma non è semplice", - "nb_NO": "Det er mulig å besøke dette stedet i rullestol, men det er ikke lett" + "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": "這個地方可以坐輪椅到達,但並不容易", + "ru": "До этого места можно добраться, но не просто", + "pl": "To miejsce jest dostępne dla osób na wózkach inwalidzkich, ale z pewnymi trudnościami", + "ja": "車いすでこの場所まで行くことは可能ですが、簡単ではありません" } }, { @@ -237,7 +327,12 @@ "fr": "Cet endroit n'est pas accessible en chaise roulante", "hu": "Ez a hely kerekesszékkel elérhetetlen", "it": "Questo luogo non è accessibile con una sedia a rotelle", - "nb_NO": "Dette stedet er ikke tilgjengelig for besøk med rullestol" + "nb_NO": "Dette stedet er ikke tilgjengelig for besøk med rullestol", + "ca": "Aquest lloc no és accessible amb cadira de rodes", + "sv": "Den här platsen kan inte nås med en rullstol", + "zh_Hant": "輪椅無法到達這個地方", + "pl": "To miejsce jest niedostępne dla osób na wózkach inwalidzkich", + "ja": "この場所は車いすでは行けません" } } ] @@ -251,7 +346,13 @@ "fr": "Est-ce que les chiens sont admis ici ?", "hu": "Be lehet-e vinni kutyát ebbe az üzletbe?", "it": "I cani sono ammessi in quest’attività?", - "nb_NO": "Tillates hunder i denne forretningen?" + "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": "這間商業空間是否允許犬隻?", + "ru": "Впускают ли собак в это здание?", + "pl": "Czy w tej firmie psy są dozwolone?", + "ja": "犬を飼うことができますか?" }, "mappings": [ { @@ -265,7 +366,15 @@ "eo": "Hundoj estas permesataj", "hu": "Kutya bevihető", "it": "Cani ammessi", - "nb_NO": "Hunder tillates" + "nb_NO": "Hunder tillates", + "ca": "S'accepten gossos", + "ru": "Собаки разрешены", + "sv": "Hundar tillåts", + "zh_Hant": "允許犬隻", + "id": "Anjing diperbolehkan", + "pl": "Psy dozwolone", + "ja": "ペット同伴可能", + "es": "Se permiten perros" } }, { @@ -275,11 +384,19 @@ "nl": "honden zijn niet toegelaten", "pt": "Os cães não são permitidos", "de": "Hunde sind nicht erlaubt", - "fr": "Les chiens ne sont pas admis", + "fr": "Chiens non admis", "eo": "Hundoj estas malpermesataj", "hu": "Kutya nem vihető be", "it": "I cani non sono ammessi", - "nb_NO": "Hunder tillates ikke" + "nb_NO": "Hunder tillates ikke", + "ca": "No s'accepten gossos", + "sv": "Hundar tillåts inte", + "zh_Hant": "允許犬隻", + "pl": "Psy nie dozwolone", + "ru": "С собаками не впускают", + "id": "Anjing tidak diperbolehkan", + "ja": "ペット同伴不可", + "es": "No se permiten perros" } }, { @@ -292,7 +409,14 @@ "fr": "Les chiens sont admis, mais ils doivent être tenus en laisse", "hu": "Kutya bevihető, de csak pórázon", "it": "Cani ammessi ma solo se tenuti al guinzaglio", - "nb_NO": "Hunder tillates, men de må være i bånd" + "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": "允許犬隻,但需要掛牽繩", + "ru": "Собак впускают, но на поводке", + "id": "Anjing diperbolehkan, tetapi mereka harus diikat", + "pl": "Psy dozwolone, ale muszą być na smyczy", + "ja": "ペット同伴可能。ただしリード着用" } }, { @@ -305,7 +429,13 @@ "fr": "Les chiens sont admis et peuvent circuler librement", "hu": "Kutya bevihető és szabadon szaladgálhat", "it": "I cani sono ammessi e possono andare in giro liberamente", - "nb_NO": "Hunder tillates og kan gå fritt" + "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": "允許犬隻而且可以自由跑動", + "ru": "Собак свободно впускают", + "pl": "Psy dozwolone i mogą biegać bez ograniczeń", + "ja": "犬同伴可能、自由に走り回れる" } } ] @@ -323,7 +453,12 @@ "pl": "Czy jest jeszcze coś istotnego, czego nie mogłeś podać w poprzednich pytaniach? Dodaj to tutaj.
Nie powtarzaj już podanych faktów", "pt_BR": "Ainda há algo de relevante que não pôde dar nas perguntas anteriores? Adicione aqui.
Não repita fatos já declarados", "pt": "Ainda há algo de relevante que não tenha podido dar nas perguntas anteriores? Adicione-o aqui.
Não repita factos já declarados", - "hu": "Van-e még valami lényeges, amit nem tudott megadni az előző kérdésekben? Itt megteheti.
Ne ismételjen meg már megadott tényeket" + "hu": "Van-e még valami lényeges, amit nem tudott megadni az előző kérdésekben? Itt megteheti.
Ne ismételjen meg már megadott tényeket", + "ca": "Hi ha quelcom rellevant que no t'hem preguntat? Afegeix-ho aquí.
No repeteixis informació que ja hi és", + "sv": "Finns det fortfarande någonting relevant som du inte kunde ge i de föregående frågorna? Lägg till det här.
Repetera inte redan angivna fakta", + "id": "Apakah masih ada sesuatu yang relevan yang tidak dapat Anda berikan dalam pertanyaan sebelumnya? Tambahkan di sini.
Jangan ulangi fakta yang sudah dinyatakan ", + "ja": "前の質問で伝えきれなかった関連事項がまだありますか?ここに追加してください。
今後表示しない", + "es": "¿Aún hay algo relevante que no ha encajado en las preguntas anteriores? Compártalo aquí.
No repita datos ya expresados" }, "render": "{description}", "freeform": { @@ -332,19 +467,21 @@ }, "opening_hours": { "question": { - "en": "What are the opening hours of {name}?", - "fr": "Quelles sont les horaires d'ouverture de {name} ?", - "de": "Was sind die Öffnungszeiten von {name}?", - "nl": "Wat zijn de openingstijden van {name}?", - "nb_NO": "Hva er åpningstidene for {name})", - "ru": "Какое время работы у {name}?", - "zh_Hant": "{name} 的開放時間是什麼?", - "it": "Quali sono gli orari di apertura di {name}?", - "pt_BR": "Qual o horário de funcionamento de {name}?", - "pl": "Jakie są godziny otwarcia {name}?", - "sv": "Vilka är öppettiderna för {name}?", - "pt": "Qual é o horário de funcionamento de {name}?", - "hu": "Mikor van nyitva ez: {name}?" + "en": "What are the opening hours of {title()}?", + "fr": "Quelles sont les horaires d'ouverture de {title()} ?", + "de": "Was sind die Öffnungszeiten von {title()}?", + "nl": "Wat zijn de openingstijden van {title()}?", + "nb_NO": "Hva er åpningstidene for {title()})", + "ru": "Какое время работы у {title()}?", + "zh_Hant": "{title()} 的開放時間是什麼?", + "it": "Quali sono gli orari di apertura di {title()}?", + "pt_BR": "Qual o horário de funcionamento de {title()}?", + "pl": "Jakie są godziny otwarcia {title()}?", + "sv": "Vilka är öppettiderna för {title()}?", + "pt": "Qual é o horário de funcionamento de {title()}?", + "hu": "Mikor van nyitva ez: {title()}?", + "ca": "Quin és l'horari d'obertura de {title()}?", + "ja": "{title()}の営業時間は?" }, "render": { "de": "

Öffnungszeiten

{opening_hours_table(opening_hours)}", @@ -360,7 +497,9 @@ "sv": "

Öppettider

{opening_hours_table(opening_hours)}", "pt": "

Horário de funcionamento

{opening_hours_table(opening_hours)}", "eo": "

Malfermitaj horoj

{opening_hours_table(opening_hours)}", - "hu": "

Nyitva tartás

{opening_hours_table(opening_hours)}" + "hu": "

Nyitva tartás

{opening_hours_table(opening_hours)}", + "ca": "

Horari d'obertura

{opening_hours_table(opening_hours)}", + "ja": "

営業時間

{opening_hours_table(opening_hours)}" }, "freeform": { "key": "opening_hours", @@ -371,34 +510,79 @@ "#": "service:socket describes if a pub, restaurant or café offers electricity to their customers.", "question": { "en": "Does this amenity have electrical outlets, available to customers when they are inside?", - "nl": "Zijn er stekkers beschikbaar voor klanten die binnen zitten?" + "nl": "Zijn er stekkers beschikbaar voor klanten die binnen zitten?", + "pt": "Esta infraestrutura tem tomadas elétricas, disponíveis para os clientes quando estão no interior?", + "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": "這個便利設施有電器設備,能給客戶使用嗎?", + "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 ?", + "pl": "Czy w tym przybytku znajdują się gniazdka elektryczne, gdzie klienci mogą naładować swoje urządzenia?", + "ja": "このアメニティにはコンセントがあり、お客様が店内にいるときにも利用できますか?" }, "mappings": [ { "then": { "en": "There are plenty of domestic sockets available to customers seated indoors, where they can charge their electronics", - "nl": "Er zijn binnen veel stekkers beschikbaar voor klanten die electronica wensen op te laden" + "nl": "Er zijn binnen veel stekkers beschikbaar voor klanten die electronica wensen op te laden", + "pt": "Há muitas tomadas elétricas disponíveis para clientes sentados no interior, onde estes podem carregar os seus dispositivos eletrónicos", + "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": "這邊的客戶座位有不少個室內插座,而且可以為電器充電", + "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", + "pl": "W budynku znajduje się wiele gniazdek elektrycznych, gdzie klienci mogą naładować swoje urządzenia", + "ja": "屋内の席に座っているお客様には、家庭用コンセントがたくさん用意されており、そこで電子機器を充電することができます" }, "if": "service:electricity=yes" }, { "then": { "en": "There are a few domestic sockets available to customers seated indoors, where they can charge their electronics", - "nl": "Er zijn binnen enkele stekkers beschikbaar voor klanten die electronica wensen op te laden" + "nl": "Er zijn binnen enkele stekkers beschikbaar voor klanten die electronica wensen op te laden", + "pt": "Há algumas tomadas elétricas disponíveis para clientes sentados no interior, onde estes podem carregar os seus dispositivos eletrónicos", + "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": "這邊客戶座位有一些室內插座,可以為電器充電", + "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", + "pl": "W budynku znajduje się kilka gniazdek elektrycznych, gdzie klienci mogą naładować swoje urządzenia", + "ja": "屋内の席に座ったお客様が充電できるよう、コンセントがいくつか用意されています" }, "if": "service:electricity=limited" }, { "then": { "en": "There are no sockets available indoors to customers, but charging might be possible if the staff is asked", - "nl": "Er zijn binnen geen stekkers beschikbaar, maar electronica opladen kan indien men dit aan het personeel vraagt" + "nl": "Er zijn binnen geen stekkers beschikbaar, maar electronica opladen kan indien men dit aan het personeel vraagt", + "fr": "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", + "pt": "Não há tomadas elétricas disponíveis para clientes sentados no interior, mas pode-se pedir aos funcionários para carregar dispositivos eletrónicos", + "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": "這邊沒有給客戶用的插座,因此可能需要詢問員工是否能充電", + "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", + "pl": "W budynku nie ma gniazdek elektrycznych dostępnych dla klientów, ale mogą zostać one udostępnione po spytaniu obsługi", + "ja": "屋内にはコンセントがありませんが、スタッフに声をかければ充電できるかもしれません" }, "if": "service:electricity=ask" }, { "then": { "en": "There are a no domestic sockets available to customers seated indoors", - "nl": "Er zijn binnen geen stekkers beschikbaar" + "nl": "Er zijn binnen geen stekkers beschikbaar", + "fr": "Il n'y a pas de prises secteur disponibles pour les clients assis à l'intérieur", + "pt": "Não há tomadas elétricas disponíveis para clientes sentados no interior", + "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": "這裡客戶座位沒有室內插座", + "hu": "A belső térben ülő ügyfeleknek nem áll rendelkezésére konnektor", + "pl": "W budynku nie ma gniazdek elektrycznych dostępnych dla klientów", + "ja": "屋内の席には、家庭用コンセントはありません" }, "if": "service:electricity=no" } @@ -415,13 +599,20 @@ "fr": "Quelles sont les méthodes de paiement acceptées ici ?", "hu": "Milyen fizetési módokat fogadnak el itt?", "it": "Quali metodi di pagamento sono accettati qui?", - "nb_NO": "Hvilke betalingsmetoder godtas her?" + "nb_NO": "Hvilke betalingsmetoder godtas her?", + "ca": "Quins mètodes de pagament s'accepten aquí?", + "sv": "Vilka betalningsmetoder accepteras här?", + "zh_Hant": "這邊接受那種付款方式?", + "pl": "Jakie metody płatności są tutaj dostępne?", + "ru": "Какие способы оплаты здесь принимают?", + "ja": "どのような支払い方法が可能ですか?" }, "multiAnswer": true, "mappings": [ { "if": "payment:cash=yes", "ifnot": "payment:cash=no", + "icon": "./assets/svg/cash.svg", "then": { "en": "Cash is accepted here", "nl": "Cash geld wordt hier aanvaard", @@ -432,12 +623,19 @@ "fr": "Paiement en liquide accepté", "hu": "Itt készpénzzel is lehet fizetni", "it": "I contanti sono accettati", - "nb_NO": "Kontanter godtas her" + "nb_NO": "Kontanter godtas her", + "ca": "S'accepten diners", + "sv": "Pengar accepteras här", + "zh_Hant": "這邊接受現金", + "pl": "Płatność gotówkowa jest tutaj dostępna", + "ru": "Здесь принимают наличными", + "ja": "現金利用可能" } }, { "if": "payment:cards=yes", "ifnot": "payment:cards=no", + "icon": "./assets/svg/payment_card.svg", "then": { "en": "Payment cards are accepted here", "nl": "Betalen met bankkaarten kan hier", @@ -448,11 +646,46 @@ "fr": "Paiement par carte accepté", "hu": "Itt fizetőkártyákkal is lehet fizetni", "it": "I pagamenti con la carta sono accettati", - "nb_NO": "Betalingskort godtas her" + "nb_NO": "Betalingskort godtas her", + "ca": "S'accepten targetes de crèdit", + "sv": "Betalningskort accepteras här", + "zh_Hant": "這邊接受現金卡", + "pl": "Płatność kartą jest tutaj dostępna", + "ru": "Здесь принимают банковские карты", + "ja": "お支払いはこちらで承ります" } } ] }, + "payment-options-advanced": { + "builtin": "payment-options", + "override": { + "mappings+": [ + { + "if": "payment:app=yes", + "ifnot": "payment:app=no", + "icon": "./assets/svg/smartphone.svg", + "then": { + "en": "Payment is done using a dedicated app", + "nl": "Betalen via een app van het netwerk", + "hu": "Fizetés erre a célra szolgáló alkalmazással", + "zh_Hant": "使用專用應用程式付款" + } + }, + { + "if": "payment:membership_card=yes", + "ifnot": "payment:membership_card=no", + "icon": "./assets/svg/nfc_card.svg", + "then": { + "en": "Payment is done using a membership card", + "nl": "Betalen via een lidkaart van het netwerk", + "hu": "Fizetési tagsági kártyával", + "zh_Hant": "使用會員卡付款" + } + } + ] + } + }, "last_edit": { "#": "Gives some metainfo about the last edit and who did edit it - rendering only", "condition": "_last_edit:contributor~*", @@ -475,7 +708,10 @@ "pt": "Em que nível se encontra este elemento?", "id": "Pada tingkat apa fitur ini diletakkan?", "hu": "Melyik szinten található ez a létesítmény?", - "it": "A quale piano si trova questo elemento?" + "it": "A quale piano si trova questo elemento?", + "ca": "A quina planta està situat aquest element?", + "sv": "På vilken nivå finns den här funktionen?", + "ja": "この機能は何階にあるのでしょうか?" }, "render": { "en": "Located on the {level}th floor", @@ -489,8 +725,10 @@ "sv": "Ligger på {level}:e våningen", "pt": "Está no {level}º andar", "eo": "En la {level}a etaĝo", - "hu": "{level}. emeleten található", - "it": "Si trova al piano numero {level}" + "hu": "A(z) {level}. emeleten", + "it": "Si trova al piano numero {level}", + "ca": "Situat a la planta {level}", + "ja": "{level}階にあります" }, "freeform": { "key": "level", @@ -510,9 +748,11 @@ "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" + "nb_NO": "Under bakken", + "ca": "Situat a planta subterrani", + "ja": "地下にあります" }, "hideInAnswer": true }, @@ -530,9 +770,11 @@ "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" + "nb_NO": "På gateplan", + "ca": "Situat a planta zero", + "ja": "1階にあります" } }, { @@ -550,9 +792,11 @@ "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" + "nb_NO": "På gateplan", + "ca": "Situat a planta zero", + "ja": "1階にあります" } }, { @@ -570,9 +814,19 @@ "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" + "nb_NO": "I andre etasje", + "ca": "Situat a primera planta", + "ja": "1階にあります" + } + }, + { + "if": "level=-1", + "then": { + "en": "Located on the first basement level", + "nl": "Bevindt zich in de eerste kelderverdieping", + "zh_Hant": "位於地下一樓" } } ] diff --git a/assets/tagrenderingconfigmeta.json b/assets/tagrenderingconfigmeta.json new file mode 100644 index 0000000000..6f7b349c17 --- /dev/null +++ b/assets/tagrenderingconfigmeta.json @@ -0,0 +1,219 @@ +[ + { + "path": [], + "type": "object" + }, + { + "path": [ + "id" + ], + "type": "string" + }, + { + "path": [ + "group" + ], + "type": "string" + }, + { + "path": [ + "labels" + ], + "type": "array" + }, + { + "path": [ + "render" + ], + "typeHint": "rendered" + }, + { + "path": [ + "question" + ] + }, + { + "path": [ + "condition" + ], + "type": [ + { + "$ref": "#/definitions/AndOrTagConfigJson" + }, + { + "type": "string" + } + ] + }, + { + "path": [ + "freeform" + ], + "type": "object" + }, + { + "path": [ + "freeform", + "key" + ], + "type": "string" + }, + { + "path": [ + "freeform", + "type" + ], + "type": "string" + }, + { + "path": [ + "freeform", + "placeholder" + ] + }, + { + "path": [ + "freeform", + "helperArgs" + ], + "type": "array" + }, + { + "path": [ + "freeform", + "addExtraTags" + ], + "type": "array" + }, + { + "path": [ + "freeform", + "inline" + ], + "type": "boolean" + }, + { + "path": [ + "freeform", + "default" + ], + "type": "string" + }, + { + "path": [ + "multiAnswer" + ], + "type": "boolean" + }, + { + "path": [ + "mappings" + ], + "type": "array" + }, + { + "path": [ + "mappings", + "if" + ], + "type": [ + { + "$ref": "#/definitions/AndOrTagConfigJson" + }, + { + "type": "string" + } + ] + }, + { + "path": [ + "mappings", + "then" + ], + "typeHint": "rendered" + }, + { + "path": [ + "mappings", + "icon" + ], + "typeHint": "icon", + "type": [ + { + "type": "object", + "properties": { + "path": { + "description": "The path to the icon\nType: icon", + "type": "string" + }, + "class": { + "description": "A hint to mapcomplete on how to render this icon within the mapping.\nThis is translated to 'mapping-icon-', so defining your own in combination with a custom CSS is possible (but discouraged)", + "type": "string" + } + }, + "required": [ + "class", + "path" + ] + }, + { + "type": "string" + } + ] + }, + { + "path": [ + "mappings", + "icon", + "path" + ], + "typeHint": "icon", + "type": "string" + }, + { + "path": [ + "mappings", + "icon", + "class" + ], + "type": "string" + }, + { + "path": [ + "mappings", + "hideInAnswer" + ], + "type": [ + { + "$ref": "#/definitions/AndOrTagConfigJson" + }, + { + "type": [ + "string", + "boolean" + ] + } + ] + }, + { + "path": [ + "mappings", + "ifnot" + ], + "type": [ + { + "$ref": "#/definitions/AndOrTagConfigJson" + }, + { + "type": "string" + } + ] + }, + { + "path": [ + "mappings", + "addExtraTags" + ], + "type": "array" + } +] \ No newline at end of file diff --git a/assets/themes/aed/aed.json b/assets/themes/aed/aed.json index 78513e08bc..5c1a94ad62 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,26 +35,9 @@ "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", - "ca", - "es", - "fr", - "nl", - "de", - "hu", - "id", - "it", - "ru", - "ja", - "zh_Hant", - "nb_NO", - "sv", - "pl", - "pt_BR" - ], "version": "2020-08-29", "startLat": 0, "startLon": 0, diff --git a/assets/themes/aed/aed.svg b/assets/themes/aed/aed.svg index d82eb6f7c9..3ab3f88404 100644 --- a/assets/themes/aed/aed.svg +++ b/assets/themes/aed/aed.svg @@ -1,8 +1,8 @@ - - - - - - - - + + + + + + + + \ No newline at end of file diff --git a/assets/themes/aed/aed_brugge.json b/assets/themes/aed/aed_brugge.json index c71b6f3f0d..a0b5933e25 100644 --- a/assets/themes/aed/aed_brugge.json +++ b/assets/themes/aed/aed_brugge.json @@ -8,9 +8,6 @@ "description": { "nl": "Op deze kaart kan je informatie over AEDs vinden en verbeteren + een export van de brugse defibrillatoren" }, - "language": [ - "nl" - ], "version": "2021-05-16", "startLat": 51.25634, "startLon": 3.195682, @@ -18,7 +15,7 @@ "layers": [ "defibrillator", { - "id": "Brugge", + "id": "brugge", "name": "Brugse dataset", "source": { "osmTags": "Brugs volgnummer~*", @@ -26,12 +23,46 @@ }, "calculatedTags": [ "_closest_osm_aed=feat.closest('defibrillator')?.properties?.id", - "_closest_osm_aed_distance=feat.distanceTo(feat.properties._closest_osm_aed) * 1000", + "_closest_osm_aed_distance=feat.distanceTo(feat.properties._closest_osm_aed)", "_has_closeby_feature=Number(feat.properties._closest_osm_aed_distance) < 25 ? 'yes' : 'no'" ], "title": "AED in Brugse dataset", "tagRenderings": [ - "all_tags" + { + "id": "status", + "mappings": [ + { + "if": "status=oud", + "then": "
Dit datapunt is verouderd
" + } + ] + }, + { + "id": "has closeby", + "render": "
Er is al een AED gekend in de buurt
", + "condition": "_has_closeby_feature=yes" + }, + { + "id": "openbaar", + "render": "Bevindt zich in een openbaar gebouw: {Openbare AED Gebouw} (geen lokaal bekend)", + "condition": "Openbare AED Gebouw~*", + "mappings": [ + { + "if": "Lokaal AED~*", + "then": "Bevindt zich in een openbaar gebouw: {Openbare AED Gebouw} in lokaal {Lokaal AED}" + } + ] + }, + { + "id": "addr", + "#": "Yes, 'nummer' writes with three 'm's", + "render": "Het adres is {Straat} {Nummmer} {Bus}" + }, + { + "id": "oh", + "render": "De openingsuren zijn {OPENINGSUREN}", + "condition": "OPENINGSUREN~*" + } ], "mapRendering": [ { @@ -46,10 +77,10 @@ }, "iconSize": "20,20,center", "location": [ - "point" + "point", + "centroid" ] - }, - {} + } ] } ], diff --git a/assets/themes/artwork/artwork.json b/assets/themes/artwork/artwork.json index 86fe60be29..c7f4bd5b8f 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": "Открытая карта произведений искусства", @@ -22,28 +22,14 @@ "de": "Willkommen bei der Freien Kunst-Karte, einer Karte mit Statuen, Büsten, Grafitti, ... auf der ganzen Welt", "id": "Selamat datang di Open Artwork Map, peta untuk patung, grafiti, dan karya seni lain di seluruh dunia", "it": "Benvenuto/a sulla mappa libera dell’arte, una mappa delle statue, i busti, i graffiti e le altre realizzazioni artistiche di tutto il mondo", - "ru": "Добро пожаловать на Open Artwork Map, карту статуй, бюстов, граффити и других произведений искусства по всему миру", + "ru": "Добро пожаловать на открытую карта произведений искусства - карту статуй, бюстов, граффити и других произведений искусства по всему миру", "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 hozta a nyílt műalkotástérképen, a világ minden táján megtalálható szobrok, mellszobrok, graffitik és más műalkotások gyűjtőhelyén", + "pl": "Witaj w Open Artwork Map, mapie pomników, popierś, graffitti i innych dzieł sztuki z całego świata" }, - "language": [ - "en", - "nl", - "fr", - "de", - "hu", - "id", - "it", - "ru", - "ja", - "zh_Hant", - "sv", - "pl", - "es", - "nb_NO" - ], "icon": "./assets/themes/artwork/artwork.svg", "maintainer": "MapComplete", "startZoom": 12, diff --git a/assets/themes/artwork/artwork.svg b/assets/themes/artwork/artwork.svg index 868bc68c56..8dd4f697c7 100644 --- a/assets/themes/artwork/artwork.svg +++ b/assets/themes/artwork/artwork.svg @@ -1,71 +1,7 @@ - - - - - - - image/svg+xml - - - - - - - - - - - - - + + + + + + + \ No newline at end of file diff --git a/assets/themes/benches/bench_poi.svg b/assets/themes/benches/bench_poi.svg index 7df1d1aa43..8c02d12595 100644 --- a/assets/themes/benches/bench_poi.svg +++ b/assets/themes/benches/bench_poi.svg @@ -1,21 +1,16 @@ - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/assets/themes/benches/bench_public_transport.svg b/assets/themes/benches/bench_public_transport.svg index 550129349a..d8a6150205 100644 --- a/assets/themes/benches/bench_public_transport.svg +++ b/assets/themes/benches/bench_public_transport.svg @@ -1,21 +1,16 @@ - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/assets/themes/benches/benches.json b/assets/themes/benches/benches.json index 4aa4a6627e..7ed0d305e0 100644 --- a/assets/themes/benches/benches.json +++ b/assets/themes/benches/benches.json @@ -11,7 +11,8 @@ "zh_Hant": "長椅", "nb_NO": "Benker", "pt_BR": "Bancadas", - "id": "Bangku" + "id": "Bangku", + "hu": "Padok" }, "shortDescription": { "en": "A map of benches", @@ -23,7 +24,8 @@ "ja": "ベンチの地図", "zh_Hant": "長椅的地圖", "nb_NO": "Et benkekart", - "pt_BR": "Um mapa de bancadas" + "pt_BR": "Um mapa de bancadas", + "hu": "Padtérkép" }, "description": { "en": "This map shows all benches that are recorded in OpenStreetMap: Individual benches, and benches belonging to public transport stops or shelters. With an OpenStreetMap account, you can map new benches or edit details of existing benches.", @@ -33,21 +35,9 @@ "it": "Questa mappa mostra tutte le panchine che sono state aggiunte su OpenStreetMap: panchine individuali e quelle alle fermate del trasporto pubblico o nei ripari. Se disponi di un account OpenStreetMap puoi mappare delle nuove panchine o modificare i dettagli di quelle esistenti.", "ru": "На этой карте показаны все скамейки, записанные в OpenStreetMap: отдельные скамейки, а также скамейки, относящиеся к остановкам общественного транспорта или навесам. Имея учётную запись OpenStreetMap, вы можете наносить на карту новые скамейки или редактировать информацию о существующих скамейках.", "ja": "このマップには、OpenStreetMapに記録されているすべてのベンチが表示されます。個々のベンチ、および公共交通機関の停留所または避難場所に属するベンチです。OpenStreetMapアカウントを使用すると、新しいベンチをマップしたり、既存のベンチの詳細を編集したりできます。", - "zh_Hant": "這份地圖顯示開放街圖上所有記錄的長椅:單獨的長椅,屬於大眾運輸站點或涼亭的長椅。只要有開放街圖帳號,你可以新增長椅或是編輯既有長椅的詳細內容。" + "zh_Hant": "這份地圖顯示開放街圖上所有記錄的長椅:單獨的長椅,屬於大眾運輸站點或涼亭的長椅。只要有開放街圖帳號,你可以新增長椅或是編輯既有長椅的詳細內容。", + "hu": "Ez a térkép megjeleníti az OpenStreetMap-en rögzített összes padot: egyes padokat, valamint tömegközlekedési megállókban vagy menedékhelyeken található padokat. OpenStreetMap-fiókkal Ön is felrajzolhat új padokat, vagy szerkesztheti a meglévő padok részleteit." }, - "language": [ - "en", - "de", - "fr", - "nl", - "it", - "ru", - "ja", - "zh_Hant", - "nb_NO", - "pt_BR", - "id" - ], "maintainer": "Florian Edelmann", "icon": "./assets/themes/benches/bench_poi.svg", "version": "2020-10-23", @@ -55,7 +45,6 @@ "startLon": 0, "startZoom": 1, "widenFactor": 1.5, - "socialImage": "", "layers": [ "bench", "bench_at_pt", diff --git a/assets/themes/bicycle_rental/bicycle_rental.json b/assets/themes/bicycle_rental/bicycle_rental.json new file mode 100644 index 0000000000..b26d1bf166 --- /dev/null +++ b/assets/themes/bicycle_rental/bicycle_rental.json @@ -0,0 +1,25 @@ +{ + "id": "bicycle_rental", + "title": { + "en": "Bicycle rental", + "nl": "Fietsverhuur" + }, + "shortDescription": { + "en": "A map with bicycle rental stations and bicycle rental shops", + "nl": "Een kaart met fietsverhuurpunten en fietsverhuurzaken" + }, + "description": { + "en": "On this map, you'll find the many bicycle rental stations as they are known by OpenStreetMap", + "nl": "Op deze kaart vind je verschillende fietsverhuurpunten en fietsverhuurzaken" + }, + "maintainer": "", + "icon": "./assets/themes/bicycle_rental/logo.svg", + "version": "0", + "startLat": 0, + "startLon": 0, + "startZoom": 1, + "widenFactor": 0.05, + "layers": [ + "bicycle_rental" + ] +} \ No newline at end of file diff --git a/assets/themes/bicycle_rental/license_info.json b/assets/themes/bicycle_rental/license_info.json new file mode 100644 index 0000000000..46d07e5162 --- /dev/null +++ b/assets/themes/bicycle_rental/license_info.json @@ -0,0 +1,24 @@ +[ + { + "path": "logo.svg", + "license": "CC0", + "authors": [ + "Toerisme Vlaanderen" + ], + "sources": [ + "https://toerismevlaanderen.be/pinjepunt", + "https://mapcomplete.osm.be/toerisme_vlaanderenn" + ] + }, + { + "path": "rental.svg", + "license": "CC0", + "authors": [ + "Toerisme Vlaanderen" + ], + "sources": [ + "https://toerismevlaanderen.be/pinjepunt", + "https://mapcomplete.osm.be/toerisme_vlaanderenn" + ] + } +] \ No newline at end of file diff --git a/assets/themes/bicycle_rental/logo.svg b/assets/themes/bicycle_rental/logo.svg new file mode 100644 index 0000000000..b66b2c214e --- /dev/null +++ b/assets/themes/bicycle_rental/logo.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/themes/bicycle_rental/rental.svg b/assets/themes/bicycle_rental/rental.svg new file mode 100644 index 0000000000..b66b2c214e --- /dev/null +++ b/assets/themes/bicycle_rental/rental.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/themes/bicyclelib/bicyclelib.json b/assets/themes/bicyclelib/bicyclelib.json index 8e5d817a15..b3ee810bf4 100644 --- a/assets/themes/bicyclelib/bicyclelib.json +++ b/assets/themes/bicyclelib/bicyclelib.json @@ -2,18 +2,6 @@ "id": "bicyclelib", "maintainer": "MapComplete", "version": "2020-08-29", - "language": [ - "en", - "nl", - "it", - "ru", - "ja", - "fr", - "zh_Hant", - "nb_NO", - "de", - "pt_BR" - ], "title": { "en": "Bicycle libraries", "nl": "Fietsbibliotheken", @@ -24,7 +12,9 @@ "zh_Hant": "單車圖書館", "nb_NO": "Sykkelbibliotek", "de": "Fahrradbibliothek", - "pt_BR": "Bibliotecas de bicicletas" + "pt_BR": "Bibliotecas de bicicletas", + "pl": "Wypożyczalnie rowerów", + "hu": "Kerékpárkönyvtárak" }, "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.", @@ -34,10 +24,10 @@ "ja": "自転車ライブラリは、少額の年間料金で自転車を借りられる場所です。注目すべきユースケースとしては、子供向けの自転車ライブラリで、子どもの成長にあわせて大きな自転車へ借り替えられます", "fr": "Une vélothèque est un endroit où on peut emprunter des vélos, souvent moyennant une petite somme annuelle. Un cas d'utilisation notable est celui des vélothèques pour les enfants, qui leur permettent de passer à un vélo plus grand quand ils sont trop grands pour leur vélo actuel", "zh_Hant": "單車圖書館是指每年支付小額費用,然後可以租用單車的地方。最有名的單車圖書館案例是給小孩的,能夠讓長大的小孩用目前的單車換成比較大的單車", - "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" + "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", + "hu": "A kerékpárkönyvtárak olyan helyek, ahol kerékpárokat lehet kölcsönözni, gyakran egy kis éves díj ellenében. Figyelemre méltó felhasználásuk a gyerekeknek szánt kerékpárkönyvtárak, amelyek segítségével nagyobb kerékpárra válthatnak, amikor jelenlegi kerékpárjukat kinőtték" }, "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 376c721b33..92a6c880e9 100644 --- a/assets/themes/bicyclelib/logo.svg +++ b/assets/themes/bicyclelib/logo.svg @@ -1,165 +1,7 @@ - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + \ No newline at end of file diff --git a/assets/themes/binoculars/binoculars.json b/assets/themes/binoculars/binoculars.json index e995fac965..fed6bcb982 100644 --- a/assets/themes/binoculars/binoculars.json +++ b/assets/themes/binoculars/binoculars.json @@ -6,7 +6,8 @@ "de": "Ferngläser", "it": "Binocoli", "nb_NO": "Kikkerter", - "zh_Hant": "望遠鏡" + "zh_Hant": "望遠鏡", + "hu": "Távcsövek" }, "shortDescription": { "en": "A map with fixed binoculars", @@ -14,23 +15,17 @@ "de": "Eine Karte mit festinstallierten Ferngläsern", "it": "Una cartina dei binocoli pubblici fissi", "nb_NO": "Et kart over fastmonterte kikkerter", - "zh_Hant": "固定望遠鏡的地圖" + "zh_Hant": "固定望遠鏡的地圖", + "hu": "Rögzített távcsövek (binokulárok) térképe" }, "description": { "en": "A map with binoculars fixed in place with a pole. It can typically be found on touristic locations, viewpoints, on top of panoramic towers or occasionally on a nature reserve.", "nl": "Een kaart met verrekijkers die op een vaste plaats zijn gemonteerd", "de": "Eine Karte mit festinstallierten Ferngläsern. Man findet sie typischerweise an touristischen Orten, Aussichtspunkten, auf Aussichtstürmen oder gelegentlich in einem Naturschutzgebiet.", "it": "Una cartina dei binocoli su un palo fissi in un luogo. Si trovano tipicamente nei luoghi turistici, nei belvedere, in cima a torri panoramiche oppure occasionalmente nelle riserve naturali.", - "zh_Hant": "固定一地的望遠鏡地圖,特別是能夠在旅遊景點、觀景點、城鎮環景點,或是自然保護區找到。" + "zh_Hant": "固定一地的望遠鏡地圖,特別是能夠在旅遊景點、觀景點、城鎮環景點,或是自然保護區找到。", + "hu": "Rúdra rögzített távcsövek térképe. Jellemzően turisztikailag érdekes, panorámás helyeken, kilátótornyok tetején vagy természetvédelmi területen találhatók." }, - "language": [ - "en", - "nl", - "de", - "it", - "nb_NO", - "zh_Hant" - ], "maintainer": "", "icon": "./assets/layers/binocular/telescope.svg", "version": "0", @@ -38,7 +33,6 @@ "startLon": 0, "startZoom": 1, "widenFactor": 1.5, - "socialImage": "", "layers": [ "binocular" ] diff --git a/assets/themes/bookcases/bookcase.svg b/assets/themes/bookcases/bookcase.svg index c0d00bfb5e..a49c40b27a 100644 --- a/assets/themes/bookcases/bookcase.svg +++ b/assets/themes/bookcases/bookcase.svg @@ -1,72 +1,7 @@ - - - - - - - image/svg+xml - - - - - - - - - - - - - + + + + + + + \ No newline at end of file diff --git a/assets/themes/bookcases/bookcases.json b/assets/themes/bookcases/bookcases.json index 252f510485..23c116e2b3 100644 --- a/assets/themes/bookcases/bookcases.json +++ b/assets/themes/bookcases/bookcases.json @@ -2,18 +2,6 @@ "id": "bookcases", "maintainer": "MapComplete", "version": "2020-08-29", - "language": [ - "en", - "nl", - "de", - "fr", - "ru", - "ja", - "zh_Hant", - "it", - "pt_BR", - "nb_NO" - ], "title": { "en": "Open Bookcase Map", "nl": "Open boekenruilkasten-kaart", @@ -24,20 +12,21 @@ "zh_Hant": "開放書架地圖", "it": "Mappa libera delle microbiblioteche", "pt_BR": "Abrir Mapa de Estantes", - "nb_NO": "Kart over åpne bokhyller" + "nb_NO": "Kart over åpne bokhyller", + "hu": "Könyvespolctérkép" }, "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.", "ru": "Общественный книжный шкаф - это небольшой уличный шкаф, коробка, старый телефонный аппарат или другие предметы, где хранятся книги. Каждый может положить или взять книгу. Цель этой карты - собрать все эти книжные шкафы. Вы можете обнаружить новые книжные шкафы поблизости и, имея бесплатный аккаунт OpenStreetMap, быстро добавить свои любимые книжные шкафы.", "ja": "公共の本棚とは、本が保管されている小さな街角のキャビネット、箱、古い電話のトランク、その他の物のことです。誰でも本を置いたり持ったりすることができます。このマップは、すべての公共の本棚を収集することを目的としています。近くで新しい本棚を見つけることができ、無料のOpenStreetMapアカウントを使えば、お気に入りの本棚を簡単に追加できます。", "zh_Hant": "公共書架是街邊箱子、盒子、舊的電話亭或是其他存放書本的物件,每一個人都能放置或拿取書本。這份地圖收集所有類型的書架,你可以探索你附近新的書架,同時也能用免費的開放街圖帳號來快速新增你最愛的書架。", - "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." + "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.", + "hu": "A nyilvános könyvespolc egy kis utcai szekrény, doboz, régi telefonfülke vagy más tárgy, ahol könyveket tárolnak. Bárki tehet rá vagy vihet el róla könyvet. Ez a térkép ezeket a könyvespolcokat kívánja összegyűjteni. Ha felfedezett egy új könyvespolcot a közelben, akkor egy ingyenes OpenStreetMap-fiókkal gyorsan fel is rajzolhatja a térképre." }, "icon": "./assets/themes/bookcases/bookcase.svg", - "socialImage": null, "startLat": 0, "startLon": 0, "startZoom": 1, diff --git a/assets/themes/buurtnatuur/buurtnatuur.json b/assets/themes/buurtnatuur/buurtnatuur.json index e331bdf604..991654c461 100644 --- a/assets/themes/buurtnatuur/buurtnatuur.json +++ b/assets/themes/buurtnatuur/buurtnatuur.json @@ -15,11 +15,8 @@ "descriptionTail": { "nl": "

Tips

  • Over groen ingekleurde gebieden weten we alles wat we willen weten.
  • Bij rood ingekleurde gebieden ontbreekt nog heel wat info: klik een gebied aan en beantwoord de vragen.
  • Je kan altijd een vraag overslaan als je het antwoord niet weet of niet zeker bent
  • Je kan altijd een foto toevoegen
  • Je kan ook zelf een gebied toevoegen door op de kaart te klikken
  • Open buurtnatuur.be op je smartphone om al wandelend foto's te maken en vragen te beantwoorden

De oorspronkelijke data komt van OpenStreetMap en je antwoorden worden daar bewaard.
Omdat iedereen vrij kan meewerken aan dit project, kunnen we niet garanderen dat er geen fouten opduiken.Kan je hier niet aanpassen wat je wilt, dan kan je dat zelf via OpenStreetMap.org doen. Groen kan geen enkele verantwoordelijkheid nemen over de kaart.

Je privacy is belangrijk. We tellen wel hoeveel gebruikers deze website bezoeken. We plaatsen een cookie waar geen persoonlijke informatie in bewaard wordt. Als je inlogt, komt er een tweede cookie bij met je inloggegevens.
" }, - "language": [ - "nl" - ], "maintainer": "Pieter Vander Vennet", - "icon": "./assets/themes/buurtnatuur/groen_logo.svg", + "icon": "./assets/themes/buurtnatuur/logo.svg", "version": "0", "startLat": 50.8435, "startLon": 4.3688, @@ -507,7 +504,8 @@ ] }, "then": { - "nl": "Dit gebied wordt beheerd door Natuurpunt" + "nl": "Dit gebied wordt beheerd door Natuurpunt", + "icon": "./assets/themes/buurtnatuur/Natuurpunt.jpg" } }, { @@ -517,7 +515,8 @@ ] }, "then": { - "nl": "Dit gebied wordt beheerd door {operator}" + "nl": "Dit gebied wordt beheerd door {operator}", + "icon": "./assets/themes/buurtnatuur/Natuurpunt.jpg" }, "hideInAnswer": true }, @@ -528,7 +527,8 @@ ] }, "then": { - "nl": "Dit gebied wordt beheerd door het Agentschap Natuur en Bos" + "nl": "Dit gebied wordt beheerd door het Agentschap Natuur en Bos", + "icon": "./assets/themes/buurtnatuur/ANB.jpg" } }, { diff --git a/assets/themes/buurtnatuur/forest.svg b/assets/themes/buurtnatuur/forest.svg index 95a972499b..c003758469 100644 --- a/assets/themes/buurtnatuur/forest.svg +++ b/assets/themes/buurtnatuur/forest.svg @@ -1,10 +1,8 @@ - - - - - Svg Vector Icons : http://www.onlinewebfonts.com/icon - + + + + + + + \ No newline at end of file diff --git a/assets/themes/buurtnatuur/groen_logo.svg b/assets/themes/buurtnatuur/groen_logo.svg index 4d9670c35f..6d33010762 100644 --- a/assets/themes/buurtnatuur/groen_logo.svg +++ b/assets/themes/buurtnatuur/groen_logo.svg @@ -1,8 +1,6 @@ - - Shape 126 - Created with Avocode. - - + + + + + \ No newline at end of file diff --git a/assets/themes/buurtnatuur/license_info.json b/assets/themes/buurtnatuur/license_info.json index b9a8bbb339..0b35721f93 100644 --- a/assets/themes/buurtnatuur/license_info.json +++ b/assets/themes/buurtnatuur/license_info.json @@ -39,6 +39,16 @@ "https://www.groen.be/" ] }, + { + "path": "logo.svg", + "license": "Logo; All rights reserved", + "authors": [ + "Groen" + ], + "sources": [ + "https://www.groen.be/" + ] + }, { "path": "nature_reserve.svg", "license": "CC-BY 3.0", diff --git a/assets/themes/buurtnatuur/logo.svg b/assets/themes/buurtnatuur/logo.svg new file mode 100644 index 0000000000..d4dfad14b5 --- /dev/null +++ b/assets/themes/buurtnatuur/logo.svg @@ -0,0 +1,38 @@ + + + + + + + + diff --git a/assets/themes/buurtnatuur/nature_reserve.svg b/assets/themes/buurtnatuur/nature_reserve.svg index df171d3479..97d700ba9f 100644 --- a/assets/themes/buurtnatuur/nature_reserve.svg +++ b/assets/themes/buurtnatuur/nature_reserve.svg @@ -1,9 +1,7 @@ - - - - - Svg Vector Icons : http://www.onlinewebfonts.com/icon - - + + + + + + \ No newline at end of file diff --git a/assets/themes/buurtnatuur/park.svg b/assets/themes/buurtnatuur/park.svg index 25c381e3c1..fb42bcc613 100644 --- a/assets/themes/buurtnatuur/park.svg +++ b/assets/themes/buurtnatuur/park.svg @@ -1,8 +1,6 @@ - - - - - Svg Vector Icons : http://www.onlinewebfonts.com/icon - + + + + + \ No newline at end of file diff --git a/assets/themes/cafes_and_pubs/cafes_and_pubs.json b/assets/themes/cafes_and_pubs/cafes_and_pubs.json index 01035702e4..92256e06a7 100644 --- a/assets/themes/cafes_and_pubs/cafes_and_pubs.json +++ b/assets/themes/cafes_and_pubs/cafes_and_pubs.json @@ -7,20 +7,14 @@ "it": "Caffè e pub", "nb_NO": "Kafeer og kneiper", "id": "Kafe dan pub", - "zh_Hant": "咖啡廳與酒吧" + "zh_Hant": "咖啡廳與酒吧", + "ru": "Кафе и пабы", + "hu": "Kávézók és kocsmák" }, "description": { + "en": "Pubs and bars", "nl": "Cafés, kroegen en drinkgelegenheden" }, - "language": [ - "nl", - "en", - "de", - "it", - "nb_NO", - "id", - "zh_Hant" - ], "maintainer": "", "icon": "./assets/layers/cafe_pub/pub.svg", "version": "0", @@ -28,7 +22,6 @@ "startLon": 0, "startZoom": 1, "widenFactor": 1.5, - "socialImage": "", "layers": [ "cafe_pub" ] diff --git a/assets/themes/campersite/campersite.json b/assets/themes/campersite/campersite.json index 84428eaaab..bc792011e4 100644 --- a/assets/themes/campersite/campersite.json +++ b/assets/themes/campersite/campersite.json @@ -9,7 +9,8 @@ "fr": "Campings", "zh_Hant": "露營地點", "pt_BR": "Locais de acampamento", - "de": "Wohnmobilstellplätze" + "de": "Wohnmobilstellplätze", + "hu": "Lakóautós megállóhelyek" }, "shortDescription": { "en": "Find sites to spend the night with your camper", @@ -20,7 +21,8 @@ "zh_Hant": "露營者尋找渡過夜晚的場地", "nl": "Vind locaties waar je de nacht kan doorbrengen met je mobilehome", "pt_BR": "Encontre locais para passar a noite com o seu campista", - "de": "Finden Sie Plätze zum Übernachten mit Ihrem Wohnmobil" + "de": "Finden Sie Plätze zum Übernachten mit Ihrem Wohnmobil", + "hu": "Helyek, ahol lakóautóval eltöltheti az éjszakát" }, "description": { "en": "This site collects all official camper stopover places and places where you can dump grey and black water. You can add details about the services provided and the cost. Add pictures and reviews. This is a website and a webapp. The data is stored in OpenStreetMap, so it will be free forever and can be re-used by any app.", @@ -30,21 +32,9 @@ "zh_Hant": "這個網站收集所有官方露營地點,以及那邊能排放廢水。你可以加上詳細的服務項目與價格,加上圖片以及評價。這是網站與網路 app,資料則是存在開放街圖,因此會永遠免費,而且可以被所有 app 再利用。", "nl": "Deze website verzamelt en toont alle officiële plaatsen waar een camper mag overnachten en afvalwater kan lozen. Ook jij kan extra gegevens toevoegen, zoals welke services er geboden worden en hoeveel dit kot, ook afbeeldingen en reviews kan je toevoegen. De data wordt op OpenStreetMap opgeslagen en is dus altijd gratis te hergebruiken, ook door andere applicaties.", "fr": "Ce site collecte les zones de camping officielles ainsi que les aires de vidange. Il est possible d’ajouter des détails à propos des services proposés ainsi que leurs coûts. Ajoutez vos images et avis. C’est un site et une application. Les données sont stockées sur OpenStreetMap, elles seront toujours gratuites et peuvent être réutilisées par n’importe quelle application.", - "de": "Auf dieser Seite finden Sie alle offiziellen Wohnmobilstellplätze und Orte zur Entsorgung von Schmutzwasser. Sie können Details über die angebotenen Dienstleistungen und die Kosten hinzufügen. Fügen Sie Bilder und Bewertungen hinzu. Dies ist eine Webseite und eine Webapp. Die Daten werden in OpenStreetMap gespeichert, so dass sie für immer kostenlos sind und von jeder App weiterverwendet werden können." + "de": "Auf dieser Seite finden Sie alle offiziellen Wohnmobilstellplätze und Orte zur Entsorgung von Schmutzwasser. Sie können Details über die angebotenen Dienstleistungen und die Kosten hinzufügen. Fügen Sie Bilder und Bewertungen hinzu. Dies ist eine Webseite und eine Webapp. Die Daten werden in OpenStreetMap gespeichert, so dass sie für immer kostenlos sind und von jeder App weiterverwendet werden können.", + "hu": "Ez az oldal az összes olyan hivatalos lakóautós megállóhelyet és helyet gyűjti össze, ahol szürke és fekete szennyvizet lehet üríteni. Hozzáadhat részleteket a nyújtott szolgáltatásokról és a költségekről, valamint képeket és értékeléseket. Ez egyszerre egy weboldal és egy webes alkalmazás. Az adatokat az OpenStreetMapen tároljuk, így mindig ingyenesek lesznek, és bármelyik alkalmazás újra felhasználhatja őket." }, - "language": [ - "en", - "nl", - "it", - "ru", - "ja", - "fr", - "zh_Hant", - "pt_BR", - "de", - "id", - "nb_NO" - ], "maintainer": "joost schouppe", "icon": "./assets/themes/campersite/caravan.svg", "version": "0", @@ -52,7 +42,7 @@ "startLon": 3.14, "startZoom": 14, "widenFactor": 1.5, - "socialImage": "./assets/themes/campersite/Bar%C3%9Fel_Wohnmobilstellplatz.jpg", + "socialImage": "./assets/themes/campersite/social_image.jpg", "layers": [ { "id": "caravansites", @@ -65,7 +55,9 @@ "zh_Hant": "露營地", "nl": "Camperplaatsen", "pt_BR": "Locais de acampamento", - "de": "Wohnmobilstellplätze" + "de": "Wohnmobilstellplätze", + "hu": "Lakóautós megállóhely", + "id": "Tempat camping" }, "minzoom": 10, "source": { @@ -86,7 +78,8 @@ "zh_Hant": "露營地 {name}", "nl": "Camperplaats {name}", "pt_BR": "Local de acampamento {name}", - "de": "Wohnmobilstellplatz {name}" + "de": "Wohnmobilstellplatz {name}", + "id": "Tempat kemping {name}" }, "mappings": [ { @@ -118,7 +111,9 @@ "zh_Hant": "露營地", "nl": "camperplaatsen", "pt_BR": "Locais de acampamento", - "de": "Wohnmobilstellplätze" + "de": "Wohnmobilstellplätze", + "hu": "Lakóautós megállóhelyek", + "id": "Tempat camping" }, "tagRenderings": [ "images", @@ -132,7 +127,8 @@ "zh_Hant": "這個地方叫做 {name}", "nl": "Deze plaats heet {name}", "pt_BR": "Este lugar é chamado de {name}", - "de": "Dieser Ort heißt {name}" + "de": "Dieser Ort heißt {name}", + "id": "Tempat ini disebut {name}" }, "question": { "en": "What is this place called?", @@ -180,7 +176,8 @@ "nl": "Gebruik is betalend", "fr": "L’utilisation est payante", "pt_BR": "Você precisa pagar para usar", - "de": "Sie müssen für die Nutzung bezahlen" + "de": "Sie müssen für die Nutzung bezahlen", + "id": "Anda perlu membayar untuk menggunakannya" } }, { @@ -256,7 +253,8 @@ "zh_Hant": "這個地方有衛生設施嗎?", "fr": "Ce site possède-t’il un lieu de vidange ?", "pt_BR": "Este local tem uma estação de aterro sanitário?", - "de": "Hat dieser Ort eine sanitäre Entsorgungsstation?" + "de": "Hat dieser Ort eine sanitäre Entsorgungsstation?", + "id": "Apakah tempat ini memiliki tempat pembuangan sanitasi?" }, "mappings": [ { @@ -273,7 +271,8 @@ "fr": "Cet endroit a une station de vidange sanitaire", "zh_Hant": "這個地方有衛生設施", "pt_BR": "Este local tem uma estação de aterro sanitário", - "de": "Dieser Ort hat eine sanitäre Entsorgungsstation" + "de": "Dieser Ort hat eine sanitäre Entsorgungsstation", + "id": "Tempat ini memiliki tempat pembuangan sanitasi" } }, { @@ -290,7 +289,8 @@ "zh_Hant": "這個地方沒有衛生設施", "fr": "Ce site ne possède pas de lieu de vidange", "pt_BR": "Este local não tem uma estação de aterro sanitário", - "de": "Dieser Ort hat keine sanitäre Entsorgungsstation" + "de": "Dieser Ort hat keine sanitäre Entsorgungsstation", + "id": "Tempat ini tidak memiliki tempat pembuangan sampah sanitasi" } } ] @@ -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,9 @@ "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?", + "hu": "Van-e itt WC?" }, "mappings": [ { @@ -482,7 +486,9 @@ "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", + "hu": "Itt van WC" } }, { @@ -501,7 +507,9 @@ "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", + "hu": "Itt nincs WC" } } ] @@ -534,7 +542,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" }, @@ -649,7 +658,8 @@ "fr": "Aire de camping", "pt_BR": "local de acampamento", "de": "Wohnmobilstellplatz", - "nl": "camperplaats" + "nl": "camperplaats", + "hu": "lakóautós megállóhely" }, "description": { "en": "Add a new official camper site. These are designated places to stay overnight with your camper. They might look like a real camping or just look like a parking. They might not be signposted at all, but just be defined in a municipal decision. A regular parking intended for campers where it is not expected to spend the night, is -not- a camper site ", @@ -659,7 +669,8 @@ "fr": "Ajouter une nouvelle aire de camping officielle, destinée à y passer la nuit avec un camping-car. Elle ne nécessite pas d’infrastructures particulières et peut être simplement désignée sous arrêté municipal, un simple parking ne suffit pas à rentrer dans cette catégorie ", "de": "Fügen Sie einen neuen offiziellen Wohnmobilstellplatz hinzu. Dies sind ausgewiesene Plätze, an denen Sie in Ihrem Wohnmobil übernachten können. Sie können wie ein richtiger Campingplatz oder nur wie ein Parkplatz aussehen. Möglicherweise sind sie gar nicht ausgeschildert, sondern nur in einem Gemeindebeschluss festgelegt. Ein normaler Parkplatz für Wohnmobile, auf dem übernachten nicht zulässig ist, ist kein Wohnmobilstellplatz. ", "nl": "Voeg een nieuwe officiële camperplaats toe. Dit zijn speciaal aangeduide plaatsen waar het toegestaan is om te overnachten met een camper. Ze kunnen er uitzien als een parking, of soms eerder als een camping. Soms staan ze niet ter plaatse aangeduid, maar heeft de gemeente wel degelijk beslist dat dit een camperplaats is. Een parking voor campers waar je niet mag overnachten is géén camperplaats. ", - "zh_Hant": "新增正式露營地點,通常是設計給過夜的露營者的地點。看起來像是真的露營地或是一般的停車場,而且也許沒有任何指標,但在城鎮被定議地點。如果一般給露營者的停車場並不是用來過夜,則不是露營地點 " + "zh_Hant": "新增正式露營地點,通常是設計給過夜的露營者的地點。看起來像是真的露營地或是一般的停車場,而且也許沒有任何指標,但在城鎮被定議地點。如果一般給露營者的停車場並不是用來過夜,則不是露營地點 ", + "hu": "Új hivatalos lakóautóhely hozzáadása. Ez arra vannak kijelölve, hogy lakóautóval ott éjszakázzunk. Lehet, hogy úgy néz ki, mint egy igazi kemping, de az is lehet, hogy csak olyan, mint egy parkoló. Előfordulhat, hogy egyáltalán nem jelzik őket, hanem csak egy önkormányzati határozatban vannak kijelölve. A lakóautósoknak szánt olyan hagyományos parkolók, ahol nem várhatóan nem fognak éjszakázni, -nem minősül- lakóautóhelynek. " } } ], @@ -706,7 +717,8 @@ "fr": "Site de vidange", "pt_BR": "Estações de despejo sanitário", "de": "Sanitäre Entsorgungsstationen", - "zh_Hant": "垃圾處理站" + "zh_Hant": "垃圾處理站", + "id": "Tempat pembuangan sanitasi" }, "minzoom": 10, "source": { @@ -724,8 +736,9 @@ "ja": "ゴミ捨て場 {name}", "it": "Luogo di sversamento {name}", "fr": "Site de vidange {name}", - "pt_BR": "Estação de despejo {nome}", - "de": "Entsorgungsstation {name}" + "pt_BR": "Estação de despejo {name}", + "de": "Entsorgungsstation {name}", + "zh_Hant": "{name} 垃圾站" }, "mappings": [ { @@ -741,7 +754,8 @@ "it": "Luogo di sversamento", "fr": "Site de vidange", "pt_BR": "Estação de despejo", - "de": "Entsorgungsstation" + "de": "Entsorgungsstation", + "zh_Hant": "垃圾站" } } ] @@ -754,7 +768,8 @@ "fr": "Site de vidange", "pt_BR": "Estações de despejo sanitário", "de": "Sanitäre Entsorgungsstationen", - "zh_Hant": "垃圾處理站" + "zh_Hant": "垃圾處理站", + "id": "Tempat pembuangan sanitasi" }, "tagRenderings": [ "images", @@ -847,7 +862,8 @@ "it": "Questo luogo ha un punto per l'approvvigionamento di acqua?", "fr": "Ce site dispose-t’il d’un point d’eau ?", "pt_BR": "Este lugar tem um ponto de água?", - "de": "Hat dieser Ort eine Wasserstelle?" + "de": "Hat dieser Ort eine Wasserstelle?", + "zh_Hant": "這個地方有取水點嗎?" }, "mappings": [ { @@ -863,7 +879,8 @@ "it": "Questo luogo ha un punto per l'approvvigionamento di acqua", "fr": "Ce site a un point d’eau", "pt_BR": "Este lugar tem um ponto de água", - "de": "Dieser Ort hat eine Wasserstelle" + "de": "Dieser Ort hat eine Wasserstelle", + "zh_Hant": "這個地方有取水點" } }, { @@ -879,7 +896,8 @@ "it": "Questo luogo non ha un punto per l'approvvigionamento di acqua", "fr": "Ce site n’a pas de point d’eau", "pt_BR": "Este lugar não tem um ponto de água", - "de": "Dieser Ort hat keine Wasserstelle" + "de": "Dieser Ort hat keine Wasserstelle", + "zh_Hant": "這個地方沒有取水點" } } ] @@ -892,7 +910,8 @@ "ja": "汚水(雑排水)はこちらで処分できますか?", "it": "Si possono smaltire le acque grigie qui?", "fr": "Est-il possible d’y faire sa vidange des eaux usées ?", - "de": "Können Sie hier Brauch-/Grauwasser entsorgen?" + "de": "Können Sie hier Brauch-/Grauwasser entsorgen?", + "zh_Hant": "你能在這裡排放洗滌水嗎?" }, "mappings": [ { @@ -907,7 +926,8 @@ "ja": "ここで汚水(雑排水)を捨てることができます", "it": "Si possono smaltire le acque grigie qui", "fr": "Il est possible d’y vidanger ses eaux usées", - "de": "Hier können Sie Brauch-/Grauwasser entsorgen" + "de": "Hier können Sie Brauch-/Grauwasser entsorgen", + "zh_Hant": "你可以在這裡排放洗滌水" } }, { @@ -922,7 +942,8 @@ "ja": "ここでは汚水(雑排水)を捨てることはできない", "it": "Non si possono smaltire le acque grigie qui", "fr": "Il n’est pas possible d’y vidanger ses eaux usées", - "de": "Hier können Sie kein Brauch-/Grauwasser entsorgen" + "de": "Hier können Sie kein Brauch-/Grauwasser entsorgen", + "zh_Hant": "你無法在這裡排放洗滌水" } } ] @@ -936,7 +957,8 @@ "zh_Hant": "你能在這裡丟棄廁所化學廢棄物嗎?", "it": "È possibile smaltire le acque del WC chimico qui?", "fr": "Est-il possible d’y vidanger ses toilettes chimiques ?", - "de": "Können Sie hier chemische Toilettenabfälle entsorgen?" + "de": "Können Sie hier chemische Toilettenabfälle entsorgen?", + "hu": "Elhelyezhető-e itt a vegyi WC hulladéka?" }, "mappings": [ { @@ -952,7 +974,8 @@ "zh_Hant": "你可以在這邊丟棄廁所化學廢棄物", "it": "È possibile smaltire le acque del WC chimico qui", "fr": "Il est possible d’y vidanger ses toilettes chimiques", - "de": "Hier können Sie chemische Toilettenabfälle entsorgen" + "de": "Hier können Sie chemische Toilettenabfälle entsorgen", + "hu": "Itt ártalmatlanítható a vegyi WC hulladéka" } }, { @@ -968,7 +991,8 @@ "zh_Hant": "你不能在這邊丟棄廁所化學廢棄物", "it": "Non è possibile smaltire le acque del WC chimico qui", "fr": "Il n’est pas possible d’y vidanger ses toilettes chimiques", - "de": "Hier können Sie keine chemischen Toilettenabfälle entsorgen" + "de": "Hier können Sie keine chemischen Toilettenabfälle entsorgen", + "hu": "Itt nem ártalmatlanítható a vegyi WC hulladéka" } } ] @@ -1057,7 +1081,8 @@ "it": "Questo luogo è parte della rete {network}", "ru": "Эта станция - часть сети {network}", "fr": "Cette station fait parte d’un réseau {network}", - "de": "Diese Station gehört zum Verbund/Netzwerk {network}" + "de": "Diese Station gehört zum Verbund/Netzwerk {network}", + "zh_Hant": "這車站是屬於 {network} 網路的一部分" }, "question": { "en": "What network is this place a part of? (skip if none)", @@ -1065,7 +1090,8 @@ "it": "Di quale rete fa parte questo luogo? (se non fa parte di nessuna rete, salta)", "ru": "К какой сети относится эта станция? (пропустите, если неприменимо)", "fr": "De quel réseau fait-elle partie ? (Passer si aucun)", - "de": "Zu welchem Verbund/Netzwerk gehört dieser Ort? (Überspringen, wenn nicht zutreffend)" + "de": "Zu welchem Verbund/Netzwerk gehört dieser Ort? (Überspringen, wenn nicht zutreffend)", + "zh_Hant": "這裡是屬於那個網路的? (沒有則跳過)" }, "freeform": { "key": "network" @@ -1092,7 +1118,8 @@ "it": "Aggiungi un nuovo luogo di sversamento delle acque reflue. Si tratta di luoghi dove chi viaggia in camper può smaltire le acque grigie o le acque nere. Spesso forniscono anche acqua ed elettricità.", "fr": "Ajouter un nouveau site de vidange. Un espace où évacuer ses eaux usées (grises et/ou noires) généralement alimenté en eau potable et électricité.", "de": "Fügen Sie eine neue sanitäre Entsorgungsstation hinzu. Hier können Camper Abwasser oder chemischen Toilettenabfälle entsorgen. Oft gibt es auch Trinkwasser und Strom.", - "zh_Hant": "新增垃圾站,這通常是提供露營駕駛丟棄廢水與化學性廁所廢水的地方,也會有飲用水與電力。" + "zh_Hant": "新增垃圾站,這通常是提供露營駕駛丟棄廢水與化學性廁所廢水的地方,也會有飲用水與電力。", + "hu": "Új egészségügyihulldék-lerakó hozzáadása. Ez egy olyan hely, ahol a lakókocsisok a szennyvizet vagy a vegyi WC hulladékát kiüríthetik. Gyakran van ivóvíz és áram is." } } ], @@ -1128,14 +1155,16 @@ "ja": "この場所は{operator}によって運営されます", "it": "Questo luogo è gestito da {operator}", "fr": "Ce site est exploité par {operator}", - "de": "Dieser Ort wird betrieben von {operator}" + "de": "Dieser Ort wird betrieben von {operator}", + "zh_Hant": "這個地方由 {operator} 營運的" }, "question": { "en": "Who operates this place?", "ja": "この店は誰が経営しているんですか?", "it": "Chi gestisce questo luogo?", "fr": "Qui est l’exploitant du site ?", - "de": "Wer betreibt diesen Ort?" + "de": "Wer betreibt diesen Ort?", + "zh_Hant": "這個地方是誰營運的?" }, "freeform": { "key": "operator" @@ -1148,7 +1177,8 @@ "ja": "この場所に電源はありますか?", "it": "Questo luogo fornisce corrente elettrica?", "fr": "Ce site a-t’il une source d’électricité ?", - "de": "Hat dieser Ort eine Stromversorgung?" + "de": "Hat dieser Ort eine Stromversorgung?", + "hu": "Van-e itt elektromos áram?" }, "mappings": [ { diff --git a/assets/themes/campersite/caravan.svg b/assets/themes/campersite/caravan.svg index 0305d08136..45d06e4dc6 100644 --- a/assets/themes/campersite/caravan.svg +++ b/assets/themes/campersite/caravan.svg @@ -1,4 +1,6 @@ - - - + + + + + + \ No newline at end of file diff --git a/assets/themes/campersite/caravan_green.svg b/assets/themes/campersite/caravan_green.svg index 20dd2c1eb0..af80ec8578 100644 --- a/assets/themes/campersite/caravan_green.svg +++ b/assets/themes/campersite/caravan_green.svg @@ -1,4 +1,6 @@ - - - + + + + + + \ No newline at end of file diff --git a/assets/themes/campersite/license_info.json b/assets/themes/campersite/license_info.json index 6e12c74c26..d1b0760339 100644 --- a/assets/themes/campersite/license_info.json +++ b/assets/themes/campersite/license_info.json @@ -1,14 +1,4 @@ [ - { - "path": "Barßel_Wohnmobilstellplatz.jpg", - "license": "CC-BY-SA 3.0", - "authors": [ - "ES01" - ], - "sources": [ - "https://commons.wikimedia.org/wiki/File:Bar%C3%9Fel_Wohnmobilstellplatz.jpg" - ] - }, { "path": "caravan.svg", "license": "CC0", @@ -41,5 +31,15 @@ "https://github.com/osmandapp/Osmand/blob/master/LICENSE", "https://github.com/osmandapp/OsmAnd-resources/blob/16892d8b2fc00dd422abfb2fef967d5ccd05eeac/icons/svg/poi/sanitary_dump_station.svg" ] + }, + { + "path": "social_image.jpg", + "license": "CC-BY-SA 3.0", + "authors": [ + "ES01" + ], + "sources": [ + "https://commons.wikimedia.org/wiki/File:Bar%C3%9Fel_Wohnmobilstellplatz.jpg" + ] } ] \ No newline at end of file diff --git a/assets/themes/campersite/sanitary_dump_station.svg b/assets/themes/campersite/sanitary_dump_station.svg index 92a78724fc..b3c2c45f47 100644 --- a/assets/themes/campersite/sanitary_dump_station.svg +++ b/assets/themes/campersite/sanitary_dump_station.svg @@ -1,15 +1,8 @@ - - - - - - - - - - - - + + + + + + + + \ No newline at end of file diff --git a/assets/themes/campersite/Barßel_Wohnmobilstellplatz.jpg b/assets/themes/campersite/social_image.jpg similarity index 100% rename from assets/themes/campersite/Barßel_Wohnmobilstellplatz.jpg rename to assets/themes/campersite/social_image.jpg diff --git a/assets/themes/charging_stations/bicycle.svg b/assets/themes/charging_stations/bicycle.svg index fcf3a2cd1b..e2bdb47f0e 100644 --- a/assets/themes/charging_stations/bicycle.svg +++ b/assets/themes/charging_stations/bicycle.svg @@ -1,53 +1,6 @@ - - - - - - image/svg+xml - - - - - - - - + + + + + + \ No newline at end of file diff --git a/assets/themes/charging_stations/car.svg b/assets/themes/charging_stations/car.svg index 0392046596..97b04cd4f1 100644 --- a/assets/themes/charging_stations/car.svg +++ b/assets/themes/charging_stations/car.svg @@ -1,47 +1,6 @@ - - - image/svg+xml - - \ No newline at end of file + + + + + + \ No newline at end of file diff --git a/assets/themes/charging_stations/charging_stations.json b/assets/themes/charging_stations/charging_stations.json index 49b3c95bad..6c0dbdc86d 100644 --- a/assets/themes/charging_stations/charging_stations.json +++ b/assets/themes/charging_stations/charging_stations.json @@ -8,7 +8,9 @@ "zh_Hant": "充電站", "nl": "Oplaadpunten", "de": "Ladestationen", - "nb_NO": "Ladestasjoner" + "nb_NO": "Ladestasjoner", + "ru": "Зарядные станции", + "hu": "Elektromos töltőpontok" }, "shortDescription": { "en": "A worldwide map of charging stations", @@ -17,7 +19,9 @@ "zh_Hant": "全世界的充電站地圖", "nl": "Een wereldwijde kaart van oplaadpunten", "de": "Eine weltweite Karte mit Ladestationen", - "nb_NO": "Et verdensomspennende kart over ladestasjoner" + "nb_NO": "Et verdensomspennende kart over ladestasjoner", + "ru": "Карта зарядных станций по всему миру", + "hu": "Elektromos töltőpontok világtérképe" }, "description": { "en": "On this open map, one can find and mark information about charging stations", @@ -25,19 +29,9 @@ "ja": "このオープンマップでは充電ステーションに関する情報を見つけてマークすることができます", "ru": "На этой карте вы можно найти и отметить информацию о зарядных станциях", "zh_Hant": "在這份開放地圖上,你可以尋找與標示充電站的資訊", - "de": "Auf dieser freien Karte kann man Informationen über Ladestationen finden und hinzufügen" + "de": "Auf dieser freien Karte kann man Informationen über Ladestationen finden und hinzufügen", + "hu": "Ezen a térképen a elektromos töltőpontokról szóló információkat lehet megtalálni és megadni" }, - "language": [ - "en", - "id", - "it", - "ja", - "zh_Hant", - "nl", - "de", - "nb_NO", - "ru" - ], "maintainer": "", "icon": "./assets/themes/charging_stations/logo.svg", "version": "0", @@ -45,7 +39,6 @@ "startLon": 0, "startZoom": 1, "widenFactor": 1.5, - "socialImage": "", "defaultBackgroundId": "CartoDB.Voyager", "layers": [ "charging_station" diff --git a/assets/themes/charging_stations/logo.svg b/assets/themes/charging_stations/logo.svg index 5f32313765..fc4c5f9ebc 100644 --- a/assets/themes/charging_stations/logo.svg +++ b/assets/themes/charging_stations/logo.svg @@ -1,64 +1,7 @@ - -image/svg+xml - - - - - \ No newline at end of file + + + + + + + \ No newline at end of file diff --git a/assets/themes/charging_stations/plug.svg b/assets/themes/charging_stations/plug.svg index 0dd0422808..6d0cd0c35e 100644 --- a/assets/themes/charging_stations/plug.svg +++ b/assets/themes/charging_stations/plug.svg @@ -1,48 +1,6 @@ - -image/svg+xml - - - - + + + + + \ No newline at end of file diff --git a/assets/themes/climbing/carabiner.svg b/assets/themes/climbing/carabiner.svg index 08b86219e8..06682ab128 100644 --- a/assets/themes/climbing/carabiner.svg +++ b/assets/themes/climbing/carabiner.svg @@ -1,68 +1,10 @@ - -image/svg+xml - - - - - - - \ No newline at end of file + + + + + + + + + + \ No newline at end of file diff --git a/assets/themes/climbing/climbing.json b/assets/themes/climbing/climbing.json index 613f76d697..e93273ebf0 100644 --- a/assets/themes/climbing/climbing.json +++ b/assets/themes/climbing/climbing.json @@ -9,7 +9,8 @@ "zh_Hant": "開放攀爬地圖", "nb_NO": "Åpent klatrekart", "it": "Mappa aperta per le arrampicate", - "fr": "Open Climbing Map" + "fr": "Open Climbing Map", + "hu": "Mászótérkép" }, "description": { "nl": "Op deze kaart vind je verschillende klimgelegenheden, zoals klimzalen, bolderzalen en klimmen in de natuur", @@ -19,7 +20,8 @@ "ja": "この地図には、自然の中のクライミングジム、ボルダリングホール、岩など、さまざまなクライミングの機会があります。", "zh_Hant": "在這份地圖上你會發現能夠攀爬機會,像是攀岩體育館、抱石大廳以及大自然當中的巨石。", "fr": "Cette carte indique les sites d’escalades comme les salles d’escalade ou les sites naturels.", - "it": "In questa cartina puoi trovare vari luoghi per arrampicata come ad esempio palestre di arrampicata, sale di pratica e rocce naturali." + "it": "In questa cartina puoi trovare vari luoghi per arrampicata come ad esempio palestre di arrampicata, sale di pratica e rocce naturali.", + "hu": "Ezen a térképen különböző mászási lehetőségeket talál, például falmászótermeket, bouldertermeket és sziklákat a természetben." }, "descriptionTail": { "nl": "De klimkaart is oorspronkelijk gemaakt door Christian Neumann op kletterspots.de.", @@ -29,22 +31,9 @@ "ja": "登山地図はもともと Christian Neumann によって作成されたものです。フィードバックや質問がありましたら、ご連絡ください。

このプロジェクトでは、OpenStreetMapプロジェクトのデータを使用します。

", "zh_Hant": "攀爬地圖最初由 Christian Neumann 製作。如果你有回饋意見或問題請到Please 這邊反應

這專案使用來自開放街圖專案的資料。

", "fr": "La carte a été créée par Christian Neumann. Merci de le contacter pour des avis ou des questions.

Ce projet utilise les données OpenStreetMap.

", - "it": "La cartina di arrampicata è stata originariamente creata da Christian Neumann. Si prega di scrivere qua se si hanno commenti o domande da fare.

Il progetto usa i dati del progetto OpenStreetMap.

" + "it": "La cartina di arrampicata è stata originariamente creata da Christian Neumann. Si prega di scrivere qua se si hanno commenti o domande da fare.

Il progetto usa i dati del progetto OpenStreetMap.

", + "hu": "A mászótérképet eredetileg Christian Neumann készítette. Ha észrevétele vagy kérdése van, kérjük, vele lépjen kapcsolatba.

A projekt az OpenStreetMap adatait használja

" }, - "language": [ - "nl", - "de", - "en", - "ru", - "ja", - "zh_Hant", - "nb_NO", - "it", - "fr", - "ca", - "id", - "eo" - ], "maintainer": "Christian Neumann ", "icon": "./assets/themes/climbing/climbing_icon.svg", "version": "0", @@ -52,7 +41,6 @@ "startLon": 0, "startZoom": 1, "widenFactor": 1.5, - "socialImage": "", "layers": [ { "id": "climbing_club", @@ -65,7 +53,8 @@ "zh_Hant": "攀岩社團", "nb_NO": "Klatreklubb", "fr": "Club d’escalade", - "it": "Club di arrampicata" + "it": "Club di arrampicata", + "hu": "Mászóegyesület" }, "minzoom": 10, "source": { @@ -108,7 +97,8 @@ "ja": "クライミングNGO", "zh_Hant": "攀岩 NGO", "fr": "Association d’escalade", - "it": "Associazione di arrampicata" + "it": "Associazione di arrampicata", + "hu": "Mászószervezet" } } ] @@ -116,12 +106,13 @@ "description": { "de": "Ein Kletterverein oder eine Organisation", "nl": "Een klimclub of organisatie", - "en": "A climbing club or organisations", + "en": "A climbing club or organisation", "ja": "クライミングクラブや団体", "zh_Hant": "攀岩社團或組織", "nb_NO": "En klatreklubb eller organisasjoner", "fr": "Club ou association d’escalade", - "it": "Un club o associazione di arrampacata" + "it": "Un club o associazione di arrampacata", + "hu": "Mászóegyesület vagy -szervezet" }, "tagRenderings": [ { @@ -135,7 +126,8 @@ "ru": "{name}", "ja": "{name}", "zh_Hant": "{name}", - "it": "{name}" + "it": "{name}", + "hu": "{name}" }, "question": { "en": "What is the name of this climbing club or NGO?", @@ -143,7 +135,8 @@ "nl": "Wat is de naam van deze klimclub?", "ja": "この登山クラブやNGOの名前は何ですか?", "fr": "Quel est le nom du club ou de l’association ?", - "it": "Qual è il nome di questo club o associazione di arrampicata?" + "it": "Qual è il nome di questo club o associazione di arrampicata?", + "hu": "Mi a neve ennek a mászóegyesületnek vagy szervezetnek?" }, "freeform": { "key": "name" @@ -173,7 +166,8 @@ "nb_NO": "Klatreklubb", "ru": "Клуб скалолазания", "fr": "Club d’escalade", - "it": "Club di arrampicata" + "it": "Club di arrampicata", + "hu": "Mászóegyesület" }, "description": { "de": "Ein Kletterverein", @@ -183,7 +177,8 @@ "nb_NO": "En klatreklubb", "ru": "Клуб скалолазания", "fr": "Un club d’escalade", - "it": "Un club di arrampicata" + "it": "Un club di arrampicata", + "hu": "Egy mászóegyesület" } }, { @@ -197,15 +192,17 @@ "nl": "Een klimorganisatie", "ja": "クライミングNGO", "fr": "Association d’escalade", - "it": "Associazione di arrampicata" + "it": "Associazione di arrampicata", + "hu": "Mászószervezet" }, "description": { "de": "Eine Organisation, welche sich mit dem Klettern beschäftigt", "nl": "Een VZW die werkt rond klimmen", - "en": "A NGO working around climbing", + "en": "An NGO working around climbing", "ja": "登山に関わるNGO", "fr": "Une association d’escalade", - "it": "Un’associazione che ha a che fare con l’arrampicata" + "it": "Un’associazione che ha a che fare con l’arrampicata", + "hu": "Mászással foglalkozó civil szervezet" } } ], @@ -461,7 +458,7 @@ }, { "question": { - "en": "What is the difficulty of this climbing route according to the french/belgian system?", + "en": "What is the grade of this climbing route according to the french/belgian system?", "nl": "Hoe moeilijk is deze klimroute volgens het Franse/Belgische systeem?", "it": "Qual è la difficoltà di questa via di arrampicata nel sistema francese/belga?", "fr": "Quelle est la difficulté de cette voie selon le système franco-belge ?", @@ -469,7 +466,7 @@ }, "render": { "de": "Die Schwierigkeit ist {climbing:grade:french} entsprechend des französisch/belgischen Systems", - "en": "The difficulty is {climbing:grade:french} according to the french/belgian system", + "en": "The grade is {climbing:grade:french} according to the french/belgian system", "nl": "De klimmoeilijkheid is {climbing:grade:french} volgens het Franse/Belgische systeem", "ja": "フランス/ベルギーのランク評価システムによると、{climbing:grade:french}の困難度です", "it": "Il grado di difficoltà è {climbing:grade:french} nel sistema francese/belga", @@ -482,7 +479,7 @@ }, { "question": { - "en": "How much bolts does this route have before reaching the moulinette?", + "en": "How many bolts does this route have before reaching the anchor?", "fr": "Combien de prises cette voie possède avant d’atteindre la moulinette ?", "de": "Wie viele Haken gibt es auf dieser Kletterroute bevor der Umlenker bzw. Standhaken erreicht ist?", "it": "Quanti bulloni sono presenti in questo percorso prima di arrivare alla moulinette?" @@ -535,7 +532,8 @@ "render": { "en": "The rock type is {_embedding_features_with_rock:rock} as stated on the surrounding crag", "fr": "Le type de roche est {_embedding_features_with_rock:rock} selon le mur", - "it": "Il tipo di roccia è {_embedding_features_with_rock:rock} come dichiarato sul muro circostante" + "it": "Il tipo di roccia è {_embedding_features_with_rock:rock} come dichiarato sul muro circostante", + "de": "Der Gesteinstyp ist {_embedding_features_with_rock:rock}, wie auf dem umgebenden Felsen angegeben" }, "freeform": { "key": "_embedding_features_with_rock:rock" @@ -620,7 +618,8 @@ "then": { "en": "Climbing crag {name}", "fr": "Mur d’escalade {name}", - "it": "Muro da arrampicata {name}" + "it": "Muro da arrampicata {name}", + "de": "Klettergarten {name}" } }, { @@ -690,7 +689,7 @@ "render": { "en": "

Length overview

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

Résumé de longueur

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

Längenübersicht

{histogramm(_length_hist)}", + "de": "

Längenübersicht

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

Riassunto della lunghezza

{histogram(_length_hist)}" }, "condition": "_length_hist!~\\[\\]", @@ -698,7 +697,7 @@ }, { "render": { - "en": "

Difficulties overview

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

Grades overview

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

Résumé des difficultés

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

Schwierigkeitsübersicht

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

Riassunto delle difficoltà

{histogram(_difficulty_hist)}" @@ -710,7 +709,8 @@ "render": { "en": "

Contains {_contained_climbing_routes_count} routes

    {_contained_climbing_routes}
", "fr": "

Contient {_contained_climbing_routes_count} voies

    {_contained_climbing_routes}
", - "it": "

Contiene {_contained_climbing_routes_count} vie

    {_contained_climbing_routes}
" + "it": "

Contiene {_contained_climbing_routes_count} vie

    {_contained_climbing_routes}
", + "de": "

Enthält {_contained_climbing_routes_count} Routen

    {_contained_climbing_routes}
" }, "condition": "_contained_climbing_routes~*", "id": "Contained_climbing_routes" @@ -775,7 +775,8 @@ "then": { "en": "A climbing crag - a single rock or cliff with at least a few climbing routes", "fr": "Mur d’escalade, rocher avec plusieurs voies d’escalades", - "it": "Un muro da arrampicata (un singolo masso o falesia con almeno qualche via per arrampicata)" + "it": "Un muro da arrampicata (un singolo masso o falesia con almeno qualche via per arrampicata)", + "de": "Ein Kletterfelsen - ein einzelner Fels oder eine Klippe mit mindestens einigen Kletterrouten" } }, { @@ -1080,7 +1081,8 @@ "fr": " mètres", "de": " Meter", "eo": " metro", - "it": " metri" + "it": " metri", + "ru": " метр" }, "default": true }, @@ -1137,7 +1139,8 @@ "en": "The containing feature states that this is publicly accessible
{_embedding_feature:access:description}", "nl": "Een omvattend element geeft aan dat dit publiek toegangkelijk is
{_embedding_feature:access:description}", "fr": "L’élément englobant indique un accès libre
{_embedding_feature:access:description}", - "it": "L’ elemento in cui è contenuto indica che è pubblicamente accessibile
{_embedding_feature:access:description}" + "it": "L’ elemento in cui è contenuto indica che è pubblicamente accessibile
{_embedding_feature:access:description}", + "de": "Das enthaltende Objekt gibt an, dass es öffentlich zugänglich ist
{_embedding_feature:access:description}" } }, { @@ -1146,7 +1149,8 @@ "en": "The containing feature states that a permit is needed to access
{_embedding_feature:access:description}", "nl": "Een omvattend element geeft aan dat een toelating nodig is om hier te klimmen
{_embedding_feature:access:description}", "fr": "L’élément englobant indique qu’ une autorisation d’accès est nécessaire
{_embedding_feature:access:description}", - "it": "L’elemento che lo contiene indica che è richiesto un’autorizzazione per accedervi
{_embedding_feature:access:description}" + "it": "L’elemento che lo contiene indica che è richiesto un’autorizzazione per accedervi
{_embedding_feature:access:description}", + "de": "Das enthaltende Objekt besagt, dass eine Genehmigung erforderlich ist für den Zugang zu
{_embedding_feature:access:description}" } }, { @@ -1154,7 +1158,8 @@ "then": { "en": "The containing feature states that this is only accessible to customers
{_embedding_feature:access:description}", "fr": "L’élément englobant indique que l’accès est réservés aux clients
{_embedding_feature:access:description}", - "it": "L’ elemento che lo contiene indica che è accessibile solo ai clienti
{_embedding_feature:access:description}" + "it": "L’ elemento che lo contiene indica che è accessibile solo ai clienti
{_embedding_feature:access:description}", + "de": "Das enthaltende Objekt besagt, dass es nur für Kunden zugänglich ist
{_embedding_feature:access:description}" } }, { @@ -1162,7 +1167,8 @@ "then": { "en": "The containing feature states that this is only accessible to club members
{_embedding_feature:access:description}", "fr": "L’élément englobant indique que l’accès est réservé aux membres
{_embedding_feature:access:description}", - "it": "L’ elemento che lo contiene indica che è accessibile solamente ai membri del club
{_embedding_feature:access:description}" + "it": "L’ elemento che lo contiene indica che è accessibile solamente ai membri del club
{_embedding_feature:access:description}", + "de": "Das enthaltende Objekt besagt, dass es nur für Mitglieder zugänglich ist
{_embedding_feature:access:description}" } }, { @@ -1202,7 +1208,7 @@ { "if": "access=customers", "then": { - "en": "Only custumers", + "en": "Only customers", "fr": "Réservé aux clients", "de": "Nur für Kunden", "it": "Riservato ai clienti" @@ -1293,7 +1299,7 @@ "id": "Difficulty-min", "question": { "de": "Welche Schwierigkeit hat hier die leichteste Route (französisch/belgisches System)?", - "en": "What is the level of the easiest route here, accoring to the french classification system?", + "en": "What is the grade of the easiest route here, according to the french classification system?", "nl": "Wat is het niveau van de makkelijkste route, volgens het Franse classificatiesysteem?", "ja": "ここで一番簡単なルートのレベルは、フランスのランク評価システムで何ですか?", "fr": "Quel est le niveau de la voie la plus simple selon la classification franco-belge ?", @@ -1301,7 +1307,7 @@ }, "render": { "de": "Die leichteste Route hat hier die Schwierigkeit {climbing:grade:french:min} (französisch/belgisches System)", - "en": "The minimal difficulty is {climbing:grade:french:min} according to the french/belgian system", + "en": "The lowest grade is {climbing:grade:french:min} according to the french/belgian system", "nl": "De minimale klimmoeilijkheid is {climbing:grade:french:min} volgens het Franse/Belgische systeem", "ja": "フランス/ベルギーのランク評価システムでは、最小の難易度は{climbing:grade:french:min}です", "fr": "La difficulté minimale est {climbing:grade:french:min} selon la classification franco-belge", @@ -1328,7 +1334,7 @@ "id": "Difficulty-max", "question": { "de": "Welche Schwierigkeit hat hier die schwerste Route (französisch/belgisches System)?", - "en": "What is the level of the most difficult route here, accoring to the french classification system?", + "en": "What is the highest grade route here, according to the french classification system?", "nl": "Wat is het niveau van de moeilijkste route, volgens het Franse classificatiesysteem?", "ja": "フランスのランク評価によると、ここで一番難しいルートのレベルはどれくらいですか?", "fr": "Quel est le niveau de la voie la plus difficile selon la classification franco-belge ?", @@ -1336,7 +1342,7 @@ }, "render": { "de": "Die schwerste Route hat hier die Schwierigkeit {climbing:grade:french:max} (französisch/belgisches System)", - "en": "The maximal difficulty is {climbing:grade:french:max} according to the french/belgian system", + "en": "The highest grade is {climbing:grade:french:max} according to the french/belgian system", "nl": "De maximale klimmoeilijkheid is {climbing:grade:french:max} volgens het Franse/Belgische systeem", "ja": "フランス/ベルギーのランク評価システムでは、最大の難易度は{climbing:grade:french:max}です", "fr": "La difficulté maximale est {climbing:grade:french:max} selon la classification franco-belge", @@ -1509,7 +1515,8 @@ "nl": "Sportklimmen/voorklimmen kan hier", "ru": "Здесь можно заняться спортивным скалолазанием", "ja": "ここでスポーツクライミングができます", - "it": "L’arrampicata sportiva è possibile qua" + "it": "L’arrampicata sportiva è possibile qua", + "hu": "Itt lehetőség van sportmászásra" } }, { @@ -1520,7 +1527,8 @@ "nl": "Sportklimmen/voorklimmen kan hier niet", "ru": "Спортивное скалолазание здесь невозможно", "ja": "ここではスポーツクライミングはできません", - "it": "L’arrampicata sportiva non è possibile qua" + "it": "L’arrampicata sportiva non è possibile qua", + "hu": "Itt nincs lehetőség sportmászásra" } }, { diff --git a/assets/themes/climbing/climbing_gym.svg b/assets/themes/climbing/climbing_gym.svg index f17cb12a63..c437e8da62 100644 --- a/assets/themes/climbing/climbing_gym.svg +++ b/assets/themes/climbing/climbing_gym.svg @@ -1,88 +1,9 @@ - -image/svg+xml - - - - - - - - - + + + + + + + + + \ No newline at end of file diff --git a/assets/themes/climbing/climbing_icon.svg b/assets/themes/climbing/climbing_icon.svg index ccd1d8d8b0..d68108e511 100644 --- a/assets/themes/climbing/climbing_icon.svg +++ b/assets/themes/climbing/climbing_icon.svg @@ -1,79 +1,9 @@ - -image/svg+xml - - - - - - - - - + + + + + + + + + \ No newline at end of file diff --git a/assets/themes/climbing/climbing_no_rope.svg b/assets/themes/climbing/climbing_no_rope.svg index 2a8d6346a9..22afca58d3 100644 --- a/assets/themes/climbing/climbing_no_rope.svg +++ b/assets/themes/climbing/climbing_no_rope.svg @@ -1,72 +1,8 @@ - -image/svg+xml - - - - - - - - + + + + + + + + \ No newline at end of file diff --git a/assets/themes/climbing/climbing_rope.svg b/assets/themes/climbing/climbing_rope.svg index e419e720bf..29ad63d1db 100644 --- a/assets/themes/climbing/climbing_rope.svg +++ b/assets/themes/climbing/climbing_rope.svg @@ -1,82 +1,10 @@ - -image/svg+xml - - - - - - - - - - + + + + + + + + + + \ No newline at end of file diff --git a/assets/themes/climbing/climbing_route.svg b/assets/themes/climbing/climbing_route.svg index b7f8dabca9..9a5dafe74c 100644 --- a/assets/themes/climbing/climbing_route.svg +++ b/assets/themes/climbing/climbing_route.svg @@ -1,86 +1,11 @@ - -image/svg+xml - - - - - - - - - - + + + + + + + + + + + \ No newline at end of file diff --git a/assets/themes/climbing/climbing_unknown.svg b/assets/themes/climbing/climbing_unknown.svg index 02db077b3e..6f6e66914c 100644 --- a/assets/themes/climbing/climbing_unknown.svg +++ b/assets/themes/climbing/climbing_unknown.svg @@ -1,86 +1,22 @@ - -image/svg+xml - - - - - - - - - - ? + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/assets/themes/climbing/club.svg b/assets/themes/climbing/club.svg index ae3dfc9908..dbe630c9ab 100644 --- a/assets/themes/climbing/club.svg +++ b/assets/themes/climbing/club.svg @@ -1,77 +1,9 @@ - - - - - - image/svg+xml - - - - - - - - - - - - - - - - + + + + + + + + + \ No newline at end of file diff --git a/assets/themes/climbing/height.svg b/assets/themes/climbing/height.svg index e890872a07..ce9f59fb4f 100644 --- a/assets/themes/climbing/height.svg +++ b/assets/themes/climbing/height.svg @@ -1,84 +1,8 @@ - - - - - - - - - - - - - image/svg+xml - - - - - - - - - + + + + + + + + \ No newline at end of file diff --git a/assets/themes/cycle_highways/cycle_highways.json b/assets/themes/cycle_highways/cycle_highways.json index 266312e591..a1d403c381 100644 --- a/assets/themes/cycle_highways/cycle_highways.json +++ b/assets/themes/cycle_highways/cycle_highways.json @@ -15,11 +15,6 @@ "de": "Diese Karte zeigt Radschnellwege", "it": "Questa cartina mostra le strade per velocipedi" }, - "language": [ - "en", - "de", - "it" - ], "version": "2021-08-23", "startLat": 51.1599, "startLon": 3.3475, diff --git a/assets/themes/cycle_highways/fietssnelwegen-logo.svg b/assets/themes/cycle_highways/fietssnelwegen-logo.svg index 4a720e22b4..4d96c32db8 100644 --- a/assets/themes/cycle_highways/fietssnelwegen-logo.svg +++ b/assets/themes/cycle_highways/fietssnelwegen-logo.svg @@ -1,66 +1,42 @@ - - image/svg+xml - - - + width="373" + height="373" + viewBox="0 0 373 373" + version="1.1" + id="svg7" + sodipodi:docname="fietssnelwegen-logo.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" + xmlns:svg="http://www.w3.org/2000/svg"> + + + + style="fill:#147fde;fill-opacity:1;fill-rule:nonzero;stroke:none" + d="M 186.76172,0 C 170.02344,0 155.38281,8.113281 148.05859,18.058594 120.86328,55.484375 95.757812,94.222656 73.007812,134.52734 c -36.875,64.90625 -61.453124,113.58985 -70.347656,138.19141 -4.707031,13.87109 -3.136718,29.05078 4.445313,41.35156 7.0625,12.82422 19.613281,21.46485 33.996093,23.5586 30.597657,3.40234 73.222658,7.58984 144.874998,7.32812 0.26172,0 -0.26172,0 0,0 71.65235,0.52344 115.0625,-3.66406 145.66016,-7.06641 14.38281,-2.09375 27.19531,-10.73437 34.25781,-23.55859 7.58203,-12.5625 9.15234,-27.74219 4.44531,-41.61328 C 361.44531,248.11719 336.86719,199.43359 299.99219,134.52734 277.24219,94.222656 252.13672,55.222656 224.67969,17.796875 217.62109,8.113281 202.71484,0 185.97656,0" + id="path2" /> - - \ No newline at end of file + style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" + d="m 144.92187,275.59766 c 0,12.30078 7.84375,19.10546 18.30469,19.10546 10.46094,0 18.30469,-6.80468 18.30469,-19.10546 v -53.12891 h 37.65625 c 9.15234,0.52344 17,-6.54297 17.52344,-15.70313 0,-0.52343 0,-1.04687 0,-1.30859 0.25781,-8.90234 -7.0625,-16.49219 -15.95313,-16.49219 -0.52344,0 -1.04687,0 -1.30859,0 h -38.17969 v -35.59375 h 44.71875 c 10.98047,0 16.21094,-8.63672 16.21094,-16.75 0,-8.63671 -5.48828,-16.75 -16.21094,-16.75 H 163.75 c -9.9375,-0.26171 -18.56641,7.58985 -18.82813,17.53516 0,0.52344 0,1.04687 0,1.57031 z m 0,0" + id="path4" /> + + diff --git a/assets/themes/cycle_infra/Belgian_road_sign_D07.svg b/assets/themes/cycle_infra/Belgian_road_sign_D07.svg index 33d93c15be..d5a7af7a4d 100644 --- a/assets/themes/cycle_infra/Belgian_road_sign_D07.svg +++ b/assets/themes/cycle_infra/Belgian_road_sign_D07.svg @@ -1,86 +1,19 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/assets/themes/cycle_infra/Belgian_road_sign_D09.svg b/assets/themes/cycle_infra/Belgian_road_sign_D09.svg index 92cf17044e..54f014cdc2 100644 --- a/assets/themes/cycle_infra/Belgian_road_sign_D09.svg +++ b/assets/themes/cycle_infra/Belgian_road_sign_D09.svg @@ -1,83 +1,20 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/assets/themes/cycle_infra/Belgian_road_sign_D10.svg b/assets/themes/cycle_infra/Belgian_road_sign_D10.svg index 38e85b698b..4eef09fd46 100644 --- a/assets/themes/cycle_infra/Belgian_road_sign_D10.svg +++ b/assets/themes/cycle_infra/Belgian_road_sign_D10.svg @@ -1,78 +1,19 @@ - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/assets/themes/cycle_infra/Belgian_traffic_sign_M13.svg b/assets/themes/cycle_infra/Belgian_traffic_sign_M13.svg index 2e266e616e..c7d097e205 100644 --- a/assets/themes/cycle_infra/Belgian_traffic_sign_M13.svg +++ b/assets/themes/cycle_infra/Belgian_traffic_sign_M13.svg @@ -1,173 +1,35 @@ - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/assets/themes/cycle_infra/Belgian_traffic_sign_M14.svg b/assets/themes/cycle_infra/Belgian_traffic_sign_M14.svg index bde7d4ffe4..1c9716eca8 100644 --- a/assets/themes/cycle_infra/Belgian_traffic_sign_M14.svg +++ b/assets/themes/cycle_infra/Belgian_traffic_sign_M14.svg @@ -1,200 +1,40 @@ - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/assets/themes/cycle_infra/Belgian_traffic_sign_M15.svg b/assets/themes/cycle_infra/Belgian_traffic_sign_M15.svg index b765716826..e8ef24e560 100644 --- a/assets/themes/cycle_infra/Belgian_traffic_sign_M15.svg +++ b/assets/themes/cycle_infra/Belgian_traffic_sign_M15.svg @@ -1,172 +1,39 @@ - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/assets/themes/cycle_infra/Belgian_traffic_sign_M16.svg b/assets/themes/cycle_infra/Belgian_traffic_sign_M16.svg index 94805155e1..fe0dbd38ca 100644 --- a/assets/themes/cycle_infra/Belgian_traffic_sign_M16.svg +++ b/assets/themes/cycle_infra/Belgian_traffic_sign_M16.svg @@ -1,204 +1,44 @@ - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/assets/themes/cycle_infra/Belgian_traffic_sign_M6.svg b/assets/themes/cycle_infra/Belgian_traffic_sign_M6.svg index 36c8c10ed5..e60d661cc3 100644 --- a/assets/themes/cycle_infra/Belgian_traffic_sign_M6.svg +++ b/assets/themes/cycle_infra/Belgian_traffic_sign_M6.svg @@ -1,186 +1,40 @@ - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/assets/themes/cycle_infra/Belgian_traffic_sign_M7.svg b/assets/themes/cycle_infra/Belgian_traffic_sign_M7.svg index b1f0b2f448..c533ae6ce3 100644 --- a/assets/themes/cycle_infra/Belgian_traffic_sign_M7.svg +++ b/assets/themes/cycle_infra/Belgian_traffic_sign_M7.svg @@ -1,185 +1,44 @@ - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/assets/themes/cycle_infra/Cycle_barrier_double.svg b/assets/themes/cycle_infra/Cycle_barrier_double.svg index dfc3d5fad3..4fbc0d832b 100644 --- a/assets/themes/cycle_infra/Cycle_barrier_double.svg +++ b/assets/themes/cycle_infra/Cycle_barrier_double.svg @@ -1,223 +1,10 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - + + + + + + + + + + \ No newline at end of file diff --git a/assets/themes/cycle_infra/Cycle_barrier_double_length.svg b/assets/themes/cycle_infra/Cycle_barrier_double_length.svg index 5a54a1b0d1..289a645ed4 100644 --- a/assets/themes/cycle_infra/Cycle_barrier_double_length.svg +++ b/assets/themes/cycle_infra/Cycle_barrier_double_length.svg @@ -1,228 +1,13 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - + + + + + + + + + + + + + \ No newline at end of file diff --git a/assets/themes/cycle_infra/Cycle_barrier_double_overlap.svg b/assets/themes/cycle_infra/Cycle_barrier_double_overlap.svg index 453a0f71d4..f82e706d38 100644 --- a/assets/themes/cycle_infra/Cycle_barrier_double_overlap.svg +++ b/assets/themes/cycle_infra/Cycle_barrier_double_overlap.svg @@ -1,238 +1,15 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/assets/themes/cycle_infra/Cycle_barrier_double_template.svg b/assets/themes/cycle_infra/Cycle_barrier_double_template.svg index 6f36d6fc7c..fc196865b4 100644 --- a/assets/themes/cycle_infra/Cycle_barrier_double_template.svg +++ b/assets/themes/cycle_infra/Cycle_barrier_double_template.svg @@ -1,248 +1,21 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/assets/themes/cycle_infra/Cycle_barrier_double_width.svg b/assets/themes/cycle_infra/Cycle_barrier_double_width.svg index bcdc2b7fc6..ee732b5116 100644 --- a/assets/themes/cycle_infra/Cycle_barrier_double_width.svg +++ b/assets/themes/cycle_infra/Cycle_barrier_double_width.svg @@ -1,228 +1,13 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - image/svg+xml - - - - - - - - - - - - - - + + + + + + + + + + + + + \ No newline at end of file diff --git a/assets/themes/cycle_infra/bicycleway.svg b/assets/themes/cycle_infra/bicycleway.svg index 2104cf2851..fcc31cb70e 100644 --- a/assets/themes/cycle_infra/bicycleway.svg +++ b/assets/themes/cycle_infra/bicycleway.svg @@ -1,18 +1,11 @@ - - - - - - - - - - - + + + + + + + + + + + \ No newline at end of file diff --git a/assets/themes/cycle_infra/cycle-infra.svg b/assets/themes/cycle_infra/cycle-infra.svg index 325ad27bed..abd6dea01a 100644 --- a/assets/themes/cycle_infra/cycle-infra.svg +++ b/assets/themes/cycle_infra/cycle-infra.svg @@ -1,90 +1,376 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/assets/themes/cycle_infra/cycle_infra.json b/assets/themes/cycle_infra/cycle_infra.json index 9e561fb140..4a26d7a47c 100644 --- a/assets/themes/cycle_infra/cycle_infra.json +++ b/assets/themes/cycle_infra/cycle_infra.json @@ -5,28 +5,28 @@ "nl": "Fietsinfrastructuur", "de": "Fahrradinfrastruktur", "it": "Infrastruttura dei velocipedi", - "nb_NO": "Sykkelinfrastruktur" + "nb_NO": "Sykkelinfrastruktur", + "ru": "Велосипедная дорожка", + "zh_Hant": "單車設施", + "hu": "Kerékpáros infrastruktúra" }, "shortDescription": { "en": "A map where you can view and edit things related to the bicycle infrastructure.", "nl": "Een kaart waar je info over de fietsinfrastructuur kan bekijken en bewerken.", "de": "Eine Karte zum Ansehen und Bearbeiten verschiedener Elementen der Fahrradinfrastruktur.", "it": "Una cartina dove vedere e modificare gli elementi riguardanti l’infrastruttura dei velocipedi.", - "nb_NO": "Alt relatert til sykkelinfrastruktur." + "nb_NO": "Alt relatert til sykkelinfrastruktur.", + "zh_Hant": "檢視與編輯單車相關設施的地圖。", + "hu": "Olyan térkép, ahol a kerékpáros infrastruktúrával kapcsolatos dolgokat tekinthet meg és szerkeszthet." }, "description": { "en": "A map where you can view and edit things related to the bicycle infrastructure. Made during #osoc21.", "nl": "Een kaart waar je info over de fietsinfrastructuur kan bekijken en bewerken. Gemaakt tijdens #osoc21.", "de": "Eine Karte zum Ansehen und Bearbeiten verschiedener Elementen der Fahrradinfrastruktur. Erstellt während #osoc21.", - "it": "Una cartina dove vedere e modificare gli elementi riguardanti l’infrastruttura dei velocipedi. Realizzata durante #osoc21." + "it": "Una cartina dove vedere e modificare gli elementi riguardanti l’infrastruttura dei velocipedi. Realizzata durante #osoc21.", + "zh_Hant": "可以檢視與編輯單車相關設施的地圖,在 #os0c21時製作。", + "hu": "Kerékpáros infrastruktúrával kapcsolatos dolgokat megjelenítő és szerkesztésre felkínáló térkép. Az #osoc21 (Open Summer of Code) alatt készült." }, - "language": [ - "en", - "nl", - "de", - "it", - "nb_NO" - ], "maintainer": "MapComplete", "hideFromOverview": false, "defaultBackgroundId": "CartoDB.Voyager", diff --git a/assets/themes/cycle_infra/street.svg b/assets/themes/cycle_infra/street.svg index 1941e9067f..693b858174 100644 --- a/assets/themes/cycle_infra/street.svg +++ b/assets/themes/cycle_infra/street.svg @@ -1,19 +1,14 @@ - - - - - - - - - - - - - - + + + + + + + + + + + + + + \ No newline at end of file diff --git a/assets/themes/cyclenodes/README.md b/assets/themes/cyclenodes/README.md new file mode 100644 index 0000000000..6920554931 --- /dev/null +++ b/assets/themes/cyclenodes/README.md @@ -0,0 +1,10 @@ +This is a theme for mapping cycle node networks. +The intention is to make it easy to map the cycle nodes itself while riding +the bike and then continue mapping at home and add the routes itself +and connecting the nodes. + +This theme is based on a version first developed by Seppe Santes here: +https://github.com/seppesantens/MapComplete-Themes/blob/main/cyclenodenetworks/cyclenodenetworks.json + +A description on how to map cycle node networks in OSM can be found +[on the OSM wiki](https://wiki.openstreetmap.org/wiki/Cycle_Node_Network_Tagging). diff --git a/assets/themes/cyclenodes/cyclenodes.json b/assets/themes/cyclenodes/cyclenodes.json new file mode 100644 index 0000000000..1d82601d2a --- /dev/null +++ b/assets/themes/cyclenodes/cyclenodes.json @@ -0,0 +1,171 @@ +{ + "id": "cyclenodes", + "title": { + "en": "Cycle Node Networks", + "de": "Fahrrad-Knotenpunktnetzwerke" + }, + "description": { + "en": "This map shows cycle node networks and allows you to add new nodes easily", + "de": "Diese Karte zeigt Knotenpunktnetzwerke für Radfahrer und erlaubt auch neue Knoten zu mappen" + }, + "maintainer": "Sebastian Kürten", + "icon": "./assets/themes/cyclenodes/logo.svg", + "version": "0", + "hideFromOverview": true, + "startLat": 51.755515, + "startLon": 14.327545, + "startZoom": 11, + "widenFactor": 0.05, + "clustering": { + "maxZoom": 11, + "minNeededElements": 1000000 + }, + "layers": [ + { + "id": "node2node", + "name": { + "en": "node to node links", + "de": "Knotenpunktverbindungen" + }, + "source": { + "osmTags": { + "and": [ + "network=rcn", + "network:type=node_network", + "route=bicycle" + ] + } + }, + "minzoom": 12, + "title": { + "render": { + "en": "node to node link", + "de": "Knotenpunktverbindung" + }, + "mappings": [ + { + "if": "ref~*", + "then": { + "en": "node to node link {ref}", + "de": "Knotenpunktverbindung {ref}" + } + } + ] + }, + "mapRendering": [ + { + "width": { + "render": "4" + }, + "color": { + "render": "#00a703" + } + } + ], + "tagRenderings": [ + { + "question": { + "en": "When was this node to node link last surveyed?", + "de": "Wann wurde diese Knotenpunktverbindung zuletzt überprüft?" + }, + "render": { + "en": "This node to node link was last surveyed on {survey:date}", + "de": "Diese Knotenpunktverbindung wurde zuletzt am {survey:date} überprüft" + }, + "freeform": { + "key": "survey:date", + "type": "date" + }, + "mappings": [ + { + "if": "survey:date:={_now:date}", + "then": "Surveyed today!" + } + ], + "id": "node2node-survey:date" + }, + "export_as_gpx" + ] + }, + { + "id": "node", + "name": { + "en": "nodes", + "de": "Knotenpunkte" + }, + "source": { + "osmTags": { + "and": [ + "rcn_ref~*" + ] + } + }, + "mapRendering": [ + { + "location": [ + "point", + "centroid" + ], + "label": { + "mappings": [ + { + "if": "rcn_ref~*", + "then": "
{rcn_ref}
" + }, + { + "if": "rcn_ref=", + "then": "
?
" + } + ] + } + } + ], + "minzoom": 12, + "title": { + "render": { + "en": "cycle node {rcn_ref}", + "de": "Knotenpunkt {rcn_ref}" + } + }, + "tagRenderings": [ + { + "question": { + "en": "When was this cycle node last surveyed?", + "de": "Wann wurde dieser Fahrradknotenpunkt zuletzt überprüft?" + }, + "render": { + "en": "This cycle node was last surveyed on {survey:date}", + "de": "Dieser Fahrradknoten wurde zuletzt überprüft am {survey:date}" + }, + "freeform": { + "key": "survey:date", + "type": "date" + }, + "mappings": [ + { + "if": "survey:date:={_now:date}", + "then": "Surveyed today!" + } + ], + "id": "node-survey:date" + }, + { + "question": { + "en": "How many other cycle nodes does this node link to?", + "de": "Mit wie vielen anderen Knoten des Fahrradknotenpunktnetzwerkes ist dieser Knoten verbunden?" + }, + "render": { + "en": "This node links to {expected_rcn_route_relations} other cycle nodes.", + "de": "Dieser Knoten ist mit {expected_rcn_route_relations} anderen Knoten des Fahrradknotenpunktnetzwerkes verbunden." + }, + "freeform": { + "key": "expected_rcn_route_relations", + "type": "int" + }, + "id": "node-expected_rcn_route_relations" + }, + "images" + ] + } + ] +} \ No newline at end of file diff --git a/assets/themes/cyclenodes/license_info.json b/assets/themes/cyclenodes/license_info.json new file mode 100644 index 0000000000..91390c118c --- /dev/null +++ b/assets/themes/cyclenodes/license_info.json @@ -0,0 +1,12 @@ +[ + { + "path": "logo.svg", + "license": "GPL", + "authors": [ + "sebkur" + ], + "sources": [ + "https://github.com/mobanisto/MapComplete/commit/1aeb1fdb5b09908d67907f3c816152bfebfdcc79" + ] + } +] \ No newline at end of file diff --git a/assets/themes/cyclenodes/logo.svg b/assets/themes/cyclenodes/logo.svg new file mode 100644 index 0000000000..6a860858af --- /dev/null +++ b/assets/themes/cyclenodes/logo.svg @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/assets/themes/cyclestreets/F111.svg b/assets/themes/cyclestreets/F111.svg index 8c19527a5e..35d91fb30d 100644 --- a/assets/themes/cyclestreets/F111.svg +++ b/assets/themes/cyclestreets/F111.svg @@ -1,809 +1,113 @@ image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + width="249" + height="373.92969" + viewBox="0 0 249 373.92969" + version="1.1" + id="svg43" + sodipodi:docname="F111.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" + xmlns:svg="http://www.w3.org/2000/svg"> + + + + style="fill:#0070b3;fill-opacity:1;fill-rule:nonzero;stroke:none" + d="M 19.859375,-5.90625 H 210.80469 c 15.91797,0 28.86328,12.964844 28.86328,29.015625 V 339.33594 c 0,15.93359 -12.94531,28.6875 -28.86328,28.6875 H 19.644531 c -16.023437,0 -28.976562,-12.97266 -28.976562,-28.91016 L -9.21875,23.109375 C -9.21875,7.0625 3.839844,-5.90625 19.859375,-5.90625 Z m 0,0" + id="path2" /> + style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" + d="m 230.33984,339.66797 c 0,10.4375 -8.44531,18.89844 -18.65625,18.89844 H 18.765625 c -10.316406,0 -18.652344,-8.46485 -18.652344,-18.89844 V 22.339844 c 0,-10.332032 8.335938,-18.90625 18.652344,-18.90625 60.46875,0 132.343745,0 192.917965,0 10.21094,0 18.65625,8.464844 18.65625,19.011718 z m 0,0" + id="path4" /> + style="fill:#0070b3;fill-opacity:1;fill-rule:nonzero;stroke:none" + d="m 221.11719,339.77344 c 0,5.27343 -4.38282,9.45312 -9.54297,9.45312 H 18.652344 c -5.15625,0 -9.324219,-4.17969 -9.324219,-9.45312 V 22.230469 c 0,-5.167969 4.167969,-9.453125 9.324219,-9.453125 55.640625,0 137.503906,0 193.140626,0 5.15625,0 9.32422,4.175781 9.32422,9.453125 z m 0,0" + id="path6" /> + style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" + d="m 35.269531,233.60156 h 31.664063 v 32.64063 H 35.269531 Z m 0,0" + id="path8" /> + style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" + d="m 157.80859,235.40625 h 31.66407 v 32.64062 h -31.66407 z m 0,0" + id="path10" /> - - - + style="fill:#fd0000;fill-opacity:1;fill-rule:nonzero;stroke:none" + d="m 118.13672,337.625 c -0.49609,-0.15625 -1.24219,-0.58984 -1.64844,-0.99219 -1.71094,-1.58594 -1.64844,-0.5 -1.64844,-26.47656 V 286.10547 H 56.667969 v 23.27734 H 38.003906 v -22.96875 h -3.917968 l -1.277344,-2.23437 C 29.574219,278.5 27.675781,271.98437 26.773438,263.60547 c -0.464844,-4.22266 -0.433594,-31.03906 0.03125,-32.77735 0.3125,-1.08593 0.839843,-1.64453 3.859374,-4.0625 0.558594,-0.5 1.242188,-0.87109 1.523438,-0.87109 0.746094,0 0.964844,-0.46484 3.421875,-6.98437 1.304687,-3.41016 3.265625,-8.5625 4.355469,-11.48047 1.117187,-2.88672 4.355468,-11.39063 7.183594,-18.90235 2.863281,-7.48047 5.382812,-14.05859 5.632812,-14.64843 l 0.433594,-1.05469 h 32.230468 l 2.921876,-10.39844 c 2.488281,-8.84375 3.050781,-10.48828 3.796874,-11.20312 C 93.25,150.16797 100.5,147.1875 106.87891,145.14062 l 5.07031,-1.61328 -1.80469,-1.33593 c -3.23437,-2.35938 -5.50781,-5.89844 -6.3789,-9.96094 -0.52735,-2.60938 -0.52735,-3.72656 0.0312,-6.42578 1.64843,-7.82031 8.15234,-13.19141 15.98828,-13.19141 3.26953,0 5.78906,0.6211 8.27734,2.01953 4.57031,2.57422 7.68359,7.35547 8.36719,12.91016 0.65234,5.27734 -2.48828,12.01172 -7,14.89844 l -1.52344,1.02343 5.81641,1.92188 c 7.62109,2.51562 13.2539,4.90625 14.1875,6.02344 0.52734,0.62109 1.58593,3.8164 3.66796,11.14062 l 2.92579,10.27344 h 11.19921 l 3.17188,7.07422 c 1.74219,3.88281 7.03125,15.64453 11.72656,26.13281 l 8.55469,19.08984 1.02734,0.1836 c 1.49219,0.25 4.19922,2.35937 4.91407,3.84765 0.59375,1.21094 0.625,2.01953 0.6875,14.77344 0.0312,14 -0.15625,17.56641 -1.33985,23.30859 -1.08984,5.4336 -3.57812,11.85547 -6.16015,15.85938 l -0.96094,1.46094 h -6.22266 v 24.82812 H 162.4375 v -23.27734 h -22.71094 v 16.75781 h 8.71094 v 7.76172 h -18.04297 v -24.51953 h -6.22265 l -0.0625,24.48828 -0.0898,24.51562 -1.08984,1.11719 c -0.59375,0.58985 -1.55469,1.24219 -2.17969,1.39844 -1.24219,0.33984 -1.39844,0.33984 -2.61328,0 z m -3.29688,-62.53906 v -1.39453 H 75.332031 v 2.79296 h 39.507809 z m 15.49219,-0.0625 0.0937,-1.33203 h -6.2539 v 2.82421 l 3.05078,-0.0937 3.01562,-0.0937 z m 16.55078,0.0625 v -1.39453 h -7.15625 v 2.79296 h 7.15625 z M 90.886719,264.84375 v -1.39453 H 66.933594 v 2.79297 h 23.953125 z m 23.953121,0 v -1.39453 h -5.91015 v 2.79297 h 5.91015 z m 15.55469,0 v -1.39453 h -6.22265 v 2.79297 h 6.22265 z m 24.88672,0 v -1.39453 h -15.55469 v 2.79297 h 15.55469 z M 54.273438,261.95703 c 2.832031,-1.08594 6.191406,-5.21094 6.78125,-8.28516 0.375,-1.92578 -0.15625,-4.5 -1.335938,-6.73437 -1.246094,-2.35938 -2.179688,-3.25781 -4.480469,-4.5 -3.921875,-2.07813 -8.058593,-1.76953 -11.632812,0.83594 -1.589844,1.14843 -2.398438,2.11328 -3.300781,4.03515 -0.714844,1.46094 -0.839844,2.11328 -0.839844,4.65625 -0.03125,3.47657 0.46875,4.6875 3.019531,7.38672 2.488281,2.63672 4.757813,3.53906 8.273437,3.32031 1.121094,-0.0625 2.707032,-0.40234 3.515626,-0.71484 z m 123.312502,0.28125 c 1.61718,-0.30859 4.32422,-2.29687 5.97265,-4.375 2.39453,-3.01172 2.39453,-8.59766 0.0312,-12.13672 -1.96093,-2.85547 -5.32031,-4.6875 -8.71093,-4.6875 -3.88672,-0.0312 -7.2461,1.73828 -9.05079,4.8125 -2.80078,4.71875 -2.80078,8.13281 -0.0625,11.91797 1.21094,1.67578 4.10547,4.06641 5.22657,4.28125 0.33984,0.0625 0.90234,0.1875 1.24218,0.25 1.08985,0.24609 3.98047,0.1875 5.35157,-0.0625 z m -78.300784,-8.10156 v -1.24219 H 75.332031 v 2.48438 h 23.953125 z m 15.554684,0 v -1.24219 h -5.91015 v 2.48438 h 5.91015 z m 15.55469,0 v -1.24219 h -6.22265 v 2.48438 h 6.22265 z m 16.48828,0 v -1.24219 h -7.15625 v 2.48438 h 7.15625 z M 45.625,223.91016 c 8.867188,-1.02735 21.308594,-1.61329 40.84375,-1.92579 l 12.816406,-0.1875 v -6.91796 c 0,-6.58204 0.03125,-6.95313 0.718754,-8.22657 1.71093,-3.22656 5.8164,-3.32031 8.11718,-0.21484 0.6211,0.83594 0.65235,1.33203 0.7461,7.97266 l 0.0937,7.10937 3.76562,0.0937 c 2.05078,0.0625 3.79297,0.0312 3.85547,-0.0312 0.0625,-0.0625 0.125,-4.06641 0.125,-8.84766 0,-4.80859 0.15625,-9.74218 0.3125,-11.01562 0.1836,-1.27344 0.2461,-2.39063 0.15625,-2.45313 -0.21875,-0.24609 -6.59765,0.52735 -9.76953,1.17969 -5.53906,1.14844 -14.964844,4.78125 -15.679688,6.05078 -0.214843,0.40625 -1.925781,0.46875 -11.261718,0.46875 H 69.421875 v -5.89843 h 8.402344 v -0.8086 c 0,-0.71094 5.441406,-20.39062 5.816406,-21.00781 0.0625,-0.125 -6.035156,-0.1875 -13.59375,-0.15625 l -13.75,0.0937 -7.125,19.08594 c -3.917969,10.48828 -7.746094,20.73047 -8.523437,22.78125 l -1.367188,3.66015 1.148438,-0.15234 c 0.621093,-0.125 2.988281,-0.40625 5.195312,-0.65234 z m 134.16797,-5.67969 c -1.74219,-3.57031 -6.6875,-13.78125 -11.01172,-22.75 L 160.91016,179.1875 156.24609,179 l 0.6211,2.10937 c 2.89453,10.08594 5.25781,18.71485 5.25781,19.27344 0,0.65235 0.0937,0.6836 3.88672,0.6836 h 3.92187 l -0.0937,2.88671 -0.0937,2.85547 -11.04297,0.0937 c -9.92187,0.0625 -11.04296,0.0312 -11.29296,-0.4375 -0.65235,-1.17578 -9.51954,-4.58984 -15.14844,-5.86328 -3.08203,-0.68359 -10.17188,-1.61328 -10.39063,-1.36719 -0.0625,0.0625 0.0937,1.73829 0.3125,3.69532 0.21485,1.95312 0.40235,7.01172 0.4336,11.26562 v 7.66406 h 7.74609 l 0.0937,-7.57031 0.0937,-7.57422 0.77734,-0.83984 c 2.36329,-2.51172 6.06641,-2.20313 7.6836,0.65234 0.68359,1.14844 0.71484,1.52344 0.71484,8.38282 v 7.16796 l 9.26953,0.1875 c 12.60157,0.27735 25.63282,1.14844 31.01563,2.04688 3.23437,0.55859 3.26562,1.05469 -0.21875,-6.08203 z m -83.398439,-18.25 c 15.054689,-6.08203 32.910159,-5.86719 47.499999,0.49609 1.55469,0.6836 3.01953,1.33594 3.23438,1.42969 0.21875,0.0898 0.375,-0.0625 0.375,-0.34375 0,-0.40234 0.55859,-0.49609 3.35937,-0.55859 l 3.35938,-0.0937 -2.85938,-10.24219 c -1.58984,-5.61719 -2.95703,-10.55078 -3.08203,-10.92188 -0.15625,-0.71484 -0.21875,-0.71484 -5.53516,-0.71484 h -5.41406 l -0.52734,3.04297 -0.53125,3.00781 1.74218,5.71094 c 0.9336,3.13672 1.64844,5.77344 1.61719,5.83594 -0.0625,0.0625 -1.71094,-0.3125 -3.66797,-0.83985 -11.04687,-2.85547 -22.24218,-2.85547 -33.03906,0.0312 -1.33594,0.375 -2.48828,0.6211 -2.55078,0.52735 -0.0625,-0.0625 0.65234,-2.60547 1.58594,-5.67969 l 1.71094,-5.55469 -0.52735,-3.03906 -0.52734,-3.04297 H 91.851562 l -0.339843,1.17969 c -0.1875,0.62109 -1.558594,5.55468 -3.082031,10.92578 l -2.707032,9.77344 2.925782,0.0937 c 2.175781,0.0625 2.921874,0.1875 3.046874,0.52734 0.15625,0.40234 0.3125,0.40234 1.089844,0 0.496094,-0.27734 2.117188,-0.96094 3.609375,-1.55078 z m 5.070309,-27.375 c 0,-0.1836 -1.929684,-11.69922 -2.894528,-17.16016 -0.0625,-0.40625 -4.882812,16.50781 -4.882812,17.16016 0,0.125 1.742188,0.21875 3.886719,0.21875 2.148437,0 3.890621,-0.0937 3.890621,-0.21875 z m 44.79688,0 c 0,-0.1836 -4.29297,-15.76563 -4.76172,-17.28516 -0.0937,-0.21875 -3.04688,16.69531 -3.01563,17.28516 0,0.125 1.74219,0.21875 3.88672,0.21875 2.14844,0 3.89063,-0.0937 3.89063,-0.21875 z m 0,0" + id="path12" /> + style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" + d="m 118.13672,337.625 c -0.49609,-0.15625 -1.24219,-0.58984 -1.64844,-0.99219 -1.74219,-1.61719 -1.64844,0.92969 -1.64844,-42.92578 0,-43.01562 -0.0625,-41.46094 1.3711,-42.64062 0.43359,-0.375 0.49609,-2.94922 0.49609,-23.58985 0,-13.71484 0.125,-24.14453 0.3125,-25.60156 0.15625,-1.36719 0.2461,-2.54688 0.15625,-2.60938 -0.21875,-0.24609 -6.59765,0.52735 -9.76953,1.17969 -5.53906,1.14844 -14.964844,4.78125 -15.679688,6.05078 -0.214843,0.40625 -1.925781,0.46875 -11.261718,0.46875 H 69.421875 v -5.89843 h 8.402344 v -0.8086 c 0,-0.46484 2.019531,-7.91406 4.476562,-16.53906 2.488281,-8.62891 5.507813,-19.27344 6.71875,-23.62109 1.742188,-6.17579 2.398438,-8.09766 3.050781,-8.75 1.027344,-1.11719 6.84375,-3.57032 14.089848,-5.96094 l 5.78906,-1.89063 -1.52734,-1.08593 c -3.26563,-2.23438 -5.75391,-6.08594 -6.625,-10.15235 -0.5586,-2.66797 -0.5586,-3.7539 0,-6.45312 1.64843,-7.82031 8.15234,-13.19141 15.98828,-13.19141 3.26953,0 5.78906,0.6211 8.27734,2.01953 4.57031,2.57422 7.68359,7.35547 8.36719,12.91016 0.65234,5.27734 -2.48828,12.01172 -7,14.89844 l -1.52344,1.02343 5.81641,1.92188 c 7.62109,2.51562 13.2539,4.90625 14.1875,6.02344 0.52734,0.62109 1.52343,3.66015 3.48437,10.42578 7.92969,27.90234 10.73047,37.89453 10.73047,38.54687 0,0.6836 0.0625,0.6836 3.88672,0.6836 h 3.92187 l -0.0937,2.88671 -0.0937,2.85547 -11.04297,0.0937 c -9.92187,0.0625 -11.04296,0.0312 -11.29296,-0.4375 -0.65235,-1.17578 -9.51954,-4.58984 -15.14844,-5.86328 -3.08203,-0.68359 -10.17188,-1.61328 -10.39063,-1.36719 -0.0625,0.0625 0.0937,1.73829 0.3125,3.69532 0.27735,2.57422 0.40235,9.62109 0.4336,25.54297 v 21.9414 l 1.55469,2.35938 -0.0625,41.18359 -0.0898,41.15234 -1.08984,1.11719 c -0.59375,0.58985 -1.55469,1.24219 -2.17969,1.39844 -1.24219,0.33984 -1.39844,0.33984 -2.61328,0 z M 96.394531,199.98047 c 15.054689,-6.08203 32.910159,-5.86719 47.499999,0.49609 1.55469,0.6836 3.01953,1.33594 3.23828,1.42969 0.21485,0.0898 0.3711,-0.0625 0.3711,-0.34375 0,-0.40234 0.55859,-0.49609 3.35937,-0.55859 l 3.35938,-0.0937 -6.40625,-22.90235 c -3.48438,-12.60156 -6.41016,-22.78125 -6.44141,-22.65625 -0.0312,0.15235 -1.21094,6.89063 -2.58203,14.98828 l -2.48828,14.77344 1.71093,5.67969 c 0.9336,3.16797 1.64844,5.77344 1.61719,5.83594 -0.0625,0.0625 -1.71094,-0.3125 -3.66797,-0.83985 -11.04687,-2.85547 -22.24218,-2.85547 -33.03906,0.0312 -1.33594,0.375 -2.48828,0.6211 -2.55078,0.52735 -0.0625,-0.0625 0.65234,-2.60547 1.58594,-5.64844 l 1.67969,-5.55469 -2.55079,-15.01953 c -1.429684,-8.25781 -2.613278,-14.86719 -2.707028,-14.64844 -0.05859,0.1836 -2.921874,10.48828 -6.375,22.8711 l -6.285156,22.5625 2.925782,0.0937 c 2.175781,0.0625 2.921874,0.1875 3.046874,0.52734 0.15625,0.40234 0.3125,0.40234 1.089844,0 0.496094,-0.27734 2.117188,-0.96094 3.609375,-1.55078 z m 0,0" + id="path14" /> + style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" + d="m 130.39453,293.49219 c -0.0312,-68.58985 0.0312,-85.96875 0.28125,-86.58985 0.58984,-1.52343 2.48828,-2.73047 4.29297,-2.73047 1.64844,0 3.23437,0.92969 4.04297,2.35547 l 0.71484,1.21094 v 95.125 h 8.71094 v 7.76172 h -18.04297 z m 0,0" + id="path16" /> + style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" + d="m 90.886719,262.51562 v -3.72265 h 8.398437 v -50.80469 l 0.718754,-1.33594 c 1.71093,-3.22656 5.8164,-3.32031 8.11718,-0.21484 0.65235,0.86719 0.65235,0.99219 0.7461,30.35156 l 0.0625,29.45313 H 90.886719 Z m 0,0" + id="path18" /> + style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" + d="m 24.355469,46.269531 h 15.632812 v 6.433594 H 28.402344 v 6.652344 h 10.492187 v 6.214843 H 28.402344 V 79.09375 h -0.109375 0.109375 -0.21875 0.109375 -0.21875 0.109375 -0.21875 0.109375 -0.21875 0.109375 -0.21875 0.109375 -0.21875 0.109375 -0.21875 0.109375 -0.21875 0.109375 -0.21875 0.109375 -0.21875 0.109375 -0.21875 0.109375 -0.21875 0.109375 -0.21875 0.109375 -0.21875 0.109375 -0.21875 0.109375 -0.21875 0.109375 -0.21875 0.109375 -0.21875 0.109375 -0.21875 0.109375 -0.21875 0.109375 -0.21875 0.109375 -0.21875 0.109375 -0.21875 0.109375 -0.21875 0.109375 -0.21875 0.109375 -0.21875 0.109375 -0.21875 0.109375 -0.21875 0.109375 -0.21875 0.109375 -0.21875 0.109375 -0.21875 0.109375 -0.21875 0.109375 -0.21875 0.109375 -0.21875 0.109375 -0.21875 0.109375 -0.21875 0.109375 -0.21875 0.109375 -0.21875 0.109375 -0.21875 0.109375 -0.21875 0.109375 -0.21875 0.109375 -0.21875 0.109375 -0.21875 0.109375 -0.21875 0.109375 -0.21875 0.109375 -0.21875 0.109375 -0.21875 0.109375 -0.21875 0.109375 -0.109375 V 46.269531 Z m 0,0" + id="path20" /> + style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" + d="m 45.34375,46.050781 c 1.859375,0 2.949219,0.980469 3.386719,3.054688 0,1.632812 -0.4375,2.941406 -1.308594,3.816406 -1.96875,0.980469 -3.390625,0.433594 -4.265625,-1.855469 -0.4375,-2.617187 0.21875,-4.253906 2.1875,-5.015625 z m -0.875,9.597657 h 3.933594 V 79.09375 H 43.375 V 55.648438 Z m 0,0" + id="path22" /> + style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" + d="M 59.882812,55.101562 C 65.347656,54.992188 68.515625,58.375 69.28125,65.242188 L 69.5,66.335938 v 0.652343 c 0,0.980469 0.109375,1.855469 0,2.507813 L 69.28125,69.386719 H 57.367188 c 0.21875,2.507812 1.203124,3.925781 2.953124,4.472656 2.292969,0.4375 4.152344,-0.328125 5.574219,-2.179687 l 0.546875,0.761718 c 0.21875,0.21875 0.324219,0.4375 0.433594,0.65625 l 0.109375,0.105469 0.109375,0.109375 c 0.21875,0.21875 0.4375,0.4375 0.546875,0.65625 L 67.75,74.1875 c 0.109375,0.109375 0.109375,0.109375 0.109375,0.21875 h 0.21875 l 0.109375,0.214844 v 0.109375 l 0.21875,0.109375 v 0.21875 c 0.21875,0.21875 0.4375,0.4375 0.546875,0.546875 -2.078125,3.488281 -5.027344,4.796875 -8.742187,3.925781 -4.484376,-0.984375 -7.105469,-4.582031 -7.652344,-10.578125 -0.4375,-7.636719 1.964844,-12.324219 7.324218,-13.851563 z m 1.199219,5.234376 c -2.074219,0.4375 -3.277343,1.855468 -3.714843,4.253906 h 7.324218 c -0.4375,-2.617188 -1.640625,-4.035156 -3.609375,-4.253906 z m 0,0" + id="path24" /> + style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" + d="m 80.101562,46.269531 c 0.109376,0.109375 0.21875,0.21875 0.21875,0.433594 v 8.726563 h 4.59375 v 5.34375 h -4.59375 v 11.667968 l 0.109376,0.546875 c 0.875,1.089844 2.1875,1.199219 4.046874,0.324219 l 0.109376,0.328125 0.328124,1.417969 0.109376,0.21875 v 0.761718 l 0.21875,0.546876 v 0.21875 c 0.109374,0.433593 0.21875,0.761718 0.21875,0.980468 l 0.21875,0.871094 c -2.84375,1.09375 -5.46875,1.308594 -7.980469,0.65625 -0.765625,-0.4375 -1.3125,-1.089844 -1.75,-1.746094 -0.328125,-0.652344 -0.546875,-1.308594 -0.765625,-1.851562 v -0.546875 c 0,-0.328125 0,-0.652344 0,-0.871094 V 60.773438 h -2.949219 v -5.34375 h 2.949219 v -7.308594 l 0.21875,-0.109375 0.21875,-0.105469 0.546875,-0.109375 c 0.21875,-0.21875 0.546875,-0.21875 0.65625,-0.328125 l 0.875,-0.328125 0.328125,-0.109375 0.65625,-0.328125 c 0.65625,-0.105469 1.089844,-0.324219 1.417968,-0.433594 z m 0,0" + id="path26" /> + style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" + d="m 94.75,54.882812 c 3.390625,-0.21875 6.23047,0.875 8.52734,3.492188 l -0.21875,0.324219 -0.21875,0.21875 c -0.10937,0.21875 -0.21875,0.4375 -0.32812,0.546875 l -0.32813,0.4375 -0.21875,0.214844 c -0.10937,0.328124 -0.32812,0.65625 -0.54687,0.765624 l -0.10938,0.21875 -0.10937,0.214844 -0.10938,0.109375 -0.875,1.308594 c -2.949215,-3.160156 -5.24609,-3.488281 -6.77734,-0.980469 0,0.65625 0.109375,1.199219 0.328125,1.746094 h 0.21875 l 0.21875,0.21875 h 0.21875 l 0.21875,0.109375 0.546875,0.105469 0.984375,0.328125 c 2.511719,0 4.480465,0.980469 6.011715,2.835937 1.3125,2.507813 1.53125,4.90625 0.875,7.417969 -0.76562,2.179687 -1.96875,3.597656 -3.499996,4.25 -5.027344,1.855469 -9.179688,0.765625 -12.570313,-3.378906 0.109375,-0.328125 0.328125,-0.65625 0.546875,-0.871094 l 0.328125,-0.109375 c 0.21875,-0.546875 0.546875,-0.875 0.875,-1.203125 l 0.21875,-0.324219 0.109375,-0.109375 0.109375,-0.21875 0.21875,-0.21875 h 0.109375 l 0.109375,-0.109375 c 0.328125,-0.542968 0.65625,-0.980468 0.984375,-1.199218 2.183594,2.835937 4.480469,3.816406 6.777344,2.945312 L 97.484375,73.75 c 0.21875,-0.21875 0.546875,-0.546875 0.65625,-0.980469 0.109375,-0.875 -0.109375,-1.527343 -0.65625,-1.964843 h -0.21875 L 97.15625,70.695312 H 96.9375 l -0.21875,-0.109374 -0.109375,-0.214844 c -0.65625,-0.109375 -1.203125,-0.21875 -1.640625,-0.4375 -3.933594,-0.21875 -6.230469,-2.507813 -6.667969,-6.761719 0,-5.015625 2.1875,-7.851563 6.449219,-8.289063 z m 0,0" + id="path28" /> + style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" + d="m 113.00391,54.882812 c 3.39062,-0.21875 6.23047,0.875 8.52734,3.492188 l -0.21875,0.324219 -0.21875,0.21875 c -0.10937,0.21875 -0.21875,0.4375 -0.4375,0.546875 l -0.21875,0.4375 -0.21875,0.214844 c -0.21875,0.328124 -0.4375,0.65625 -0.54687,0.765624 l -0.10938,0.21875 -0.10937,0.214844 -0.21875,0.109375 -0.875,1.308594 c -2.83985,-3.160156 -5.13672,-3.488281 -6.77735,-0.980469 0,0.65625 0.10938,1.199219 0.32813,1.746094 h 0.32812 l 0.21875,0.21875 h 0.21875 l 0.10938,0.109375 0.54687,0.105469 1.09375,0.328125 c 2.51563,0 4.48047,0.980469 6.01172,2.835937 1.3125,2.507813 1.53125,4.90625 0.76563,7.417969 -0.65625,2.179687 -1.85938,3.597656 -3.39063,4.25 -5.02734,1.855469 -9.28906,0.765625 -12.67969,-3.378906 0.21875,-0.328125 0.4375,-0.65625 0.65625,-0.871094 l 0.21875,-0.109375 c 0.32813,-0.546875 0.65625,-0.875 0.98438,-1.203125 l 0.21875,-0.324219 0.10937,-0.109375 0.21875,-0.4375 h 0.21875 l 0.10938,-0.109375 c 0.32812,-0.542968 0.65625,-0.980468 0.98437,-1.199218 2.1875,2.835937 4.48047,3.816406 6.77735,2.945312 V 73.75 c 0.32812,-0.21875 0.54687,-0.546875 0.76562,-0.980469 0,-0.875 -0.21875,-1.527343 -0.65625,-1.964843 h -0.21875 l -0.10937,-0.109376 h -0.21875 l -0.21875,-0.109374 -0.10938,-0.214844 c -0.65625,-0.109375 -1.20312,-0.21875 -1.64062,-0.4375 -4.04297,-0.21875 -6.23047,-2.507813 -6.66797,-6.761719 0,-5.015625 2.1875,-7.851563 6.44922,-8.289063 z m 0,0" + id="path30" /> + style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" + d="m 131.91406,46.269531 c 0.10938,0.109375 0.10938,0.21875 0.10938,0.433594 v 8.726563 h 4.69922 v 5.34375 h -4.69922 v 11.667968 l 0.21875,0.546875 c 0.875,1.089844 2.1875,1.199219 4.04687,0.324219 l 0.10938,0.328125 0.32422,1.417969 v 0.21875 l 0.10937,0.761718 0.21875,0.546876 v 0.21875 c 0.10938,0.433593 0.10938,0.761718 0.21875,0.980468 l 0.21875,0.871094 c -2.83984,1.09375 -5.46484,1.308594 -7.97656,0.65625 -0.76563,-0.4375 -1.3125,-1.089844 -1.85938,-1.746094 -0.32812,-0.652344 -0.54687,-1.308594 -0.65625,-1.851562 v -0.546875 c 0,-0.328125 -0.10937,-0.652344 0,-0.871094 V 60.773438 h -2.95312 v -5.34375 h 2.95312 v -7.308594 l 0.21875,-0.109375 0.10938,-0.105469 0.65625,-0.109375 c 0.21875,-0.21875 0.4375,-0.21875 0.65625,-0.328125 l 0.875,-0.328125 0.32812,-0.109375 0.65235,-0.328125 c 0.54687,-0.105469 1.09375,-0.324219 1.42187,-0.433594 z m 0,0" + id="path32" /> + style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" + d="m 150.05859,55.210938 h 1.53125 v 6.214843 c -2.62109,-0.433593 -4.48047,0.65625 -5.57422,3.164063 v 0.21875 c -0.21875,0.652344 -0.32812,1.308594 -0.32812,1.960937 v 12.214844 h -5.02734 V 55.648438 h 5.02734 V 57.9375 c 1.20312,-1.527344 2.51562,-2.507812 4.04297,-2.726562 z m 0,0" + id="path34" /> + style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" + d="m 162.30078,54.664062 c 3.0625,-0.324218 5.57813,0.65625 7.65234,2.835938 v 0.21875 c 0.21875,0.328125 0.32813,0.546875 0.4375,0.871094 0.21875,0.4375 0.4375,0.875 0.4375,1.203125 v 0.324219 c 0.21875,0.546874 0.21875,1.09375 0.21875,1.417968 v 8.398438 c 0,1.417968 0,2.617187 0.21875,3.597656 0.54688,0.65625 1.09375,1.199219 1.85938,1.308594 l -0.10938,0.328125 -0.21875,0.4375 -0.10937,0.324219 -0.10938,0.21875 v 0.21875 l -0.10937,0.328124 -0.32813,0.871094 -0.21875,0.4375 v 0.328125 L 171.8125,78.441406 171.375,79.75 c -2.07813,0 -3.49609,-0.765625 -4.48047,-2.402344 -1.96875,2.402344 -4.375,3.054688 -7.21484,1.855469 -2.625,-0.980469 -4.15235,-2.945313 -4.58985,-6.105469 0.10938,-4.691406 1.7461,-7.308594 5.13672,-8.070312 0.21875,-0.109375 0.32813,-0.21875 0.54688,-0.328125 h 0.21875 c 0.10937,0 0.10937,0 0.21875,0 l 0.21875,-0.109375 1.19922,-0.21875 0.54687,-0.109375 0.21875,-0.109375 1.09375,-0.109375 c 0.65625,-0.109375 1.09375,-0.109375 1.53125,-0.109375 0.10938,-3.160156 -1.20312,-4.25 -4.15234,-3.160156 h -0.21875 l -0.54688,0.109374 -0.65625,0.328126 -0.65625,0.324218 c -0.32812,0.21875 -0.65625,0.4375 -0.98437,0.546875 -0.32813,0.4375 -0.76563,0.652344 -1.09375,0.761719 l -0.4375,-1.089844 -0.21875,-0.109375 v -0.21875 l -0.21875,-0.214843 v -0.21875 c -0.32813,-0.4375 -0.54688,-0.875 -0.65625,-1.199219 -0.10938,-0.21875 -0.21875,-0.4375 -0.32813,-0.65625 -0.21875,-0.4375 -0.43359,-0.761719 -0.54297,-1.199219 h 0.21875 l 0.10547,-0.21875 0.21875,-0.109375 c 0.21875,-0.21875 0.54688,-0.433594 0.76563,-0.542969 0.21875,-0.21875 0.32812,-0.328125 0.54687,-0.328125 l 0.10938,-0.109375 c 0.4375,-0.21875 0.76562,-0.4375 1.09375,-0.546875 l 0.10937,-0.214843 h 0.21875 c 0.21875,-0.109376 0.4375,-0.21875 0.54688,-0.328126 h 0.21875 c 0.32812,-0.21875 0.54687,-0.328124 0.875,-0.328124 0.54687,-0.328126 1.20312,-0.4375 1.74609,-0.546876 z m 3.17188,14.070313 h -0.21875 c -0.21875,0.109375 -0.4375,0.21875 -0.65625,0.21875 h -0.21875 c 0,0.109375 -0.10938,0.109375 -0.10938,0.109375 l -0.32812,0.109375 h -0.4375 l -0.4375,0.105469 c -0.10938,0.109375 -0.10938,0.109375 -0.21875,0.109375 l -0.4375,0.21875 c -0.65235,0.109375 -1.08985,0.328125 -1.52735,0.546875 -0.4375,0.761718 -0.54687,1.636718 -0.32812,2.507812 1.09375,1.960938 2.73047,2.289063 4.80859,0.980469 l 0.54688,-0.980469 0.10937,-0.328125 v -3.597656 z m 0,0" + id="path36" /> + style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" + d="m 182.52344,54.664062 c 3.0625,-0.324218 5.57422,0.65625 7.65234,2.835938 l 0.10938,0.21875 c 0.10937,0.328125 0.32812,0.546875 0.32812,0.871094 0.21875,0.4375 0.4375,0.875 0.54688,1.203125 v 0.324219 c 0.10937,0.546874 0.10937,1.09375 0.10937,1.417968 v 8.398438 c 0,1.417968 0,2.617187 0.21875,3.597656 0.54688,0.65625 1.09375,1.199219 1.85938,1.308594 l -0.10938,0.328125 -0.21875,0.4375 -0.10937,0.324219 v 0.21875 l -0.10938,0.21875 -0.10937,0.328124 -0.32813,0.871094 -0.21875,0.4375 v 0.328125 l -0.10937,0.109375 -0.4375,1.308594 c -1.96875,0 -3.5,-0.765625 -4.48047,-2.402344 -1.96875,2.402344 -4.375,3.054688 -7.21485,1.855469 -2.51562,-0.980469 -4.04687,-2.945313 -4.48437,-6.105469 0,-4.691406 1.64062,-7.308594 5.03125,-8.070312 0.21875,-0.109375 0.4375,-0.21875 0.54297,-0.328125 h 0.21875 c 0.10937,0 0.10937,0 0.21875,0 l 0.21875,-0.109375 1.20312,-0.21875 0.54688,-0.109375 0.21875,-0.109375 1.09375,-0.109375 c 0.65625,-0.109375 1.09375,-0.109375 1.53125,-0.109375 0.10937,-3.160156 -1.20313,-4.25 -4.15625,-3.160156 h -0.21875 l -0.54688,0.109374 -0.43359,0.21875 -0.21875,0.109376 -0.65625,0.324218 c -0.32813,0.21875 -0.65625,0.4375 -0.98438,0.546875 -0.32812,0.4375 -0.65625,0.652344 -1.09375,0.761719 l -0.4375,-1.089844 -0.21875,-0.109375 v -0.21875 l -0.10937,-0.214843 -0.10938,-0.21875 c -0.32812,-0.4375 -0.4375,-0.875 -0.54687,-1.199219 -0.21875,-0.21875 -0.32813,-0.4375 -0.4375,-0.65625 -0.21875,-0.4375 -0.4375,-0.761719 -0.4375,-1.199219 h 0.10937 l 0.32813,-0.328125 c 0.32812,-0.21875 0.54687,-0.433594 0.76562,-0.542969 0.21875,-0.21875 0.32813,-0.328125 0.54688,-0.328125 l 0.10937,-0.109375 c 0.4375,-0.21875 0.76563,-0.4375 1.09375,-0.546875 l 0.10938,-0.214843 h 0.21875 c 0.21875,-0.109376 0.4375,-0.21875 0.54687,-0.328126 h 0.21875 c 0.32813,-0.21875 0.54688,-0.328124 0.875,-0.328124 0.65235,-0.328126 1.19922,-0.4375 1.7461,-0.546876 z m 3.17187,14.070313 h -0.10937 c -0.32813,0.109375 -0.54688,0.21875 -0.76563,0.21875 h -0.10937 c -0.10938,0.109375 -0.21875,0.109375 -0.21875,0.109375 l -0.32813,0.109375 h -0.4375 l -0.4375,0.105469 c 0,0.109375 -0.10937,0.109375 -0.21875,0.109375 l -0.4375,0.21875 c -0.65625,0.109375 -1.09375,0.328125 -1.42187,0.546875 -0.54297,0.761718 -0.65235,1.636718 -0.4336,2.507812 1.08985,1.960938 2.73047,2.289063 4.8086,0.980469 l 0.54687,-0.980469 0.10938,-0.328125 v -3.597656 z m 0,0" + id="path38" /> - \ No newline at end of file + style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none" + d="m 203.18359,46.269531 c 0.10938,0.109375 0.21875,0.21875 0.21875,0.433594 v 8.726563 h 4.58985 v 5.34375 h -4.58985 v 11.667968 l 0.10938,0.546875 c 0.875,1.089844 2.1875,1.199219 4.04297,0.324219 l 0.10937,0.328125 0.32813,1.417969 0.10937,0.21875 v 0.761718 l 0.21875,0.546876 v 0.21875 c 0.10938,0.433593 0.21875,0.761718 0.21875,0.980468 l 0.21875,0.871094 c -2.83984,1.09375 -5.46484,1.308594 -7.98047,0.65625 -0.76172,-0.4375 -1.30859,-1.089844 -1.74609,-1.746094 -0.32813,-0.652344 -0.54688,-1.308594 -0.76563,-1.851562 v -0.546875 c 0,-0.328125 0,-0.652344 0,-0.871094 V 60.773438 h -2.95312 v -5.34375 h 2.95312 v -7.308594 l 0.21875,-0.109375 0.21875,-0.105469 0.54688,-0.109375 c 0.21875,-0.21875 0.4375,-0.21875 0.65625,-0.328125 l 0.87109,-0.328125 0.32813,-0.109375 0.65625,-0.328125 c 0.65625,-0.105469 1.09375,-0.324219 1.42187,-0.433594 z m 0,0" + id="path40" /> + + diff --git a/assets/themes/cyclestreets/F113.svg b/assets/themes/cyclestreets/F113.svg index a3f117caaa..bfdca7cdad 100644 --- a/assets/themes/cyclestreets/F113.svg +++ b/assets/themes/cyclestreets/F113.svg @@ -2,2448 +2,844 @@ image/svg+xml + xml:space="preserve" + height="274.30603" + width="182.23647" + version="1.1" + id="svg2" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:dc="http://purl.org/dc/elements/1.1/">image/svg+xml + id="defs6"> + clipPathUnits="userSpaceOnUse" + id="clipPath20"> + clipPathUnits="userSpaceOnUse" + id="clipPath30"> + clipPathUnits="userSpaceOnUse" + id="clipPath36"> + clipPathUnits="userSpaceOnUse" + id="clipPath42"> + clipPathUnits="userSpaceOnUse" + id="clipPath48"> + clipPathUnits="userSpaceOnUse" + id="clipPath52"> + clipPathUnits="userSpaceOnUse" + id="clipPath56"> + clipPathUnits="userSpaceOnUse" + id="clipPath60"> + clipPathUnits="userSpaceOnUse" + id="clipPath64"> + clipPathUnits="userSpaceOnUse" + id="clipPath68"> + clipPathUnits="userSpaceOnUse" + id="clipPath72"> + clipPathUnits="userSpaceOnUse" + id="clipPath76"> + clipPathUnits="userSpaceOnUse" + id="clipPath80"> + clipPathUnits="userSpaceOnUse" + id="clipPath122"> + clipPathUnits="userSpaceOnUse" + id="clipPath128"> + clipPathUnits="userSpaceOnUse" + id="clipPath134"> + clipPathUnits="userSpaceOnUse" + id="clipPath140"> - - - - - - - - - + clipPathUnits="userSpaceOnUse" + id="clipPath150"> + clipPathUnits="userSpaceOnUse" + id="clipPath578"> + clipPathUnits="userSpaceOnUse" + id="clipPath584"> + clipPathUnits="userSpaceOnUse" + id="clipPath590"> + clipPathUnits="userSpaceOnUse" + id="clipPath596"> + clipPathUnits="userSpaceOnUse" + id="clipPath600"> + clipPathUnits="userSpaceOnUse" + id="clipPath604"> + clipPathUnits="userSpaceOnUse" + id="clipPath608"> + clipPathUnits="userSpaceOnUse" + id="clipPath612"> + clipPathUnits="userSpaceOnUse" + id="clipPath616"> + clipPathUnits="userSpaceOnUse" + id="clipPath620"> + clipPathUnits="userSpaceOnUse" + id="clipPath624"> + clipPathUnits="userSpaceOnUse" + id="clipPath628"> + clipPathUnits="userSpaceOnUse" + id="clipPath670"> + clipPathUnits="userSpaceOnUse" + id="clipPath676"> + clipPathUnits="userSpaceOnUse" + id="clipPath682"> + clipPathUnits="userSpaceOnUse" + id="clipPath688"> - + clipPathUnits="userSpaceOnUse" + id="clipPath698"> + clipPathUnits="userSpaceOnUse" + id="clipPath720"> - + clipPathUnits="userSpaceOnUse" + id="clipPath752"> + clipPathUnits="userSpaceOnUse" + id="clipPath822"> + clipPathUnits="userSpaceOnUse" + id="clipPath836"> + clipPathUnits="userSpaceOnUse" + id="clipPath842"> + clipPathUnits="userSpaceOnUse" + id="clipPath848"> + clipPathUnits="userSpaceOnUse" + id="clipPath854"> + clipPathUnits="userSpaceOnUse" + id="clipPath858"> + clipPathUnits="userSpaceOnUse" + id="clipPath862"> + clipPathUnits="userSpaceOnUse" + id="clipPath866"> + clipPathUnits="userSpaceOnUse" + id="clipPath870"> + clipPathUnits="userSpaceOnUse" + id="clipPath874"> + clipPathUnits="userSpaceOnUse" + id="clipPath878"> + clipPathUnits="userSpaceOnUse" + id="clipPath882"> + clipPathUnits="userSpaceOnUse" + id="clipPath886"> + clipPathUnits="userSpaceOnUse" + id="clipPath928"> + clipPathUnits="userSpaceOnUse" + id="clipPath934"> + clipPathUnits="userSpaceOnUse" + id="clipPath940"> + clipPathUnits="userSpaceOnUse" + id="clipPath946"> + clipPathUnits="userSpaceOnUse" + id="clipPath956"> + clipPathUnits="userSpaceOnUse" + id="clipPath978"> + x1="739" + y1="325" + x2="739" + y2="342" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1,0,0,-1,0,1442)" + id="linearGradient990"> + style="stop-opacity:1;stop-color:#000000" + offset="1" + id="stop994" /> + clipPathUnits="userSpaceOnUse" + id="clipPath1002"> + x1="739" + y1="325" + x2="739" + y2="333.5" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1,0,0,-1,0,1442)" + id="linearGradient1014"> + style="stop-opacity:1;stop-color:#ffffff" + offset="1" + id="stop1018" /> + clipPathUnits="userSpaceOnUse" + id="clipPath1026"> + x1="744" + y1="333.5" + x2="744" + y2="342" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1,0,0,-1,0,1442)" + id="linearGradient1038"> + style="stop-opacity:1;stop-color:#ffffff" + offset="1" + id="stop1042" /> + clipPathUnits="userSpaceOnUse" + id="clipPath1050"> + x1="739" + y1="325" + x2="744" + y2="325" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1,0,0,-1,0,1442)" + id="linearGradient1062"> + style="stop-opacity:1;stop-color:#000000" + offset="1" + id="stop1066" /> + x1="927" + y1="325" + x2="922" + y2="325" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1,0,0,-1,0,1442)" + id="linearGradient1072"> + style="stop-opacity:1;stop-color:#000000" + offset="1" + id="stop1076" /> + clipPathUnits="userSpaceOnUse" + id="clipPath1084"> + clipPathUnits="userSpaceOnUse" + id="clipPath1106"> + clipPathUnits="userSpaceOnUse" + id="clipPath1112"> + clipPathUnits="userSpaceOnUse" + id="clipPath1126"> + clipPathUnits="userSpaceOnUse" + id="clipPath1132"> + clipPathUnits="userSpaceOnUse" + id="clipPath1138"> + clipPathUnits="userSpaceOnUse" + id="clipPath1144"> + clipPathUnits="userSpaceOnUse" + id="clipPath1148"> + clipPathUnits="userSpaceOnUse" + id="clipPath1152"> + clipPathUnits="userSpaceOnUse" + id="clipPath1156"> + clipPathUnits="userSpaceOnUse" + id="clipPath1160"> + clipPathUnits="userSpaceOnUse" + id="clipPath1164"> + clipPathUnits="userSpaceOnUse" + id="clipPath1168"> + clipPathUnits="userSpaceOnUse" + id="clipPath1172"> + clipPathUnits="userSpaceOnUse" + id="clipPath1176"> + clipPathUnits="userSpaceOnUse" + id="clipPath1218"> + clipPathUnits="userSpaceOnUse" + id="clipPath1224"> + clipPathUnits="userSpaceOnUse" + id="clipPath1230"> + clipPathUnits="userSpaceOnUse" + id="clipPath1236"> + clipPathUnits="userSpaceOnUse" + id="clipPath1246"> + clipPathUnits="userSpaceOnUse" + id="clipPath1262"> + clipPathUnits="userSpaceOnUse" + id="clipPath1854"> + clipPathUnits="userSpaceOnUse" + id="clipPath1860"> + clipPathUnits="userSpaceOnUse" + id="clipPath1866"> + clipPathUnits="userSpaceOnUse" + id="clipPath1872"> + clipPathUnits="userSpaceOnUse" + id="clipPath1876"> + clipPathUnits="userSpaceOnUse" + id="clipPath1880"> + clipPathUnits="userSpaceOnUse" + id="clipPath1884"> + clipPathUnits="userSpaceOnUse" + id="clipPath1888"> + clipPathUnits="userSpaceOnUse" + id="clipPath1892"> + clipPathUnits="userSpaceOnUse" + id="clipPath1896"> + clipPathUnits="userSpaceOnUse" + id="clipPath1900"> + clipPathUnits="userSpaceOnUse" + id="clipPath1904"> + clipPathUnits="userSpaceOnUse" + id="clipPath1946"> + clipPathUnits="userSpaceOnUse" + id="clipPath1952"> + clipPathUnits="userSpaceOnUse" + id="clipPath1958"> + clipPathUnits="userSpaceOnUse" + id="clipPath1964"> - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + clipPathUnits="userSpaceOnUse" + id="clipPath1974"> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + y="0" + x="0" + height="6" + width="6" + patternUnits="userSpaceOnUse" + id="EMFhbasepattern" /> + + id="path144" /> + id="path5255" + d="m -553.89265,417.08192 h 111.79768 c 9.3186,0 16.89994,-7.60913 16.89994,-17.02872 V 214.47254 c 0,-9.35088 -7.58134,-16.83544 -16.89994,-16.83544 h -111.92542 c -9.38034,0 -16.96381,7.61342 -16.96381,16.96644 l 0.066,185.44966 c 0,9.41745 7.64521,17.02872 17.02555,17.02872 z" + style="fill:#0071b3;fill-opacity:1;stroke-width:1.04179811" /> + id="path5257" + d="m -553.89264,417.08191 h 111.79767 c 9.3186,0 16.89994,-7.61127 16.89994,-17.02872 V 214.47252 c 0,-9.35087 -7.58134,-16.83543 -16.89994,-16.83543 h -111.92541 c -9.38034,0 -16.96382,7.61342 -16.96382,16.96645 l 0.066,185.44965 c 0,9.41745 7.64522,17.02872 17.02556,17.02872 z" + stroke-miterlimit="3.863" + style="opacity:0;fill:none;stroke:#0071b3;stroke-width:0;stroke-miterlimit:3.86299992" /> + id="path5263" + d="m -430.65802,214.27924 c 0,-6.12724 -4.94352,-11.09261 -10.92173,-11.09261 h -112.95372 c -6.03995,0 -10.92174,4.96751 -10.92174,11.09261 v 186.22497 c 0,6.06282 4.88179,11.09476 10.92174,11.09476 35.40302,0 77.48682,0 112.95372,0 5.97821,0 10.92173,-4.96752 10.92173,-11.15704 z" + style="fill:#ffffff;stroke-width:1.04179811" /> + id="path5265" + d="m -430.65802,214.27924 c 0,-6.12724 -4.94352,-11.09262 -10.92173,-11.09262 h -112.95372 c -6.03995,0 -10.92174,4.96752 -10.92174,11.09262 v 186.22495 c 0,6.06283 4.88179,11.09477 10.92174,11.09477 35.40302,0 77.48683,0 112.95372,0 5.97821,0 10.92173,-4.96752 10.92173,-11.15704 z" + stroke-miterlimit="3.863" + style="fill:none;stroke:#ffffff;stroke-width:0;stroke-miterlimit:3.86299992" /> + id="path5267" + d="m -436.05715,214.21696 c 0,-3.09476 -2.56757,-5.54737 -5.5886,-5.54737 h -112.95372 c -3.01891,0 -5.46087,2.45261 -5.46087,5.54737 v 186.35167 c 0,3.03249 2.43983,5.54739 5.46087,5.54739 32.57572,0 80.50787,0 113.08358,0 3.01891,0 5.45874,-2.45048 5.45874,-5.54739 z" + style="fill:#0071b3;fill-opacity:1;stroke-width:1.04179811" /> + id="path5269" + d="m -436.05715,214.21696 c 0,-3.09476 -2.56756,-5.54738 -5.5886,-5.54738 h -112.95371 c -3.01891,0 -5.46087,2.45262 -5.46087,5.54738 v 186.35167 c 0,3.03248 2.43982,5.54738 5.46087,5.54738 32.57571,0 80.50786,0 113.08358,0 3.01891,0 5.45873,-2.45047 5.45873,-5.54738 z" + stroke-miterlimit="3.863" + style="fill:none;stroke:#0071b3;stroke-width:0;stroke-miterlimit:3.86299992" /> + style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.83451968;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect1302" + width="18.539501" + height="19.155836" + x="-544.87085" + y="-276.52475" + transform="scale(1,-1)" /> + style="opacity:1;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.83451968;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" + id="rect1302-3" + width="18.539501" + height="19.155836" + x="-473.12518" + y="-275.46426" + transform="scale(1,-1)" /> + id="path5" /> + transform="matrix(0.02,0,0,-0.02,-748.27595,429.58555)" + id="layer103" + style="fill:#ffffff;stroke:none"> + d="m 12955.029,9410.4139 c -0.91,-2012.611 0.911,-2522.5939 8.197,-2540.8076 17.302,-44.6235 72.855,-80.1402 125.674,-80.1402 48.267,0 94.711,27.3206 118.389,69.2121 l 20.946,35.5166 V 8290.273 9685.4405 h 127.496 127.495 v 113.836 113.835 h -264.098 -264.099 z" + id="path16" + style="stroke-width:0.91068375" /> + d="m 11798.461,8501.5516 v -109.2821 h 122.943 122.942 v -744.9393 -745.8499 l 20.946,-39.1595 c 50.087,-94.7111 170.297,-97.4431 237.688,-6.3748 19.124,25.4992 19.124,29.1419 21.856,890.6488 l 1.821,864.2388 h -264.097 -264.099 z" + id="path18" + style="stroke-width:0.91068375" /> + id="path1349" + d="m -551.26083,386.46189 h 0.32 0.064 0.128 0.512 0.31999 0.576 0.128 0.192 0.128 0.128 0.12799 0.768 0.70399 0.128 0.448 0.512 0.12799 0.704 0.32 0.25599 0.448 0.192 0.512 0.128 0.70399 0.128 0.448 v -3.77597 h -0.128 -0.768 -0.256 -0.31999 -0.128 -0.192 -0.512 -0.192 -0.63999 -0.128 -0.448 -0.192 -0.12799 -0.128 -0.704 -0.51199 -0.192 -0.64 -0.128 -0.44799 v -3.90397 h 0.25599 0.768 0.256 0.128 0.12799 0.128 0.192 0.128 0.128 0.128 0.83199 0.128 0.192 0.064 0.704 0.51199 0.192 0.64 0.12799 0.512 v -3.64798 h -0.576 -0.12799 -0.192 -0.128 -0.128 -0.128 -0.76799 -0.512 -0.32 -0.51199 -0.128 -0.704 -0.51199 -0.192 -0.64 -0.128 -0.44799 v -7.93594 h -0.064 0.064 -0.128 0.064 -0.064 v 0 h -0.064 0.064 -0.064 v 0 h -0.064 0.064 -0.128 0.064 -0.064 v 0 h -0.064 0.064 -0.128 0.064 -0.064 v 0 h -0.064 0.064 -0.064 v 0 h -0.064 0.064 -0.128 0.064 -0.064 v 0 h -0.064 0.064 -0.064 v 0 h -0.064 0.064 -0.128 0.064 -0.064 v 0 h -0.064 0.064 -0.128 0.064 -0.064 v 0 h -0.064 0.064 -0.064 v 0 h -0.064 0.064 -0.128 0.064 -0.064 v 0 h -0.064 0.064 -0.064 v 0 h -0.064 0.064 -0.128 0.064 -0.064 v 0 h -0.064 0.064 -0.128 0.064 -0.064 v 0 h -0.064 0.064 -0.064 v 0 h -0.064 0.064 -0.128 0.064 -0.064 v 0 h -0.064 0.064 -0.064 v 0 h -0.064 0.064 -0.128 0.064 -0.064 v 0 h -0.064 0.064 -0.128 0.064 -0.064 v 0 h -0.064 0.064 -0.064 v 0 h -0.064 0.064 -0.128 0.064 -0.064 v 0 h -0.064 0.064 -0.064 v 0 h -0.064 0.064 -0.128 0.064 -0.064 v 0 h -0.064 0.064 -0.128 0.064 -0.064 v 0 h -0.064 0.064 -0.064 v 0 h -0.064 0.064 -0.12799 0.064 -0.064 v 0 h -0.064 0.064 -0.064 v 0 h -0.064 0.064 -0.128 0.064 -0.064 v 0 h -0.064 0.064 -0.128 0.064 -0.064 v 0 h -0.064 0.064 -0.064 v 0 h -0.064 0.064 -0.064 v 0.192 0.896 0.44799 0.384 0.128 0.256 0.89599 0.128 1.02399 0.384 0.192 0.89599 0.192 0.128 1.59999 0.31999 0.128 0.256 0.89599 0.704 0.128 0.256 0.128 0.19199 0.192 1.02399 0.832 0.128 0.63999 0.64 0.192 0.83199 0.192 0.576 0.57599 0.256 0.63999 0.192 0.896 0.128 0.57599 z" + style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.80000001" /> + id="path1351" + d="m -538.97292,386.58989 c 1.08799,0 1.72799,-0.576 1.98399,-1.79199 0,-0.95999 -0.256,-1.72798 -0.768,-2.23998 -1.15199,-0.576 -1.98398,-0.256 -2.49598,1.08799 -0.256,1.53599 0.128,2.49598 1.27999,2.94398 z m -0.51199,-5.63196 h 0.192 0.19199 0.512 0.128 0.70399 0.32 0.256 v -13.7599 h -0.576 -0.38399 -0.192 -0.128 -0.192 -0.128 -0.76799 -0.128 -0.448 v 0.192 0.192 0.192 0.192 0.128 1.02399 0.384 0.19199 0.256 0.192 0.256 0.64 0.19199 0.832 0.192 0.57599 0.384 0.32 0.31999 0.384 0.256 0.384 0.25599 0.896 0.32 0.19199 0.32 0.192 0.89599 0.576 0.192 0.192 0.25599 0.192 0.832 0.128 0.63999 z" + style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.80000001" /> + id="path1353" + d="m -530.46098,381.27793 c 3.19998,0.064 5.05596,-1.91999 5.50396,-5.95196 l 0.128,-0.63999 v -0.384 c 0,-0.57599 0.064,-1.08799 0,-1.47199 l -0.128,0.064 h -0.128 -0.76799 -0.128 -0.128 -1.21599 -0.256 -0.256 -0.256 -0.256 -0.19199 -0.192 -0.192 -0.704 -0.44799 -0.128 -0.192 -0.128 -0.128 -0.70399 -0.128 -0.448 c 0.128,-1.47199 0.704,-2.30398 1.72799,-2.62398 1.34399,-0.256 2.43198,0.192 3.26397,1.27999 l 0.32,-0.448 c 0.128,-0.12799 0.192,-0.25599 0.256,-0.38399 l 0.064,-0.064 0.064,-0.064 c 0.128,-0.128 0.256,-0.256 0.32,-0.384 l 0.064,-0.128 c 0.064,-0.064 0.064,-0.064 0.064,-0.128 h 0.128 l 0.064,-0.128 v -0.064 l 0.128,-0.064 v -0.128 c 0.12799,-0.12799 0.25599,-0.25599 0.31999,-0.31999 -1.21599,-2.04799 -2.94398,-2.81598 -5.11996,-2.30399 -2.62398,0.576 -4.15997,2.68799 -4.47997,6.20796 -0.256,4.47997 1.15199,7.23195 4.28797,8.12794 z m 0.70399,-3.07198 c -1.21599,-0.256 -1.91998,-1.08799 -2.17598,-2.49598 h 0.256 0.256 0.51199 1.21599 0.576 0.128 0.192 0.128 0.128 0.12799 0.768 c -0.256,1.53599 -0.95999,2.36798 -2.11199,2.49598 z" + style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.80000001" /> + id="path1355" + d="m -518.62107,386.46189 c 0.064,-0.064 0.128,-0.128 0.128,-0.256 v -5.11996 h 0.128 0.448 0.192 0.51199 0.128 0.704 0.31999 0.256 v -3.13598 h -0.128 -0.44799 -0.192 -0.512 -0.192 -0.63999 -0.128 -0.448 V 371.102 l 0.064,-0.31999 c 0.512,-0.64 1.27999,-0.704 2.36798,-0.192 l 0.064,-0.192 0.192,-0.83199 0.064,-0.128 v -0.448 l 0.128,-0.32 v -0.128 c 0.064,-0.25599 0.128,-0.44799 0.128,-0.57599 l 0.128,-0.512 c -1.66399,-0.63999 -3.19998,-0.76799 -4.67197,-0.384 -0.44799,0.256 -0.76799,0.64 -1.02399,1.024 -0.192,0.38399 -0.32,0.76799 -0.448,1.08799 v 0.32 c 0,0.19199 0,0.38399 0,0.51199 v 0.192 0.256 0.128 0.89599 0.64 0.192 0.89599 0.128 0.63999 0.64 0.192 0.89599 0.192 0.192 0.256 0.83199 0.128 0.63999 h -0.192 -0.12799 -0.192 -0.64 -0.128 -0.44799 v 0.256 0.192 0.256 0.63999 0.192 0.832 0.192 0.57599 h 0.128 0.19199 0.128 0.704 0.32 0.25599 v 0.89599 0.192 0.832 0.57599 0.192 0.83199 0.192 0.576 l 0.128,0.064 0.128,0.064 0.32,0.064 c 0.128,0.128 0.32,0.128 0.384,0.192 l 0.51199,0.19199 0.192,0.064 0.384,0.192 c 0.384,0.064 0.63999,0.192 0.83199,0.256 z" + style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.80000001" /> + id="path1357" + d="m -510.04513,381.40593 c 1.98398,0.128 3.64797,-0.512 4.99196,-2.04799 l -0.128,-0.192 -0.128,-0.12799 c -0.064,-0.128 -0.128,-0.256 -0.192,-0.32 l -0.19199,-0.256 -0.128,-0.128 c -0.064,-0.192 -0.192,-0.384 -0.32,-0.448 l -0.064,-0.12799 -0.064,-0.128 -0.064,-0.064 -0.512,-0.768 c -1.72798,1.85599 -3.07197,2.04799 -3.96797,0.576 0,-0.384 0.064,-0.704 0.192,-1.02399 h 0.128 l 0.128,-0.128 h 0.128 l 0.128,-0.064 0.32,-0.064 0.57599,-0.192 c 1.47199,0 2.62398,-0.576 3.51998,-1.66399 0.76799,-1.47199 0.89599,-2.87998 0.51199,-4.35197 -0.44799,-1.27999 -1.15199,-2.11198 -2.04798,-2.49598 -2.94398,-1.08799 -5.37596,-0.448 -7.35995,1.98399 0.064,0.192 0.192,0.38399 0.32,0.51199 l 0.192,0.064 c 0.128,0.32 0.32,0.512 0.51199,0.704 l 0.128,0.192 0.064,0.064 0.064,0.128 0.128,0.128 h 0.064 l 0.064,0.064 c 0.192,0.31999 0.384,0.57599 0.576,0.70399 1.27999,-1.66399 2.62398,-2.23998 3.96797,-1.72799 l 0.064,0.128 c 0.128,0.128 0.32,0.32 0.384,0.576 0.064,0.51199 -0.064,0.89599 -0.384,1.15199 h -0.128 l -0.064,0.064 h -0.128 l -0.128,0.064 -0.064,0.128 c -0.38399,0.064 -0.70399,0.128 -0.95999,0.256 -2.30398,0.128 -3.64797,1.47199 -3.90397,3.96797 0,2.94398 1.27999,4.60796 3.77597,4.86396 z" + style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.80000001" /> + id="path1359" + d="m -499.35721,381.40593 c 1.98398,0.128 3.64797,-0.512 4.99196,-2.04799 l -0.128,-0.192 -0.128,-0.12799 c -0.064,-0.128 -0.12799,-0.256 -0.25599,-0.32 l -0.128,-0.256 -0.128,-0.128 c -0.128,-0.192 -0.256,-0.384 -0.32,-0.448 l -0.064,-0.12799 -0.064,-0.128 -0.128,-0.064 -0.51199,-0.768 c -1.66399,1.85599 -3.00798,2.04799 -3.96797,0.576 0,-0.384 0.064,-0.704 0.19199,-1.02399 h 0.192 l 0.128,-0.128 h 0.128 l 0.064,-0.064 0.32,-0.064 0.63999,-0.192 c 1.47199,0 2.62398,-0.576 3.51998,-1.66399 0.76799,-1.47199 0.89599,-2.87998 0.44799,-4.35197 -0.38399,-1.27999 -1.08799,-2.11198 -1.98398,-2.49598 -2.94398,-1.08799 -5.43996,-0.448 -7.42395,1.98399 0.128,0.192 0.256,0.38399 0.384,0.51199 l 0.128,0.064 c 0.192,0.32 0.384,0.512 0.576,0.704 l 0.128,0.192 0.064,0.064 0.064,0.128 0.064,0.128 h 0.12799 l 0.064,0.064 c 0.192,0.31999 0.384,0.57599 0.576,0.70399 1.27999,-1.66399 2.62398,-2.23998 3.96797,-1.72799 v 0.128 c 0.192,0.128 0.32,0.32 0.448,0.576 0,0.51199 -0.128,0.89599 -0.384,1.15199 h -0.128 l -0.064,0.064 h -0.128 l -0.128,0.064 -0.064,0.128 c -0.384,0.064 -0.70399,0.128 -0.95999,0.256 -2.36798,0.128 -3.64797,1.47199 -3.90397,3.96797 0,2.94398 1.27999,4.60796 3.77597,4.86396 z" + style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.80000001" /> + id="path1361" + d="m -488.28529,386.46189 c 0.064,-0.064 0.064,-0.128 0.064,-0.256 v -5.11996 h 0.192 0.44799 0.192 0.512 0.128 0.70399 0.32 0.256 v -3.13598 h -0.192 -0.384 -0.192 -0.51199 -0.192 -0.64 -0.128 -0.51199 V 371.102 l 0.128,-0.31999 c 0.51199,-0.64 1.27999,-0.704 2.36798,-0.192 l 0.064,-0.192 0.192,-0.83199 v -0.128 l 0.064,-0.448 0.128,-0.32 v -0.128 c 0.064,-0.25599 0.064,-0.44799 0.128,-0.57599 l 0.128,-0.512 c -1.66399,-0.63999 -3.19998,-0.76799 -4.67197,-0.384 -0.448,0.256 -0.76799,0.64 -1.08799,1.024 -0.192,0.38399 -0.32,0.76799 -0.384,1.08799 v 0.32 c 0,0.19199 -0.064,0.38399 0,0.51199 v 0.192 0.256 0.128 0.89599 0.64 0.192 0.89599 0.128 0.63999 0.64 0.192 0.89599 0.192 0.192 0.256 0.83199 0.128 0.63999 h -0.192 -0.128 -0.192 -0.63999 -0.128 -0.448 v 0.256 0.192 0.256 0.63999 0.192 0.832 0.192 0.57599 h 0.128 0.128 0.192 0.63999 0.32 0.32 v 0.89599 0.192 0.832 0.57599 0.192 0.83199 0.192 0.576 l 0.128,0.064 0.064,0.064 0.38399,0.064 c 0.128,0.128 0.256,0.128 0.384,0.192 l 0.512,0.19199 0.192,0.064 0.38399,0.192 c 0.32,0.064 0.64,0.192 0.832,0.256 z" + style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.80000001" /> + id="path1363" + d="m -477.66137,381.21393 h 0.128 0.76799 v -3.64797 c -1.53599,0.25599 -2.62398,-0.384 -3.26397,-1.85599 v -0.128 c -0.128,-0.384 -0.192,-0.76799 -0.192,-1.15199 v -7.16795 h -0.64 -0.192 -0.19199 -0.512 -0.128 -0.70399 -0.064 -0.512 v 0.128 0.256 0.192 0.192 0.128 1.02399 0.32 1.02399 0.384 0.44799 0.384 0.384 1.02399 0.128 0.192 1.53599 0.38399 0.256 0.384 0.32 0.19199 0.32 0.192 0.89599 0.576 0.192 0.192 0.25599 0.192 0.832 0.128 0.63999 h 0.70399 0.128 0.192 0.512 0.192 0.63999 0.128 0.448 v -1.34399 c 0.70399,0.896 1.47199,1.47199 2.36798,1.59999 z" + style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.80000001" /> + id="path1365" + d="m -470.49342,381.53393 c 1.79198,0.192 3.26397,-0.384 4.47996,-1.66399 v -0.128 c 0.128,-0.192 0.192,-0.32 0.256,-0.512 0.128,-0.25599 0.256,-0.51199 0.256,-0.70399 v -0.192 c 0.128,-0.32 0.128,-0.63999 0.128,-0.83199 v -4.92797 c 0,-0.83199 0,-1.53598 0.128,-2.11198 0.31999,-0.384 0.63999,-0.704 1.08799,-0.768 l -0.064,-0.19199 -0.128,-0.256 -0.064,-0.192 -0.064,-0.128 v -0.128 l -0.064,-0.192 -0.192,-0.51199 -0.064,-0.128 -0.064,-0.128 v -0.192 l -0.064,-0.064 -0.25599,-0.76799 c -1.21599,0 -2.04799,0.44799 -2.62398,1.40799 -1.152,-1.40799 -2.55999,-1.79199 -4.22397,-1.088 -1.53599,0.576 -2.43198,1.72799 -2.68798,3.58398 0.064,2.75198 1.02399,4.28796 3.00798,4.73596 0.128,0.064 0.19199,0.128 0.31999,0.192 h 0.128 c 0.064,0 0.064,0 0.128,0 l 0.128,0.064 0.70399,0.128 0.32,0.064 0.128,0.064 0.63999,0.064 c 0.384,0.064 0.64,0.064 0.896,0.064 0.064,1.85599 -0.704,2.49598 -2.43198,1.85599 h -0.128 l -0.32,-0.064 -0.256,-0.128 -0.12799,-0.064 -0.384,-0.192 c -0.192,-0.128 -0.384,-0.256 -0.576,-0.32 -0.192,-0.256 -0.448,-0.384 -0.63999,-0.448 l -0.256,0.64 -0.128,0.064 v 0.128 l -0.128,0.128 v 0.12799 c -0.192,0.256 -0.32,0.512 -0.384,0.704 -0.064,0.128 -0.128,0.256 -0.192,0.384 -0.128,0.25599 -0.25599,0.44799 -0.31999,0.70399 h 0.128 l 0.064,0.128 0.12799,0.064 c 0.128,0.128 0.32,0.256 0.448,0.32 0.128,0.128 0.192,0.192 0.32,0.192 l 0.064,0.064 c 0.256,0.12799 0.448,0.25599 0.63999,0.31999 l 0.064,0.128 h 0.128 c 0.128,0.064 0.256,0.128 0.32,0.192 h 0.128 c 0.192,0.128 0.32,0.192 0.512,0.192 0.31999,0.192 0.70399,0.256 1.02399,0.32 z m 1.85598,-8.25594 h -0.128 c -0.128,-0.064 -0.256,-0.128 -0.384,-0.128 h -0.128 c 0,-0.064 -0.064,-0.064 -0.064,-0.064 l -0.19199,-0.064 h -0.128 -0.128 l -0.256,-0.064 c -0.064,-0.064 -0.064,-0.064 -0.128,-0.064 l -0.128,-0.064 -0.128,-0.064 c -0.38399,-0.064 -0.63999,-0.192 -0.89599,-0.32 -0.25599,-0.448 -0.31999,-0.95999 -0.192,-1.47199 0.64,-1.15199 1.59999,-1.34399 2.81598,-0.57599 l 0.32,0.57599 0.064,0.192 v 0.192 0.192 0.256 0.128 0.19199 0.192 0.96 h -0.12799 z" + style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.80000001" /> + id="path1367" + d="m -458.65351,381.53393 c 1.79199,0.192 3.26398,-0.384 4.47996,-1.66399 l 0.064,-0.128 c 0.064,-0.192 0.192,-0.32 0.192,-0.512 0.128,-0.25599 0.256,-0.51199 0.32,-0.70399 v -0.192 c 0.064,-0.32 0.064,-0.63999 0.064,-0.83199 v -4.92797 c 0,-0.83199 0,-1.53598 0.128,-2.11198 0.31999,-0.384 0.63999,-0.704 1.08799,-0.768 l -0.064,-0.19199 -0.128,-0.256 -0.064,-0.192 v -0.128 l -0.064,-0.128 -0.064,-0.192 -0.192,-0.51199 -0.064,-0.128 -0.064,-0.128 v -0.192 l -0.064,-0.064 -0.25599,-0.76799 c -1.15199,0 -2.04798,0.44799 -2.62398,1.40799 -1.15199,-1.40799 -2.55999,-1.79199 -4.22397,-1.088 -1.47199,0.576 -2.36798,1.72799 -2.62398,3.58398 0,2.75198 0.96,4.28796 2.94398,4.73596 0.128,0.064 0.25599,0.128 0.31999,0.192 h 0.128 c 0.064,0 0.064,0 0.128,0 l 0.128,0.064 0.70399,0.128 0.32,0.064 0.128,0.064 0.64,0.064 c 0.384,0.064 0.64,0.064 0.896,0.064 0.064,1.85599 -0.704,2.49598 -2.43199,1.85599 h -0.128 l -0.32,-0.064 -0.256,-0.128 -0.12799,-0.064 -0.384,-0.192 c -0.192,-0.128 -0.384,-0.256 -0.576,-0.32 -0.19199,-0.256 -0.38399,-0.384 -0.63999,-0.448 l -0.256,0.64 -0.128,0.064 v 0.128 l -0.064,0.128 -0.064,0.128 c -0.192,0.25599 -0.256,0.51199 -0.32,0.70399 -0.128,0.128 -0.192,0.256 -0.256,0.384 -0.128,0.256 -0.256,0.44799 -0.256,0.70399 h 0.064 l 0.128,0.128 0.064,0.064 c 0.192,0.128 0.32,0.256 0.448,0.32 0.128,0.128 0.19199,0.192 0.31999,0.192 l 0.064,0.064 c 0.256,0.128 0.448,0.25599 0.64,0.31999 l 0.064,0.128 h 0.12799 c 0.128,0.064 0.256,0.128 0.32,0.192 h 0.128 c 0.192,0.128 0.32,0.192 0.512,0.192 0.38399,0.192 0.70399,0.256 1.02399,0.32 z m 1.85599,-8.25594 h -0.064 c -0.192,-0.064 -0.32,-0.128 -0.448,-0.128 h -0.064 c -0.064,-0.064 -0.128,-0.064 -0.128,-0.064 l -0.192,-0.064 h -0.128 -0.128 l -0.256,-0.064 c 0,-0.064 -0.064,-0.064 -0.128,-0.064 l -0.128,-0.064 -0.128,-0.064 c -0.38399,-0.064 -0.63999,-0.192 -0.83199,-0.32 -0.31999,-0.448 -0.38399,-0.95999 -0.256,-1.47199 0.64,-1.15199 1.59999,-1.34399 2.81599,-0.57599 l 0.32,0.57599 0.064,0.192 v 0.192 0.192 0.256 0.128 0.19199 0.192 0.96 h -0.128 z" + style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.80000001" /> + id="path1369" + d="m -446.5576,386.46189 c 0.064,-0.064 0.128,-0.128 0.128,-0.256 v -5.11996 h 0.128 0.448 0.192 0.51199 0.128 0.70399 0.32 0.256 v -3.13598 h -0.128 -0.448 -0.192 -0.51199 -0.192 -0.63999 -0.128 -0.448 V 371.102 l 0.064,-0.31999 c 0.512,-0.64 1.27999,-0.704 2.36798,-0.192 l 0.064,-0.192 0.192,-0.83199 0.064,-0.128 v -0.448 l 0.128,-0.32 v -0.128 c 0.064,-0.25599 0.12799,-0.44799 0.12799,-0.57599 l 0.128,-0.512 c -1.66398,-0.63999 -3.19997,-0.76799 -4.67196,-0.384 -0.448,0.256 -0.768,0.64 -1.02399,1.024 -0.192,0.38399 -0.32,0.76799 -0.448,1.08799 v 0.32 c 0,0.19199 0,0.38399 0,0.51199 v 0.192 0.256 0.128 0.89599 0.64 0.192 0.89599 0.128 0.63999 0.64 0.192 0.89599 0.192 0.192 0.256 0.83199 0.128 0.63999 h -0.192 -0.128 -0.192 -0.63999 -0.128 -0.44799 v 0.256 0.192 0.256 0.63999 0.192 0.832 0.192 0.57599 h 0.12799 0.192 0.128 0.704 0.31999 0.256 v 0.89599 0.192 0.832 0.57599 0.192 0.83199 0.192 0.576 l 0.128,0.064 0.128,0.064 0.31999,0.064 c 0.128,0.128 0.256,0.128 0.384,0.192 l 0.512,0.19199 0.19199,0.064 0.384,0.192 c 0.384,0.064 0.64,0.192 0.832,0.256 z" + style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.80000001" /> + id="path9913" + d="m -556.49212,208.85498 c -2.11924,1.75815 -3.7258,4.82187 -3.7258,7.35927 v 9.66249 l 108.05906,180.41302 11.7495,-0.2922 c 5.80007,0.12455 3.92214,-4.94793 4.46526,-10.56004 l 0.096,-10.24937 -102.88427,-176.52825 h -14.15708" + style="fill:#ed1c24;stroke-width:1.04074001" /> - - Lg_fietsambassade_Q_blauw_neg - - - - - + + + + + + + \ No newline at end of file diff --git a/assets/themes/cyclofix/fietsambassade_gent_logo_small.svg b/assets/themes/cyclofix/fietsambassade_gent_logo_small.svg index c57ef09987..258b3daf6e 100644 --- a/assets/themes/cyclofix/fietsambassade_gent_logo_small.svg +++ b/assets/themes/cyclofix/fietsambassade_gent_logo_small.svg @@ -1,83 +1,7 @@ - - - - - - image/svg+xml - - - - - - - - - - - - Lg_fietsambassade_Q_blauw_neg - - - - + + + + + + + \ No newline at end of file diff --git a/assets/themes/cyclofix/logo.svg b/assets/themes/cyclofix/logo.svg index 951821e753..0e9e260d34 100644 --- a/assets/themes/cyclofix/logo.svg +++ b/assets/themes/cyclofix/logo.svg @@ -1,160 +1,12 @@ - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + \ No newline at end of file diff --git a/assets/themes/cyclofix/unused_assets/license_info.json b/assets/themes/cyclofix/unused_assets/license_info.json deleted file mode 100644 index 8bdd0ef89a..0000000000 --- a/assets/themes/cyclofix/unused_assets/license_info.json +++ /dev/null @@ -1,44 +0,0 @@ -[ - { - "path": "non_bike_repair_shop.svg", - "license": "CC-BY-SA", - "authors": [ - "Pieter Fiers", - "Thibault Declercq", - "Pierre Barban", - "Joost Schouppe", - "Pieter Vander Vennet" - ], - "sources": [ - "https://osoc.be/editions/2020/cyclofix" - ] - }, - { - "path": "non_bike_shop.svg", - "license": "CC-BY-SA", - "authors": [ - "Pieter Fiers", - "Thibault Declercq", - "Pierre Barban", - "Joost Schouppe", - "Pieter Vander Vennet" - ], - "sources": [ - "https://osoc.be/editions/2020/cyclofix" - ] - }, - { - "path": "place_with_pump.svg", - "license": "CC-BY-SA", - "authors": [ - "Pieter Fiers", - "Thibault Declercq", - "Pierre Barban", - "Joost Schouppe", - "Pieter Vander Vennet" - ], - "sources": [ - "https://osoc.be/editions/2020/cyclofix" - ] - } -] \ No newline at end of file diff --git a/assets/themes/cyclofix/unused_assets/non_bike_repair_shop.svg b/assets/themes/cyclofix/unused_assets/non_bike_repair_shop.svg deleted file mode 100644 index 28467dd1a8..0000000000 --- a/assets/themes/cyclofix/unused_assets/non_bike_repair_shop.svg +++ /dev/null @@ -1,26 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - diff --git a/assets/themes/cyclofix/unused_assets/non_bike_shop.svg b/assets/themes/cyclofix/unused_assets/non_bike_shop.svg deleted file mode 100644 index 5c6df64f81..0000000000 --- a/assets/themes/cyclofix/unused_assets/non_bike_shop.svg +++ /dev/null @@ -1,185 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/assets/themes/cyclofix/unused_assets/place_with_pump.svg b/assets/themes/cyclofix/unused_assets/place_with_pump.svg deleted file mode 100644 index 50d4dd39d6..0000000000 --- a/assets/themes/cyclofix/unused_assets/place_with_pump.svg +++ /dev/null @@ -1,32 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/assets/themes/drinking_water/drinking_water.json b/assets/themes/drinking_water/drinking_water.json index 198a46cac5..54334749bd 100644 --- a/assets/themes/drinking_water/drinking_water.json +++ b/assets/themes/drinking_water/drinking_water.json @@ -9,7 +9,8 @@ "zh_Hant": "飲用水", "it": "Acqua potabile", "de": "Trinkwasserstelle", - "nb_NO": "Drikkevann" + "nb_NO": "Drikkevann", + "hu": "Ivóvíz" }, "description": { "en": "On this map, publicly accessible drinking water spots are shown and can be easily added", @@ -20,19 +21,9 @@ "it": "Questa mappa mostra tutti i luoghi in cui è disponibile acqua potabile ed è possibile aggiungerne di nuovi", "ru": "На этой карте показываются и могут быть легко добавлены общедоступные точки питьевой воды", "de": "Eine Karte zum Anzeigen und Bearbeiten öffentlicher Trinkwasserstellen", - "nb_NO": "Offentlig tilgjengelig drikkevannssteder" + "nb_NO": "Offentlig tilgjengelig drikkevannssteder", + "hu": "Ezen a térképen a nyilvánosan hozzáférhető ivóvíznyerő helyek láthatók, szerkeszthetők és rajzolhatók fel könnyedén" }, - "language": [ - "en", - "nl", - "fr", - "ru", - "ja", - "zh_Hant", - "it", - "de", - "nb_NO" - ], "maintainer": "MapComplete", "icon": "./assets/themes/drinking_water/logo.svg", "version": "0", diff --git a/assets/themes/drinking_water/logo.svg b/assets/themes/drinking_water/logo.svg index 4b5d43187b..bf53b78120 100644 --- a/assets/themes/drinking_water/logo.svg +++ b/assets/themes/drinking_water/logo.svg @@ -1,105 +1,119 @@ - - - - image/svg+xml - - - - - + width="500" + height="500" + viewBox="0 0 499.99999 500" + version="1.1" + id="svg29" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns="http://www.w3.org/2000/svg" + xmlns:svg="http://www.w3.org/2000/svg"> + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - + style="fill:#68c2f5;fill-opacity:1;stroke:#0000ff;stroke-width:0.0944882;stroke-linecap:round;stroke-linejoin:bevel;stop-color:#000000" + id="path967" + cx="252.75545" + cy="248.09387" + r="250" /> + + + + + + + + + + + diff --git a/assets/themes/entrances/entrances.json b/assets/themes/entrances/entrances.json new file mode 100644 index 0000000000..332d120f31 --- /dev/null +++ b/assets/themes/entrances/entrances.json @@ -0,0 +1,27 @@ +{ + "id": "entrances", + "title": { + "en": "Entrances", + "zh_Hant": "出入口", + "hu": "Épületek bejáratai" + }, + "icon": "./assets/layers/entrance/door.svg", + "description": { + "en": "A map showing all entrances, which surveys for important aspects for wheelchair users", + "zh_Hant": "顯示所有出入口的地圖,勘查對輪椅使用者重要的資訊", + "hu": "Épületek bejáratai mutató térkép, amely a kerekesszékkel közlekedőknek fontos szempontokat jeleníti meg" + }, + "shortDescription": { + "en": "Survey entrances to help wheelchair routing", + "zh_Hant": "幫助輪椅導航來勘查出入口", + "hu": "Akadálymentes útvonaltervezést segítő bejáratok feltérképezése" + }, + "version": "2021-12-04", + "maintainer": "MapComplete", + "layers": [ + "entrance" + ], + "startZoom": 15, + "startLat": 51.049, + "startLon": 3.7297 +} \ No newline at end of file diff --git a/assets/themes/etymology.json b/assets/themes/etymology.json index 4216ff041c..1ed79cf96d 100644 --- a/assets/themes/etymology.json +++ b/assets/themes/etymology.json @@ -4,26 +4,27 @@ "en": "Open Etymology Map", "nl": "Open Etymology-kaart", "de": "Open Etymology Map", - "it": "Apri Carta Etimologica" + "it": "Apri Carta Etimologica", + "ru": "Открытая этимологическая карта", + "zh_Hant": "開放詞源地圖", + "hu": "Etimológiai térkép" }, "shortDescription": { "en": "What is the origin of a toponym?", "nl": "Wat is de oorsprong van een plaatsnaam?", "de": "Was ist der Ursprung eines Ortsnamens?", - "it": "Qual è l’origine di un toponimo?" + "it": "Qual è l’origine di un toponimo?", + "zh_Hant": "地名的由來是?", + "hu": "Mi az eredete egy helynévnek?" }, "description": { "en": "On this map, you can see what an object is named after. The streets, buildings, ... come from OpenStreetMap which got linked with Wikidata. In the popup, you'll see the Wikipedia article (if it exists) or a wikidata box of what the object is named after. If the object itself has a wikipedia page, that'll be shown too.

You can help contribute too!Zoom in enough and all streets will show up. You can click one and a Wikidata-search box will popup. With a few clicks, you can add an etymology link. Note that you need a free OpenStreetMap account to do this.", "nl": "Op deze kaart zie je waar een plaats naar is vernoemd. De straten, gebouwen, ... komen uit OpenStreetMap, waar een link naar Wikidata werd gelegd. In de popup zie je het Wikipedia-artikel van hetgeen naarwaar het vernoemd is of de Wikidata-box.

Je kan zelf ook meehelpen!Als je ver inzoomt, krijg je alle straten te zien. Klik je een straat aan, dan krijg je een zoekfunctie waarmee je snel een nieuwe link kan leggen. Je hebt hiervoor een gratis OpenStreetMap account nodig.", "de": "Auf dieser Karte können Sie sehen, wonach ein Objekt benannt ist. Die Straßen, Gebäude, ... stammen von OpenStreetMap, das mit Wikidata verknüpft wurde. In dem Popup sehen Sie den Wikipedia-Artikel (falls vorhanden) oder ein Wikidata-Feld, nach dem das Objekt benannt ist. Wenn das Objekt selbst eine Wikipedia-Seite hat, wird auch diese angezeigt.

Sie können auch einen Beitrag leisten!Zoomen Sie genug hinein und alle Straßen werden angezeigt. Wenn Sie auf eine Straße klicken, öffnet sich ein Wikidata-Suchfeld. Mit ein paar Klicks können Sie einen Etymologie-Link hinzufügen. Beachten Sie, dass Sie dazu ein kostenloses OpenStreetMap-Konto benötigen.", - "it": "Su questa cartina sono visibili i nomi a cui sono riferiti gli oggetti. Le strade, gli edifici, etc. provengono da OpenStreetMap che è a sua volta collegata a Wikidata. Nel popup, se esiste, verrà mostrato l’articolo Wikipedia o l'elemento Wikidata a cui si riferisce il nome di quell’oggetto. Se l’oggetto stesso ha una pagina Wikpedia, anch’essa verrà mostrata.

Anche tu puoi contribuire!Ingrandisci abbastanza e tutte le strade appariranno. Puoi cliccare su una e apparirà un popup con la ricerca Wikidata. Con pochi clic puoi aggiungere un collegamento etimologico. Tieni presente che per farlo, hai bisogno di un account gratuito su OpenStreetMap." + "it": "Su questa cartina sono visibili i nomi a cui sono riferiti gli oggetti. Le strade, gli edifici, etc. provengono da OpenStreetMap che è a sua volta collegata a Wikidata. Nel popup, se esiste, verrà mostrato l’articolo Wikipedia o l'elemento Wikidata a cui si riferisce il nome di quell’oggetto. Se l’oggetto stesso ha una pagina Wikpedia, anch’essa verrà mostrata.

Anche tu puoi contribuire!Ingrandisci abbastanza e tutte le strade appariranno. Puoi cliccare su una e apparirà un popup con la ricerca Wikidata. Con pochi clic puoi aggiungere un collegamento etimologico. Tieni presente che per farlo, hai bisogno di un account gratuito su OpenStreetMap.", + "zh_Hant": "在這份地圖,你可以看到物件是以何命名,道路、 建築等的命名由來連到 Wikidata。在跳出選單,你可以看到物件命名由來的維基條目 (如果有的話),或是 Wikidata 框。如果物件本身有維基頁面,也會顯示。

你也可以貢獻!放大到夠大的層級,然後所有道路都會顯示。你可以點選一個之後 Wikidata 搜尋框會跳出來。只要點幾下,你可以新增詞源連結。注意你要有開放街圖帳號才能這麼做。", + "hu": "Ezen a térképen az látható, hogy egy objektum milyen névre hallgat. Az utcák, épületek stb. az OpenStreetMapről származnak, amely össze van kapcsolva a Wikidata adatbázissal. A felugró ablakban megjelenik a megfelelő Wikipedia-szócikk (ha van) vagy egy Wikidata-doboz arról, amiről az objektumot elnevezték. Ha magának az objektumnak van Wikipédia-oldala, az is megjelenik.

A térképet Ön is szerkesztheti!nagyítson rá, és az összes utca megjelenik. Ha valamelyikre rákattint, megjelenik Wikidata-kereső doboz. Néhány kattintással hozzáadhat egy etimológiai linket. Ne feledje, hogy ehhez szüksége van egy ingyenes OpenStreetMap-fiókra." }, - "language": [ - "en", - "nl", - "de", - "it" - ], "maintainer": "", "icon": "./assets/layers/etymology/logo.svg", "version": "0", @@ -31,7 +32,6 @@ "startLon": 0, "startZoom": 1, "widenFactor": 2, - "socialImage": "", "clustering": { "maxZoom": 14, "minNeededElements": 250 @@ -42,15 +42,17 @@ "builtin": "etymology", "override": { "id": "streets_without_etymology", - "name": { + "=name": { "en": "Streets without etymology information", "nl": "Straten zonder etymologische informatie", "de": "Straßen ohne Informationen zur Namensherkunft", - "it": "Strade senza informazioni etimologiche" + "it": "Strade senza informazioni etimologiche", + "zh_Hant": "道路沒有詞源資訊", + "hu": "Etimológiai adat nélküli utcák" }, "minzoom": 18, "source": { - "osmTags": { + "=osmTags": { "and": [ "name~*", "highway~*", @@ -64,11 +66,13 @@ "builtin": "etymology", "override": { "id": "parks_and_forests_without_etymology", - "name": { + "=name": { "en": "Parks and forests without etymology information", "nl": "Parken en bossen zonder etymologische informatie", "de": "Parks und Waldflächen ohne Informationen zur Namensherkunft", - "it": "Parchi e foreste senza informazioni etimologiche" + "it": "Parchi e foreste senza informazioni etimologiche", + "zh_Hant": "公園與森哥沒有詞源資訊", + "hu": "Etimológiai adat nélküli parkok és erdők" }, "minzoom": 18, "source": { @@ -85,6 +89,31 @@ } } } + }, + { + "builtin": "etymology", + "override": { + "id": "education_institutions_without_etymology", + "=name": { + "en": "Education institutions without etymology information" + }, + "minzoom": 18, + "source": { + "osmTags": { + "and": [ + "name~*", + { + "or": [ + "amenity=school", + "amenity=kindergarten", + "amenity=university", + "amenity=college" + ] + } + ] + } + } + } } ], "hideFromOverview": false diff --git a/assets/themes/facadegardens/bloei.svg b/assets/themes/facadegardens/bloei.svg index 304b5ee911..94bf0494af 100644 --- a/assets/themes/facadegardens/bloei.svg +++ b/assets/themes/facadegardens/bloei.svg @@ -1,94 +1,7 @@ - - - - - Created by potrace 1.16, written by Peter Selinger 2001-2019 - - - - - - + + + + + + + \ No newline at end of file diff --git a/assets/themes/facadegardens/bodembedekker.svg b/assets/themes/facadegardens/bodembedekker.svg index cd0d042e7e..aa2d4a0b18 100644 --- a/assets/themes/facadegardens/bodembedekker.svg +++ b/assets/themes/facadegardens/bodembedekker.svg @@ -1,77 +1,29 @@ - - - - - Created by potrace 1.16, written by Peter Selinger 2001-2019 - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/assets/themes/facadegardens/eetbaar.svg b/assets/themes/facadegardens/eetbaar.svg index fa5abd8ff2..855a250ef0 100644 --- a/assets/themes/facadegardens/eetbaar.svg +++ b/assets/themes/facadegardens/eetbaar.svg @@ -1,34 +1,7 @@ - - - - - Created by potrace 1.16, written by Peter Selinger 2001-2019 - - - - - - + + + + + + + \ No newline at end of file diff --git a/assets/themes/facadegardens/facadegardens.json b/assets/themes/facadegardens/facadegardens.json index 2ec4c03bf6..923346ff35 100644 --- a/assets/themes/facadegardens/facadegardens.json +++ b/assets/themes/facadegardens/facadegardens.json @@ -7,7 +7,8 @@ "zh_Hant": "立面花園", "it": "Giardini verticali", "fr": "Facade gardens", - "de": "Fassadengärten" + "de": "Fassadengärten", + "hu": "Homlokzati kertek" }, "shortDescription": { "nl": "Deze kaart toont geveltuintjes met foto's en bruikbare info over oriëntatie, zonlicht en planttypes.", @@ -16,7 +17,8 @@ "zh_Hant": "這地圖顯示立面花園的照片以及其他像是方向、日照以及植栽種類等實用訊息。", "it": "Questa mappa mostra i giardini verticali, con foto e informazioni utili sulla loro orientazione, sull'illuminazione solare e sui tipi di piante.", "fr": "Cette carte indique les murs végétalisés avec des photos et des informations comme leur orientation, l’ensoleillement et le type de plantes.", - "de": "Diese Karte zeigt Fassadengärten mit Bildern und Details zu Ausrichtung, Sonneneinstrahlung und Pflanzen." + "de": "Diese Karte zeigt Fassadengärten mit Bildern und Details zu Ausrichtung, Sonneneinstrahlung und Pflanzen.", + "hu": "Ez a térkép homlokzati kerteket jelenít meg képekkel, valamint adatokkal a tájolásukról, a napsütésnek való kitettségükről és a bennük található növényzetről." }, "description": { "nl": "Ontharde voortuintjes, groene gevels en bomen ín de stad brengen naast rust ook een mooiere stad, een grotere biodiversiteit, een verkoelend effect en een betere luchtkwaliteit.
Klimaan VZW en 'Mechelen Klimaatneutraal' willen met het project Klim(t)aan je Gevel bestaande en nieuwe geveltuintjes in kaart brengen als voorbeeld voor mensen zelf een tuintje willen aanleggen of voor stadwandelaars die houden van de natuur.
Meer info over het project op klimaan.be.", @@ -24,20 +26,9 @@ "ja": "ファサード庭園、都市の緑のファサードと樹木は、平和と静けさをもたらすだけでなく、より美しい都市、より大きな生物多様性、冷却効果、より良い大気質をもたらす。
KlimaanのVZWとMechelenのKlimaatneutraalは、自分で庭を作りたい人や自然を愛する都市の歩行者のために、既存のファサード庭園と新しいファサード庭園のマッピングしたいと考えています。
このプロジェクトに関する詳細情報はklimaanにあります。", "fr": "Les jardins muraux en ville n’apportent pas seulement paix et tranquillité mais contribuent à embellir la ville, favoriser la biodiversité, régule la température et assainit l’air.
Klimaan VZW et Mechelen Klimaatneutraal veulent cartographier les jardins muraux comme exemple pour les personnes souhaitant en construire ainsi que celles aimant la nature.
Plus d’infos sur klimaan.be.", "de": "Fassadengärten, grüne Fassaden und Bäume in der Stadt bringen nicht nur Ruhe und Frieden, sondern auch eine schönere Stadt, eine größere Artenvielfalt, einen Kühleffekt und eine bessere Luftqualität.
Klimaan VZW und Mechelen Klimaatneutraal wollen bestehende und neue Fassadengärten als Beispiel für Menschen, die ihren eigenen Garten anlegen wollen, oder für naturverbundene Stadtspaziergänger kartieren.
Mehr Informationen über das Projekt unter klimaan.be.", - "it": "I giardini veritcali e gli alberi in città non solo portano pace e tranquillità ma creano anche un ambiente più bello, aumentano la biodiversità, rendono il clima più fresco e migliorano la qualità dell’aria.
Klimaan VZW e Mechelen Klimaatneutraal vogliono mappare sia i giardini verticali esistenti che quelli nuovi per mostrarli a quanti vogliono costruire un loro proprio giardino o per quelli che amano la natura e vogliono camminare per la città.
Per ulteriori informazioni visita klimaan.be." + "it": "I giardini veritcali e gli alberi in città non solo portano pace e tranquillità ma creano anche un ambiente più bello, aumentano la biodiversità, rendono il clima più fresco e migliorano la qualità dell’aria.
Klimaan VZW e Mechelen Klimaatneutraal vogliono mappare sia i giardini verticali esistenti che quelli nuovi per mostrarli a quanti vogliono costruire un loro proprio giardino o per quelli che amano la natura e vogliono camminare per la città.
Per ulteriori informazioni visita klimaan.be.", + "hu": "A homlokzatkertek, zöld homlokzatok és fák a városban nemcsak békét és nyugalmat, hanem szebb várost, nagyobb biológiai sokféleséget, hűsítő hatást és jobb levegőminőséget is hoznak.
A Klimaan VZW és a Mechelen Klimaatneutraal a meglévő és új homlokzati kerteket szeretné feltérképezni, hogy példaként szolgáljanak a saját kertet építeni vágyóknak vagy a természetet kedvelő városi sétálóknak.
További információ a projektről a klimaan.be oldalon." }, - "language": [ - "nl", - "en", - "ja", - "zh_Hant", - "it", - "fr", - "de", - "nb_NO", - "ru", - "eo" - ], "maintainer": "joost schouppe; stla", "icon": "./assets/themes/facadegardens/geveltuin.svg", "version": "0", @@ -45,7 +36,6 @@ "startLon": 4.480705, "startZoom": 15, "widenFactor": 1.5, - "socialImage": "", "layers": [ { "id": "facadegardens", @@ -56,7 +46,8 @@ "zh_Hant": "立面花園", "fr": "Jardins muraux", "de": "Fassadengärten", - "it": "Giardini verticali" + "it": "Giardini verticali", + "hu": "Homlokzati kertek" }, "minzoom": 12, "source": { @@ -75,7 +66,8 @@ "zh_Hant": "立面花園", "fr": "Jardin mural", "de": "Fassadengarten", - "it": "Giardino verticale" + "it": "Giardino verticale", + "hu": "Homlokzati kert" } }, "description": { @@ -85,7 +77,8 @@ "zh_Hant": "立面花園", "fr": "Jardins muraux", "de": "Fassadengärten", - "it": "Giardini verticali" + "it": "Giardini verticali", + "hu": "Homlokzati kertek" }, "tagRenderings": [ "images", @@ -96,7 +89,8 @@ "ja": "方向: {direction} (0=N で 90=O)", "fr": "Orientation : {direction} (0 pour le Nord et 90 pour l’Ouest)", "de": "Ausrichtung: {direction} (wobei 0=N und 90=O)", - "it": "Orientamento: {direction} (0 per il Nord e 90 per l’Est)" + "it": "Orientamento: {direction} (0 per il Nord e 90 per l’Est)", + "hu": "Tájolás: {direction} (0=észak, 90=kelet stb.)" }, "question": { "nl": "Hoe is de tuin georiënteerd?", @@ -104,7 +98,8 @@ "ja": "庭の向きはどうなっていますか?", "fr": "Quelle est l’orientation du jardin ?", "de": "Wie ist der Garten ausgerichtet?", - "it": "Com’è orientato questo giardino?" + "it": "Com’è orientato questo giardino?", + "hu": "Milyen a kert tájolása?" }, "freeform": { "type": "direction", @@ -127,7 +122,8 @@ "ja": "庭は日があたっている", "it": "Il giardino è completamente illuminato dal sole", "fr": "Le jardin est en plein soleil", - "de": "Der Garten liegt in voller Sonne" + "de": "Der Garten liegt in voller Sonne", + "hu": "A kert teljesen a napon van" } }, { @@ -143,7 +139,8 @@ "nb_NO": "Denne hagen er i delvis skygge", "it": "Il giardino è parzialmente in ombra", "fr": "Le jardin est partiellement ensoleillé", - "de": "Der Garten liegt im Halbschatten" + "de": "Der Garten liegt im Halbschatten", + "hu": "A kert részben árnyékban van" } }, { @@ -158,7 +155,8 @@ "ja": "庭は日陰である", "it": "Il giardino è in ombra", "fr": "Le jardin est à l’ombre", - "de": "Der Garten liegt im Schatten" + "de": "Der Garten liegt im Schatten", + "hu": "A kert árnyékban van" } } ], @@ -169,7 +167,8 @@ "it": "Il giardino è al sole o in ombra?", "ru": "Сад расположен на солнечной стороне или в тени?", "fr": "Quel est l’ensoleillement du jardin ?", - "de": "Ist der Garten schattig oder sonnig?" + "de": "Ist der Garten schattig oder sonnig?", + "hu": "Árnyékban vagy napon van a kert?" } }, { @@ -180,7 +179,9 @@ "ja": "庭に水桶が設置されているのですか?", "fr": "Des réserves d’eau ont-elles été installées pour le jardin ?", "de": "Gibt es ein Wasserfass für den Garten?", - "it": "È stata installata una riserva d’acqua per il giardino?" + "it": "È stata installata una riserva d’acqua per il giardino?", + "zh_Hant": "花園當中有設置雨筒嗎?", + "hu": "Van-e a kertben vizeshordó?" }, "mappings": [ { @@ -196,7 +197,9 @@ "it": "C'è un contenitore per raccogliere la pioggia", "ru": "Есть бочка с дождевой водой", "fr": "Il y a des réserves", - "de": "Es gibt eine Regentonne" + "de": "Es gibt eine Regentonne", + "zh_Hant": "這裡有個雨筒", + "hu": "Van benne esővízgyűjtő hordó" } }, { @@ -212,7 +215,9 @@ "it": "Non c'è un contenitore per raccogliere la pioggia", "ru": "Нет бочки с дождевой водой", "fr": "Il n’y a pas de réserves", - "de": "Es gibt keine Regentonne" + "de": "Es gibt keine Regentonne", + "zh_Hant": "這裡沒有雨筒", + "hu": "Nincs benne esővízgyűjtő hordó" } } ] @@ -225,7 +230,8 @@ "ja": "庭園の建設日: {start_date}", "it": "Data di realizzazione del giardino: {start_date}", "fr": "Date de construction du jardin : {start_date}", - "de": "Errichtungsdatum des Gartens: {start_date}" + "de": "Errichtungsdatum des Gartens: {start_date}", + "hu": "A kert építésének időpontja: {start_date}" }, "question": { "nl": "Wanneer werd de tuin aangelegd? (vul gewoon een jaartal in)", @@ -233,7 +239,8 @@ "ja": "その庭園はいつ造られたのですか?(建設年で十分です)", "it": "Quando è stato realizzato il giardino? (è sufficiente l'anno)", "fr": "Quand le jardin a-t’il été construit ? (L’année suffit)", - "de": "Wann wurde der Garten angelegt? (Jahr ist ausreichend)" + "de": "Wann wurde der Garten angelegt? (Jahr ist ausreichend)", + "hu": "Mikor épült a kert? (Év megadása is elegendő)" }, "freeform": { "key": "start_date", @@ -256,7 +263,8 @@ "ja": "食用の植物がある", "it": "Ci sono piante commestibili", "fr": "Il y a des plantes comestibles", - "de": "Es gibt essbare Pflanzen" + "de": "Es gibt essbare Pflanzen", + "hu": "Van benne ehető növény" } }, { @@ -271,7 +279,8 @@ "ja": "食用植物は存在しない", "it": "Non ci sono piante commestibili", "fr": "Il n’y a pas de plantes comestibles", - "de": "Es gibt keine essbaren Pflanzen" + "de": "Es gibt keine essbaren Pflanzen", + "hu": "Nincs benne ehető növény" } } ], @@ -281,7 +290,8 @@ "ja": "食用の植物はありますか?", "it": "Ci sono piante commestibili?", "fr": "Y-a-t’il des plantes comestibles ?", - "de": "Gibt es essbare Pflanzen?" + "de": "Gibt es essbare Pflanzen?", + "hu": "Van-e benne ehető növény?" } }, { @@ -293,7 +303,8 @@ "it": "Che tipi di piante sono presenti qui?", "ru": "Какие виды растений обитают здесь?", "fr": "Quel type de plantes pousse ici ?", - "de": "Welche Pflanzen wachsen hier?" + "de": "Welche Pflanzen wachsen hier?", + "hu": "Milyen jellegű növények nőnek benne?" }, "mappings": [ { @@ -304,7 +315,8 @@ "ja": "つるがある", "it": "Ci sono viti", "fr": "Il y a des plantes grimpantes", - "de": "Es gibt Weinreben" + "de": "Es gibt Weinreben", + "hu": "Van benne szőlő" } }, { @@ -315,7 +327,8 @@ "ja": "花を咲かせる植物がある", "it": "Ci sono piante da fiore", "fr": "Il y a des fleurs", - "de": "Es gibt blühende Pflanzen" + "de": "Es gibt blühende Pflanzen", + "hu": "Van benne virágos növény" } }, { @@ -326,7 +339,8 @@ "ja": "低木がある", "it": "Ci sono arbusti", "fr": "Il y a des buissons", - "de": "Es gibt Sträucher" + "de": "Es gibt Sträucher", + "hu": "Van benne cserje" } }, { @@ -337,7 +351,8 @@ "ja": "地をはう植物がある", "it": "Ci sono piante tappezzanti", "fr": "Il y a des plantes couvre-sol", - "de": "Es gibt Bodendecker" + "de": "Es gibt Bodendecker", + "hu": "Van benne talajtakaró növény" } } ], @@ -352,7 +367,8 @@ "ru": "Подробнее: {description}", "fr": "Plus de détails : {description}", "de": "Weitere Details: {description}", - "eo": "Pliaj detaloj: {description}" + "eo": "Pliaj detaloj: {description}", + "hu": "További részletek: {description}" }, "question": { "nl": "Aanvullende omschrijving van de tuin (indien nodig, en voor zover nog niet omschreven hierboven)", @@ -361,7 +377,8 @@ "it": "Altre informazioni per descrivere il giardino (se necessarie e non riportate qui sopra)", "ru": "Дополнительная информация о саде (если требуется или еще не указана выше)", "fr": "Détails supplémentaires sur le jardin (si nécessaire et non décrit précédemment)", - "de": "Zusätzliche Informationen über den Garten (falls erforderlich und oben noch nicht beschrieben)" + "de": "Zusätzliche Informationen über den Garten (falls erforderlich und oben noch nicht beschrieben)", + "hu": "További leíró jellegű információ a kertről (ha szükséges, és följebb nincs leírva)" }, "freeform": { "key": "description", @@ -382,7 +399,8 @@ "ja": "ファサード庭園", "it": "giardino verticale", "fr": "jardin mural", - "de": "Fassadengarten" + "de": "Fassadengarten", + "hu": "homlokzatkert" }, "description": { "nl": "Voeg geveltuintje toe", @@ -390,7 +408,8 @@ "ja": "ファサード庭園を追加する", "it": "Aggiungi un giardino verticale", "fr": "Ajouter un jardin mural", - "de": "Einen Fassadengarten hinzufügen" + "de": "Einen Fassadengarten hinzufügen", + "hu": "Homlokzatkert hozzáadása" } } ], diff --git a/assets/themes/facadegardens/gevelton.svg b/assets/themes/facadegardens/gevelton.svg index 38bf2a4b08..ee58806d05 100644 --- a/assets/themes/facadegardens/gevelton.svg +++ b/assets/themes/facadegardens/gevelton.svg @@ -1,40 +1,9 @@ - - - - - Created by potrace 1.16, written by Peter Selinger 2001-2019 - - - - - - - - + + + + + + + + + \ No newline at end of file diff --git a/assets/themes/facadegardens/geveltuin.svg b/assets/themes/facadegardens/geveltuin.svg index 80e17e0231..42c61fa02a 100644 --- a/assets/themes/facadegardens/geveltuin.svg +++ b/assets/themes/facadegardens/geveltuin.svg @@ -1,86 +1,8 @@ - - - - - - Created by potrace 1.16, written by Peter Selinger 2001-2019 - - - image/svg+xml - - - - - - - - - - - - - + + + + + + + + \ No newline at end of file diff --git a/assets/themes/facadegardens/halfzon.svg b/assets/themes/facadegardens/halfzon.svg index 21086333d1..6d3b158612 100644 --- a/assets/themes/facadegardens/halfzon.svg +++ b/assets/themes/facadegardens/halfzon.svg @@ -1,32 +1,12 @@ - - - - - Created by potrace 1.16, written by Peter Selinger 2001-2019 - - - - - - - - - - - + + + + + + + + + + + + \ No newline at end of file diff --git a/assets/themes/facadegardens/klimplant.svg b/assets/themes/facadegardens/klimplant.svg index 8df8bb45d4..f6e185cb81 100644 --- a/assets/themes/facadegardens/klimplant.svg +++ b/assets/themes/facadegardens/klimplant.svg @@ -1,76 +1,16 @@ - - - - - Created by potrace 1.16, written by Peter Selinger 2001-2019 - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/assets/themes/facadegardens/schaduw.svg b/assets/themes/facadegardens/schaduw.svg index 1404081a3a..961b83e050 100644 --- a/assets/themes/facadegardens/schaduw.svg +++ b/assets/themes/facadegardens/schaduw.svg @@ -1,29 +1,10 @@ - - - - - Created by potrace 1.16, written by Peter Selinger 2001-2019 - - - - - - - - - + + + + + + + + + + \ No newline at end of file diff --git a/assets/themes/facadegardens/struik.svg b/assets/themes/facadegardens/struik.svg index 170b3dd472..501f5093fc 100644 --- a/assets/themes/facadegardens/struik.svg +++ b/assets/themes/facadegardens/struik.svg @@ -1,42 +1,7 @@ - - - - - Created by potrace 1.16, written by Peter Selinger 2001-2019 - - - - - - + + + + + + + \ No newline at end of file diff --git a/assets/themes/facadegardens/zon.svg b/assets/themes/facadegardens/zon.svg index c11f1abd0b..48c7d40b8e 100644 --- a/assets/themes/facadegardens/zon.svg +++ b/assets/themes/facadegardens/zon.svg @@ -1,40 +1,15 @@ - - - - - Created by potrace 1.16, written by Peter Selinger 2001-2019 - - - - - - - - - - - - - - + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/assets/themes/food/food.json b/assets/themes/food/food.json index f8008e5ac6..05b4516cea 100644 --- a/assets/themes/food/food.json +++ b/assets/themes/food/food.json @@ -5,18 +5,14 @@ "en": "Restaurants and fast food", "de": "Restaurants und Schnellimbisse", "it": "Ristoranti e fast food", - "nb_NO": "Restauranter og søppelmat" + "nb_NO": "Restauranter og søppelmat", + "zh_Hant": "餐廳與快餐店", + "hu": "Éttermek és büfék" }, "description": { - "nl": "Restaurants en fast food" + "nl": "Restaurants en fast food", + "en": "Restaurants and fast food" }, - "language": [ - "nl", - "en", - "de", - "it", - "nb_NO" - ], "maintainer": "", "icon": "./assets/layers/food/restaurant.svg", "version": "0", @@ -24,7 +20,6 @@ "startLon": 0, "startZoom": 1, "widenFactor": 3, - "socialImage": "", "layers": [ "food" ] diff --git a/assets/themes/fritures/Vegetarian-mark.svg b/assets/themes/fritures/Vegetarian-mark.svg index d6ecd68c05..9ec14b57a4 100644 --- a/assets/themes/fritures/Vegetarian-mark.svg +++ b/assets/themes/fritures/Vegetarian-mark.svg @@ -1,30 +1,6 @@ - - - Vegetarian mark - - - - image/svg+xml - - Vegetarian mark - - - - - - - + + + + + + \ No newline at end of file diff --git a/assets/themes/fritures/fries.svg b/assets/themes/fritures/fries.svg index d4b1b941ea..763c73b697 100644 --- a/assets/themes/fritures/fries.svg +++ b/assets/themes/fritures/fries.svg @@ -1,27 +1,18 @@ - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/assets/themes/fritures/fritures.json b/assets/themes/fritures/fritures.json index c2219cd49c..46d5a4e8ea 100644 --- a/assets/themes/fritures/fritures.json +++ b/assets/themes/fritures/fritures.json @@ -2,18 +2,13 @@ "id": "fritures", "title": { "nl": "Friturenkaart", + "en": "Fries shops", "fr": "Carte des friteries" }, "description": { + "en": "On this map, you'll find your favourite fries shop!", "nl": "Op deze kaart vind je je favoriete frituur!" }, - "language": [ - "nl", - "fr", - "en", - "de", - "it" - ], "maintainer": "", "icon": "./assets/themes/fritures/logo.svg", "version": "0", @@ -21,7 +16,6 @@ "startLon": 0, "startZoom": 1, "widenFactor": 3, - "socialImage": "", "layers": [ { "builtin": "food", @@ -32,10 +26,12 @@ "en": "Fries shop", "fr": "Friteries", "de": "Pommesbude", - "it": "Friggitoria" + "it": "Friggitoria", + "hu": "Sültkrumplievő-hely" }, + "=presets": [], "source": { - "osmTags": { + "=osmTags": { "and": [ "cuisine=friture", { @@ -53,7 +49,8 @@ "builtin": "food", "override": { "minzoom": 19, - "filter": null + "filter": null, + "name": null } } ] diff --git a/assets/themes/fritures/logo.svg b/assets/themes/fritures/logo.svg index 561151ab9f..6847b46183 100644 --- a/assets/themes/fritures/logo.svg +++ b/assets/themes/fritures/logo.svg @@ -1,119 +1,19 @@ - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/assets/themes/fruit_trees/fruit_tree.svg b/assets/themes/fruit_trees/fruit_tree.svg index de1dad761b..e5cce675ec 100644 --- a/assets/themes/fruit_trees/fruit_tree.svg +++ b/assets/themes/fruit_trees/fruit_tree.svg @@ -1,5 +1,9 @@ - \ No newline at end of file + + + + + + + + + \ No newline at end of file diff --git a/assets/themes/fruit_trees/fruit_trees.json b/assets/themes/fruit_trees/fruit_trees.json index 6e93dabe58..7fe8c93236 100644 --- a/assets/themes/fruit_trees/fruit_trees.json +++ b/assets/themes/fruit_trees/fruit_trees.json @@ -9,9 +9,6 @@ "description": { "nl": "Op deze kaart vindt je boomgaarden en fruitbomen" }, - "language": [ - "nl" - ], "maintainer": "", "icon": "./assets/themes/fruit_trees/fruit_tree.svg", "version": "0", @@ -19,7 +16,6 @@ "startLon": 0, "startZoom": 1, "widenFactor": 2, - "socialImage": "", "hideFromOverview": true, "layers": [ { diff --git a/assets/themes/ghostbikes/ghostbikes.json b/assets/themes/ghostbikes/ghostbikes.json index 9dc192b8ae..0b39cc7452 100644 --- a/assets/themes/ghostbikes/ghostbikes.json +++ b/assets/themes/ghostbikes/ghostbikes.json @@ -2,25 +2,6 @@ "id": "ghostbikes", "maintainer": "MapComplete", "version": "2020-08-30", - "language": [ - "en", - "nl", - "de", - "ja", - "nb_NO", - "zh_Hant", - "fr", - "eo", - "es", - "fi", - "gl", - "hu", - "it", - "pl", - "pt_BR", - "ru", - "sv" - ], "title": { "en": "Ghost bikes", "nl": "Witte Fietsen", @@ -33,7 +14,7 @@ "es": "Bicicleta blanca", "fi": "Haamupyörä", "gl": "Bicicleta pantasma", - "hu": "Emlékkerékpár", + "hu": "Szellemkerékpárok", "it": "Bici fantasma", "pl": "Duch roweru", "pt_BR": "Bicicleta fantasma", @@ -47,7 +28,8 @@ "ja": "ゴーストバイクは、交通事故で死亡したサイクリストを記念するもので、事故現場の近くに恒久的に置かれた白い自転車の形をしています。

このマップには、OpenStreetMapで知られているゴーストバイクがすべて表示されます。ゴーストバイクは行方不明ですか?誰でもここで情報の追加や更新ができます。必要なのは(無料の)OpenStreetMapアカウントだけです。", "zh_Hant": "幽靈單車是用來紀念死於交通事故的單車騎士,在事發地點附近放置白色單車。

在這份地圖上面,你可以看到所有在開放街圖已知的幽靈單車。有缺漏的幽靈單車嗎?所有人都可以在這邊新增或是更新資訊-只有你有(免費)開放街圖帳號。", "fr": "Les vélos fantômes sont des mémoriaux pour les cyclistes tuées sur la route, prenant la forme de vélos blancs placés à proximité des faits.

Cette carte indique leur emplacement à partir d’OpenStreetMap. Il est possible de contribuer aux informations ici, sous réserve d’avoir un compte OpenStreetMap (gratuit).", - "it": "Una bici fantasma è un monumento in ricordo di un ciclista che è morto in un incidente stradale, che ha la forma di un una bicicletta bianca installata in maniera permanente ne luogo dell’incidente.

In questa cartina, è possibile vedere tutte le bici fantasma che sono state aggiunte su OpenStreetMap. Ne manca una? Chiunque può aggiungere o migliorare le informazioni qui presenti (è solo richiesto un account gratuito su OpenStreetMap)." + "it": "Una bici fantasma è un monumento in ricordo di un ciclista che è morto in un incidente stradale, che ha la forma di un una bicicletta bianca installata in maniera permanente ne luogo dell’incidente.

In questa cartina, è possibile vedere tutte le bici fantasma che sono state aggiunte su OpenStreetMap. Ne manca una? Chiunque può aggiungere o migliorare le informazioni qui presenti (è solo richiesto un account gratuito su OpenStreetMap).", + "hu": "A szellemkerékpár egy közlekedési balesetben elhunyt kerékpáros emlékműve: egy fehér kerékpár, amelyet állandó jelleggel a baleset helyszínének közelében helyeznek el.

A térképen az OpenStreetMap által ismert összes szellemkerékpár megtekinthető. Hiányzik róla egy szellemkerékpár? Bárki hozzáadhat vagy frissíthet adatokat – csak egy (ingyenes) OpenStreetMap-fiókra van szükség hozzá." }, "icon": "./assets/themes/ghostbikes/logo.svg", "startZoom": 1, diff --git a/assets/themes/ghostbikes/logo.svg b/assets/themes/ghostbikes/logo.svg index c18940dde4..1965038959 100644 --- a/assets/themes/ghostbikes/logo.svg +++ b/assets/themes/ghostbikes/logo.svg @@ -1,72 +1,12 @@ - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + \ No newline at end of file diff --git a/assets/themes/grb_import/grb.json b/assets/themes/grb_import/grb.json index 0d6bd41bfd..28b9c62a44 100644 --- a/assets/themes/grb_import/grb.json +++ b/assets/themes/grb_import/grb.json @@ -1,72 +1,81 @@ { "id": "grb", "title": { - "nl": "GRB Fixup" + "nl": "GRB import helper" }, "shortDescription": { - "nl": "Grb Fixup" + "nl": "Grb import helper tool" }, "description": { - "nl": "GRB Fixup", - "en": "This theme is an attempt to help automating the GRB import.
Note that this is very hacky and 'steals' the GRB data from an external site; in order to do this, you need to install and activate this firefox extension for it to work." + "nl": "Dit thema helpt het GRB importeren.", + "en": "This theme is an attempt to help automating the GRB import.", + "hu": "Ez a sablon a flandriai GRB épületimportálás automatizlását kívánja megkönnyíteni." }, - "language": [ - "nl", - "en" - ], - "maintainer": "", - "icon": "./assets/svg/bug.svg", + "maintainer": "Pieter Vander Vennet", + "icon": "./assets/themes/grb_import/logo.svg", "version": "0", - "startLat": 51.2132, - "startLon": 3.231, - "startZoom": 14, + "startLat": 51.0249, + "startLon": 4.026489, + "startZoom": 9, "widenFactor": 2, - "socialImage": "", "clustering": { "maxZoom": 15 }, "overrideAll": { - "minzoom": 18 + "minzoom": 19 }, - "trackAllNodes": true, - "enableGeolocation": false, "layers": [ { "builtin": "type_node", - "isShown": { - "render": "no" - }, "override": { "calculatedTags": [ "_is_part_of_building=feat.get('parent_ways')?.some(p => p.building !== undefined && p.building !== '') ?? false", + "_is_part_of_grb_building=feat.get('parent_ways')?.some(p => p['source:geometry:ref'] !== undefined) ?? false", "_is_part_of_building_passage=feat.get('parent_ways')?.some(p => p.tunnel === 'building_passage') ?? false", "_is_part_of_highway=!feat.get('is_part_of_building_passage') && (feat.get('parent_ways')?.some(p => p.highway !== undefined && p.highway !== '') ?? false)", - "_is_part_of_landuse=feat.get('parent_ways')?.some(p => (p.landuse !== undefined && p.landuse !== '') || (p.natural !== undefined && p.natural !== '')) ?? false" + "_is_part_of_landuse=feat.get('parent_ways')?.some(p => (p.landuse !== undefined && p.landuse !== '') || (p.natural !== undefined && p.natural !== '')) ?? false", + "_moveable=feat.get('_is_part_of_building') && !feat.get('_is_part_of_grb_building')" ], "mapRendering": [ { - "icon": "square:#00f", + "icon": "square:#cc0", "iconSize": "5,5,center", - "location": "point" + "location": [ + "point" + ] } - ] + ], + "passAllFeatures": true } }, { - "id": "OSM-buildings", + "id": "osm-buildings", "name": "All OSM-buildings", "source": { "osmTags": "building~*", "maxCacheAge": 0 }, + "calculatedTags": [ + "_surface:strict:=feat.get('_surface')" + ], "mapRendering": [ { "width": { - "render": "2" + "render": "2", + "mappings": [ + { + "if": "fixme~*", + "then": "5" + } + ] }, "color": { "render": "#00c", "mappings": [ + { + "if": "fixme~*", + "then": "#ff00ff" + }, { "if": "building=house", "then": "#a00" @@ -101,7 +110,8 @@ }, "render": "The building type is {building}", "question": { - "en": "What kind of building is this?" + "en": "What kind of building is this?", + "de": "Was ist das für ein Gebäude?" }, "mappings": [ { @@ -146,17 +156,135 @@ } ] }, + { + "id": "grb-housenumber", + "render": { + "nl": "Het huisnummer is {addr:housenumber}" + }, + "question": { + "nl": "Wat is het huisnummer?" + }, + "freeform": { + "key": "addr:housenumber" + }, + "mappings": [ + { + "if": { + "and": [ + "not:addr:housenumber=yes", + "addr:housenumber=" + ] + }, + "then": { + "nl": "Geen huisnummer" + } + } + ] + }, + { + "id": "grb-unit", + "question": "Wat is de wooneenheid-aanduiding?", + "render": { + "nl": "De wooneenheid-aanduiding is {addr:unit} " + }, + "freeform": { + "key": "addr:unit" + }, + "mappings": [ + { + "if": "addr:unit=", + "then": "Geen wooneenheid-nummer" + } + ] + }, + { + "id": "grb-street", + "render": { + "nl": "De straat is {addr:street}" + }, + "freeform": { + "key": "addr:street" + }, + "question": { + "nl": "Wat is de straat?" + } + }, + { + "id": "grb-fixme", + "render": { + "nl": "De fixme is {fixme}" + }, + "question": { + "nl": "Wat zegt de fixme?" + }, + "freeform": { + "key": "fixme" + }, + "mappings": [ + { + "if": { + "and": [ + "fixme=" + ] + }, + "then": { + "nl": "Geen fixme" + } + } + ] + }, + { + "id": "grb-min-level", + "render": { + "nl": "Dit gebouw begint maar op de {building:min_level} verdieping" + }, + "question": { + "nl": "Hoeveel verdiepingen ontbreken?" + }, + "freeform": { + "key": "building:min_level", + "type": "pnat" + } + }, "all_tags" + ], + "filter": [ + { + "id": "has-fixme", + "options": [ + { + "osmTags": "fixme~*", + "question": "Heeft een FIXME" + } + ] + } ] }, { - "id": "All OSM objects", + "id": "service_ways", + "name": "Service roads", + "description": "A seperate layer with service roads, as to remove them from the intersection testing", + "source": { + "osmTags": "highway=service" + }, + "mapRendering": [ + { + "width": 4, + "color": "#888888" + } + ], + "title": { + "render": "Service road" + }, + "tagRenderings": [] + }, + { + "id": "generic_osm_object", "name": "All OSM Objects", "source": { "osmTags": { "and": [ "id~*", - "landuse=", "place=", "disused:power=", "power=", @@ -181,500 +309,264 @@ "mapRendering": [ { "color": { - "render": "#00c" + "render": "#ccc" }, "width": { "render": "1" - } + }, + "fill": "no" } ], "title": { "render": { - "*": "OSM-Object" + "*": "Other OSM-Object" } }, "tagRenderings": [ "all_tags" ] }, + "address", { - "id": "osm-fixmes", - "name": { - "nl": "Fixmes op gebouwen" - }, - "source": { - "maxCacheAge": 0, - "osmTags": { - "and": [ - "fixme~*", - "building~*" - ] - } - }, - "calculatedTags": [ - "_grbNumber=(feat.properties.fixme?.match(/GRB thinks that this has number ([^;]+)/ ) ?? ['','none']) [1]" - ], - "title": { - "render": { - "nl": "{addr:street} {addr:housenumber}" - }, - "mappings": [ + "builtin": "crab_address", + "override": { + "calculatedTags+": [ + "_embedded_in=feat.overlapWith('osm-buildings').filter(b => /* Do not match newly created objects */ b.feat.properties.id.indexOf('-') < 0)[0]?.feat?.properties ?? {}", + "_embedding_nr=feat.get('_embedded_in')['addr:housenumber']+(feat.get('_embedded_in')['addr:unit'] ?? '')", + "_embedding_street=feat.get('_embedded_in')['addr:street']", + "_embedding_id=feat.get('_embedded_in').id", + "_closeby_addresses=feat.closestn('address',10,undefined,50).map(f => f.feat).filter(addr => addr.properties['addr:street'] == feat.properties['STRAATNM'] && feat.properties['HNRLABEL'] == addr.properties['addr:housenumber'] + (addr.properties['addr:unit']??'') ).length", + "_has_identical_closeby_address=feat.get('_closeby_addresses') >= 1 ? 'yes' : 'no'", + "_embedded_in_grb=feat.overlapWith('grb')[0]?.feat?.properties ?? {}", + "_embedding_nr_grb=feat.get('_embedded_in_grb')['addr:housenumber']", + "_embedding_street_grb=feat.get('_embedded_in_grb')['addr:street']" + ], + "filter": [ { - "if": { - "and": [ - "fixme~*" - ] - }, - "then": { - "nl": "{fixme}" - } - } - ] - }, - "description": { - "nl": "Dit gebouw heeft een foutmelding" - }, - "tagRenderings": [ - { - "id": "grb-housenumber", - "render": { - "nl": "Het huisnummer is {addr:housenumber}" - }, - "question": { - "nl": "Wat is het huisnummer?" - }, - "freeform": { - "key": "addr:housenumber" - }, - "mappings": [ - { - "if": { - "and": [ - "not:addr:housenumber=yes", - "addr:housenumber=" - ] + "id": "show_matched_addresses", + "options": [ + { + "question": "Show all CRAB-addresses (including already matched ones)" }, - "then": { - "nl": "Geen huisnummer" + { + "question": "Only show unmatched addresses", + "osmTags": { + "and": [ + "_has_identical_closeby_address!=yes", + { + "#": "Matches the embedding OSM object", + "or": [ + "_embedding_nr!:={HUISNR}", + "_embedding_street!:={STRAATNM}" + ] + }, + { + "#": "Matches the embedding GRB object", + "or": [ + "_embedding_nr_grb!:={HUISNR}", + "_embedding_street_grb!:={STRAATNM}" + ] + } + ] + }, + "default": true } - }, - { - "if": { - "and": [ - "addr:housenumber:={_grbNumber}", - "fixme=" - ] - }, - "then": "Het huisnummer is {_grbNumber}, wat overeenkomt met het GRB", - "hideInAnswer": { - "or": [ - "_grbNumber=", - "_grbNumber=none", - "_grbNumber=no number" - ] - } - }, - { - "if": { - "and": [ - "addr:housenumber=", - "not:addr:housenumber=yes", - "fixme=" - ] - }, - "then": "Dit gebouw heeft geen nummer, net zoals in het GRB", - "hideInAnswer": "_grbNumber!=no number" - } - ] - }, - { - "id": "grb-unit", - "question": "Wat is de wooneenheid-aanduiding?", - "render": { - "nl": "De wooneenheid-aanduiding is {addr:unit} " - }, - "freeform": { - "key": "addr:unit" - }, - "mappings": [ - { - "if": "addr:unit=", - "then": "Geen wooneenheid-nummer" - } - ] - }, - { - "id": "grb-street", - "render": { - "nl": "De straat is {addr:street}" - }, - "freeform": { - "key": "addr:street" - }, - "question": { - "nl": "Wat is de straat?" + ] } - }, - { - "id": "grb-fixme", - "render": { - "nl": "De fixme is {fixme}" + ], + "tagRenderings+": [ + { + "id": "render_embedded", + "render": "Dit CRAB-adres ligt in OSM-gebouw {_embedding_id}" }, - "question": { - "nl": "Wat zegt de fixme?" - }, - "freeform": { - "key": "fixme" - }, - "mappings": [ - { - "if": { - "and": [ - "fixme=" - ] - }, - "then": { - "nl": "Geen fixme" - } - } - ] - }, - { - "id": "grb-min-level", - "render": { - "nl": "Dit gebouw begint maar op de {building:min_level} verdieping" - }, - "question": { - "nl": "Hoeveel verdiepingen ontbreken?" - }, - "freeform": { - "key": "building:min_level", - "type": "pnat" - } - } - ], - "mapRendering": [ - { - "location": [ - "point", - "centroid" - ], - "label": { + { + "id": "embedded_address", + "render": "Het omliggende OSM-gebouw heeft geen volledig address", "mappings": [ { - "if": "addr:housenumber~*", - "then": "
{addr:housenumber}
" + "if": { + "and": [ + "_embedding_street~*", + "_embedding_nr~*" + ] + }, + "then": "Het omliggende object met addres heeft {_embedding_street} {_embedding_nr}" } - ] + ], + "condition": "_embedding_id~*" }, - "iconSize": { - "render": "40,40,center" - } - }, - { - "dashes": "2 2", - "color": { - "render": "#00f" - }, - "width": { - "render": "2" - } - } - ] - }, - { - "id": "crab-addresses 2021-10-26", - "source": { - "osmTags": "HUISNR~*", - "geoJson": "https://raw.githubusercontent.com/pietervdvn/pietervdvn.github.io/master/CRAB_2021_10_26/tile_{z}_{x}_{y}.geojson", - "#geoJson": "https://pietervdvn.github.io/CRAB_2021_10_26/tile_{z}_{x}_{y}.geojson", - "geoJsonZoomLevel": 18, - "maxCacheAge": 0 - }, - "name": "CRAB-addressen", - "title": "CRAB-adres", - "mapRendering": [ - { - "location": [ - "point", - "centroid" - ], - "icon": "circle:#bb3322", - "iconSize": "15,15,center" - } - ], - "calculatedTags": [ - "_embedded_in=feat.overlapWith('OSM-buildings')[0]?.feat?.properties ", - "_embedding_nr=feat.get('_embedded_in')['addr:housenumber']", - "_embedding_street=feat.get('_embedded_in')['addr:street']", - "_embedding_id=feat.get('_embedded_in').id" - ], - "isShown": { - "render": "yes", - "mappings": [ { - "if": { + "id": "apply-button", + "render": "{tag_apply(addr:street=$STRAATNM; addr:housenumber=$_HNRLABEL,Apply this address on the OSM-building,,_embedding_id)}", + "condition": { "and": [ - "_embedding_nr:={HUISNR}", - "_embedding_street:={STRAATNM}" + "_embedding_id!=", + { + "or": [ + "_embedding_street!:={STRAATNM}", + "_embedding_nr!:={_HNRLABEL}" + ] + } ] - }, - "then": "no" + } + }, + { + "id": "import-button", + "render": "{import_button(address, addr:street=$STRAATNM; addr:housenumber=$_HNRLABEL,Voeg dit adres als een nieuw adrespunt toe,,osm-buildings,5)}", + "condition": { + "and": [ + "_embedding_id!=", + { + "or": [ + "_embedding_street!:={STRAATNM}", + "_embedding_nr!:={_HNRLABEL}" + ] + } + ] + } } ] - }, - "tagRenderings": [ - { - "id": "render_crab", - "render": "Volgens het CRAB ligt hier {STRAATNM} {HUISNR} (label: {HNRLABEL})" - }, - { - "id": "render_embedded", - "render": "Het omliggende object met addres heeft {_embedding_street} {_embedding_nr}", - "condition": { - "and": [ - "_embedding_street~*", - "_embedding_nr~*" - ] - } - }, - "all_tags", - { - "id": "import-button", - "render": "{import_button(OSM-buildings, addr:street=$STRAATNM; addr:housenumber=$HUISNR,Import this address,,,OSM-buildings,5)}" - }, - { - "id": "apply-button", - "render": "{tag_apply(addr:street=$STRAATNM; addr:housenumber=$HUISNR,Apply this address on the OSM-building,,_embedding_id)}", - "condition": "_embedded_in!=" - } - ] + } }, { - "id": "grb-fixmes", - "name": { - "nl": "Fixmes op gebouwen" - }, + "id": "grb", + "description": "Geometry which comes from GRB with tools to import them", "source": { - "maxCacheAge": 0, "osmTags": { "and": [ - "fixme~*", - "building~*" - ] - } - }, - "calculatedTags": [ - "_grbNumber=(feat.properties.fixme?.match(/GRB thinks that this has number ([^;]+)/ ) ?? ['','none']) [1]" - ], - "title": { - "render": { - "nl": "{addr:street} {addr:housenumber}" - }, - "mappings": [ - { - "if": { - "and": [ - "fixme~*" - ] - }, - "then": { - "nl": "{fixme}" - } - } - ] - }, - "description": { - "nl": "Dit gebouw heeft een foutmelding" - }, - "tagRenderings": [ - { - "id": "grb-housenumber", - "render": { - "nl": "Het huisnummer is {addr:housenumber}" - }, - "question": { - "nl": "Wat is het huisnummer?" - }, - "freeform": { - "key": "addr:housenumber" - }, - "mappings": [ - { - "if": { - "and": [ - "not:addr:housenumber=yes", - "addr:housenumber=" - ] - }, - "then": { - "nl": "Geen huisnummer" - } - }, - { - "if": { - "and": [ - "addr:housenumber:={_grbNumber}", - "fixme=" - ] - }, - "then": "Het huisnummer is {_grbNumber}, wat overeenkomt met het GRB", - "hideInAnswer": { - "or": [ - "_grbNumber=", - "_grbNumber=none", - "_grbNumber=no number" - ] - } - }, - { - "if": { - "and": [ - "addr:housenumber=", - "not:addr:housenumber=yes", - "fixme=" - ] - }, - "then": "Dit gebouw heeft geen nummer, net zoals in het GRB", - "hideInAnswer": "_grbNumber!=no number" - } + "HUISNR~*", + "man_made!=mast" ] }, - { - "id": "grb-unit", - "question": "Wat is de wooneenheid-aanduiding?", - "render": { - "nl": "De wooneenheid-aanduiding is {addr:unit} " - }, - "freeform": { - "key": "addr:unit" - }, - "mappings": [ - { - "if": "addr:unit=", - "then": "Geen wooneenheid-nummer" - } - ] - }, - { - "id": "grb-street", - "render": { - "nl": "De straat is {addr:street}" - }, - "freeform": { - "key": "addr:street" - }, - "question": { - "nl": "Wat is de straat?" - } - }, - { - "id": "grb-fixme", - "render": { - "nl": "De fixme is {fixme}" - }, - "question": { - "nl": "Wat zegt de fixme?" - }, - "freeform": { - "key": "fixme" - }, - "mappings": [ - { - "if": { - "and": [ - "fixme=" - ] - }, - "then": { - "nl": "Geen fixme" - } - } - ] - }, - { - "id": "grb-min-level", - "render": { - "nl": "Dit gebouw begint maar op de {building:min_level} verdieping" - }, - "question": { - "nl": "Hoeveel verdiepingen ontbreken?" - }, - "freeform": { - "key": "building:min_level", - "type": "pnat" - } - } - ], - "mapRendering": [ - { - "location": [ - "point", - "centroid" - ], - "iconSize": { - "render": "40,40,center" - }, - "label": { - "mappings": [ - { - "if": "addr:housenumber~*", - "then": "
{addr:housenumber}
" - } - ] - } - }, - { - "width": { - "render": "2" - }, - "color": { - "render": "#00f" - } - } - ] - }, - { - "id": "GRB", - "source": { - "osmTags": "HUISNR~*", "geoJson": "https://betadata.grbosm.site/grb?bbox={x_min},{y_min},{x_max},{y_max}", "geoJsonZoomLevel": 18, "mercatorCrs": true, - "maxCacheAge": 0 + "maxCacheAge": 0, + "idKey": "osm_id" }, "name": "GRB geometries", "title": "GRB outline", "calculatedTags": [ - "_overlaps_with=feat.overlapWith('OSM-buildings').filter(f => f.overlap > 1 && (feat.get('_surface') < 20 || f.overlap / feat.get('_surface')) > 0.5)[0] ?? null", - "_overlap_absolute=feat.get('_overlaps_with')?.overlap", - "_overlap_percentage=Math.round(100 * feat.get('_overlap_absolute') / feat.get('_surface')) ", + "_overlaps_with_buildings=feat.overlapWith('osm-buildings').filter(f => f.feat.properties.id.indexOf('-') < 0)", + "_overlaps_with=feat.get('_overlaps_with_buildings').find(f => f.overlap > 1 /* square meter */ )", "_osm_obj:source:ref=feat.get('_overlaps_with')?.feat?.properties['source:geometry:ref']", + "_osm_obj:id=feat.get('_overlaps_with')?.feat?.properties?.id", "_osm_obj:source:date=feat.get('_overlaps_with')?.feat?.properties['source:geometry:date'].replace(/\\//g, '-')", - "_osm_obj:building=feat.get('_overlaps_with')?.feat?.properties.building", - "_osm_obj:id=feat.get('_overlaps_with')?.feat?.properties.id", + "_osm_obj:building=feat.get('_overlaps_with')?.feat?.properties?.building", + "_osm_obj:addr:street=(feat.get('_overlaps_with')?.feat?.properties ?? {})['addr:street']", + "_osm_obj:addr:housenumber=(feat.get('_overlaps_with')?.feat?.properties ?? {})['addr:housenumber']", + "_osm_obj:surface=(feat.get('_overlaps_with')?.feat?.properties ?? {})['_surface:strict']", + "_overlap_absolute=feat.get('_overlaps_with')?.overlap", + "_reverse_overlap_percentage=Math.round(100 * feat.get('_overlap_absolute') / feat.get('_surface'))", + "_overlap_percentage=Math.round(100 * feat.get('_overlap_absolute') / feat.get('_osm_obj:surface'))", "_grb_ref=feat.properties['source:geometry:entity'] + '/' + feat.properties['source:geometry:oidn']", "_imported_osm_object_found= feat.properties['_osm_obj:source:ref'] == feat.properties._grb_ref", "_grb_date=feat.properties['source:geometry:date'].replace(/\\//g,'-')", "_imported_osm_still_fresh= feat.properties['_osm_obj:source:date'] == feat.properties._grb_date", - "_target_building_type=feat.properties['_osm_obj:building'] === 'yes' ? feat.properties.building : (feat.properties['_osm_obj:building'] ?? feat.properties.building)" + "_target_building_type=feat.properties['_osm_obj:building'] === 'yes' ? feat.properties.building : (feat.properties['_osm_obj:building'] ?? feat.properties.building)", + "_building:min_level= feat.properties['fixme']?.startsWith('verdieping, correct the building tag, add building:level and building:min_level before upload in JOSM!') ? '1' : ''", + "_intersects_with_other_features=feat.intersectionsWith('generic_osm_object').map(f => \"\" + f.feat.properties.id + \"\").join(', ')" ], "tagRenderings": [ + { + "id": "Import-button", + "render": "{import_way_button(osm-buildings,building=$building;man_made=$man_made; source:geometry:date=$_grb_date; source:geometry:ref=$_grb_ref; addr:street=$addr:street; addr:housenumber=$addr:housenumber; building:min_level=$_building:min_level, Upload this building to OpenStreetMap,,_is_part_of_building=true,1,_moveable=true)}", + "mappings": [ + { + "#": "Actually the same as below, except that the text shows 'add the address' too", + "if": { + "and": [ + "_overlap_percentage>50", + "_reverse_overlap_percentage>50", + "_overlaps_with!=", + "_osm_obj:addr:street=", + "_osm_obj:addr:housenumber=", + "addr:street~*", + "addr:housenumber~*", + "addr:street!:={_osm_obj:addr:street}", + "addr:housenumber!:={_osm_obj:addr:housenumber}" + ] + }, + "then": "{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)}" + }, + { + "if": { + "and": [ + "_overlap_percentage>50", + "_reverse_overlap_percentage>50", + "_overlaps_with!=" + ] + }, + "then": "{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)}" + } + ] + }, { "id": "Building info", "render": "This is a {building} detected by {detection_method}" }, + { + "id": "overlapping building address", + "render": "The overlapping openstreetmap-building has no address information at all", + "mappings": [ + { + "if": { + "and": [ + "_osm_obj:addr:street~*", + "_osm_obj:addr:housenumber~*" + ] + }, + "then": "The overlapping openstreetmap-building has address {_osm_obj:addr:street} {_osm_obj:addr:housenumber}" + }, + { + "if": "_osm_obj:addr:street~*", + "then": "The overlapping building only has a street known: {_osm_obj:addr:street}" + }, + { + "if": "_osm_obj:addr:housenumber~*", + "then": "The overlapping building only has a housenumber known: {_osm_obj:addr:housenumber}" + }, + { + "if": "_osm_obj:id=", + "then": "No overlapping OpenStreetMap-building found" + } + ] + }, + { + "id": "grb_address_diff", + "render": "
The overlapping openstreetmap-building has a different address then this GRB-object: {addr:street} {addr:housenumber}
{tag_apply(addr:street=$addr:street; addr:housenumber=$addr:housenumber,Copy the GRB-address onto the OSM-object,,_osm_obj:id)}", + "condition": { + "and": [ + "_osm_obj:id~*", + "addr:street~*", + "addr:housenumber~*", + { + "or": [ + "addr:street~*", + "addr:housenumber~*" + ] + }, + { + "or": [ + "addr:street!:={_osm_obj:addr:street}", + "addr:housenumber!:={_osm_obj:addr:housenumber}" + ] + } + ] + } + }, { "id": "overlapping building type", - "render": "
The overlapping openstreetmap-building is a {_osm_obj:building} and covers {_overlap_percentage}% of the GRB building

GRB geometry:

{minimap(21, id):height:10rem;border-radius:1rem;overflow:hidden}

OSM geometry:

{minimap(21,_osm_obj:id):height:10rem;border-radius:1rem;overflow:hidden}", - "condition": "_overlaps_with!=null" + "render": "
The overlapping openstreetmap-building is a {_osm_obj:building} and covers {_overlap_percentage}% of the GRB building.
The GRB-building covers {_reverse_overlap_percentage}% of the OSM building

GRB geometry:

{minimap(21, id):height:10rem;border-radius:1rem;overflow:hidden}

OSM geometry:

{minimap(21,_osm_obj:id):height:10rem;border-radius:1rem;overflow:hidden}", + "condition": "_overlaps_with!=" }, { "id": "apply-id", "render": "{tag_apply(source:geometry:date=$_grb_date; source:geometry:ref=$_grb_ref,Mark the OSM-building as imported,,_osm_obj:id)}", "condition": { "and": [ - "_overlaps_with!=null" + "_overlaps_with!=", + "_imported!=yes" ] } }, @@ -683,23 +575,12 @@ "render": "{tag_apply(building=$building,Use the building type from GRB,,_osm_obj:id)}", "condition": { "and": [ - "_overlaps_with!=null", + "_overlaps_with!=", "_osm_obj:building=yes", "building!=yes" ] } - }, - { - "id": "Import-button", - "render": "{import_button(OSM-buildings,building=$building; source:geometry:date=$_grb_date; source:geometry:ref=$_grb_ref, Upload this building to OpenStreetMap)}", - "mappings": [ - { - "if": "_overlaps_with!=null", - "then": "{import_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)}" - } - ] - }, - "all_tags" + } ], "isShown": { "render": "yes", @@ -717,9 +598,45 @@ }, "mapRendering": [ { + "label": { + "render": "
{addr:housenumber}
", + "condition": "addr:housenumber~*" + }, + "iconSize": "50,50,center", + "icon": { + "mappings": [ + { + "if": "_intersects_with_other_features~*", + "then": "./assets/themes/grb_import/warning.svg" + }, + { + "if": "addr:housenumber~*", + "then": "./assets/themes/grb_import/housenumber_blank.svg" + } + ] + }, + "location": [ + "point", + "centroid" + ] + }, + { + "width": { + "render": 5, + "mappings": [ + { + "if": "_imported=yes", + "then": "1" + } + ] + }, "color": { "render": "#00a", "mappings": [ + { + "if": "_imported=yes", + "then": "#00ff00" + }, { "if": { "and": [ @@ -733,10 +650,61 @@ } } ] + }, + { + "builtin": "current_view", + "override": { + "calculatedTags": [ + "_overlapping=Number(feat.properties.zoom) >= 16 ? feat.overlapWith('grb').map(ff => ff.feat.properties) : undefined", + "_applicable=feat.get('_overlapping')?.filter(p => (p._imported_osm_object_found !== 'true' && p._intersects_with_other_features === ''))?.map(p => p.id)", + "_applicable_count=feat.get('_applicable')?.length" + ], + "tagRenderings": [ + { + "id": "hw", + "render": "There are {_applicable_count} applicable elements in view", + "mappings": [ + { + "if": "zoom<14", + "then": "Zoom in more to see the automatic action" + }, + { + "if": "_applicable_count=", + "then": "Loading..." + }, + { + "if": "_applicable_count=0", + "then": "No importable buildins in view" + } + ] + }, + { + "id": "autoapply", + "render": "{auto_apply(grb, _applicable, Import-button, Import or conflate all non-conflicting buildings in view)}", + "mappings": [ + { + "if": "zoom<16", + "then": "Zoom in more to import" + } + ] + } + ], + "+mapRendering": [ + { + "location": [ + "point" + ], + "icon": { + "render": "./assets/svg/robot.svg" + }, + "iconSize": "15,15,center" + } + ] + } } ], "hideFromOverview": true, "defaultBackgroundId": "AGIVFlandersGRB", - "overpassMaxZoom": 15, + "overpassMaxZoom": 17, "osmApiTileSize": 17 } \ No newline at end of file diff --git a/assets/themes/grb_import/grb_fixme.json b/assets/themes/grb_import/grb_fixme.json new file mode 100644 index 0000000000..2ae057dfd4 --- /dev/null +++ b/assets/themes/grb_import/grb_fixme.json @@ -0,0 +1,307 @@ +{ + "id": "grb_fixme", + "title": { + "nl": "GRB Fixup" + }, + "shortDescription": { + "nl": "Grb Fixup" + }, + "description": { + "nl": "Gebouwen met een FIXME - wss GRB-import die gefixed moeten worden" + }, + "maintainer": "", + "icon": "./assets/svg/bug.svg", + "version": "0", + "startLat": 51.2132, + "startLon": 3.231, + "startZoom": 14, + "widenFactor": 2, + "clustering": { + "maxZoom": 15 + }, + "overrideAll": { + "source": { + "maxCacheAge": 0 + } + }, + "layers": [ + { + "id": "osm-buildings-fixme", + "name": "OSM-buildings with a fixme", + "source": { + "osmTags": { + "and": [ + "building~*", + "fixme~*" + ] + }, + "maxCacheAge": 0 + }, + "calculatedTags": [ + "_grbNumber=(feat.properties.fixme?.match(/GRB thinks that this has number ([0-9a-zA-Z;]+)/) ?? ['','none']) [1]" + ], + "mapRendering": [ + { + "width": { + "render": "2", + "mappings": [ + { + "if": "fixme~*", + "then": "5" + } + ] + }, + "color": { + "render": "#00c", + "mappings": [ + { + "if": "fixme~*", + "then": "#ff00ff" + }, + { + "if": "building=house", + "then": "#a00" + }, + { + "if": "building=shed", + "then": "#563e02" + }, + { + "if": { + "or": [ + "building=garage", + "building=garages" + ] + }, + "then": "#f9bfbb" + }, + { + "if": "building=yes", + "then": "#0774f2" + } + ] + } + }, + { + "location": [ + "point", + "centroid" + ], + "label": { + "mappings": [ + { + "if": "addr:housenumber~*", + "then": "
{addr:housenumber}
" + } + ] + }, + "iconSize": { + "render": "40,40,center" + } + } + ], + "title": "OSM-gebouw", + "tagRenderings": [ + { + "id": "building type", + "freeform": { + "key": "building" + }, + "render": "The building type is {building}", + "question": { + "en": "What kind of building is this?", + "de": "Was ist das für ein Gebäude?" + }, + "mappings": [ + { + "if": "building=house", + "then": "A normal house" + }, + { + "if": "building=detached", + "then": "A house detached from other building" + }, + { + "if": "building=semidetached_house", + "then": "A house sharing only one wall with another house" + }, + { + "if": "building=apartments", + "then": "An apartment building - highrise for living" + }, + { + "if": "building=office", + "then": "An office building - highrise for work" + }, + { + "if": "building=apartments", + "then": "An apartment building" + }, + { + "if": "building=shed", + "then": "A small shed, e.g. in a garden" + }, + { + "if": "building=garage", + "then": "A single garage to park a car" + }, + { + "if": "building=garages", + "then": "A building containing only garages; typically they are all identical" + }, + { + "if": "building=yes", + "then": "A building - no specification" + } + ] + }, + { + "id": "grb-housenumber", + "render": { + "nl": "Het huisnummer is {addr:housenumber}" + }, + "question": { + "nl": "Wat is het huisnummer?" + }, + "freeform": { + "key": "addr:housenumber" + }, + "mappings": [ + { + "if": { + "and": [ + "not:addr:housenumber=yes", + "addr:housenumber=" + ] + }, + "then": { + "nl": "Geen huisnummer" + } + }, + { + "if": { + "and": [ + "addr:housenumber:={_grbNumber}", + "fixme=" + ] + }, + "then": "Het huisnummer is {_grbNumber}, wat overeenkomt met het GRB", + "hideInAnswer": { + "or": [ + "_grbNumber=", + "_grbNumber=none", + "_grbNumber=no number" + ] + } + }, + { + "if": { + "and": [ + "addr:housenumber=", + "not:addr:housenumber=yes", + "fixme=" + ] + }, + "then": "Dit gebouw heeft geen nummer, net zoals in het GRB", + "hideInAnswer": "_grbNumber!=no number" + } + ] + }, + { + "id": "grb-unit", + "question": "Wat is de wooneenheid-aanduiding?", + "render": { + "nl": "De wooneenheid-aanduiding is {addr:unit} " + }, + "freeform": { + "key": "addr:unit" + }, + "mappings": [ + { + "if": "addr:unit=", + "then": "Geen wooneenheid-nummer" + } + ] + }, + { + "id": "grb-street", + "render": { + "nl": "De straat is {addr:street}" + }, + "freeform": { + "key": "addr:street" + }, + "question": { + "nl": "Wat is de straat?" + } + }, + { + "id": "grb-fixme", + "render": { + "nl": "De fixme is {fixme}" + }, + "question": { + "nl": "Wat zegt de fixme?" + }, + "freeform": { + "key": "fixme" + }, + "mappings": [ + { + "if": { + "and": [ + "fixme=" + ] + }, + "then": { + "nl": "Geen fixme" + } + } + ] + }, + { + "id": "grb-min-level", + "render": { + "nl": "Dit gebouw begint maar op de {building:min_level} verdieping" + }, + "question": { + "nl": "Hoeveel verdiepingen ontbreken?" + }, + "freeform": { + "key": "building:min_level", + "type": "pnat" + } + }, + { + "id": "fix_verdieping", + "render": "{tag_apply(fixme=;building:min_level=1,De eerste verdieping ontbreekt)}", + "condition": "fixme=verdieping, correct the building tag, add building:level and building:min_level before upload in JOSM!" + }, + "all_tags" + ], + "minzoom": 14 + }, + { + "builtin": "address", + "override": { + "minzoom": 18 + } + }, + { + "builtin": "crab_address", + "override": { + "minzoom": 18, + "+tagRenderings": [ + { + "id": "import-button", + "render": "{import_button(address, addr:street=$STRAATNM; addr:housenumber=$HUISNR,Import this address)}" + } + ] + } + } + ], + "hideFromOverview": true, + "defaultBackgroundId": "AGIVFlandersGRB", + "overpassMaxZoom": 15, + "osmApiTileSize": 17 +} \ No newline at end of file diff --git a/assets/themes/grb_import/housenumber_blank.svg b/assets/themes/grb_import/housenumber_blank.svg new file mode 100644 index 0000000000..c8f1a7f011 --- /dev/null +++ b/assets/themes/grb_import/housenumber_blank.svg @@ -0,0 +1,7 @@ + + + + + + + \ No newline at end of file diff --git a/assets/themes/grb_import/license_info.json b/assets/themes/grb_import/license_info.json new file mode 100644 index 0000000000..0a00dc73ab --- /dev/null +++ b/assets/themes/grb_import/license_info.json @@ -0,0 +1,28 @@ +[ + { + "path": "housenumber_blank.svg", + "license": "CC0", + "authors": [ + "Pieter Vander Vennet" + ], + "sources": [] + }, + { + "path": "logo.svg", + "license": "CC0", + "authors": [ + "Pieter Vander Vennet" + ], + "sources": [] + }, + { + "path": "warning.svg", + "license": "CC0", + "authors": [ + "penubag" + ], + "sources": [ + "https://commons.wikimedia.org/wiki/File:Ambox_warning_pn.svg" + ] + } +] \ No newline at end of file diff --git a/assets/themes/grb_import/logo.svg b/assets/themes/grb_import/logo.svg new file mode 100644 index 0000000000..293fb295f4 --- /dev/null +++ b/assets/themes/grb_import/logo.svg @@ -0,0 +1,79 @@ + + + + + + + + + + + + + + + + + + + diff --git a/assets/themes/grb_import/missing_streets.json b/assets/themes/grb_import/missing_streets.json new file mode 100644 index 0000000000..d30e0a2cc8 --- /dev/null +++ b/assets/themes/grb_import/missing_streets.json @@ -0,0 +1,153 @@ +{ + "id": "missing_streets", + "title": { + "nl": "Fix ontbrekende straten" + }, + "shortDescription": { + "nl": "Voegt ontbrekende straten toe aan gebouwen met huisnumer adhv CRAB" + }, + "description": { + "nl": "Dit thema voegt automatisch straatnamen toe aan gebouwen met huisnummer en overeenkomstig CRAB-adres." + }, + "maintainer": "", + "icon": "./assets/svg/robot.svg", + "version": "0", + "startLat": 51.0249, + "startLon": 4.026489, + "startZoom": 9, + "widenFactor": 2, + "clustering": { + "maxZoom": 15 + }, + "overrideAll": { + "minzoom": 14 + }, + "layers": [ + { + "builtin": "current_view", + "override": { + "+mapRendering": [ + { + "location": [ + "point" + ], + "icon": { + "render": "./assets/svg/robot.svg" + }, + "iconSize": "15,15,center" + } + ], + "calculatedTags": [ + "_overlapping=Number(feat.properties.zoom) >= 14 ? feat.overlapWith('osm-buildings').map(ff => ff.feat.properties) : undefined", + "_applicable=feat.get('_overlapping').filter(p => (p._spelling_is_correct === 'true') && (p._singular_import === 'true')).map(p => p.id)", + "_applicable_count=feat.get('_applicable')?.length" + ], + "tagRenderings": [ + { + "id": "hw", + "render": "There are {_applicable_count} applicable elements in view", + "mappings": [ + { + "if": "zoom<14", + "then": "Zoom in more to see the automatic action" + }, + { + "if": "_applicable_count=", + "then": "Loading..." + }, + { + "if": "_applicable_count=0", + "then": "No buildings with missing street names in view" + } + ] + }, + { + "id": "autoapply", + "render": "{auto_apply(osm-buildings, _applicable, apply_streetname, Automatically add all missing streetnames on buildings in view)}" + } + ] + } + }, + "named_streets", + { + "builtin": "crab_address", + "override": { + "source": { + "geoJson": "https://raw.githubusercontent.com/pietervdvn/MapComplete-data/main/CRAB_2021_10_26/tile_{z}_{x}_{y}.geojson", + "geoJsonZoomLevel": 18 + }, + "mapRendering": [ + { + "iconSize": "5,5,center", + "icon": "circle:black;" + } + ] + } + }, + { + "id": "osm-buildings", + "name": "Alle OSM-gebouwen met een huisnummer en zonder straat", + "source": { + "osmTags": { + "and": [ + "building~*", + "addr:housenumber~*", + "addr:street=" + ] + }, + "maxCacheAge": 0 + }, + "calculatedTags": [ + "_embedded_crab_addresses:=Array.from(new Set(feat.overlapWith('crab_address').map(ff => ff.feat.properties).filter(p => p._HNRLABEL.toLowerCase() === (feat.properties['addr:housenumber'] + (feat.properties['addr:unit']??'')).toLowerCase()).map(p => p.STRAATNM)))", + "_singular_import:=feat.get('_embedded_crab_addresses')?.length == 1", + "_name_to_apply:=feat.get('_embedded_crab_addresses')[0]", + "_nearby_street_names:=feat.closestn('named_streets',5,'name', 1000).map(ff => [ff.feat.properties.name, ff.feat.properties['alt_name'], ff.feat.properties['name:nl']])", + "_spelling_is_correct:= [].concat(...feat.get('_nearby_street_names')).indexOf(feat.properties['_name_to_apply']) >= 0" + ], + "mapRendering": [ + { + "width": { + "render": "2", + "mappings": [ + { + "if": "fixme~*", + "then": "5" + } + ] + }, + "color": { + "render": "#00c", + "mappings": [ + { + "if": "_spelling_is_correct=false", + "then": "#ff00ff" + }, + { + "if": "_singular_import=ffalse", + "then": "#f00" + } + ] + } + } + ], + "title": "OSM-gebouw", + "tagRenderings": [ + { + "id": "apply_streetname", + "render": "{tag_apply(addr:street=$_name_to_apply ,Apply the CRAB-street onto this building)}", + "mappings": [ + { + "if": "_spelling_is_correct=false", + "then": "No nearby street has the same name. The CRAB-name is {_name_to_apply}" + }, + { + "if": "_singular_import=false", + "then": "There are multiple streetnames applicable here" + } + ] + } + ] + } + ], + "hideFromOverview": true +} \ No newline at end of file diff --git a/assets/themes/grb_import/warning.svg b/assets/themes/grb_import/warning.svg new file mode 100644 index 0000000000..f0ad829a84 --- /dev/null +++ b/assets/themes/grb_import/warning.svg @@ -0,0 +1,54 @@ + + + + + + + + + + diff --git a/assets/themes/hackerspaces/glider.svg b/assets/themes/hackerspaces/glider.svg index c69a6e08bb..3f75487628 100644 --- a/assets/themes/hackerspaces/glider.svg +++ b/assets/themes/hackerspaces/glider.svg @@ -1,30 +1,14 @@ - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + \ No newline at end of file diff --git a/assets/themes/hackerspaces/hackerspaces.json b/assets/themes/hackerspaces/hackerspaces.json index c301c7b238..c5728cb7ec 100644 --- a/assets/themes/hackerspaces/hackerspaces.json +++ b/assets/themes/hackerspaces/hackerspaces.json @@ -3,24 +3,25 @@ "title": { "en": "Hackerspaces", "de": "Hackerspaces", - "it": "Hackerspace" + "it": "Hackerspace", + "ru": "Хакерспейсы", + "zh_Hant": "駭客空間", + "hu": "Hackerspace-ek" }, "shortDescription": { "en": "A map of hackerspaces", "de": "Eine Karte von Hackerspaces", - "it": "Una cartina degli hackerspace" + "it": "Una cartina degli hackerspace", + "zh_Hant": "駭客空間的地圖", + "hu": "Hackerspace-ek térképe" }, "description": { "en": "On this map you can see hackerspaces, add a new hackerspace or update data directly", "de": "Auf dieser Karte können Sie Hackerspaces sehen, einen neuen Hackerspace hinzufügen oder Daten direkt aktualisieren", - "it": "Su questa cartina è possibile vedere gli hackerspace, aggiungerne di nuovi o aggiornare le informazioni tutto in maniera pratica" + "it": "Su questa cartina è possibile vedere gli hackerspace, aggiungerne di nuovi o aggiornare le informazioni tutto in maniera pratica", + "zh_Hant": "在這份地圖上你可以看到駭客空間,新增或直接更新資料", + "hu": "Ezen a térképen hackerspace-ek láthatók, új hackerspace-eket lehet fölrajzolni vagy meglévők adatait frissíteni" }, - "language": [ - "en", - "de", - "it", - "eo" - ], "maintainer": "", "icon": "./assets/themes/hackerspaces/glider.svg", "version": "0", @@ -28,19 +29,24 @@ "startLon": 0, "startZoom": 1, "widenFactor": 5, - "socialImage": "", "layers": [ { "id": "hackerspaces", "name": { "en": "Hackerspace", - "de": "Hackerspace" + "de": "Hackerspace", + "ru": "Хакерспейс", + "zh_Hant": "駭客空間", + "hu": "Hackerspace" }, "minzoom": 8, "title": { "render": { "en": "Hackerspace", - "de": "Hackerspace" + "de": "Hackerspace", + "ru": "Хакерспейс", + "zh_Hant": "駭客空間", + "hu": "Hackerspace" }, "mappings": [ { @@ -51,35 +57,47 @@ }, "then": { "en": " {name}", - "de": " {name}" + "de": " {name}", + "ru": " {name}", + "zh_Hant": " {name}", + "hu": " {name}" } } ] }, "description": { "en": "Hackerspace", - "de": "Hackerspace" + "de": "Hackerspace", + "ru": "Хакерспейс", + "zh_Hant": "駭客空間", + "hu": "Hackerspace" }, "tagRenderings": [ { "id": "is_makerspace", "question": { "en": "Is this a hackerspace or a makerspace?", - "de": "Ist dies ein Hackerspace oder ein Makerspace?" + "de": "Ist dies ein Hackerspace oder ein Makerspace?", + "zh_Hant": "這邊是駭客空間還是創客空間?", + "hu": "Ez hackerspace vagy makerspace?" }, "mappings": [ { "if": "hackerspace=makerspace", "then": { "en": "This is a makerspace", - "de": "Dies ist ein Makerspace" + "de": "Dies ist ein Makerspace", + "zh_Hant": "這是創客空間", + "hu": "Ez egy makerspace" } }, { "if": "hackerspace=", "then": { "en": "This is a traditional (software oriented) hackerspace", - "de": "Dies ist ein traditioneller (softwareorientierter) Hackerspace" + "de": "Dies ist ein traditioneller (softwareorientierter) Hackerspace", + "zh_Hant": "這是傳統的 (軟體導向) 駭客空間", + "hu": "Ez egy hagyományos (szoftverekkel foglalkozó) hackerspace" } } ] @@ -87,11 +105,13 @@ { "question": { "en": "What is the name of this hackerspace?", - "de": "Wie lautet der Name dieses Hackerspace?" + "de": "Wie lautet der Name dieses Hackerspace?", + "zh_Hant": "這個駭客空間的名稱是?" }, "render": { "en": "This hackerspace is named {name}", - "de": "Dieser Hackerspace heißt {name}" + "de": "Dieser Hackerspace heißt {name}", + "zh_Hant": "這個駭客空間叫 {name}" }, "freeform": { "key": "name" @@ -104,7 +124,8 @@ { "question": { "en": "When is this hackerspace opened?", - "de": "Wann hat dieser Hackerspace geöffnet?" + "de": "Wann hat dieser Hackerspace geöffnet?", + "zh_Hant": "這個駭客空間的營業時間?" }, "freeform": { "key": "opening_hours", @@ -112,7 +133,9 @@ }, "render": { "en": "{opening_hours_table()}", - "de": "{opening_hours_table()}" + "de": "{opening_hours_table()}", + "ru": "{opening_hours_table()}", + "zh_Hant": "{opening_hours_table()}" }, "mappings": [ { @@ -123,7 +146,9 @@ }, "then": { "en": "Opened 24/7", - "de": "durchgehend geöffnet" + "de": "durchgehend geöffnet", + "ru": "Открыто 24/7", + "zh_Hant": "24/7 營業" } } ], @@ -134,7 +159,8 @@ "id": "hs-club-mate", "question": { "en": "Does this hackerspace serve Club Mate?", - "de": "Gibt es in diesem Hackerspace Club Mate?" + "de": "Gibt es in diesem Hackerspace Club Mate?", + "zh_Hant": "這個駭客空間是否服務俱樂部伙伴?" }, "mappings": [ { @@ -145,7 +171,8 @@ }, "then": { "en": "This hackerspace serves club mate", - "de": "In diesem Hackerspace gibt es Club Mate" + "de": "In diesem Hackerspace gibt es Club Mate", + "zh_Hant": "這個駭客空間服務俱樂部伙伴" } }, { @@ -156,7 +183,8 @@ }, "then": { "en": "This hackerspace does not serve club mate", - "de": "In diesem Hackerspace gibt es kein Club Mate" + "de": "In diesem Hackerspace gibt es kein Club Mate", + "zh_Hant": "這個駭客空間沒有服務俱樂部伙伴" } } ] @@ -164,11 +192,13 @@ { "render": { "en": "This hackerspace was founded at {start_date}", - "de": "Dieser Hackerspace wurde gegründet am {start_date}" + "de": "Dieser Hackerspace wurde gegründet am {start_date}", + "zh_Hant": "這駭客空間是 {start_date} 成立的" }, "question": { "en": "When was this hackerspace founded?", - "de": "Wann wurde dieser Hackerspace gegründet?" + "de": "Wann wurde dieser Hackerspace gegründet?", + "zh_Hant": "這個駭客空間何時成立的?" }, "freeform": { "key": "start_date", @@ -184,11 +214,16 @@ ], "title": { "en": "Hackerspace", - "de": "Hackerspace" + "de": "Hackerspace", + "ru": "Хакерспейс", + "zh_Hant": "駭客空間", + "hu": "Hackerspace" }, "description": { "en": "A hackerspace is an area where people interested in software gather", - "de": "Ein Hackerspace ist ein Ort, an dem sich Menschen treffen, die sich für Software interessieren" + "de": "Ein Hackerspace ist ein Ort, an dem sich Menschen treffen, die sich für Software interessieren", + "zh_Hant": "駭客空間是對軟體有興趣的人聚集的地方", + "hu": "A hackerspace egy olyan hely, ahol szoftverek iránt érdeklő emberek találkoznak" } }, { @@ -198,11 +233,15 @@ ], "title": { "en": "Makerspace", - "de": "Makerspace" + "de": "Makerspace", + "zh_Hant": "創客空間", + "hu": "Makerspace" }, "description": { "en": "A makerspace is a place where DIY-enthusiasts gather to experiment with electronics such as arduino, LEDstrips, ...", - "de": "Ein Makerspace ist ein Ort, an dem Heimwerker-Enthusiasten zusammenkommen, um mit Elektronik zu experimentieren, wie Arduino, LED-Strips, ..." + "de": "Ein Makerspace ist ein Ort, an dem Heimwerker-Enthusiasten zusammenkommen, um mit Elektronik zu experimentieren, wie Arduino, LED-Strips, ...", + "zh_Hant": "創客空間是 DIY 愛好者聚集在一起弄電子零件實驗,例如用 arduino、LEDstrips 等...", + "hu": "A makerspace olyan hely, ahol a barkácsolás szerelmesei találkoznak, hogy olyan elektronikai eszközökkel kísérletezzenek, mint például az Arduino vagy a LEDstrips." } } ], diff --git a/assets/themes/hailhydrant/Twemoji12_1f692.svg b/assets/themes/hailhydrant/Twemoji12_1f692.svg index 73c8fbfde7..97ee5e448b 100644 --- a/assets/themes/hailhydrant/Twemoji12_1f692.svg +++ b/assets/themes/hailhydrant/Twemoji12_1f692.svg @@ -1,14 +1,15 @@ - - - - - - - - - - - + + + + + + + + + + + + + + \ No newline at end of file diff --git a/assets/themes/hailhydrant/Twemoji12_1f9ef.svg b/assets/themes/hailhydrant/Twemoji12_1f9ef.svg index 6183a0895a..775a7ba497 100644 --- a/assets/themes/hailhydrant/Twemoji12_1f9ef.svg +++ b/assets/themes/hailhydrant/Twemoji12_1f9ef.svg @@ -1,20 +1,17 @@ - - - - - - - - - - - - - + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/assets/themes/hailhydrant/Twemoji12_26d1.svg b/assets/themes/hailhydrant/Twemoji12_26d1.svg index 0c00233379..880a5537af 100644 --- a/assets/themes/hailhydrant/Twemoji12_26d1.svg +++ b/assets/themes/hailhydrant/Twemoji12_26d1.svg @@ -1,12 +1,11 @@ - - - - - - - + + + + + + + + + + \ No newline at end of file diff --git a/assets/themes/hailhydrant/Twemoji_1f691.svg b/assets/themes/hailhydrant/Twemoji_1f691.svg index 0c30f7dc61..1adc8a0921 100644 --- a/assets/themes/hailhydrant/Twemoji_1f691.svg +++ b/assets/themes/hailhydrant/Twemoji_1f691.svg @@ -1,15 +1,17 @@ - - - \ No newline at end of file + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/assets/themes/hailhydrant/hailhydrant.json b/assets/themes/hailhydrant/hailhydrant.json index bd398f508b..0d4007b45d 100644 --- a/assets/themes/hailhydrant/hailhydrant.json +++ b/assets/themes/hailhydrant/hailhydrant.json @@ -7,7 +7,9 @@ "ru": "Пожарные гидранты, огнетушители, пожарные станции и станции скорой помощи.", "fr": "Bornes incendies, extincteurs, casernes de pompiers et ambulanciers.", "it": "Idranti, estintori, caserme dei vigili del fuoco e stazioni delle ambulanze.", - "nb_NO": "Hydranter, brannslukkere, brannstasjoner, og ambulansestasjoner." + "nb_NO": "Hydranter, brannslukkere, brannstasjoner, og ambulansestasjoner.", + "de": "Hydranten, Feuerlöscher, Feuerwachen und Rettungswachen.", + "hu": "Tűzcsapok, tűzoltó készülékek, tűzoltóságok és mentőállomások." }, "shortDescription": { "en": "Map to show hydrants, extinguishers, fire stations, and ambulance stations.", @@ -16,28 +18,18 @@ "ru": "Карта пожарных гидрантов, огнетушителей, пожарных станций и станций скорой помощи.", "fr": "Carte indiquant les bornes incendies, extincteurs, casernes de pompiers et ambulanciers.", "de": "Hydranten, Feuerlöscher, Feuerwachen und Rettungswachen.", - "it": "Carta che mostra gli idranti, gli estintori, le caserme dei vigili del fuoco e le stazioni delle ambulanze." + "it": "Carta che mostra gli idranti, gli estintori, le caserme dei vigili del fuoco e le stazioni delle ambulanze.", + "hu": "Térkép tűzcsapok, tűzoltó készülékek, tűzoltóságok és mentőállomások megjelenítéséhez." }, "description": { "en": "On this map you can find and update hydrants, fire stations, ambulance stations, and extinguishers in your favorite neighborhoods.\n\nYou can track your precise location (mobile only) and select layers that are relevant for you in the bottom left corner. You can also use this tool to add or edit pins (points of interest) to the map and provide additional details by answering available questions.\n\nAll changes you make will automatically be saved in the global database of OpenStreetMap and can be freely re-used by others.", "ja": "このマップでは、お気に入りの近隣にある消火栓、消防署、救急ステーション、消火器を検索して更新できます。\n\n正確な位置を追跡し(モバイルのみ)、左下コーナーで関連するレイヤを選択できます。このツールを使用して、マップにピン(注視点)を追加または編集したり、利用可能な質問に答えることによって追加の詳細を提供することもできます。\n\nすべての変更は自動的にOpenStreetMapのグローバルデータベースに保存され、他のユーザが自由に再利用できます。", "zh_Hant": "在這份地圖上面你可以在你喜愛的社區尋找與更新消防栓、消防隊、急救站與滅火器。\n\n你可以追蹤確切位置 (只有行動版) 以及在左下角選擇與你相關的圖層。你也可以使用這工具新增或編輯地圖上的釘子 (興趣點),以及透過回答一些問題提供額外的資訊。\n\n所有你做出的變動都會自動存到開放街圖這個全球資料庫,而且能自由讓其他人取用。", "fr": "Sur cette carte on trouve et met à jour les bornes incendies, extincteurs, casernes de pompiers et ambulanciers dans son quartier.
Les options en haut à gauche permettent de localiser sa position (sur téléphone) et de filtrer les éléments. Il est possible d’utiliser cet outil pour ajouter et éditer les points d’intérêt de la carte et d’y ajouter des détails en répondant aux questions.
Toutes les modifications sont automatiquement enregistrées dans la base de données OpenStreetMap et peuvent êtres librement réutilisées par d’autres.", - "de": "Auf dieser Karte können Sie Hydranten, Feuerwachen, Krankenwagen und Feuerlöscher in Ihren bevorzugten Stadtvierteln finden und aktualisieren. \n\nSie können Ihren genauen Standort verfolgen (nur mobil) und in der unteren linken Ecke die für Sie relevanten Ebenen auswählen. Sie können mit diesem Tool auch Pins (Points of Interest) zur Karte hinzufügen oder bearbeiten und durch die Beantwortung verfügbarer Fragen zusätzliche Angaben machen. \n\nAlle von Ihnen vorgenommenen Änderungen werden automatisch in der globalen Datenbank von OpenStreetMap gespeichert und können von anderen frei weiterverwendet werden.", - "it": "In questa cartina puoi vedere e aggiornare idranti, stazioni dei pompieri, stazioni delle ambulanze ed estintori del tuo quartiere preferito.\n\nPuoi seguire la tua posizione precisa (solo su cellulare) e selezionare i livelli che ti interessano nell’angolo in basso a sinistra. Puoi anche usare questo strumento per aggiungere o modificare i PDI sulla mappa e fornire ulteriori dettagli rispondendo alle domande.\n\nTutte le modifiche che farai verranno automaticamente salvate nel database globale di OpenStreetMap e potranno essere riutilizzate liberamente da tutti." + "de": "Auf dieser Karte können Sie Hydranten, Feuerwachen, Krankenwagen und Feuerlöscher in Ihren bevorzugten Stadtvierteln finden und aktualisieren.\n\nSie können Ihren genauen Standort verfolgen (nur mobil) und in der unteren linken Ecke die für Sie relevanten Ebenen auswählen. Sie können mit diesem Tool auch Pins (Points of Interest) zur Karte hinzufügen oder bearbeiten und durch die Beantwortung verfügbarer Fragen zusätzliche Angaben machen.\n\nAlle von Ihnen vorgenommenen Änderungen werden automatisch in der globalen Datenbank von OpenStreetMap gespeichert und können von anderen frei weiterverwendet werden.", + "it": "In questa cartina puoi vedere e aggiornare idranti, stazioni dei pompieri, stazioni delle ambulanze ed estintori del tuo quartiere preferito.\n\nPuoi seguire la tua posizione precisa (solo su cellulare) e selezionare i livelli che ti interessano nell’angolo in basso a sinistra. Puoi anche usare questo strumento per aggiungere o modificare i PDI sulla mappa e fornire ulteriori dettagli rispondendo alle domande.\n\nTutte le modifiche che farai verranno automaticamente salvate nel database globale di OpenStreetMap e potranno essere riutilizzate liberamente da tutti.", + "hu": "Ezen a térképen tűzcsapokat, tűzoltóállomásokat, mentőállomásokat és tűzoltóállomásokat találhat és szerkeszthet kedvenc városrészeiben (vagy másutt).\n\nA bal alsó sarokban nyomon követheti pontos tartózkodási helyét (csak mobilon), és kiválaszthatja az Ön számára releváns rétegeket. Ezzel az eszközzel gombostűket (érdekes pontokat, POI-kat) is szerkeszthet vagy felrajzolhat a térképre, a rendelkezésre álló kérdések megválaszolásával pedig további részleteket adhat meg.\n\nAz Ön által elvégzett módosítások automatikusan elmentődnek az OpenStreetMap globális adatbázisában, és mások szabadon újra felhasználhatják azokat." }, - "language": [ - "en", - "ja", - "zh_Hant", - "ru", - "fr", - "it", - "nb_NO", - "de", - "id", - "eo" - ], "maintainer": "Erwin Olario", "icon": "./assets/themes/hailhydrant/logo.svg", "version": "0", @@ -45,954 +37,11 @@ "startLon": 121.6625, "startZoom": 6, "widenFactor": 3, - "socialImage": "", "layers": [ - { - "id": "hydrants", - "name": { - "en": "Map of hydrants", - "ja": "消火栓の地図", - "zh_Hant": "消防栓地圖", - "nb_NO": "Kart over brannhydranter", - "ru": "Карта пожарных гидрантов", - "fr": "Carte des bornes incendie", - "de": "Karte der Hydranten", - "it": "Mappa degli idranti" - }, - "minzoom": 14, - "source": { - "osmTags": { - "and": [ - "emergency=fire_hydrant" - ] - } - }, - "title": { - "render": { - "en": "Hydrant", - "ru": "Гидрант", - "ja": "消火栓", - "nb_NO": "Brannhydrant", - "fr": "Bornes incendie", - "de": "Hydrant", - "it": "Idrante" - } - }, - "description": { - "en": "Map layer to show fire hydrants.", - "ja": "消火栓を表示するマップレイヤ。", - "zh_Hant": "顯示消防栓的地圖圖層。", - "nb_NO": "Kartlag for å vise brannhydranter.", - "ru": "Слой карты, отображающий пожарные гидранты.", - "fr": "Couche des bornes incendie.", - "de": "Kartenebene zur Anzeige von Hydranten.", - "it": "Livello della mappa che mostra gli idranti antincendio." - }, - "tagRenderings": [ - { - "id": "hydrant-color", - "question": { - "en": "What color is the hydrant?", - "ja": "消火栓の色は何色ですか?", - "nb_NO": "Hvilken farge har brannhydranten?", - "ru": "Какого цвета гидрант?", - "fr": "Quelle est la couleur de la borne ?", - "de": "Welche Farbe hat der Hydrant?", - "it": "Qual è il colore dell’idrante?" - }, - "render": { - "en": "The hydrant color is {colour}", - "ja": "消火栓の色は{colour}です", - "nb_NO": "Brannhydranter er {colour}", - "ru": "Цвет гидранта {colour}", - "fr": "La borne est {colour}", - "de": "Der Hydrant hat die Farbe {colour}", - "it": "Il colore dell’idrante è {colour}" - }, - "freeform": { - "key": "colour" - }, - "mappings": [ - { - "if": { - "and": [ - "colour=" - ] - }, - "then": { - "en": "The hydrant color is unknown.", - "ja": "消火栓の色は不明です。", - "ru": "Цвет гидранта не определён.", - "fr": "La borne est de couleur inconnue.", - "de": "Die Farbe des Hydranten ist unbekannt.", - "it": "Il colore dell’idrante è sconosciuto." - }, - "hideInAnswer": true - }, - { - "if": { - "and": [ - "colour=yellow" - ] - }, - "then": { - "en": "The hydrant color is yellow.", - "ja": "消火栓の色は黄色です。", - "ru": "Гидрант жёлтого цвета.", - "fr": "La borne est jaune.", - "de": "Die Farbe des Hydranten ist gelb.", - "it": "Il colore dell’idrante è giallo." - } - }, - { - "if": { - "and": [ - "colour=red" - ] - }, - "then": { - "en": "The hydrant color is red.", - "ja": "消火栓の色は赤です。", - "it": "L'idrante è rosso.", - "ru": "Гидрант красного цвета.", - "fr": "La borne est rouge.", - "de": "Die Farbe des Hydranten ist rot." - } - } - ] - }, - { - "id": "hydrant-type", - "question": { - "en": "What type of hydrant is it?", - "ja": "どんな消火栓なんですか?", - "it": "Di che tipo è questo idrante?", - "ru": "К какому типу относится этот гидрант?", - "fr": "De quel type de borne s’agit-il ?", - "de": "Um welche Art von Hydrant handelt es sich?" - }, - "freeform": { - "key": "fire_hydrant:type" - }, - "render": { - "en": " Hydrant type: {fire_hydrant:type}", - "ru": " Тип гидранта: {fire_hydrant:type}", - "ja": " 消火栓のタイプ:{fire_hydrant:type}", - "it": " Tipo di idrante: {fire_hydrant:type}", - "fr": " Type de borne : {fire_hydrant:type}", - "de": " Hydranten-Typ: {fire_hydrant:type}" - }, - "mappings": [ - { - "if": { - "and": [ - "fire_hydrant:type=" - ] - }, - "then": { - "en": "The hydrant type is unknown.", - "ja": "消火栓の種類は不明です。", - "it": "Il tipo di idrante è sconosciuto.", - "ru": "Тип гидранта не определён.", - "fr": "La borne est de type inconnu.", - "de": "Der Typ des Hydranten ist unbekannt." - }, - "hideInAnswer": true - }, - { - "if": { - "and": [ - "fire_hydrant:type=pillar" - ] - }, - "then": { - "en": " Pillar type.", - "ja": " ピラー型。", - "fr": " Pilier.", - "de": " Säulenart.", - "it": " Soprasuolo." - } - }, - { - "if": { - "and": [ - "fire_hydrant:type=pipe" - ] - }, - "then": { - "en": " Pipe type.", - "ja": " パイプ型。", - "fr": " Tuyau.", - "de": " Rohrtyp.", - "it": " Tubo." - } - }, - { - "if": { - "and": [ - "fire_hydrant:type=wall" - ] - }, - "then": { - "en": " Wall type.", - "id": " Jenis dinding.", - "ru": " Тип стены.", - "ja": " 壁型。", - "fr": " Mural.", - "de": " Wandtyp.", - "it": " A muro." - } - }, - { - "if": { - "and": [ - "fire_hydrant:type=underground" - ] - }, - "then": { - "en": " Underground type.", - "ja": "地下式。", - "fr": " Enterré.", - "de": " Untergrundtyp.", - "it": " Sottosuolo." - } - } - ] - }, - { - "id": "hydrant-state", - "question": { - "en": "Is this hydrant still working?", - "ja": "消火栓のライフサイクルステータスを更新します。", - "fr": "Mettre à jour l’état de la borne.", - "de": "Aktualisieren Sie den Lebenszyklusstatus des Hydranten.", - "it": "Aggiorna lo stato di funzionamento dell’idrante." - }, - "mappings": [ - { - "if": { - "and": [ - "emergency=fire_hydrant" - ] - }, - "then": { - "en": "The hydrant is (fully or partially) working", - "ja": "消火栓は(完全にまたは部分的に)機能しています。", - "ru": "Гидрант (полностью или частично) в рабочем состоянии.", - "fr": "La borne est en état, ou partiellement en état, de fonctionner.", - "de": "Der Hydrant ist (ganz oder teilweise) in Betrieb.", - "it": "L’idrante è (parzialmente o completamente) funzionante." - } - }, - { - "if": { - "and": [ - "disused:emergency=fire_hydrant", - "emergency=" - ] - }, - "then": { - "en": "The hydrant is unavailable", - "ja": "消火栓は使用できません。", - "fr": "La borne est hors-service.", - "de": "Der Hydrant ist nicht verfügbar.", - "it": "L’idrante è fuori servizio." - } - }, - { - "if": { - "and": [ - "removed:emergency=fire_hydrant", - "emergency=" - ] - }, - "then": { - "en": "The hydrant has been removed", - "ja": "消火栓が撤去されました。", - "ru": "Гидрант демонтирован.", - "fr": "La borne a été retirée.", - "de": "Der Hydrant wurde entfernt.", - "it": "L’idrante è stato rimosso." - } - } - ] - }, - "images" - ], - "presets": [ - { - "tags": [ - "emergency=fire_hydrant" - ], - "title": { - "en": "Fire hydrant", - "ru": "Пожарный гидрант", - "ja": "消火栓", - "nb_NO": "Brannhydrant", - "fr": "Borne incendie", - "de": "Löschwasser-Hydrant", - "it": "Idrante antincendio" - }, - "description": { - "en": "A hydrant is a connection point where firefighters can tap water. It might be located underground.", - "ja": "消火栓は消防士が水を汲み上げることができる接続点です。地下にあるかもしれません。", - "fr": "Une borne incendie est un point où les pompiers peuvent s’alimenter en eau. Elle peut être enterrée.", - "de": "Ein Hydrant ist ein Anschlusspunkt, an dem die Feuerwehr Wasser zapfen kann. Er kann sich unterirdisch befinden.", - "it": "Un idrante è un punto di collegamento dove i pompieri possono estrarre acqua. Potrebbe trovarsi sottoterra." - } - } - ], - "mapRendering": [ - { - "icon": { - "render": "./assets/themes/hailhydrant/hydrant.svg" - }, - "iconSize": { - "render": "20,20,center" - }, - "location": [ - "point", - "centroid" - ] - }, - { - "color": { - "render": "#00f" - }, - "width": { - "render": "8" - } - } - ] - }, - { - "id": "extinguisher", - "name": { - "en": "Map of fire extinguishers.", - "ja": "消火器の地図です。", - "nb_NO": "Kart over brannhydranter", - "ru": "Карта огнетушителей.", - "fr": "Couche des extincteurs.", - "de": "Karte mit Feuerlöschern.", - "it": "Cartina degli estintori." - }, - "minzoom": 14, - "source": { - "osmTags": { - "and": [ - "emergency=fire_extinguisher" - ] - } - }, - "title": { - "render": { - "en": "Extinguishers", - "ru": "Огнетушители", - "ja": "消火器", - "nb_NO": "Brannslokkere", - "fr": "Exctincteurs", - "de": "Feuerlöscher", - "it": "Estintori" - } - }, - "description": { - "en": "Map layer to show fire hydrants.", - "ja": "消火栓を表示するマップレイヤ。", - "zh_Hant": "顯示消防栓的地圖圖層。", - "nb_NO": "Kartlag for å vise brannslokkere.", - "ru": "Слой карты, отображающий огнетушители.", - "fr": "Couche des lances à incendie.", - "de": "Kartenebene zur Anzeige von Hydranten.", - "it": "Livello della mappa che mostra gli idranti antincendio." - }, - "tagRenderings": [ - { - "id": "extinguisher-location", - "render": { - "en": "Location: {location}", - "ja": "場所:{location}", - "ru": "Местоположение: {location}", - "fr": "Emplacement : {location}", - "de": "Standort: {location}", - "eo": "Loko: {location}", - "it": "Posizione: {location}" - }, - "question": { - "en": "Where is it positioned?", - "ja": "どこにあるんですか?", - "ru": "Где это расположено?", - "fr": "Où est-elle positionnée ?", - "de": "Wo befindet er sich?", - "it": "Dove è posizionato?" - }, - "mappings": [ - { - "if": { - "and": [ - "location=indoor" - ] - }, - "then": { - "en": "Found indoors.", - "ja": "屋内にある。", - "ru": "Внутри.", - "fr": "Intérieur.", - "de": "Im Innenraum vorhanden.", - "it": "Si trova all’interno." - } - }, - { - "if": { - "and": [ - "location=outdoor" - ] - }, - "then": { - "en": "Found outdoors.", - "ja": "屋外にある。", - "ru": "Снаружи.", - "fr": "Extérieur.", - "de": "Im Außenraum vorhanden.", - "it": "Si trova all’esterno." - } - } - ], - "freeform": { - "key": "location" - } - }, - "images" - ], - "presets": [ - { - "tags": [ - "emergency=fire_extinguisher" - ], - "title": { - "en": "Fire extinguisher", - "ja": "消火器", - "nb_NO": "Brannslukker", - "ru": "Огнетушитель", - "fr": "Extincteur", - "de": "Feuerlöscher", - "it": "Estintore" - }, - "description": { - "en": "A fire extinguisher is a small, portable device used to stop a fire", - "ja": "消火器は、火災を止めるために使用される小型で携帯可能な装置である", - "ru": "Огнетушитель - небольшое переносное устройство для тушения огня", - "fr": "Un extincteur est un appareil portatif servant à éteindre un feu", - "de": "Ein Feuerlöscher ist ein kleines, tragbares Gerät, das dazu dient, ein Feuer zu löschen", - "it": "Un estintore è un dispositivo portatile di piccole dimensioni usato per spegnere un incendio" - } - } - ], - "mapRendering": [ - { - "icon": { - "render": "./assets/themes/hailhydrant/Twemoji12_1f9ef.svg" - }, - "iconSize": { - "render": "20,20,center" - }, - "location": [ - "point", - "centroid" - ] - } - ] - }, - { - "id": "fire_stations", - "name": { - "en": "Map of fire stations", - "ja": "消防署の地図", - "nb_NO": "Kart over brannstasjoner", - "it": "Mappa delle caserme dei vigili del fuoco", - "ru": "Карта пожарных частей", - "fr": "Couche des stations de pompiers", - "de": "Karte der Feuerwachen" - }, - "minzoom": 12, - "source": { - "osmTags": { - "and": [ - "amenity=fire_station" - ] - } - }, - "title": { - "render": { - "en": "Fire Station", - "ja": "消防署", - "ru": "Пожарная часть", - "nb_NO": "Brannstasjon", - "it": "Caserma dei vigili del fuoco", - "fr": "Station de pompiers", - "de": "Feuerwache" - } - }, - "description": { - "en": "Map layer to show fire stations.", - "ja": "消防署を表示するためのマップレイヤ。", - "it": "Livello che mostra le caserme dei vigili del fuoco.", - "ru": "Слой карты, отображающий пожарные части.", - "fr": "Couche des stations de pompiers.", - "de": "Kartenebene zur Darstellung von Feuerwachen." - }, - "tagRenderings": [ - { - "id": "station-name", - "freeform": { - "key": "name" - }, - "question": { - "en": "What is the name of this fire station?", - "ja": "この消防署の名前は何ですか?", - "ru": "Как называется эта пожарная часть?", - "it": "Come si chiama questa caserma dei vigili del fuoco?", - "fr": "Quel est le nom de la station ?", - "de": "Wie lautet der Name dieser Feuerwache?" - }, - "render": { - "en": "This station is called {name}.", - "ja": "このステーションの名前は{name}です。", - "it": "Questa caserma si chiama {name}.", - "ru": "Эта часть называется {name}.", - "fr": "Cette station s’appelle {name}.", - "nb_NO": "Denne stasjonen heter {name}." - } - }, - { - "id": "station-street", - "freeform": { - "key": "addr:street" - }, - "question": { - "en": " What is the street name where the station located?", - "ja": " 救急ステーションの所在地はどこですか?", - "it": " Qual è il nome della via in cui si trova la caserma?", - "ru": " По какому адресу расположена эта часть?", - "fr": " Quel est le nom de la rue dans lequel elle se situe ?" - }, - "render": { - "en": "This station is along a highway called {addr:street}.", - "ja": "{addr:street} 沿いにあります。", - "ru": "Часть расположена вдоль шоссе {addr:street}.", - "fr": "La station fait partie de la {addr:street}.", - "it": "La stazione si trova in una strada chiamata {addr:street}." - } - }, - { - "id": "station-place", - "question": { - "en": "Where is the station located? (e.g. name of neighborhood, villlage, or town)", - "ja": "このステーションの住所は?(例: 地区、村、または町の名称)", - "ru": "Где расположена часть? (напр., название населённого пункта)", - "fr": "Dans quelle localité la station est-elle située ?", - "it": "In che località si trova la stazione? (ad es. quartiere, paese o città)" - }, - "freeform": { - "key": "addr:place" - }, - "render": { - "en": "This station is found within {addr:place}.", - "ja": "このステーションは{addr:place}にあります。", - "ru": "Эта часть расположена в {addr:place}.", - "fr": "La station fait partie de {addr:place}.", - "it": "La stazione si trova a {addr:place}." - } - }, - { - "id": "station-agency", - "question": { - "en": "What agency operates this station?", - "ja": "このステーションを運営しているのはどこですか?", - "fr": "Quel est l’exploitant de la station ?", - "it": "Quale agenzia gestisce questa stazione?" - }, - "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}." - }, - "freeform": { - "key": "operator" - }, - "mappings": [ - { - "if": { - "and": [ - "operator=Bureau of Fire Protection", - "operator:type=government" - ] - }, - "then": { - "en": "Bureau of Fire Protection", - "ja": "消防局(消防庁)", - "fr": "Brigade de Protection du Feu", - "de": "Brandschutzbehörde", - "it": "Servizio antincendio governativo" - } - } - ] - }, - { - "id": "station-operator", - "question": { - "en": "How is the station operator classified?", - "ja": "ステーションの運営の分類は?", - "fr": "Quel est le type d’exploitant ?", - "it": "Com’è classificato il gestore di questa stazione?" - }, - "render": { - "en": "The operator is a(n) {operator:type} entity.", - "ja": "運営者は、{operator:type} です。", - "fr": "L’exploitant est de type {operator:type}.", - "it": "Il gestore è un ente {operator:type}." - }, - "freeform": { - "key": "operator:type" - }, - "mappings": [ - { - "if": { - "and": [ - "operator:type=government" - ] - }, - "then": { - "en": "The station is operated by the government.", - "ja": "ステーションは自治体が運営する。", - "fr": "La station est opérée par le gouvernement.", - "it": "Questa stazione è gestita dal governo.", - "nb_NO": "Stasjonen drives av myndighetene." - } - }, - { - "if": { - "and": [ - "operator:type=community" - ] - }, - "then": { - "en": "The station is operated by a community-based, or informal organization.", - "ja": "任意団体やコミュニティが運営しているステーションである。", - "fr": "La station est opérée par une organisation informelle.", - "it": "Questa stazione è gestita dalla comunità oppure un’associazione informale." - } - }, - { - "if": { - "and": [ - "operator:type=ngo" - ] - }, - "then": { - "en": "The station is operated by a formal group of volunteers.", - "ja": "公益団体が運営しているステーションである。", - "fr": "La station est opérée par un groupe officiel de bénévoles.", - "it": "Questa stazione è gestita da un gruppo di volontari ufficiale." - } - }, - { - "if": { - "and": [ - "operator:type=private" - ] - }, - "then": { - "en": "The station is privately operated.", - "ja": "個人が運営しているステーションである。", - "fr": "La station est opérée par un groupe privé.", - "it": "Questa stazione è gestita da privati." - } - } - ] - }, - "images" - ], - "presets": [ - { - "tags": [ - "amenity=fire_station" - ], - "title": { - "en": "Fire station", - "ja": "消防署", - "ru": "Пожарная часть", - "fr": "Caserne de pompiers", - "de": "Feuerwache", - "it": "Caserma dei vigili del fuoco", - "nb_NO": "Brannstasjon" - }, - "description": { - "en": "A fire station is a place where the fire trucks and firefighters are located when not in operation.", - "ja": "消防署は、運転していないときに消防車や消防士がいる場所です。", - "fr": "Une caserne de pompiers est un lieu où les pompiers et leur équipements sont situés en dehors des missions.", - "de": "Eine Feuerwache ist ein Ort, an dem die Feuerwehrfahrzeuge und die Feuerwehrleute untergebracht sind, wenn sie nicht im Einsatz sind.", - "it": "Una caserma dei pompieri è un luogo dove si trovano i mezzi antincendio e i pompieri tra una missione e l’altra." - } - } - ], - "mapRendering": [ - { - "icon": { - "render": "./assets/themes/hailhydrant/Twemoji12_1f692.svg" - }, - "iconSize": { - "render": "35,35,center" - }, - "location": [ - "point", - "centroid" - ] - }, - { - "color": { - "render": "#c22" - }, - "width": { - "render": "1" - } - } - ] - }, - { - "id": "ambulancestation", - "name": { - "en": "Map of ambulance stations", - "ja": "救急ステーションの地図", - "ru": "Карта станций скорой помощи", - "fr": "Couche des ambulances", - "de": "Karte der Rettungswachen", - "it": "Carta delle stazioni delle ambulanze" - }, - "minzoom": 12, - "source": { - "osmTags": { - "and": [ - "emergency=ambulance_station" - ] - } - }, - "title": { - "render": { - "en": "Ambulance Station", - "ru": "Станция скорой помощи", - "ja": "救急ステーション", - "fr": "Station d’ambulances", - "de": "Rettungswache", - "it": "Stazione delle ambulanze" - } - }, - "description": { - "en": "An ambulance station is an area for storage of ambulance vehicles, medical equipment, personal protective equipment, and other medical supplies.", - "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." - }, - "tagRenderings": [ - { - "id": "ambulance-name", - "freeform": { - "key": "name" - }, - "question": { - "en": "What is the name of this ambulance station?", - "ja": "この救急ステーションの名前は何ですか?", - "ru": "Как называется эта станция скорой помощи?", - "fr": "Quel est le nom de cette station ?", - "it": "Qual è il nome di questa stazione delle ambulanze?" - }, - "render": { - "en": "This station is called {name}.", - "ja": "このステーションの名前は{name}です。", - "ru": "Эта станция называется {name}.", - "fr": "Cette station s’appelle {name}.", - "it": "Questa stazione è chiamata {name}." - } - }, - { - "id": "ambulance-street", - "freeform": { - "key": "addr:street" - }, - "question": { - "en": " What is the street name where the station located?", - "ja": " 救急ステーションの所在地はどこですか?", - "ru": " По какому адресу расположена эта станция?", - "fr": " Quel est le nom de la rue où la station se situe ?", - "it": " Come si chiama la strada in cui si trova questa stazione?" - }, - "render": { - "en": "This station is along a highway called {addr:street}.", - "ja": "{addr:street} 沿いにあります。", - "ru": "Эта станция расположена вдоль шоссе {addr:street}.", - "fr": "La station fait partie de {addr:street}.", - "it": "Questa stazione si trova in {addr:street}." - } - }, - { - "id": "ambulance-place", - "question": { - "en": "Where is the station located? (e.g. name of neighborhood, villlage, or town)", - "ja": "このステーションの住所は?(例: 地区、村、または町の名称)", - "ru": "Где расположена станция? (напр., название населённого пункта)", - "fr": "Dans quelle localité la station est-elle située ?", - "it": "Dove si trova la stazione? (ad es. quartiere, paese o città)" - }, - "freeform": { - "key": "addr:place" - }, - "render": { - "en": "This station is found within {addr:place}.", - "ja": "このステーションは{addr:place}にあります。", - "fr": "La station fait partie de {addr:place}.", - "it": "La stazione si trova a {addr:place}." - } - }, - { - "id": "ambulance-agency", - "question": { - "en": "What agency operates this station?", - "ja": "このステーションを運営しているのはどこですか?", - "fr": "Quel est l’exploitant de la station ?", - "it": "Quale agenzia gestisce questa stazione?" - }, - "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}." - }, - "freeform": { - "key": "operator" - }, - "mappings": [] - }, - { - "id": "ambulance-operator-type", - "question": { - "en": "How is the station operator classified?", - "ja": "ステーションの運営の分類は?", - "fr": "Quel est le type d’exploitant ?", - "it": "Com’è classificato il gestore della stazione?" - }, - "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}." - }, - "freeform": { - "key": "operator:type" - }, - "mappings": [ - { - "if": { - "and": [ - "operator:type=government" - ] - }, - "then": { - "en": "The station is operated by the government.", - "ja": "ステーションは自治体が運営する。", - "fr": "La station est opérée par le gouvernement.", - "it": "La stazione è gestita dal governo." - } - }, - { - "if": { - "and": [ - "operator:type=community" - ] - }, - "then": { - "en": "The station is operated by a community-based, or informal organization.", - "ja": "任意団体やコミュニティが運営しているステーションである。", - "fr": "La station est opérée par une organisation informelle.", - "it": "La stazione è gestita dalla comunità o un’organizzazione non ufficiale." - } - }, - { - "if": { - "and": [ - "operator:type=ngo" - ] - }, - "then": { - "en": "The station is operated by a formal group of volunteers.", - "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." - } - }, - { - "if": { - "and": [ - "operator:type=private" - ] - }, - "then": { - "en": "The station is privately operated.", - "ja": "個人が運営しているステーションである。", - "fr": "La station est opérée par un groupe privé.", - "it": "La stazione è gestita da un privato." - } - } - ] - }, - "images" - ], - "presets": [ - { - "tags": [ - "emergency=ambulance_station" - ], - "title": { - "en": "Ambulance station", - "ru": "Станция скорой помощи", - "ja": "救急ステーション(消防署)", - "fr": "Station d’ambulances", - "de": "Rettungswache", - "it": "Stazione delle ambulanze" - }, - "description": { - "en": "Add an ambulance station to the map", - "ja": "救急ステーション(消防署)をマップに追加する", - "ru": "Добавить станцию скорой помощи на карту", - "fr": "Ajouter une station d’ambulances à la carte", - "de": "Eine Rettungsstation der Karte hinzufügen", - "it": "Aggiungi una stazione delle ambulanza alla mappa" - } - } - ], - "mapRendering": [ - { - "icon": { - "render": "./assets/themes/hailhydrant/Twemoji_1f691.svg" - }, - "iconSize": { - "render": "35,35,center" - }, - "location": [ - "point", - "centroid" - ] - }, - { - "color": { - "render": "#00f" - }, - "width": { - "render": "1" - } - } - ] - } + "hydrant", + "extinguisher", + "fire_station", + "ambulancestation" ], "defaultBackgroundId": "HDM_HOT" } \ No newline at end of file diff --git a/assets/themes/hailhydrant/hydrant_pillar.svg b/assets/themes/hailhydrant/hydrant_pillar.svg index 13d11f088b..d6a301fc13 100644 --- a/assets/themes/hailhydrant/hydrant_pillar.svg +++ b/assets/themes/hailhydrant/hydrant_pillar.svg @@ -1,7 +1,7 @@ - - - - - + + + + + + + \ No newline at end of file diff --git a/assets/themes/hailhydrant/hydrant_underground.svg b/assets/themes/hailhydrant/hydrant_underground.svg index 911cd42452..a71848681f 100644 --- a/assets/themes/hailhydrant/hydrant_underground.svg +++ b/assets/themes/hailhydrant/hydrant_underground.svg @@ -1,7 +1,7 @@ - - - - - + + + + + + + \ No newline at end of file diff --git a/assets/themes/hailhydrant/hydrant_unknown.svg b/assets/themes/hailhydrant/hydrant_unknown.svg index 0942dd2fdd..90eec0cc32 100644 --- a/assets/themes/hailhydrant/hydrant_unknown.svg +++ b/assets/themes/hailhydrant/hydrant_unknown.svg @@ -1,5 +1,7 @@ - - - - - + + + + + + + \ No newline at end of file diff --git a/assets/themes/hailhydrant/logo.svg b/assets/themes/hailhydrant/logo.svg index 0c153b65fe..d48c517da3 100644 --- a/assets/themes/hailhydrant/logo.svg +++ b/assets/themes/hailhydrant/logo.svg @@ -1,65 +1,150 @@ - - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/assets/themes/mapcomplete-changes/mapcomplete-changes.json b/assets/themes/mapcomplete-changes/mapcomplete-changes.json new file mode 100644 index 0000000000..8653e1842f --- /dev/null +++ b/assets/themes/mapcomplete-changes/mapcomplete-changes.json @@ -0,0 +1,407 @@ +{ + "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" + }, + "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=bicycle_rental", + "then": "./assets/themes/bicycle_rental/logo.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/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/logo.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/logo.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/themes/notes/logo.svg" + }, + { + "if": "theme=observation_towers", + "then": "./assets/layers/observation_tower/Tower_observation.svg" + }, + { + "if": "theme=openwindpowermap", + "then": "./assets/themes/openwindpowermap/logo.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/themes/toerisme_vlaanderen/logo.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", + "then": "./assets/layers/recycling/recycling-14.svg" + }, + { + "if": "theme=waste_assen", + "then": "./assets/layers/recycling/recycling-14.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..88efbbdd0e --- /dev/null +++ b/assets/themes/mapcomplete-changes/mapcomplete-changes.proto.json @@ -0,0 +1,173 @@ +{ + "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" + }, + "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 ee66c9fcfa..75f7d32728 100644 --- a/assets/themes/maps/logo.svg +++ b/assets/themes/maps/logo.svg @@ -1,18 +1,6 @@ - - - - - - image/svg+xml - - - - - - - + + + + + \ No newline at end of file diff --git a/assets/themes/maps/maps.json b/assets/themes/maps/maps.json index b2088fb699..b18aecf4f6 100644 --- a/assets/themes/maps/maps.json +++ b/assets/themes/maps/maps.json @@ -30,18 +30,6 @@ "de": "Auf dieser Karte findest du alle Karten, die OpenStreetMap kennt - typischerweise eine große Karte auf einer Informationstafel, die das Gebiet, die Stadt oder die Region zeigt, z.B. eine touristische Karte auf der Rückseite einer Plakatwand, eine Karte eines Naturschutzgebietes, eine Karte der Radwegenetze in der Region, ...)

Wenn eine Karte fehlt, können Sie diese leicht auf OpenStreetMap kartieren.", "it": "In questa carta puoi trovare tutte le mappe conosciute da OpenStreetMap (tipicamente una grossa mappa su di un pannello informativo che mostra l’area, la città o la regione, ad es. una mappa turistica dietro a un manifesto, la mappa di una riserva naturale, la mappa della rete ciclistica regionale, etc.)

Se manca una mappa, puoi aggiungerla facilmente a questa su OpenStreetMap." }, - "language": [ - "en", - "nl", - "fr", - "ja", - "zh_Hant", - "ru", - "de", - "eo", - "it", - "nb_NO" - ], "maintainer": "MapComplete", "icon": "./assets/themes/maps/logo.svg", "version": "0", @@ -49,7 +37,6 @@ "startLon": 0, "startZoom": 1, "widenFactor": 5, - "socialImage": "", "layers": [ "map" ] diff --git a/assets/themes/nature/logo.svg b/assets/themes/nature/logo.svg index 69d65365b2..6c653e19e5 100644 --- a/assets/themes/nature/logo.svg +++ b/assets/themes/nature/logo.svg @@ -1,64 +1,7 @@ - - - - - - - - image/svg+xml - - - - - - - - + + + + + + + \ No newline at end of file diff --git a/assets/themes/nature/nature.json b/assets/themes/nature/nature.json index edd29baf35..294d6be521 100644 --- a/assets/themes/nature/nature.json +++ b/assets/themes/nature/nature.json @@ -1,17 +1,17 @@ { "id": "nature", "title": { + "en": "Into nature", "nl": "De Natuur in" }, "shortDescription": { + "en": "A map for nature lovers, with interesting POI's", "nl": "Deze kaart bevat informatie voor natuurliefhebbers" }, "description": { + "en": "On this map, one can find interesting infromation for tourists and nature lovers, such as ", "nl": "Op deze kaart vind je informatie voor natuurliefhebbers, zoals info over het natuurgebied waar je inzit, vogelkijkhutten, informatieborden, ..." }, - "language": [ - "nl" - ], "maintainer": "", "icon": "./assets/themes/nature/logo.svg", "version": "0", @@ -19,12 +19,21 @@ "startLon": 3.22435, "startZoom": 12, "widenFactor": 2, - "socialImage": "", "layers": [ "drinking_water", "birdhide", - "map", - "information_board", - "nature_reserve" + "nature_reserve", + { + "builtin": [ + "map", + "information_board", + "bench", + "picnic_table", + "toilet" + ], + "override": { + "minzoom": 16 + } + } ] } \ No newline at end of file diff --git a/assets/themes/natuurpunt/bench.svg b/assets/themes/natuurpunt/bench.svg index c4696425fc..6875b8c1be 100644 --- a/assets/themes/natuurpunt/bench.svg +++ b/assets/themes/natuurpunt/bench.svg @@ -1,11 +1,37 @@ - - - - - - - - - - \ No newline at end of file + + + + + + + + diff --git a/assets/themes/natuurpunt/birdhide.svg b/assets/themes/natuurpunt/birdhide.svg index 6e3731fd0f..2f7c8b27ba 100644 --- a/assets/themes/natuurpunt/birdhide.svg +++ b/assets/themes/natuurpunt/birdhide.svg @@ -1,11 +1,37 @@ - - - - - - - - - - \ No newline at end of file + + + + + + + + diff --git a/assets/themes/natuurpunt/drips.svg b/assets/themes/natuurpunt/drips.svg index 32cc821a5e..66803ed515 100644 --- a/assets/themes/natuurpunt/drips.svg +++ b/assets/themes/natuurpunt/drips.svg @@ -1,11 +1,37 @@ - - - - - - - - - - \ No newline at end of file + + + + + + + + diff --git a/assets/themes/natuurpunt/fonts/Amaranth-Regular.otf b/assets/themes/natuurpunt/fonts/Amaranth-Regular.otf new file mode 100644 index 0000000000..22b38fd9bd Binary files /dev/null and b/assets/themes/natuurpunt/fonts/Amaranth-Regular.otf differ diff --git a/assets/themes/natuurpunt/fonts/OpenSans-Regular.ttf b/assets/themes/natuurpunt/fonts/OpenSans-Regular.ttf new file mode 100644 index 0000000000..db433349b7 Binary files /dev/null and b/assets/themes/natuurpunt/fonts/OpenSans-Regular.ttf differ diff --git a/assets/themes/natuurpunt/fonts/SIL Open Font License.txt b/assets/themes/natuurpunt/fonts/SIL Open Font License.txt new file mode 100644 index 0000000000..14c043d601 --- /dev/null +++ b/assets/themes/natuurpunt/fonts/SIL Open Font License.txt @@ -0,0 +1,41 @@ +This Font Software is licensed under the SIL Open Font License, Version 1.1. +This license is copied below, and is also available with a FAQ at: http://scripts.sil.org/OFL + +----------------------------------------------------------- +SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007 +----------------------------------------------------------- + +PREAMBLE +The goals of the Open Font License (OFL) are to stimulate worldwide development of collaborative font projects, to support the font creation efforts of academic and linguistic communities, and to provide a free and open framework in which fonts may be shared and improved in partnership with others. + +The OFL allows the licensed fonts to be used, studied, modified and redistributed freely as long as they are not sold by themselves. The fonts, including any derivative works, can be bundled, embedded, redistributed and/or sold with any software provided that any reserved names are not used by derivative works. The fonts and derivatives, however, cannot be released under any other type of license. The requirement for fonts to remain under this license does not apply to any document created using the fonts or their derivatives. + +DEFINITIONS +"Font Software" refers to the set of files released by the Copyright Holder(s) under this license and clearly marked as such. This may include source files, build scripts and documentation. + +"Reserved Font Name" refers to any names specified as such after the copyright statement(s). + +"Original Version" refers to the collection of Font Software components as distributed by the Copyright Holder(s). + +"Modified Version" refers to any derivative made by adding to, deleting, or substituting -- in part or in whole -- any of the components of the Original Version, by changing formats or by porting the Font Software to a new environment. + +"Author" refers to any designer, engineer, programmer, technical writer or other person who contributed to the Font Software. + +PERMISSION & CONDITIONS +Permission is hereby granted, free of charge, to any person obtaining a copy of the Font Software, to use, study, copy, merge, embed, modify, redistribute, and sell modified and unmodified copies of the Font Software, subject to the following conditions: + +1) Neither the Font Software nor any of its individual components, in Original or Modified Versions, may be sold by itself. + +2) Original or Modified Versions of the Font Software may be bundled, redistributed and/or sold with any software, provided that each copy contains the above copyright notice and this license. These can be included either as stand-alone text files, human-readable headers or in the appropriate machine-readable metadata fields within text or binary files as long as those fields can be easily viewed by the user. + +3) No Modified Version of the Font Software may use the Reserved Font Name(s) unless explicit written permission is granted by the corresponding Copyright Holder. This restriction only applies to the primary font name as presented to the users. + +4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font Software shall not be used to promote, endorse or advertise any Modified Version, except to acknowledge the contribution(s) of the Copyright Holder(s) and the Author(s) or with their explicit written permission. + +5) The Font Software, modified or unmodified, in part or in whole, must be distributed entirely under this license, and must not be distributed under any other license. The requirement for fonts to remain under this license does not apply to any document created using the Font Software. + +TERMINATION +This license becomes null and void if any of the above conditions are not met. + +DISCLAIMER +THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM OTHER DEALINGS IN THE FONT SOFTWARE. \ No newline at end of file diff --git a/assets/themes/natuurpunt/fonts/license_info.json b/assets/themes/natuurpunt/fonts/license_info.json new file mode 100644 index 0000000000..38fcbd7250 --- /dev/null +++ b/assets/themes/natuurpunt/fonts/license_info.json @@ -0,0 +1,24 @@ +[ + { + "path": "Amaranth-Regular.otf", + "license": "SIL Open Font License", + "authors": [ + "Gesine Todt" + ], + "sources": [ + "https://allfont.net/download/amaranth-regular/", + "http://www.gesine-todt.de/" + ] + }, + { + "path": "OpenSans-Regular.ttf", + "license": "Apache License 2.0", + "authors": [ + "Ascender" + ], + "sources": [ + "https://allfont.net/download/open-sans/", + "http://www.ascendercorp.com/typedesigners.html " + ] + } +] \ No newline at end of file diff --git a/assets/themes/natuurpunt/information.svg b/assets/themes/natuurpunt/information.svg index 11fbbae1ae..a0b14a9814 100644 --- a/assets/themes/natuurpunt/information.svg +++ b/assets/themes/natuurpunt/information.svg @@ -1,11 +1,45 @@ - - - - - - - - + + + + + + + + + - \ No newline at end of file + + diff --git a/assets/themes/natuurpunt/information_board.svg b/assets/themes/natuurpunt/information_board.svg index 6dbb5d11e9..8d2d3c0d2e 100644 --- a/assets/themes/natuurpunt/information_board.svg +++ b/assets/themes/natuurpunt/information_board.svg @@ -1,14 +1,42 @@ - - - - - - - - - - - - - \ No newline at end of file + + + + + + + + + diff --git a/assets/themes/natuurpunt/nature_reserve.svg b/assets/themes/natuurpunt/nature_reserve.svg index 520ae268b8..96c2d26ebe 100644 --- a/assets/themes/natuurpunt/nature_reserve.svg +++ b/assets/themes/natuurpunt/nature_reserve.svg @@ -1,11 +1,37 @@ - - - - - - - - - - \ No newline at end of file + + + + + + + + diff --git a/assets/themes/natuurpunt/natuurpunt.css b/assets/themes/natuurpunt/natuurpunt.css index e64cd75be7..1839fd8962 100644 --- a/assets/themes/natuurpunt/natuurpunt.css +++ b/assets/themes/natuurpunt/natuurpunt.css @@ -1,9 +1,11 @@ :root { --subtle-detail-color: #007759; --subtle-detail-color-contrast: #ffffff; - --subtle-detail-color-light-contrast: lightgrey; + --subtle-detail-color-light-contrast: white; - --catch-detail-color: #0fff00; + --unsubtle-detail-color: #b34f26; + --unsubtle-detail-color-contrast: #ffffff; + --catch-detail-color: #FE6F32; --catch-detail-color-contrast: #ffffff; --alert-color: #fee4d1; --background-color: white; @@ -14,4 +16,97 @@ --return-to-the-map-height: 2em; --image-carousel-height: 350px; +} + +@font-face{ + font-family:"Open Sans Regular"; + src:url("./assets/themes/natuurpunt/fonts/OpenSans-Regular.ttf"); +} + +@font-face{ + font-family:"Amaranth"; + src:url("./assets/themes/natuurpunt/fonts/Amaranth-Regular.otf"); +} + +body { + --non-active-tab-svg: #556c5c; + font-family: 'Open Sans Regular', sans-serif; +} + +.layer-toggle .alert { + background: unset !important; + padding: 0 !important; +} + +.layer-toggle svg path { + fill: var(--foreground-color) !important; +} + +.layer-toggle .alert::before { + content: " - " +} + + +h1, h2, h3, h4 { + font-family: 'Amaranth', sans-serif; +} + +.tab-non-active svg { + fill: white !important; + stroke: white !important; +} + +.tab-non-active svg path { + fill: white !important; + stroke: white !important; +} + +.btn-secondary { + background-color: var(--unsubtle-detail-color); +} + +.btn-secondary:hover { + background-color: var(--catch-detail-color); +} + +.layer-toggle { + border-top: 2px solid var(--foreground-color); + margin-top: 0.25rem; +} + +.md\:rounded-xl { + border-radius: unset !important; +} + +.rounded-lg { + border-radius: unset !important; +} + +.rounded-3xl { + border-radius: unset !important; +} + +.layer-toggle { + /* The checkbox that toggles a single layer */ + border-top: unset; + margin-top: unset; +} + +.filter-panel { + /* The panel for a single layer, containing both the toggle and the filters (if any) */ + padding-top: 0.5rem; + padding-bottom: 0.5rem; + border-top: 2px solid var(--foreground-color); + display: block; + border-bottom: unset; + margin-bottom: unset; +} + +.layer-filters { + /* If needed, the panel which contains the extra filters for a layer */ +} + +.first-filter-panel { + /* Additional class on the first layer filter */ + border-top: unset !important; } \ No newline at end of file diff --git a/assets/themes/natuurpunt/natuurpunt.json b/assets/themes/natuurpunt/natuurpunt.json index c1331540e9..3231ecbabd 100644 --- a/assets/themes/natuurpunt/natuurpunt.json +++ b/assets/themes/natuurpunt/natuurpunt.json @@ -2,9 +2,9 @@ "id": "natuurpunt", "customCss": "./assets/themes/natuurpunt/natuurpunt.css", "title": { - "nl": "Natuurgebieden", - "en": "Nature Reserves", - "de": "Naturschutzgebiete", + "nl": "De Natuurpunt-kaart", + "en": "The map of Natuurpunt", + "de": "Die Karte von Natuurpunt", "nb_NO": "Naturreservater", "it": "Riserve naturali" }, @@ -18,15 +18,9 @@ "nl": "Op deze kaart vind je alle natuurgebieden die Natuurpunt ter beschikking stelt", "en": "On this map you can find all the nature reserves that Natuurpunt offers ", "it": "In questa cartina è possibile trovare tutte le riserve naturali offerte da Natuupunt. ", - "de": "Auf dieser Karte können Sie alle Naturschutzgebiete von Natuurpunt finden " + "de": "Auf dieser Karte können Sie alle Naturschutzgebiete von Natuurpunt finden ", + "zh_Hant": "在這張地圖上您可以找到 Natuurpunt 提供的所有自然保護區 " }, - "language": [ - "nl", - "en", - "de", - "it", - "nb_NO" - ], "mustHaveLanguage": [ "nl" ], @@ -36,11 +30,20 @@ "startLat": 51.20875, "startLon": 3.22435, "startZoom": 15, + "lockLocation": [ + [ + 2.1, + 50.4 + ], + [ + 6.4, + 51.54 + ] + ], "widenFactor": 2, - "socialImage": "", "defaultBackgroundId": "CartoDB.Positron", "enablePdfDownload": true, - "enableDownload": true, + "enableDownload": false, "hideFromOverview": true, "clustering": { "maxZoom": 0, @@ -58,7 +61,7 @@ "operator~.*[nN]atuurpunt.*" ] }, - "geoJson": "https://pietervdvn.github.io/natuurpunt_cache/natuurpunt_{layer}_{z}_{x}_{y}.geojson", + "geoJson": "https://raw.githubusercontent.com/pietervdvn/MapComplete-data/main/natuurpunt_cache/natuurpunt_{layer}_{z}_{x}_{y}.geojson", "geoJsonZoomLevel": 12, "isOsmCache": true }, @@ -70,7 +73,11 @@ "render": "circle:#FE6F32;./assets/themes/natuurpunt/nature_reserve.svg" } } - ] + ], + "=filter": { + "sameAs": "nature_reserve_centerpoints" + }, + "=presets": [] } }, { @@ -78,13 +85,14 @@ "builtin": "nature_reserve", "wayHandling": 1, "override": { + "id": "nature_reserve_centerpoints", "source": { "osmTags": { "+and": [ "operator~.*[nN]atuurpunt.*" ] }, - "geoJson": "https://pietervdvn.github.io/natuurpunt_cache/natuurpunt_nature_reserve_points.geojson", + "geoJson": "https://raw.githubusercontent.com/pietervdvn/MapComplete-data/main/natuurpunt_cache/natuurpunt_nature_reserve_points.geojson", "isOsmCache": "duplicate" }, "minzoom": 1, @@ -95,6 +103,11 @@ }, "presets": [] } + ], + "presets": [ + { + "tags+": "operator=Natuurpunt" + } ] } }, @@ -107,7 +120,7 @@ "operator~.*[nN]atuurpunt.*" ] }, - "geoJson": "https://pietervdvn.github.io/natuurpunt_cache/natuurpunt_{layer}_points.geojson", + "geoJson": "https://raw.githubusercontent.com/pietervdvn/MapComplete-data/main/natuurpunt_cache/natuurpunt_{layer}_points.geojson", "isOsmCache": true }, "minzoom": 1, @@ -129,11 +142,11 @@ "operator~.*[nN]atuurpunt.*" ] }, - "geoJson": "https://pietervdvn.github.io/natuurpunt_cache/natuurpunt_{layer}_{z}_{x}_{y}.geojson", + "geoJson": "https://raw.githubusercontent.com/pietervdvn/MapComplete-data/main/natuurpunt_cache/natuurpunt_{layer}_{z}_{x}_{y}.geojson", "geoJsonZoomLevel": 12, "isOsmCache": true }, - "minzoom": 10, + "minzoom": 14, "mapRendering": [ { "icon": { @@ -156,9 +169,9 @@ { "builtin": "toilet", "override": { - "minzoom": "15", + "minzoom": "14", "source": { - "geoJson": "https://pietervdvn.github.io/natuurpunt_cache/natuurpunt_{layer}_{z}_{x}_{y}.geojson", + "geoJson": "https://raw.githubusercontent.com/pietervdvn/MapComplete-data/main/natuurpunt_cache/natuurpunt_{layer}_{z}_{x}_{y}.geojson", "geoJsonZoomLevel": 12, "isOsmCache": true }, @@ -184,11 +197,24 @@ { "builtin": "birdhide", "override": { - "minzoom": 12, + "minzoom": 14, + "presets": [ + { + "tags+": "operator=Natuurpunt" + }, + { + "tags+": "operator=Natuurpunt" + } + ], "source": { - "geoJson": "https://pietervdvn.github.io/natuurpunt_cache/natuurpunt_{layer}_{z}_{x}_{y}.geojson", + "geoJson": "https://raw.githubusercontent.com/pietervdvn/MapComplete-data/main/natuurpunt_cache/natuurpunt_{layer}_{z}_{x}_{y}.geojson", "geoJsonZoomLevel": 12, - "isOsmCache": true + "isOsmCache": true, + "osmTags": { + "+and": [ + "operator~.*[nN]atuurpunt.*" + ] + } }, "mapRendering": [ { @@ -203,9 +229,9 @@ { "builtin": "picnic_table", "override": { - "minzoom": "16", + "minzoom": "14", "source": { - "geoJson": "https://pietervdvn.github.io/natuurpunt_cache/natuurpunt_{layer}_{z}_{x}_{y}.geojson", + "geoJson": "https://raw.githubusercontent.com/pietervdvn/MapComplete-data/main/natuurpunt_cache/natuurpunt_{layer}_{z}_{x}_{y}.geojson", "geoJsonZoomLevel": 12, "isOsmCache": true }, @@ -221,9 +247,9 @@ { "builtin": "drinking_water", "override": { - "minzoom": "16", + "minzoom": "14", "source": { - "geoJson": "https://pietervdvn.github.io/natuurpunt_cache/natuurpunt_{layer}_{z}_{x}_{y}.geojson", + "geoJson": "https://raw.githubusercontent.com/pietervdvn/MapComplete-data/main/natuurpunt_cache/natuurpunt_{layer}_{z}_{x}_{y}.geojson", "geoJsonZoomLevel": 12, "isOsmCache": true }, @@ -239,7 +265,7 @@ { "builtin": "parking", "override": { - "minzoom": "16", + "minzoom": "14", "mapRendering": [ { "icon": { @@ -266,9 +292,9 @@ { "builtin": "information_board", "override": { - "minzoom": "16", + "minzoom": "14", "source": { - "geoJson": "https://pietervdvn.github.io/natuurpunt_cache/natuurpunt_{layer}_{z}_{x}_{y}.geojson", + "geoJson": "https://raw.githubusercontent.com/pietervdvn/MapComplete-data/main/natuurpunt_cache/natuurpunt_{layer}_{z}_{x}_{y}.geojson", "geoJsonZoomLevel": 12, "isOsmCache": true }, @@ -284,9 +310,9 @@ { "builtin": "bench", "override": { - "minzoom": "18", + "minzoom": "14", "source": { - "geoJson": "https://pietervdvn.github.io/natuurpunt_cache/natuurpunt_{layer}_{z}_{x}_{y}.geojson", + "geoJson": "https://raw.githubusercontent.com/pietervdvn/MapComplete-data/main/natuurpunt_cache/natuurpunt_{layer}_{z}_{x}_{y}.geojson", "geoJsonZoomLevel": 12, "isOsmCache": true }, @@ -302,9 +328,9 @@ { "builtin": "watermill", "override": { - "minzoom": "18", + "minzoom": "14", "source": { - "geoJson": "https://pietervdvn.github.io/natuurpunt_cache/natuurpunt_{layer}_{z}_{x}_{y}.geojson", + "geoJson": "https://raw.githubusercontent.com/pietervdvn/MapComplete-data/main/natuurpunt_cache/natuurpunt_{layer}_{z}_{x}_{y}.geojson", "geoJsonZoomLevel": 12, "isOsmCache": true }, @@ -316,7 +342,17 @@ } ] } + }, + { + "builtin": "gps_track", + "override": { + "name": null + } } ], - "enableIframePopout": false + "enableMoreQuests": false, + "enableShareScreen": false, + "enableIframePopout": false, + "enableBackgroundLayerSelection": false, + "enableNoteImports": false } \ No newline at end of file diff --git a/assets/themes/natuurpunt/parking.svg b/assets/themes/natuurpunt/parking.svg index 2be748c60d..4ae89bcc14 100644 --- a/assets/themes/natuurpunt/parking.svg +++ b/assets/themes/natuurpunt/parking.svg @@ -1,11 +1,45 @@ - - - - - - - - + + + + + + + + + - \ No newline at end of file + + diff --git a/assets/themes/natuurpunt/parkingbike.svg b/assets/themes/natuurpunt/parkingbike.svg index 8cd5437e2f..418e829fac 100644 --- a/assets/themes/natuurpunt/parkingbike.svg +++ b/assets/themes/natuurpunt/parkingbike.svg @@ -1,23 +1,76 @@ - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + - \ No newline at end of file + + diff --git a/assets/themes/natuurpunt/parkingmotor.svg b/assets/themes/natuurpunt/parkingmotor.svg index 4034b6609a..8262c23da8 100644 --- a/assets/themes/natuurpunt/parkingmotor.svg +++ b/assets/themes/natuurpunt/parkingmotor.svg @@ -1,13 +1,50 @@ - - - - - - - - - + + + + + + + + + + - \ No newline at end of file + + diff --git a/assets/themes/natuurpunt/parkingwheels.svg b/assets/themes/natuurpunt/parkingwheels.svg index 35f9819967..0b9346c6b7 100644 --- a/assets/themes/natuurpunt/parkingwheels.svg +++ b/assets/themes/natuurpunt/parkingwheels.svg @@ -1,13 +1,49 @@ - - - - - - - - - + + + + + + + + + + - \ No newline at end of file + + diff --git a/assets/themes/natuurpunt/picnic_table.svg b/assets/themes/natuurpunt/picnic_table.svg index 916e92fb08..3b890c0261 100644 --- a/assets/themes/natuurpunt/picnic_table.svg +++ b/assets/themes/natuurpunt/picnic_table.svg @@ -1,13 +1,63 @@ - - - - - - - - - - - + + + + + + + + + + + + - \ No newline at end of file + + diff --git a/assets/themes/natuurpunt/pushchair.svg b/assets/themes/natuurpunt/pushchair.svg index 7fda0cf25c..aad1d3df52 100644 --- a/assets/themes/natuurpunt/pushchair.svg +++ b/assets/themes/natuurpunt/pushchair.svg @@ -1,11 +1,37 @@ - - - - - - - - - - \ No newline at end of file + + + + + + + + diff --git a/assets/themes/natuurpunt/toilets.svg b/assets/themes/natuurpunt/toilets.svg index dc2aef72a4..f4acb2b6cc 100644 --- a/assets/themes/natuurpunt/toilets.svg +++ b/assets/themes/natuurpunt/toilets.svg @@ -1,13 +1,41 @@ - - - - - - - - - - - \ No newline at end of file + + + + + + + + + diff --git a/assets/themes/natuurpunt/trail.svg b/assets/themes/natuurpunt/trail.svg index 3fcd54ab24..e145a2758f 100644 --- a/assets/themes/natuurpunt/trail.svg +++ b/assets/themes/natuurpunt/trail.svg @@ -1,13 +1,53 @@ - - - - - - - - - - + + + + + + + + + + + + diff --git a/assets/themes/natuurpunt/urinal.svg b/assets/themes/natuurpunt/urinal.svg index 30cd583e8d..ae8347bc23 100644 --- a/assets/themes/natuurpunt/urinal.svg +++ b/assets/themes/natuurpunt/urinal.svg @@ -1,19 +1,37 @@ - - - - - - - - - - - - - - - - - - \ No newline at end of file + + + + + + + + diff --git a/assets/themes/natuurpunt/walk_wheelchair.svg b/assets/themes/natuurpunt/walk_wheelchair.svg index 3fdd473072..b86a4f2edd 100644 --- a/assets/themes/natuurpunt/walk_wheelchair.svg +++ b/assets/themes/natuurpunt/walk_wheelchair.svg @@ -1,18 +1,65 @@ - - - - - - - - - - - - - + + + + + + + + + + + + + + - \ No newline at end of file + + diff --git a/assets/themes/natuurpunt/watermill.svg b/assets/themes/natuurpunt/watermill.svg index c34314ddd9..856d9c6dc7 100644 --- a/assets/themes/natuurpunt/watermill.svg +++ b/assets/themes/natuurpunt/watermill.svg @@ -1,11 +1,45 @@ - - - - - - - - + + + + + + + + + - \ No newline at end of file + + diff --git a/assets/themes/natuurpunt/wheelchair.svg b/assets/themes/natuurpunt/wheelchair.svg index 6bcca7e49c..6dba61ace2 100644 --- a/assets/themes/natuurpunt/wheelchair.svg +++ b/assets/themes/natuurpunt/wheelchair.svg @@ -1,15 +1,53 @@ - - - - - - - - - - + + + + + + + + + + + - \ No newline at end of file + + diff --git a/assets/themes/notes/license_info.json b/assets/themes/notes/license_info.json new file mode 100644 index 0000000000..d186e73a24 --- /dev/null +++ b/assets/themes/notes/license_info.json @@ -0,0 +1,10 @@ +[ + { + "path": "logo.svg", + "license": "CC0", + "authors": [ + "Pieter Vander Vennet" + ], + "sources": [] + } +] \ No newline at end of file diff --git a/assets/themes/notes/logo.svg b/assets/themes/notes/logo.svg new file mode 100644 index 0000000000..8c7ab6947d --- /dev/null +++ b/assets/themes/notes/logo.svg @@ -0,0 +1,48 @@ + + + + + + + + + diff --git a/assets/themes/notes/notes.json b/assets/themes/notes/notes.json new file mode 100644 index 0000000000..a91f9eab90 --- /dev/null +++ b/assets/themes/notes/notes.json @@ -0,0 +1,22 @@ +{ + "id": "notes", + "maintainer": "MapComplete", + "startLat": 0, + "startLon": 0, + "startZoom": 0, + "title": { + "en": "Notes on OpenStreetMap", + "hu": "Jegyzetek az OpenStreetMapen" + }, + "version": "0.1", + "description": { + "en": "A note is a pin on the map with some text to indicate something wrong.

Make sure to checkout the filter view to search for users and text.", + "hu": "A jegyzet egy gombostű a térképen egy szöveggel, amely azt jelzi, hogy valami nem stimmel.

Felhasználók vagy szövegek kereséséhez nézd meg a szűrő nézetet." + }, + "icon": "./assets/themes/notes/logo.svg", + "clustering": false, + "enableDownload": true, + "layers": [ + "note" + ] +} \ No newline at end of file diff --git a/assets/themes/observation_towers/observation_towers.json b/assets/themes/observation_towers/observation_towers.json index 4dfe1d14ce..f6bf823f9d 100644 --- a/assets/themes/observation_towers/observation_towers.json +++ b/assets/themes/observation_towers/observation_towers.json @@ -4,26 +4,27 @@ "en": "Observation towers", "nl": "Uitkijktorens", "de": "Aussichtstürme", - "it": "Torri di osservazione" + "it": "Torri di osservazione", + "ru": "Смотровые башни", + "zh_Hant": "觀景塔", + "hu": "Kilátótornyok" }, "shortDescription": { "en": "Publicly accessible towers to enjoy the view", "nl": "Publieke uitkijktorens om van het panorama te genieten", "de": "Öffentlich zugänglicher Aussichtsturm", - "it": "Torri pubblicamente accessibili per godere della vista" + "it": "Torri pubblicamente accessibili per godere della vista", + "zh_Hant": "開發可及能觀景的高塔", + "hu": "Nyilvános tornyok, hogy gyönyörködhessünk a kilátásban" }, "description": { "nl": "Publieke uitkijktorens om van het panorama te genieten", "en": "Publicly accessible towers to enjoy the view", "de": "Öffentlich zugänglicher Aussichtsturm", - "it": "Torri pubblicamente accessibili per godere della vista" + "it": "Torri pubblicamente accessibili per godere della vista", + "zh_Hant": "開放可及能觀景的高塔", + "hu": "Nyilvános tornyok, hogy gyönyörködhessünk a kilátásban" }, - "language": [ - "en", - "nl", - "de", - "it" - ], "maintainer": "", "icon": "./assets/layers/observation_tower/Tower_observation.svg", "version": "0", @@ -31,7 +32,6 @@ "startLon": 0, "startZoom": 1, "widenFactor": 5, - "socialImage": "", "layers": [ "observation_tower" ] diff --git a/assets/themes/openwindpowermap/license_info.json b/assets/themes/openwindpowermap/license_info.json index d331532473..d7986e80bd 100644 --- a/assets/themes/openwindpowermap/license_info.json +++ b/assets/themes/openwindpowermap/license_info.json @@ -1,4 +1,14 @@ [ + { + "path": "logo.svg", + "license": "CC0", + "authors": [ + "Iconathon" + ], + "sources": [ + "https://commons.wikimedia.org/wiki/File:Wind_Turbine_(2076)_-_The_Noun_Project.svg" + ] + }, { "path": "wind_turbine.svg", "license": "CC0", diff --git a/assets/themes/openwindpowermap/logo.svg b/assets/themes/openwindpowermap/logo.svg new file mode 100644 index 0000000000..5ed9f39b85 --- /dev/null +++ b/assets/themes/openwindpowermap/logo.svg @@ -0,0 +1,61 @@ + + + + + + + + + + + + + diff --git a/assets/themes/openwindpowermap/openwindpowermap.json b/assets/themes/openwindpowermap/openwindpowermap.json index 48d78c89bf..7c1d079784 100644 --- a/assets/themes/openwindpowermap/openwindpowermap.json +++ b/assets/themes/openwindpowermap/openwindpowermap.json @@ -3,26 +3,23 @@ "title": { "en": "OpenWindPowerMap", "fr": "OpenWindPowerMap", - "de": "OpenWindPowerMap", - "it": "OpenWindPowerMap" + "de": "Freie Windenergie-Karte", + "it": "OpenWindPowerMap", + "ru": "Открытая карта ветроэнергетики", + "zh_Hant": "開放風力地圖", + "id": "OpenWindPowerMap", + "hu": "OpenWindPowerMap" }, "maintainer": "Seppe Santens", - "icon": "./assets/themes/openwindpowermap/wind_turbine.svg", + "icon": "./assets/themes/openwindpowermap/logo.svg", "description": { "en": "A map for showing and editing wind turbines.", "fr": "Une carte indiquant les éoliennes et permettant leur édition.", "de": "Eine Karte zum Anzeigen und Bearbeiten von Windkraftanlagen.", - "it": "Una cartina per la visione e la modifica delle turbine eoliche." + "it": "Una cartina per la visione e la modifica delle turbine eoliche.", + "zh_Hant": "顯示與編輯風機的地圖。", + "hu": "Szélerőművek megjelenítésére és szerkesztésére szolgáló térkép." }, - "language": [ - "en", - "fr", - "de", - "it", - "nl", - "eo", - "nb_NO" - ], "version": "2021-06-18", "startLat": 50.52, "startLon": 4.643, @@ -38,7 +35,9 @@ "nl": "windturbine", "fr": "Éolienne", "de": "Windrad", - "it": "pala eolica" + "it": "pala eolica", + "zh_Hant": "風機", + "hu": "Szélerőmű" }, "source": { "osmTags": "generator:source=wind" @@ -50,7 +49,10 @@ "nl": "windturbine", "fr": "éolienne", "de": "Windrad", - "it": "pala eolica" + "it": "pala eolica", + "zh_Hant": "風機", + "id": "turbin angin", + "hu": "szélerőmű" }, "mappings": [ { @@ -59,7 +61,10 @@ "en": "{name}", "fr": "{name}", "eo": "{name}", - "it": "{name}" + "it": "{name}", + "ru": "{name}", + "zh_Hant": "{name}", + "id": "{name}" } } ] @@ -70,12 +75,18 @@ "render": { "en": "The power output of this wind turbine is {generator:output:electricity}.", "fr": "La puissance générée par cette éolienne est de {generator:output:electricity}.", - "it": "La potenza generata da questa pala eolica è {generator:output:electricity}." + "it": "La potenza generata da questa pala eolica è {generator:output:electricity}.", + "zh_Hant": "這個風機的電力輸出是 {generator:output:electricity}。", + "id": "Output daya dari turbin angin ini adalah {generator:output:electricity}.", + "hu": "A szélerőmű teljesítménye: {generator:output:electricity}." }, "question": { "en": "What is the power output of this wind turbine? (e.g. 2.3 MW)", "fr": "Quel est la puissance générée par cette éolienne ?", - "it": "Quant’è la potenza generata da questa pala eolica? (ad es. 2.3 MW)" + "it": "Quant’è la potenza generata da questa pala eolica? (ad es. 2.3 MW)", + "zh_Hant": "這個風機的電力輸出是多少?(例如 2.3 MW)", + "id": "Berapa output daya dari turbin angin ini? (misalnya 2,3 MW)", + "hu": "Mekkora a teljesítménye ennek a szélturbinának? (pl. 2.3 MW)" }, "freeform": { "key": "generator:output:electricity", @@ -87,12 +98,17 @@ "render": { "en": "This wind turbine is operated by {operator}.", "fr": "Cette éolienne est opérée par {operator}.", - "it": "Questa pala eolica è gestita da {operator}." + "it": "Questa pala eolica è gestita da {operator}.", + "zh_Hant": "這個風機營業商是 {operator}。", + "id": "Turbin angin ini dioperasikan oleh {operator}.", + "hu": "Ennek a szélerőműnek az üzemeltetője: {operator}." }, "question": { "en": "Who operates this wind turbine?", "fr": "Qui est l’exploitant de cette éolienne ?", - "it": "Chi gestisce questa pala eolica?" + "it": "Chi gestisce questa pala eolica?", + "zh_Hant": "這個風機營業商是?", + "hu": "Ki üzemelteti ezt a szélturbinát?" }, "freeform": { "key": "operator" @@ -103,12 +119,16 @@ "render": { "en": "The total height (including rotor radius) of this wind turbine is {height} metres.", "fr": "La hauteur totale, incluant les pales, est de {height} mètres.", - "it": "L’altezza totale (raggio del rotore incluso) di questa pala eolica è di {height} metri." + "it": "L’altezza totale (raggio del rotore incluso) di questa pala eolica è di {height} metri.", + "zh_Hant": "這風機的總高度 (包括風葉直徑) 是 {height} 公尺。", + "hu": "A szélerőmű teljes (rotor sugarával együtt számított) magassága: {height} méter." }, "question": { "en": "What is the total height of this wind turbine (including rotor radius), in metres?", "fr": "Quelle est la hauteur totale de l’éolienne en mètres, pales incluses ?", - "it": "Qual è l’altezza (in metri e raggio del rotore incluso) di questa pala eolica?" + "it": "Qual è l’altezza (in metri e raggio del rotore incluso) di questa pala eolica?", + "zh_Hant": "這個風機的總高度是多少 (包括風葉大小) 公尺?", + "hu": "Hány méter a szélerőmű teljes magassága (a rotor sugarával együtt)?" }, "freeform": { "key": "height", @@ -120,12 +140,16 @@ "render": { "en": "The rotor diameter of this wind turbine is {rotor:diameter} metres.", "fr": "Le diamètre du rotor est de {rotor:diameter} mètres.", - "it": "Il diametro del rotore di questa pala eolica è di {rotor:diameter} metri." + "it": "Il diametro del rotore di questa pala eolica è di {rotor:diameter} metri.", + "zh_Hant": "這個風力渦輪機的風葉直徑是 {rotor:diameter} 公尺。", + "hu": "A szélturbina rotorátmérője: {rotor:diameter} méter." }, "question": { "en": "What is the rotor diameter of this wind turbine, in metres?", "fr": "Quel est le diamètre du rotor en mètres ?", - "it": "Qual è il diametro (in metri) del rotore di questa pala eolica?" + "it": "Qual è il diametro (in metri) del rotore di questa pala eolica?", + "zh_Hant": "這個風力渦輪機的風葉直徑是多少公尺?", + "hu": "Hány méter a rotorátmérője ennek a szélturbinának?" }, "freeform": { "key": "rotor:diameter", @@ -137,12 +161,18 @@ "render": { "en": "This wind turbine went into operation on/in {start_date}.", "fr": "L’éolienne est active depuis {start_date}.", - "it": "Questa pala eolica è entrata in funzione in data {start_date}." + "it": "Questa pala eolica è entrata in funzione in data {start_date}.", + "zh_Hant": "這個風機從 {start_date} 開始運轉。", + "id": "Turbin angin ini mulai beroperasi pada/dalam {start_date}.", + "hu": "A szélerőmű üzembe helyezése: {start_date}." }, "question": { "en": "When did this wind turbine go into operation?", "fr": "Depuis quand l’éolienne est-elle en fonctionnement ?", - "it": "Quando è entrata in funzione questa pala eolica?" + "it": "Quando è entrata in funzione questa pala eolica?", + "zh_Hant": "這個風機何時開始營運?", + "id": "Kapan turbin angin ini mulai beroperasi?", + "hu": "Mikor helyezték üzembe ezt a szélerőművet?" }, "freeform": { "key": "start_date", @@ -162,7 +192,9 @@ "nl": "windturbine", "fr": "Éolienne", "de": "Windrad", - "it": "pala eolica" + "it": "pala eolica", + "zh_Hant": "風機", + "hu": "Szélerőmű" } } ], @@ -184,7 +216,11 @@ "fr": " megawatts", "de": " Megawatt", "eo": " megavatoj", - "it": " megawatt" + "it": " megawatt", + "ru": " мегаватт", + "zh_Hant": " 百萬瓦", + "id": " megawat", + "hu": " megawatt" } }, { @@ -200,7 +236,11 @@ "de": " Kilowatt", "eo": " kilovatoj", "it": " kilowatt", - "nb_NO": " kilowatt" + "nb_NO": " kilowatt", + "ru": " киловатт", + "zh_Hant": " 千瓦", + "id": " kilowat", + "hu": " kilowatt" } }, { @@ -215,7 +255,11 @@ "fr": " watts", "de": " Watt", "eo": " vatoj", - "it": " watt" + "it": " watt", + "ru": " ватт", + "zh_Hant": " 瓦", + "id": " watt", + "hu": " watt" } }, { @@ -230,7 +274,11 @@ "fr": " gigawatts", "de": " Gigawatt", "eo": " gigavatoj", - "it": " gigawatt" + "it": " gigawatt", + "ru": " гигаватт", + "zh_Hant": " 千兆瓦", + "id": " gigawatt", + "hu": " gigawatt" } } ], @@ -253,7 +301,11 @@ "fr": " mètres", "de": " Meter", "eo": " metro", - "it": " metri" + "it": " metri", + "ru": " метр", + "zh_Hant": " 公尺", + "id": " meter", + "hu": " méter" } } ] diff --git a/assets/themes/openwindpowermap/wind_turbine.svg b/assets/themes/openwindpowermap/wind_turbine.svg index 54a811221e..25496561a4 100644 --- a/assets/themes/openwindpowermap/wind_turbine.svg +++ b/assets/themes/openwindpowermap/wind_turbine.svg @@ -1,11 +1,10 @@ - - - - - - \ No newline at end of file + + + + + + + + + + \ No newline at end of file diff --git a/assets/themes/parkings/parkings.json b/assets/themes/parkings/parkings.json index d23209d8fc..34b8293cce 100644 --- a/assets/themes/parkings/parkings.json +++ b/assets/themes/parkings/parkings.json @@ -5,28 +5,31 @@ "en": "Parking", "de": "Parken", "it": "Parcheggio", - "nb_NO": "Parkering" + "nb_NO": "Parkering", + "ru": "Парковка", + "zh_Hant": "停車場", + "id": "Tempat parkir", + "hu": "Parkolás" }, "shortDescription": { "nl": "Deze kaart toont verschillende parkeerplekken", "en": "This map shows different parking spots", "de": "Diese Karte zeigt Parkplätze", "it": "Questa cartina mostra diversi posti dove parcheggiare", - "nb_NO": "Dette kartet viser forskjellige parkeringsplasser" + "nb_NO": "Dette kartet viser forskjellige parkeringsplasser", + "zh_Hant": "這地圖顯示不同的停車空間", + "id": "Peta ini menunjukkan tempat parkir yang berbeda", + "hu": "Ez a térkép különböző parkolókat jelenít meg" }, "description": { "nl": "Deze kaart toont verschillende parkeerplekken", "en": "This map shows different parking spots", "de": "Diese Karte zeigt Parkplätze", - "it": "Questa cartina mostra diversi posti dove parcheggiare" + "it": "Questa cartina mostra diversi posti dove parcheggiare", + "zh_Hant": "這地圖顯示不同的停車空間", + "id": "Peta ini menunjukkan tempat parkir yang berbeda", + "hu": "Ez a térkép különböző parkolókat jelenít meg" }, - "language": [ - "nl", - "en", - "de", - "it", - "nb_NO" - ], "maintainer": "", "icon": "./assets/themes/parkings/parkings.svg", "version": "0", @@ -34,7 +37,6 @@ "startLon": 3.22435, "startZoom": 12, "widenFactor": 1.2, - "socialImage": "", "layers": [ "parking" ] diff --git a/assets/themes/parkings/parkings.svg b/assets/themes/parkings/parkings.svg index c79264f227..1369443d9d 100644 --- a/assets/themes/parkings/parkings.svg +++ b/assets/themes/parkings/parkings.svg @@ -1,60 +1,15 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + \ No newline at end of file diff --git a/assets/themes/personal/personal.json b/assets/themes/personal/personal.json index 5e613e7196..c9e7d8d571 100644 --- a/assets/themes/personal/personal.json +++ b/assets/themes/personal/personal.json @@ -11,7 +11,8 @@ "ja": "個人的なテーマ", "zh_Hant": "個人化主題", "it": "Tema personalizzato", - "nb_NO": "Personlig tema" + "nb_NO": "Personlig tema", + "id": "Tema pribadi" }, "description": { "en": "Create a personal theme based on all the available layers of all themes. In order to show some data, open layer selection", @@ -20,26 +21,12 @@ "ca": "Crea una interfície basada en totes les capes disponibles de totes les interfícies", "gl": "Crea un tema baseado en todas as capas dispoñíbeis de todos os temas", "fr": "Crée un thème personnalisé basé sur toutes les couches disponibles de tous les thèmes", - "de": "Erstellen Sie ein persönliches Thema auf der Grundlage aller verfügbaren Ebenen aller Themen", + "de": "Erstellen Sie ein persönliches Thema, das auf allen verfügbaren Ebenen aller Themen basiert. Um einige Daten anzuzeigen, öffnen Sie die Ebenenauswahl", "ja": "すべてのテーマの使用可能なすべてのレイヤーに基づいて個人用テーマを作成する", "zh_Hant": "從所有可用的主題圖層創建個人化主題", - "ru": "Создать персональную тему на основе доступных слоёв тем", + "ru": "Создать персональную тему на основе доступных слоёв тем. Чтобы отобразить некоторые данные, откройте выбор слоя", "it": "Crea un tema personale basato sui livelli disponibili per tutti i temi. Per mostrare dei dati, apri selezione livello" }, - "language": [ - "en", - "nl", - "es", - "ca", - "gl", - "fr", - "de", - "ja", - "zh_Hant", - "it", - "nb_NO", - "ru" - ], "maintainer": "MapComplete", "icon": "./assets/svg/addSmall.svg", "clustering": { @@ -48,8 +35,14 @@ "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, + "syncSelection": "theme", + "shownByDefault": false + }, "layers": [] } \ No newline at end of file diff --git a/assets/themes/play_forests/play_forests.json b/assets/themes/play_forests/play_forests.json index 96aedcf5db..1a003edff4 100644 --- a/assets/themes/play_forests/play_forests.json +++ b/assets/themes/play_forests/play_forests.json @@ -9,9 +9,6 @@ "description": { "nl": "Een speelbos is een zone in een bos die vrij toegankelijk is voor spelende kinderen. Deze wordt in bossen van het Agentschap Natuur en bos altijd aangeduid met het overeenkomstige bord." }, - "language": [ - "nl" - ], "maintainer": "", "icon": "./assets/layers/play_forest/icon.svg", "version": "0", @@ -20,7 +17,6 @@ "startZoom": 1, "hideFromOverview": true, "widenFactor": 3, - "socialImage": "", "layers": [ "play_forest" ] diff --git a/assets/themes/playgrounds/playground.svg b/assets/themes/playgrounds/playground.svg index f60c77af58..97e6a132a2 100644 --- a/assets/themes/playgrounds/playground.svg +++ b/assets/themes/playgrounds/playground.svg @@ -1,4 +1,6 @@ - - + + + + + \ No newline at end of file diff --git a/assets/themes/playgrounds/playgrounds.json b/assets/themes/playgrounds/playgrounds.json index fcf3b22cc3..8ab906ae80 100644 --- a/assets/themes/playgrounds/playgrounds.json +++ b/assets/themes/playgrounds/playgrounds.json @@ -9,7 +9,9 @@ "ru": "Игровые площадки", "de": "Spielpläzte", "it": "Parchi giochi", - "nb_NO": "Lekeplasser" + "nb_NO": "Lekeplasser", + "id": "Taman bermain", + "hu": "Játszóterek" }, "shortDescription": { "nl": "Een kaart met speeltuinen", @@ -20,7 +22,9 @@ "ru": "Карта игровых площадок", "de": "Eine Karte mit Spielplätzen", "it": "Una cartina dei parchi giochi", - "nb_NO": "Et kart med lekeplasser" + "nb_NO": "Et kart med lekeplasser", + "id": "Peta dengan taman bermain", + "hu": "Egy térkép játszóterekkel" }, "description": { "nl": "Op deze kaart vind je speeltuinen en kan je zelf meer informatie en foto's toevoegen", @@ -30,19 +34,10 @@ "zh_Hant": "在這份地圖上,你可以尋找遊樂場以及其相關資訊", "ru": "На этой карте можно найти игровые площадки и добавить дополнительную информацию", "de": "Auf dieser Karte finden Sie Spielplätze und können weitere Informationen hinzufügen", - "it": "In questa cartina vengono mostrati i parchi giochi a cui è possibile aggiungere dettagli" + "it": "In questa cartina vengono mostrati i parchi giochi a cui è possibile aggiungere dettagli", + "id": "Di peta ini, Anda menemukan taman bermain dan dapat menambahkan lebih banyak informasi", + "hu": "Ezen a térképen játszótereket találsz, és további információkat adhatsz hozzájuk" }, - "language": [ - "nl", - "en", - "fr", - "ja", - "zh_Hant", - "ru", - "de", - "it", - "nb_NO" - ], "maintainer": "", "icon": "./assets/themes/playgrounds/playground.svg", "version": "0", @@ -50,7 +45,6 @@ "startLon": 4.399, "startZoom": 13, "widenFactor": 5, - "socialImage": "", "layers": [ "playground" ] diff --git a/assets/themes/postal_codes/license_info.json b/assets/themes/postal_codes/license_info.json new file mode 100644 index 0000000000..31eca5e793 --- /dev/null +++ b/assets/themes/postal_codes/license_info.json @@ -0,0 +1,12 @@ +[ + { + "path": "townhall.svg", + "license": "CC0", + "authors": [ + "Nebulon42" + ], + "sources": [ + "https://wiki.openstreetmap.org/wiki/File:Town-hall-16.svg" + ] + } +] \ No newline at end of file diff --git a/assets/themes/postal_codes/postal_codes.json b/assets/themes/postal_codes/postal_codes.json new file mode 100644 index 0000000000..247b4de33e --- /dev/null +++ b/assets/themes/postal_codes/postal_codes.json @@ -0,0 +1,169 @@ +{ + "id": "postal_codes", + "title": { + "en": "Postal codes", + "id": "Kode pos", + "hu": "Irányítószámok" + }, + "shortDescription": { + "en": "Postal codes", + "id": "Kode pos", + "hu": "Irányítószámok" + }, + "description": { + "en": "Postal codes", + "id": "Kode pos", + "hu": "Irányítószámok" + }, + "maintainer": "", + "icon": "./assets/themes/postal_codes/townhall.svg", + "version": "0", + "startLat": 0, + "startLon": 0, + "startZoom": 1, + "widenFactor": 0.05, + "hideFromOverview": true, + "clustering": false, + "overpassTimeout": 180, + "layers": [ + { + "id": "postal_code_boundary", + "name": { + "en": "postal codes", + "id": "kode pos", + "hu": "irányítószámok" + }, + "minzoom": 8, + "title": { + "render": { + "en": "Postal code {postal_code}", + "id": "Kode pos {postal_code}", + "hu": "Irányítószám: {postal_code}" + } + }, + "description": {}, + "tagRenderings": [ + { + "id": "postal_code", + "render": { + "en": "The postal code is {postal_code}", + "id": "Kode posnya adalah {postal_code}", + "hu": "Irányítószám: {postal_code}" + } + } + ], + "source": { + "osmTags": { + "or": [ + "boundary=postal_code", + { + "and": [ + "bounary=administrative", + "postal_code~*" + ] + } + ] + } + }, + "mapRendering": [ + { + "label": "
{postal_code}
", + "location": [ + "point", + "centroid" + ] + }, + { + "color": { + "render": "#00f" + }, + "width": { + "render": "4" + }, + "fill": "no", + "dashArray": "8 8" + } + ], + "isShown": { + "render": "yes", + "mappings": [ + { + "if": "_country!=be", + "then": "no" + } + ] + } + }, + { + "id": "wrong_postal_code", + "source": { + "osmTags": { + "and": [ + "boundary~*", + "addr:postcode~*" + ] + } + }, + "title": "Boundary relation with addr:postcode={addr:postcode}", + "mapRendering": [ + { + "color": "#f00", + "width": 1 + } + ] + }, + { + "id": "town_hall", + "name": { + "en": "town halls", + "id": "balai kota", + "hu": "polgármesteri hivatalok" + }, + "minzoom": 12, + "title": { + "render": { + "en": "Town hall {name}", + "id": "Balai kota {name}", + "hu": "{name} városháza" + } + }, + "calculatedTags": [ + "_postal_code_properties=(() => { const f = feat.overlapWith('postal_code_boundary'); if(f.length===0){return {};}; const p = f[0]?.feat?.properties; return {id:p.id, postal_code: p.postal_code, _closest_town_hall: p._closest_town_hall}; })()", + "_postal_code=feat.get('_postal_code_properties')?.postal_code", + "_postal_code_center_distance=feat.distanceTo(feat.get('_postal_code_properties').id)" + ], + "description": {}, + "tagRenderings": [], + "presets": [], + "source": { + "osmTags": { + "or": [ + "amenity=townhall", + "building=church" + ] + } + }, + "mapRendering": [ + { + "icon": "./assets/themes/postal_codes/townhall.svg", + "iconSize": { + "render": "40,40,center" + }, + "location": [ + "point", + "centroid" + ] + } + ], + "isShown": { + "render": "yes", + "mappings": [ + { + "if": "_country!=be", + "then": "no" + } + ] + } + } + ] +} \ No newline at end of file diff --git a/assets/themes/postal_codes/townhall.svg b/assets/themes/postal_codes/townhall.svg new file mode 100644 index 0000000000..291c535e14 --- /dev/null +++ b/assets/themes/postal_codes/townhall.svg @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/assets/themes/postboxes/post_office.svg b/assets/themes/postboxes/post_office.svg index fbf0b19436..f9d52a9307 100644 --- a/assets/themes/postboxes/post_office.svg +++ b/assets/themes/postboxes/post_office.svg @@ -1,28 +1,31 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/assets/themes/postboxes/postbox.svg b/assets/themes/postboxes/postbox.svg index aaa8d5103a..4dc4e5d74a 100644 --- a/assets/themes/postboxes/postbox.svg +++ b/assets/themes/postboxes/postbox.svg @@ -1,145 +1,40 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/assets/themes/postboxes/postboxes.json b/assets/themes/postboxes/postboxes.json index 89751a503f..aefc139a3b 100644 --- a/assets/themes/postboxes/postboxes.json +++ b/assets/themes/postboxes/postboxes.json @@ -4,24 +4,24 @@ "en": "Postbox and Post Office Map", "de": "Karte mit Briefkästen und Poststellen", "nb_NO": "Postboks og postkontor-kart", - "it": "Buche delle lettere e uffici postali" + "it": "Buche delle lettere e uffici postali", + "zh_Hant": "郵筒與郵局地圖", + "hu": "Posta- és postaládatérkép" }, "shortDescription": { "en": "A map showing postboxes and post offices", "de": "Eine Karte die Briefkästen und Poststellen anzeigt", - "it": "Una cartina che mostra le buche delle lettere e gli uffici postali" + "it": "Una cartina che mostra le buche delle lettere e gli uffici postali", + "zh_Hant": "顯示郵筒與郵局的地圖", + "hu": "Posták és postaládák térképe" }, "description": { "en": "On this map you can find and add data of post offices and post boxes. You can use this map to find where you can mail your next postcard! :)
Spotted an error or is a post box missing? You can edit this map with a free OpenStreetMap account. ", - "it": "In questa cartina puoi veder e modificare gli uffici postali e le buche delle lettere. Puoi usare questa cartina per trovare dove imbucare la tua prossima cartolina! :)
Hai trovato un errore o una buca delle lettere mancante? Puoi modificare questa cartina con un account gratuito su OpenStreetMap. " + "it": "In questa cartina puoi veder e modificare gli uffici postali e le buche delle lettere. Puoi usare questa cartina per trovare dove imbucare la tua prossima cartolina! :)
Hai trovato un errore o una buca delle lettere mancante? Puoi modificare questa cartina con un account gratuito su OpenStreetMap. ", + "zh_Hant": "在這份地圖你能找到與新增有關郵局與郵筒的資料,你可以用這份地圖找到寄送您下張明信片的地方!:)
發現錯誤或是有郵筒遺漏嗎?你可以用免費的開放街圖帳號來編輯。 ", + "hu": "Ezen a térképen postahivatalok és postaládák adatait találod és egészítheted ki. Utánanézhetsz, hogy hol adhatod fel a következő képeslapodat! :)
Hibát találtál, vagy hiányzik egy postaláda? Ezt a térképet mindössze egy ingyenes OpenStreetMap-fiókkal szerkesztheted. " }, - "language": [ - "en", - "de", - "it", - "nb_NO" - ], - "maintainer": "", + "maintainer": "nicolelaine", "icon": "./assets/themes/postboxes/postbox.svg", "version": "0", "startLat": 53.5511, @@ -38,7 +38,11 @@ "id": "postboxes", "name": { "en": "Postboxes", - "de": "Brieflästen" + "de": "Brieflästen", + "ru": "Почтовые ящики", + "zh_Hant": "郵筒", + "id": "Kotak pos", + "hu": "Postaládák" }, "minzoom": 12, "source": { @@ -47,12 +51,19 @@ "title": { "render": { "en": "Postbox", - "de": "Briefkasten" + "de": "Briefkasten", + "ru": "Почтовый ящик", + "zh_Hant": "郵筒", + "id": "Kotak pos", + "hu": "Postaláda" } }, "description": { "en": "The layer showing postboxes.", - "de": "Die Ebene zeigt Briefkästen." + "de": "Die Ebene zeigt Briefkästen.", + "zh_Hant": "這圖層顯示郵筒。", + "id": "Layer yang memperlihatkan kotak pos.", + "hu": "A postaládákat megjelenítő réteg." }, "tagRenderings": [ "images", @@ -68,7 +79,11 @@ ], "title": { "en": "postbox", - "de": "Briefkasten" + "de": "Briefkasten", + "ru": "почтовый ящик", + "zh_Hant": "郵筒", + "id": "kotak pos", + "hu": "postaláda" } } ], @@ -107,7 +122,11 @@ "id": "postoffices", "name": { "en": "Post offices", - "de": "Poststellen" + "de": "Poststellen", + "ru": "Почтовые отделения", + "zh_Hant": "郵局", + "id": "Kantor pos", + "hu": "Posták" }, "minzoom": 12, "source": { @@ -121,38 +140,19 @@ "title": { "render": { "en": "Post Office", - "de": "Poststelle" - }, - "mappings": [ - { - "if": { - "and": [ - "post_office=post_partner", - "name=" - ] - }, - "then": { - "en": "Post partner at a shop", - "de": "Postfiliale im Einzelhandel" - } - }, - { - "if": { - "and": [ - "post_office=post_partner", - "name~*" - ] - }, - "then": { - "en": "Post partner at {name}", - "de": "Postfiliale im {name}" - } - } - ] + "de": "Poststelle", + "ru": "Почтовое отделение", + "zh_Hant": "郵局", + "id": "Kantor Pos", + "hu": "Posta" + } }, "description": { "en": "A layer showing post offices.", - "de": "Eine Ebene mit Postämtern." + "de": "Eine Ebene mit Postämtern.", + "zh_Hant": "圖層顯示郵局。", + "id": "Layer yang menunjukkan kantor pos.", + "hu": "Postákat megjelenítő réteg." }, "tagRenderings": [ "images", @@ -162,21 +162,31 @@ }, { "render": { - "en": "Opening Hours: {opening_hours_table()}" + "en": "Opening Hours: {opening_hours_table()}", + "ru": "Часы работы: {opening_hours_table()}", + "zh_Hant": "開放時間:{opening_hours_table()}", + "id": "Jam Buka: {opening_hours_table()}", + "hu": "Nyitva tartás: {opening_hours_table()}" }, "freeform": { "key": "opening_hours", "type": "opening_hours" }, "question": { - "en": "What are the opening hours for this post office?" + "en": "What are the opening hours for this post office?", + "zh_Hant": "這間郵局的開放時間是?", + "id": "Jam berapa kantor pos ini buka?", + "hu": "Mikor van nyitva ez a posta?" }, "mappings": [ { "if": "opening_hours=24/7", "then": { "en": "24/7 opened (including holidays)", - "de": "durchgehend geöffnet (auch an Feiertagen)" + "de": "durchgehend geöffnet (auch an Feiertagen)", + "zh_Hant": "24/7 開放 (包括假日)", + "id": "Buka 24 jam (termasuk hari libur)", + "hu": "Éjjel-nappal nyitva (munkaszüneti napokon is)" } } ], @@ -424,7 +434,11 @@ ], "title": { "en": "Post Office", - "de": "Poststelle" + "de": "Poststelle", + "ru": "Почтовое отделение", + "zh_Hant": "郵局", + "id": "Kantor Pos", + "hu": "Posta" } } ], @@ -435,7 +449,10 @@ { "question": { "en": "Currently open", - "de": "Aktuell geöffnet" + "de": "Aktuell geöffnet", + "zh_Hant": "目前開放", + "id": "Saat ini buka", + "hu": "Most nyitva" }, "osmTags": "_isOpen=yes" } diff --git a/assets/themes/shops/shop.svg b/assets/themes/shops/shop.svg index 2f9a4b3ee2..fd8e78c608 100644 --- a/assets/themes/shops/shop.svg +++ b/assets/themes/shops/shop.svg @@ -1,126 +1,14 @@ - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + \ No newline at end of file diff --git a/assets/themes/shops/shops.json b/assets/themes/shops/shops.json index 03c1e0ffae..0c058075e5 100644 --- a/assets/themes/shops/shops.json +++ b/assets/themes/shops/shops.json @@ -8,14 +8,16 @@ "ru": "Открыть карту магазинов", "de": "Freie Geschäftskarte", "it": "Mappa dei negozi", - "nb_NO": "Kart over åpne butikker" + "nb_NO": "Kart over åpne butikker", + "hu": "Bolttérkép" }, "shortDescription": { "en": "An editable map with basic shop information", "fr": "Carte modifiable affichant les informations de base des magasins", "ja": "基本的なショップ情報を含む編集可能なマップ", "de": "Eine bearbeitbare Karte mit grundlegenden Geschäftsinformationen", - "it": "Una cartina modificabile con informazioni di base dei negozi" + "it": "Una cartina modificabile con informazioni di base dei negozi", + "hu": "Szerkeszthető térkép üzletek alapvető adataival" }, "description": { "en": "On this map, one can mark basic information about shops, add opening hours and phone numbers", @@ -23,18 +25,9 @@ "ja": "この地図には店の基本情報を記入したり営業時間や電話番号を追加することができます", "zh_Hant": "這份地圖上,你可以標記商家基本資訊,新增營業時間以及聯絡電話", "de": "Auf dieser Karte kann man grundlegende Informationen über Geschäfte markieren, Öffnungszeiten und Telefonnummern hinzufügen", - "it": "In questa cartina è possibile aggiungere informazioni di base di un negozio, orari di apertura e numeri di telefono" + "it": "In questa cartina è possibile aggiungere informazioni di base di un negozio, orari di apertura e numeri di telefono", + "hu": "Ezen a térképen az üzletek alapvető adatait lehet megadni, például nyitvatartási időt és telefonszámokat." }, - "language": [ - "en", - "fr", - "ja", - "zh_Hant", - "ru", - "de", - "it", - "nb_NO" - ], "maintainer": "MapComplete", "icon": "./assets/themes/shops/shop.svg", "version": "0", @@ -42,7 +35,6 @@ "startLon": 0, "startZoom": 1, "widenFactor": 3, - "socialImage": "", "layers": [ "shops" ] diff --git a/assets/themes/sidewalks/sidewalks.json b/assets/themes/sidewalks/sidewalks.json index 71f1baa3c2..28cbe8ae87 100644 --- a/assets/themes/sidewalks/sidewalks.json +++ b/assets/themes/sidewalks/sidewalks.json @@ -1,17 +1,16 @@ { "id": "sidewalks", "title": { - "en": "Sidewalks" + "en": "Sidewalks", + "ru": "Тротуары" }, "shortDescription": { "en": "Sidewalk mapping" }, "description": { - "en": "Experimental theme" + "en": "Experimental theme", + "ru": "Экспериментальная тема" }, - "language": [ - "en" - ], "maintainer": "", "icon": "./assets/svg/bug.svg", "version": "0", @@ -19,13 +18,13 @@ "startLon": 0, "startZoom": 1, "widenFactor": 0.05, - "socialImage": "", "hideFromOverview": true, "layers": [ { "id": "sidewalks", "name": { - "en": "Sidewalks" + "en": "Sidewalks", + "ru": "Тротуары" }, "minzoom": 12, "source": { @@ -40,7 +39,8 @@ }, "title": { "render": { - "en": "{name}" + "en": "{name}", + "ru": "{name}" }, "mappings": [ { @@ -61,19 +61,25 @@ }, { "rewrite": { - "sourceString": "left|right", + "sourceString": [ + "left|right" + ], "into": [ - "left", - "right" + [ + "left" + ], + [ + "right" + ] ] }, "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": [ { @@ -87,7 +93,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 a421bd585e..dfc602362e 100644 --- a/assets/themes/speelplekken/logo.svg +++ b/assets/themes/speelplekken/logo.svg @@ -1,125 +1,11 @@ - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + \ No newline at end of file diff --git a/assets/themes/speelplekken/speelbos.svg b/assets/themes/speelplekken/speelbos.svg index bdebbc0535..ac2e13ad1f 100644 --- a/assets/themes/speelplekken/speelbos.svg +++ b/assets/themes/speelplekken/speelbos.svg @@ -1,17 +1,7 @@ - - - - - - - + + + + + + + \ No newline at end of file diff --git a/assets/themes/speelplekken/speelplekken.json b/assets/themes/speelplekken/speelplekken.json index 303c588a6f..c4ff417d2d 100644 --- a/assets/themes/speelplekken/speelplekken.json +++ b/assets/themes/speelplekken/speelplekken.json @@ -10,14 +10,19 @@ "description": { "nl": "

Welkom bij de Groendoener!

De Zuidrand dat is spelen, ravotten, chillen, wandelen,… in het groen. Meer dan 200 grote en kleine speelplekken liggen er in parken, in bossen en op pleintjes te wachten om ontdekt te worden. De verschillende speelplekken werden getest én goedgekeurd door kinder- en jongerenreporters uit de Zuidrand. Met leuke challenges dagen de reporters jou uit om ook op ontdekking te gaan. Klik op een speelplek op de kaart, bekijk het filmpje en ga op verkenning!

Het project groendoener kadert binnen het strategisch project Beleefbare Open Ruimte in de Antwerpse Zuidrand en is een samenwerking tussen het departement Leefmilieu van provincie Antwerpen, Sportpret vzw, een OpenStreetMap-België Consultent en Createlli vzw. Het project kwam tot stand met steun van Departement Omgeving van de Vlaamse Overheid.
" }, - "language": [ - "nl", - "*" - ], "maintainer": "MapComplete", "icon": "./assets/themes/speelplekken/logo.svg", "hideFromOverview": true, - "lockLocation": true, + "lockLocation": [ + [ + 4.291534423828125, + 51.061249423389796 + ], + [ + 4.604301452636719, + 51.23978120350654 + ] + ], "version": "0", "startLat": 51.17174, "startLon": 4.449462, @@ -46,11 +51,10 @@ "builtin": "play_forest", "override": { "source": { - "geoJson": "https://pietervdvn.github.io/speelplekken_cache/speelplekken_{layer}_{z}_{x}_{y}.geojson", + "geoJson": "https://raw.githubusercontent.com/pietervdvn/MapComplete-data/main/speelplekken_cache/speelplekken_{layer}_{z}_{x}_{y}.geojson", "geoJsonZoomLevel": 14, "isOsmCache": true }, - "icon": "./assets/themes/speelplekken/speelbos.svg", "minzoom": 12, "calculatedTags": [ "_is_shadowed=feat.overlapWith('shadow').length > 0 ? 'yes': ''", @@ -61,11 +65,10 @@ { "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", - "geoJson": "https://pietervdvn.github.io/speelplekken_cache/speelplekken_{layer}_{z}_{x}_{y}.geojson", + "geoJson": "https://raw.githubusercontent.com/pietervdvn/MapComplete-data/main/speelplekken_cache/speelplekken_{layer}_{z}_{x}_{y}.geojson", "geoJsonZoomLevel": 14, "isOsmCache": true }, @@ -78,11 +81,10 @@ { "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", - "geoJson": "https://pietervdvn.github.io/speelplekken_cache/speelplekken_{layer}_{z}_{x}_{y}.geojson", + "geoJson": "https://raw.githubusercontent.com/pietervdvn/MapComplete-data/main/speelplekken_cache/speelplekken_{layer}_{z}_{x}_{y}.geojson", "geoJsonZoomLevel": 14, "isOsmCache": true }, @@ -95,11 +97,10 @@ { "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", - "geoJson": "https://pietervdvn.github.io/speelplekken_cache/speelplekken_{layer}_{z}_{x}_{y}.geojson", + "geoJson": "https://raw.githubusercontent.com/pietervdvn/MapComplete-data/main/speelplekken_cache/speelplekken_{layer}_{z}_{x}_{y}.geojson", "geoJsonZoomLevel": 14, "isOsmCache": true }, @@ -115,7 +116,7 @@ "minzoom": 15, "source": { "geoJsonLocal": "http://127.0.0.1:8080/speelplekken_{layer}_{z}_{x}_{y}.geojson", - "geoJson": "https://pietervdvn.github.io/speelplekken_cache/speelplekken_{layer}_{z}_{x}_{y}.geojson", + "geoJson": "https://raw.githubusercontent.com/pietervdvn/MapComplete-data/main/speelplekken_cache/speelplekken_{layer}_{z}_{x}_{y}.geojson", "geoJsonZoomLevel": 14, "isOsmCache": true }, @@ -134,7 +135,7 @@ ], "source": { "geoJsonLocal": "http://127.0.0.1:8080/speelplekken_{layer}_{z}_{x}_{y}.geojson", - "geoJson": "https://pietervdvn.github.io/speelplekken_cache/speelplekken_{layer}_{z}_{x}_{y}.geojson", + "geoJson": "https://raw.githubusercontent.com/pietervdvn/MapComplete-data/main/speelplekken_cache/speelplekken_{layer}_{z}_{x}_{y}.geojson", "geoJsonZoomLevel": 14, "isOsmCache": true } @@ -154,7 +155,7 @@ "operator~[pP]rovincie Antwerpen" ] }, - "geoJson": "https://pietervdvn.github.io/speelplekken_cache/speelplekken_{layer}_{z}_{x}_{y}.geojson", + "geoJson": "https://raw.githubusercontent.com/pietervdvn/MapComplete-data/main/speelplekken_cache/speelplekken_{layer}_{z}_{x}_{y}.geojson", "geoJsonZoomLevel": 14, "isOsmCache": true }, @@ -281,11 +282,10 @@ "render": "" } ], - "+iconOverlays": [ + "+iconBadges": [ { "if": "_video:id~*", - "then": "./assets/themes/speelplekken/youtube.svg", - "badge": true + "then": "./assets/themes/speelplekken/youtube.svg" } ], "isShown": { diff --git a/assets/themes/speelplekken/speeltuin.svg b/assets/themes/speelplekken/speeltuin.svg index 0e34528b2d..da82683c81 100644 --- a/assets/themes/speelplekken/speeltuin.svg +++ b/assets/themes/speelplekken/speeltuin.svg @@ -1,78 +1,8 @@ - - - - - - image/svg+xml - - - - - - - - - - - - + + + + + + + + \ No newline at end of file diff --git a/assets/themes/speelplekken/speelweide.svg b/assets/themes/speelplekken/speelweide.svg index aec3b30986..6aca3d4fd3 100644 --- a/assets/themes/speelplekken/speelweide.svg +++ b/assets/themes/speelplekken/speelweide.svg @@ -1,72 +1,7 @@ - - - - - - image/svg+xml - - - - - - - - - - - + + + + + + + \ No newline at end of file diff --git a/assets/themes/speelplekken/youtube.svg b/assets/themes/speelplekken/youtube.svg index f0892714d5..2b5ab752cb 100644 --- a/assets/themes/speelplekken/youtube.svg +++ b/assets/themes/speelplekken/youtube.svg @@ -1,64 +1,6 @@ - - - -image/svg+xml - - - \ No newline at end of file + + + + + + \ No newline at end of file diff --git a/assets/themes/sport_pitches/sport_pitches.json b/assets/themes/sport_pitches/sport_pitches.json index 810c6333e0..b0237a414b 100644 --- a/assets/themes/sport_pitches/sport_pitches.json +++ b/assets/themes/sport_pitches/sport_pitches.json @@ -8,7 +8,8 @@ "zh_Hant": "運動場地", "ru": "Спортивные площадки", "de": "Sportplätze", - "it": "Campi sportivi" + "it": "Campi sportivi", + "hu": "Sportpályák" }, "shortDescription": { "nl": "Deze kaart toont sportvelden", @@ -18,7 +19,8 @@ "zh_Hant": "顯示運動場地的地圖", "ru": "Карта, отображающая спортивные площадки", "de": "Eine Karte mit Sportplätzen", - "it": "Una cartina che mostra i campi sportivi" + "it": "Una cartina che mostra i campi sportivi", + "hu": "Sportpályatérkép" }, "description": { "nl": "Een sportveld is een ingerichte plaats met infrastructuur om een sport te beoefenen", @@ -27,18 +29,9 @@ "ja": "スポーツ競技場は、スポーツが行われる場所です", "zh_Hant": "運動場地是進行運動的地方", "de": "Ein Sportplatz ist eine Fläche, auf der Sportarten gespielt werden", - "it": "Una campo sportivo è un’area dove vengono praticati gli sport" + "it": "Una campo sportivo è un’area dove vengono praticati gli sport", + "hu": "A sportpálya egy olyan terület, amelyen valamilyen sportot űznek" }, - "language": [ - "nl", - "fr", - "en", - "ja", - "zh_Hant", - "ru", - "de", - "it" - ], "maintainer": "", "icon": "./assets/layers/sport_pitch/table_tennis.svg", "version": "0", @@ -46,7 +39,6 @@ "startLon": 0, "startZoom": 1, "widenFactor": 2, - "socialImage": "", "layers": [ "sport_pitch" ] diff --git a/assets/themes/street_lighting/street_lighting.json b/assets/themes/street_lighting/street_lighting.json index 586d26b68a..1997880511 100644 --- a/assets/themes/street_lighting/street_lighting.json +++ b/assets/themes/street_lighting/street_lighting.json @@ -2,17 +2,18 @@ "id": "street_lighting", "maintainer": "Robin van der Linde", "version": "2021-10-22", - "language": [ - "en", - "nl" - ], "title": { "en": "Street Lighting", - "nl": "Straatverlichting" + "nl": "Straatverlichting", + "ru": "Уличное освещение", + "zh_Hant": "道路照明", + "hu": "Közvilágítás" }, "description": { "en": "On this map you can find everything about street lighting", - "nl": "Op deze kaart vind je alles over straatlantaarns" + "nl": "Op deze kaart vind je alles over straatlantaarns", + "zh_Hant": "在這份地圖你可以找到任何有關路燈的事情", + "hu": "Ezen a térképen minden megtalálható, ami a közvilágítással kapcsolatos" }, "icon": "./assets/layers/street_lamps/street_lamp.svg", "startZoom": 19, @@ -24,7 +25,9 @@ "id": "lit_streets", "name": { "en": "Lit streets", - "nl": "Verlichte straten" + "nl": "Verlichte straten", + "zh_Hant": "有照明的道路", + "hu": "Kivilágított utcák" }, "source": { "osmTags": { @@ -40,7 +43,9 @@ "title": { "render": { "en": "Lit street", - "nl": "Verlichte straat" + "nl": "Verlichte straat", + "zh_Hant": "照明道路", + "hu": "Kivilágított utca" }, "mappings": [ { @@ -59,28 +64,36 @@ "id": "lit", "question": { "en": "Is this street lit?", - "nl": "Is deze straat verlicht?" + "nl": "Is deze straat verlicht?", + "zh_Hant": "這道路有路燈嗎?", + "hu": "Ki van-e világítva ez az utca?" }, "mappings": [ { "if": "lit=yes", "then": { "en": "This street is lit", - "nl": "Deze straat is verlicht" + "nl": "Deze straat is verlicht", + "zh_Hant": "這個道路有照明", + "hu": "Ezen az utcán van közvilágítás" } }, { "if": "lit=no", "then": { "en": "This street is not lit", - "nl": "Deze straat is niet verlicht" + "nl": "Deze straat is niet verlicht", + "zh_Hant": "這個道路沒有照明", + "hu": "Ezen az utcán nincs közvilágítás" } }, { "if": "lit=sunset-sunrise", "then": { "en": "This street is lit at night", - "nl": "Deze straat is 's nachts verlicht" + "nl": "Deze straat is 's nachts verlicht", + "zh_Hant": "這個道路晚上有照明", + "hu": "Ez az utca éjszaka ki van világítva" }, "hideInAnswer": true }, @@ -88,7 +101,9 @@ "if": "lit=24/7", "then": { "en": "This street is lit 24/7", - "nl": "Deze straat is 24/7 verlicht" + "nl": "Deze straat is 24/7 verlicht", + "zh_Hant": "這個道路 24/7 有照明", + "hu": "Ez az utca éjjel-nappal ki van világítva" } } ] @@ -100,7 +115,10 @@ "id": "all_streets", "name": { "en": "All streets", - "nl": "Alle straten" + "nl": "Alle straten", + "ru": "Все улицы", + "zh_Hant": "所有道路", + "hu": "Minden utca" }, "source": { "osmTags": { @@ -115,7 +133,10 @@ "title": { "render": { "en": "Street", - "nl": "Straat" + "nl": "Straat", + "ru": "Улица", + "zh_Hant": "照明", + "hu": "Utca" }, "mappings": [ { @@ -142,28 +163,36 @@ "id": "lit", "question": { "en": "Is this street lit?", - "nl": "Is deze straat verlicht?" + "nl": "Is deze straat verlicht?", + "zh_Hant": "這道路有照明嗎?", + "hu": "Ki van-e világítva ez az utca?" }, "mappings": [ { "if": "lit=yes", "then": { "en": "This street is lit", - "nl": "Deze straat is verlicht" + "nl": "Deze straat is verlicht", + "zh_Hant": "這道路有照明", + "hu": "Ez az utca ki van világítva" } }, { "if": "lit=no", "then": { "en": "This street is not lit", - "nl": "Deze straat is niet verlicht" + "nl": "Deze straat is niet verlicht", + "zh_Hant": "這道路沒有照明", + "hu": "Ez az utca nincs kivilágítva" } }, { "if": "lit=sunset-sunrise", "then": { "en": "This street is lit at night", - "nl": "Deze straat is 's nachts verlicht" + "nl": "Deze straat is 's nachts verlicht", + "zh_Hant": "這道路晚上有照明", + "hu": "Ez az utca éjjel ki van világítva" }, "hideInAnswer": true }, @@ -171,7 +200,9 @@ "if": "lit=24/7", "then": { "en": "This street is lit 24/7", - "nl": "Deze straat is 24/7 verlicht" + "nl": "Deze straat is 24/7 verlicht", + "zh_Hant": "這道路 24/7 有照明", + "hu": "Ez az utca éjjel-nappal ki van világítva" } } ] diff --git a/assets/themes/street_lighting/street_lighting_assen.json b/assets/themes/street_lighting/street_lighting_assen.json index 7f98cdcd70..646a825507 100644 --- a/assets/themes/street_lighting/street_lighting_assen.json +++ b/assets/themes/street_lighting/street_lighting_assen.json @@ -2,10 +2,6 @@ "id": "street_lighting_assen", "maintainer": "Robin van der Linde", "version": "2021-10-22", - "language": [ - "nl", - "en" - ], "title": { "nl": "Straatverlichting - Assen" }, @@ -19,7 +15,7 @@ "layers": [ "street_lamps", { - "id": "Assen", + "id": "assen", "name": "Dataset Assen", "source": { "osmTags": "Lichtmastnummer~*", @@ -30,7 +26,7 @@ }, "calculatedTags": [ "_closest_osm_street_lamp=feat.closest('street_lamps')?.properties?.id", - "_closest_osm_street_lamp_distance=feat.distanceTo(feat.properties._closest_osm_street_lamp) * 1000", + "_closest_osm_street_lamp_distance=feat.distanceTo(feat.properties._closest_osm_street_lamp)", "_has_closeby_feature=Number(feat.properties._closest_osm_street_lamp_distance) < 5 ? 'yes' : 'no'" ], "title": "Straatlantaarn in dataset", diff --git a/assets/themes/surveillance/cam_left.svg b/assets/themes/surveillance/cam_left.svg index 105da4a10e..fa84415012 100644 --- a/assets/themes/surveillance/cam_left.svg +++ b/assets/themes/surveillance/cam_left.svg @@ -1,62 +1,6 @@ - - - - - - - - - image/svg+xml - - - - - - - - + + + + + + \ No newline at end of file diff --git a/assets/themes/surveillance/cam_right.svg b/assets/themes/surveillance/cam_right.svg index 1991cc41e3..1a2abb09fe 100644 --- a/assets/themes/surveillance/cam_right.svg +++ b/assets/themes/surveillance/cam_right.svg @@ -1,67 +1,6 @@ - - - - - - - - - - image/svg+xml - - - - - - - - + + + + + + \ No newline at end of file diff --git a/assets/themes/surveillance/dome.svg b/assets/themes/surveillance/dome.svg index 966fdd5d1e..ee2f0aef5f 100644 --- a/assets/themes/surveillance/dome.svg +++ b/assets/themes/surveillance/dome.svg @@ -1,92 +1,9 @@ - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - + + + + + + + + + \ No newline at end of file diff --git a/assets/themes/surveillance/logo.svg b/assets/themes/surveillance/logo.svg index 230d2800dc..918f904711 100644 --- a/assets/themes/surveillance/logo.svg +++ b/assets/themes/surveillance/logo.svg @@ -1,61 +1,7 @@ - - - - - - image/svg+xml - - - - - - - - - + + + + + + + \ No newline at end of file diff --git a/assets/themes/surveillance/surveillance.json b/assets/themes/surveillance/surveillance.json index 1e460a0f7d..197362a86d 100644 --- a/assets/themes/surveillance/surveillance.json +++ b/assets/themes/surveillance/surveillance.json @@ -7,7 +7,8 @@ "zh_Hant": "被監視的監視器", "fr": "Surveillance", "de": "Überwachung unter Überwachung", - "it": "Sorveglianza sotto controllo" + "it": "Sorveglianza sotto controllo", + "hu": "Megfigyelt térfigyelés" }, "shortDescription": { "en": "Surveillance cameras and other means of surveillance", @@ -17,7 +18,8 @@ "fr": "Caméras et autres dispositifs de surveillance", "pl": "Kamery monitorujące i inne środki nadzoru", "de": "Überwachungskameras und andere Mittel zur Überwachung", - "it": "Telecamere e altri di mezzi di sorveglianza" + "it": "Telecamere e altri di mezzi di sorveglianza", + "hu": "Térfigyelő kamerák és más figyelőeszközök" }, "description": { "en": "On this open map, you can find surveillance cameras.", @@ -27,18 +29,9 @@ "fr": "Cette carte indique l’emplacement des caméras de surveillance.", "pl": "Na tej otwartej mapie można znaleźć kamery monitoringu.", "de": "Auf dieser offenen Karte finden Sie Überwachungskameras.", - "it": "In questa cartina puoi trovare le telecamera di sorveglianza." + "it": "In questa cartina puoi trovare le telecamera di sorveglianza.", + "hu": "Ezen a térképen térfigyelő kamerák láthatók." }, - "language": [ - "en", - "nl", - "ja", - "zh_Hant", - "fr", - "de", - "it", - "pl" - ], "maintainer": "", "icon": "./assets/themes/surveillance/logo.svg", "version": "0", @@ -46,7 +39,6 @@ "startLon": 0, "startZoom": 1, "widenFactor": 2, - "socialImage": "", "defaultBackgroundId": "osm", "layers": [ "direction", diff --git a/assets/themes/toerisme_vlaanderen/FlandersArtSans-Light.woff b/assets/themes/toerisme_vlaanderen/FlandersArtSans-Light.woff new file mode 100644 index 0000000000..32f3ec67a3 Binary files /dev/null and b/assets/themes/toerisme_vlaanderen/FlandersArtSans-Light.woff differ diff --git a/assets/themes/toerisme_vlaanderen/FlandersArtSerif-Medium.woff b/assets/themes/toerisme_vlaanderen/FlandersArtSerif-Medium.woff new file mode 100644 index 0000000000..91086869dd Binary files /dev/null and b/assets/themes/toerisme_vlaanderen/FlandersArtSerif-Medium.woff differ diff --git a/assets/themes/toerisme_vlaanderen/NEGATIEF/bench.svg b/assets/themes/toerisme_vlaanderen/NEGATIEF/bench.svg new file mode 100644 index 0000000000..b65d668e36 --- /dev/null +++ b/assets/themes/toerisme_vlaanderen/NEGATIEF/bench.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/themes/toerisme_vlaanderen/NEGATIEF/bicycle_rental.svg b/assets/themes/toerisme_vlaanderen/NEGATIEF/bicycle_rental.svg new file mode 100644 index 0000000000..ca37e6a2bc --- /dev/null +++ b/assets/themes/toerisme_vlaanderen/NEGATIEF/bicycle_rental.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/themes/toerisme_vlaanderen/NEGATIEF/charging_station_ebike.svg b/assets/themes/toerisme_vlaanderen/NEGATIEF/charging_station_ebike.svg new file mode 100644 index 0000000000..3ad5d40abd --- /dev/null +++ b/assets/themes/toerisme_vlaanderen/NEGATIEF/charging_station_ebike.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/themes/toerisme_vlaanderen/NEGATIEF/cycle_pump.svg b/assets/themes/toerisme_vlaanderen/NEGATIEF/cycle_pump.svg new file mode 100644 index 0000000000..395345c300 --- /dev/null +++ b/assets/themes/toerisme_vlaanderen/NEGATIEF/cycle_pump.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/themes/toerisme_vlaanderen/NEGATIEF/cycle_repair.svg b/assets/themes/toerisme_vlaanderen/NEGATIEF/cycle_repair.svg new file mode 100644 index 0000000000..51ebec297a --- /dev/null +++ b/assets/themes/toerisme_vlaanderen/NEGATIEF/cycle_repair.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/themes/toerisme_vlaanderen/NEGATIEF/cycle_repair_and_pump.svg b/assets/themes/toerisme_vlaanderen/NEGATIEF/cycle_repair_and_pump.svg new file mode 100644 index 0000000000..91028718b7 --- /dev/null +++ b/assets/themes/toerisme_vlaanderen/NEGATIEF/cycle_repair_and_pump.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/themes/toerisme_vlaanderen/NEGATIEF/license_info.json b/assets/themes/toerisme_vlaanderen/NEGATIEF/license_info.json new file mode 100644 index 0000000000..4885cc3ba0 --- /dev/null +++ b/assets/themes/toerisme_vlaanderen/NEGATIEF/license_info.json @@ -0,0 +1,145 @@ +[ + { + "path": "bench.svg", + "license": "CC0", + "authors": [ + "Toerisme Vlaanderen" + ], + "sources": [ + "https://toerismevlaanderen.be/pinjepunt", + "https://mapcomplete.osm.be/toerisme_vlaanderen" + ] + }, + { + "path": "bicycle_rental.svg", + "license": "CC0", + "authors": [ + "Toerisme Vlaanderen" + ], + "sources": [ + "https://toerismevlaanderen.be/pinjepunt", + "https://mapcomplete.osm.be/toerisme_vlaanderen" + ] + }, + { + "path": "charging_station_ebike.svg", + "license": "CC0", + "authors": [ + "Toerisme Vlaanderen" + ], + "sources": [ + "https://toerismevlaanderen.be/pinjepunt", + "https://mapcomplete.osm.be/toerisme_vlaanderen" + ] + }, + { + "path": "cycle_pump.svg", + "license": "CC0", + "authors": [ + "Toerisme Vlaanderen" + ], + "sources": [ + "https://toerismevlaanderen.be/pinjepunt", + "https://mapcomplete.osm.be/toerisme_vlaanderen" + ] + }, + { + "path": "cycle_repair.svg", + "license": "CC0", + "authors": [ + "Toerisme Vlaanderen" + ], + "sources": [ + "https://toerismevlaanderen.be/pinjepunt", + "https://mapcomplete.osm.be/toerisme_vlaanderen" + ] + }, + { + "path": "cycle_repair_and_pump.svg", + "license": "CC0", + "authors": [ + "Toerisme Vlaanderen" + ], + "sources": [ + "https://toerismevlaanderen.be/pinjepunt", + "https://mapcomplete.osm.be/toerisme_vlaanderen" + ] + }, + { + "path": "observation_platform.svg", + "license": "CC0", + "authors": [ + "Toerisme Vlaanderen" + ], + "sources": [ + "https://toerismevlaanderen.be/pinjepunt", + "https://mapcomplete.osm.be/toerisme_vlaanderen" + ] + }, + { + "path": "observation_tower.svg", + "license": "CC0", + "authors": [ + "Toerisme Vlaanderen" + ], + "sources": [ + "https://toerismevlaanderen.be/pinjepunt", + "https://mapcomplete.osm.be/toerisme_vlaanderen" + ] + }, + { + "path": "picnic_table.svg", + "license": "CC0", + "authors": [ + "Toerisme Vlaanderen" + ], + "sources": [ + "https://toerismevlaanderen.be/pinjepunt", + "https://mapcomplete.osm.be/toerisme_vlaanderen" + ] + }, + { + "path": "playground.svg", + "license": "CC0", + "authors": [ + "Toerisme Vlaanderen" + ], + "sources": [ + "https://toerismevlaanderen.be/pinjepunt", + "https://mapcomplete.osm.be/toerisme_vlaanderen" + ] + }, + { + "path": "toilets.svg", + "license": "CC0", + "authors": [ + "Toerisme Vlaanderen" + ], + "sources": [ + "https://toerismevlaanderen.be/pinjepunt", + "https://mapcomplete.osm.be/toerisme_vlaanderen" + ] + }, + { + "path": "toilets_wheelchair.svg", + "license": "CC0", + "authors": [ + "Toerisme Vlaanderen" + ], + "sources": [ + "https://toerismevlaanderen.be/pinjepunt", + "https://mapcomplete.osm.be/toerisme_vlaanderen" + ] + }, + { + "path": "toilets_wheelchair.svg", + "license": "CC0", + "authors": [ + "Toerisme Vlaanderen" + ], + "sources": [ + "https://toerismevlaanderen.be/pinjepunt", + "https://mapcomplete.osm.be/toerisme_vlaanderen" + ] + } +] \ No newline at end of file diff --git a/assets/themes/toerisme_vlaanderen/NEGATIEF/observation_platform.svg b/assets/themes/toerisme_vlaanderen/NEGATIEF/observation_platform.svg new file mode 100644 index 0000000000..96b3d42ef5 --- /dev/null +++ b/assets/themes/toerisme_vlaanderen/NEGATIEF/observation_platform.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/themes/toerisme_vlaanderen/NEGATIEF/observation_tower.svg b/assets/themes/toerisme_vlaanderen/NEGATIEF/observation_tower.svg new file mode 100644 index 0000000000..dcf91e0672 --- /dev/null +++ b/assets/themes/toerisme_vlaanderen/NEGATIEF/observation_tower.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/themes/toerisme_vlaanderen/NEGATIEF/picnic_table.svg b/assets/themes/toerisme_vlaanderen/NEGATIEF/picnic_table.svg new file mode 100644 index 0000000000..11acf338dc --- /dev/null +++ b/assets/themes/toerisme_vlaanderen/NEGATIEF/picnic_table.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/themes/toerisme_vlaanderen/NEGATIEF/playground.svg b/assets/themes/toerisme_vlaanderen/NEGATIEF/playground.svg new file mode 100644 index 0000000000..39c675f097 --- /dev/null +++ b/assets/themes/toerisme_vlaanderen/NEGATIEF/playground.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/themes/toerisme_vlaanderen/NEGATIEF/toilets.svg b/assets/themes/toerisme_vlaanderen/NEGATIEF/toilets.svg new file mode 100644 index 0000000000..86a32fd616 --- /dev/null +++ b/assets/themes/toerisme_vlaanderen/NEGATIEF/toilets.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/themes/toerisme_vlaanderen/NEGATIEF/toilets_wheelchair.svg b/assets/themes/toerisme_vlaanderen/NEGATIEF/toilets_wheelchair.svg new file mode 100644 index 0000000000..a8037d1d42 --- /dev/null +++ b/assets/themes/toerisme_vlaanderen/NEGATIEF/toilets_wheelchair.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/themes/toerisme_vlaanderen/avatar.png b/assets/themes/toerisme_vlaanderen/avatar.png new file mode 100644 index 0000000000..6ea29891f1 Binary files /dev/null and b/assets/themes/toerisme_vlaanderen/avatar.png differ diff --git a/assets/themes/toerisme_vlaanderen/bench.svg b/assets/themes/toerisme_vlaanderen/bench.svg new file mode 100644 index 0000000000..945d1632bc --- /dev/null +++ b/assets/themes/toerisme_vlaanderen/bench.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/themes/toerisme_vlaanderen/bicycle_rental.svg b/assets/themes/toerisme_vlaanderen/bicycle_rental.svg new file mode 100644 index 0000000000..b66b2c214e --- /dev/null +++ b/assets/themes/toerisme_vlaanderen/bicycle_rental.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/themes/toerisme_vlaanderen/charging_station_ebike.svg b/assets/themes/toerisme_vlaanderen/charging_station_ebike.svg new file mode 100644 index 0000000000..57c49e71c4 --- /dev/null +++ b/assets/themes/toerisme_vlaanderen/charging_station_ebike.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/themes/toerisme_vlaanderen/custom.css b/assets/themes/toerisme_vlaanderen/custom.css index e030e7ed19..2ea3bdf21e 100644 --- a/assets/themes/toerisme_vlaanderen/custom.css +++ b/assets/themes/toerisme_vlaanderen/custom.css @@ -1,3 +1,22 @@ .technical.questions { display: none -} \ No newline at end of file +} + +@font-face{ + font-family:"FlandersArt"; + src:url("./assets/themes/toerisme_vlaanderen/FlandersArtSans-Light.woff"); +} + +@font-face{ + font-family:"FlandersArtSerif"; + src:url("./assets/themes/toerisme_vlaanderen/FlandersArtSerif-Medium.woff"); +} + +h1, h2, h3, h4 { + font-family: 'FlandersArtSerif', sans-serif; +} + +body { + font-family: 'FlandersArt', sans-serif; +} + diff --git a/assets/themes/toerisme_vlaanderen/cycle_pump.svg b/assets/themes/toerisme_vlaanderen/cycle_pump.svg new file mode 100644 index 0000000000..1284b8c323 --- /dev/null +++ b/assets/themes/toerisme_vlaanderen/cycle_pump.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/themes/toerisme_vlaanderen/cycle_repair.svg b/assets/themes/toerisme_vlaanderen/cycle_repair.svg new file mode 100644 index 0000000000..0fda014ab1 --- /dev/null +++ b/assets/themes/toerisme_vlaanderen/cycle_repair.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/themes/toerisme_vlaanderen/cycle_repair_and_pump.svg b/assets/themes/toerisme_vlaanderen/cycle_repair_and_pump.svg new file mode 100644 index 0000000000..510948ab78 --- /dev/null +++ b/assets/themes/toerisme_vlaanderen/cycle_repair_and_pump.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/themes/toerisme_vlaanderen/license_info.json b/assets/themes/toerisme_vlaanderen/license_info.json index 374abea1e6..0013ceba58 100644 --- a/assets/themes/toerisme_vlaanderen/license_info.json +++ b/assets/themes/toerisme_vlaanderen/license_info.json @@ -1,4 +1,100 @@ [ + { + "path": "FlandersArtSans-Light.woff", + "license": "All rights reserved", + "authors": [ + "Jo De Baerdemaeker " + ], + "sources": [ + "https://www.studiotype.be/fonts/flandersart" + ] + }, + { + "path": "FlandersArtSerif-Medium.woff", + "license": "All rights reserved", + "authors": [ + "Jo De Baerdemaeker " + ], + "sources": [ + "https://www.studiotype.be/fonts/flandersart" + ] + }, + { + "path": "avatar.png", + "license": "Logo", + "authors": [ + "Toerisme Vlaanderen" + ], + "sources": [ + "https://toerismevlaanderen.be/" + ] + }, + { + "path": "bench.svg", + "license": "CC0", + "authors": [ + "Toerisme Vlaanderen" + ], + "sources": [ + "https://toerismevlaanderen.be/pinjepunt", + "https://mapcomplete.osm.be/toerisme_vlaanderen" + ] + }, + { + "path": "bicycle_rental.svg", + "license": "CC0", + "authors": [ + "Toerisme Vlaanderen" + ], + "sources": [ + "https://toerismevlaanderen.be/pinjepunt", + "https://mapcomplete.osm.be/toerisme_vlaanderen" + ] + }, + { + "path": "charging_station_ebike.svg", + "license": "CC0", + "authors": [ + "Toerisme Vlaanderen" + ], + "sources": [ + "https://toerismevlaanderen.be/pinjepunt", + "https://mapcomplete.osm.be/toerisme_vlaanderen" + ] + }, + { + "path": "cycle_pump.svg", + "license": "CC0", + "authors": [ + "Toerisme Vlaanderen" + ], + "sources": [ + "https://toerismevlaanderen.be/pinjepunt", + "https://mapcomplete.osm.be/toerisme_vlaanderen" + ] + }, + { + "path": "cycle_repair.svg", + "license": "CC0", + "authors": [ + "Toerisme Vlaanderen" + ], + "sources": [ + "https://toerismevlaanderen.be/pinjepunt", + "https://mapcomplete.osm.be/toerisme_vlaanderen" + ] + }, + { + "path": "cycle_repair_and_pump.svg", + "license": "CC0", + "authors": [ + "Toerisme Vlaanderen" + ], + "sources": [ + "https://toerismevlaanderen.be/pinjepunt", + "https://mapcomplete.osm.be/toerisme_vlaanderen" + ] + }, { "path": "logo.png", "license": "Logo (all rights reserved)", @@ -8,5 +104,88 @@ "sources": [ "https://www.toerismevlaanderen.be/" ] + }, + { + "path": "logo.svg", + "license": "CC0", + "authors": [], + "sources": [] + }, + { + "path": "observation_platform.svg", + "license": "CC0", + "authors": [ + "Toerisme Vlaanderen" + ], + "sources": [ + "https://toerismevlaanderen.be/pinjepunt", + "https://mapcomplete.osm.be/toerisme_vlaanderen" + ] + }, + { + "path": "observation_tower.svg", + "license": "CC0", + "authors": [ + "Toerisme Vlaanderen" + ], + "sources": [ + "https://toerismevlaanderen.be/pinjepunt", + "https://mapcomplete.osm.be/toerisme_vlaanderen" + ] + }, + { + "path": "picnic_table.svg", + "license": "CC0", + "authors": [ + "Toerisme Vlaanderen" + ], + "sources": [ + "https://toerismevlaanderen.be/pinjepunt", + "https://mapcomplete.osm.be/toerisme_vlaanderen" + ] + }, + { + "path": "playground.svg", + "license": "CC0", + "authors": [ + "Toerisme Vlaanderen" + ], + "sources": [ + "https://toerismevlaanderen.be/pinjepunt", + "https://mapcomplete.osm.be/toerisme_vlaanderen" + ] + }, + { + "path": "toilets.svg", + "license": "CC0", + "authors": [ + "Toerisme Vlaanderen" + ], + "sources": [ + "https://toerismevlaanderen.be/pinjepunt", + "https://mapcomplete.osm.be/toerisme_vlaanderen" + ] + }, + { + "path": "toilets_wheelchair.svg", + "license": "CC0", + "authors": [ + "Toerisme Vlaanderen" + ], + "sources": [ + "https://toerismevlaanderen.be/pinjepunt", + "https://mapcomplete.osm.be/toerisme_vlaanderen" + ] + }, + { + "path": "toilets_wheelchair.svg", + "license": "CC0", + "authors": [ + "Toerisme Vlaanderen" + ], + "sources": [ + "https://toerismevlaanderen.be/pinjepunt", + "https://mapcomplete.osm.be/toerisme_vlaanderen" + ] } ] \ No newline at end of file diff --git a/assets/themes/toerisme_vlaanderen/logo.svg b/assets/themes/toerisme_vlaanderen/logo.svg new file mode 100644 index 0000000000..de59026a4d --- /dev/null +++ b/assets/themes/toerisme_vlaanderen/logo.svg @@ -0,0 +1,63 @@ + + + + + + + + + + + + + + diff --git a/assets/themes/toerisme_vlaanderen/observation_platform.svg b/assets/themes/toerisme_vlaanderen/observation_platform.svg new file mode 100644 index 0000000000..6c7e2edd48 --- /dev/null +++ b/assets/themes/toerisme_vlaanderen/observation_platform.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/themes/toerisme_vlaanderen/observation_tower.svg b/assets/themes/toerisme_vlaanderen/observation_tower.svg new file mode 100644 index 0000000000..13474c0e90 --- /dev/null +++ b/assets/themes/toerisme_vlaanderen/observation_tower.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/themes/toerisme_vlaanderen/picnic_table.svg b/assets/themes/toerisme_vlaanderen/picnic_table.svg new file mode 100644 index 0000000000..a672acb408 --- /dev/null +++ b/assets/themes/toerisme_vlaanderen/picnic_table.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/themes/toerisme_vlaanderen/playground.svg b/assets/themes/toerisme_vlaanderen/playground.svg new file mode 100644 index 0000000000..e383835a69 --- /dev/null +++ b/assets/themes/toerisme_vlaanderen/playground.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/themes/toerisme_vlaanderen/toerisme_vlaanderen.json b/assets/themes/toerisme_vlaanderen/toerisme_vlaanderen.json index 9f5f0c3cc4..1040cfac49 100644 --- a/assets/themes/toerisme_vlaanderen/toerisme_vlaanderen.json +++ b/assets/themes/toerisme_vlaanderen/toerisme_vlaanderen.json @@ -2,28 +2,35 @@ "id": "toerisme_vlaanderen", "credits": "Commissioned theme for Toerisme Vlaandere", "maintainer": "MapComplete", - "version": "0.0.1", + "version": "0.0.3", "customCss": "./assets/themes/toerisme_vlaanderen/custom.css", - "language": [ - "en", - "nl" - ], "mustHaveLanguage": [ "nl" ], "title": { - "nl": "Toeristisch relevante info" + "nl": "Pin je punt" }, "shortDescription": { - "nl": "Een kaart om toeristisch relevante info op aan te duiden" + "nl": "

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

Met de steun van Toerisme Vlaanderen

" }, "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 info verzamelen voor andere wandelaars en fietsers.

Klik op de exacte locatie op de kaart om een punt toe te voegen of op een bestaand punt om het te wijzigen.
We verzamelen:

  1. Laadpunten voor elektrische fietsen
  2. Openbare toiletten
  3. Zit- en picknickbankjes
  4. Uitkijktorens
  5. Fietsherstelpunten
  6. Fietsverhuurpunten
  7. Speeltuinen

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

Een initiatief van de 5 provinciale toeristische organisaties en Toerisme Vlaanderen

Meer informatie op toerismevlaanderen.be

" }, - "icon": "./assets/svg/star.svg", + "extraLink": { + "icon": "./assets/svg/pop-out.svg", + "href": "https://mapcomplete.osm.be/{theme}.html?lat={lat}&lon={lon}&z={zoom}&language={language}", + "newTab": true, + "requirements": [ + "iframe" + ], + "text": { + "nl": "Open in volledig scherm" + } + }, + "icon": "./assets/themes/toerisme_vlaanderen/logo.svg", "startZoom": 8, "startLat": 50.8536, "startLon": 4.433, @@ -31,13 +38,190 @@ "layers": [ { "builtin": [ - "charging_station", - "toilet" + "charging_station" ], "override": { - "minzoom": 14 + "id": "charging_station_ebikes", + "minzoom": 14, + "source": { + "osmTags": { + "and+": [ + "bicycle=yes" + ] + } + }, + "=filter": null, + "=mapRendering": [ + { + "location": [ + "point", + "centroid" + ], + "icon": "./assets/themes/toerisme_vlaanderen/charging_station_ebike.svg" + } + ], + "=presets": [ + { + "tags": [ + "amenity=charging_station", + "motorcar=no", + "bicycle=yes", + "socket:typee=1" + ], + "title": { + "nl": "laadpunt voor elektrische fietsen" + }, + "preciseInput": { + "preferredBackground": "map" + } + } + ] } + }, + { + "#": "All charging stations at a high zoom level, to avoid duplicates", + "builtin": "charging_station", + "override": { + "name": null, + "filter": { + "sameAs": "charging_station_ebike" + }, + "minzoom": 18 + } + }, + { + "builtin": "toilet", + "override": { + "minzoom": 14, + "mapRendering": [ + { + "icon": { + "render": "./assets/themes/toerisme_vlaanderen/toilets.svg", + "=mappings": [ + { + "if": "wheelchair=yes", + "then": "./assets/themes/toerisme_vlaanderen/toilets_wheelchair.svg" + } + ] + } + } + ] + } + }, + { + "builtin": "bench", + "override": { + "minzoom": 14, + "mapRendering": [ + { + "icon": { + "render": "./assets/themes/toerisme_vlaanderen/bench.svg" + } + } + ] + } + }, + { + "builtin": "picnic_table", + "override": { + "minzoom": 14, + "mapRendering": [ + { + "icon": { + "render": "./assets/themes/toerisme_vlaanderen/picnic_table.svg" + } + } + ] + } + }, + { + "builtin": "observation_tower", + "override": { + "minzoom": 14, + "mapRendering": [ + { + "icon": { + "render": "./assets/themes/toerisme_vlaanderen/observation_tower.svg" + } + } + ] + } + }, + { + "builtin": "bike_repair_station", + "override": { + "minzoom": 14, + "=mapRendering": [ + { + "location": [ + "point", + "centroid" + ], + "icon": { + "render": "./assets/themes/toerisme_vlaanderen/cycle_pump.svg", + "mappings": [ + { + "if": { + "and": [ + "service:bicycle:tools=yes", + "service:bicycle:pump=yes" + ] + }, + "then": "./assets/themes/toerisme_vlaanderen/cycle_repair_and_pump.svg" + }, + { + "if": { + "and": [ + "service:bicycle:tools=yes", + "service:bicycle:pump=no" + ] + }, + "then": "./assets/themes/toerisme_vlaanderen/cycle_repair.svg" + } + ] + }, + "iconBadges": [ + { + "if": "service:bicycle:pump:operational_status=broken", + "then": "close:red" + }, + { + "if": { + "or": [ + "access=no", + "access=private" + ] + }, + "then": "invalid" + } + ] + } + ] + }, + "hideTagRenderingsWithLabels": [ + "operator-info", + "bike_repair_station-valves" + ] + }, + "bicycle_rental", + { + "builtin": "playground", + "override": { + "minzoom": 14, + "mapRendering": [ + { + "icon": { + "render": "./assets/themes/toerisme_vlaanderen/playground.svg" + } + } + ] + }, + "hideTagRenderingsWithLabels": [ + "extra" + ] } ], - "hideFromOverview": true + "hideFromOverview": true, + "enableMoreQuests": false, + "enableShareScreen": false } \ No newline at end of file diff --git a/assets/themes/toerisme_vlaanderen/toilets.svg b/assets/themes/toerisme_vlaanderen/toilets.svg new file mode 100644 index 0000000000..22d3dd808e --- /dev/null +++ b/assets/themes/toerisme_vlaanderen/toilets.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/themes/toerisme_vlaanderen/toilets_wheelchair.svg b/assets/themes/toerisme_vlaanderen/toilets_wheelchair.svg new file mode 100644 index 0000000000..b2ba5a29c0 --- /dev/null +++ b/assets/themes/toerisme_vlaanderen/toilets_wheelchair.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/assets/themes/toilets/toilets.json b/assets/themes/toilets/toilets.json index 4af10c9929..306af8c3f6 100644 --- a/assets/themes/toilets/toilets.json +++ b/assets/themes/toilets/toilets.json @@ -10,7 +10,8 @@ "zh_Hant": "開放廁所地圖", "pl": "Mapa otwartych toalet", "it": "Mappa libera delle toilet", - "nb_NO": "Åpent toalettkart" + "nb_NO": "Åpent toalettkart", + "hu": "WC-térkép" }, "description": { "en": "A map of public toilets", @@ -21,22 +22,11 @@ "ja": "公衆トイレの地図", "zh_Hant": "公共廁所的地圖", "pl": "Mapa toalet publicznych", - "it": "Una cartina dei servizi igienici pubblici" + "it": "Una cartina dei servizi igienici pubblici", + "hu": "Nyilvános WC-k térképe" }, "maintainer": "MapComplete", "version": "2020-08-29", - "language": [ - "en", - "de", - "fr", - "nl", - "ru", - "ja", - "zh_Hant", - "pl", - "it", - "nb_NO" - ], "startZoom": 12, "startLat": 51.2095, "startLon": 3.2222, diff --git a/assets/themes/toilets/toilets.svg b/assets/themes/toilets/toilets.svg index 6723f04e35..02ade60d58 100644 --- a/assets/themes/toilets/toilets.svg +++ b/assets/themes/toilets/toilets.svg @@ -1,81 +1,7 @@ - - - - - - - image/svg+xml - - - - - - - - - - - - - - + + + + + + + \ No newline at end of file diff --git a/assets/themes/trees/broadleaved.svg b/assets/themes/trees/broadleaved.svg index 9551a036f3..eaeba67aa9 100644 --- a/assets/themes/trees/broadleaved.svg +++ b/assets/themes/trees/broadleaved.svg @@ -1,22 +1,10 @@ - - - - - - - - - - - - - - - - + + + + + + + + + diff --git a/assets/themes/trees/leafless.svg b/assets/themes/trees/leafless.svg index ada849731f..9ea181fc77 100644 --- a/assets/themes/trees/leafless.svg +++ b/assets/themes/trees/leafless.svg @@ -1,28 +1,17 @@ - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + diff --git a/assets/themes/trees/logo.svg b/assets/themes/trees/logo.svg index b465eeee84..0dc1acf003 100644 --- a/assets/themes/trees/logo.svg +++ b/assets/themes/trees/logo.svg @@ -1,38 +1,14 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + diff --git a/assets/themes/trees/needleleaved.svg b/assets/themes/trees/needleleaved.svg index 8a458d47ac..23d3f528d8 100644 --- a/assets/themes/trees/needleleaved.svg +++ b/assets/themes/trees/needleleaved.svg @@ -1,18 +1,10 @@ - - - - - - - - - - - - - - + + + + + + + + + diff --git a/assets/themes/trees/trees.json b/assets/themes/trees/trees.json index 85b4a69bee..31cabf0e7d 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,21 +36,9 @@ "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", - "en", - "fr", - "it", - "ru", - "ja", - "zh_Hant", - "pl", - "de", - "nb_NO", - "id" - ], "maintainer": "Midgard", "icon": "./assets/themes/trees/logo.svg", "version": "0", diff --git a/assets/themes/trees/unknown.svg b/assets/themes/trees/unknown.svg index 205bad51e6..ae0b356b24 100644 --- a/assets/themes/trees/unknown.svg +++ b/assets/themes/trees/unknown.svg @@ -1,22 +1,11 @@ - - - - - - - - - - - - - - - + + + + + + + + + + diff --git a/assets/themes/uk_addresses/Commemorative_plaque_on_Elizabeth_House_-_geograph.org.uk_-_2693028.jpg b/assets/themes/uk_addresses/Commemorative_plaque_on_Elizabeth_House_-_geograph.org.uk_-_2693028.jpg deleted file mode 100644 index a51b9a8267..0000000000 Binary files a/assets/themes/uk_addresses/Commemorative_plaque_on_Elizabeth_House_-_geograph.org.uk_-_2693028.jpg and /dev/null differ diff --git a/assets/themes/uk_addresses/Plaque,_Raphoe_House_-_geograph.org.uk_-_1925685.jpg b/assets/themes/uk_addresses/Plaque,_Raphoe_House_-_geograph.org.uk_-_1925685.jpg deleted file mode 100644 index c38517431b..0000000000 Binary files a/assets/themes/uk_addresses/Plaque,_Raphoe_House_-_geograph.org.uk_-_1925685.jpg and /dev/null differ diff --git a/assets/themes/uk_addresses/Plaque,_Séamus_Roddy_House_-_geograph.org.uk_-_2000318.jpg b/assets/themes/uk_addresses/Plaque,_Séamus_Roddy_House_-_geograph.org.uk_-_2000318.jpg deleted file mode 100644 index c4c68b90bf..0000000000 Binary files a/assets/themes/uk_addresses/Plaque,_Séamus_Roddy_House_-_geograph.org.uk_-_2000318.jpg and /dev/null differ diff --git a/assets/themes/uk_addresses/housenumber_add.svg b/assets/themes/uk_addresses/housenumber_add.svg index 526c2378c5..c12c0c29e5 100644 --- a/assets/themes/uk_addresses/housenumber_add.svg +++ b/assets/themes/uk_addresses/housenumber_add.svg @@ -1,288 +1,9 @@ - - - - - - image/svg+xml - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + \ No newline at end of file diff --git a/assets/themes/uk_addresses/housenumber_ok.svg b/assets/themes/uk_addresses/housenumber_ok.svg index b3f9447d41..aac6f685f6 100644 --- a/assets/themes/uk_addresses/housenumber_ok.svg +++ b/assets/themes/uk_addresses/housenumber_ok.svg @@ -1,74 +1,9 @@ - - - - - - image/svg+xml - - - - - - - - - - - - - - + + + + + + + + + \ No newline at end of file diff --git a/assets/themes/uk_addresses/housenumber_text.svg b/assets/themes/uk_addresses/housenumber_text.svg index 4becd5d9bf..6559a0be4a 100644 --- a/assets/themes/uk_addresses/housenumber_text.svg +++ b/assets/themes/uk_addresses/housenumber_text.svg @@ -1,73 +1,7 @@ - - - - - - image/svg+xml - - - - - - - - - - OK - + + + + + + + \ No newline at end of file diff --git a/assets/themes/uk_addresses/housenumber_unknown.svg b/assets/themes/uk_addresses/housenumber_unknown.svg index 1d39b086bc..62ca190798 100644 --- a/assets/themes/uk_addresses/housenumber_unknown.svg +++ b/assets/themes/uk_addresses/housenumber_unknown.svg @@ -1,69 +1,8 @@ - - - - - - image/svg+xml - - - - - - - - - - - - + + + + + + + + \ No newline at end of file diff --git a/assets/themes/uk_addresses/housenumber_unknown_small.svg b/assets/themes/uk_addresses/housenumber_unknown_small.svg index ef3a91c53c..08f44c3cbe 100644 --- a/assets/themes/uk_addresses/housenumber_unknown_small.svg +++ b/assets/themes/uk_addresses/housenumber_unknown_small.svg @@ -1,64 +1,8 @@ - - - - - - image/svg+xml - - - - - - - - - - + + + + + + + + \ No newline at end of file diff --git a/assets/themes/uk_addresses/license_info.json b/assets/themes/uk_addresses/license_info.json index 4bcce8003e..046bf73a3d 100644 --- a/assets/themes/uk_addresses/license_info.json +++ b/assets/themes/uk_addresses/license_info.json @@ -1,34 +1,4 @@ [ - { - "path": "Commemorative_plaque_on_Elizabeth_House_-_geograph.org.uk_-_2693028.jpg", - "license": "CC-BY-SA 2.0 Unported", - "authors": [ - "Basher Eyre" - ], - "sources": [ - "https://commons.wikimedia.org/wiki/File:Commemorative_plaque_on_Elizabeth_House_-_geograph.org.uk_-_2693028.jpg" - ] - }, - { - "path": "Plaque,_Raphoe_House_-_geograph.org.uk_-_1925685.jpg", - "license": "CC-BY-SA 2.0", - "authors": [ - "Kenneth Allen" - ], - "sources": [ - "https://commons.wikimedia.org/wiki/File:Plaque,_Raphoe_House_-_geograph.org.uk_-_1925685.jpg" - ] - }, - { - "path": "Plaque,_Séamus_Roddy_House_-_geograph.org.uk_-_2000318.jpg", - "license": "CC-BY-SA 2.0 Unported", - "authors": [ - "Kenneth Allen" - ], - "sources": [ - "https://commons.wikimedia.org/wiki/File:Plaque,_S%C3%A9amus_Roddy_House_-_geograph.org.uk_-_2000318.jpg" - ] - }, { "path": "housenumber_add.svg", "license": "CC0", @@ -77,5 +47,13 @@ "Pieter Vander Vennet" ], "sources": [] + }, + { + "path": "stamp-outline.png", + "license": "CC0", + "authors": [ + "Rob Nickerson" + ], + "sources": [] } ] \ No newline at end of file diff --git a/assets/themes/uk_addresses/stamp-outline.png b/assets/themes/uk_addresses/stamp-outline.png new file mode 100644 index 0000000000..e1bc7f2ded Binary files /dev/null and b/assets/themes/uk_addresses/stamp-outline.png differ diff --git a/assets/themes/uk_addresses/uk_addresses.json b/assets/themes/uk_addresses/uk_addresses.json index 6d3b5f6fcb..4a46793bf1 100644 --- a/assets/themes/uk_addresses/uk_addresses.json +++ b/assets/themes/uk_addresses/uk_addresses.json @@ -1,30 +1,22 @@ { "id": "uk_addresses", "title": { - "en": "UK Addresses", + "en": "Addresses in Great Britain", "de": "Adressen in Großbritannien", "it": "Indirizzi UK", "id": "Alamat Inggris" }, + "mustHaveLanguage": [ + "en" + ], "shortDescription": { - "en": "Help to build an open dataset of UK addresses", + "en": "Help to build an open dataset of addresses in Great Britain", "de": "Helfen Sie beim Aufbau eines offenen Datensatzes britischer Adressen", "it": "Aiuta a costruire un dataset libero per gli indirizzi nel Regno Unito" }, "description": { - "en": "Contribute to OpenStreetMap by filling out address information", - "nl": "Draag bij aan OpenStreetMap door adresinformatie in te vullen", - "de": "Tragen Sie zu OpenStreetMap bei, indem Sie Adressinformationen ausfüllen", - "it": "Contribuisci a OpenStreetMap inserendo le informazioni sull’indirizzo", - "id": "Berkontribusi untuk OpenStreetMap dengan mengisi informasi alamat" + "en": "Help us collect addresses and make them freely available. Each address contributed will be added to OpenStreetMap so you will need to create an account and log in before you start. Please do not copy addresses from the internet or other sources subject to copyright. This website works well on mobile so a good option is to contibute the addresses closest to you." }, - "language": [ - "en", - "de", - "it", - "id", - "nl" - ], "maintainer": "Pieter Vander Vennet, Rob Nickerson, Russ Garrett", "icon": "./assets/themes/uk_addresses/housenumber_unknown.svg", "version": "2021-09-17", @@ -32,7 +24,6 @@ "startLon": 51.52224, "startZoom": 17, "widenFactor": 1.01, - "socialImage": "", "hideFromOverview": true, "clustering": { "minNeededFeatures": 25, @@ -63,9 +54,9 @@ }, "minzoom": 18, "calculatedTags": [ - "_has_address=feat.overlapWith('addresses').length > 0" + "_has_address=feat.overlapWith('address').length > 0" ], - "#mapRendering": [ + "mapRendering": [ { "width": 2, "color": { @@ -79,45 +70,52 @@ } } ], - "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": [ + "urpn_count~*", + "id!~node/.*" + ] + }, "geoJsonZoomLevel": 16, "isOsmCache": false }, "name": "Addresses to check", - "minzoom": 14, + "minzoom": 18, "title": { "render": { - "en": "Address to be determined", - "id": "Alamat yang diketahui" + "en": "This address needs adding" } }, "tagRenderings": [ { "id": "uk_addresses_explanation", "render": { - "en": "There probably is an address here" + "en": "We think there should be an address here. Please click below to add it." } }, { "id": "uk_addresses_embedding_outline", - "render": "An outline embedding this point with an address already exists in OpenStreetMap.
This object has address {_embedding_object:addr:street} {_embedding_object:addr:housenumber}", + "render": "Warning: This point lies within a building or area for which we already have an address. You should only add this address if it is different.
The number and street name we have for the existing address is {_embedding_object:addr:housenumber} {_embedding_object:addr:street}", "mappings": [ { "if": "_embedding_object:id=true", "then": { - "en": "The INSPIRE-polygon containing this point has at least one address contained" + "en": "Warning: The property boundary containing this point already contains at least one recorded address. You should only add this address if it is different." } }, { "if": "_embedding_object:id=false", "then": { - "en": "The INSPIRE-polygon containing this point has no addresses contained" + "en": "We checked our data and found no other address within the same property boundary. If you know the details for this address, please add it." } } ], @@ -125,11 +123,11 @@ }, { "id": "uk_addresses_import_button", - "render": "{import_button(addresses,ref:inspireid=$inspireid, Add this address, ./assets/themes/uk_addresses/housenumber_add.svg)}" + "render": "{import_button(address,urpn_count=$urpn_count;ref:GB:uprn=$ref:GB:uprn$, Add this address, ./assets/themes/uk_addresses/housenumber_add.svg)}" } ], "calculatedTags": [ - "_embedding_object=feat.overlapWith('addresses')[0]?.feat?.properties ?? null", + "_embedding_object=feat.overlapWith('address')[0]?.feat?.properties ?? null", "_embedding_object:addr:housenumber=JSON.parse(feat.properties._embedding_object)?.['addr:housenumber']", "_embedding_object:addr:street=JSON.parse(feat.properties._embedding_object)?.['addr:street']", "_embedding_inspire_polygon_has_address=feat.overlapWith('raw_inspire_polygons')[0]?.feat?.properties?._has_address", @@ -140,6 +138,7 @@ "id": "to_handle", "options": [ { + "default": true, "question": "Only show non-matched objects", "osmTags": { "and": [ @@ -188,56 +187,140 @@ "description": "Alamat" }, { - "id": "addresses", + "id": "address", "name": { - "en": "Known addresses in OSM", - "de": "Bekannte Adressen in OSM" + "en": "Known addresses in OSM" }, "minzoom": 18, "source": { "osmTags": { "or": [ + "addr:unit~*", + "addr:flats~*", + "addr:housename~*", "addr:housenumber~*", + "addr:place~*", + "addr:substreet~*", "addr:street~*", - "ref:inspireid~*" + "addr:parentstreet~*", + "addr:suburb~*", + "addr:city~*", + "addr:postcode~*", + "fixme:addr~*", + "urpn_count~*" ] } }, + "title": { + "render": { + "en": "Review and update the address" + } + }, + "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]" ], - "title": { - "render": { - "en": "Known address", - "de": "Bekannte Adresse" - } - }, - "description": { - "en": "Addresses", - "nl": "Adressen", - "de": "Adressen" - }, "tagRenderings": [ + "questions", { - "id": "uk_addresses_explanation_osm", + "id": "preview", "render": { - "en": "This address is saved in OpenStreetMap", - "de": "Diese Adresse ist in OpenStreetMap gespeichert" + "en": "
The envelope below shows the address that we have recorded. You can change this by answering any remaining questions above, or by clicking the pencil icons below. We do not need you to provide a recipient's name or any of the parts shown in [blue].
{addr:unit} {addr:housename}
{addr:housenumber} {addr:street}
{addr:parentstreet}
[Suburb]
[Town]
[Postal code]
" + }, + "mappings": [ + { + "#": "ignore-image-in-then", + "if": "addr:substreet~*", + "then": "
The envelope below shows the address that we have recorded. You can change this by answering any remaining questions above, or by clicking the pencil icons below. We do not need you to provide a recipient's name or any of the parts shown in [blue].
{addr:unit} {addr:housename}
{addr:housenumber} {addr:substreet}
{addr:street}
{addr:parentstreet}
[Suburb]
[Town]
[Postal code]
" + } + ] + }, + { + "id": "uk_addresses_unit", + "render": "{addr:unit}", + "question": { + "en": "What is the sub-unit for this address?
Some named building or large complexes are split into sub-units (e.g. \"1\", \"Flat 2\", \"Unit C\")
" + }, + "freeform": { + "key": "addr:unit" + }, + "mappings": [ + { + "if": "addr:unit=", + "then": "
Sub-unit (e.g. \"1\", \"Flat 2\", \"Unit C\")
", + "hideInAnswer": true + }, + { + "if": "addr:unit=", + "then": "There is no sub-unit within this address" + } + ], + "condition": { + "or": [ + "addr:housenumber~*", + "addr:housename~*", + "addr:substreet~*" + ] } }, { - "id": "uk_addresses_housenumber", - "render": { - "en": "The housenumber is {addr:housenumber}", - "nl": "Het huisnummer is {addr:housenumber}", - "de": "Die Hausnummer ist {addr:housenumber}" + "id": "uk_addresses_housename", + "question": "What is the house or building name for this address?
As shown on a sign (e.g. \"Rose Cottage\", \"Broadcasting House\", \"Acme Corp HQ\"). Please do NOT add names of the people who live here!
", + "render": "{addr:housename}", + "freeform": { + "key": "addr:housename", + "addExtraTags": [ + "nohousename=" + ] }, + "mappings": [ + { + "if": { + "and": [ + "nohousename=yes", + "addr:housename=" + ] + }, + "then": "
House or building name
", + "hideInAnswer": true + }, + { + "if": { + "and": [ + "nohousename=yes", + "addr:housename=" + ] + }, + "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=", + "nohousenumber!=yes" + ] + }, + "then": "
House or building name
", + "hideInAnswer": true + } + ] + }, + { + "id": "uk_addresses_housenumber", + "render": "{addr:housenumber}", "question": { - "en": "What is the number of this house?", - "de": "Wie lautet die Nummer dieses Hauses?" + "en": "What is the house or building number for this address?" }, "freeform": { "key": "addr:housenumber", @@ -249,7 +332,20 @@ { "if": { "and": [ - "nohousenumber=yes" + "nohousenumber=yes", + "addr:housenumber=" + ] + }, + "then": { + "en": "
Number (e.g. 1, 1A, 2)
" + }, + "hideInAnswer": true + }, + { + "if": { + "and": [ + "nohousenumber=yes", + "addr:housenumber=" ] }, "then": { @@ -261,41 +357,89 @@ ] }, { - "id": "uk_addresses_housename", - "question": "What is the name of this house?
This is normally indicated on a plaque.
Do NOT add names of inhabitants!
", - "render": "This house is named {addr:housename}", + "id": "uk_addresses_placename", + "question": { + "en": "What is the place or locality for this address?
This is additional information that appears before (or instead of) a street name in the address (e.g. \"The Cross\", \"West Business Park\", \"Castle Mews\")
" + }, + "render": { + "en": "{addr:substreet}" + }, "freeform": { - "key": "addr:housename", + "key": "addr:substreet", "addExtraTags": [ - "nohousename=" + "addr:parentstreet:={addr:street}", + "addr:street=" ] }, "mappings": [ { - "if": "nohousename=yes", - "then": "This building has no housename" + "if": "addr:substreet=", + "then": { + "en": "
Place (e.g. \"Castle Mews\", \"West Business Park\")
" + }, + "hideInAnswer": true }, { - "if": { + "if": "addr:substreet=", + "then": { + "en": "No extra place name is given or needed" + } + } + ], + "condition": "addr:parentstreet=" + }, + { + "id": "uk_addresses_placename_with_parent", + "question": { + "en": "What is the place or locality for this address?
This is additional information that appears before (or instead of) a street name in the address (e.g. \"The Cross\", \"West Business Park\", \"Castle Mews\")
" + }, + "render": { + "en": "{addr:substreet}" + }, + "freeform": { + "key": "addr:substreet", + "addExtraTags": [ + "addr:street=" + ] + }, + "mappings": [ + { + "if": "addr:substreet=", + "then": { + "en": "
Place (e.g. \"Castle Mews\", \"West Business Park\")
" + }, + "hideInAnswer": true + }, + { + "if": "addr:substreet=", + "then": { + "en": "No extra place name is given or needed" + } + } + ], + "condition": { + "or": [ + { "and": [ - "addr:housename=", - "nohousenumber!=yes" + "addr:parentstreet~*", + "addr:street=" ] }, - "then": "This building has no housename", - "hideInAnswer": true - } - ] + { + "and": [ + "addr:parentstreet~*", + "addr:street~*", + "addr:substreet~*" + ] + } + ] + } }, { "id": "uk_addresses_street", - "render": { - "en": "This address is in street {addr:street}", - "de": "Diese Adresse befindet sich in der Straße {addr:street}" - }, + "render": "{addr:street}", "question": { - "en": "What street is this address located in?", - "de": "In welcher Straße befindet sich diese Adresse?" + "en": "What is the street name for this address?" }, "freeform": { "key": "addr:street" @@ -303,54 +447,104 @@ "mappings": [ { "if": "addr:street:={_closest_street:0:name}", - "then": "Located in {_closest_street:0:name}", + "then": "{_closest_street:0:name}", "hideInAnswer": "_closest_street:0:name=" }, { "if": "addr:street:={_closest_street:1:name}", - "then": "Located in {_closest_street:1:name}", + "then": "{_closest_street:1:name}", "hideInAnswer": "_closest_street:1:name=" }, { "if": "addr:street:={_closest_street:2:name}", - "then": "Located in {_closest_street:2:name}", + "then": "{_closest_street:2:name}", "hideInAnswer": "_closest_street:2:name=" } ], "condition": { - "and": [ - "nohousenumber!~yes" + "or": [ + "addr:street~*", + "addr:substreet=" + ] + } + }, + { + "id": "uk_addresses_parentstreet", + "render": "{addr:parentstreet}", + "question": { + "en": "What is the parent street name for this address?
This street name will appear after the place name or first street name in the address
" + }, + "freeform": { + "key": "addr:parentstreet" + }, + "mappings": [ + { + "if": "addr:parentstreet=", + "then": { + "en": "
Parent street name
" + }, + "hideInAnswer": true + }, + { + "if": "addr:parentstreet=", + "then": "No parent street name is needed within this address" + }, + { + "if": "addr:parentstreet:={_closest_street:0:name}", + "then": "{_closest_street:0:name}", + "hideInAnswer": "_closest_street:0:name=" + }, + { + "if": "addr:parentstreet:={_closest_street:1:name}", + "then": "{_closest_street:1:name}", + "hideInAnswer": "_closest_street:1:name=" + }, + { + "if": "addr:parentstreet:={_closest_street:2:name}", + "then": "{_closest_street:2:name}", + "hideInAnswer": "_closest_street:2:name=" + } + ], + "condition": { + "or": [ + "addr:parentstreet~*", + "addr:substreet~*" ] } }, { "id": "fixme", - "render": "Fixme description{fixme}", + "render": "This address is complicated. We have recorded the following description: {fixme:addr}", "question": { - "en": "What should be fixed here? Please explain" + "en": "Please explain what the address is so that someone else can look at it" }, "freeform": { - "key": "fixme" + "key": "fixme:addr" }, "mappings": [ { - "if": "fixme=", - "then": "No fixme - write something here to explain complicated cases" + "if": "fixme:addr=", + "then": "Complicated address? Please click the pencil and write some text to describe the situation. You can also add a photo below if that helps", + "hideInAnswer": true } ] }, - "questions", { "id": "address-sign-image", "render": { - "en": "{image_carousel(image:address)}
{image_upload(image:address, Add image of the address)}" + "en": "{image_carousel(image:address)}
{image_upload(image:address, Too complex? Add a photo of the address)}" } } ], "mapRendering": [ { + "label": { + "render": "
{addr:housenumber}
", + "condition": "addr:housenumber~*" + }, + "iconSize": "50,50,center", "icon": { - "render": "./assets/themes/uk_addresses/housenumber_ok.svg", + "render": "./assets/layers/address/housenumber_blank.svg", "mappings": [ { "if": { @@ -368,11 +562,9 @@ } ] }, - "iconSize": { - "render": "40,40,center" - }, "location": [ - "point" + "point", + "centroid" ] }, { @@ -396,33 +588,12 @@ ] }, "width": { - "render": "8" + "render": "3" } } ] }, - { - "id": "named_streets", - "minzoom": 18, - "source": { - "osmTags": { - "and": [ - "highway~*", - "name~*" - ] - } - }, - "mapRendering": [ - { - "color": { - "render": "#ccc" - }, - "width": { - "render": "0" - } - } - ] - } + "named_streets" ], "enableShareScreen": false, "enableMoreQuests": false diff --git a/assets/themes/waste/waste.json b/assets/themes/waste/waste.json new file mode 100644 index 0000000000..1998b893a8 --- /dev/null +++ b/assets/themes/waste/waste.json @@ -0,0 +1,32 @@ +{ + "id": "waste", + "maintainer": "", + "version": "2022-01-19", + "language": [ + "en", + "nl" + ], + "title": { + "en": "Waste", + "nl": "Afval" + }, + "description": { + "en": "Map showing waste baskets and recycling facilities.", + "nl": "Kaart met afvalbakken en recyclingfaciliteiten." + }, + "icon": "./assets/layers/recycling/recycling-14.svg", + "startZoom": 19, + "startLat": 53.24865, + "startLon": 6.60075, + "layers": [ + { + "builtin": "waste_basket", + "override": { + "minzoom": 18, + "minzoomVisible": 18 + } + }, + "recycling", + "waste_disposal" + ] +} \ No newline at end of file diff --git a/assets/themes/waste/waste_assen.json b/assets/themes/waste/waste_assen.json new file mode 100644 index 0000000000..810c64a317 --- /dev/null +++ b/assets/themes/waste/waste_assen.json @@ -0,0 +1,109 @@ +{ + "id": "waste_assen", + "maintainer": "Robin van der Linde", + "version": "2022-01-09", + "language": [ + "en", + "nl" + ], + "title": { + "nl": "Afval - Assen" + }, + "description": { + "nl": "Kaart met afvalbakken en recyclingfaciliteiten + een dataset voor Assen." + }, + "icon": "./assets/layers/recycling/recycling-14.svg", + "startZoom": 19, + "startLat": 53.24865, + "startLon": 6.60075, + "layers": [ + { + "builtin": "waste_basket", + "override": { + "minzoom": 12 + } + }, + { + "id": "waste_basket_assen", + "name": "Dataset Afvalbakken Assen", + "source": { + "osmTags": "OBJECTID~*", + "geoJson": "https://opendata.arcgis.com/datasets/5b6953ac5a9d4616a7dc75ab0beeac2f_0.geojson", + "isOsmCache": false + }, + "calculatedTags": [ + "_closest_osm_waste_basket=feat.closest('waste_basket')?.properties?.id", + "_closest_osm_waste_basket_distance=feat.distanceTo(feat.properties._closest_osm_waste_basket)", + "_has_closeby_feature=Number(feat.properties._closest_osm_waste_basket_distance) < 10 ? 'yes' : 'no'" + ], + "title": "Afvalbak in dataset", + "mapRendering": [ + { + "location": [ + "point", + "centroid" + ], + "icon": { + "render": "circle:red", + "mappings": [ + { + "if": "_has_closeby_feature=yes", + "then": "circle:#008000aa" + } + ] + }, + "iconSize": "20,20,center" + } + ], + "tagRenderings": [ + "all_tags" + ] + }, + "recycling", + { + "id": "recycling_assen", + "name": "Dataset Recyclingcontainers Assen", + "source": { + "osmTags": "OBJECTID~*", + "geoJson": "https://opendata.arcgis.com/datasets/edb893998e27461b8ed82aad9854d27d_0.geojson", + "isOsmCache": false + }, + "calculatedTags": [ + "_closest_osm_recycling=feat.closest('recycling')?.properties?.id", + "_closest_osm_waste_disposal=feat.closest('waste_disposal')?.properties?.id", + "_closest_osm_recycling_distance=feat.distanceTo(feat.properties._closest_osm_recycling)", + "_closest_osm_waste_disposal_distance=feat.distanceTo(feat.properties._closest_osm_waste_disposal)", + "_has_closeby_recycling=Number(feat.properties._closest_osm_recycling_distance) < 10 ? 'yes' : 'no'", + "_has_closeby_waste_disposal=Number(feat.properties._closest_osm_waste_disposal_distance) < 10 ? 'yes' : 'no'" + ], + "title": "Recyclingcontainer in dataset", + "mapRendering": [ + { + "location": [ + "point", + "centroid" + ], + "icon": { + "render": "circle:red", + "mappings": [ + { + "if": "_has_closeby_recycling=yes", + "then": "circle:#008000aa" + }, + { + "if": "_has_closeby_waste_disposal=yes", + "then": "circle:#008000aa" + } + ] + }, + "iconSize": "20,20,center" + } + ], + "tagRenderings": [ + "all_tags" + ] + }, + "waste_disposal" + ], + "hideFromOverview": true +} \ No newline at end of file diff --git a/assets/themes/waste_basket/waste_basket.json b/assets/themes/waste_basket/waste_basket.json index 53b1e5935a..d312125a82 100644 --- a/assets/themes/waste_basket/waste_basket.json +++ b/assets/themes/waste_basket/waste_basket.json @@ -4,26 +4,27 @@ "en": "Waste Basket", "nl": "Vuilnisbak", "de": "Abfalleimer", - "it": "Cestino dei rifiuti" + "it": "Cestino dei rifiuti", + "zh_Hant": "垃圾筒", + "hu": "Kukatérkép", + "id": "Keranjang Sampah" }, "shortDescription": { "en": "A map with waste baskets", "nl": "Een kaart met vuilnisbakken", "de": "Eine Karte mit Abfalleimern", - "it": "Una cartina dei cestini dei rifiuti" + "it": "Una cartina dei cestini dei rifiuti", + "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" + "it": "In questa cartina troverai i cestini dei rifiuti nei tuoi paraggi. Se manca un cestino, puoi inserirlo tu stesso", + "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" - ], "maintainer": "", "icon": "./assets/themes/waste_basket/waste_basket.svg", "version": "2021-07-07", @@ -31,7 +32,6 @@ "startLon": 0, "startZoom": 1, "widenFactor": 2, - "socialImage": "", "layers": [ { "builtin": "waste_basket", diff --git a/assets/themes/waste_basket/waste_basket.svg b/assets/themes/waste_basket/waste_basket.svg index aee40379ce..9487546401 100644 --- a/assets/themes/waste_basket/waste_basket.svg +++ b/assets/themes/waste_basket/waste_basket.svg @@ -1,25 +1,6 @@ - - - - - - image/svg+xml - - - - - - - - - + + + + + + \ No newline at end of file diff --git a/assets/translators.json b/assets/translators.json new file mode 100644 index 0000000000..b2d361f78f --- /dev/null +++ b/assets/translators.json @@ -0,0 +1 @@ +{"contributors":[{"commits":60,"contributor":"danieldegroot2"},{"commits":41,"contributor":"kjon"},{"commits":29,"contributor":"Artem"},{"commits":23,"contributor":"Pieter Vander Vennet"},{"commits":22,"contributor":"Supaplex"},{"commits":22,"contributor":"Marco"},{"commits":22,"contributor":"Allan Nordhøy"},{"commits":21,"contributor":"Babos Gábor"},{"commits":21,"contributor":"Anonymous"},{"commits":15,"contributor":"WaldiS"},{"commits":14,"contributor":"J. Lavoie"},{"commits":13,"contributor":"SC"},{"commits":10,"contributor":"Reza Almanda"},{"commits":9,"contributor":"Jacque Fresco"},{"commits":8,"contributor":"LeJun"},{"commits":8,"contributor":"Irina"},{"commits":6,"contributor":"Nikolay Korotkiy"},{"commits":6,"contributor":"William Weber Berrutti"},{"commits":6,"contributor":"lvgx"},{"commits":5,"contributor":"Piotr"},{"commits":5,"contributor":"Robin van der Linde"},{"commits":5,"contributor":"seppesantens"},{"commits":5,"contributor":"Vinicius"},{"commits":5,"contributor":"Alexey Shabanov"},{"commits":4,"contributor":"Jeff Huang"},{"commits":4,"contributor":"Joost"},{"commits":4,"contributor":"Adolfo Jayme Barrientos"},{"commits":4,"contributor":"Polgár Sándor"},{"commits":4,"contributor":"David Haberthür"},{"commits":4,"contributor":"phlostically"},{"commits":4,"contributor":"Jan Zabel"},{"commits":4,"contributor":"Fabio Bettani"},{"commits":3,"contributor":"Sasha"},{"commits":3,"contributor":"Jose Luis Infante"},{"commits":3,"contributor":"Francois"},{"commits":3,"contributor":"Eduardo Addad de Oliveira"},{"commits":3,"contributor":"Wiktor Przybylski"},{"commits":3,"contributor":"Erik Palm"},{"commits":3,"contributor":"vankos"},{"commits":3,"contributor":"JCGF-OSM"},{"commits":3,"contributor":"Hiroshi Miura"},{"commits":3,"contributor":"SiegbjornSitumeang"},{"commits":2,"contributor":"わたなべけんご"},{"commits":2,"contributor":"Mateusz Konieczny"},{"commits":2,"contributor":"Kristoffer Grundström"},{"commits":2,"contributor":"el_libre como el chaval"},{"commits":2,"contributor":"Sebastian Kürten"},{"commits":2,"contributor":"Damian Tokarski"},{"commits":2,"contributor":"mic140"},{"commits":2,"contributor":"Heiko"},{"commits":2,"contributor":"Leo Alcaraz"},{"commits":1,"contributor":"sparky-oxford"},{"commits":1,"contributor":"jcn706"},{"commits":1,"contributor":"whatismoss"},{"commits":1,"contributor":"LePirlouit"},{"commits":1,"contributor":"SoftwareByRedline"},{"commits":1,"contributor":"plic ploc"},{"commits":1,"contributor":"Janina Ellinghaus"},{"commits":1,"contributor":"ssantos"},{"commits":1,"contributor":"Andre Fajar N"},{"commits":1,"contributor":"Ahen Purwakarta"},{"commits":1,"contributor":"Luna Jernberg"},{"commits":1,"contributor":"Rodrigo Tavares"},{"commits":1,"contributor":"liimee"},{"commits":1,"contributor":"Michał Targoński"},{"commits":1,"contributor":"Sean Young"},{"commits":1,"contributor":"Damian Pułka"},{"commits":1,"contributor":"Iváns"},{"commits":1,"contributor":"快乐的老鼠宝宝"},{"commits":1,"contributor":"Eric Armijo"},{"commits":1,"contributor":"Beardhatcode"},{"commits":1,"contributor":"riiga"},{"commits":1,"contributor":"Carlos Ramos Carreño"}]} \ No newline at end of file diff --git a/automaton.html b/automaton.html new file mode 100644 index 0000000000..d4c9ffb3e7 --- /dev/null +++ b/automaton.html @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + MapComplete Automaton + + + + + + + + + + + + + + + + + + + + + +
Loading...
+ + + + + + diff --git a/css/index-tailwind-output.css b/css/index-tailwind-output.css index 72f9f9cfb1..ca9b1f4735 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; } @@ -756,18 +756,22 @@ video { right: 33.333333%; } +.top-4 { + top: 1rem; +} + .top-0 { top: 0px; } -.left-0 { - left: 0px; -} - .right-0 { right: 0px; } +.left-0 { + left: 0px; +} + .isolate { isolation: isolate; } @@ -796,14 +800,14 @@ video { margin: 2rem; } -.m-11 { - margin: 2.75rem; -} - .m-1 { margin: 0.25rem; } +.m-4 { + margin: 1rem; +} + .m-5 { margin: 1.25rem; } @@ -816,18 +820,14 @@ video { margin: 0px; } -.m-2 { - margin: 0.5rem; -} - -.m-4 { - margin: 1rem; -} - .m-3 { margin: 0.75rem; } +.m-2 { + margin: 0.5rem; +} + .m-6 { margin: 1.5rem; } @@ -851,47 +851,58 @@ video { margin-bottom: 0.75rem; } -.mx-4 { - margin-left: 1rem; - margin-right: 1rem; -} - .ml-3 { margin-left: 0.75rem; } -.mt-1 { - margin-top: 0.25rem; -} - -.mr-4 { - margin-right: 1rem; +.mb-4 { + margin-bottom: 1rem; } .mt-4 { margin-top: 1rem; } -.ml-2 { - margin-left: 0.5rem; -} - -.mt-3 { - margin-top: 0.75rem; -} - -.ml-8 { - margin-left: 2rem; -} - .mr-2 { margin-right: 0.5rem; } +.mt-1 { + margin-top: 0.25rem; +} + +.ml-4 { + margin-left: 1rem; +} + +.mb-24 { + margin-bottom: 6rem; +} + +.mr-4 { + margin-right: 1rem; +} + .mt-2 { margin-top: 0.5rem; } +.mb-2 { + margin-bottom: 0.5rem; +} + +.ml-2 { + margin-left: 0.5rem; +} + +.ml-12 { + margin-left: 3rem; +} + +.mt-3 { + margin-top: 0.75rem; +} + .mb-10 { margin-bottom: 2.5rem; } @@ -900,10 +911,6 @@ video { margin-top: 0px; } -.mb-4 { - margin-bottom: 1rem; -} - .mb-8 { margin-bottom: 2rem; } @@ -912,20 +919,16 @@ video { margin-left: 0.25rem; } -.mr-0 { - margin-right: 0px; -} - .mb-1 { margin-bottom: 0.25rem; } -.mr-3 { - margin-right: 0.75rem; +.mr-0 { + margin-right: 0px; } -.mb-2 { - margin-bottom: 0.5rem; +.mr-3 { + margin-right: 0.75rem; } .mb-0 { @@ -964,6 +967,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; } @@ -972,6 +1007,10 @@ video { display: contents; } +.list-item { + display: list-item; +} + .hidden { display: none; } @@ -988,6 +1027,10 @@ video { height: 2.5rem; } +.h-12 { + height: 3rem; +} + .h-8 { height: 2rem; } @@ -996,10 +1039,6 @@ video { height: 50%; } -.h-12 { - height: 3rem; -} - .h-screen { height: 100vh; } @@ -1008,6 +1047,10 @@ video { height: 2.75rem; } +.h-6 { + height: 1.5rem; +} + .h-32 { height: 8rem; } @@ -1016,18 +1059,34 @@ video { height: 4rem; } +.h-4 { + height: 1rem; +} + .h-0 { height: 0px; } -.h-6 { - height: 1.5rem; +.h-40 { + height: 10rem; +} + +.h-64 { + height: 16rem; } .h-3 { height: 0.75rem; } +.h-48 { + height: 12rem; +} + +.max-h-7 { + max-height: 1.75rem; +} + .max-h-20vh { max-height: 20vh; } @@ -1040,14 +1099,34 @@ video { max-height: 1rem; } +.max-h-8 { + max-height: 2rem; +} + +.max-h-6 { + max-height: 1.5rem; +} + .w-full { width: 100%; } +.w-24 { + width: 6rem; +} + +.w-6 { + width: 1.5rem; +} + .w-10 { width: 2.5rem; } +.w-12 { + width: 3rem; +} + .w-8 { width: 2rem; } @@ -1056,10 +1135,6 @@ video { width: 0px; } -.w-12 { - width: 3rem; -} - .w-screen { width: 100vw; } @@ -1068,6 +1143,10 @@ video { width: 2.75rem; } +.w-4 { + width: 1rem; +} + .w-16 { width: 4rem; } @@ -1078,8 +1157,8 @@ video { width: min-content; } -.w-6 { - width: 1.5rem; +.w-auto { + width: auto; } .w-max { @@ -1094,10 +1173,6 @@ video { min-width: min-content; } -.min-w-\[20em\] { - min-width: 20em; -} - .max-w-full { max-width: 100%; } @@ -1114,6 +1189,10 @@ video { flex-shrink: 0; } +.flex-shrink { + flex-shrink: 1; +} + .flex-grow { flex-grow: 1; } @@ -1184,6 +1263,10 @@ video { flex-wrap: wrap; } +.flex-wrap-reverse { + flex-wrap: wrap-reverse; +} + .items-end { align-items: flex-end; } @@ -1196,6 +1279,10 @@ video { align-items: baseline; } +.items-stretch { + align-items: stretch; +} + .justify-end { justify-content: flex-end; } @@ -1212,6 +1299,16 @@ video { gap: 1rem; } +.space-x-2 > :not([hidden]) ~ :not([hidden]) { + --tw-space-x-reverse: 0; + margin-right: calc(0.5rem * var(--tw-space-x-reverse)); + margin-left: calc(0.5rem * calc(1 - var(--tw-space-x-reverse))); +} + +.self-end { + align-self: flex-end; +} + .self-center { align-self: center; } @@ -1224,6 +1321,10 @@ video { overflow: hidden; } +.overflow-scroll { + overflow: scroll; +} + .overflow-y-auto { overflow-y: auto; } @@ -1267,12 +1368,25 @@ 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-2 { + border-width: 2px; } .border { @@ -1283,14 +1397,19 @@ video { border-width: 4px; } -.border-2 { - border-width: 2px; +.border-l-4 { + border-left-width: 4px; } .border-b { border-bottom-width: 1px; } +.border-gray-500 { + --tw-border-opacity: 1; + border-color: rgba(107, 114, 128, var(--tw-border-opacity)); +} + .border-black { --tw-border-opacity: 1; border-color: rgba(0, 0, 0, var(--tw-border-opacity)); @@ -1301,6 +1420,11 @@ video { border-color: rgba(209, 213, 219, var(--tw-border-opacity)); } +.border-red-300 { + --tw-border-opacity: 1; + border-color: rgba(252, 165, 165, var(--tw-border-opacity)); +} + .border-gray-400 { --tw-border-opacity: 1; border-color: rgba(156, 163, 175, var(--tw-border-opacity)); @@ -1320,11 +1444,6 @@ video { background-color: rgba(255, 255, 255, var(--tw-bg-opacity)); } -.bg-blue-100 { - --tw-bg-opacity: 1; - background-color: rgba(219, 234, 254, var(--tw-bg-opacity)); -} - .bg-gray-400 { --tw-bg-opacity: 1; background-color: rgba(156, 163, 175, var(--tw-bg-opacity)); @@ -1335,11 +1454,6 @@ video { background-color: rgba(224, 231, 255, var(--tw-bg-opacity)); } -.bg-gray-300 { - --tw-bg-opacity: 1; - background-color: rgba(209, 213, 219, var(--tw-bg-opacity)); -} - .bg-black { --tw-bg-opacity: 1; background-color: rgba(0, 0, 0, var(--tw-bg-opacity)); @@ -1355,6 +1469,11 @@ video { background-color: rgba(243, 244, 246, var(--tw-bg-opacity)); } +.bg-gray-300 { + --tw-bg-opacity: 1; + background-color: rgba(209, 213, 219, var(--tw-bg-opacity)); +} + .bg-red-500 { --tw-bg-opacity: 1; background-color: rgba(239, 68, 68, var(--tw-bg-opacity)); @@ -1373,10 +1492,6 @@ video { padding: 1rem; } -.p-1\.5 { - padding: 0.375rem; -} - .p-1 { padding: 0.25rem; } @@ -1389,10 +1504,31 @@ video { padding: 0px; } +.p-1\.5 { + padding: 0.375rem; +} + .p-0\.5 { padding: 0.125rem; } +.p-8 { + padding: 2rem; +} + +.px-0 { + padding-left: 0px; + padding-right: 0px; +} + +.pb-12 { + padding-bottom: 3rem; +} + +.pl-4 { + padding-left: 1rem; +} + .pl-2 { padding-left: 0.5rem; } @@ -1417,6 +1553,18 @@ video { padding-right: 0.25rem; } +.pt-2 { + padding-top: 0.5rem; +} + +.pb-2 { + padding-bottom: 0.5rem; +} + +.pt-0 { + padding-top: 0px; +} + .pl-5 { padding-left: 1.25rem; } @@ -1425,10 +1573,6 @@ video { padding-right: 0.75rem; } -.pl-4 { - padding-left: 1rem; -} - .pr-4 { padding-right: 1rem; } @@ -1445,14 +1589,6 @@ video { padding-top: 0.125rem; } -.pt-0 { - padding-top: 0px; -} - -.pb-2 { - padding-bottom: 0.5rem; -} - .pr-2 { padding-right: 0.5rem; } @@ -1461,10 +1597,6 @@ video { padding-left: 1.5rem; } -.pt-2 { - padding-top: 0.5rem; -} - .text-center { text-align: center; } @@ -1487,26 +1619,31 @@ video { line-height: 1.75rem; } -.text-sm { - font-size: 0.875rem; - line-height: 1.25rem; -} - .text-2xl { font-size: 1.5rem; line-height: 2rem; } -.text-base { - font-size: 1rem; - line-height: 1.5rem; -} - .text-4xl { font-size: 2.25rem; line-height: 2.5rem; } +.text-sm { + font-size: 0.875rem; + line-height: 1.25rem; +} + +.text-3xl { + font-size: 1.875rem; + line-height: 2.25rem; +} + +.text-base { + font-size: 1rem; + line-height: 1.5rem; +} + .font-bold { font-weight: 700; } @@ -1531,6 +1668,10 @@ video { text-transform: lowercase; } +.capitalize { + text-transform: capitalize; +} + .italic { font-style: italic; } @@ -1585,6 +1726,10 @@ video { text-decoration: underline; } +.line-through { + text-decoration: line-through; +} + .opacity-50 { opacity: 0.5; } @@ -1627,6 +1772,10 @@ video { filter: var(--tw-filter); } +.\!filter { + filter: var(--tw-filter) !important; +} + .transition { transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter; transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter; @@ -1641,18 +1790,16 @@ video { transition-duration: 150ms; } -.transition-opacity { - transition-property: opacity; +.transition-shadow { + transition-property: box-shadow; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); 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; +.transition-opacity { + transition-property: opacity; + transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); + transition-duration: 150ms; } .duration-500 { @@ -1671,112 +1818,44 @@ video { z-index: 10001 } -.btn { - display: inline-flex; - justify-content: center; - padding-top: 0.5rem; - padding-bottom: 0.5rem; - padding-left: 1rem; - padding-right: 1rem; - border-width: 1px; - border-color: transparent; - --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); - border-radius: 1.5rem; - --tw-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); - box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); - --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); - --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color); - box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); - --tw-ring-opacity: 1; - --tw-ring-color: rgba(191, 219, 254, var(--tw-ring-opacity)); -} - -.btn:hover { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(147, 197, 253, var(--tw-ring-opacity)); -} - -.btn { - margin-top: 0.25rem; - margin-right: 0.25rem; - font-size: 0.875rem; - line-height: 1.25rem; - font-weight: 500; - --tw-text-opacity: 1; - color: rgba(255, 255, 255, var(--tw-text-opacity)); - --tw-bg-opacity: 1; - background-color: rgba(37, 99, 235, var(--tw-bg-opacity)); -} - -.btn:hover { - --tw-bg-opacity: 1; - background-color: rgba(29, 78, 216, var(--tw-bg-opacity)); -} - -.btn:focus { - outline: 2px solid transparent; - outline-offset: 2px; - --tw-ring-opacity: 1; - --tw-ring-color: rgba(29, 78, 216, var(--tw-ring-opacity)); -} - -.btn-secondary { - --tw-bg-opacity: 1; - background-color: rgba(75, 85, 99, var(--tw-bg-opacity)); -} - -.btn-secondary:hover { - --tw-bg-opacity: 1; - background-color: rgba(55, 65, 81, var(--tw-bg-opacity)); -} - -.btn-disabled { - --tw-bg-opacity: 1; - background-color: rgba(107, 114, 128, var(--tw-bg-opacity)); -} - -.btn-disabled:hover { - --tw-bg-opacity: 1; - background-color: rgba(107, 114, 128, var(--tw-bg-opacity)); -} - -.btn-disabled { - --tw-text-opacity: 1; - color: rgba(209, 213, 219, var(--tw-text-opacity)); - --tw-ring-opacity: 1; - --tw-ring-color: rgba(229, 231, 235, var(--tw-ring-opacity)); -} - -.btn-disabled:hover { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(229, 231, 235, var(--tw-ring-opacity)); -} - -.btn-disabled:focus { - --tw-ring-opacity: 1; - --tw-ring-color: rgba(229, 231, 235, var(--tw-ring-opacity)); -} - -.btn-disabled { - cursor: default; +.bg-subtle { + background-color: var(--subtle-detail-color); + color: var(--subtle-detail-color-contrast); } :root { - --subtle-detail-color: #e5f5ff; + /* The main colour scheme of mapcomplete is configured here. + * For a custom styling, set 'customCss' in your layoutConfig and overwrite some of these. + */ + /* Main color of the application: the background and text colours */ + --background-color: white; + /* Main text colour. Also styles some elements, such as the 'close popup'-button or 'back-arrow' (in mobile) */ + --foreground-color: black; + /* A colour to indicate an error or warning */ + --alert-color: #fee4d1; + /** + * Base colour of interactive elements, mainly the 'subtle button' + * + */ + --subtle-detail-color: #DBEAFE; --subtle-detail-color-contrast: black; --subtle-detail-color-light-contrast: lightgrey; + /** + * A stronger variant of the 'subtle-detail-colour' + * Used as subtle button hover + */ + --unsubtle-detail-color: #BFDBFE; + --unsubtle-detail-color-contrast: black; --catch-detail-color: #3a3aeb; --catch-detail-color-contrast: white; - --alert-color: #fee4d1; - --background-color: white; - --foreground-color: black; - --popup-border: white; + --non-active-tab-svg: var(--foreground-color); --shadow-color: #00000066; - --variable-title-height: 0px; - /* Set by javascript */ --return-to-the-map-height: 2em; --image-carousel-height: 350px; + /* The border colour of the leaflet popup */ + --popup-border: white; + /* Technical variable to make some dynamic behaviour possible; set by javascript. */ + --variable-title-height: 0px; } html, body { @@ -1816,6 +1895,26 @@ svg, img { height: 100%; } +.svg-catch svg path { + fill: var(--catch-detail-color) !important; + stroke: var(--catch-detail-color) !important; +} + +.svg-unsubtle svg path { + fill: var(--unsubtle-detail-color) !important; + stroke: var(--unsubtle-detail-color) !important; +} + +.svg-subtle svg path { + fill: var(--subtle-detail-color) !important; + stroke: var(--subtle-detail-color) !important; +} + +.svg-foreground svg path { + fill: var(--foreground-color) !important; + stroke: var(--foreground-color) !important; +} + .no-images img { display: none; } @@ -1832,16 +1931,46 @@ a { color: var(--foreground-color); } -btn { - margin-top: 0.25rem; - margin-right: 0.25rem; - font-size: 0.875rem; +.btn { line-height: 1.25rem; - font-weight: 500; --tw-text-opacity: 1; color: var(--catch-detail-color-contrast); --tw-bg-opacity: 1; background-color: var(--catch-detail-color); + display: inline-flex; + border-radius: 1.5rem; + padding-top: 0.75rem; + padding-bottom: 0.75rem; + padding-left: 1.25rem; + padding-right: 1.25rem; + font-size: large; + font-weight: bold; + transition: 100ms; + /*-- invisible border: rendered on hover*/ + border: 3px solid var(--unsubtle-detail-color); +} + +.btn:hover { + border: 3px solid var(--catch-detail-color); +} + +.btn-secondary { + background-color: var(--catch-detail-color); + filter: saturate(0.5); +} + +.btn-secondary:hover { + background-color: var(--catch-detail-color); + filter: unset; +} + +.btn-disabled { + filter: saturate(0.3); + cursor: default; +} + +.btn-disabled:hover { + border: 3px solid var(--unsubtle-detail-color); } .h-min { @@ -1850,6 +1979,10 @@ btn { height: min-content; } +.border-detail { + border-color: var(--foreground-color); +} + .w-min { width: -webkit-min-content; width: -moz-min-content; @@ -1861,9 +1994,8 @@ btn { } .link-underline a { - -webkit-text-decoration: underline 1px #0078a855; - text-decoration: underline 1px #0078a855; - color: #0078A8; + -webkit-text-decoration: underline 1px var(--foreground-color); + text-decoration: underline 1px var(--foreground-color); } .link-no-underline a { @@ -1920,6 +2052,10 @@ li::marker { border: 5px solid var(--catch-detail-color); } +.border-invisible { + border: 5px solid #00000000; +} + .border-attention { border-color: var(--catch-detail-color); } @@ -1940,6 +2076,7 @@ li::marker { } .leaflet-container { + font: unset !important; background-color: var(--background-color) !important; } @@ -1991,6 +2128,7 @@ li::marker { .alert { background-color: var(--alert-color); + color: var(--foreground-color); font-weight: bold; border-radius: 1em; margin: 0.25em; @@ -2175,14 +2313,16 @@ li::marker { max-width: calc(100vw - 5em); width: 40em; max-height: calc(100vh - 15em); - overflow-y: auto; - border-radius: 1em; background-color: var(--background-color); color: var(--foreground-color); } /***************** Info box (box containing features and questions ******************/ +input { + color: var(--foreground-color) +} + .leaflet-popup-content { width: 45em !important; margin: 0.25rem !important; @@ -2193,6 +2333,11 @@ li::marker { border: unset !important; } +.floating-element-width { + max-width: calc(100vw - 5em); + width: 40em; +} + .leaflet-div-icon svg { width: calc(100%); height: calc(100%); @@ -2226,9 +2371,58 @@ li::marker { width: unset; } -.hover\:bg-blue-200:hover { - --tw-bg-opacity: 1; - background-color: rgba(191, 219, 254, var(--tw-bg-opacity)); +.animate-height { + transition: max-height .5s ease-in-out; + overflow-y: hidden; +} + +.zebra-table tr:nth-child(even) { + background-color: #f2f2f2; +} + +.layer-toggle { + /* The checkbox that toggles a single layer */ +} + +.layer-filters { + /* If needed, the panel which contains the extra filters for a layer */ + margin-bottom: 1rem; + border-bottom: 2px solid var(--foreground-color); +} + +.filter-panel { + /* The panel for a single layer, containing both the toggle and the filters (if any) */ + border-bottom: 2px solid lightgrey; + margin-bottom: 0.5rem; +} + +.first-filter-panel { + /* Additional class on the first layer filter */ +} + +.mapping-icon-small { + /* A mapping icon type */ + width: 1.5rem; + max-height: 1.5rem; + margin-right: 0.5rem; +} + +.mapping-icon-medium { + /* A mapping icon type */ + width: 3rem; + max-height: 3rem; + margin-right: 1rem; + margin-left: 1rem; +} + +.mapping-icon-large{ + /* A mapping icon type */ + width: 6rem; + max-height: 5rem; + margin-top: 0.5rem; + margin-bottom: 0.5rem; + margin-right: 1.5rem; + margin-left: 1.5rem; } .hover\:bg-indigo-200:hover { @@ -2250,6 +2444,11 @@ li::marker { box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); } +.hover\:bg-unsubtle:hover { + background-color: var(--unsubtle-detail-color); + color: var(--unsubtle-detail-color-contrast); +} + .group:hover .group-hover\:text-blue-800 { --tw-text-opacity: 1; color: rgba(30, 64, 175, var(--tw-text-opacity)); @@ -2383,6 +2582,10 @@ li::marker { display: block; } + .md\:flex { + display: flex; + } + .md\:grid { display: grid; } @@ -2399,6 +2602,10 @@ li::marker { max-height: 65vh; } + .md\:w-2\/6 { + width: 33.333333%; + } + .md\:w-auto { width: auto; } @@ -2441,6 +2648,10 @@ li::marker { padding: 0.75rem; } + .md\:pt-4 { + padding-top: 1rem; + } + .md\:pt-0 { padding-top: 0px; } @@ -2449,10 +2660,6 @@ li::marker { padding-bottom: 0px; } - .md\:pt-4 { - padding-top: 1rem; - } - .md\:text-2xl { font-size: 1.5rem; line-height: 2rem; @@ -2483,10 +2690,18 @@ li::marker { margin-left: 10rem; } + .lg\:ml-10 { + margin-left: 2.5rem; + } + .lg\:w-3\/4 { width: 75%; } + .lg\:w-1\/6 { + width: 16.666667%; + } + .lg\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); } diff --git a/css/tabbedComponent.css b/css/tabbedComponent.css index 2096eac05f..39b949b29b 100644 --- a/css/tabbedComponent.css +++ b/css/tabbedComponent.css @@ -64,11 +64,11 @@ } .tab-non-active svg { - fill: var(--foreground-color) !important; - stroke: var(--foreground-color) !important; + fill: var(--non-active-tab-svg) !important; + stroke: var(--non-active-tab-svg) !important; } .tab-non-active svg path { - fill: var(--foreground-color) !important; - stroke: var(--foreground-color) !important; + fill: var(--non-active-tab-svg) !important; + stroke: var(--non-active-tab-svg) !important; } diff --git a/import_helper.html b/import_helper.html new file mode 100644 index 0000000000..a64cc840ae --- /dev/null +++ b/import_helper.html @@ -0,0 +1,51 @@ + + + + + + + + + + + + + + + + + MapComplete Import Helper + + + + + + + + + + + + + + + + + + + + + +
Loading...
+ + + + + + diff --git a/import_viewer.html b/import_viewer.html new file mode 100644 index 0000000000..bcf476da70 --- /dev/null +++ b/import_viewer.html @@ -0,0 +1,46 @@ + + + + + + + + + + + + MapComplete Import Viewer + + + + + + + + + + + + + + + + + + + + + +
Loading...
+ + + + + + diff --git a/index.css b/index.css index 6efe3035a1..80320a95fc 100644 --- a/index.css +++ b/index.css @@ -24,49 +24,70 @@ .w-160 { width: 40rem; } + + .bg-subtle { + background-color: var(--subtle-detail-color); + color: var(--subtle-detail-color-contrast); + } + + .bg-unsubtle { + background-color: var(--unsubtle-detail-color); + color: var(--unsubtle-detail-color-contrast); + } + + .bg-catch { + background-color: var(--catch-detail-color); + color: var(--catch-detail-color-contrast); + } } - .btn { - @apply inline-flex justify-center; - @apply py-2 px-4; - @apply border border-transparent shadow-sm; - @apply shadow-sm rounded-3xl; - @apply ring-2 ring-blue-200 hover:ring-blue-300; - @apply mt-1 mr-1; - @apply text-sm font-medium text-white; - @apply bg-blue-600 hover:bg-blue-700; - @apply focus:outline-none focus:ring-blue-700; - } - - .btn-secondary { - @apply bg-gray-600 hover:bg-gray-700; - } - - .btn-disabled { - @apply bg-gray-500 hover:bg-gray-500; - @apply text-gray-300; - @apply ring-gray-200 hover:ring-gray-200 focus:ring-gray-200; - @apply cursor-default; - } } :root { - --subtle-detail-color: #e5f5ff; + /* The main colour scheme of mapcomplete is configured here. + * For a custom styling, set 'customCss' in your layoutConfig and overwrite some of these. + */ + + /* Main color of the application: the background and text colours */ + --background-color: white; + /* Main text colour. Also styles some elements, such as the 'close popup'-button or 'back-arrow' (in mobile) */ + --foreground-color: black; + + /* A colour to indicate an error or warning */ + --alert-color: #fee4d1; + + /** + * Base colour of interactive elements, mainly the 'subtle button' + * + */ + --subtle-detail-color: #DBEAFE; --subtle-detail-color-contrast: black; --subtle-detail-color-light-contrast: lightgrey; + /** + * A stronger variant of the 'subtle-detail-colour' + * Used as subtle button hover + */ + --unsubtle-detail-color: #BFDBFE; + --unsubtle-detail-color-contrast: black; + + --catch-detail-color: #3a3aeb; --catch-detail-color-contrast: white; - --alert-color: #fee4d1; - --background-color: white; - --foreground-color: black; - --popup-border: white; - --shadow-color: #00000066; - --variable-title-height: 0px; /* Set by javascript */ - --return-to-the-map-height: 2em; + + --non-active-tab-svg: var(--foreground-color); + --shadow-color: #00000066; + + --return-to-the-map-height: 2em; --image-carousel-height: 350px; + + /* The border colour of the leaflet popup */ + --popup-border: white; + + /* Technical variable to make some dynamic behaviour possible; set by javascript. */ + --variable-title-height: 0px; } html, body { @@ -106,6 +127,26 @@ svg, img { height: 100%; } +.svg-catch svg path { + fill: var(--catch-detail-color) !important; + stroke: var(--catch-detail-color) !important; +} + +.svg-unsubtle svg path { + fill: var(--unsubtle-detail-color) !important; + stroke: var(--unsubtle-detail-color) !important; +} + +.svg-subtle svg path { + fill: var(--subtle-detail-color) !important; + stroke: var(--subtle-detail-color) !important; +} + +.svg-foreground svg path { + fill: var(--foreground-color) !important; + stroke: var(--foreground-color) !important; +} + .no-images img { display: none; } @@ -122,22 +163,58 @@ a { color: var(--foreground-color); } -btn { - margin-top: 0.25rem; - margin-right: 0.25rem; - font-size: 0.875rem; +.btn { line-height: 1.25rem; - font-weight: 500; --tw-text-opacity: 1; color: var(--catch-detail-color-contrast); --tw-bg-opacity: 1; background-color: var(--catch-detail-color); + display: inline-flex; + border-radius: 1.5rem; + padding-top: 0.75rem; + padding-bottom: 0.75rem; + padding-left: 1.25rem; + padding-right: 1.25rem; + font-size: large; + font-weight: bold; + transition: 100ms; + /*-- invisible border: rendered on hover*/ + border: 3px solid var(--unsubtle-detail-color); +} + +.btn:hover { + border: 3px solid var(--catch-detail-color); +} + +.btn-secondary { + background-color: var(--catch-detail-color); + filter: saturate(0.5); + +} + +.btn-secondary:hover { + background-color: var(--catch-detail-color); + filter: unset; +} + +.btn-disabled { + filter: saturate(0.3); + cursor: default; +} + +.btn-disabled:hover { + border: 3px solid var(--unsubtle-detail-color); } .h-min { height: min-content; } + +.border-detail { + border-color: var(--foreground-color); +} + .w-min { width: min-content; } @@ -147,8 +224,7 @@ btn { } .link-underline a { - text-decoration: underline 1px #0078a855;; - color: #0078A8; + text-decoration: underline 1px var(--foreground-color); } .link-no-underline a { @@ -208,6 +284,10 @@ li::marker { border: 5px solid var(--catch-detail-color); } +.border-invisible { + border: 5px solid #00000000; +} + .border-attention { border-color: var(--catch-detail-color); } @@ -229,6 +309,7 @@ li::marker { } .leaflet-container { + font: unset !important; background-color: var(--background-color) !important; } @@ -282,6 +363,7 @@ li::marker { .alert { background-color: var(--alert-color); + color: var(--foreground-color); font-weight: bold; border-radius: 1em; margin: 0.25em; @@ -415,15 +497,17 @@ li::marker { max-width: calc(100vw - 5em); width: 40em; max-height: calc(100vh - 15em); - overflow-y: auto; - border-radius: 1em; background-color: var(--background-color); color: var(--foreground-color); } + /***************** Info box (box containing features and questions ******************/ +input { + color: var(--foreground-color) +} .leaflet-popup-content { width: 45em !important; @@ -435,6 +519,10 @@ li::marker { border: unset !important; } +.floating-element-width { + max-width: calc(100vw - 5em); + width: 40em; +} .leaflet-div-icon svg { width: calc(100%); @@ -469,3 +557,61 @@ li::marker { height: var(--image-carousel-height); width: unset; } + +.animate-height { + transition: max-height .5s ease-in-out; + overflow-y: hidden; +} + + +.zebra-table tr:nth-child(even) { + background-color: #f2f2f2; +} + +.layer-toggle { + /* The checkbox that toggles a single layer */ +} + +.layer-filters { + /* If needed, the panel which contains the extra filters for a layer */ + margin-bottom: 1rem; + border-bottom: 2px solid var(--foreground-color); +} + +.filter-panel { + /* The panel for a single layer, containing both the toggle and the filters (if any) */ + border-bottom: 2px solid lightgrey; + margin-bottom: 0.5rem; +} + +.first-filter-panel { + /* Additional class on the first layer filter */ +} + + +.mapping-icon-small { + /* A mapping icon type */ + width: 1.5rem; + max-height: 1.5rem; + margin-right: 0.5rem; +} + +.mapping-icon-medium { + /* A mapping icon type */ + width: 3rem; + max-height: 3rem; + margin-right: 1rem; + margin-left: 1rem; +} + +.mapping-icon-large{ + /* A mapping icon type */ + width: 6rem; + max-height: 5rem; + margin-top: 0.5rem; + margin-bottom: 0.5rem; + margin-right: 1.5rem; + margin-left: 1.5rem; + + +} diff --git a/index.html b/index.html index 68e3f9fc4b..6f4f08b31c 100644 --- a/index.html +++ b/index.html @@ -1,5 +1,4 @@ - @@ -77,7 +76,7 @@ Below
- + diff --git a/index.manifest b/index.manifest index 1eb1aec3ce..9109a8b09f 100644 --- a/index.manifest +++ b/index.manifest @@ -2,6 +2,7 @@ "name": "index", "short_name": "MapComplete", "start_url": "index.html", + "lang": "en", "display": "standalone", "background_color": "#fff", "description": "A thematic map viewer and editor based on OpenStreetMap", @@ -62,5 +63,9 @@ "sizes": "513x513", "type": "image/svg" } + ], + "categories": [ + "map", + "navigation" ] } \ No newline at end of file diff --git a/index.ts b/index.ts index 6496e1cdca..58a0e54b79 100644 --- a/index.ts +++ b/index.ts @@ -1,39 +1,23 @@ 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 CountryCoder from "latlon2country/index"; -import SimpleMetaTagger from "./Logic/SimpleMetaTagger"; import {Utils} from "./Utils"; import AllThemesGui from "./UI/AllThemesGui"; import DetermineLayout from "./Logic/DetermineLayout"; 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"; // 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()) -SimpleMetaTagger.coder = new CountryCoder("https://pietervdvn.github.io/latlon2country/"); 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 @@ -46,40 +30,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); - }); - } + } } @@ -95,10 +54,10 @@ 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]) + 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/ca.json b/langs/ca.json index fdd9e1a45a..0728ebac39 100644 --- a/langs/ca.json +++ b/langs/ca.json @@ -1,162 +1,288 @@ { - "image": { - "addPicture": "Afegir foto", - "uploadingPicture": "Pujant la teva imatge…", - "uploadingMultiple": "Pujant {count} imatges…", - "pleaseLogin": "Entra per pujar una foto", - "willBePublished": "La teva foto serà publicada: ", - "cco": "en domini públic", - "ccbs": "sota llicència CC-BY-SA", - "ccb": "sota la llicència CC-BY", - "uploadFailed": "No s'ha pogut pujar la imatge. Tens Internet i es permeten API de tercers? El navegador Brave o UMatrix podria bloquejar-les.", - "respectPrivacy": "Respecta la privacitat. No fotografiïs gent o matrícules. No facis servir imatges de Google Maps, Google Streetview o altres fonts amb copyright.", - "uploadDone": "La teva imatge ha estat afegida. Gràcies per ajudar.", - "dontDelete": "Cancel·lar", - "doDelete": "Esborrar imatge", - "isDeleted": "Esborrada" - }, - "centerMessage": { - "loadingData": "Carregant dades...", - "zoomIn": "Amplia per veure o editar les dades", - "ready": "Fet.", - "retrying": "La càrrega de dades ha fallat. Tornant-ho a intentar... ({count})" - }, - "index": { - "#": "These texts are shown above the theme buttons when no theme is loaded", - "intro": "MapComplete és un visor i editor d'OpenStreetMap, que et mostra informació sobre un tema específic", - "title": "Benvingut/da a MapComplete" - }, - "general": { - "loginWithOpenStreetMap": "Entra a OpenStreetMap", - "welcomeBack": "Has entrat, benvingut.", - "loginToStart": "Entra per contestar aquesta pregunta", - "search": { - "search": "Cerca una ubicació", - "searching": "Cercant...", - "nothing": "Res trobat.", - "error": "Alguna cosa no ha sortit bé..." + "centerMessage": { + "loadingData": "Carregant dades…", + "ready": "Fet.", + "retrying": "La càrrega de dades ha fallat. Tornant-ho a intentar en ({count}) segons…", + "zoomIn": "Amplia per veure o editar les dades" }, - "returnToTheMap": "Tornar al mapa", - "save": "Desar", - "cancel": "Cancel·lar", - "skip": "Saltar aquesta pregunta", - "oneSkippedQuestion": "Has ignorat una pregunta", - "skippedQuestions": "Has ignorat algunes preguntes", - "number": "nombre", - "osmLinkTooltip": "Mira aquest objecte a OpenStreetMap per veure historial i altres opcions d'edició", - "add": { - "addNew": "Afegir {category} aquí", - "title": "Vols afegir un punt?", - "intro": "Has marcat un lloc on no coneixem les dades.
", - "pleaseLogin": "Entra per afegir un nou punt", - "zoomInFurther": "Apropa per afegir un punt.", - "stillLoading": "Les dades es segueixen carregant. Espera una mica abans d'afegir cap punt.", - "confirmIntro": "

Afegir {title} aquí?

El punt que estàs creant el veurà tothom. Només afegeix coses que realment existeixin. Moltes aplicacions fan servir aquestes dades.", - "confirmButton": "Afegir {category} aquí", - "openLayerControl": "Obrir el control de capes", - "layerNotEnabled": "La capa {layer} no està habilitada. Fes-ho per poder afegir un punt a aquesta capa" + "delete": { + "cancel": "Cancel·lar", + "cannotBeDeleted": "Aquest element no pot ser esborrat", + "delete": "Esborrar", + "explanations": { + "hardDelete": "Aquest punt s'esborrarà a OpenStreetMap. Es podria recuperar per part d'un contribuïdor experimentat", + "selectReason": "Selecciona per què s'hauria d'esborrar aquest element", + "softDelete": "Aquest element s'actualitzarà i s'amagarà d'aquesta aplicació. {reason}" + }, + "isDeleted": "Aquest element s'esborrarà", + "isntAPoint": "Només es poden esborrar punts, l'element seleccionat és una via, àrea o relació.", + "loading": "Inspeccionant propietats per si aquest element pot ser esborrat.", + "loginToDelete": "Has d'entrar per esborrar un punt", + "notEnoughExperience": "Aquest punt l'ha fet una altra persona.", + "onlyEditedByLoggedInUser": "Aquest punt només pot ser editat per tu, el pots esborrar amb seguretat.", + "partOfOthers": "Aquest punt és part d'una via o relació i no es pot esborrar directament.", + "readMessages": "Tens missatges sense llegir. Llegeix això abans d'esborrar un punt - algú potser t'ha escrit", + "reasons": { + "disused": "Aquest element ja no funciona o s'ha eliminat", + "duplicate": "Aquest punt és un element duplicat", + "notFound": "No es pot trobar l'element", + "test": "És una prova - l'element realment no existeix." + }, + "safeDelete": "Aquest punt es pot esborrar amb seguretat.", + "useSomethingElse": "Utilitza un altre editor d'OpenStreetMap per esborrar-lo", + "whyDelete": "Per què s'hauria d'esborrar aquest punt?" }, - "pickLanguage": "Tria idioma: ", - "about": "Edita facilment i afegeix punts a OpenStreetMap d'una temàtica determinada", - "nameInlineQuestion": "{category}: El seu nom és $$$", - "noNameCategory": "{category} sense nom", - "questions": { - "phoneNumberOf": "Quin és el telèfon de {category}?", - "phoneNumberIs": "El número de telèfon de {category} és {phone}", - "websiteOf": "Quina és la pàgina web de {category}?", - "websiteIs": "Pàgina web: {website}", - "emailOf": "Quina és l'adreça de correu-e de {category}?", - "emailIs": "L'adreça de correu de {category} és {email}" + "favourite": { + "loginNeeded": "

Entrar

El disseny personalitzat només està disponible pels usuaris d'OpenstreetMap", + "panelIntro": "

La teva interfície personal

Activa les teves capes favorites de totes les interfícies oficials", + "reload": "Recarregar dades" }, - "openStreetMapIntro": "

Un mapa obert

No seria genial si hagués un únic mapa, que tothom pogués utilitzar i editar lliurement?Un sol lloc on emmagatzemar tota la informació geogràfica? Llavors tots aquests llocs web amb mapes diferents petits i incompatibles (que sempre estaran desactulitzats) ja no serien necessaris.

OpenStreetMap és aquest mapa. Les dades del mapa es poden utilitzar de franc (amb atribució i publicació de canvis en aquestes dades). A més a més, tothom pot agregar lliurement noves dades i corregir errors. De fet, aquest lloc web també fa servir OpenStreetMap. Totes les dades provenen d'allà i les teves respostes i correccions també s'afegiran allà.

Moltes persones i aplicacions ja utilitzen OpenStreetMap: Maps.me, OsmAnd, però també els mapes de Facebook, Instagram, Apple i Bing són (en part) impulsats ​​per OpenStreetMap. Si canvies alguna cosa aquí també es reflectirà en aquestes aplicacions en la seva propera actualització.

", - "sharescreen": { - "intro": "

Comparteix aquest mapa

Comparteix aquest mapa copiant l'enllaç de sota i enviant-lo a amics i família:", - "addToHomeScreen": "

Afegir-lo a la pantalla d'inici

Pots afegir aquesta web a la pantalla d'inici del teu smartphone per a que es vegi més nadiu. Apreta al botó 'afegir a l'inici' a la barra d'adreces URL per fer-ho.", - "embedIntro": "

Inclou-ho a la teva pàgina web

Inclou aquest mapa dins de la teva pàgina web.
T'animem a que ho facis, no cal que demanis permís.
És de franc, i sempre ho serà. A més gent que ho faci servir més valuós serà.", - "copiedToClipboard": "Enllaç copiat al portapapers", - "thanksForSharing": "Gràcies per compartir", - "editThisTheme": "Editar aquest repte", - "editThemeDescription": "Afegir o canviar preguntes d'aquest repte", - "fsUserbadge": "Activar el botó d'entrada", - "fsSearch": "Activar la barra de cerca", - "fsWelcomeMessage": "Mostra el missatge emergent de benvinguda i pestanyes associades", - "fsLayers": "Activar el control de capes", - "fsLayerControlToggle": "Iniciar el control de capes avançat", - "fsAddNew": "Activar el botó d'afegir nou PDI'", - "fsGeolocation": "Activar el botó de 'geolocalitza'm' (només mòbil)", - "fsIncludeCurrentBackgroundMap": "Incloure l'opció de fons actual {name}", - "fsIncludeCurrentLayers": "Incloure les opcions de capa actual", - "fsIncludeCurrentLocation": "Incloure localització actual" + "general": { + "about": "Edita facilment i afegeix punts a OpenStreetMap d'una petició determinada", + "aboutMapcomplete": "

Sobre MapComplete

Usa-ho per afegir informació a OpenStreetMap amb una petició. Respon preguntes i en minuts les teves contribucions estaran disponibles arreu. La persona gestionadora defineix elements, preguntes i idiomes per a fer-ho possible.

Troba més info

MapComplete sempre ofereix el següent pas per aprendre'n més sobre OpenStreetMap.

  • Inclòs en una pàgina web et porta a MapComplete a pantalla completa
  • Aquesta versió ofereix informació sobre OpenStreetMap
  • Veure funciona sense entrar però editar o contribuir requereix un compte d'OSM.
  • Si no has entrat et demanarà que ho facis.
  • Responent una simple pregunta, pots afegir nous punts al mapa
  • Després d'una estona es mostraran les etiquetes actuals , i després els enllaços a la wiki.


Has trobat alguna incidència? Tens alguna petició ? Vols ajudar a traduir? Vés a per accedir al codi font o al registre d'incidències.

Vols veure els teus progressos ? Segueix el recompte d'edicions a OsmCha.

", + "add": { + "addNew": "Afegir {category} aquí", + "addNewMapLabel": "Afegir nou element", + "confirmButton": "Afegir {category} aquí", + "confirmIntro": "

Afegir {title} aquí?

El punt que estàs creant el veurà tothom. Només afegeix coses que realment existeixin. Moltes aplicacions fan servir aquestes dades.", + "disableFilters": "Deshabilitar tots els filtres", + "disableFiltersExplanation": "Alguns elements s'amagaran en passar un filtre", + "hasBeenImported": "Aquest punt ja ha estat importat", + "intro": "Has marcat un lloc on no coneixem les dades.
", + "layerNotEnabled": "La capa {layer} no està habilitada. Fes-ho per poder afegir un punt a aquesta capa", + "openLayerControl": "Obrir el control de capes", + "pleaseLogin": "Entra per afegir un nou punt", + "presetInfo": "El nou PDI tindrà les etiquetes {tags}", + "stillLoading": "Les dades es segueixen carregant. Espera una mica abans d'afegir cap punt.", + "title": "Vols afegir un punt?", + "warnVisibleForEveryone": "La teva contribució serà vista per tothom", + "zoomInFurther": "Apropa per afegir un punt.", + "zoomInMore": "Ampliar per importar aquest element" + }, + "attribution": { + "attributionContent": "

Totes les dades provenen d'OpenStreetMap, i es poden reutilitzar lliurement sota la Llicència Oberta de Base de Dades (ODbL).

", + "attributionTitle": "Avís d’atribució", + "codeContributionsBy": "MapComplete ha estat fet per {contributors} i {hiddenCount} més contribuïdors", + "iconAttribution": { + "title": "Icones utilitzades" + }, + "mapContributionsBy": "Les dades mostrades tenen edicions fetes per {contributors}", + "mapContributionsByAndHidden": "Les dades mostrades tenen edicions fetes per {contributors} i {hiddenCount} col·laboradors més", + "themeBy": "Tema mantingut per {author}" + }, + "backgroundMap": "Mapa de fons", + "cancel": "Cancel·lar", + "customThemeIntro": "

Peticions personalitzades

Aquestes són les peticions generades pels usuaris que ens han visitat abans.", + "download": { + "downloadAsPdf": "Baixar un PDF del mapa actual", + "downloadAsPdfHelper": "Ideal per imprimir el mapa actual", + "downloadCSV": "Baixar dades visibles com a CSV", + "downloadCSVHelper": "Compatible amb LibreOffice Calc, Excel, …", + "downloadGeoJsonHelper": "Compatible amb QGIS, ArcGIS, ESRI, …", + "downloadGeojson": "Baixar dades visibles com a GeoJSON", + "exporting": "Exportant…", + "includeMetaData": "Incloure metadades (darrer editor, valors calculats, ...)", + "licenseInfo": "

Avís de drets de còpia

Les dades proveïdes estan sota ODbL. Es poden reutilitzar de forma gratuïta, però
  • l'atribució a © Contribuïdors d'OpenStreetMap és obligatòria
  • Qualsevol canvi ha de seguir la llicència
Llegeix sencer l'avís de drets de còpia per més detalls.", + "noDataLoaded": "No s'han carregat dades. La baixada estarà disponible aviat", + "title": "Baixar dades visibles" + }, + "fewChangesBefore": "Contesta unes quantes preguntes sobre punts existents abans d'afegir-ne un de nou.", + "getStartedLogin": "Entra a OpenStreetMap per començar", + "getStartedNewAccount": " o crea un nou compte", + "goToInbox": "Obrir missatges", + "histogram": { + "error_loading": "No s'ha pogut carregar l'histograma" + }, + "layerSelection": { + "title": "Seleccionar capes", + "zoomInToSeeThisLayer": "Amplia per veure aquesta capa" + }, + "loading": "Carregant...", + "loginOnlyNeededToEdit": "Si vols ajudar a editar el mapa", + "loginToStart": "Entra per contestar aquesta pregunta", + "loginWithOpenStreetMap": "Entrar a OpenStreetMap", + "morescreen": { + "createYourOwnTheme": "Crea la teva pròpia petició completa de MapComplete des de zero", + "hiddenExplanation": "Aquestes peticions només funcionen amb l'enllaç. Has descobert {hidden_discovered} de {total_hidden} peticions amagades.", + "intro": "

Més peticions

T'agrada captar dades?
Hi ha més capes disponibles.", + "previouslyHiddenTitle": "Peticions visitades i amagades", + "requestATheme": "Si vols que et fem una petició pròpia , demana-la al registre d'incidències", + "streetcomplete": "Una altra aplicació similar és StreetComplete." + }, + "nameInlineQuestion": "{category}: El seu nom és $$$", + "noNameCategory": "{category} sense nom", + "noTagsSelected": "No s'han seleccionat etiquetes", + "number": "nombre", + "oneSkippedQuestion": "Has ignorat una pregunta", + "openStreetMapIntro": "

Un mapa obert

Un que tothom pogués utilitzar i editar lliurement. Un sol lloc on emmagatzemar tota la informació geogràfica. Llavors tots aquests llocs web amb mapes diferents petits i incompatibles (que sempre estaran desactualitzats) ja no serien necessaris.

OpenStreetMap no és el mapa de l'enemic. Les dades del mapa es poden utilitzar de franc (amb atribució i publicació de canvis en aquestes dades). A més a més, tothom pot agregar lliurement noves dades i corregir errors. Aquest lloc web també fa servir OpenStreetMap. Totes les dades provenen d'allà i les teves respostes i correccions també s'afegiran allà.

Moltes persones i aplicacions ja utilitzen OpenStreetMap: Organic Maps, OsmAnd, però també els mapes de Facebook, Instagram, Apple i Bing són (en part) impulsats per OpenStreetMap. .

", + "openTheMap": "Obrir el mapa", + "opening_hours": { + "closed_permanently": "Tancat - sense dia d'obertura conegut", + "closed_until": "Tancat fins {date}", + "error_loading": "Error: no s'han pogut veure aquests horaris.", + "loadingCountry": "Determinant país…", + "not_all_rules_parsed": "L'horari és complex. Les normes següents seran ignorades en l'entrada:", + "openTill": "fins", + "open_24_7": "Obert sobre les", + "open_during_ph": "Durant festes està", + "opensAt": "des de", + "ph_closed": "tancat", + "ph_not_known": " ", + "ph_open": "tancat", + "ph_open_as_usual": "obert com sempre" + }, + "osmLinkTooltip": "Navega a OpenStreetMap sobre aquest objecte per veure historial i altres opcions d'edició", + "pdf": { + "attr": "Dades del mapa © Contribuïdors d'OpenStreetMap, reutilitzable sota ODbL", + "attrBackground": "Capa de fons: {background}", + "generatedWith": "Generat amb MapComplete.osm.be", + "versionInfo": "v{version} - generat el {date}" + }, + "pickLanguage": "Tria idioma: ", + "questions": { + "emailIs": "L'adreça de correu d'aquesta {category} és {email}", + "emailOf": "Quina és l'adreça de correu-e de {category}?", + "phoneNumberIs": "El número de telèfon de {category} és {phone}", + "phoneNumberOf": "Quin és el telèfon de {category}?", + "websiteIs": "Pàgina web: {website}", + "websiteOf": "Quina és la pàgina web de {category}?" + }, + "readYourMessages": "Llegeix tots els teus missatges d'OpenStreetMap abans d'afegir nous punts.", + "returnToTheMap": "Tornar al mapa", + "save": "Desar", + "search": { + "error": "Alguna cosa no ha sortit bé…", + "nothing": "Res trobat…", + "search": "Cerca una ubicació", + "searching": "Cercant…" + }, + "sharescreen": { + "addToHomeScreen": "

Afegir-lo a la pantalla d'inici

Pots afegir aquesta web a la pantalla d'inici del teu smartphone per a que es vegi més nadiu. Apreta al botó 'Afegir a l'inici' a la barra d'adreces URL per fer-ho.", + "copiedToClipboard": "Enllaç copiat al portapapers", + "editThemeDescription": "Afegir o canviar preguntes d'aquesta petició", + "editThisTheme": "Editar aquest repte", + "embedIntro": "

Inclou-ho a la teva pàgina web

Inclou aquest mapa dins de la teva pàgina web.
T'animem a que ho facis, no cal que demanis permís.
És de franc, i sempre ho serà. A més gent que ho faci servir més valuós serà.", + "fsAddNew": "Activar el botó d'afegir nou PDI'", + "fsGeolocation": "Activar el botó de 'geolocalitza'm' (només mòbil)", + "fsIncludeCurrentBackgroundMap": "Incloure l'opció de fons actual {name}", + "fsIncludeCurrentLayers": "Incloure les opcions de capa actual", + "fsIncludeCurrentLocation": "Incloure localització actual", + "fsLayerControlToggle": "Iniciar el control de capes avançat", + "fsLayers": "Activar el control de capes", + "fsSearch": "Activar la barra de cerca", + "fsUserbadge": "Activar el botó d'entrada", + "fsWelcomeMessage": "Mostra el missatge emergent de benvinguda i pestanyes associades", + "intro": "

Comparteix aquest mapa

Comparteix aquest mapa copiant l'enllaç de sota i enviant-lo a amics i família:", + "thanksForSharing": "Gràcies per compartir." + }, + "skip": "Saltar aquesta pregunta", + "skippedQuestions": "Has ignorat algunes preguntes", + "testing": "Proves - Els canvis no es desaran", + "weekdays": { + "abbreviations": { + "friday": "Div", + "monday": "Dil", + "saturday": "Dis", + "sunday": "Diu", + "thursday": "Dij", + "tuesday": "Dim", + "wednesday": "Dic" + }, + "friday": "Divendres", + "monday": "Dilluns", + "saturday": "Dissabte", + "sunday": "Diumenge", + "thursday": "Dijous", + "tuesday": "Dimarts", + "wednesday": "Dimecres" + }, + "welcomeBack": "Has entrat, benvingut/da.", + "wikipedia": { + "createNewWikidata": "Crear un ítem de Wikidata", + "doSearch": "Cerca adalt per veure els resultats", + "failed": "Ha fallat la càrrega d'entrada de la Viquipèdia", + "loading": "Carregant Viquipèdia...", + "noResults": "Res trobat per {search}", + "noWikipediaPage": "Aquest ítem de Wikidata no té cap pàgina de Viquipèdia corresponent.", + "searchWikidata": "Cercar a Wikidata", + "wikipediaboxTitle": "Viquipèdia" + } }, - "morescreen": { - "intro": "

Més peticions

T'agrada captar dades?
Hi ha més capes disponibles.", - "requestATheme": "Si vols que et fem una petició pròpia , demana-la aquí.", - "streetcomplete": "Una altra aplicació similar és StreetComplete.", - "createYourOwnTheme": "Crea la teva pròpia petició completa de MapComplete des de zero." + "image": { + "addPicture": "Afegir foto", + "ccb": "sota la llicència CC-BY", + "ccbs": "sota llicència CC-BY-SA", + "cco": "en domini públic", + "doDelete": "Esborrar imatge", + "dontDelete": "Cancel·lar", + "isDeleted": "Esborrada", + "pleaseLogin": "Entrar per pujar una foto", + "respectPrivacy": "Respecta la privacitat. No fotografiïs gent o matrícules. No facis servir imatges de Google Maps, Google Streetview o altres fonts amb copyright.", + "toBig": "La teva imatge és massa gran ara que medeix {actual_size}. Usa imatges de com a molt {max_size}", + "uploadDone": "La teva imatge ha estat afegida. Gràcies per ajudar.", + "uploadFailed": "No s'ha pogut pujar la imatge. Tens Internet i es permeten API de tercers? El navegador Brave o UMatrix podria bloquejar-les.", + "uploadMultipleDone": "{count} imatges afegides. Gràcies per ajudar.", + "uploadingMultiple": "Pujant {count} imatges…", + "uploadingPicture": "Pujant la teva imatge…", + "willBePublished": "La teva foto serà publicada: " }, - "readYourMessages": "Llegeix tots els teus missatges d'OpenStreetMap abans d'afegir nous punts.", - "fewChangesBefore": "Contesta unes quantes preguntes sobre punts existents abans d'afegir-ne un de nou.", - "goToInbox": "Obrir missatges", - "getStartedLogin": "Entra a OpenStreetMap per començar", - "getStartedNewAccount": " o crea un nou compte", - "noTagsSelected": "No s'han seleccionat etiquetes", - "backgroundMap": "Mapa de fons", - "layerSelection": { - "zoomInToSeeThisLayer": "Amplia per veure aquesta capa" + "index": { + "#": "Aquests textos es mostren sobre els botons de les peticions quan no hi ha petició carregada", + "featuredThemeTitle": "Destacades aquesta setmana", + "intro": "MapComplete és un visor i editor d'OpenStreetMap, que et mostra informació sobre elements d'una petició específica i et permet actualitzar-los.", + "pickTheme": "Tria una petició de sota per començar.", + "title": "Benvingut/da a MapComplete" }, - "weekdays": { - "abbreviations": { - "monday": "Dil", - "tuesday": "Dim", - "wednesday": "Dic", - "thursday": "Dij", - "friday": "Div", - "saturday": "Dis", - "sunday": "Diu" - }, - "monday": "Dilluns", - "tuesday": "Dimarts", - "wednesday": "Dimecres", - "thursday": "Dijous", - "friday": "Divendres", - "saturday": "Dissabte", - "sunday": "Diumenge" + "move": { + "cancel": "Cancel·lar moviment", + "cannotBeMoved": "Aquest element no es pot moure.", + "confirmMove": "Moure aquí", + "inviteToMove": { + "generic": "Moure aquest punt", + "reasonInaccurate": "Ajusta la situació del punt", + "reasonRelocation": "Mou aquest objecte a un altre lloc perquè l'han recolocat" + }, + "inviteToMoveAgain": "Moure aquest punt un altre cop", + "isRelation": "Aquest element és una relació i no es pot moure", + "isWay": "Aquest element és una via. Fes servir un altre editor d'OpenStreetMap per moure'l.", + "loginToMove": "Has d'entrar per moure aquest punt", + "moveTitle": "Moure aquest punt", + "partOfAWay": "Aquest element és part d'una altra via. Fes servir un altre editor per moure'l.", + "partOfRelation": "Aquest element és part d'una relació. Fes servir un altre editor per moure'l.", + "pointIsMoved": "Has mogut el punt", + "reasons": { + "reasonInaccurate": "La localització d'aquest objecte no és ajustada i s'hauria de moure uns metres", + "reasonRelocation": "L'objecte ha estat recol·locat a una localització totalment diferent" + }, + "selectReason": "Per què mous aquest objecte?", + "whyMove": "Per què vols moure aquest punt?", + "zoomInFurther": "Amplia per confirmar aquest moviment" }, - "opening_hours": { - "open_during_ph": "Durant festes aquest servei és", - "opensAt": "des de", - "openTill": "fins", - "not_all_rules_parsed": "L'horari d'aquesta botiga és complicat. Les normes següents seran ignorades en l'entrada:", - "closed_until": "Tancat fins {date}", - "closed_permanently": "Tancat - sense dia d'obertura conegut", - "ph_not_known": " ", - "ph_closed": "tancat", - "ph_open": "tancat" + "multi_apply": { + "autoApply": "Quan canvies els atributs {attr_names}, aquests també es canviaran a d'altres {count} objectes" }, - "attribution": { - "attributionContent": "

Totes les dades provenen d'OpenStreetMap, i es poden reutilitzar lliurement sota la Llicència Oberta de Base de Dades (ODbL).

", - "attributionTitle": "Avís d’atribució", - "mapContributionsByAndHidden": "Les dades mostrades tenen edicions fetes per {contributors} i {hiddenCount} col·laboradors més", - "mapContributionsBy": "Les dades mostrades tenen edicions fetes per {contributors}", - "iconAttribution": { - "title": "Icones utilitzades" - }, - "themeBy": "Tema mantingut per {author}" + "reviews": { + "affiliated_reviewer_warning": "(Ressenya afiliada)", + "attribution": "Les ressenyes funcionen gràcies a Mangrove Reviews i estan disponibles sota CC-BY 4.0.", + "i_am_affiliated": "Tinc alguna filiació amb aquest objecte
MArca-ho si n'ets cap, creador, treballador, …", + "name_required": "És requerit un nom per mostrar i crear revisions", + "no_rating": "Sense qualificació", + "no_reviews_yet": "No hi ha revisions encara. Sigues el primer a escriure'n una i ajuda al negoci i a les dades lliures!", + "plz_login": "Entra per deixar una revisió", + "posting_as": "Enviat com", + "saved": "Revisió compartida. Gràcies per compartir!", + "saving_review": "Desant…", + "title": "{count} revisions", + "title_singular": "Una revisió", + "tos": "Si crees una ressenya estàs d'acord amb els Termes de Servei i política de privacitat de Mangrove.reviews", + "write_a_comment": "Deixa una revisió…" + }, + "split": { + "cancel": "Cancel·lar", + "hasBeenSplit": "Has tallat aquesta via", + "inviteToSplit": "Talla aquesta carretera en trossos més petits. Això et permetrà afegir informacions diferents a les parts.", + "loginToSplit": "Has d'entrar per poder tallar una carretera", + "split": "Tallar", + "splitTitle": "Tria al mapa on tallar aquesta carretera" } - }, - "favourite": { - "panelIntro": "

La teva interfície personal

Activa les teves capes favorites de totes les interfícies oficials", - "loginNeeded": "

Entrar

El disseny personalizat només està disponible pels usuaris d' OpenstreetMap", - "reload": "Recarregar dades" - }, - "reviews": { - "plz_login": "Entra per deixar una revisió", - "write_a_comment": "Deixa una revisió…", - "no_reviews_yet": "No hi ha revisions encara. Sigues el primer a escriure'n una i ajuda al negoci i a les dades lliures!", - "name_required": "És requerit un nom per mostrar i crear revisions", - "title_singular": "Una revisió", - "title": "{count} revisions", - "saved": "Revisió compartida. Gràcies per compartir!", - "saving_review": "Desant…" - } -} +} \ No newline at end of file diff --git a/langs/cs.json b/langs/cs.json new file mode 100644 index 0000000000..9e26dfeeb6 --- /dev/null +++ b/langs/cs.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/langs/de.json b/langs/de.json index 6d0addc481..97f28883d8 100644 --- a/langs/de.json +++ b/langs/de.json @@ -1,288 +1,295 @@ { - "image": { - "addPicture": "Bild hinzufügen", - "uploadingPicture": "Bild wird hochgeladen…", - "uploadingMultiple": "{count} Bilder hochladen…", - "pleaseLogin": "Bitte einloggen, um ein Bild hinzuzufügen", - "willBePublished": "Ihr Bild wird veröffentlicht: ", - "cco": "als 'Public Domain'", - "ccbs": "unter der 'CC-BY-SA-Lizenz'", - "ccb": "unter der 'CC-BY-Lizenz'", - "uploadFailed": "Wir konnten Ihr Bild nicht hochladen. Haben Sie eine aktive Internetverbindung und sind APIs von Dritten erlaubt? Der Brave Browser oder UMatrix blockieren diese eventuell.", - "respectPrivacy": "Bitte respektieren Sie die Privatsphäre. Fotografieren Sie weder Personen noch Nummernschilder. Benutzen Sie keine urheberrechtlich geschützten Quellen wie z.B. Google Maps oder Google Streetview.", - "uploadDone": "Ihr Bild wurde hinzugefügt. Vielen Dank für Ihre Hilfe!", - "dontDelete": "Abbrechen", - "doDelete": "Bild entfernen", - "isDeleted": "Gelöscht", - "uploadMultipleDone": "{count} Bilder wurden hinzugefügt. Vielen Dank für die Hilfe!", - "toBig": "Ihr Bild ist zu groß, da es {actual_size} ist. Bitte verwenden Sie Bilder von höchstens {max_size}" - }, - "centerMessage": { - "loadingData": "Daten werden geladen…", - "zoomIn": "Ausschnitt vergrößern, um Daten anzuzeigen oder zu bearbeiten", - "ready": "Erledigt!", - "retrying": "Laden von Daten fehlgeschlagen. Erneuter Versuch in {count} Sekunden …" - }, - "index": { - "#": "Dieser Text wird über die Thema-Auswahlschaltfläche gezeigt, wenn kein Thema geladen ist", - "title": "Willkommen bei MapComplete", - "intro": "MapComplete ist eine OpenStreetMap-Anwendung, mit der Informationen zu Objekten eines bestimmten Themas angezeigt und angepasst werden können.", - "pickTheme": "Wähle unten ein Thema, um zu starten.", - "featuredThemeTitle": "Diese Woche im Blickpunkt" - }, - "general": { - "loginWithOpenStreetMap": "Bei OpenStreetMap anmelden", - "welcomeBack": "Sie sind eingeloggt, willkommen zurück!", - "loginToStart": "Anmelden, um diese Frage zu beantworten", - "search": { - "search": "Einen Ort suchen", - "searching": "Suchen …", - "nothing": "Nichts gefunden…", - "error": "Etwas ging schief…" + "centerMessage": { + "loadingData": "Daten werden geladen…", + "ready": "Erledigt!", + "retrying": "Laden von Daten fehlgeschlagen. Erneuter Versuch in {count} Sekunden …", + "zoomIn": "Ausschnitt vergrößern, um Daten anzuzeigen oder zu bearbeiten" }, - "returnToTheMap": "Zurück zur Karte", - "save": "Speichern", - "cancel": "Abbrechen", - "skip": "Frage überspringen", - "oneSkippedQuestion": "Eine Frage wurde übersprungen", - "skippedQuestions": "Einige Fragen wurden übersprungen", - "number": "Zahl", - "osmLinkTooltip": "Dieses Element auf OpenStreetMap durchsuchen für den Verlauf und weitere Bearbeitungsmöglichkeiten", - "add": { - "addNew": "Hier eine neue {category} hinzufügen", - "title": "Punkt hinzufügen?", - "intro": "Sie haben irgendwo geklickt, wo noch keine Daten bekannt sind.
", - "pleaseLogin": "Bitte loggen Sie sich ein, um einen neuen Punkt hinzuzufügen", - "zoomInFurther": "Weiter einzoomen, um einen Punkt hinzuzufügen.", - "stillLoading": "Die Daten werden noch geladen. Bitte warten Sie etwas, bevor Sie einen neuen Punkt hinzufügen.", - "confirmIntro": "

Hier einen {title} hinzufügen?

Der Punkt, den Sie hier anlegen, wird für alle sichtbar sein. Bitte fügen Sie der Karte nur dann Dinge hinzu, wenn sie wirklich existieren. Viele Anwendungen verwenden diese Daten.", - "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", - "presetInfo": "Der neue POI hat {tags}", - "disableFiltersExplanation": "Einige Elemente können durch einen Filter ausgeblendet sein", - "disableFilters": "Alle Filter deaktivieren", - "hasBeenImported": "Dieser Punkt wurde bereits importiert", - "zoomInMore": "Vergrößern Sie die Ansicht, um dieses Element zu importieren", - "warnVisibleForEveryone": "Ihre Ergänzung wird für alle sichtbar sein" + "delete": { + "cancel": "Abbrechen", + "cannotBeDeleted": "Dieses Element kann nicht gelöscht werden", + "delete": "Löschen", + "explanations": { + "hardDelete": "Dieser Punkt wird in OpenStreetMap gelöscht. Er kann von einem erfahrenen Mitwirkenden wiederhergestellt werden", + "selectReason": "Bitte wähle aus, warum dieses Element gelöscht werden soll", + "softDelete": "Dieses Element wird aktualisiert und in dieser Anwendung ausgeblendet. {reason}" + }, + "isDeleted": "Dieses Element wurde gelöscht", + "isntAPoint": "Es können nur Punkte gelöscht werden, das ausgewählte Element ist ein Weg, eine Fläche oder eine Relation.", + "loading": "Untersuchung der Eigenschaften, um zu prüfen, ob dieses Element gelöscht werden kann.", + "loginToDelete": "Sie müssen angemeldet sein, um einen Punkt zu löschen", + "notEnoughExperience": "Dieser Punkt wurde von jemand anderem erstellt.", + "onlyEditedByLoggedInUser": "Dieser Punkt wurde nur von Ihnen selbst bearbeitet, Sie können ihn sicher löschen.", + "partOfOthers": "Dieser Punkt ist Teil eines Weges oder einer Relation und kann nicht direkt gelöscht werden.", + "readMessages": "Du hast ungelesene Nachrichten. Bitte beachte diese, bevor Du einen Punkt löschst - vielleicht hat jemand eine Rückmeldung", + "reasons": { + "disused": "Dieses Element wird nicht mehr verwendet oder entfernt", + "duplicate": "Dieser Punkt ist ein Duplikat eines anderen Elements", + "notFound": "Dieses Element konnte nicht gefunden werden", + "test": "Dies war ein Testpunkt - das Element war nie wirklich vorhanden" + }, + "safeDelete": "Dieser Punkt kann sicher gelöscht werden.", + "useSomethingElse": "Verwenden Sie zum Löschen stattdessen einen anderen OpenStreetMap-Editor", + "whyDelete": "Warum sollte dieser Punkt gelöscht werden?" }, - "pickLanguage": "Sprache wählen: ", - "about": "OpenStreetMap für ein bestimmtes Thema einfach bearbeiten und hinzufügen", - "nameInlineQuestion": "Der Name dieser {category} ist $$$", - "noNameCategory": "{category} ohne Namen", - "questions": { - "phoneNumberOf": "Wie lautet die Telefonnummer der {category}?", - "phoneNumberIs": "Die Telefonnummer der {category} lautet {phone}", - "websiteOf": "Was ist die Website der {category}?", - "websiteIs": "Webseite: {website}", - "emailOf": "Wie lautet die E-Mail-Adresse der {category}?", - "emailIs": "Die E-Mail-Adresse dieser {category} lautet {email}" + "favourite": { + "loginNeeded": "

Anmelden

Ein persönliches Layout ist nur für OpenStreetMap-Benutzer verfügbar", + "panelIntro": "

Ihr persönliches Thema

Aktivieren Sie Ihre Lieblingsebenen aus allen offiziellen Themen", + "reload": "Daten neu laden" }, - "openStreetMapIntro": "

Eine offene Karte

Eine Karte, die jeder frei nutzen und bearbeiten kann. Ein einziger Ort, um alle Geoinformationen zu speichern. Unterschiedliche, kleine, inkompatible und veraltete Karten werden nirgendwo gebraucht.

OpenStreetMap ist nicht die feindliche Karte. Die Kartendaten können frei verwendet werden (mit Benennung und Veröffentlichung von Änderungen an diesen Daten). Jeder kann neue Daten hinzufügen und Fehler korrigieren. Diese Webseite nutzt OpenStreetMap. Alle Daten stammen von dort, und Ihre Antworten und Korrekturen werden überall verwendet.

Viele Menschen und Anwendungen nutzen bereits OpenStreetMap: Organic Maps, OsmAnd, aber auch die Karten bei Facebook, Instagram, Apple-maps und Bing-maps werden (teilweise) von OpenStreetMap bereichert.

", - "sharescreen": { - "intro": "

Diese Karte teilen

Sie können diese Karte teilen, indem Sie den untenstehenden Link kopieren und an Freunde und Familie schicken:", - "addToHomeScreen": "

Zum Startbildschirm hinzufügen

Sie können diese Webseite zum Startbildschirm Ihres Smartphones hinzufügen, um ein natives Gefühl zu erhalten. Klicken Sie dazu in der Adressleiste auf die Schaltfläche 'Zum Startbildschirm hinzufügen'.", - "embedIntro": "

Auf Ihrer Website einbetten

Bitte betten Sie diese Karte in Ihre Webseite ein.
Wir ermutigen Sie, es zu tun - Sie müssen nicht einmal um Erlaubnis fragen.
Es ist kostenlos und wird es immer sein. Je mehr Leute sie benutzen, desto wertvoller wird sie.", - "copiedToClipboard": "Link in die Zwischenablage kopiert", - "thanksForSharing": "Danke für das Teilen!", - "editThisTheme": "Dieses Thema bearbeiten", - "editThemeDescription": "Fragen zu diesem Kartenthema hinzufügen oder ändern", - "fsUserbadge": "Anmelde-Knopf aktivieren", - "fsSearch": "Suchleiste aktivieren", - "fsWelcomeMessage": "Popup der Begrüßungsnachricht und zugehörige Registerkarten anzeigen", - "fsLayers": "Aktivieren der Layersteuerung", - "fsLayerControlToggle": "Mit der erweiterten Ebenenkontrolle beginnen", - "fsAddNew": "Schaltfläche 'neuen POI hinzufügen' aktivieren", - "fsGeolocation": "Die Schaltfläche 'Mich geolokalisieren' aktivieren (nur für Mobil)", - "fsIncludeCurrentBackgroundMap": "Die aktuelle Hintergrundwahl einschließen {name}", - "fsIncludeCurrentLayers": "Die aktuelle Ebenenauswahl einbeziehen", - "fsIncludeCurrentLocation": "Aktuelle Position einbeziehen" + "general": { + "about": "OpenStreetMap für ein bestimmtes Thema einfach bearbeiten und hinzufügen", + "aboutMapcomplete": "

Über MapComplete

Nutzen Sie es, um OpenStreetMap-Informationen zu einem einzigen Thema hinzuzufügen. Beantworten Sie Fragen, und innerhalb weniger Minuten sind Ihre Beiträge überall verfügbar. Der Theme-Maintainer definiert Elemente, Fragen und Sprachen dafür.

Mehr erfahren

MapComplete bietet immer den nächsten Schritt, um mehr über OpenStreetMap zu erfahren.

  • Wenn es in eine Website eingebettet wird, verlinkt der iframe zu einer Vollbildversion von MapComplete
  • Die Vollbildversion bietet Infos über OpenStreetMap
  • Das Betrachten funktioniert ohne Anmeldung, aber das Bearbeiten erfordert ein OSM-Konto.
  • Wenn Sie nicht angemeldet sind, werden Sie dazu aufgefordert
  • Sobald Sie eine Frage beantwortet haben, können Sie der Karte neue Punkte hinzufügen
  • Nach einer Weile werden aktuelle OSM-Tags angezeigt, die später mit dem Wiki verlinkt werden


Haben Sie ein Problem bemerkt? Haben Sie einen Funktionswunsch? Möchten Sie bei der Übersetzung helfen? Besuchen Sie den Quellcode oder den Issue Tracker

Möchten Sie Ihren Fortschritt sehen? Verfolgen Sie die Anzahl der Änderungen auf OsmCha.

", + "add": { + "addNew": "Hier eine neue {category} hinzufügen", + "addNewMapLabel": "Hier klicken, um ein neues Element hinzuzufügen", + "confirmButton": "Fügen Sie hier eine {category} hinzu.
Ihre Ergänzung ist für alle sichtbar
", + "confirmIntro": "

Hier einen {title} hinzufügen?

Der Punkt, den Sie hier anlegen, wird für alle sichtbar sein. Bitte fügen Sie der Karte nur dann Dinge hinzu, wenn sie wirklich existieren. Viele Anwendungen verwenden diese Daten.", + "disableFilters": "Alle Filter deaktivieren", + "disableFiltersExplanation": "Einige Elemente können durch einen Filter ausgeblendet sein", + "hasBeenImported": "Dieser Punkt wurde bereits importiert", + "importTags": "Das Element erhält {tags}", + "intro": "Sie haben irgendwo geklickt, wo noch keine Daten bekannt sind.
", + "layerNotEnabled": "Die Ebene {layer} ist nicht aktiviert. Aktivieren Sie diese Ebene, um einen Punkt hinzuzufügen", + "openLayerControl": "Das Ebenen-Kontrollkästchen öffnen", + "pleaseLogin": "Bitte loggen Sie sich ein, um einen neuen Punkt hinzuzufügen", + "presetInfo": "Der neue POI hat {tags}", + "stillLoading": "Die Daten werden noch geladen. Bitte warten Sie etwas, bevor Sie einen neuen Punkt hinzufügen.", + "title": "Punkt hinzufügen?", + "warnVisibleForEveryone": "Ihre Ergänzung wird für alle sichtbar sein", + "wrongType": "Dieses Element ist weder ein Punkt noch ein Weg und kann nicht importiert werden", + "zoomInFurther": "Weiter einzoomen, um einen Punkt hinzuzufügen.", + "zoomInMore": "Vergrößern Sie die Ansicht, um dieses Element zu importieren" + }, + "attribution": { + "attributionContent": "

Alle Daten wurden bereitgestellt von OpenStreetMap, frei verwendbar unter der Open Database License.

", + "attributionTitle": "Danksagung", + "codeContributionsBy": "MapComplete wurde von {contributors} und {hiddenCount} weiteren Beitragenden erstellt", + "iconAttribution": { + "title": "Verwendete Icons" + }, + "mapContributionsBy": "Die aktuell sichtbaren Daten wurden editiert durch {contributors}", + "mapContributionsByAndHidden": "Die aktuell sichtbaren Daten wurden editiert durch {contributors} und {hiddenCount} weitere Beitragende", + "themeBy": "Thema betreut von {author}" + }, + "backgroundMap": "Hintergrundkarte", + "cancel": "Abbrechen", + "customThemeIntro": "

Benutzerdefinierte Themes

Dies sind zuvor besuchte benutzergenerierte Themen.", + "download": { + "downloadAsPdf": "PDF der aktuellen Karte herunterladen", + "downloadAsPdfHelper": "Ideal zum Drucken der aktuellen Karte", + "downloadCSV": "Sichtbare Daten als CSV herunterladen", + "downloadCSVHelper": "Kompatibel mit LibreOffice Calc, Excel, …", + "downloadGeoJsonHelper": "Kompatibel mit QGIS, ArcGIS, ESRI, …", + "downloadGeojson": "Sichtbare Daten als GeoJSON herunterladen", + "exporting": "Exportieren…", + "includeMetaData": "Metadaten übernehmen (letzter Bearbeiter, berechnete Werte, ...)", + "licenseInfo": "

Copyright-Hinweis

Die bereitgestellten Daten sind unter ODbL verfügbar. Die Wiederverwendung ist für jeden Zweck frei, aber
  • die Namensnennung © OpenStreetMap contributors ist erforderlich
  • Jede Änderung unter der gleichen Lizenz veröffentlicht werden
Bitte lesen Sie den vollständigen Copyright-Hinweis für weitere Details.", + "noDataLoaded": "Noch keine Daten geladen. Download ist in Kürze verfügbar", + "title": "Sichtbare Daten herunterladen" + }, + "example": "Beispiel", + "fewChangesBefore": "Bitte beantworten Sie ein paar Fragen zu bestehenden Punkten, bevor Sie einen neuen Punkt hinzufügen.", + "getStartedLogin": "Bei OpenStreetMap anmelden, um loszulegen", + "getStartedNewAccount": " oder ein neues Konto anlegen", + "goToInbox": "Posteingang öffnen", + "histogram": { + "error_loading": "Das Histogramm konnte nicht geladen werden" + }, + "layerSelection": { + "title": "Ebenen auswählen", + "zoomInToSeeThisLayer": "Ausschnitt vergrößern, um diese Ebene anzuzeigen" + }, + "loading": "Laden...", + "loginOnlyNeededToEdit": "zum Bearbeiten der Karte", + "loginToStart": "Anmelden, um diese Frage zu beantworten", + "loginWithOpenStreetMap": "Bei OpenStreetMap anmelden", + "morescreen": { + "createYourOwnTheme": "Erstellen Sie Ihr eigenes MapComplete-Thema von Grund auf neu", + "hiddenExplanation": "Diese Themen sind nur für Personen zugänglich, die einen Link erhalten haben. Sie haben {hidden_discovered} von {total_hidden} versteckten Themen entdeckt.", + "intro": "

Mehr thematische Karten?

Sammeln Sie gerne Geodaten?
Es sind weitere Themen verfügbar.", + "previouslyHiddenTitle": "Zuvor besuchte versteckte Themen", + "requestATheme": "Wenn Sie ein benutzerdefiniertes Thema wünschen, fordern Sie es im Issue Tracker an", + "streetcomplete": "Eine ähnliche App ist StreetComplete." + }, + "nameInlineQuestion": "Der Name dieser {category} ist $$$", + "noNameCategory": "{category} ohne Namen", + "noTagsSelected": "Keine Tags ausgewählt", + "number": "Zahl", + "oneSkippedQuestion": "Eine Frage wurde übersprungen", + "openStreetMapIntro": "

Eine offene Karte

Eine Karte, die jeder frei nutzen und bearbeiten kann. Ein einziger Ort, um alle Geoinformationen zu speichern. Unterschiedliche, kleine, inkompatible und veraltete Karten werden nirgendwo gebraucht.

OpenStreetMap ist nicht die feindliche Karte. Die Kartendaten können frei verwendet werden (mit Benennung und Veröffentlichung von Änderungen an diesen Daten). Jeder kann neue Daten hinzufügen und Fehler korrigieren. Diese Webseite nutzt OpenStreetMap. Alle Daten stammen von dort, und Ihre Antworten und Korrekturen werden überall verwendet.

Viele Menschen und Anwendungen nutzen bereits OpenStreetMap: Organic Maps, OsmAnd, aber auch die Karten bei Facebook, Instagram, Apple-maps und Bing-maps werden (teilweise) von OpenStreetMap bereichert.

", + "openTheMap": "Karte öffnen", + "opening_hours": { + "closed_permanently": "Geschlossen auf unbestimmte Zeit", + "closed_until": "Geschlossen bis {date}", + "error_loading": "Fehler: Diese Öffnungszeiten können nicht angezeigt werden.", + "loadingCountry": "Land ermitteln…", + "not_all_rules_parsed": "Die Öffnungszeiten sind kompliziert. Die folgenden Regeln werden im Eingabeelement ignoriert:", + "openTill": "bis", + "open_24_7": "Durchgehend geöffnet", + "open_during_ph": "An Feiertagen ist hier", + "opensAt": "von", + "ph_closed": "geschlossen", + "ph_not_known": " ", + "ph_open": "geöffnet", + "ph_open_as_usual": "geöffnet wie üblich" + }, + "osmLinkTooltip": "Dieses Element auf OpenStreetMap durchsuchen für den Verlauf und weitere Bearbeitungsmöglichkeiten", + "pdf": { + "attr": "Kartendaten © OpenStreetMap Contributors, wiederverwendbar unter ODbL", + "attrBackground": "Hintergrund-Ebene: {background}", + "generatedWith": "Erstellt mit MapComplete.osm.be", + "versionInfo": "v{version} - erstellt am {date}" + }, + "pickLanguage": "Sprache wählen: ", + "questions": { + "emailIs": "Die E-Mail-Adresse dieser {category} lautet {email}", + "emailOf": "Wie lautet die E-Mail-Adresse der {category}?", + "phoneNumberIs": "Die Telefonnummer der {category} lautet {phone}", + "phoneNumberOf": "Wie lautet die Telefonnummer der {category}?", + "websiteIs": "Webseite: {website}", + "websiteOf": "Was ist die Website der {category}?" + }, + "readYourMessages": "Bitte lesen Sie alle Ihre OpenStreetMap-Nachrichten, bevor Sie einen neuen Punkt hinzufügen.", + "returnToTheMap": "Zurück zur Karte", + "save": "Speichern", + "search": { + "error": "Etwas ging schief…", + "nothing": "Nichts gefunden…", + "search": "Einen Ort suchen", + "searching": "Suchen …" + }, + "sharescreen": { + "addToHomeScreen": "

Zum Startbildschirm hinzufügen

Sie können diese Webseite zum Startbildschirm Ihres Smartphones hinzufügen, um ein natives Gefühl zu erhalten. Klicken Sie dazu in der Adressleiste auf die Schaltfläche 'Zum Startbildschirm hinzufügen'.", + "copiedToClipboard": "Link in die Zwischenablage kopiert", + "editThemeDescription": "Fragen zu diesem Kartenthema hinzufügen oder ändern", + "editThisTheme": "Dieses Thema bearbeiten", + "embedIntro": "

Auf Ihrer Website einbetten

Bitte betten Sie diese Karte in Ihre Webseite ein.
Wir ermutigen Sie, es zu tun - Sie müssen nicht einmal um Erlaubnis fragen.
Es ist kostenlos und wird es immer sein. Je mehr Leute sie benutzen, desto wertvoller wird sie.", + "fsAddNew": "Schaltfläche 'neuen POI hinzufügen' aktivieren", + "fsGeolocation": "Die Schaltfläche 'Mich geolokalisieren' aktivieren (nur für Mobil)", + "fsIncludeCurrentBackgroundMap": "Die aktuelle Hintergrundwahl einschließen {name}", + "fsIncludeCurrentLayers": "Die aktuelle Ebenenauswahl einbeziehen", + "fsIncludeCurrentLocation": "Aktuelle Position einbeziehen", + "fsLayerControlToggle": "Mit der erweiterten Ebenenkontrolle beginnen", + "fsLayers": "Aktivieren der Layersteuerung", + "fsSearch": "Suchleiste aktivieren", + "fsUserbadge": "Anmelde-Knopf aktivieren", + "fsWelcomeMessage": "Popup der Begrüßungsnachricht und zugehörige Registerkarten anzeigen", + "intro": "

Diese Karte teilen

Sie können diese Karte teilen, indem Sie den untenstehenden Link kopieren und an Freunde und Familie schicken:", + "thanksForSharing": "Danke für das Teilen!" + }, + "skip": "Frage überspringen", + "skippedQuestions": "Einige Fragen wurden übersprungen", + "testing": "Testen - Änderungen werden nicht gespeichert", + "weekdays": { + "abbreviations": { + "friday": "Fr", + "monday": "Mo", + "saturday": "Sa", + "sunday": "So", + "thursday": "Do", + "tuesday": "Di", + "wednesday": "Mi" + }, + "friday": "Freitag", + "monday": "Montag", + "saturday": "Samstag", + "sunday": "Sonntag", + "thursday": "Donnerstag", + "tuesday": "Dienstag", + "wednesday": "Mittwoch" + }, + "welcomeBack": "Sie sind eingeloggt, willkommen zurück!", + "wikipedia": { + "createNewWikidata": "Einen neuen Wikidata-Eintrag erstellen", + "doSearch": "Suche oben, um Ergebnisse zu sehen", + "failed": "Laden des Wikipedia-Eintrags fehlgeschlagen", + "loading": "Wikipedia laden...", + "noResults": "Nichts gefunden für {search}", + "noWikipediaPage": "Dieses Wikidata-Element hat noch keine entsprechende Wikipedia-Seite.", + "searchWikidata": "Suche auf Wikidata", + "wikipediaboxTitle": "Wikipedia" + } }, - "morescreen": { - "intro": "

Mehr thematische Karten?

Sammeln Sie gerne Geodaten?
Es sind weitere Themen verfügbar.", - "requestATheme": "Wenn Sie ein benutzerdefiniertes Thema wünschen, fordern Sie es im Issue Tracker an", - "streetcomplete": "Eine andere, ähnliche Anwendung ist StreetComplete.", - "createYourOwnTheme": "Erstellen Sie Ihr eigenes MapComplete-Thema von Grund auf neu", - "previouslyHiddenTitle": "Zuvor besuchte versteckte Themen", - "hiddenExplanation": "Diese Themen sind nur für Personen zugänglich, die einen Link erhalten haben. Sie haben {hidden_discovered} von {total_hidden} versteckten Themen entdeckt." + "image": { + "addPicture": "Bild hinzufügen", + "ccb": "unter der 'CC-BY-Lizenz'", + "ccbExplanation": "Die CC-BY-Lizenz besagt, dass jeder Ihr Bild für jeden Zweck verwenden darf, aber Sie müssen als Urheber genannt werden", + "ccbs": "unter der 'CC-BY-SA-Lizenz'", + "ccbsExplanation": "Die CC-BY-SA-Lizenz bedeutet, dass jeder Ihr Bild für jeden Zweck verwenden darf, aber Sie müssen genannt werden, und Remixe des Bildes müssen unter derselben Lizenz veröffentlicht werden", + "cco": "als 'Public Domain'", + "ccoExplanation": "Das Hinzufügen eines gemeinfreien Bildes impliziert, dass jeder alles mit Ihrem Bild machen kann", + "doDelete": "Bild entfernen", + "dontDelete": "Abbrechen", + "isDeleted": "Gelöscht", + "pleaseLogin": "Bitte einloggen, um ein Bild hinzuzufügen", + "respectPrivacy": "Bitte respektieren Sie die Privatsphäre. Fotografieren Sie weder Personen noch Nummernschilder. Benutzen Sie keine urheberrechtlich geschützten Quellen wie z.B. Google Maps oder Google Streetview.", + "toBig": "Ihr Bild ist zu groß, da es {actual_size} ist. Bitte verwenden Sie Bilder von höchstens {max_size}", + "uploadDone": "Ihr Bild wurde hinzugefügt. Vielen Dank für Ihre Hilfe!", + "uploadFailed": "Wir konnten Ihr Bild nicht hochladen. Haben Sie eine aktive Internetverbindung und sind APIs von Dritten erlaubt? Der Brave Browser oder UMatrix blockieren diese eventuell.", + "uploadMultipleDone": "{count} Bilder wurden hinzugefügt. Vielen Dank für die Hilfe!", + "uploadingMultiple": "{count} Bilder hochladen…", + "uploadingPicture": "Bild wird hochgeladen…", + "willBePublished": "Ihr Bild wird veröffentlicht " }, - "readYourMessages": "Bitte lesen Sie alle Ihre OpenStreetMap-Nachrichten, bevor Sie einen neuen Punkt hinzufügen.", - "fewChangesBefore": "Bitte beantworten Sie ein paar Fragen zu bestehenden Punkten, bevor Sie einen neuen Punkt hinzufügen.", - "goToInbox": "Posteingang öffnen", - "getStartedLogin": "Bei OpenStreetMap anmelden, um loszulegen", - "getStartedNewAccount": " oder ein neues Konto anlegen", - "noTagsSelected": "Keine Tags ausgewählt", - "customThemeIntro": "

Benutzerdefinierte Themes

Dies sind zuvor besuchte benutzergenerierte Themen.", - "aboutMapcomplete": "

Über MapComplete

Nutzen Sie es, um OpenStreetMap-Informationen zu einem einzigen Thema hinzuzufügen. Beantworten Sie Fragen, und innerhalb weniger Minuten sind Ihre Beiträge überall verfügbar. Der Theme-Maintainer definiert Elemente, Fragen und Sprachen dafür.

Mehr erfahren

MapComplete bietet immer den nächsten Schritt, um mehr über OpenStreetMap zu erfahren.

  • Wenn es in eine Website eingebettet wird, verlinkt der iframe zu einer Vollbildversion von MapComplete
  • Die Vollbildversion bietet Infos über OpenStreetMap
  • Das Betrachten funktioniert ohne Anmeldung, aber das Bearbeiten erfordert ein OSM-Konto.
  • Wenn Sie nicht angemeldet sind, werden Sie dazu aufgefordert
  • Sobald Sie eine Frage beantwortet haben, können Sie der Karte neue Punkte hinzufügen
  • Nach einer Weile werden aktuelle OSM-Tags angezeigt, die später mit dem Wiki verlinkt werden


Haben Sie ein Problem bemerkt? Haben Sie einen Funktionswunsch? Möchten Sie bei der Übersetzung helfen? Besuchen Sie den Quellcode oder den Issue Tracker

Möchten Sie Ihren Fortschritt sehen? Verfolgen Sie die Anzahl der Änderungen auf OsmCha.

", - "backgroundMap": "Hintergrundkarte", - "layerSelection": { - "zoomInToSeeThisLayer": "Ausschnitt vergrößern, um diese Ebene anzuzeigen", - "title": "Ebenen auswählen" + "index": { + "#": "Dieser Text wird über die Thema-Auswahlschaltfläche gezeigt, wenn kein Thema geladen ist", + "featuredThemeTitle": "Diese Woche im Blickpunkt", + "intro": "MapComplete ist eine OpenStreetMap-Anwendung, mit der Informationen zu Objekten eines bestimmten Themas angezeigt und angepasst werden können.", + "logIn": "Melden Sie sich an, um Themen anzuzeigen, die Sie zuvor besucht haben", + "pickTheme": "Wähle unten ein Thema, um zu starten.", + "title": "Willkommen bei MapComplete" }, - "weekdays": { - "abbreviations": { - "monday": "Mo", - "tuesday": "Di", - "wednesday": "Mi", - "thursday": "Do", - "friday": "Fr", - "saturday": "Sa", - "sunday": "So" - }, - "monday": "Montag", - "tuesday": "Dienstag", - "wednesday": "Mittwoch", - "thursday": "Donnerstag", - "friday": "Freitag", - "saturday": "Samstag", - "sunday": "Sonntag" + "move": { + "cancel": "Verschieben abbrechen", + "cannotBeMoved": "Dieses Element kann nicht verschoben werden.", + "confirmMove": "Hierhin verschieben", + "inviteToMove": { + "generic": "Verschiebe diesen Punkt", + "reasonInaccurate": "Genauigkeit dieses Punktes verbessern", + "reasonRelocation": "Dieses Element an einen anderen Ort verschieben, weil es sich verlagert hat" + }, + "inviteToMoveAgain": "Diesen Punkt erneut verschieben", + "isRelation": "Dieses Element ist eine Relation und kann nicht verschoben werden", + "isWay": "Dieses Element ist ein Weg. Verwenden Sie einen anderen OpenStreetMap-Editor, um ihn zu verschieben.", + "loginToMove": "Sie müssen eingeloggt sein, um einen Punkt zu verschieben", + "moveTitle": "Diesen Punkt verschieben", + "partOfAWay": "Dieses Element ist Teil eines anderen Weges. Verwenden Sie einen anderen Editor, um es zu verschieben.", + "partOfRelation": "Dieses Element ist Teil einer Relation. Verwenden Sie einen anderen Editor, um es zu verschieben.", + "pointIsMoved": "Der Punkt wurde verschoben", + "reasons": { + "reasonInaccurate": "Der Standort dieses Elements ist ungenau und sollte um einige Meter verschoben werden", + "reasonRelocation": "Das Element wurde an einen völlig anderen Ort verlegt" + }, + "selectReason": "Warum verschieben Sie dieses Element?", + "whyMove": "Warum wollen Sie diesen Punkt verschieben?", + "zoomInFurther": "Weiter vergrößern, um die Verschiebung zu bestätigen" }, - "opening_hours": { - "error_loading": "Fehler: Diese Öffnungszeiten können nicht angezeigt werden.", - "open_during_ph": "An Feiertagen ist diese Einrichtung", - "opensAt": "von", - "openTill": "bis", - "not_all_rules_parsed": "Die Öffnungszeiten dieses Geschäfts sind abweichend. Die folgenden Regeln werden im Eingabeelement ignoriert:", - "closed_until": "Geschlossen bis {date}", - "closed_permanently": "Geschlossen auf unbestimmte Zeit", - "open_24_7": "Durchgehend geöffnet", - "ph_not_known": " ", - "ph_closed": "geschlossen", - "ph_open": "geöffnet", - "loadingCountry": "Land ermitteln…", - "ph_open_as_usual": "geöffnet wie üblich" + "multi_apply": { + "autoApply": "Wenn Sie die Attribute {attr_names} ändern, werden diese Attribute automatisch auch auf {count} anderen Objekten geändert" }, - "attribution": { - "mapContributionsByAndHidden": "Die aktuell sichtbaren Daten wurden editiert durch {contributors} und {hiddenCount} weitere Beitragende", - "mapContributionsBy": "Die aktuell sichtbaren Daten wurden editiert durch {contributors}", - "iconAttribution": { - "title": "Verwendete Icons" - }, - "attributionTitle": "Danksagung", - "codeContributionsBy": "MapComplete wurde von {contributors} und {hiddenCount} weiteren Beitragenden erstellt", - "themeBy": "Thema betreut von {author}", - "attributionContent": "

Alle Daten wurden bereitgestellt von OpenStreetMap, frei verwendbar unter der Open Database License.

" + "reviews": { + "affiliated_reviewer_warning": "(Partner-Rezension)", + "attribution": "Rezensionen werden bereitgestellt von Mangrove Reviews und sind unter CC-BY 4.0 verfügbar.", + "i_am_affiliated": "Ich bin mit diesem Objekt vertraut
Überprüfe, ob du Eigentümer, Ersteller, Angestellter etc. bist", + "name_required": "Der Name des Objekts ist notwendig, um eine Bewertung erstellen zu können", + "no_rating": "Keine Bewertung vorhanden", + "no_reviews_yet": "Es gibt noch keine Bewertungen. Hilf mit der ersten Bewertung dem Geschäft und der Open Data Bewegung!", + "plz_login": "Anmelden, um eine Bewertung abzugeben", + "posting_as": "Angemeldet als", + "saved": "Bewertung gespeichert. Danke fürs Teilen!", + "saving_review": "Speichern…", + "title": "{count} Rezensionen", + "title_singular": "Eine Rezension", + "tos": "Mit deiner Bewertung stimmst du den AGB und den Datenschutzrichtlinien von Mangrove.reviews zu", + "write_a_comment": "Schreibe einen Kommentar…" }, - "download": { - "downloadCSVHelper": "Kompatibel mit LibreOffice Calc, Excel, …", - "downloadCSV": "Sichtbare Daten als CSV herunterladen", - "downloadAsPdfHelper": "Ideal zum Drucken der aktuellen Karte", - "downloadGeoJsonHelper": "Kompatibel mit QGIS, ArcGIS, ESRI, …", - "downloadAsPdf": "PDF der aktuellen Karte herunterladen", - "downloadGeojson": "Sichtbare Daten als GeoJSON herunterladen", - "includeMetaData": "Metadaten übernehmen (letzter Bearbeiter, berechnete Werte, ...)", - "noDataLoaded": "Noch keine Daten geladen. Download ist in Kürze verfügbar", - "licenseInfo": "

Copyright-Hinweis

Die bereitgestellten Daten sind unter ODbL verfügbar. Die Wiederverwendung ist für jeden Zweck frei, aber
  • die Namensnennung © OpenStreetMap contributors ist erforderlich
  • Jede Änderung unter der gleichen Lizenz veröffentlicht werden
Bitte lesen Sie den vollständigen Copyright-Hinweis für weitere Details.", - "title": "Sichtbare Daten herunterladen", - "exporting": "Exportieren…" - }, - "pdf": { - "versionInfo": "v{version} - erstellt am {date}", - "attr": "Kartendaten © OpenStreetMap Contributors, wiederverwendbar unter ODbL", - "generatedWith": "Erstellt mit MapComplete.osm.be", - "attrBackground": "Hintergrund-Ebene: {background}" - }, - "loginOnlyNeededToEdit": "zum Bearbeiten der Karte", - "wikipedia": { - "wikipediaboxTitle": "Wikipedia", - "searchWikidata": "Suche auf Wikidata", - "loading": "Wikipedia laden...", - "noResults": "Nichts gefunden für {search}", - "doSearch": "Suche oben, um Ergebnisse zu sehen", - "noWikipediaPage": "Dieses Wikidata-Element hat noch keine entsprechende Wikipedia-Seite.", - "createNewWikidata": "Einen neuen Wikidata-Eintrag erstellen", - "failed": "Laden des Wikipedia-Eintrags fehlgeschlagen" - }, - "testing": "Testen - Änderungen werden nicht gespeichert", - "openTheMap": "Karte öffnen", - "loading": "Laden...", - "histogram": { - "error_loading": "Das Histogramm konnte nicht geladen werden" + "split": { + "cancel": "Abbrechen", + "hasBeenSplit": "Dieser Weg wurde geteilt", + "inviteToSplit": "Teilen Sie diese Straße in kleinere Segmente auf. Dies ermöglicht es, Straßenabschnitten unterschiedliche Eigenschaften zu geben.", + "loginToSplit": "Sie müssen angemeldet sein, um eine Straße aufzuteilen", + "split": "Teilen", + "splitTitle": "Wählen Sie auf der Karte aus, wo die Straße geteilt werden soll" } - }, - "favourite": { - "panelIntro": "

Ihr persönliches Thema

Aktivieren Sie Ihre Lieblingsebenen aus allen offiziellen Themen", - "loginNeeded": "

Anmelden

Ein persönliches Layout ist nur für OpenStreetMap-Benutzer verfügbar", - "reload": "Daten neu laden" - }, - "reviews": { - "title": "{count} Rezensionen", - "title_singular": "Eine Rezension", - "name_required": "Der Name des Objekts ist notwendig, um eine Bewertung erstellen zu können", - "no_reviews_yet": "Es gibt noch keine Bewertungen. Hilf mit der ersten Bewertung dem Geschäft und der Open Data Bewegung!", - "write_a_comment": "Schreibe einen Kommentar…", - "no_rating": "Keine Bewertung vorhanden", - "posting_as": "Angemeldet als", - "i_am_affiliated": "Ich bin angehörig
Überprüfe, ob du Eigentümer, Ersteller, Angestellter etc. bist", - "saving_review": "Speichern…", - "saved": "Bewertung gespeichert. Danke fürs Teilen!", - "tos": "Mit deiner Rezension stimmst du den AGB und den Datenschutzrichtlinien von Mangrove.reviews zu", - "plz_login": "Anmelden, um eine Bewertung abzugeben", - "affiliated_reviewer_warning": "(Partner-Rezension)", - "attribution": "Rezensionen werden bereitgestellt von Mangrove Reviews und sind unter CC-BY 4.0 verfügbar." - }, - "delete": { - "explanations": { - "selectReason": "Bitte wähle aus, warum dieses Element gelöscht werden soll", - "hardDelete": "Dieser Punkt wird in OpenStreetMap gelöscht. Er kann von einem erfahrenen Mitwirkenden wiederhergestellt werden", - "softDelete": "Dieses Element wird aktualisiert und in dieser Anwendung ausgeblendet. {reason}" - }, - "reasons": { - "test": "Dies war ein Testpunkt - das Element war nie wirklich vorhanden", - "notFound": "Dieses Element konnte nicht gefunden werden", - "disused": "Dieses Element wird nicht mehr verwendet oder entfernt", - "duplicate": "Dieser Punkt ist ein Duplikat eines anderen Elements" - }, - "readMessages": "Du hast ungelesene Nachrichten. Bitte beachte diese, bevor Du einen Punkt löschst - vielleicht hat jemand eine Rückmeldung", - "loginToDelete": "Sie müssen angemeldet sein, um einen Punkt zu löschen", - "useSomethingElse": "Verwenden Sie zum Löschen stattdessen einen anderen OpenStreetMap-Editor", - "partOfOthers": "Dieser Punkt ist Teil eines Weges oder einer Relation und kann nicht direkt gelöscht werden.", - "loading": "Untersuchung der Eigenschaften, um zu prüfen, ob dieses Element gelöscht werden kann.", - "onlyEditedByLoggedInUser": "Dieser Punkt wurde nur von Ihnen selbst bearbeitet, Sie können ihn sicher löschen.", - "isntAPoint": "Es können nur Punkte gelöscht werden, das ausgewählte Element ist ein Weg, eine Fläche oder eine Relation.", - "cannotBeDeleted": "Dieses Element kann nicht gelöscht werden", - "delete": "Löschen", - "isDeleted": "Dieses Element wurde gelöscht", - "whyDelete": "Warum sollte dieser Punkt gelöscht werden?", - "cancel": "Abbrechen", - "safeDelete": "Dieser Punkt kann sicher gelöscht werden.", - "notEnoughExperience": "Dieser Punkt wurde von jemand anderem erstellt." - }, - "move": { - "inviteToMove": { - "reasonRelocation": "Dieses Element an einen anderen Ort verschieben, weil es sich verlagert hat", - "generic": "Verschiebe diesen Punkt", - "reasonInaccurate": "Genauigkeit dieses Punktes verbessern" - }, - "partOfAWay": "Dieses Element ist Teil eines anderen Weges. Verwenden Sie einen anderen Editor, um es zu verschieben.", - "cannotBeMoved": "Dieses Element kann nicht verschoben werden.", - "cancel": "Verschieben abbrechen", - "whyMove": "Warum wollen Sie diesen Punkt verschieben?", - "pointIsMoved": "Der Punkt wurde verschoben", - "reasons": { - "reasonRelocation": "Das Element wurde an einen völlig anderen Ort verlegt", - "reasonInaccurate": "Der Standort dieses Elements ist ungenau und sollte um einige Meter verschoben werden" - }, - "loginToMove": "Sie müssen eingeloggt sein, um einen Punkt zu verschieben", - "zoomInFurther": "Weiter vergrößern, um die Verschiebung zu bestätigen", - "selectReason": "Warum verschieben Sie dieses Element?", - "inviteToMoveAgain": "Diesen Punkt erneut verschieben", - "moveTitle": "Diesen Punkt verschieben", - "confirmMove": "Hierhin verschieben", - "partOfRelation": "Dieses Element ist Teil einer Relation. Verwenden Sie einen anderen Editor, um es zu verschieben.", - "isWay": "Dieses Element ist ein Weg. Verwenden Sie einen anderen OpenStreetMap-Editor, um ihn zu verschieben.", - "isRelation": "Dieses Element ist eine Relation und kann nicht verschoben werden" - }, - "split": { - "split": "Teilen", - "cancel": "Abbrechen", - "loginToSplit": "Sie müssen angemeldet sein, um eine Straße aufzuteilen", - "splitTitle": "Wählen Sie auf der Karte aus, wo die Straße geteilt werden soll", - "hasBeenSplit": "Dieser Weg wurde geteilt", - "inviteToSplit": "Teilen Sie diese Straße in kleinere Segmente auf. Dies ermöglicht es, Straßenabschnitten unterschiedliche Eigenschaften zu geben." - }, - "multi_apply": { - "autoApply": "Wenn Sie die Attribute {attr_names} ändern, werden diese Attribute automatisch auch auf {count} anderen Objekten geändert" - } } \ No newline at end of file diff --git a/langs/en.json b/langs/en.json index f4bc05634c..93ecab0bb7 100644 --- a/langs/en.json +++ b/langs/en.json @@ -1,306 +1,562 @@ { - "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." - }, - "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" + "centerMessage": { + "loadingData": "Loading data…", + "ready": "Done!", + "retrying": "Loading data failed. Trying again in {count} seconds…", + "zoomIn": "Zoom in to view or edit the data" }, - "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}" + "delete": { + "cancel": "Cancel", + "cannotBeDeleted": "This feature can not be deleted", + "delete": "Delete", + "explanations": { + "hardDelete": "This point will be deleted in OpenStreetMap. It can be recovered by an experienced contributor", + "selectReason": "Please, select why this feature should be deleted", + "softDelete": "This feature will be updated and hidden from this application. {reason}" + }, + "isDeleted": "This feature is deleted", + "isntAPoint": "Only points can be deleted, the selected feature is a way, area or relation.", + "loading": "Inspecting properties to check if this feature can be deleted.", + "loginToDelete": "You must be logged in to delete a point", + "notEnoughExperience": "This point was made by someone else.", + "onlyEditedByLoggedInUser": "This point has only be edited by yourself, you can safely delete it.", + "partOfOthers": "This point is part of some way or relation and can not be deleted directly.", + "readMessages": "You have unread messages. Read these before deleting a point - someone might have feedback", + "reasons": { + "disused": "This feature is disused or removed", + "duplicate": "This point is a duplicate of another feature", + "notFound": "This feature couldn't be found", + "test": "This was a testing point - the feature was never actually there" + }, + "safeDelete": "This point can be safely deleted.", + "useSomethingElse": "Use another OpenStreetMap-editor to delete it instead", + "whyDelete": "Why should this point be deleted?" }, - "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}" + "favourite": { + "loginNeeded": "

Log in

A personal layout is only available for OpenStreetMap users", + "panelIntro": "

Your personal theme

Activate your favourite layers from all the official themes", + "reload": "Reload the data" }, - "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…" + "general": { + "about": "Easily edit and add OpenStreetMap for a certain theme", + "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.

", + "add": { + "addNew": "Add a new {category}", + "addNewMapLabel": "Click here to add a new item", + "confirmButton": "Add a {category}
Your addition is visible for everyone
", + "confirmIntro": "

Add a {title}?

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.", + "disableFilters": "Disable all filters", + "disableFiltersExplanation": "Some features might be hidden by a filter", + "hasBeenImported": "This point has already been imported", + "import": { + "hasBeenImported": "This object has been imported", + "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.", + "importTags": "The element will receive {tags}", + "officialThemesOnly": "The import button is disabled for unofficial themes to prevent accidents", + "wrongType": "This element is not a point or a way and can not be imported", + "zoomInMore": "Zoom in more to import this feature" + }, + "importTags": "The element will receive {tags}", + "intro": "You clicked somewhere where no data is known yet.
", + "layerNotEnabled": "The layer {layer} is not enabled. Enable this layer to add a point", + "openLayerControl": "Open the layer control box", + "pleaseLogin": "Please log in to add a new point", + "presetInfo": "The new POI will have {tags}", + "stillLoading": "The data is still loading. Please wait a bit before you add a new point.", + "title": "Add a new point?", + "warnVisibleForEveryone": "Your addition will be visible for everyone", + "wrongType": "This element is not a point or a way and can not be imported", + "zoomInFurther": "Zoom in further to add a point.", + "zoomInMore": "Zoom in more to import this feature" + }, + "apply_button": { + "appliedOnAnotherObject": "The object {id} will receive {tags}", + "isApplied": "The changes are applied" + }, + "attribution": { + "attributionContent": "

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

", + "attributionTitle": "Attribution notice", + "codeContributionsBy": "MapComplete has been built by {contributors} and {hiddenCount} more contributors", + "donate": "Support MapComplete financially", + "editId": "Open the OpenStreetMap online editor here", + "editJosm": "Edit here with JOSM", + "iconAttribution": { + "title": "Used icons" + }, + "josmNotOpened": "JOSM could not be reached. Make sure it is opened and remote control is enabled", + "josmOpened": "JOSM is opened", + "mapContributionsBy": "The current visible data has edits made by {contributors}", + "mapContributionsByAndHidden": "The current visible data has edits made by {contributors} and {hiddenCount} more contributors", + "openIssueTracker": "File a bug", + "openMapillary": "Open Mapillary here", + "openOsmcha": "See latest edits made with {theme}", + "themeBy": "Theme maintained by {author}", + "translatedBy": "MapComplete has been translated by {contributors} and {hiddenCount} more contributors" + }, + "back": "Back", + "backToMapcomplete": "Back to the theme overview", + "backgroundMap": "Background map", + "cancel": "Cancel", + "confirm": "Confirm", + "customThemeIntro": "

Custom themes

These are previously visited user-generated themes.", + "download": { + "downloadAsPdf": "Download a PDF of the current map", + "downloadAsPdfHelper": "Ideal to print the current map", + "downloadCSV": "Download visible data as CSV", + "downloadCSVHelper": "Compatible with LibreOffice Calc, Excel, …", + "downloadFeatureAsGeojson": "Download as GeoJson-file", + "downloadFeatureAsGpx": "Download as GPX-file", + "downloadGeoJsonHelper": "Compatible with QGIS, ArcGIS, ESRI, …", + "downloadGeojson": "Download visible data as GeoJSON", + "downloadGpx": "Download as GPX-file", + "downloadGpxHelper": "A GPX-file can be used with most navigation devices and applications", + "exporting": "Exporting…", + "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", + "title": "Download visible data", + "uploadGpx": "Upload your track to OpenStreetMap" + }, + "example": "Example", + "examples": "Examples", + "fewChangesBefore": "Please, answer a few questions of existing points before adding a new point.", + "getStartedLogin": "Log in with OpenStreetMap to get started", + "getStartedNewAccount": " or create a new account", + "goToInbox": "Open inbox", + "histogram": { + "error_loading": "Could not load the histogram" + }, + "layerSelection": { + "title": "Select layers", + "zoomInToSeeThisLayer": "Zoom in to see this layer" + }, + "loading": "Loading...", + "loadingTheme": "Loading {theme}...", + "loginFailed": "Logging in into OpenStreetMap failed", + "loginOnlyNeededToEdit": "if you want to edit the map", + "loginToStart": "Log in to answer this question", + "loginWithOpenStreetMap": "Login with OpenStreetMap", + "logout": "Log out", + "morescreen": { + "createYourOwnTheme": "Create your own MapComplete theme from scratch", + "hiddenExplanation": "These themes are only accessible to those with the link. You have discovered {hidden_discovered} of {total_hidden} hidden themes.", + "intro": "

More thematic maps?

Do you enjoy collecting geodata?
There are more themes available.", + "previouslyHiddenTitle": "Previously visited hidden themes", + "requestATheme": "If you want a custom-built theme, request it in the issue tracker", + "streetcomplete": "Another, similar application is StreetComplete." + }, + "nameInlineQuestion": "The name of this {category} is $$$", + "next": "Next", + "noNameCategory": "{category} without a name", + "noTagsSelected": "No tags selected", + "number": "number", + "oneSkippedQuestion": "One question is skipped", + "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.

", + "openTheMap": "Open the map", + "opening_hours": { + "closed_permanently": "Closed for an unkown duration", + "closed_until": "Closed until {date}", + "error_loading": "Error: could not visualize these opening hours.", + "loadingCountry": "Determining country…", + "not_all_rules_parsed": "These opening hours are complicated. The following rules are ignored in the input element:", + "openTill": "till", + "open_24_7": "Opened around the clock", + "open_during_ph": "During a public holiday, this is", + "opensAt": "from", + "ph_closed": "closed", + "ph_not_known": " ", + "ph_open": "opened", + "ph_open_as_usual": "opened as usual" + }, + "osmLinkTooltip": "Browse this object on OpenStreetMap for history and more editing options", + "pdf": { + "attr": "Map data © OpenStreetMap Contributors, reusable under ODbL", + "attrBackground": "Background layer: {background}", + "generatedWith": "Generated with MapComplete.osm.be", + "versionInfo": "v{version} - generated on {date}" + }, + "pickLanguage": "Choose a language: ", + "poweredByOsm": "Powered by OpenStreetMap", + "questions": { + "emailIs": "The email address of this {category} is {email}", + "emailOf": "What is the email address of {category}?", + "phoneNumberIs": "The phone number of this {category} is {phone}", + "phoneNumberOf": "What is the phone number of {category}?", + "websiteIs": "Website: {website}", + "websiteOf": "What is the website of {category}?" + }, + "readYourMessages": "Please, read all your OpenStreetMap-messages before adding a new point.", + "removeLocationHistory": "Delete the location history", + "returnToTheMap": "Return to the map", + "save": "Save", + "search": { + "error": "Something went wrong…", + "nothing": "Nothing found…", + "search": "Search a location", + "searching": "Searching…" + }, + "sharescreen": { + "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.", + "copiedToClipboard": "Link copied to clipboard", + "editThemeDescription": "Add or change questions to this map theme", + "editThisTheme": "Edit this theme", + "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.", + "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", + "fsLayerControlToggle": "Start with the layer control expanded", + "fsLayers": "Enable the layer control", + "fsSearch": "Enable the search bar", + "fsUserbadge": "Enable the login button", + "fsWelcomeMessage": "Show the welcome message popup and associated tabs", + "intro": "

Share this map

Share this map by copying the link below and sending it to friends and family:", + "thanksForSharing": "Thanks for sharing!" + }, + "skip": "Skip this question", + "skippedQuestions": "Some questions are skipped", + "testing": "Testing - changes won't be saved", + "weekdays": { + "abbreviations": { + "friday": "Fri", + "monday": "Mon", + "saturday": "Sat", + "sunday": "Sun", + "thursday": "Thu", + "tuesday": "Tue", + "wednesday": "Wed" + }, + "friday": "Friday", + "monday": "Monday", + "saturday": "Saturday", + "sunday": "Sunday", + "thursday": "Thursday", + "tuesday": "Tuesday", + "wednesday": "Wednesday" + }, + "welcomeBack": "You are logged in, welcome back!", + "wikipedia": { + "createNewWikidata": "Create a new Wikidata item", + "doSearch": "Search above to see results", + "failed": "Loading the Wikipedia entry failed", + "loading": "Loading Wikipedia...", + "noResults": "Nothing found for {search}", + "noWikipediaPage": "This Wikidata item has no corresponding Wikipedia page yet.", + "searchWikidata": "Search on Wikidata", + "wikipediaboxTitle": "Wikipedia" + } }, - "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": "Add 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", - "zoomInMore": "Zoom in more to import this feature", - "wrongType": "This element is not a point or a way and can not be imported" + "image": { + "addPicture": "Add picture", + "ccb": "under the CC-BY-license", + "ccbExplanation": "The CC-BY license implies that anyone may use your picture for any purpose, but they have to attribute you", + "ccbs": "under the CC-BY-SA-license", + "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", + "cco": "in the public domain", + "ccoExplanation": "Adding a picture in the public domain implies that anyone can do anything with your picture", + "doDelete": "Remove image", + "dontDelete": "Cancel", + "isDeleted": "Deleted", + "pleaseLogin": "Please log in to add a picture", + "respectPrivacy": "Do not photograph people nor license plates. Do not upload Google Maps, Google Streetview or other copyrighted sources.", + "toBig": "Your image is too large as it is {actual_size}. Please use images of at most {max_size}", + "uploadDone": "Your picture has been added. Thanks for helping out!", + "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.", + "uploadMultipleDone": "{count} pictures have been added. Thanks for helping out!", + "uploadingMultiple": "Uploading {count} pictures…", + "uploadingPicture": "Uploading your picture…", + "willBePublished": "Your picture will be published " }, - "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}" + "importHelper": { + "allAttributesSame": "All features to import have this tag", + "description": "The import helper converts an external dataset to notes. The external dataset must match one of the existing MapComplete layers. For every item you put in the importer, a single note will be created. These notes will be shown together with the relevant features in these maps to easily add them.", + "importFormat": "A text in a note should have the following format in order to be picked up:
[A bit of introduction]
https://mapcomplete.osm.be/[themename].html?[parameters such as lat and lon]#import
[all tags of the feature]
", + "inspectDataTitle": "Inspect data of {count} features to import", + "inspectDidAutoDected": "Layer was chosen automatically", + "inspectLooksCorrect": "These values look correct", + "lockNotice": "This page is locked. You need {importHelperUnlock} changesets before you can access here.", + "locked": "You need at least {importHelperUnlock} to use the import helper", + "loggedInWith": "You are currently logged in as {name} and have made {csCount} changesets", + "loginRequired": "You have to be logged in to continue", + "mapPreview": { + "autodetected": "The layer was automatically deducted based on the properties", + "confirm": "The features are on the right location on the map", + "mismatch": "{count} features did not match the selected layer. Make sure that the tags to indicate the type are present, namely {tags}", + "selectLayer": "Which layer does this import match with?", + "title": "Map preview" + }, + "selectFile": { + "description": "Select a .csv or .geojson file to get started", + "errDuplicate": "Some columns have the same name", + "errNoLatOrLon": "The header does not contain `lat` or `lon`", + "errNoName": "Some columns don't have a name", + "errNotFeatureCollection": "The loaded JSON-file is not a geojson-featurecollection", + "errPointsOnly": "The loaded JSON-file should only contain points", + "fileFormatDescription": "Select a .csv or a .geojson file", + "fileFormatDescriptionCsv": "In the CSV-file, there should be a column lat and lon with the coordinates in WGS84. There should be an additional column for every attribute.", + "fileFormatDescriptionGeoJson": "In the geojson file, only points should be present. The properties should be exactly those properties that should go into OpenStreetMap", + "loadedFilesAre": "Currently loaded file is {file}", + "noFilesLoaded": "No file is currently loaded", + "title": "Select file" + }, + "selectLayer": "Select a layer...", + "someHaveSame": "{count} features to import have this tag, this is {percentage}% of the total", + "title": "Import helper", + "userAccountTitle": "Select user account", + "validateDataTitle": "Validate data" }, - "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." + "importInspector": { + "title": "Inspect and manage import notes" }, - "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" + "importLayer": { + "alreadyMapped": "There already is another {title} on the map - this point is a duplicate", + "description": "A layer which imports entries for {title}", + "importButton": "import_button({layerId}, _tags, I have found a {title} here - add it to the map,./assets/svg/addSmall.svg,,,id)", + "importHandled": "
This feature has been handled! Thanks for your effort
", + "layerName": "Possible {title}", + "notFound": "I could not find {title} - remove it", + "popupTitle": "Possible {title}" }, - "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" + "index": { + "#": "These texts are shown above the theme buttons when no theme is loaded", + "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.", + "logIn": "Log in to see other themes you previously visited", + "pickTheme": "Pick a theme below to get started.", + "title": "Welcome to MapComplete" }, - "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" + "move": { + "cancel": "Cancel move", + "cannotBeMoved": "This feature cannot be moved.", + "confirmMove": "Move here", + "inviteToMove": { + "generic": "Move this point", + "reasonInaccurate": "Improve the accuracy of this point", + "reasonRelocation": "Move this object to a another place because it has relocated" + }, + "inviteToMoveAgain": "Move this point again", + "isRelation": "This feature is a relation and can not be moved", + "isWay": "This feature is a way. Use another OpenStreetMap editor to move it.", + "loginToMove": "You must be logged in to move a point", + "moveTitle": "Move this point", + "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.", + "pointIsMoved": "The point has been moved", + "reasons": { + "reasonInaccurate": "The location of this object is inaccurate and should be moved a few meter", + "reasonRelocation": "The object has been relocated to a totally different location" + }, + "selectReason": "Why do you move this object?", + "whyMove": "Why do you want to move this point?", + "zoomInFurther": "Zoom in further to confirm this move" }, - "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" + "multi_apply": { + "autoApply": "When changing the attributes {attr_names}, these attributes will automatically be changed on {count} other objects too" }, - "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" + "notes": { + "addComment": "Add comment", + "addCommentAndClose": "Add comment and close", + "addCommentPlaceholder": "Add a comment...", + "anonymous": "Anonymous user", + "closeNote": "Close note", + "createNote": "Create a new note", + "createNoteIntro": "Is something wrong or missing on the map? Create a note here. These will be checked by volunteers", + "createNoteTitle": "Create a new note here", + "disableAllNoteFilters": "Disable all filters", + "isClosed": "This note is resolved", + "isCreated": "Your note has been created!", + "loginToAddComment": "Login to add a comment", + "loginToAddPicture": "Login to add a picture", + "loginToClose": "Login to close this note", + "noteIsPublic": "This will be visible to everyone", + "noteLayerDoEnable": "Enable the layer showing notes", + "noteLayerHasFilters": "Some notes might be hidden by a filter", + "noteLayerNotEnabled": "The layer showing notes is not enabled. This layer must be enabled to add a new note", + "notesLayerMustBeEnabled": "The 'notes'-layer is disabled. Enable it to add a note", + "reopenNote": "Reopen note", + "reopenNoteAndComment": "Reopen note and comment", + "textNeeded": "Enter a descriptive text to create a note", + "warnAnonymous": "You are not logged in. We won't be able to contact you to resolve your issue." }, - "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…" + "privacy": { + "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.", + "editingTitle": "When making changes", + "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.", + "geodataTitle": "Your geolocation", + "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.", + "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.", + "miscCookiesTitle": "Other cookies", + "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!", + "title": "Privacy policy", + "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", + "trackingTitle": "Statistical data", + "whileYoureHere": "Do you care about privacy?" }, - "histogram": { - "error_loading": "Could not load the histogram" + "professional": { + "aboutMc": { + "internalUse": { + "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.

", + "title": "Using the data in internal processes" + }, + "layers": { + "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, ...)", + "title": "What data can be shown with MapComplete?" + }, + "survey": { + "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", + "title": "Survey possibilities" + }, + "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", + "title": "Using MapComplete in your organization" + }, + "aboutOsm": { + "aboutOsm": { + "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 there, …", + "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…", + "title": "What is OpenStreetMap?" + }, + "benefits": { + "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", + "title": "Benefits of the OSM-ecosystem" + }, + "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.", + "title": "The license" + }, + "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.", + "title": "What about vandalism?" + } + }, + "drawbacks": { + "intro": "While joining this community has tremendous benefits, there are a few topics to carefully consider.", + "licenseNuances": { + "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", + "title": "Implications of ODbL: some use cases", + "usecaseGatheringOpenData": { + "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).", + "title": "Gathering open data" + }, + "usecaseMapDifferentSources": { + "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", + "title": "Creating a map from different sources" + } + }, + "title": "A few drawbacks to keep in mind", + "unsuitedData": { + "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.", + "title": "Data not suited for OpenStreetMap" + } + }, + "indexPage": { + "button": "Discover our services", + "hook": "Need professional support?", + "hookMore": "We can help with setting up surveys, data imports and OpenStreetMap-consultancy" + }, + "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?", + "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.", + "title": "MapComplete services" + }, + "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.

", + "title": "Professional support with MapComplete" }, - "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" + "reviews": { + "affiliated_reviewer_warning": "(Affiliated review)", + "attribution": "Reviews are powered by Mangrove Reviews and are available under CC-BY 4.0.", + "i_am_affiliated": "I am affiliated with this object
Check if you are an owner, creator, employee, …", + "name_required": "A name is required in order to display and create reviews", + "no_rating": "No rating given", + "no_reviews_yet": "There are no reviews yet. Be the first to write one and help open data and the business!", + "plz_login": "Log in to leave a review", + "posting_as": "Posting as", + "saved": "Review saved. Thanks for sharing!", + "saving_review": "Saving…", + "title": "{count} reviews", + "title_singular": "One review", + "tos": "If you create a review, you agree to the TOS and privacy policy of Mangrove.reviews", + "write_a_comment": "Leave a review…" }, - "apply_button": { - "isApplied": "The changes are applied", - "appliedOnAnotherObject": "The object {id} will receive {tags}" + "split": { + "cancel": "Cancel", + "hasBeenSplit": "This way has been split", + "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", + "split": "Split", + "splitTitle": "Choose on the map where to split this road" + }, + "validation": { + "email": { + "description": "email-adres", + "feedback": "This is not a valid email address", + "noAt": "An email address should contain an @" + }, + "float": { + "description": "a number", + "feedback": "This is not a number" + }, + "int": { + "description": "a whole number" + }, + "nat": { + "description": "a positive, whole number or zero", + "mustBePositive": "This number should be positive", + "mustBeWhole": "Only whole numbers are allowed", + "notANumber": "Enter a number" + }, + "pfloat": { + "description": "a positive number" + }, + "phone": { + "description": "a phone number", + "feedback": "This is not a valid phone number" + }, + "pnat": { + "description": "a positive, whone number", + "noZero": "Zero is not allowed" + }, + "string": { + "description": "a piece of text" + }, + "tooLong": "Text is to long, at most 255 characters are allowed. You do have {count} characters now", + "url": { + "description": "link to a website", + "feedback": "This is not a valid web address" + } } - }, - "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" - } -} +} \ No newline at end of file diff --git a/langs/eo.json b/langs/eo.json index b2d149e7dd..ea4d8b04fa 100644 --- a/langs/eo.json +++ b/langs/eo.json @@ -1,104 +1,104 @@ { - "image": { - "ccb": "laŭ la permesilo CC-BY", - "addPicture": "Aldoni bildon", - "uploadingPicture": "Alŝutante vian bildon…", - "dontDelete": "Nuligi", - "ccbs": "laŭ la permesilo CC-BY-SA", - "cco": "kiel publika havaĵo", - "pleaseLogin": "Bonvolu saluti por aldoni bildon", - "uploadingMultiple": "Alŝutante {count} bildojn…" - }, - "general": { - "opening_hours": { - "ph_open": "malfermita", - "opensAt": "ekde", - "openTill": "ĝis", - "ph_closed": "fermita", - "ph_not_known": " " + "centerMessage": { + "loadingData": "Ŝargante datenojn…", + "ready": "Farite!" }, - "questions": { - "websiteIs": "Retejo: {website}" + "delete": { + "cancel": "Nuligi" }, - "weekdays": { - "sunday": "dimanĉo", - "abbreviations": { - "friday": "ve", - "saturday": "sa", - "tuesday": "ma", - "wednesday": "me", - "thursday": "ĵa", - "sunday": "di", - "monday": "lu" - }, - "thursday": "ĵaŭdo", - "friday": "vendredo", - "saturday": "sabato", - "tuesday": "mardo", - "wednesday": "merkredo", - "monday": "lundo" + "favourite": { + "reload": "Reŝargi la datenojn" }, - "loading": "Ŝargante…", - "pdf": { - "generatedWith": "Generita per MapComplete.osm.be", - "versionInfo": "v{version} - generita je {date}", - "attrBackground": "Fona tavolo: {background}", - "attr": "Mapaj datenoj © Kontribuintoj al OpenStreetMap, reuzeblaj laŭ ODbL" + "general": { + "add": { + "title": "Enmeti novan punkton?" + }, + "attribution": { + "iconAttribution": { + "title": "Uzitaj piktogramoj" + } + }, + "backgroundMap": "Fona mapo", + "cancel": "Nuligi", + "download": { + "exporting": "Elportante…" + }, + "loading": "Ŝargante…", + "loginWithOpenStreetMap": "Saluti per OpenStreetMap", + "noNameCategory": "{category} sen nomo", + "openTheMap": "Malfermi la mapon", + "opening_hours": { + "openTill": "ĝis", + "opensAt": "ekde", + "ph_closed": "fermita", + "ph_not_known": " ", + "ph_open": "malfermita" + }, + "pdf": { + "attr": "Mapaj datenoj © Kontribuintoj al OpenStreetMap, reuzeblaj laŭ ODbL", + "attrBackground": "Fona tavolo: {background}", + "generatedWith": "Generita per MapComplete.osm.be", + "versionInfo": "v{version} - generita je {date}" + }, + "pickLanguage": "Elektu lingvon: ", + "questions": { + "websiteIs": "Retejo: {website}" + }, + "returnToTheMap": "Reen al la mapo", + "save": "Konservi", + "search": { + "error": "Io fiaskis…", + "nothing": "Nenio troviĝis…", + "search": "Serĉi lokon", + "searching": "Serĉante…" + }, + "sharescreen": { + "editThisTheme": "Modifi ĉi tiun etoson", + "fsSearch": "Ŝalti la serĉbreton", + "fsUserbadge": "Ŝalti la salutbutonon" + }, + "skip": "Preterpasi ĉi tiun demandon", + "weekdays": { + "abbreviations": { + "friday": "ve", + "monday": "lu", + "saturday": "sa", + "sunday": "di", + "thursday": "ĵa", + "tuesday": "ma", + "wednesday": "me" + }, + "friday": "vendredo", + "monday": "lundo", + "saturday": "sabato", + "sunday": "dimanĉo", + "thursday": "ĵaŭdo", + "tuesday": "mardo", + "wednesday": "merkredo" + }, + "wikipedia": { + "loading": "Ŝargante Vikipedion…", + "noResults": "Nenio troviĝis pri {search}", + "searchWikidata": "Serĉi Vikidatumojn", + "wikipediaboxTitle": "Vikipedio" + } }, - "loginWithOpenStreetMap": "Saluti per OpenStreetMap", - "search": { - "search": "Serĉi lokon", - "nothing": "Nenio troviĝis…", - "error": "Io fiaskis…", - "searching": "Serĉante…" + "image": { + "addPicture": "Aldoni bildon", + "ccb": "laŭ la permesilo CC-BY", + "ccbs": "laŭ la permesilo CC-BY-SA", + "cco": "kiel publika havaĵo", + "dontDelete": "Nuligi", + "pleaseLogin": "Bonvolu saluti por aldoni bildon", + "uploadingMultiple": "Alŝutante {count} bildojn…", + "uploadingPicture": "Alŝutante vian bildon…" }, - "returnToTheMap": "Reen al la mapo", - "save": "Konservi", - "skip": "Preterpasi ĉi tiun demandon", - "add": { - "title": "Enmeti novan punkton?" + "index": { + "title": "Bonvenon al MapComplete" }, - "pickLanguage": "Elektu lingvon: ", - "noNameCategory": "{category} sen nomo", - "sharescreen": { - "editThisTheme": "Modifi ĉi tiun etoson", - "fsSearch": "Ŝalti la serĉbreton", - "fsUserbadge": "Ŝalti la salutbutonon" - }, - "backgroundMap": "Fona mapo", - "openTheMap": "Malfermi la mapon", - "wikipedia": { - "wikipediaboxTitle": "Vikipedio", - "loading": "Ŝargante Vikipedion…", - "searchWikidata": "Serĉi Vikidatumojn", - "noResults": "Nenio troviĝis pri {search}" - }, - "cancel": "Nuligi", - "attribution": { - "iconAttribution": { - "title": "Uzitaj piktogramoj" - } - }, - "download": { - "exporting": "Elportante…" + "reviews": { + "saving_review": "Konservante…", + "title": "{count} recenzoj", + "title_singular": "Unu recenzo" } - }, - "favourite": { - "reload": "Reŝargi la datenojn" - }, - "reviews": { - "saving_review": "Konservante…", - "title": "{count} recenzoj", - "title_singular": "Unu recenzo" - }, - "centerMessage": { - "ready": "Farite!", - "loadingData": "Ŝargante datenojn…" - }, - "index": { - "title": "Bonvenon al MapComplete" - }, - "delete": { - "cancel": "Nuligi" - } -} +} \ No newline at end of file diff --git a/langs/es.json b/langs/es.json index 0b1b46dd87..183d980766 100644 --- a/langs/es.json +++ b/langs/es.json @@ -1,167 +1,211 @@ { - "image": { - "addPicture": "Añadir foto", - "uploadingPicture": "Subiendo tu imagen…", - "uploadingMultiple": "Subiendo {count} de tus fotos…", - "pleaseLogin": "Entra para subir una foto", - "willBePublished": "Tu foto será publicada: ", - "cco": "en dominio público", - "ccbs": "bajo licencia CC-BY-SA", - "ccb": "bajo licencia CC-BY", - "uploadFailed": "No se pudo cargar la imagen. ¿Tienes Internet y se permiten API de terceros? El navegador Brave o UMatrix podría bloquearlas.", - "respectPrivacy": "No fotografíes personas o matrículas. No subas datos de Google Maps, Google Streetview u otras fuentes protegidas por derechos de autor.", - "uploadDone": "Tu imagen ha sido añadida. Gracias por ayudar.", - "dontDelete": "Cancelar", - "doDelete": "Borrar imagen", - "isDeleted": "Borrada" - }, - "centerMessage": { - "loadingData": "Cargando datos…", - "zoomIn": "Amplía para ver o editar los datos", - "ready": "Hecho.", - "retrying": "La carga de datos ha fallado. Volviéndolo a probar en {count} segundos…" - }, - "index": { - "#": "Estos textos son mostrados sobre los botones del tema cuando no hay un tema cargado", - "pickTheme": "Elige un tema de abajo para empezar.", - "intro": "MapComplete a un visor y editor de OpenStreetMap, que te muestra información sobre un tema específico.", - "title": "Bienvenido a MapComplete" - }, - "general": { - "loginWithOpenStreetMap": "Entra en OpenStreetMap", - "welcomeBack": "Has entrado, bienvenido.", - "loginToStart": "Entra para contestar esta pregunta", - "search": { - "search": "Busca una ubicación", - "searching": "Buscando…", - "nothing": "Nada encontrado.", - "error": "Alguna cosa no ha ido bien..." + "centerMessage": { + "loadingData": "Cargando datos…", + "ready": "Hecho.", + "retrying": "La carga de datos ha fallado. Volviéndolo a probar en {count} segundos…", + "zoomIn": "Amplía para ver o editar los datos" }, - "returnToTheMap": "Volver al mapa", - "save": "Guardar", - "cancel": "Cancelar", - "skip": "Saltar esta pregunta", - "oneSkippedQuestion": "Has ignorado una pregunta", - "skippedQuestions": "Has ignorado algunas preguntas", - "number": "número", - "osmLinkTooltip": "Mira este objeto en OpenStreetMap para ver historial y otras opciones de edición", - "add": { - "addNew": "Añadir {category} aquí", - "title": "Quieres añadir un punto?", - "intro": "Has marcado un lugar del que no conocemos los datos.
", - "pleaseLogin": "`Por favor inicia sesión para añadir un nuevo punto", - "zoomInFurther": "Acerca para añadir un punto.", - "stillLoading": "Los datos se siguen cargando. Espera un poco antes de añadir ningún punto.", - "confirmIntro": "

Añadir {title} aquí?

El punto que estás creando lo verá todo el mundo. Sólo añade cosas que realmente existan. Muchas aplicaciones usan estos datos.", - "confirmButton": "Añadir una {category} aquí.
Tu contribución es visible para todos
", - "openLayerControl": "Abrir el control de capas", - "layerNotEnabled": "La capa {layer} no está habilitada. Hazlo para poder añadir un punto en esta capa" + "delete": { + "cancel": "Cancelar", + "cannotBeDeleted": "Esta función no puede ser eliminada", + "delete": "Eliminar", + "explanations": { + "hardDelete": "Este punto será eliminado en OpenStreetMap. Puede ser recuperado por un colaborador experimentado", + "selectReason": "Por favor, seleccione el motivo por el que esta característica debe ser eliminada" + }, + "isDeleted": "Esta función se ha eliminado", + "safeDelete": "Este punto puede ser eliminado con seguridad.", + "useSomethingElse": "Utilice otro editor de OpenStreetMap para eliminarlo", + "whyDelete": "¿Por qué debería eliminarse este punto?" }, - "pickLanguage": "Escoge idioma: ", - "about": "Edita facilmente y añade puntos en OpenStreetMap de un tema concreto", - "nameInlineQuestion": "{category}: Su nombre es $$$", - "noNameCategory": "{category} sin nombre", - "questions": { - "phoneNumberOf": "Qué teléfono tiene {category}?", - "phoneNumberIs": "El número de teléfono de {category} es {phone}", - "websiteOf": "Cual es la página web de {category}?", - "websiteIs": "Página web: {website}", - "emailOf": "¿Qué dirección de correu tiene {category}?", - "emailIs": "La dirección de correo de {category} es {email}" + "favourite": { + "loginNeeded": "

Entrar

El diseño personalizado sólo está disponible para los usuarios de OpenStreetMap", + "panelIntro": "

Tu tema personal

Activa tus capas favoritas de todas los temas oficiales", + "reload": "Recargar datos" }, - "openStreetMapIntro": "

Un mapa abierto

¿No sería genial si hubiera un solo mapa, que todos pudieran usar y editar libremente?¿Un solo lugar para almacenar toda la información geográfica? Entonces, todos esos sitios web con mapas diferentes, pequeños e incompatibles (que siempre están desactualizados) ya no serían necesarios.

OpenStreetMap es ese mapa. Los datos del mapa se pueden utilizar de forma gratuita (con atribución y publicación de cambios en esos datos). Además de eso, todos pueden agregar libremente nuevos datos y corregir errores. Este sitio web también usa OpenStreetMap. Todos los datos provienen de allí, y tus respuestas y correcciones también se añadirán allí.

Muchas personas y aplicaciones ya usan OpenStreetMap: Maps.me, OsmAnd, pero también los mapas de Facebook, Instagram, Apple y Bing son (en parte) impulsados ​​por OpenStreetMap. Si cambias algo aquí, también se reflejará en esas aplicaciones, en su próxima actualización

", - "sharescreen": { - "intro": "

Comparte este mapa

Comparte este mapa copiando el enlace de debajo y enviándolo a amigos y familia:", - "addToHomeScreen": "

Añadir a la pantalla de inicio

Puedes añadir esta web en la pantalla de inicio de tu smartphone para que se vea más nativo. Aprieta el botón 'añadir a inicio' en la barra de direcciones URL para hacerlo.", - "embedIntro": "

Inclúyelo en tu página web

Incluye este mapa en tu página web.
Te animamos a que lo hagas, no hace falta que pidas permiso.
Es gratis, y siempre lo será. A más gente que lo use más valioso será.", - "copiedToClipboard": "Enlace copiado en el portapapeles", - "thanksForSharing": "Gracias por compartir", - "editThisTheme": "Editar este reto", - "editThemeDescription": "Añadir o cambiar preguntas de este reto", - "fsUserbadge": "Activar el botón de entrada", - "fsSearch": "Activar la barra de búsqueda", - "fsWelcomeMessage": "Muestra el mensaje emergente de bienvenida y pestañas asociadas", - "fsLayers": "Activar el control de capas", - "fsLayerControlToggle": "Iniciar el control de capas avanzado", - "fsAddNew": "Activar el botón de añadir nuevo PDI'", - "fsGeolocation": "Activar el botón de 'geolocalízame' (només mòbil)", - "fsIncludeCurrentBackgroundMap": "Incluir la opción de fondo actual {name}", - "fsIncludeCurrentLayers": "Incluir las opciones de capa actual", - "fsIncludeCurrentLocation": "Incluir localización actual" + "general": { + "about": "Edita fácilmente y añade puntos en OpenStreetMap de un tema concreto", + "add": { + "addNew": "Añadir una nueva {category}", + "addNewMapLabel": "Haga clic aquí para añadir un nuevo ítem", + "confirmButton": "Añadir una {category} .
Tu contribución es visible para todos
", + "confirmIntro": "

Añadir {title} aquí?

El punto que estás creando lo verá todo el mundo. Sólo añade cosas que realmente existan. Muchas aplicaciones usan estos datos.", + "disableFilters": "Desactivar todos los filtros", + "disableFiltersExplanation": "Algunas características pueden estar ocultas por un filtro", + "hasBeenImported": "Este punto ya ha sido importado", + "import": { + "hasBeenImported": "Este objeto ya ha sido importado", + "importTags": "El elemento recibirá {tags}", + "officialThemesOnly": "El botón de importación está desactivado para los temas no oficiales para evitar accidentes", + "wrongType": "Este elemento no es un punto o una vía y no puede ser importado", + "zoomInMore": "Ampliar más para importar este elemento" + }, + "importTags": "El elemento recibirá {tags}", + "intro": "Has marcado un lugar del que no conocemos los datos.
", + "layerNotEnabled": "La capa {layer} no está habilitada. Hazlo para poder añadir un punto en esta capa", + "openLayerControl": "Abrir el control de capas", + "pleaseLogin": "<a class=\"activate-osm-authentication\">`Por favor inicia sesión para añadir un nuevo punto</a>", + "presetInfo": "El nuevo POI tendrá {tags}", + "stillLoading": "Los datos se siguen cargando. Espera un poco antes de añadir ningún punto.", + "title": "Quieres añadir un punto?", + "warnVisibleForEveryone": "Su adición será visible para todos", + "wrongType": "Este elemento no es un punto o una vía y no puede ser importado", + "zoomInFurther": "Acerca para añadir un punto.", + "zoomInMore": "Aumente el zoom para importar este elemento" + }, + "apply_button": { + "appliedOnAnotherObject": "El objeto {id} recibirá {tags}", + "isApplied": "Los cambios serán aplicados" + }, + "attribution": { + "attributionContent": "

Todos los datos son proporcionados por OpenStreetMap, reutilizables libremente bajo la Licencia Abierta de Bases de Datos (ODL).

", + "attributionTitle": "Aviso de atribución", + "iconAttribution": { + "title": "Iconos usados" + }, + "mapContributionsBy": "La información visible actual tiene ediciones hechas por {contributors}", + "themeBy": "Tema mantenido por {author}" + }, + "backgroundMap": "Mapa de fondo", + "cancel": "Cancelar", + "customThemeIntro": "

Temas personalizados

Estos son los temas generados por los usuarios que han sido visitados previamente.", + "fewChangesBefore": "Contesta unas cuantas preguntas sobre puntos existentes antes de añadir nuevos.", + "getStartedLogin": "Entra en OpenStreetMap para empezar", + "getStartedNewAccount": " o crea una nueva cuenta", + "goToInbox": "Abrir mensajes", + "layerSelection": { + "title": "Seleccionar capas", + "zoomInToSeeThisLayer": "Amplía para ver esta capa" + }, + "loading": "Cargando…", + "loginToStart": "Entra para contestar esta pregunta", + "loginWithOpenStreetMap": "Acceder con OpenStreetMap", + "morescreen": { + "createYourOwnTheme": "Crea tu propia petición completa de MapComplete desde cero.", + "intro": "

Más peticiones

Te gusta captar datos?
Hay más capas disponibles.", + "requestATheme": "Si quieres que te hagamos una petición propia , pídela aquí.", + "streetcomplete": "Otra aplicación similar es StreetComplete." + }, + "nameInlineQuestion": "{category}: Su nombre es $$$", + "noNameCategory": "{category} sin nombre", + "noTagsSelected": "No se han seleccionado etiquetas", + "number": "número", + "oneSkippedQuestion": "Has ignorado una pregunta", + "openStreetMapIntro": "

Un mapa abierto

¿No sería genial si hubiera un solo mapa, que todos pudieran usar y editar libremente?¿Un solo lugar para almacenar toda la información geográfica? Entonces, todos esos sitios web con mapas diferentes, pequeños e incompatibles (que siempre están desactualizados) ya no serían necesarios.

OpenStreetMap es ese mapa. Los datos del mapa se pueden utilizar de forma gratuita (con atribución y publicación de cambios en esos datos). Además de eso, todos pueden agregar libremente nuevos datos y corregir errores. Este sitio web también usa OpenStreetMap. Todos los datos provienen de allí, y tus respuestas y correcciones también se añadirán allí.

Muchas personas y aplicaciones ya usan OpenStreetMap: Maps.me, OsmAnd, pero también los mapas de Facebook, Instagram, Apple y Bing son (en parte) impulsados ​​por OpenStreetMap. Si cambias algo aquí, también se reflejará en esas aplicaciones, en su próxima actualización

", + "opening_hours": { + "closed_permanently": "Cerrado - sin día de apertura conocido", + "closed_until": "Cerrado hasta {date}", + "error_loading": "Error: no se han podido visualizar esos horarios de apertura.", + "not_all_rules_parsed": "El horario de esta tienda es complejo. Las normas siguientes serán ignoradas en la entrada:", + "openTill": "hasta", + "open_24_7": "Abierto las 24 horas del día", + "open_during_ph": "Durante fiestas este servicio está", + "opensAt": "desde", + "ph_closed": "cerrado", + "ph_not_known": " ", + "ph_open": "abierto" + }, + "osmLinkTooltip": "Mira este objeto en OpenStreetMap para ver historial y otras opciones de edición", + "pdf": { + "attr": "Datos cartográficos © colaboradores de OpenStreetMap, reutilizables en virtud de la ODbL", + "attrBackground": "Capa de fondo: {background}" + }, + "pickLanguage": "Escoge idioma: ", + "questions": { + "emailIs": "La dirección de correo de {category} es {email}", + "emailOf": "¿Qué dirección de correu tiene {category}?", + "phoneNumberIs": "El número de teléfono de {category} es {phone}", + "phoneNumberOf": "Qué teléfono tiene {category}?", + "websiteIs": "Página web: {website}", + "websiteOf": "Cual es la página web de {category}?" + }, + "readYourMessages": "Lee todos tus mensajes de OpenStreetMap antes de añadir nuevos puntos.", + "returnToTheMap": "Volver al mapa", + "save": "Guardar", + "search": { + "error": "Alguna cosa no ha ido bien...", + "nothing": "Nada encontrado.", + "search": "Busca una ubicación", + "searching": "Buscando…" + }, + "sharescreen": { + "addToHomeScreen": "

Añadir a la pantalla de inicio

Puedes añadir esta web en la pantalla de inicio de tu smartphone para que se vea más nativo. Aprieta el botón 'añadir a inicio' en la barra de direcciones URL para hacerlo.", + "copiedToClipboard": "Enlace copiado en el portapapeles", + "editThemeDescription": "Añadir o cambiar preguntas de este reto", + "editThisTheme": "Editar este reto", + "embedIntro": "

Inclúyelo en tu página web

Incluye este mapa en tu página web.
Te animamos a que lo hagas, no hace falta que pidas permiso.
Es gratis, y siempre lo será. A más gente que lo use más valioso será.", + "fsAddNew": "Activar el botón de añadir nuevo PDI'", + "fsGeolocation": "Activar el botón de 'geolocalízame' (només mòbil)", + "fsIncludeCurrentBackgroundMap": "Incluir la opción de fondo actual {name}", + "fsIncludeCurrentLayers": "Incluir las opciones de capa actual", + "fsIncludeCurrentLocation": "Incluir localización actual", + "fsLayerControlToggle": "Iniciar el control de capas avanzado", + "fsLayers": "Activar el control de capas", + "fsSearch": "Activar la barra de búsqueda", + "fsUserbadge": "Activar el botón de entrada", + "fsWelcomeMessage": "Muestra el mensaje emergente de bienvenida y pestañas asociadas", + "intro": "

Comparte este mapa

Comparte este mapa copiando el enlace de debajo y enviándolo a amigos y familia:", + "thanksForSharing": "Gracias por compartir" + }, + "skip": "Saltar esta pregunta", + "skippedQuestions": "Has ignorado algunas preguntas", + "weekdays": { + "abbreviations": { + "friday": "Vie", + "monday": "Lun", + "saturday": "Sab", + "sunday": "Dom", + "thursday": "Jue", + "tuesday": "Mar", + "wednesday": "Mie" + }, + "friday": "Viernes", + "monday": "Lunes", + "saturday": "Sábado", + "sunday": "Domingo", + "thursday": "Jueves", + "tuesday": "Martes", + "wednesday": "Miércoles" + }, + "welcomeBack": "Has entrado, bienvenido." }, - "morescreen": { - "intro": "

Más peticiones

Te gusta captar datos?
Hay más capas disponibles.", - "requestATheme": "Si quieres que te hagamos una petición propia , pídela aquí.", - "streetcomplete": "Otra aplicación similar es StreetComplete.", - "createYourOwnTheme": "Crea tu propia petición completa de MapComplete desde cero." + "image": { + "addPicture": "Añadir foto", + "ccb": "bajo licencia CC-BY", + "ccbs": "bajo licencia CC-BY-SA", + "cco": "en dominio público", + "doDelete": "Borrar imagen", + "dontDelete": "Cancelar", + "isDeleted": "Borrada", + "pleaseLogin": "Acceda para cargar una imagen", + "respectPrivacy": "No fotografíe personas ni matrículas. No cargue datos de Google Maps, Google StreetView u otras fuentes protegidas por derechos de autor.", + "uploadDone": "Se ha añadido la imagen. Gracias por ayudar.", + "uploadFailed": "No se pudo cargar la imagen. ¿Tiene Internet y se permiten las API de terceros? El navegador Brave o uMatrix podría bloquearlas.", + "uploadMultipleDone": "Se han añadido {count} imágenes. Gracias por ayudar.", + "uploadingMultiple": "Cargando {count} imágenes…", + "uploadingPicture": "Cargando la imagen…", + "willBePublished": "La imagen se publicará " }, - "readYourMessages": "Lee todos tus mensajes de OpenStreetMap antes de añadir nuevos puntos.", - "fewChangesBefore": "Contesta unas cuantas preguntas sobre puntos existentes antes de añadir nuevos.", - "goToInbox": "Abrir mensajes", - "getStartedLogin": "Entra en OpenStreetMap para empezar", - "getStartedNewAccount": " o crea una nueva cuenta", - "noTagsSelected": "No se han seleccionado etiquetas", - "backgroundMap": "Mapa de fondo", - "layerSelection": { - "zoomInToSeeThisLayer": "Amplía para ver esta capa", - "title": "Seleccionar capas" + "index": { + "#": "Estos textos son mostrados sobre los botones del tema cuando no hay un tema cargado", + "featuredThemeTitle": "Esta semana destacamos", + "intro": "MapComplete a un visor y editor de OpenStreetMap, que te muestra información sobre un tema específico.", + "pickTheme": "Elige un tema de abajo para empezar.", + "title": "Le damos la bienvenida a MapComplete" }, - "weekdays": { - "abbreviations": { - "monday": "Lun", - "tuesday": "Mar", - "wednesday": "Mie", - "thursday": "Jue", - "friday": "Vie", - "saturday": "Sab", - "sunday": "Dom" - }, - "monday": "Lunes", - "tuesday": "Martes", - "wednesday": "Miércoles", - "thursday": "Jueves", - "friday": "Viernes", - "saturday": "Sábado", - "sunday": "Domingo" + "reviews": { + "name_required": "Se requiere un nombre para mostrar y crear comentarios", + "no_rating": "Sin calificación dada", + "no_reviews_yet": "Aún no hay reseñas. ¡Sé el primero en escribir una y ayuda a los datos abiertos y a los negocios!", + "plz_login": "Inicia sesión para dejar una reseña", + "saved": "Reseña guardada. ¡Gracias por compartir!", + "saving_review": "Guardando…", + "title": "{count} comentarios", + "title_singular": "Un comentario", + "write_a_comment": "Deja una reseña…" }, - "opening_hours": { - "open_during_ph": "Durante fiestas este servicio está", - "opensAt": "desde", - "openTill": "hasta", - "not_all_rules_parsed": "El horario de esta tienda es complejo. Las normas siguientes serán ignoradas en la entrada:", - "closed_until": "Cerrado hasta {date}", - "closed_permanently": "Cerrado - sin día de apertura conocido", - "ph_not_known": " ", - "ph_closed": "cerrado", - "ph_open": "abierto", - "open_24_7": "Abierto las 24 horas del día", - "error_loading": "Error: no se han podido visualizar esos horarios de apertura." - }, - "attribution": { - "mapContributionsBy": "La información visible actual tiene ediciones hechas por {contributors}", - "iconAttribution": { - "title": "Iconos usados" - }, - "themeBy": "Tema mantenido por {author}", - "attributionContent": "

Todos los datos son proporcionados por OpenStreetMap, reutilizables libremente bajo la Licencia Abierta de Bases de Datos (ODL).

", - "attributionTitle": "Aviso de atribución" - }, - "customThemeIntro": "

Temas personalizados

Estos son los temas generados por los usuarios que han sido visitados previamente." - }, - "favourite": { - "panelIntro": "

Tu interficie personal

Activa tus capas favoritas de todas las interficies oficiales", - "loginNeeded": "

Entrar

El diseño personalizado sólo está disponible para los usuarios de OpenstreetMap", - "reload": "Recargar datos" - }, - "reviews": { - "title": "{count} comentarios", - "title_singular": "Un comentario", - "name_required": "Se requiere un nombre para mostrar y crear comentarios", - "saved": "Reseña guardada. ¡Gracias por compartir!", - "saving_review": "Guardando…", - "no_rating": "Sin calificación dada", - "write_a_comment": "Deja una reseña…", - "no_reviews_yet": "Aún no hay reseñas. ¡Sé el primero en escribir una y ayuda a los datos abiertos y a los negocios!", - "plz_login": "Inicia sesión para dejar una reseña" - } -} + "split": { + "cancel": "Cancelar", + "split": "Dividir" + } +} \ No newline at end of file diff --git a/langs/fi.json b/langs/fi.json index 49ce02c255..5057bbe584 100644 --- a/langs/fi.json +++ b/langs/fi.json @@ -1,61 +1,61 @@ { - "general": { - "opening_hours": { - "ph_open": "avattu", - "ph_closed": "suljettu", - "ph_not_known": " " + "centerMessage": { + "ready": "Valmis!" }, - "weekdays": { - "sunday": "Sunnuntai", - "saturday": "Lauantai", - "friday": "Perjantai", - "thursday": "Torstai", - "wednesday": "Keskiviikko", - "tuesday": "Tiistai", - "monday": "Maanantai", - "abbreviations": { - "sunday": "Su", - "saturday": "La", - "friday": "Pe", - "thursday": "To", - "wednesday": "Ke", - "tuesday": "Ti", - "monday": "Ma" - } + "general": { + "backgroundMap": "Taustakartta", + "cancel": "Peruuta", + "loginWithOpenStreetMap": "Kirjaudu sisään OpenStreetMapilla", + "number": "numero", + "opening_hours": { + "ph_closed": "suljettu", + "ph_not_known": " ", + "ph_open": "avattu" + }, + "pickLanguage": "Valitse kieli: ", + "questions": { + "websiteIs": "Verkkosivusto: {website}" + }, + "save": "Tallenna", + "search": { + "searching": "Etsitään…" + }, + "sharescreen": { + "thanksForSharing": "Kiitos jakamisesta!" + }, + "skip": "Ohita tämä kysymys", + "weekdays": { + "abbreviations": { + "friday": "Pe", + "monday": "Ma", + "saturday": "La", + "sunday": "Su", + "thursday": "To", + "tuesday": "Ti", + "wednesday": "Ke" + }, + "friday": "Perjantai", + "monday": "Maanantai", + "saturday": "Lauantai", + "sunday": "Sunnuntai", + "thursday": "Torstai", + "tuesday": "Tiistai", + "wednesday": "Keskiviikko" + } }, - "backgroundMap": "Taustakartta", - "pickLanguage": "Valitse kieli: ", - "number": "numero", - "cancel": "Peruuta", - "save": "Tallenna", - "search": { - "searching": "Etsitään…" + "image": { + "addPicture": "Lisää kuva", + "ccb": "CC-BY-lisenssillä", + "ccbs": "CC-BY-SA-lisenssillä", + "doDelete": "Poista kuva", + "dontDelete": "Peruuta", + "isDeleted": "Poistettu" }, - "sharescreen": { - "thanksForSharing": "Kiitos jakamisesta!" + "index": { + "title": "Tervetuloa MapCompleteen" }, - "questions": { - "websiteIs": "Verkkosivusto: {website}" - }, - "skip": "Ohita tämä kysymys", - "loginWithOpenStreetMap": "Kirjaudu sisään OpenStreetMapilla" - }, - "centerMessage": { - "ready": "Valmis!" - }, - "image": { - "doDelete": "Poista kuva", - "dontDelete": "Peruuta", - "addPicture": "Lisää kuva", - "isDeleted": "Poistettu", - "ccb": "CC-BY-lisenssillä", - "ccbs": "CC-BY-SA-lisenssillä" - }, - "reviews": { - "title": "{count} arvostelua", - "title_singular": "Yksi arvostelu" - }, - "index": { - "title": "Tervetuloa MapCompleteen" - } -} + "reviews": { + "title": "{count} arvostelua", + "title_singular": "Yksi arvostelu" + } +} \ No newline at end of file diff --git a/langs/fr.json b/langs/fr.json index 45c9c27114..02c5fb932c 100644 --- a/langs/fr.json +++ b/langs/fr.json @@ -1,181 +1,286 @@ { - "image": { - "addPicture": "Ajoutez une photo", - "uploadingPicture": "Mise en ligne de votre photo…", - "uploadingMultiple": "Mise en ligne de {count} photos…", - "pleaseLogin": "Connectez-vous pour téléverser une photo", - "willBePublished": "Votre photo va être publiée : ", - "cco": "dans le domaine public", - "ccbs": "sous la license CC-BY-SA", - "ccb": "sous la license CC-BY", - "uploadFailed": "L'ajout de la photo a échoué. Avez-vous accès à Internet ? Les API tierces sont-elles autorisées ? Le navigateur Brave ou UMatrix peuvent les bloquer.", - "respectPrivacy": "Merci de respecter la vie privée. Ne publiez pas les plaques d'immatriculation.", - "uploadDone": "Votre photo est ajoutée. Merci beaucoup !", - "dontDelete": "Annuler", - "doDelete": "Supprimer l'image", - "isDeleted": "Supprimé" - }, - "centerMessage": { - "loadingData": "Chargement des données…", - "zoomIn": "Rapprochez-vous sur la carte pour voir ou éditer les données", - "ready": "Fini !", - "retrying": "Le chargement a échoué. Nouvel essai dans {count} secondes…" - }, - "index": { - "#": "Ces textes sont affichés au dessus des boutons de thème quand aucun thème n'est chargé", - "title": "Bienvenue sur MapComplete", - "intro": "MapComplete est une application qui permet de voir des informations d'OpenStreetMap sur un thème spécifique et de les éditer.", - "pickTheme": "Choisissez un thème ci-dessous pour commencer." - }, - "general": { - "loginWithOpenStreetMap": "Se connecter avec OpenStreeMap", - "welcomeBack": "Vous êtes connecté. Bienvenue !", - "loginToStart": "Connectez-vous pour répondre à cette question", - "search": { - "search": "Chercher un lieu", - "searching": "Chargement…", - "nothing": "Rien n'a été trouvé…", - "error": "Quelque chose n'a pas marché…" + "centerMessage": { + "loadingData": "Chargement des données…", + "ready": "Fini !", + "retrying": "Le chargement a échoué. Nouvel essai dans {count} secondes…", + "zoomIn": "Rapprochez-vous sur la carte pour voir ou éditer les données" }, - "returnToTheMap": "Retourner sur la carte", - "save": "Sauvegarder", - "cancel": "Annuler", - "skip": "Passer la question", - "oneSkippedQuestion": "Une question a été passée", - "skippedQuestions": "Questions passées", - "number": "nombre", - "osmLinkTooltip": "Voir l'historique de cet objet sur OpenStreetMap et plus d'options d'édition", - "add": { - "addNew": "Ajouter un/une {category} ici", - "title": "Ajouter un nouveau point ?", - "intro": "Vous avez cliqué sur un endroit où il n'y a pas encore de données.
", - "pleaseLogin": "Vous devez vous connecter pour ajouter un point", - "zoomInFurther": "Rapprochez vous pour ajouter un point.", - "stillLoading": "Chargement des données en cours. Patientez un instant avant d'ajouter un nouveau point.", - "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" + "delete": { + "cancel": "Annuler", + "cannotBeDeleted": "Cet objet ne peut être supprimé", + "delete": "Supprimer", + "explanations": { + "hardDelete": "Ce point sera supprimé d’OpenStreetmap. Il pourra être restauré par des méthodes avancées", + "selectReason": "Sélectionner pourquoi cet élément devrait être supprimé" + }, + "isDeleted": "Cet objet est supprimé", + "isntAPoint": "Seul les points peuvent être supprimés, l'objet sélectionné est une ligne, un polygone ou une relation.", + "loading": "Inspection des propriétés pour vérifier si l’élément peut être supprimé.", + "loginToDelete": "Vous devez être connecté pour supprimer un objet", + "notEnoughExperience": "Ce point a été créé par une autre personne.", + "onlyEditedByLoggedInUser": "Ce point a été édité seulement par vous et peut donc être supprimé.", + "partOfOthers": "Ce point faire partie d'un autre objet et ne peut être supprimé directement.", + "readMessages": "Messages non-lus à lire avant de supprimer un point, certains pourraient comporter des informations importantes", + "reasons": { + "disused": "Cet élément n’est plus utilisé ou a été enlevé", + "duplicate": "Ce point est un doublon", + "notFound": "Cet élément n’a pas pu être trouvé", + "test": "Élément de test qui n’a jamais été ici" + }, + "safeDelete": "Ce point peut être supprimé sans risque.", + "useSomethingElse": "Utilisez un autre éditeur OpenStreetMap pour le supprimer", + "whyDelete": "Pourquoi ce point devrait-il être supprimé ?" }, - "pickLanguage": "Choisir la langue : ", - "about": "Éditer facilement et ajouter OpenStreetMap pour un certain thème", - "nameInlineQuestion": "Le nom de cet/cette {category} est $$$", - "noNameCategory": "{category} sans nom", - "questions": { - "phoneNumberOf": "Quel est le numéro de téléphone de {category} ?", - "phoneNumberIs": "Le numéro de téléphone de {category} est {phone}", - "websiteOf": "Quel est le site internet de {category} ?", - "websiteIs": "Site Web : {website}", - "emailOf": "Quelle est l'adresse électronique de {category} ?", - "emailIs": "L'adresse électronique de {category} est {email}" + "favourite": { + "loginNeeded": "

Connexion

La mise en forme personnalisée requiert un compte OpenStreetMap", + "panelIntro": "

Votre thème personnel

Activer vos couches favorites depuis les thèmes officiels", + "reload": "Recharger les données" }, - "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 !

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

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

", - "themeBy": "Thème maintenu par {author}", - "iconAttribution": { - "title": "Icônes utilisées" - }, - "mapContributionsByAndHidden": "La partie actuellement visible des données comporte des modifications par {contributors} et {hiddenCount} contributeurs de plus", - "mapContributionsBy": "La partie actuellement visible des données comporte des modifications par {contributors}", - "codeContributionsBy": "MapComplete a été construit par {contributors} et {hiddenCount} autres contributeurs" + "general": { + "about": "Éditer facilement et ajouter OpenStreetMap pour un certain thème", + "aboutMapcomplete": "

À propos de MapComplete

Avec MapComplete vous pouvez enrichir OpenStreetMap d'informations sur un thème unique. Répondez à quelques questions, et en quelques minutes vos contributions seront disponible dans le monde entier ! Le concepteur du thème définis les éléments, questions et langues pour le thème.

En savoir plus

MapComplete propose toujours l'étape suivante pour en apprendre plus sur OpenStreetMap.

  • Lorsqu'il est intégré dans un site Web, l'<i>iframe</i> pointe vers MapComplete en plein écran
  • La version plein écran donne des informations sur OpenStreetMap
  • Il est possible de regarder sans se connecter, mais l'édition demande une connexion à OSM.
  • Si vous n'êtes pas connecté, il vous est demandé de le faire
  • Une fois que vous avez répondu à une seule question, vous pouvez ajouter de nouveaux points à la carte
  • Au bout d'un moment, les vrais tags OSM sont montrés, qui pointent ensuite vers le wiki


Vous avez remarqué un problème ? Vous souhaitez demander une fonctionnalité ? Vous voulez aider à traduire ? Allez voir le code source ou l'<i>issue tracker.</i>

Vous voulez visualiser votre progression ? Suivez le compteur d'édition sur OsmCha.

", + "add": { + "addNew": "Ajouter un/une {category} ici", + "addNewMapLabel": "Cliquez ici pour ajouter un élément", + "confirmButton": "Ajouter un/une {category} ici.
Votre ajout sera visible par tout le monde
", + "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.", + "disableFilters": "Désactiver tous les filtres", + "disableFiltersExplanation": "Certains élément peuvent être filtrés", + "hasBeenImported": "Ce point a déjà été importé", + "intro": "Vous avez cliqué sur un endroit où il n'y a pas encore de données.
", + "layerNotEnabled": "La couche {layer} est désactivée. Activez-la pour ajouter un point", + "openLayerControl": "Ouvrir la panneau de contrôle", + "pleaseLogin": "Vous devez vous connecter pour ajouter un point", + "presetInfo": "Le nouveau POI aura {tags}", + "stillLoading": "Chargement des données en cours. Patientez un instant avant d'ajouter un nouveau point.", + "title": "Ajouter un nouveau point ?", + "warnVisibleForEveryone": "Votre ajout sera visible", + "zoomInFurther": "Rapprochez vous pour ajouter un point.", + "zoomInMore": "Zoomez pour importer cet élément" + }, + "attribution": { + "attributionContent": "

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

", + "attributionTitle": "Crédits", + "codeContributionsBy": "MapComplete a été construit par {contributors} et {hiddenCount} autres contributeurs", + "iconAttribution": { + "title": "Icônes utilisées" + }, + "mapContributionsBy": "La partie actuellement visible des données comporte des modifications par {contributors}", + "mapContributionsByAndHidden": "La partie actuellement visible des données comporte des modifications par {contributors} et {hiddenCount} contributeurs de plus", + "themeBy": "Thème maintenu par {author}" + }, + "backgroundMap": "Carte de fonds", + "cancel": "Annuler", + "customThemeIntro": "

Thèmes personnalisés

Vous avez déjà visité ces thèmes personnalisés.", + "download": { + "downloadAsPdf": "Télécharger un PDF de la vue actuelle", + "downloadAsPdfHelper": "Idéal pour imprimer une carte", + "downloadCSV": "Télécharger les données visibles au format CSV", + "downloadCSVHelper": "Compatible avec LibreOffice Calc, Excel,…", + "downloadGeoJsonHelper": "Compatible avec QGIS, ArcGIS, ESRI,…", + "downloadGeojson": "Télécharger les données visibles au format GeoJSON", + "exporting": "Exportation…", + "includeMetaData": "Inclure les métadonnées (dernière édition, valeur calculées,…)", + "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.", + "noDataLoaded": "Pas de données chargées. Le téléchargement sera bientôt disponible", + "title": "Télécharger les données visibles" + }, + "fewChangesBefore": "Merci de répondre à quelques questions à propos de points déjà existants avant d'ajouter de nouveaux points.", + "getStartedLogin": "Connectez-vous avec OpenStreetMap pour commencer", + "getStartedNewAccount": " ou créez un compte", + "goToInbox": "Ouvrir les messages", + "histogram": { + "error_loading": "Erreur de chargement de l’histograme" + }, + "layerSelection": { + "title": "Selectionner des couches", + "zoomInToSeeThisLayer": "Aggrandissez la carte pour voir cette couche" + }, + "loading": "Chargement…", + "loginOnlyNeededToEdit": "si vous souhaitez modifier la carte", + "loginToStart": "Connectez-vous pour répondre à cette question", + "loginWithOpenStreetMap": "Se connecter avec OpenStreetMap", + "morescreen": { + "createYourOwnTheme": "Créez votre propre MapComplete carte", + "hiddenExplanation": "Ces thèmes sont seulement accessibles par lien. Vous avez découvert {hidden_discovered} des {total_hidden} thèmes cachés.", + "intro": "

Plus de thèmes ?

Vous aimez collecter des données géographiques ?
Il y a plus de thèmes disponibles.", + "previouslyHiddenTitle": "Thèmes précédemment utilisés", + "requestATheme": "Si vous souhaitez une autre carte thématique, demandez-la dans le suivi des problèmes", + "streetcomplete": "Une autre application similaire est StreetComplete." + }, + "nameInlineQuestion": "Le nom de cet/cette {category} est $$$", + "noNameCategory": "{category} sans nom", + "noTagsSelected": "Aucune balise sélectionnée", + "number": "nombre", + "oneSkippedQuestion": "Une question a été passée", + "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

", + "openTheMap": "Ouvrir la carte", + "opening_hours": { + "closed_permanently": "Fermé", + "closed_until": "Fermé jusqu'au {date}", + "error_loading": "Erreur : impossible de visualiser ces horaires d'ouverture.", + "loadingCountry": "Localisation…", + "not_all_rules_parsed": "Les heures d'ouvertures de ce magasin sont trop compliquées. Les informations suivantes ont été ignorées :", + "openTill": "jusqu'à", + "open_24_7": "Ouvert en permanence", + "open_during_ph": "Pendant les congés, cet élément est", + "opensAt": "à partir de", + "ph_closed": "fermé", + "ph_not_known": " ", + "ph_open": "ouvert", + "ph_open_as_usual": "Ouverture habituelle" + }, + "osmLinkTooltip": "Voir l'historique de cet objet sur OpenStreetMap et plus d'options d'édition", + "pdf": { + "attr": "Données par © les contributeurs & contributrices OpenStreetMap sous licence libre ODbL", + "attrBackground": "Couche d’arrière plan : {background}", + "generatedWith": "Généré à l’aide de MapComplete.osm.be", + "versionInfo": "v{version} - générée le {date}" + }, + "pickLanguage": "Choisir la langue : ", + "questions": { + "emailIs": "L'adresse électronique de {category} est {email}", + "emailOf": "Quelle est l'adresse électronique de {category} ?", + "phoneNumberIs": "Le numéro de téléphone de {category} est {phone}", + "phoneNumberOf": "Quel est le numéro de téléphone de {category} ?", + "websiteIs": "Site Web : {website}", + "websiteOf": "Quel est le site internet de {category} ?" + }, + "readYourMessages": "Merci de lire tous vos messages sur OpenStreetMap avant d'ajouter un nouveau point.", + "returnToTheMap": "Retourner sur la carte", + "save": "Sauvegarder", + "search": { + "error": "Quelque chose n'a pas marché…", + "nothing": "Rien n'a été trouvé…", + "search": "Chercher un lieu", + "searching": "Chargement…" + }, + "sharescreen": { + "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.", + "copiedToClipboard": "Lien copié dans le presse-papier", + "editThemeDescription": "Ajouter ou modifier des questions à ce thème", + "editThisTheme": "Editer ce thème", + "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.", + "fsAddNew": "Activer le bouton 'ajouter un POI'", + "fsGeolocation": "Activer le bouton 'Localisez-moi' (seulement sur mobile)", + "fsIncludeCurrentBackgroundMap": "Include le choix actuel d'arrière plan {name}", + "fsIncludeCurrentLayers": "Inclure la couche selectionnée", + "fsIncludeCurrentLocation": "Inclure l'emplacement actuel", + "fsLayerControlToggle": "Démarrer avec le contrôle des couches ouvert", + "fsLayers": "Activer le contrôle des couches", + "fsSearch": "Activer la barre de recherche", + "fsUserbadge": "Activer le bouton de connexion", + "fsWelcomeMessage": "Afficher le message de bienvenue et les onglets associés", + "intro": "

Partager cette carte

Partagez cette carte en copiant le lien suivant et envoyez-le à vos amis :", + "thanksForSharing": "Merci d'avoir partagé !" + }, + "skip": "Passer la question", + "skippedQuestions": "Questions passées", + "testing": "Test - les changements ne seront pas sauvegardés", + "weekdays": { + "abbreviations": { + "friday": "Ven", + "monday": "Lun", + "saturday": "Sam", + "sunday": "Dim", + "thursday": "Jeu", + "tuesday": "Mar", + "wednesday": "Mer" + }, + "friday": "Vendredi", + "monday": "Lundi", + "saturday": "Samedi", + "sunday": "Dimanche", + "thursday": "Jeudi", + "tuesday": "Mardi", + "wednesday": "Mercredi" + }, + "welcomeBack": "Vous êtes connecté. Bienvenue !", + "wikipedia": { + "createNewWikidata": "Créer un nouvel élément Wikidata", + "failed": "Le chargement de Wikipédia a échoué", + "loading": "Chargement de Wikipédia…", + "noResults": "Pas de résultats pour {search}", + "noWikipediaPage": "Cet élément Wikidata n’a pas encore de page Wikipédia correspondante.", + "searchWikidata": "Rechercher sur Wikidata", + "wikipediaboxTitle": "Wikipédia" + } }, - "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.", - "copiedToClipboard": "Lien copié dans le presse-papier", - "thanksForSharing": "Merci d'avoir partagé !", - "editThisTheme": "Editer ce thème", - "editThemeDescription": "Ajouter ou modifier des questions à ce thème", - "fsUserbadge": "Activer le bouton de connexion", - "fsSearch": "Activer la barre de recherche", - "fsWelcomeMessage": "Afficher le message de bienvenue et les onglets associés", - "fsLayers": "Activer le contrôle des couches", - "fsLayerControlToggle": "Démarrer avec le contrôle des couches ouvert", - "fsAddNew": "Activer le bouton 'ajouter un POI'", - "fsGeolocation": "Activer le bouton 'Localisez-moi' (seulement sur mobile)", - "fsIncludeCurrentBackgroundMap": "Include le choix actuel d'arrière plan {name}", - "fsIncludeCurrentLayers": "Inclure la couche selectionnée", - "fsIncludeCurrentLocation": "Inclure l'emplacement actuel" + "image": { + "addPicture": "Ajoutez une photo", + "ccb": "sous la license CC-BY", + "ccbs": "sous la license CC-BY-SA", + "cco": "dans le domaine public", + "doDelete": "Supprimer l'image", + "dontDelete": "Annuler", + "isDeleted": "Supprimé", + "pleaseLogin": "Connectez-vous pour téléverser une photo", + "respectPrivacy": "Ne photographiez ni les personnes ni les plaques d'immatriculation. Ne téléversez rien issu de Google Maps, Google Streetview ou d'autre sources soumises à des droits d'auteurs.", + "toBig": "Votre image est trop large car elle est de {actual_size}. Veuillez utiliser des images d'au maximum {max_size}", + "uploadDone": "Votre photo est ajoutée. Merci beaucoup !", + "uploadFailed": "L'ajout de la photo a échoué. Avez-vous accès à Internet ? Les API tierces sont-elles autorisées ? Le navigateur Brave ou UMatrix peuvent les bloquer.", + "uploadMultipleDone": "{count} images ont été ajoutées. Merci de votre contribution !", + "uploadingMultiple": "Mise en ligne de {count} photos…", + "uploadingPicture": "Mise en ligne de votre photo…", + "willBePublished": "Votre photo va être publiée : " }, - "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", - "streetcomplete": "Une autre application similaire est StreetComplete.", - "createYourOwnTheme": "Créez votre propre MapComplete carte" + "index": { + "#": "Ces textes sont affichés au dessus des boutons de thème quand aucun thème n'est chargé", + "featuredThemeTitle": "Thème de la semaine", + "intro": "MapComplete est un visio-éditeur d'OpenStreetMap qui affiche des informations sur un thème défini et permet de les éditer.", + "pickTheme": "Choisissez un thème ci-dessous pour commencer.", + "title": "Bienvenue sur MapComplete" }, - "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.", - "goToInbox": "Ouvrir les messages", - "getStartedLogin": "Connectez-vous avec OpenStreetMap pour commencer", - "getStartedNewAccount": " ou créez un compte", - "noTagsSelected": "Aucune balise sélectionnée", - "customThemeIntro": "

Thèmes personnalisés

Vous avez déjà visité ces thèmes personnalisés.", - "aboutMapcomplete": "

À propos de MapComplete

Avec MapComplete vous pouvez enrichir OpenStreetMap d'informations sur un thème unique. Répondez à quelques questions, et en quelques minutes vos contributions seront disponible dans le monde entier ! Le concepteur du thème définis les éléments, questions et langues pour le thème.

En savoir plus

MapComplete propose toujours l'étape suivante pour en apprendre plus sur OpenStreetMap.

  • Lorsqu'il est intégré dans un site Web, l'<i>iframe</i> pointe vers MapComplete en plein écran
  • La version plein écran donne des informations sur OpenStreetMap
  • Il est possible de regarder sans se connecter, mais l'édition demande une connexion à OSM.
  • Si vous n'êtes pas connecté, il vous est demandé de le faire
  • Une fois que vous avez répondu à une seule question, vous pouvez ajouter de nouveaux points à la carte
  • Au bout d'un moment, les vrais tags OSM sont montrés, qui pointent ensuite vers le wiki


Vous avez remarqué un problème ? Vous souhaitez demander une fonctionnalité ? Vous voulez aider à traduire ? Allez voir le code source ou l'<i>issue tracker.</i>

Vous voulez visualiser votre progression ? Suivez le compteur d'édition sur OsmCha.

", - "backgroundMap": "Carte de fonds", - "layerSelection": { - "zoomInToSeeThisLayer": "Aggrandissez la carte pour voir cette couche", - "title": "Selectionner des couches" + "move": { + "cancel": "Annuler le déplacement", + "cannotBeMoved": "Cet élément ne peut être déplacé.", + "confirmMove": "Déplacer ici", + "inviteToMove": { + "generic": "Déplacer ce point", + "reasonInaccurate": "Améliorer la précision de ce point", + "reasonRelocation": "Cet objet a été déplacé" + }, + "inviteToMoveAgain": "Déplacer ce point à nouveau", + "isRelation": "Cet élément est une relation et ne peut être déplacée", + "isWay": "Cet élément est un chemin. Veuillez utiliser un autre éditeur OpenStreetMap pour le déplacer.", + "loginToMove": "Vous devez être connecté·e pour déplacer un point", + "moveTitle": "Déplacer ce point", + "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.", + "pointIsMoved": "Le point a été déplacé", + "reasons": { + "reasonInaccurate": "La position de cet objet est décalée", + "reasonRelocation": "Cet objet a été déplacé" + }, + "selectReason": "Pourquoi souhaitez vous déplacer cet objet ?", + "whyMove": "Pourquoi souhaitez vous déplacer ce point ?", + "zoomInFurther": "Zoomez pour confirmer ce déplacement" }, - "weekdays": { - "abbreviations": { - "monday": "Lun", - "tuesday": "Mar", - "wednesday": "Mer", - "thursday": "Jeu", - "friday": "Ven", - "saturday": "Sam", - "sunday": "Dim" - }, - "monday": "Lundi", - "tuesday": "Mardi", - "wednesday": "Mercredi", - "thursday": "Jeudi", - "friday": "Vendredi", - "saturday": "Samedi", - "sunday": "Dimanche" + "multi_apply": { + "autoApply": "En changeant les attributs {attr_names}, ceux-ci seront automatiquement changés sur {count} autres éléments" }, - "opening_hours": { - "error_loading": "Erreur : impossible de visualiser ces horaires d'ouverture.", - "open_during_ph": "Pendant les congés, ce lieu 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 :", - "closed_until": "Fermé jusqu'au {date}", - "closed_permanently": "Fermé", - "open_24_7": "Ouvert en permanence", - "ph_closed": "fermé", - "ph_open": "ouvert", - "ph_not_known": " " + "reviews": { + "affiliated_reviewer_warning": "(Avis affilié)", + "attribution": "Les avis sont fournis par Mangrove Reviews et sont disponibles sous licence CC-BY 4.0.", + "i_am_affiliated": "Je suis affilié à cet objet
Cochez si vous en êtes le propriétaire, créateur, employé, …", + "name_required": "Un nom est requis pour afficher et créer des avis", + "no_rating": "Aucun score donné", + "no_reviews_yet": "Il n'y a pas encore d'avis. Soyez le premier à en écrire un et aidez le lieu et les données ouvertes !", + "plz_login": "Connectez vous pour laisser un avis", + "posting_as": "Envoi en tant que", + "saved": "Avis enregistré. Merci du partage !", + "saving_review": "Enregistrement…", + "title": "{count} avis", + "title_singular": "Un avis", + "tos": "En publiant un avis, vous êtes d'accord avec les conditions d'utilisation et la politique de confidentialité de Mangrove.reviews", + "write_a_comment": "Laisser un avis…" + }, + "split": { + "cancel": "Annuler", + "hasBeenSplit": "Cette route a été coupée", + "inviteToSplit": "Couper cette route en plusieurs segments. Cela permet d'appliquer des attributs différents pour chaque partie de la route.", + "loginToSplit": "Vous devez être connecté pour couper une route", + "split": "Couper", + "splitTitle": "Choisissez sur la carte où couper cette route" } - }, - "favourite": { - "panelIntro": "

Votre thème personnel

Activer vos couches favorites depuis les thèmes officiels", - "loginNeeded": "

Connexion

La mise en forme personnalisée requiert un compte OpenStreetMap", - "reload": "Recharger les données" - }, - "reviews": { - "title": "{count} avis", - "title_singular": "Un avis", - "name_required": "Un nom est requis pour afficher et créer des avis", - "no_reviews_yet": "Il n'y a pas encore d'avis. Soyez le premier à en écrire un et aidez le lieu et les données ouvertes !", - "write_a_comment": "Laisser un avis…", - "no_rating": "Aucun score donné", - "posting_as": "Envoi en tant que", - "i_am_affiliated": "Je suis affilié à cet objet
Cochez si vous en êtes le propriétaire, créateur, employé, …", - "affiliated_reviewer_warning": "(Avis affilié)", - "saving_review": "Enregistrement…", - "saved": "Avis enregistré. Merci du partage !", - "tos": "En publiant un avis, vous êtes d'accord avec les conditions d'utilisation et la politique de confidentialité de Mangrove.reviews", - "attribution": "Les avis sont fournis par Mangrove Reviews et sont disponibles sous licence CC-BY 4.0.", - "plz_login": "Connectez vous pour laisser un avis" - }, - "split": { - "cancel": "Annuler" - }, - "delete": { - "cancel": "Annuler" - } -} +} \ No newline at end of file diff --git a/langs/gl.json b/langs/gl.json index 13725975fb..9934e10924 100644 --- a/langs/gl.json +++ b/langs/gl.json @@ -1,176 +1,176 @@ { - "image": { - "addPicture": "Engadir imaxe", - "uploadingPicture": "Subindo a túa imaxe...", - "uploadingMultiple": "Subindo {count} das túas imaxes...", - "pleaseLogin": "Inicia a sesión para subir unha imaxe", - "willBePublished": "A túa imaxe será publicada: ", - "cco": "no dominio público", - "ccbs": "baixo a licenza CC-BY-SA", - "ccb": "baixo a licenza CC-BY", - "uploadFailed": "Non foi posíbel subir a imaxe. Tes internet e permites API de terceiros? O navegador Brave ou UMatrix podería bloquealas.", - "respectPrivacy": "Respecta a privacidade. Non fotografes xente ou matrículas", - "uploadDone": "A túa imaxe foi engadida. Grazas por axudar.", - "isDeleted": "Eliminada", - "doDelete": "Eliminar imaxe", - "dontDelete": "Cancelar" - }, - "centerMessage": { - "loadingData": "Cargando os datos...", - "zoomIn": "Achégate para ollar ou editar os datos", - "ready": "Feito!", - "retrying": "A carga dos datos fallou. Tentándoo de novo... ({count})" - }, - "index": { - "#": "These texts are shown above the theme buttons when no theme is loaded", - "pickTheme": "Escolle un tema para comezar.", - "intro": "O MapComplete é un visor e editor do OpenStreetMap, que te amosa información sobre un tema específico.", - "title": "Benvido ao MapComplete" - }, - "general": { - "loginWithOpenStreetMap": "Inicia a sesión no OpenStreetMap", - "welcomeBack": "Iniciaches a sesión, benvido.", - "loginToStart": "Inicia a sesión para responder esta pregunta", - "search": { - "search": "Procurar unha localización", - "searching": "Procurando...", - "nothing": "Nada atopado...", - "error": "Algunha cousa non foi ben..." + "centerMessage": { + "loadingData": "Cargando os datos...", + "ready": "Feito!", + "retrying": "A carga dos datos fallou. Tentándoo de novo... ({count})", + "zoomIn": "Achégate para ollar ou editar os datos" }, - "returnToTheMap": "Voltar ó mapa", - "save": "Gardar", - "cancel": "Desbotar", - "skip": "Ignorar esta pregunta", - "oneSkippedQuestion": "Ignoraches unha pregunta", - "skippedQuestions": "Ignoraches algunhas preguntas", - "number": "número", - "osmLinkTooltip": "Ollar este obxecto no OpenStreetMap para ollar o historial e outras opcións de edición", - "add": { - "addNew": "Engadir {category} aquí", - "title": "Queres engadir un punto?", - "intro": "Marcaches un lugar onde non coñecemos os datos.
", - "pleaseLogin": "Inicia a sesión para engadir un novo punto", - "zoomInFurther": "Achégate para engadir un punto.", - "stillLoading": "Os datos seguen a cargarse. Agarda un intre antes de engadir ningún punto.", - "confirmIntro": "

Engadir {title} aquí?

O punto que estás a crear será ollado por todo o mundo. Só engade cousas que realmente existan. Moitas aplicacións empregan estes datos.", - "confirmButton": "Engadir {category} aquí", - "layerNotEnabled": "A capa {layer} non está activada. Faino para poder engadir un punto nesta capa", - "openLayerControl": "Abrir o control de capas" + "favourite": { + "loginNeeded": "

Iniciar a sesión

O deseño personalizado só está dispoñíbel para os usuarios do OpenstreetMap", + "panelIntro": "

O teu tema personalizado

Activa as túas capas favoritas de todos os temas oficiais", + "reload": "Recargar os datos" }, - "pickLanguage": "Escoller lingua: ", - "about": "Editar doadamente e engadir puntos no OpenStreetMap dun eido en concreto", - "nameInlineQuestion": "{category}: O teu nome é $$$", - "noNameCategory": "{category} sen nome", - "questions": { - "phoneNumberOf": "Cal é o número de teléfono de {category}?", - "phoneNumberIs": "O número de teléfono de {category} é {phone}", - "websiteOf": "Cal é a páxina web de {category}?", - "websiteIs": "Páxina web: {website}", - "emailOf": "Cal é o enderezo de correo electrónico de {category}?", - "emailIs": "O enderezo de correo electrónico de {category} é {email}" + "general": { + "about": "Editar doadamente e engadir puntos no OpenStreetMap dun eido en concreto", + "add": { + "addNew": "Engadir {category} aquí", + "confirmButton": "Engadir {category} aquí", + "confirmIntro": "

Engadir {title} aquí?

O punto que estás a crear será ollado por todo o mundo. Só engade cousas que realmente existan. Moitas aplicacións empregan estes datos.", + "intro": "Marcaches un lugar onde non coñecemos os datos.
", + "layerNotEnabled": "A capa {layer} non está activada. Faino para poder engadir un punto nesta capa", + "openLayerControl": "Abrir o control de capas", + "pleaseLogin": "Inicia a sesión para engadir un novo punto", + "stillLoading": "Os datos seguen a cargarse. Agarda un intre antes de engadir ningún punto.", + "title": "Queres engadir un punto?", + "zoomInFurther": "Achégate para engadir un punto." + }, + "attribution": { + "attributionContent": "

Todos os datos proveñen do OpenStreetMap, e pódense reutilizar libremente baixo a Licenza Aberta de Base de Datos (ODbL).

", + "attributionTitle": "Aviso de atribución", + "codeContributionsBy": "O MapComplete foi feito por {contributors} e {hiddenCount} contribuíntes máis", + "iconAttribution": { + "title": "Iconas empregadas" + }, + "mapContributionsBy": "A información visíbel actual ten edicións feitas por {contributors}", + "mapContributionsByAndHidden": "A información visíbel actual ten edicións feitas por {contributors} e {hiddenCount} contribuíntes máis", + "themeBy": "Tema mantido por {author}" + }, + "backgroundMap": "Mapa do fondo", + "cancel": "Desbotar", + "customThemeIntro": "

Temas personalizados

Estes son temas xerados por usuarios previamente visitados.", + "fewChangesBefore": "Responde unhas cantas preguntas sobre puntos existentes antes de engadir novos.", + "getStartedLogin": "Entra no OpenStreetMap para comezar", + "getStartedNewAccount": " ou crea unha nova conta", + "goToInbox": "Abrir mensaxes", + "index": { + "intro": "O MapComplete é un visor e editor do OpenStreetMap, que te amosa información sobre un tema específico.", + "pickTheme": "Escolle un tema para comezar.", + "title": "Benvido ao MapComplete" + }, + "layerSelection": { + "title": "Seleccionar capas", + "zoomInToSeeThisLayer": "Achégate para ver esta capa" + }, + "loginToStart": "Inicia a sesión para responder esta pregunta", + "loginWithOpenStreetMap": "Inicia a sesión no OpenStreetMap", + "morescreen": { + "createYourOwnTheme": "Crea o teu propio tema completo do MapComplete dende cero.", + "intro": "

Máis tarefas

Góstache captar datos?
Hai máis capas dispoñíbeis.", + "requestATheme": "Se queres unha tarefa personalizada, solicítaa no seguimento de problemas.", + "streetcomplete": "Outra aplicación semellante é StreetComplete." + }, + "nameInlineQuestion": "{category}: O teu nome é $$$", + "noNameCategory": "{category} sen nome", + "noTagsSelected": "Non se seleccionaron etiquetas", + "number": "número", + "oneSkippedQuestion": "Ignoraches unha pregunta", + "openStreetMapIntro": "

Un mapa aberto

Non sería xenial se houbera un só mapa, que todos puideran empregar e editar de xeito libre?Un só lugar para almacenar toda a información xeográfica? Entón, todos eses sitios web con mapas diferentes, pequenos e incompatíbeis (que sempre están desactualizados) xa non serían necesarios.

OpenStreetMap é ese mapa. Os datos do mapa pódense empregar de balde (con atribución e publicación de modificacións neses datos). Ademais diso, todos poden engadir de xeito ceibe novos datos e corrixir erros. Este sitio web tamén emprega o OpenStreetMap. Todos os datos proveñen de alí, e as túas respostas e correccións tamén serán engadidas alí.

Moitas persoas e aplicacións xa empregan o OpenStreetMap: Maps.me, OsmAnd, pero tamén os mapas do Facebook, Instagram, Apple e Bing son (en parte) impulsados ​​polo OpenStreetMap. Se mudas algo aquí, tamén será reflexado nesas aplicacións, na súa seguinte actualización!

", + "opening_hours": { + "closed_permanently": "Pechado - sen día de abertura coñecido", + "closed_until": "Pechado até {date}", + "error_loading": "Erro: non foi posíbel ver eses horarios de abertura.", + "not_all_rules_parsed": "O horario desta tenda é complexo. As normas seguintes serán ignoradas na entrada:", + "openTill": "até", + "open_24_7": "Aberto ás 24 horas do día", + "open_during_ph": "Durante festas este servizo está", + "opensAt": "dende", + "ph_closed": "pechado", + "ph_not_known": " ", + "ph_open": "aberto" + }, + "osmLinkTooltip": "Ollar este obxecto no OpenStreetMap para ollar o historial e outras opcións de edición", + "pickLanguage": "Escoller lingua: ", + "questions": { + "emailIs": "O enderezo de correo electrónico de {category} é {email}", + "emailOf": "Cal é o enderezo de correo electrónico de {category}?", + "phoneNumberIs": "O número de teléfono de {category} é {phone}", + "phoneNumberOf": "Cal é o número de teléfono de {category}?", + "websiteIs": "Páxina web: {website}", + "websiteOf": "Cal é a páxina web de {category}?" + }, + "readYourMessages": "Le todos a túas mensaxes do OpenStreetMap antes de engadir novos puntos.", + "returnToTheMap": "Voltar ó mapa", + "save": "Gardar", + "search": { + "error": "Algunha cousa non foi ben...", + "nothing": "Nada atopado...", + "search": "Procurar unha localización", + "searching": "Procurando..." + }, + "sharescreen": { + "addToHomeScreen": "

Engadir á pantalla de inicio

Podes engadir esta web na pantalla de inicio do teu smartphone para que se vexa máis nativo. Preme o botón 'engadir ó inicio' na barra de enderezos URL para facelo.", + "copiedToClipboard": "Ligazón copiada ó portapapeis", + "editThemeDescription": "Engadir ou mudar preguntas a este tema do mapa", + "editThisTheme": "Editar este tema", + "embedIntro": "

Inclúeo na túa páxina web

Inclúe este mapa na túa páxina web.
Animámoche a que o fagas, non fai falla que pidas permiso.
É de balde, e sempre será. Canta máis xente que o empregue máis valioso será.", + "fsAddNew": "Activar o botón de 'engadir novo PDI'", + "fsGeolocation": "Activar o botón de 'xeolocalizarme' (só móbil)", + "fsIncludeCurrentBackgroundMap": "Incluír a opción de fondo actual {name}", + "fsIncludeCurrentLayers": "Incluír as opcións de capa actual", + "fsIncludeCurrentLocation": "Incluír localización actual", + "fsLayerControlToggle": "Comenza co control de capas expandido", + "fsLayers": "Activar o control de capas", + "fsSearch": "Activar a barra de procura", + "fsUserbadge": "Activar botón de inicio de sesión", + "fsWelcomeMessage": "Amosar a xanela emerxente da mensaxe de benvida e as lapelas asociadas", + "intro": "

Comparte este mapa

Comparte este mapa copiando a ligazón de embaixo e enviándoa ás amizades e familia:", + "thanksForSharing": "Grazas por compartir!" + }, + "skip": "Ignorar esta pregunta", + "skippedQuestions": "Ignoraches algunhas preguntas", + "weekdays": { + "abbreviations": { + "friday": "Ven", + "monday": "Lun", + "saturday": "Sab", + "sunday": "Dom", + "thursday": "Xo", + "tuesday": "Mar", + "wednesday": "Mer" + }, + "friday": "Venres", + "monday": "Luns", + "saturday": "Sábado", + "sunday": "Domingo", + "thursday": "Xoves", + "tuesday": "Martes", + "wednesday": "Mércores" + }, + "welcomeBack": "Iniciaches a sesión, benvido." + }, + "image": { + "addPicture": "Engadir imaxe", + "ccb": "baixo a licenza CC-BY", + "ccbs": "baixo a licenza CC-BY-SA", + "cco": "no dominio público", + "doDelete": "Eliminar imaxe", + "dontDelete": "Cancelar", + "isDeleted": "Eliminada", + "pleaseLogin": "Inicia a sesión para subir unha imaxe", + "respectPrivacy": "Respecta a privacidade. Non fotografes xente ou matrículas", + "uploadDone": "A túa imaxe foi engadida. Grazas por axudar.", + "uploadFailed": "Non foi posíbel subir a imaxe. Tes internet e permites API de terceiros? O navegador Brave ou UMatrix podería bloquealas.", + "uploadingMultiple": "Subindo {count} das túas imaxes...", + "uploadingPicture": "Subindo a túa imaxe...", + "willBePublished": "A túa imaxe será publicada: " }, "index": { - "pickTheme": "Escolle un tema para comezar.", - "intro": "O MapComplete é un visor e editor do OpenStreetMap, que te amosa información sobre un tema específico.", - "title": "Benvido ao MapComplete" + "#": "These texts are shown above the theme buttons when no theme is loaded", + "intro": "O MapComplete é un visor e editor do OpenStreetMap, que te amosa información sobre un tema específico.", + "pickTheme": "Escolle un tema para comezar.", + "title": "Benvido ao MapComplete" }, - "openStreetMapIntro": "

Un mapa aberto

Non sería xenial se houbera un só mapa, que todos puideran empregar e editar de xeito libre?Un só lugar para almacenar toda a información xeográfica? Entón, todos eses sitios web con mapas diferentes, pequenos e incompatíbeis (que sempre están desactualizados) xa non serían necesarios.

OpenStreetMap é ese mapa. Os datos do mapa pódense empregar de balde (con atribución e publicación de modificacións neses datos). Ademais diso, todos poden engadir de xeito ceibe novos datos e corrixir erros. Este sitio web tamén emprega o OpenStreetMap. Todos os datos proveñen de alí, e as túas respostas e correccións tamén serán engadidas alí.

Moitas persoas e aplicacións xa empregan o OpenStreetMap: Maps.me, OsmAnd, pero tamén os mapas do Facebook, Instagram, Apple e Bing son (en parte) impulsados ​​polo OpenStreetMap. Se mudas algo aquí, tamén será reflexado nesas aplicacións, na súa seguinte actualización!

", - "sharescreen": { - "intro": "

Comparte este mapa

Comparte este mapa copiando a ligazón de embaixo e enviándoa ás amizades e familia:", - "addToHomeScreen": "

Engadir á pantalla de inicio

Podes engadir esta web na pantalla de inicio do teu smartphone para que se vexa máis nativo. Preme o botón 'engadir ó inicio' na barra de enderezos URL para facelo.", - "embedIntro": "

Inclúeo na túa páxina web

Inclúe este mapa na túa páxina web.
Animámoche a que o fagas, non fai falla que pidas permiso.
É de balde, e sempre será. Canta máis xente que o empregue máis valioso será.", - "copiedToClipboard": "Ligazón copiada ó portapapeis", - "thanksForSharing": "Grazas por compartir!", - "editThisTheme": "Editar este tema", - "editThemeDescription": "Engadir ou mudar preguntas a este tema do mapa", - "fsUserbadge": "Activar botón de inicio de sesión", - "fsSearch": "Activar a barra de procura", - "fsWelcomeMessage": "Amosar a xanela emerxente da mensaxe de benvida e as lapelas asociadas", - "fsLayers": "Activar o control de capas", - "fsLayerControlToggle": "Comenza co control de capas expandido", - "fsAddNew": "Activar o botón de 'engadir novo PDI'", - "fsGeolocation": "Activar o botón de 'xeolocalizarme' (só móbil)", - "fsIncludeCurrentLocation": "Incluír localización actual", - "fsIncludeCurrentLayers": "Incluír as opcións de capa actual", - "fsIncludeCurrentBackgroundMap": "Incluír a opción de fondo actual {name}" - }, - "morescreen": { - "intro": "

Máis tarefas

Góstache captar datos?
Hai máis capas dispoñíbeis.", - "requestATheme": "Se queres unha tarefa personalizada, solicítaa no seguimento de problemas.", - "streetcomplete": "Outra aplicación semellante é StreetComplete.", - "createYourOwnTheme": "Crea o teu propio tema completo do MapComplete dende cero." - }, - "readYourMessages": "Le todos a túas mensaxes do OpenStreetMap antes de engadir novos puntos.", - "fewChangesBefore": "Responde unhas cantas preguntas sobre puntos existentes antes de engadir novos.", - "goToInbox": "Abrir mensaxes", - "getStartedNewAccount": " ou crea unha nova conta", - "noTagsSelected": "Non se seleccionaron etiquetas", - "customThemeIntro": "

Temas personalizados

Estes son temas xerados por usuarios previamente visitados.", - "opening_hours": { - "ph_open": "aberto", - "ph_closed": "pechado", - "ph_not_known": " ", - "open_24_7": "Aberto ás 24 horas do día", - "closed_permanently": "Pechado - sen día de abertura coñecido", - "closed_until": "Pechado até {date}", - "not_all_rules_parsed": "O horario desta tenda é complexo. As normas seguintes serán ignoradas na entrada:", - "openTill": "até", - "opensAt": "dende", - "open_during_ph": "Durante festas este servizo está", - "error_loading": "Erro: non foi posíbel ver eses horarios de abertura." - }, - "weekdays": { - "sunday": "Domingo", - "saturday": "Sábado", - "friday": "Venres", - "thursday": "Xoves", - "wednesday": "Mércores", - "tuesday": "Martes", - "monday": "Luns", - "abbreviations": { - "sunday": "Dom", - "saturday": "Sab", - "friday": "Ven", - "thursday": "Xo", - "wednesday": "Mer", - "tuesday": "Mar", - "monday": "Lun" - } - }, - "layerSelection": { - "title": "Seleccionar capas", - "zoomInToSeeThisLayer": "Achégate para ver esta capa" - }, - "backgroundMap": "Mapa do fondo", - "getStartedLogin": "Entra no OpenStreetMap para comezar", - "attribution": { - "codeContributionsBy": "O MapComplete foi feito por {contributors} e {hiddenCount} contribuíntes máis", - "mapContributionsByAndHidden": "A información visíbel actual ten edicións feitas por {contributors} e {hiddenCount} contribuíntes máis", - "mapContributionsBy": "A información visíbel actual ten edicións feitas por {contributors}", - "iconAttribution": { - "title": "Iconas empregadas" - }, - "themeBy": "Tema mantido por {author}", - "attributionContent": "

Todos os datos proveñen do OpenStreetMap, e pódense reutilizar libremente baixo a Licenza Aberta de Base de Datos (ODbL).

", - "attributionTitle": "Aviso de atribución" + "reviews": { + "affiliated_reviewer_warning": "(Recensión de afiliado)", + "name_required": "Requírese un nome para amosar e crear recensións", + "no_rating": "Sen puntuacións", + "no_reviews_yet": "Non hai recensións aínda. Se o primeiro en escribir unha e axuda ao negocio e aos datos libres!", + "plz_login": "Inicia sesión para deixar unha recensión", + "posting_as": "Publicar como", + "saved": "Recensión compartida. Grazas por compartir!", + "saving_review": "Gardando…", + "title": "{count} recensións", + "title_singular": "Unha recensión", + "write_a_comment": "Deixa unha recensión…" } - }, - "favourite": { - "panelIntro": "

O teu tema personalizado

Activa as túas capas favoritas de todos os temas oficiais", - "loginNeeded": "

Iniciar a sesión

O deseño personalizado só está dispoñíbel para os usuarios do OpenstreetMap", - "reload": "Recargar os datos" - }, - "reviews": { - "plz_login": "Inicia sesión para deixar unha recensión", - "saved": "Recensión compartida. Grazas por compartir!", - "saving_review": "Gardando…", - "affiliated_reviewer_warning": "(Recensión de afiliado)", - "posting_as": "Publicar como", - "no_rating": "Sen puntuacións", - "write_a_comment": "Deixa unha recensión…", - "title_singular": "Unha recensión", - "title": "{count} recensións", - "name_required": "Requírese un nome para amosar e crear recensións", - "no_reviews_yet": "Non hai recensións aínda. Se o primeiro en escribir unha e axuda ao negocio e aos datos libres!" - } -} +} \ No newline at end of file diff --git a/langs/hu.json b/langs/hu.json index 83ab17dfb0..cf7015b96f 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}" + "centerMessage": { + "loadingData": "Adatok betöltése folyamatban…", + "ready": "Kész!", + "retrying": "Nem sikerült betölteni az adatokat. Újrapróbálkozás {count} másodperc múlva…", + "zoomIn": "Közelíts az adatok megtekintéséhez és szerkesztéséhez" }, - "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" + "delete": { + "cancel": "Mégse", + "cannotBeDeleted": "Ez az objektum nem törölhető", + "delete": "Törlés", + "explanations": { + "hardDelete": "Ez a pont törlődik az OpenStreetMapről. Csak egy tapasztalt szerkesztő tudja majd visszaállítani", + "selectReason": "Kérjük, jelöld meg, miért kellene ezt a pontot törölni", + "softDelete": "Ez az objektum frissülni fog és ebben az alkalmazásban nem fog látszani. {reason}" + }, + "isDeleted": "Ez az objektum törlődött", + "isntAPoint": "Csak pontot lehet törölni, a kiválasztott térképelem viszont vonal, terület vagy kapcsolat.", + "loading": "Tulajdonságok megvizsgálása annak ellenőrzéséhez, hogy az objektum törölhető-e.", + "loginToDelete": "Egy pont törléséhez be kell jelentkezni", + "notEnoughExperience": "Ezt a pontot valaki más készítette.", + "onlyEditedByLoggedInUser": "Ezt a pontot csak te magad szerkesztetted, így nyugodtan törölheted.", + "partOfOthers": "Ez a pont egy vonal vagy kapcsolat része, ezért közvetlenül nem törölhető.", + "readMessages": "Olvasatlan üzeneteid vannak. Olvasd el őket, mielőtt törölnél egy pontot – lehet, hogy valaki épp erről írt", + "reasons": { + "disused": "Ez az objektum használaton kívüli vagy el lett távolítva", + "duplicate": "Ez a pont egy másik objektum megkettőzése", + "notFound": "Ezt az objektumot nem sikerült megtalálni", + "test": "Ez egy tesztpont volt: az általa jelölt objektum valójában soha nem létezett" + }, + "safeDelete": "Ez a pont nyugodtan törölhető.", + "useSomethingElse": "A törléséhez használj egy másik OpenStreetMap-szerkesztőt", + "whyDelete": "Miért kellene törölni ezt a pontot?" }, - "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" + "favourite": { + "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", + "reload": "Adatok újratöltése" }, - "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" - } -} + "general": { + "about": "Egy adott téma esetében az OpenStreetMap egyszerű szerkesztése és hozzáadása", + "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.

", + "add": { + "addNew": "Új {category} hozzáadása itt", + "addNewMapLabel": "Új elem hozzáadásához kattints ide", + "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.", + "disableFilters": "Minden szűrő kikapcsolása", + "disableFiltersExplanation": "Lehet, hogy a szűrő miatt egyes objektumok nem látszanak", + "hasBeenImported": "Ezt a pontot már importálták", + "import": { + "hasBeenImported": "Ez az objektum importáltatott", + "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).", + "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", + "wrongType": "Ez az elem nem pont vagy vonal, ezért nem importálható", + "zoomInMore": "Nagyíts tovább az elem importálásához" + }, + "importTags": "Az elem {tags} címkéket fog kapni", + "intro": "Olyan helyre kattintottál, ahol még nincs ismert adat.
", + "layerNotEnabled": "A {layer} réteg nincs engedélyezve. Pont hozzáadásához engedélyezd ezt a réteget", + "openLayerControl": "Rétegvezérlő-doboz megnyitása", + "pleaseLogin": "Új pont hozzáadásához be kell jelentkezned", + "presetInfo": "Az új érdekes pont (POI) címkéi: {tags}", + "stillLoading": "Az adatok betöltése folyamatban van. Kérjük, várj egy kicsit mielőtt új pontot adsz hozzá.", + "title": "Hozzáadsz egy új pontot?", + "warnVisibleForEveryone": "A kiegészítésed mindenki számára látható lesz", + "wrongType": "Ez az elem nem pont vagy vonal, ezért nem importálható", + "zoomInFurther": "Pont hozzáadásához közelíts jobban.", + "zoomInMore": "Nagyíts tovább az elem importálásához" + }, + "apply_button": { + "appliedOnAnotherObject": "A(z) {id} objektum a következő címkéket fogja megkapni: {tags}", + "isApplied": "A módosítások alkalmazva lettek" + }, + "attribution": { + "attributionContent": "

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

", + "attributionTitle": "Szerzők", + "codeContributionsBy": "A MapComplete-et {contributors} és további {hiddenCount} közreműködő fejleszti", + "donate": "A MapComplete pénzügyi támogatása", + "editId": "Az OpenStreetMap online szerkesztőjének megnyitása itt", + "editJosm": "Szerkesztés itt JOSM-mal", + "iconAttribution": { + "title": "Felhasznált ikonok" + }, + "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", + "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ő", + "openIssueTracker": "Hiba bejelentése", + "openMapillary": "Mapillary megnyitása itt", + "openOsmcha": "A téma {theme} legutóbbi szerkesztéseinek megtekintése", + "themeBy": "A téma karbantartója: {author}" + }, + "backgroundMap": "Háttértérkép", + "cancel": "Mégse", + "customThemeIntro": "

Egyéni témák

Ezek korábban megnézett, felhasználó által létrehozott témák.", + "download": { + "downloadAsPdf": "A jelenlegi térkép letöltése PDF-ként", + "downloadAsPdfHelper": "Eszményi a jelenlegi térkép kinyomtatásához", + "downloadCSV": "Látható adatok letöltése CSV-ként", + "downloadCSVHelper": "Kompatibilis a LibreOffice Calc-kal, az Excellel…", + "downloadFeatureAsGeojson": "Letöltés GeoJSON-fájlként", + "downloadFeatureAsGpx": "Letöltés GPX-fájlként", + "downloadGeoJsonHelper": "Kompatibilis többek között ezekkel: QGIS, ArcGIS, ESRI…", + "downloadGeojson": "A látható adatok letöltése GeoJSON-ként", + "downloadGpx": "Letöltés GPX-ként", + "downloadGpxHelper": "A GPX-fájlok a legtöbb navigációs eszközzel és alkalmazással használhatók", + "exporting": "Exportálás…", + "includeMetaData": "Metaadatokat is tartalmazzon (legutóbbi szerkesztő, számított értékek stb.)", + "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.", + "noDataLoaded": "Még nincs betöltött adat. A letöltés hamarosan elérhető lesz", + "title": "A látható adatok letöltése", + "uploadGpx": "Töltsd fel a nyomvonalaidat az OpenStreetMapre" + }, + "fewChangesBefore": "Kérjük, válaszolj néhány meglévő pontokra vonatkozó kérdésre, mielőtt új pontot adnál hozzá.", + "getStartedLogin": "A kezdéshez jelentkezz be az OpenStreetMap-fiókoddal,", + "getStartedNewAccount": " vagy hozz létre új fiókot", + "goToInbox": "Beérkezett üzenetek megnyitása", + "histogram": { + "error_loading": "Nem sikerült betölteni a hisztogramot" + }, + "layerSelection": { + "title": "Rétegek kijelölése", + "zoomInToSeeThisLayer": "Nagyíts a réteg megtekintéséhez" + }, + "loading": "Betöltés…", + "loginOnlyNeededToEdit": "ha szerkeszteni szeretnéd a térképet", + "loginToStart": "A kérdés megválaszolásához be kell jelentkezni", + "loginWithOpenStreetMap": "Bejelentkezés OpenStreetMap-fiókkal", + "morescreen": { + "createYourOwnTheme": "Készítsd el saját MapComplete témád a semmiből", + "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.", + "previouslyHiddenTitle": "Korábban megnézett rejtett témák", + "requestATheme": "Ha egyedi témát szeretnél, kérd a problémakövetőben (issue tracker)", + "streetcomplete": "Egy másik, hasonló alkalmazás a StreetComplete." + }, + "nameInlineQuestion": "Ezen {category} neve: $$$", + "noNameCategory": "Név nélküli {category}", + "noTagsSelected": "Nincs kijelölt címke", + "number": "szám", + "oneSkippedQuestion": "Egy kérdés ki lett hagyva", + "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.

", + "openTheMap": "Nyisd meg a térképet,", + "opening_hours": { + "closed_permanently": "Ismeretlen ideig zárva", + "closed_until": "Zárva eddig: {date}", + "error_loading": "Hiba: nem sikerült megjeleníteni ezt a nyitva tartási időt.", + "loadingCountry": "Ország meghatározása…", + "not_all_rules_parsed": "Ez a nyitva tartás bonyolult. A beviteli elemben a következő szabályok nem vétetnek figyelembe:", + "openTill": "eddig:", + "open_24_7": "Éjjel-nappal nyitva", + "open_during_ph": "Munkaszüneti napokon ez", + "opensAt": "ettől:", + "ph_closed": "zárva", + "ph_not_known": " ", + "ph_open": "nyitva", + "ph_open_as_usual": "a szokásos rend szerint nyitva" + }, + "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", + "pdf": { + "attr": "Térképadatok: © OpenStreetMap-közreműködők; az ODbL licenc szerint újrafelhasználható", + "attrBackground": "Háttérréteg: {background}", + "generatedWith": "Létrehozva a MapComplete.be segítségével", + "versionInfo": "{version} verzió – létrehozva: {date}" + }, + "pickLanguage": "Nyelv kiválasztása: ", + "questions": { + "emailIs": "Ezen {category} e-mail-címe: {email}", + "emailOf": "Mi az e-mail-címe ennek ({category})?", + "phoneNumberIs": "Ezen {category} telefonszáma: {phone}", + "phoneNumberOf": "Mi a telefonszáma ennek ({category})?", + "websiteIs": "Weboldal: {website}", + "websiteOf": "Mi a weboldala ennek ({category})?" + }, + "readYourMessages": "Kérjük, új pont hozzáadása előtt olvasd el az összes OpenStreetMap-üzeneted.", + "removeLocationHistory": "Helyelőzmények törlése", + "returnToTheMap": "Vissza a térképhez", + "save": "Mentés", + "search": { + "error": "Hiba történt…", + "nothing": "Nincs találat…", + "search": "Helyszín keresése", + "searching": "Keresés…" + }, + "sharescreen": { + "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.", + "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", + "editThisTheme": "Téma szerkesztése", + "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:", + "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", + "fsIncludeCurrentLocation": "Tartalmazza az aktuális helyet", + "fsLayerControlToggle": "Kezdés kibontott rétegvezérlővel", + "fsLayers": "Rétegvezérlő engedélyezése", + "fsSearch": "Keresősáv engedélyezése", + "fsUserbadge": "Bejelentkezési gomb engedélyezése", + "fsWelcomeMessage": "Felugró üdvözlő üzenet és kapcsolódó fülek megjelenítése", + "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:", + "thanksForSharing": "Köszönjük a megosztást!" + }, + "skip": "Kérdés kihagyása", + "skippedQuestions": "Néhány kérdés ki lett hagyva", + "testing": "Kipróbálás – a módosítások nem lesznek elmentve", + "weekdays": { + "abbreviations": { + "friday": "Pé", + "monday": "Hét", + "saturday": "Szo", + "sunday": "Vas", + "thursday": "Csüt", + "tuesday": "Ke", + "wednesday": "Sze" + }, + "friday": "Péntek", + "monday": "Hétfő", + "saturday": "Szombat", + "sunday": "Vasárnap", + "thursday": "Csütörtök", + "tuesday": "Kedd", + "wednesday": "Szerda" + }, + "welcomeBack": "Be vagy jelentkezve, üdv ismét!", + "wikipedia": { + "createNewWikidata": "Új Wikidata-elem létrehozása", + "doSearch": "Keress fent az eredmények megtekintéséhez", + "failed": "Wikipédia-szócikk betöltése sikertelen", + "loading": "Wikipédia betöltése…", + "noResults": "Nincs találat erre: {search}", + "noWikipediaPage": "Ennek a Wikidata-elemnek még nincs megfelelő Wikipédia-oldala.", + "searchWikidata": "Keresés a Wikidatán", + "wikipediaboxTitle": "Wikipédia" + } + }, + "image": { + "addPicture": "Kép hozzáadása", + "ccb": "CC-BY licenc szerint", + "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", + "ccbs": "CC-BY-SA licenc szerint", + "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", + "cco": "közkincsként", + "ccoExplanation": "A kép közkinccsé tétele azt jelenti, hogy bárki bármit megtehet a képpel", + "doDelete": "Kép eltávolítása", + "dontDelete": "Mégse", + "isDeleted": "Törölve", + "pleaseLogin": "Kép hozzáadásához be kell jelentkezni", + "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.", + "toBig": "A kép túl nagy ({actual_size}). Kérjük, legfeljebb {max_size} méretű képeket használj", + "uploadDone": "A kép hozzá lett adva. Köszönjük a segítséged!", + "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.", + "uploadMultipleDone": "{count} kép hozzáadva. Köszönjük a segítséget!", + "uploadingMultiple": "{count} kép feltöltése folyamatban…", + "uploadingPicture": "Kép feltöltése folyamatban…", + "willBePublished": "A képed így lesz közzétéve: " + }, + "index": { + "#": "Ezek a szövegek akkor jelennek meg a témagombok felett, ha nincs betöltve téma", + "featuredThemeTitle": "Kiemelt ezen a héten", + "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.", + "logIn": "A korábban megnézett témák megtekintéséhez be kell jelentkezned", + "pickTheme": "Válassz egy témát lent a kezdéshez.", + "title": "Isten hozott a MapComplete-en" + }, + "move": { + "cancel": "Áthelyezés megszakítása", + "cannotBeMoved": "Ez az objektum nem mozdítható el.", + "confirmMove": "Áthelyezés ide", + "inviteToMove": { + "generic": "Pont áthelyezése", + "reasonInaccurate": "Pont helyének pontosítása", + "reasonRelocation": "Objektum áthelyezése mert a valóságban is áthelyezték" + }, + "inviteToMoveAgain": "Pont áthelyezése ismét", + "isRelation": "Ez az objektum egy kapcsolat, amely nem mozdítható el", + "isWay": "Ez az objektum egy vonal, amelyet csak egy másik OpenStreetMap-szerkesztővel lehet áthelyezni.", + "loginToMove": "Pont áthelyezéséhez be kell jelentkezned", + "moveTitle": "Pont áthelyezése", + "partOfAWay": "Ez az objektum egy másik vonal része; csak egy másik szerkesztő használatával lehet elmozdítani.", + "partOfRelation": "Ez az objektum egy kapcsolat része; csak egy másik szerkesztő használatával mozdítható el.", + "pointIsMoved": "A pont áthelyeződött", + "reasons": { + "reasonInaccurate": "Az objektum helye pontatlan a térképen, ezért néhány méterrel arrébb kell tenni", + "reasonRelocation": "Az objektumot áthelyezték egy teljesen más helyre" + }, + "selectReason": "Miért szeretnéd áthelyezni ezt az objektumot?", + "whyMove": "Miért szeretnéd áthelyezni ezt a pontot?", + "zoomInFurther": "A lépés megerősítéséhez nagyíts a térképen" + }, + "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" + }, + "privacy": { + "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.", + "geodataTitle": "Földrajzi helyed", + "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.", + "title": "Adatvédelmi irányelvek", + "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", + "trackingTitle": "Statisztikai adatok" + }, + "professional": { + "aboutOsm": { + "aboutOsm": { + "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:", + "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", + "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…", + "title": "Mi az OpenStreetMap?" + }, + "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ó…" + }, + "vandalism": { + "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:", + "li0": "magasak a változtatások technikai akadályai, vagyis nem olyan könnyű a térképet szerkeszteni", + "li1": "egy kis rosszindulatú változtatásnak alacsony a hatása, így a vandál számára csekély a jutalom" + } + }, + "indexPage": { + "button": "Szolgáltatásaink", + "hookMore": "Tudunk segítséget nyújtani felmérésekhez, adatimportáláshoz és OpenStreetMap-tanácsadáshoz" + }, + "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", + "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.

", + "text1": "

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

", + "title": "Szakmai támogatás a MapComplete segítségével" + }, + "reviews": { + "affiliated_reviewer_warning": "(Kapcsolódó személy véleménye)", + "attribution": "A véleményeket Mangrove Reviews tárolja, és a CC-BY 4.0 licenc szerint érhetők el.", + "i_am_affiliated": "Kapcsolatban állok ezzel a létesítménnyel
Ellenőrizd, hogy tulajdonos, alkotó, alkalmazott vagy hasonló vagy-e.", + "name_required": "Vélemények megjelenítéséhez és létrehozásához névre van szükség", + "no_rating": "Még nem kapott értékelést", + "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!", + "plz_login": "Értékelés írásához jelentkezz be", + "posting_as": "Közzétéve mint", + "saved": "Vélemény elmentve. Köszönjük a megosztást!", + "saving_review": "Mentés…", + "title": "{count} vélemény", + "title_singular": "Egy vélemény", + "tos": "Ha véleményt írsz, elfogadod a a Mangrove.reviews általános szerződési feltételeit (ászf.) és adatvédelmi irányelveit", + "write_a_comment": "Mondj véleményt…" + }, + "split": { + "cancel": "Mégse", + "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", + "split": "Szétvágás", + "splitTitle": "Válaszd ki a térképen, hogy az út hol legyen elvágva" + } +} \ No newline at end of file diff --git a/langs/id.json b/langs/id.json index 9c78ab6e7d..24ebe01a30 100644 --- a/langs/id.json +++ b/langs/id.json @@ -1,109 +1,109 @@ { - "general": { - "questions": { - "phoneNumberOf": "Apakah nombor telepon {category} ini?", - "websiteIs": "Website: {website}", - "emailOf": "Apa alamat email {category}?" + "centerMessage": { + "loadingData": "Memuat data…", + "ready": "Selesai!" }, - "nameInlineQuestion": "Name {category} ini adalah $$$", - "pickLanguage": "Pilih bahasa: ", - "layerSelection": { - "title": "Pilih lapisan" + "delete": { + "cancel": "Batal" }, - "backgroundMap": "Peta latar belakang", - "search": { - "searching": "Sdg mencari…" + "favourite": { + "reload": "Muat ulang data" }, - "opening_hours": { - "ph_not_known": " ", - "ph_open": "buka", - "ph_closed": "tutup", - "open_24_7": "Dibuka sekitar jam", - "closed_permanently": "Ditutup sampai pemberitahuan lebih lanjut", - "openTill": "sampai", - "opensAt": "dari", - "closed_until": "Ditutup sampai {date}" + "general": { + "backgroundMap": "Peta latar belakang", + "cancel": "Batal", + "getStartedLogin": "Masuk dengan OpenStreetMap untuk memulai", + "getStartedNewAccount": " atau membuat akun baru", + "goToInbox": "Buka kotak masuk", + "layerSelection": { + "title": "Pilih lapisan" + }, + "nameInlineQuestion": "Name {category} ini adalah $$$", + "noTagsSelected": "Tidak ada tag yang dipilih", + "opening_hours": { + "closed_permanently": "Ditutup sampai pemberitahuan lebih lanjut", + "closed_until": "Ditutup sampai {date}", + "openTill": "sampai", + "open_24_7": "Dibuka sekitar jam", + "opensAt": "dari", + "ph_closed": "tutup", + "ph_not_known": " ", + "ph_open": "buka" + }, + "pickLanguage": "Pilih bahasa: ", + "questions": { + "emailOf": "Apa alamat email {category}?", + "phoneNumberOf": "Apakah nombor telepon {category} ini?", + "websiteIs": "Website: {website}" + }, + "search": { + "searching": "Sdg mencari…" + }, + "sharescreen": { + "copiedToClipboard": "Tautan disalin ke papan klip", + "editThemeDescription": "Tambahkan atau ubah pertanyaan ke tema peta ini", + "editThisTheme": "Sunting tema ini", + "fsAddNew": "Aktifkan tombol 'tambah POI baru'", + "fsGeolocation": "Aktifkan tombol 'geolocate-me' (hanya seluler)", + "fsIncludeCurrentBackgroundMap": "Sertakan pilihan latar belakang saat ini {name}", + "fsIncludeCurrentLayers": "Sertakan pilihan lapisan saat ini", + "fsIncludeCurrentLocation": "Sertakan lokasi saat ini", + "fsLayers": "Aktifkan kontrol lapisan", + "fsSearch": "Aktifkan bilah pencarian", + "fsUserbadge": "Aktifkan tombol masuk", + "fsWelcomeMessage": "Tampilkan popup pesan selamat datang dan tab terkait", + "thanksForSharing": "Terima kasih telah berbagi!" + }, + "weekdays": { + "abbreviations": { + "friday": "Jum", + "monday": "Sen", + "saturday": "Sab", + "sunday": "Min", + "thursday": "Kam", + "tuesday": "Sel", + "wednesday": "Rab" + }, + "friday": "Jum'at", + "monday": "Senin", + "saturday": "Sabtu", + "sunday": "Minggu", + "thursday": "Kamis", + "tuesday": "Selasa", + "wednesday": "Rabu" + } }, - "noTagsSelected": "Tidak ada tag yang dipilih", - "getStartedNewAccount": " atau membuat akun baru", - "getStartedLogin": "Masuk dengan OpenStreetMap untuk memulai", - "sharescreen": { - "fsIncludeCurrentLocation": "Sertakan lokasi saat ini", - "fsIncludeCurrentLayers": "Sertakan pilihan lapisan saat ini", - "fsIncludeCurrentBackgroundMap": "Sertakan pilihan latar belakang saat ini {name}", - "fsGeolocation": "Aktifkan tombol 'geolocate-me' (hanya seluler)", - "fsAddNew": "Aktifkan tombol 'tambah POI baru'", - "fsLayers": "Aktifkan kontrol lapisan", - "fsWelcomeMessage": "Tampilkan popup pesan selamat datang dan tab terkait", - "fsSearch": "Aktifkan bilah pencarian", - "fsUserbadge": "Aktifkan tombol masuk", - "editThemeDescription": "Tambahkan atau ubah pertanyaan ke tema peta ini", - "editThisTheme": "Sunting tema ini", - "thanksForSharing": "Terima kasih telah berbagi!", - "copiedToClipboard": "Tautan disalin ke papan klip" + "image": { + "addPicture": "Tambahkan foto", + "ccb": "di bawah lisensi CC-BY", + "ccbs": "di bawah lisensi CC-BY-SA", + "cco": "di domain publik", + "doDelete": "Buang gambar", + "dontDelete": "Batal", + "isDeleted": "Dihapus", + "pleaseLogin": "Silakan masuk untuk menambah gambar", + "uploadingMultiple": "Mengunggah {count} gambar…", + "uploadingPicture": "Mengunggah gambar Anda…", + "willBePublished": "Gambarmu akan dipublikasikan " }, - "goToInbox": "Buka kotak masuk", - "weekdays": { - "abbreviations": { - "sunday": "Min", - "saturday": "Sab", - "friday": "Jum", - "thursday": "Kam", - "wednesday": "Rab", - "tuesday": "Sel", - "monday": "Sen" - }, - "sunday": "Minggu", - "saturday": "Sabtu", - "friday": "Jum'at", - "thursday": "Kamis", - "wednesday": "Rabu", - "tuesday": "Selasa", - "monday": "Senin" + "index": { + "intro": "MapComplete adalah penampil dan editor OpenStreetMap, yang menunjukkan informasi tentang tema tertentu.", + "pickTheme": "Pilih tema di bawah ini untuk memulai.", + "title": "Selamat datang di MapComplete" }, - "cancel": "Batal" - }, - "image": { - "doDelete": "Buang gambar", - "ccb": "di bawah lisensi CC-BY", - "ccbs": "di bawah lisensi CC-BY-SA", - "cco": "di domain publik", - "willBePublished": "Gambarmu akan dipublikasikan: ", - "pleaseLogin": "Silakan masuk untuk menambah gambar", - "uploadingMultiple": "Mengunggah {count} gambar…", - "uploadingPicture": "Mengunggah gambar Anda…", - "addPicture": "Tambahkan foto", - "isDeleted": "Dihapus", - "dontDelete": "Batal" - }, - "centerMessage": { - "ready": "Selesai!", - "loadingData": "Memuat data…" - }, - "favourite": { - "reload": "Muat ulang data" - }, - "reviews": { - "attribution": "Ulasan didukung oleh Mangrove Reviews dan tersedia di bawah CC-BY 4.0.", - "tos": "Jika Anda membuat ulasan, Anda menyetujui TOS dan kebijakan privasi Mangrove.reviews", - "saved": " Ulasan disimpan. Terima kasih sudah berbagi! ", - "saving_review": "Menyimpan…", - "posting_as": "Posting sebagai", - "no_rating": "Tidak ada peringkat yang diberikan", - "write_a_comment": "Beri ulasan…", - "title_singular": "Satu ulasan", - "title": "{count} ulasan", - "plz_login": "Masuk untuk meninggalkan ulasan" - }, - "index": { - "pickTheme": "Pilih tema di bawah ini untuk memulai.", - "intro": "MapComplete adalah penampil dan editor OpenStreetMap, yang menunjukkan informasi tentang tema tertentu.", - "title": "Selamat datang di MapComplete" - }, - "split": { - "cancel": "Batal" - }, - "delete": { - "cancel": "Batal" - } -} + "reviews": { + "attribution": "Ulasan didukung oleh Mangrove Reviews dan tersedia di bawah CC-BY 4.0.", + "no_rating": "Tidak ada peringkat yang diberikan", + "plz_login": "Masuk untuk meninggalkan ulasan", + "posting_as": "Posting sebagai", + "saved": " Ulasan disimpan. Terima kasih sudah berbagi! ", + "saving_review": "Menyimpan…", + "title": "{count} ulasan", + "title_singular": "Satu ulasan", + "tos": "Jika Anda membuat ulasan, Anda menyetujui TOS dan kebijakan privasi Mangrove.reviews", + "write_a_comment": "Beri ulasan…" + }, + "split": { + "cancel": "Batal" + } +} \ No newline at end of file diff --git a/langs/it.json b/langs/it.json index 19d0394ed9..b8656f67f6 100644 --- a/langs/it.json +++ b/langs/it.json @@ -1,288 +1,289 @@ { - "reviews": { - "attribution": "Le recensioni sono fornite da Mangrove Reviews e sono disponibili con licenza CC-BY 4.0.", - "tos": "Quando pubblichi una recensione, accetti i termini di utilizzo e la informativa sulla privacy di Mangrove.reviews", - "plz_login": "Accedi per lasciare una recensione", - "saved": "Recensione salvata. Grazie per averla condivisa!", - "saving_review": "Salvataggio…", - "affiliated_reviewer_warning": "(Recensione di un affiliato)", - "i_am_affiliated": "Sono associato con questo oggetto
Spunta se sei il proprietario, creatore, dipendente, etc.", - "posting_as": "Pubblica come", - "no_rating": "Nessun voto ricevuto", - "write_a_comment": "Lascia una recensione…", - "no_reviews_yet": "Non ci sono ancora recensioni. Sii il primo a scriverne una aiutando così i dati liberi e l’attività!", - "name_required": "È richiesto un nome per poter mostrare e creare recensioni", - "title_singular": "Una recensione", - "title": "{count} recensioni" - }, - "general": { - "aboutMapcomplete": "

Informazioni su MapComplete

Con MapComplete puoi arricchire OpenStreetMap con informazioni su un singolo argomento. Rispondi a poche domande e in pochi minuti i tuoi contributi saranno disponibili a tutto il mondo! L’utente gestore del tema definisce gli elementi, le domande e le lingue per quel tema.

Scopri altro

MapComplete propone sempre un passo in più per imparare qualcosa di nuovo su OpenStreetMap.

  • Quando viene incorporato in un sito web, il collegamento dell’iframe punta a MapComplete a tutto schermo
  • La versione a tutto schermo fornisce informazioni su OpenStreetMap
  • La visualizzazione non necessita di alcun accesso ma per modificare occorre aver effettuato l’accesso su OSM.
  • Se non hai effettuato l’accesso, ti verrà richiesto di farlo
  • Dopo aver risposto ad una sola domanda potrai aggiungere dei nuovi punti alla mappa
  • Dopo qualche momento verranno mostrate le etichette effettive, in seguito i collegamenti alla wiki


Hai trovato un errore? Vuoi richiedere nuove funzionalità? Vuoi aiutare con la traduzione? Dai un’occhiata al codice sorgente oppure al tracker degli errori.

Vuoi vedere i tuoi progressi?Segui il contatore delle modifiche su OsmCha.

", - "morescreen": { - "requestATheme": "Se hai bisogno di una mappa tematica personalizzata, puoi chiederla nel tracker degli errori", - "createYourOwnTheme": "Crea il tuo tema di MapComplete personalizzato da zero", - "streetcomplete": "Un’altra simile applicazione è StreetComplete.", - "intro": "

Altre mappe tematiche?

Ti diverti a raccogliere dati geografici?
Sono disponibili altri temi.", - "previouslyHiddenTitle": "Temi nascosti precedentemente visitati", - "hiddenExplanation": "Questi temi sono solo accessibili se si dispone del collegamento. Hai scoperto {hidden_discovered} su {total_hidden} temi nascosti." + "centerMessage": { + "loadingData": "Caricamento dei dati…", + "ready": "Finito!", + "retrying": "Caricamento dei dati fallito. Nuovo tentativo tra {count} secondi…", + "zoomIn": "Ingrandisci la mappa per vedere e modificare i dati" }, - "sharescreen": { - "embedIntro": "

Incorpora nel tuo sito web

Siamo lieti se vorrai includere questa cartina nel tuo sito web.
Ti incoraggiamo a farlo (non devi neanche chieder il permesso).
È gratuito e lo sarà per sempre. Più persone lo useranno e più valore acquisirà.", - "addToHomeScreen": "

Aggiungi alla tua schermata Home

Puoi aggiungere facilmente questo sito web alla schermata Home del tuo smartphone. Per farlo, clicca sul pulsante ‘Aggiungi a schermata Home’ nella barra degli indirizzi.", - "fsIncludeCurrentLocation": "Includi la posizione attuale", - "fsIncludeCurrentBackgroundMap": "Includi lo sfondo attualmente selezionato {name}", - "fsIncludeCurrentLayers": "Includi i livelli correntemente selezionati", - "fsGeolocation": "Abilita il pusante ‘geo-localizzami’ (solo da mobile)", - "fsAddNew": "Abilita il pulsante ‘aggiungi nuovo PDI’", - "fsLayerControlToggle": "Inizia con il pannello dei livelli aperto", - "fsLayers": "Abilita il controllo dei livelli", - "fsWelcomeMessage": "Mostra il messaggio di benvenuto e le schede associate", - "fsSearch": "Abilita la barra di ricerca", - "fsUserbadge": "Abilita il pulsante di accesso", - "editThemeDescription": "Aggiungi o modifica le domande a questo tema della mappa", - "editThisTheme": "Modifica questo tema", - "thanksForSharing": "Grazie per la condivisione!", - "copiedToClipboard": "Collegamento copiato negli appunti", - "intro": "

Condividi questa mappa

Condividi questa mappa copiando il collegamento qua sotto e inviandolo ad amici o parenti:" + "delete": { + "cancel": "Annulla", + "cannotBeDeleted": "Questo oggetto non può essere rimosso", + "delete": "Rimuovi", + "explanations": { + "hardDelete": "Questo punto verrà rimosso da OpenStreetMap. Un utente esperto potrebbe recuperarlo", + "selectReason": "Si prega di selezionare il motivo della rimozione di questo oggetto", + "softDelete": "Questo oggetto verrà aggiornato e nascosto da questa applicazione. {reason}" + }, + "isDeleted": "Questo oggetto è stato rimosso", + "isntAPoint": "Solo i punti possono essere rimossi, l’oggetto selezionato è un percorso, un’area oppure una relazione.", + "loading": "Controllo delle proprietà per verificare se questo oggetto può essere rimosso.", + "loginToDelete": "Devi aver effettuato l’accesso per poter rimuovere un punto", + "notEnoughExperience": "Questo nodo è stato creato da un altro utente.", + "onlyEditedByLoggedInUser": "Questo punto è stato modificato soltanto da te, puoi rimuoverlo in sicurezza.", + "partOfOthers": "Questo punto fa parte di qualche percorso o relazione e non può essere rimosso direttamente.", + "readMessages": "Hai dei messaggi non letti. Leggili prima di rimuovere un punto (qualcuno potrebbe aver lasciato un commento)", + "reasons": { + "disused": "L’oggetto è in disuso o è stato smantellato", + "duplicate": "Questo punto è un duplicato di un altro oggetto", + "notFound": "Non è stato possibile trovare l’oggetto", + "test": "Si tratta di un punto di prova (l’oggetto non è mai esistito in quel punto)" + }, + "safeDelete": "Questo punto può essere rimosso in sicurezza.", + "useSomethingElse": "Per rimuoverlo usa un altro editor OpenStreetMap", + "whyDelete": "Perché questo nodo andrebbe rimosso?" }, - "attribution": { - "attributionContent": "

Tutti i dati sono forniti da OpenStreetMap, riutilizzabili liberamente con Open Database License

", - "attributionTitle": "Crediti", - "codeContributionsBy": "MapComplete è stato realizzato da {contributors} e {hiddenCount} altri collaboratori", - "mapContributionsByAndHidden": "I dati attualmente visibili sono stati modificati da {contributors} e {hiddenCount} altri contributori", - "mapContributionsBy": "I dati attualmente visibili sono stati creati da {contributors}", - "iconAttribution": { - "title": "Icone utilizzate" - }, - "themeBy": "Tema manutenuto da {author}" + "favourite": { + "loginNeeded": "

Accedi

Il layout personale è disponibile soltanto per gli utenti OpenStreetMap", + "panelIntro": "

Il tuo tema personale

Attiva i tuoi livelli preferiti fra tutti i temi ufficiali", + "reload": "Ricarica i dati" }, - "openStreetMapIntro": "

Una mappa libera

Non sarebbe perfetto se esistesse una carta geografica che chiunque può modificare e utilizzare liberamente? Un unico posto in un cui conservare tutte le informazioni geografiche? In questo modo tutti questi siti web con mappe diverse, piccole e incompatibili (che sono sempre obsolete) diverrebbero istantaneamente inutili.

OpenStreetMap è proprio questa mappa. I dati geografici possono essere usati liberamente (rispettando l’attribuzione e la pubblicazione delle modifiche di quei dati). In più, chiunque può aggiungere liberamente nuovi dati e correggere gli errori. Anche questo sito usa OpenStreetMap. Tutti i dati provengono da lì e le tue risposte e correzioni finiscono sempre lì.

Moltissime persone e applicazioni già usano OpenStreetmap: Maps.me, OsmAnd ma anche le cartine di Facebook, Instagram, Apple e Bing si basano (parzialmente) su OpenStreetMap. Tutto quello che cambi qua si rifletterà anche su quelle applicazioni (non appena avranno aggiornato i loro dati!)

", - "opening_hours": { - "ph_open": "aperto", - "ph_closed": "chiuso", - "ph_not_known": " ", - "open_24_7": "Sempre aperto", - "closed_permanently": "Chiuso per un periodo sconosciuto", - "closed_until": "Chiuso fino al {date}", - "not_all_rules_parsed": "Gli orari di apertura di questo negozio sono complicati. Le seguenti regole sono state ignorate per l’oggetto in ingresso:", - "openTill": "fino a", - "opensAt": "da", - "open_during_ph": "Durante le festività questo luogo è", - "error_loading": "Errore: impossibile visualizzare questi orari di apertura.", - "ph_open_as_usual": "aperto come di consueto", - "loadingCountry": "Determinazione del Paese…" + "general": { + "about": "Modifica e aggiungi con semplicità OpenStreetMap per un certo tema", + "aboutMapcomplete": "

Informazioni su MapComplete

Con MapComplete puoi arricchire OpenStreetMap con informazioni su un singolo argomento. Rispondi a poche domande e in pochi minuti i tuoi contributi saranno disponibili a tutto il mondo! L’utente gestore del tema definisce gli elementi, le domande e le lingue per quel tema.

Scopri altro

MapComplete propone sempre un passo in più per imparare qualcosa di nuovo su OpenStreetMap.

  • Quando viene incorporato in un sito web, il collegamento dell’iframe punta a MapComplete a tutto schermo
  • La versione a tutto schermo fornisce informazioni su OpenStreetMap
  • La visualizzazione non necessita di alcun accesso ma per modificare occorre aver effettuato l’accesso su OSM.
  • Se non hai effettuato l’accesso, ti verrà richiesto di farlo
  • Dopo aver risposto ad una sola domanda potrai aggiungere dei nuovi punti alla mappa
  • Dopo qualche momento verranno mostrate le etichette effettive, in seguito i collegamenti alla wiki


Hai trovato un errore? Vuoi richiedere nuove funzionalità? Vuoi aiutare con la traduzione? Dai un’occhiata al codice sorgente oppure al tracker degli errori.

Vuoi vedere i tuoi progressi?Segui il contatore delle modifiche su OsmCha.

", + "add": { + "addNew": "Aggiungi una nuova {category} qua", + "addNewMapLabel": "Aggiungi nuovo elemento", + "confirmButton": "Aggiungi una {category} qua.
La tua aggiunta è visibile a chiunque
", + "confirmIntro": "

Aggiungere un {title} qua?

Il punto che hai creato qua sarà visibile da chiunque. Per favore, aggiungi sulla mappa solo oggetti realmente esistenti. Molte applicazioni usano questi dati.", + "disableFilters": "Disabilita tutti i filtri", + "disableFiltersExplanation": "Alcuni oggetti potrebbero essere nascosti da un filtro", + "hasBeenImported": "Questo punto è stato già importato", + "intro": "Hai cliccato in un punto dove non ci sono ancora dei dati.
", + "layerNotEnabled": "Il livello {layer} non è abilitato. Abilita questo livello per aggiungere un punto", + "openLayerControl": "Apri il pannello di controllo dei livelli", + "pleaseLogin": "Accedi per aggiungere un punto", + "presetInfo": "Il nuovo PDI avrà {tags}", + "stillLoading": "Caricamento dei dati ancora in corso. Attendi un po’ prima di aggiungere un nuovo punto.", + "title": "Aggiungi un nuovo punto?", + "warnVisibleForEveryone": "La tua aggiunta sarà visibile a tutti", + "zoomInFurther": "Ingrandisci la mappa per aggiungere un punto.", + "zoomInMore": "Ingrandisci ancora per importare questo oggetto" + }, + "attribution": { + "attributionContent": "

Tutti i dati sono forniti da OpenStreetMap, riutilizzabili liberamente con Open Database License

", + "attributionTitle": "Crediti", + "codeContributionsBy": "MapComplete è stato realizzato da {contributors} e {hiddenCount} altri collaboratori", + "iconAttribution": { + "title": "Icone utilizzate" + }, + "mapContributionsBy": "I dati attualmente visibili sono stati creati da {contributors}", + "mapContributionsByAndHidden": "I dati attualmente visibili sono stati modificati da {contributors} e {hiddenCount} altri contributori", + "themeBy": "Tema manutenuto da {author}" + }, + "backgroundMap": "Mappa di sfondo", + "cancel": "Annulla", + "customThemeIntro": "

Temi personalizzati

Questi sono i temi degli utenti che hai già visitato.", + "download": { + "downloadAsPdf": "Scarica un PDF della mappa corrente", + "downloadAsPdfHelper": "Ideale per stampare la mappa corrente", + "downloadCSV": "Scarica i dati visibili come CSV", + "downloadCSVHelper": "Compatibile con LibreOffice Calc, Excel, etc.", + "downloadGeoJsonHelper": "Compatibile con QGIS, ArcGIS, ESRI, etc.", + "downloadGeojson": "Scarica i dati visibili come GeoJSON", + "exporting": "Esportazione in corso…", + "includeMetaData": "Includi metadati (ultimo utente, valori calcolati, etc.)", + "licenseInfo": "

Informativa sul copyright

I dati forniti sono disponibili con licenza ODbL. Il riutilizzo di tali dati è libero per qualsiasi scopo ma
  • è richiesta l’attribuzione © OpenStreetMap contributors
  • qualsiasi modifica di questi data deve essere rilasciata con la stessa licenza
Per ulteriori dettagli si prega di leggere l’informativa completa sul copyright", + "noDataLoaded": "Nessun dato è stato ancora caricato. Lo scaricamento sarà disponibile a breve", + "title": "Scarica i dati visibili" + }, + "example": "Esempio", + "fewChangesBefore": "Rispondi ad alcune domande di punti esistenti prima di aggiungere un nuovo punto.", + "getStartedLogin": "Accedi con OpenStreetMap per iniziare", + "getStartedNewAccount": " oppure crea un nuovo account", + "goToInbox": "Apri posta in arrivo", + "histogram": { + "error_loading": "Impossibile caricare l'istogramma" + }, + "layerSelection": { + "title": "Seleziona livelli", + "zoomInToSeeThisLayer": "Ingrandisci la mappa per vedere questo livello" + }, + "loading": "Caricamento…", + "loginOnlyNeededToEdit": "se vuoi modificare la mappa", + "loginToStart": "Accedi per rispondere alla domanda", + "loginWithOpenStreetMap": "Accedi con OpenStreetMap", + "morescreen": { + "createYourOwnTheme": "Crea il tuo tema di MapComplete personalizzato da zero", + "hiddenExplanation": "Questi temi sono solo accessibili se si dispone del collegamento. Hai scoperto {hidden_discovered} su {total_hidden} temi nascosti.", + "intro": "

Altre mappe tematiche?

Ti diverti a raccogliere dati geografici?
Sono disponibili altri temi.", + "previouslyHiddenTitle": "Temi nascosti precedentemente visitati", + "requestATheme": "Se hai bisogno di una mappa tematica personalizzata, puoi chiederla nel tracker degli errori", + "streetcomplete": "Un’altra simile applicazione è StreetComplete." + }, + "nameInlineQuestion": "Il nome di questa {category} è $$$", + "noNameCategory": "{category} senza nome", + "noTagsSelected": "Nessuna etichetta selezionata", + "number": "numero", + "oneSkippedQuestion": "Una domanda è stata scartata", + "openStreetMapIntro": "

Una mappa libera

Non sarebbe perfetto se esistesse una carta geografica che chiunque può modificare e utilizzare liberamente? Un unico posto in un cui conservare tutte le informazioni geografiche? In questo modo tutti questi siti web con mappe diverse, piccole e incompatibili (che sono sempre obsolete) diverrebbero istantaneamente inutili.

OpenStreetMap è proprio questa mappa. I dati geografici possono essere usati liberamente (rispettando l’attribuzione e la pubblicazione delle modifiche di quei dati). In più, chiunque può aggiungere liberamente nuovi dati e correggere gli errori. Anche questo sito usa OpenStreetMap. Tutti i dati provengono da lì e le tue risposte e correzioni finiscono sempre lì.

Moltissime persone e applicazioni già usano OpenStreetmap: Maps.me, OsmAnd ma anche le cartine di Facebook, Instagram, Apple e Bing si basano (parzialmente) su OpenStreetMap. Tutto quello che cambi qua si rifletterà anche su quelle applicazioni (non appena avranno aggiornato i loro dati!)

", + "openTheMap": "Apri la mappa", + "opening_hours": { + "closed_permanently": "Chiuso per un periodo sconosciuto", + "closed_until": "Chiuso fino al {date}", + "error_loading": "Errore: impossibile visualizzare questi orari di apertura.", + "loadingCountry": "Determinazione del Paese…", + "not_all_rules_parsed": "Gli orari di apertura di questo negozio sono complicati. Le seguenti regole sono state ignorate per l’oggetto in ingresso:", + "openTill": "fino a", + "open_24_7": "Sempre aperto", + "open_during_ph": "Durante le festività questo luogo è", + "opensAt": "da", + "ph_closed": "chiuso", + "ph_not_known": " ", + "ph_open": "aperto", + "ph_open_as_usual": "aperto come di consueto" + }, + "osmLinkTooltip": "Visita questo oggetto su OpenStreetMap per la cronologia o altre opzioni di modifica", + "pdf": { + "attr": "Dati della mappa © OpenStreetMap Contributors, riutilizzabile con licenza ODbL", + "attrBackground": "Livello di sfondo: {background}", + "generatedWith": "Generato con MapComplete.osm.be", + "versionInfo": "v{version} - generato il {date}" + }, + "pickLanguage": "Scegli una lingua: ", + "questions": { + "emailIs": "L’indirizzo email di questa {category} è {email}", + "emailOf": "Qual è l’indirizzo email di {category}?", + "phoneNumberIs": "Il numero di telefono di questa {category} è {phone}", + "phoneNumberOf": "Qual è il numero di telefono di {category}?", + "websiteIs": "Sito web: {website}", + "websiteOf": "Qual è il sito web di {category}?" + }, + "readYourMessages": "Leggi tutti i tuoi messaggi OpenStreetMap prima di aggiungere un nuovo punto.", + "returnToTheMap": "Ritorna alla mappa", + "save": "Salva", + "search": { + "error": "Qualcosa è andato storto…", + "nothing": "Non è stato trovato nulla…", + "search": "Cerca un luogo", + "searching": "Ricerca…" + }, + "sharescreen": { + "addToHomeScreen": "

Aggiungi alla tua schermata Home

Puoi aggiungere facilmente questo sito web alla schermata Home del tuo smartphone. Per farlo, clicca sul pulsante ‘Aggiungi a schermata Home’ nella barra degli indirizzi.", + "copiedToClipboard": "Collegamento copiato negli appunti", + "editThemeDescription": "Aggiungi o modifica le domande a questo tema della mappa", + "editThisTheme": "Modifica questo tema", + "embedIntro": "

Incorpora nel tuo sito web

Siamo lieti se vorrai includere questa cartina nel tuo sito web.
Ti incoraggiamo a farlo (non devi neanche chieder il permesso).
È gratuito e lo sarà per sempre. Più persone lo useranno e più valore acquisirà.", + "fsAddNew": "Abilita il pulsante ‘aggiungi nuovo PDI’", + "fsGeolocation": "Abilita il pusante ‘geo-localizzami’ (solo da mobile)", + "fsIncludeCurrentBackgroundMap": "Includi lo sfondo attualmente selezionato {name}", + "fsIncludeCurrentLayers": "Includi i livelli correntemente selezionati", + "fsIncludeCurrentLocation": "Includi la posizione attuale", + "fsLayerControlToggle": "Inizia con il pannello dei livelli aperto", + "fsLayers": "Abilita il controllo dei livelli", + "fsSearch": "Abilita la barra di ricerca", + "fsUserbadge": "Abilita il pulsante di accesso", + "fsWelcomeMessage": "Mostra il messaggio di benvenuto e le schede associate", + "intro": "

Condividi questa mappa

Condividi questa mappa copiando il collegamento qua sotto e inviandolo ad amici o parenti:", + "thanksForSharing": "Grazie per la condivisione!" + }, + "skip": "Salta questa domanda", + "skippedQuestions": "Alcune domande sono state scartate", + "testing": "Prova (le modifiche non verranno salvate)", + "weekdays": { + "abbreviations": { + "friday": "Ven", + "monday": "Lun", + "saturday": "Sab", + "sunday": "Dom", + "thursday": "Gio", + "tuesday": "Mar", + "wednesday": "Mer" + }, + "friday": "Venerdì", + "monday": "Lunedì", + "saturday": "Sabato", + "sunday": "Domenica", + "thursday": "Giovedì", + "tuesday": "Martedì", + "wednesday": "Mercoledì" + }, + "welcomeBack": "Hai effettuato l’accesso. Bentornato/a!", + "wikipedia": { + "createNewWikidata": "Crea un nuovo elemento Wikidata", + "doSearch": "Cerca qui sopra per vedere i risultati", + "failed": "Caricamento della voce Wikipedia fallito", + "loading": "Caricamento Wikipedia…", + "noResults": "Nessun elemento trovato per {search}", + "noWikipediaPage": "Questo elemento Wikidata non ha ancora una pagina Wikipedia corrispondente.", + "searchWikidata": "Cerca su Wikidata", + "wikipediaboxTitle": "Wikipedia" + } }, - "weekdays": { - "sunday": "Domenica", - "saturday": "Sabato", - "friday": "Venerdì", - "thursday": "Giovedì", - "wednesday": "Mercoledì", - "tuesday": "Martedì", - "monday": "Lunedì", - "abbreviations": { - "sunday": "Dom", - "saturday": "Sab", - "friday": "Ven", - "thursday": "Gio", - "wednesday": "Mer", - "tuesday": "Mar", - "monday": "Lun" - } + "image": { + "addPicture": "Aggiungi foto", + "ccb": "con licenza CC-BY", + "ccbs": "con licenza CC-BY-SA", + "cco": "nel pubblico dominio", + "doDelete": "Rimuovi immagine", + "dontDelete": "Annulla", + "isDeleted": "Cancellata", + "pleaseLogin": "Accedi per caricare una foto", + "respectPrivacy": "Non fotografare persone o targhe dei veicoli. Non caricare da Google Maps, Google Streetview o da altre fonti coperte da copyright.", + "toBig": "La tua immagine è troppo grande in quanto è di {actual_size}. Cerca di usare immagini non più grandi di {max_size}", + "uploadDone": "La tua foto è stata aggiunta. Grazie per l’aiuto!", + "uploadFailed": "Impossibile caricare la tua foto. La connessione internet è attiva e le API di terze parti sono abilitate? Il browser Brave o il plugin uMatrix potrebbero bloccarle.", + "uploadMultipleDone": "Sono state aggiunte {count} immagini. Grazie per l’aiuto!", + "uploadingMultiple": "Caricamento di {count} foto…", + "uploadingPicture": "Caricamento della tua foto…", + "willBePublished": "La tua foto sarà pubblicata: " }, - "layerSelection": { - "title": "Seleziona livelli", - "zoomInToSeeThisLayer": "Ingrandisci la mappa per vedere questo livello" + "index": { + "#": "Questi testi sono mostrati sopra ai pulsanti del tema quando nessun tema è stato caricato", + "featuredThemeTitle": "Questa settimana in vetrina", + "intro": "MapComplete è un visualizzatore/editore di OpenStreetMap che mostra le informazioni riguardanti gli oggetti di uno specifico tema e permette di aggiornarle.", + "pickTheme": "Scegli un tema qui sotto per iniziare.", + "title": "Benvenuto/a su MapComplete" }, - "backgroundMap": "Mappa di sfondo", - "customThemeIntro": "

Temi personalizzati

Questi sono i temi degli utenti che hai già visitato.", - "noTagsSelected": "Nessuna etichetta selezionata", - "getStartedNewAccount": " oppure crea un nuovo account", - "getStartedLogin": "Accedi con OpenStreetMap per iniziare", - "goToInbox": "Apri posta in arrivo", - "fewChangesBefore": "Rispondi ad alcune domande di punti esistenti prima di aggiungere un nuovo punto.", - "readYourMessages": "Leggi tutti i tuoi messaggi OpenStreetMap prima di aggiungere un nuovo punto.", - "questions": { - "emailIs": "L’indirizzo email di questa {category} è {email}", - "emailOf": "Qual è l’indirizzo email di {category}?", - "websiteIs": "Sito web: {website}", - "websiteOf": "Qual è il sito web di {category}?", - "phoneNumberIs": "Il numero di telefono di questa {category} è {phone}", - "phoneNumberOf": "Qual è il numero di telefono di {category}?" + "move": { + "cancel": "Annulla lo spostamento", + "cannotBeMoved": "Questo oggetto non può essere spostato.", + "confirmMove": "Spostalo qua", + "inviteToMove": { + "generic": "Sposta questo punto", + "reasonInaccurate": "Migliora la precisione di questo punto", + "reasonRelocation": "Sposta quest’oggetto in un altro luogo perché è stato ricollocato" + }, + "inviteToMoveAgain": "Sposta di nuovo questo punto", + "isRelation": "Quest’oggetto è una relazione e non può essere spostato", + "isWay": "Quest’oggetto è un percorso. Usa un altro editor OpenStreetMap per spostarlo.", + "loginToMove": "Devi aver effettuato l’accesso per spostare un punto", + "moveTitle": "Sposta questo punto", + "partOfAWay": "Quest’oggetto fa parte di un altro percorso. Usa un altro editor per spostarlo.", + "partOfRelation": "Quest’oggetto fa parte di una relazione. Usa un altro editor per spostarlo.", + "pointIsMoved": "Questo punto è stato spostato", + "reasons": { + "reasonInaccurate": "La posizione di questo oggetto non è precisa e dovrebbe essere spostato di alcuni metri", + "reasonRelocation": "Questo oggetto è stato ricollocato in una posizione totalmente differente" + }, + "selectReason": "Perché vuoi spostare quest’oggetto?", + "whyMove": "Perché vuoi spostare questo punto?", + "zoomInFurther": "Ingrandisci ulteriormente per confermare questo spostamento" }, - "noNameCategory": "{category} senza nome", - "nameInlineQuestion": "Il nome di questa {category} è $$$", - "about": "Modifica e aggiungi con semplicità OpenStreetMap per un certo tema", - "pickLanguage": "Scegli una lingua: ", - "add": { - "layerNotEnabled": "Il livello {layer} non è abilitato. Abilita questo livello per aggiungere un punto", - "openLayerControl": "Apri il pannello di controllo dei livelli", - "confirmButton": "Aggiungi una {category} qua.
La tua aggiunta è visibile a chiunque
", - "confirmIntro": "

Aggiungere un {title} qua?

Il punto che hai creato qua sarà visibile da chiunque. Per favore, aggiungi sulla mappa solo oggetti realmente esistenti. Molte applicazioni usano questi dati.", - "stillLoading": "Caricamento dei dati ancora in corso. Attendi un po’ prima di aggiungere un nuovo punto.", - "zoomInFurther": "Ingrandisci la mappa per aggiungere un punto.", - "pleaseLogin": "Accedi per aggiungere un punto", - "intro": "Hai cliccato in un punto dove non ci sono ancora dei dati.
", - "title": "Aggiungi un nuovo punto?", - "addNew": "Aggiungi una nuova {category} qua", - "presetInfo": "Il nuovo PDI avrà {tags}", - "warnVisibleForEveryone": "La tua aggiunta sarà visibile a tutti", - "zoomInMore": "Ingrandisci ancora per importare questo oggetto", - "hasBeenImported": "Questo punto è stato già importato", - "disableFilters": "Disabilita tutti i filtri", - "addNewMapLabel": "Aggiungi nuovo elemento", - "disableFiltersExplanation": "Alcuni oggetti potrebbero essere nascosti da un filtro" + "multi_apply": { + "autoApply": "Quando si modificano gli attributi {attr_names}, questi attributi vengono anche automaticamente cambiati su altri {count} oggetti" }, - "osmLinkTooltip": "Visita questo oggetto su OpenStreetMap per la cronologia o altre opzioni di modifica", - "number": "numero", - "skippedQuestions": "Alcune domande sono state scartate", - "oneSkippedQuestion": "Una domanda è stata scartata", - "skip": "Salta questa domanda", - "cancel": "Annulla", - "save": "Salva", - "returnToTheMap": "Ritorna alla mappa", - "search": { - "error": "Qualcosa è andato storto…", - "nothing": "Non è stato trovato nulla…", - "searching": "Ricerca…", - "search": "Cerca un luogo" + "reviews": { + "affiliated_reviewer_warning": "(Recensione di un affiliato)", + "attribution": "Le recensioni sono fornite da Mangrove Reviews e sono disponibili con licenza CC-BY 4.0.", + "i_am_affiliated": "Sono associato con questo oggetto
Spunta se sei il proprietario, creatore, dipendente, etc.", + "name_required": "È richiesto un nome per poter mostrare e creare recensioni", + "no_rating": "Nessun voto ricevuto", + "no_reviews_yet": "Non ci sono ancora recensioni. Sii il primo a scriverne una aiutando così i dati liberi e l’attività!", + "plz_login": "Accedi per lasciare una recensione", + "posting_as": "Pubblica come", + "saved": "Recensione salvata. Grazie per averla condivisa!", + "saving_review": "Salvataggio…", + "title": "{count} recensioni", + "title_singular": "Una recensione", + "tos": "Quando pubblichi una recensione, accetti i termini di utilizzo e la informativa sulla privacy di Mangrove.reviews", + "write_a_comment": "Lascia una recensione…" }, - "loginToStart": "Accedi per rispondere alla domanda", - "welcomeBack": "Hai effettuato l’accesso. Bentornato/a!", - "loginWithOpenStreetMap": "Accedi con OpenStreetMap", - "loading": "Caricamento…", - "download": { - "downloadAsPdf": "Scarica un PDF della mappa corrente", - "downloadCSV": "Scarica i dati visibili come CSV", - "noDataLoaded": "Nessun dato è stato ancora caricato. Lo scaricamento sarà disponibile a breve", - "downloadGeojson": "Scarica i dati visibili come GeoJSON", - "downloadAsPdfHelper": "Ideale per stampare la mappa corrente", - "downloadGeoJsonHelper": "Compatibile con QGIS, ArcGIS, ESRI, etc.", - "title": "Scarica i dati visibili", - "downloadCSVHelper": "Compatibile con LibreOffice Calc, Excel, etc.", - "includeMetaData": "Includi metadati (ultimo utente, valori calcolati, etc.)", - "licenseInfo": "

Informativa sul copyright

I dati forniti sono disponibili con licenza ODbL. Il riutilizzo di tali dati è libero per qualsiasi scopo ma
  • è richiesta l’attribuzione © OpenStreetMap contributors
  • qualsiasi modifica di questi data deve essere rilasciata con la stessa licenza
Per ulteriori dettagli si prega di leggere l’informativa completa sul copyright", - "exporting": "Esportazione in corso…" - }, - "testing": "Prova (le modifiche non verranno salvate)", - "pdf": { - "versionInfo": "v{version} - generato il {date}", - "attr": "Dati della mappa © OpenStreetMap Contributors, riutilizzabile con licenza ODbL", - "generatedWith": "Generato con MapComplete.osm.be", - "attrBackground": "Livello di sfondo: {background}" - }, - "openTheMap": "Apri la mappa", - "histogram": { - "error_loading": "Impossibile caricare l'istogramma" - }, - "wikipedia": { - "loading": "Caricamento Wikipedia…", - "noResults": "Nessun elemento trovato per {search}", - "doSearch": "Cerca qui sopra per vedere i risultati", - "noWikipediaPage": "Questo elemento Wikidata non ha ancora una pagina Wikipedia corrispondente.", - "searchWikidata": "Cerca su Wikidata", - "createNewWikidata": "Crea un nuovo elemento Wikidata", - "wikipediaboxTitle": "Wikipedia", - "failed": "Caricamento della voce Wikipedia fallito" - }, - "loginOnlyNeededToEdit": "se vuoi modificare la mappa" - }, - "index": { - "#": "Questi testi sono mostrati sopra ai pulsanti del tema quando nessun tema è stato caricato", - "pickTheme": "Scegli un tema qui sotto per iniziare.", - "intro": "MapComplete è un visualizzatore/editore di OpenStreetMap che mostra le informazioni riguardanti gli oggetti di uno specifico tema e permette di aggiornarle.", - "title": "Benvenuto/a su MapComplete", - "featuredThemeTitle": "Questa settimana in vetrina" - }, - "favourite": { - "reload": "Ricarica i dati", - "loginNeeded": "

Accedi

Il layout personale è disponibile soltanto per gli utenti OpenStreetMap", - "panelIntro": "

Il tuo tema personale

Attiva i tuoi livelli preferiti fra tutti i temi ufficiali" - }, - "centerMessage": { - "retrying": "Caricamento dei dati fallito. Nuovo tentativo tra {count} secondi…", - "ready": "Finito!", - "zoomIn": "Ingrandisci la mappa per vedere e modificare i dati", - "loadingData": "Caricamento dei dati…" - }, - "image": { - "isDeleted": "Cancellata", - "doDelete": "Rimuovi immagine", - "dontDelete": "Annulla", - "uploadDone": "La tua foto è stata aggiunta. Grazie per l’aiuto!", - "respectPrivacy": "Non fotografare persone o targhe dei veicoli. Non caricare da Google Maps, Google Streetview o da altre fonti coperte da copyright.", - "uploadFailed": "Impossibile caricare la tua foto. La connessione internet è attiva e le API di terze parti sono abilitate? Il browser Brave o il plugin uMatrix potrebbero bloccarle.", - "ccb": "con licenza CC-BY", - "ccbs": "con licenza CC-BY-SA", - "cco": "nel pubblico dominio", - "willBePublished": "La tua foto sarà pubblicata: ", - "pleaseLogin": "Accedi per caricare una foto", - "uploadingMultiple": "Caricamento di {count} foto…", - "uploadingPicture": "Caricamento della tua foto…", - "addPicture": "Aggiungi foto", - "uploadMultipleDone": "Sono state aggiunte {count} immagini. Grazie per l’aiuto!", - "toBig": "La tua immagine è troppo grande in quanto è di {actual_size}. Cerca di usare immagini non più grandi di {max_size}" - }, - "delete": { - "reasons": { - "test": "Si tratta di un punto di prova (l’oggetto non è mai esistito in quel punto)", - "disused": "L’oggetto è in disuso o è stato smantellato", - "notFound": "Non è stato possibile trovare l’oggetto", - "duplicate": "Questo punto è un duplicato di un altro oggetto" - }, - "explanations": { - "selectReason": "Si prega di selezionare il motivo della rimozione di questo oggetto", - "hardDelete": "Questo punto verrà rimosso da OpenStreetMap. Un utente esperto potrebbe recuperarlo", - "softDelete": "Questo oggetto verrà aggiornato e nascosto da questa applicazione. {reason}" - }, - "loginToDelete": "Devi aver effettuato l’accesso per poter rimuovere un punto", - "safeDelete": "Questo punto può essere rimosso in sicurezza.", - "isntAPoint": "Solo i punti possono essere rimossi, l’oggetto selezionato è un percorso, un’area oppure una relazione.", - "onlyEditedByLoggedInUser": "Questo punto è stato modificato soltanto da te, puoi rimuoverlo in sicurezza.", - "notEnoughExperience": "Questo nodo è stato creato da un altro utente.", - "delete": "Rimuovi", - "isDeleted": "Questo oggetto è stato rimosso", - "cannotBeDeleted": "Questo oggetto non può essere rimosso", - "useSomethingElse": "Per rimuoverlo usa un altro editor OpenStreetMap", - "loading": "Controllo delle proprietà per verificare se questo oggetto può essere rimosso.", - "partOfOthers": "Questo punto fa parte di qualche percorso o relazione e non può essere rimosso direttamente.", - "whyDelete": "Perché questo nodo andrebbe rimosso?", - "cancel": "Annulla", - "readMessages": "Hai dei messaggi non letti. Leggili prima di rimuovere un punto (qualcuno potrebbe aver lasciato un commento)" - }, - "move": { - "loginToMove": "Devi aver effettuato l’accesso per spostare un punto", - "partOfAWay": "Quest’oggetto fa parte di un altro percorso. Usa un altro editor per spostarlo.", - "partOfRelation": "Quest’oggetto fa parte di una relazione. Usa un altro editor per spostarlo.", - "isWay": "Quest’oggetto è un percorso. Usa un altro editor OpenStreetMap per spostarlo.", - "isRelation": "Quest’oggetto è una relazione e non può essere spostato", - "cancel": "Annulla lo spostamento", - "pointIsMoved": "Questo punto è stato spostato", - "zoomInFurther": "Ingrandisci ulteriormente per confermare questo spostamento", - "moveTitle": "Sposta questo punto", - "whyMove": "Perché vuoi spostare questo punto?", - "confirmMove": "Spostalo qua", - "inviteToMove": { - "reasonInaccurate": "Migliora la precisione di questo punto", - "generic": "Sposta questo punto", - "reasonRelocation": "Sposta quest’oggetto in un altro luogo perché è stato ricollocato" - }, - "selectReason": "Perché vuoi spostare quest’oggetto?", - "reasons": { - "reasonInaccurate": "La posizione di questo oggetto non è precisa e dovrebbe essere spostato di alcuni metri", - "reasonRelocation": "Questo oggetto è stato ricollocato in una posizione totalmente differente" - }, - "inviteToMoveAgain": "Sposta di nuovo questo punto", - "cannotBeMoved": "Questo oggetto non può essere spostato." - }, - "multi_apply": { - "autoApply": "Quando si modificano gli attributi {attr_names}, questi attributi vengono anche automaticamente cambiati su altri {count} oggetti" - }, - "split": { - "hasBeenSplit": "Questa strada è stata divisa", - "cancel": "Annulla", - "splitTitle": "Scegli sulla cartina il punto dove vuoi dividere la strada", - "inviteToSplit": "Dividi questa strada in segmenti più piccoli. Ciò permette di assegnare proprietà differenti a ciascun pezzo di strada.", - "split": "Dividi", - "loginToSplit": "Devi aver effettuato l’accesso per dividere una strada" - } -} + "split": { + "cancel": "Annulla", + "hasBeenSplit": "Questa strada è stata divisa", + "inviteToSplit": "Dividi questa strada in segmenti più piccoli. Ciò permette di assegnare proprietà differenti a ciascun pezzo di strada.", + "loginToSplit": "Devi aver effettuato l’accesso per dividere una strada", + "split": "Dividi", + "splitTitle": "Scegli sulla cartina il punto dove vuoi dividere la strada" + } +} \ No newline at end of file diff --git a/langs/ja.json b/langs/ja.json index e4a7229238..7180aa9860 100644 --- a/langs/ja.json +++ b/langs/ja.json @@ -1,175 +1,175 @@ { - "reviews": { - "i_am_affiliated": "わたしは、この対象物の関係者です
所有者、作成者、従業員などの有無を確認します", - "no_reviews_yet": "まだレビューはありません。最初に書き込みを行い、データとビジネスのオープン化を支援しましょう!", - "name_required": "レビューを表示および作成するには名前が必要です", - "plz_login": "ログインしてレビューを終了する", - "attribution": "レビューは、Mangrove Reviews and are available under CC-BY 4.0で公開されます。", - "tos": "レビューを作成する場合は、Mangrove.reviewsのTOSおよびプライバシーポリシーに同意します。", - "saved": "レビューが保存されました。共有ありがとう!", - "saving_review": "保存中…", - "affiliated_reviewer_warning": "(関係者のレビュー)", - "posting_as": "としての投稿", - "no_rating": "評価が与えられていません", - "write_a_comment": "レビューを残す…", - "title_singular": "1回のレビュー", - "title": "{count}個のレビュー" - }, - "favourite": { - "loginNeeded": "

ログイン

個人用レイアウトはOpenStreetMapユーザのみが使用できます", - "reload": "データを再ロードする", - "panelIntro": "

お客様の個人的なテーマ

すべての公式テーマからお気に入りのレイヤを有効にする" - }, - "general": { - "layerSelection": { - "zoomInToSeeThisLayer": "レイヤを拡大表示します", - "title": "レイヤを選択" + "centerMessage": { + "loadingData": "データをロードしています…", + "ready": "完了!", + "retrying": "データの読み込みに失敗しました。{count} 秒以内に再試行します…", + "zoomIn": "ズーム・インしてデータを表示または編集" }, - "getStartedLogin": "OpenStreetMapを使用してログインし開始します", - "morescreen": { - "requestATheme": "カスタムビルドのクエストが必要な場合は、問題追跡ツールで要請してください", - "createYourOwnTheme": "独自のMapCompleteテーマを最初から作成する", - "streetcomplete": "別に、同様のアプリケーションには、StreetCompleteがあります。", - "intro": "

より多くの主題図

ジオデータの収集は楽しいですか?
他にも使用可能なテーマがあります。" + "favourite": { + "loginNeeded": "

ログイン

個人用レイアウトはOpenStreetMapユーザのみが使用できます", + "panelIntro": "

お客様の個人的なテーマ

すべての公式テーマからお気に入りのレイヤを有効にする", + "reload": "データを再ロードする" }, - "sharescreen": { - "embedIntro": "

お客様のWebサイトに埋め込む

この地図をお客様のWebサイトに埋め込みます。
許可を得る必要もありませんので、ぜひご利用ください。
無料であり、常に利用できます。使う人が増えれば増えるほど、価値が増大します。", - "fsIncludeCurrentLocation": "現在の場所を含める", - "fsIncludeCurrentLayers": "現在のレイヤの選択肢を含める", - "fsIncludeCurrentBackgroundMap": "現在の背景の選択肢{name}を含める", - "fsGeolocation": "[geolocate-me]ボタンを有効にする(モバイルのみ)", - "fsAddNew": "[新しいPOIの追加]ボタンを有効にする", - "fsLayerControlToggle": "レイヤコントロールを展開して開始", - "fsLayers": "レイヤコントロールを有効にする", - "fsWelcomeMessage": "ウェルカムメッセージのポップアップと関連するタブを表示します", - "fsSearch": "検索バーを有効にする", - "fsUserbadge": "ログインボタンを有効にする", - "editThemeDescription": "このマップテーマに質問を追加または変更する", - "editThisTheme": "このテーマを編集", - "thanksForSharing": "共有してくれてありがとう!", - "copiedToClipboard": "クリップボードにコピーされたリンク", - "addToHomeScreen": "

ホーム画面に追加する

このサイトはスマートフォンのホーム画面に簡単に追加でき、ネイティブな雰囲気になります。これを行うには、URLバーの「ホーム画面に追加ボタン」をクリックします。", - "intro": "

このマップを共有

このマップを共有するには、次のリンクをコピーして、友人や家族に送信します。" + "general": { + "about": "特定のテーマに沿って、OpenStreetMapを簡単に編集し、情報を追加できます", + "aboutMapcomplete": "

MapCompleteについて

MapCompleteを使えば、1つのテーマに関する情報でOpenStreetMapを充実させることができます。いくつかの質問に答えると、数分以内にあなたの投稿が世界中で公開されます!テーマメンテナは、テーマの要素、質問、言語を定義します。

詳細情報を見る

MapCompleteは常にOpenStreetMapについてさらに学ぶため次のステップを提供します。

  • Webサイトに埋め込まれるとiframeはフルスクリーンのMapCompleteにリンクします
  • フルスクリーン版はOpenStreetMapに関する情報を提供します
  • ログインせずに表示することはできますが、編集にはOSMログインが必要です。
  • ログインしていない場合は、ログインするように求められます
  • 1つの質問に回答すると、マップに新しいポイントを追加できます
  • しばらくすると、実際のOSMタグが表示され、後でWikiにリンクされます


問題に気づきましたか?機能要求はありますか?翻訳の手伝いをしますか?ソースコードまたは問題追跡ツールに移動します。

進捗状況を確認しますか? OsmChaの編集数に従います。

", + "add": { + "addNew": "ここに新しい {category} を追加します", + "confirmButton": "ここに{category}を追加します。
追加内容はすべてのユーザーに表示されます。
", + "confirmIntro": "

ここに{title}を追加しますか?

ここで作成したポイントはすべてのユーザーに表示されます。本当に存在するものだけをマップに追加してください。多くのアプリケーションがこのデータを使用しています。", + "intro": "データがまだわからない場所をクリックしました。
", + "layerNotEnabled": "レイヤ{layer}は有効になっていません。このレイヤで点を追加できるようにする", + "openLayerControl": "レイヤコントロールボックスを開く", + "pleaseLogin": "新しいポイントを追加するにはログインしてください", + "stillLoading": "データはまだロード中です。新しいポイントを追加する前に少しお待ちください。", + "title": "新しいポイントを追加しますか?", + "zoomInFurther": "さらにズーム拡大して点を追加します。" + }, + "attribution": { + "attributionContent": "

すべてのデータはOpenStreetMapによって提供され、 Open DataBaseライセンスの下で自由に再利用できます。

", + "attributionTitle": "帰属通知", + "codeContributionsBy": "MapCompleteは{contributors}と、 {hiddenCount}人の貢献者によって開発されました", + "iconAttribution": { + "title": "使用されるアイコン" + }, + "mapContributionsBy": "現在表示されているデータには、{contributors}によって編集が行われています", + "mapContributionsByAndHidden": "現在表示されているデータには、{contributors}および、{hiddenCount}人の貢献者が編集したものが含まれています", + "themeBy": "{author} によって管理されるテーマ" + }, + "backgroundMap": "背景マップ", + "cancel": "[キャンセル]", + "customThemeIntro": "

カスタムテーマ

これらは以前にアクセスされたユーザー生成テーマです。", + "fewChangesBefore": "新しいポイントを追加する前に、既存のポイントに関するいくつかの質問に答えてください。", + "getStartedLogin": "OpenStreetMapを使用してログインし開始します", + "getStartedNewAccount": " または新しいアカウントを作成する", + "goToInbox": "受信トレイを開く", + "layerSelection": { + "title": "レイヤを選択", + "zoomInToSeeThisLayer": "レイヤを拡大表示します" + }, + "loginToStart": "ログインしてこの質問に答えてください", + "loginWithOpenStreetMap": "OpenStreetMapからログインする", + "morescreen": { + "createYourOwnTheme": "独自のMapCompleteテーマを最初から作成する", + "intro": "

より多くの主題図

ジオデータの収集は楽しいですか?
他にも使用可能なテーマがあります。", + "requestATheme": "カスタムビルドのクエストが必要な場合は、問題追跡ツールで要請してください", + "streetcomplete": "別に、同様のアプリケーションには、StreetCompleteがあります。" + }, + "nameInlineQuestion": "この {category} の名前は $$$ です", + "noNameCategory": "名前のない {category}", + "noTagsSelected": "タグが選択されていません", + "number": "number", + "oneSkippedQuestion": "1つの質問がスキップされます", + "openStreetMapIntro": "

オープン地図

誰もが自由に使用して編集できる1つのマップがあればクールではないでしょうか?すべての地理情報を格納するための単一の場所?そうすれば、異なる、小さくて互換性のない地図(常に時代遅れのもの)を持つウェブサイトは、必要なくなるでしょう。

OpenStreetMapこそが地図です。地図データは、(データ変更の公開と帰属表示をすれば)無料で利用できます。さらに、誰でも自由に新しいデータを追加したり、間違いを修正したりすることができます。このサイトでもOpenStreetMapを使っています。すべてのデータは、OSMからのものであり、あなたの答えと訂正もOSMに追加されます。

すでに多くの人やアプリケーションがOpenStreetMapを使っています:Maps.meや、OsmAndなど。Fさらに、acebook、Instagram、Apple-maps、Bing-mapsも(部分的に)OpenStreetMapを利用しています。ここで何かを変更すると、次の更新後にアプリケーションにも反映されます。

", + "opening_hours": { + "closed_permanently": "不明な期間、閉店しています", + "closed_until": "{date} まで閉店", + "error_loading": "エラー:これらの営業時間を表示できませんでした。", + "not_all_rules_parsed": "この店の営業時間は複雑です。次のルールは入力エレメントでは無視されます。", + "openTill": "終了時刻", + "open_24_7": "24時間営業", + "open_during_ph": "このアメニティは、祝日には", + "opensAt": "開始時刻", + "ph_closed": "閉店", + "ph_not_known": " ", + "ph_open": "開店" + }, + "osmLinkTooltip": "履歴とその他の編集オプションについては、OpenStreetMapのこのオブジェクトを参照してください", + "pickLanguage": "言語を選択します: ", + "questions": { + "emailIs": "この{category}の電子メール・アドレスは{email}です", + "emailOf": "{category} の電子メールアドレスは何ですか?", + "phoneNumberIs": "この {category} の電話番号は{phone}です。", + "phoneNumberOf": "{category} の電話番号は何番ですか?", + "websiteIs": "Webサイト:{website}", + "websiteOf": "{category} のウェブサイトはどこですか?" + }, + "readYourMessages": "新しいポイントを追加する前に、OpenStreetMapのメッセージをすべて読んでください。", + "returnToTheMap": "マップに戻る", + "save": "保存", + "search": { + "error": "何かがうまくいかなかった…", + "nothing": "何も見つかりませんでした…", + "search": "場所を検索する", + "searching": "検索中…" + }, + "sharescreen": { + "addToHomeScreen": "

ホーム画面に追加する

このサイトはスマートフォンのホーム画面に簡単に追加でき、ネイティブな雰囲気になります。これを行うには、URLバーの「ホーム画面に追加ボタン」をクリックします。", + "copiedToClipboard": "クリップボードにコピーされたリンク", + "editThemeDescription": "このマップテーマに質問を追加または変更する", + "editThisTheme": "このテーマを編集", + "embedIntro": "

お客様のWebサイトに埋め込む

この地図をお客様のWebサイトに埋め込みます。
許可を得る必要もありませんので、ぜひご利用ください。
無料であり、常に利用できます。使う人が増えれば増えるほど、価値が増大します。", + "fsAddNew": "[新しいPOIの追加]ボタンを有効にする", + "fsGeolocation": "[geolocate-me]ボタンを有効にする(モバイルのみ)", + "fsIncludeCurrentBackgroundMap": "現在の背景の選択肢{name}を含める", + "fsIncludeCurrentLayers": "現在のレイヤの選択肢を含める", + "fsIncludeCurrentLocation": "現在の場所を含める", + "fsLayerControlToggle": "レイヤコントロールを展開して開始", + "fsLayers": "レイヤコントロールを有効にする", + "fsSearch": "検索バーを有効にする", + "fsUserbadge": "ログインボタンを有効にする", + "fsWelcomeMessage": "ウェルカムメッセージのポップアップと関連するタブを表示します", + "intro": "

このマップを共有

このマップを共有するには、次のリンクをコピーして、友人や家族に送信します。", + "thanksForSharing": "共有してくれてありがとう!" + }, + "skip": "この質問をスキップします", + "skippedQuestions": "一部の質問はスキップされました", + "weekdays": { + "abbreviations": { + "friday": "金", + "monday": "月", + "saturday": "土", + "sunday": "日", + "thursday": "木Thu", + "tuesday": "火", + "wednesday": "水曜" + }, + "friday": "金曜日", + "monday": "月曜日", + "saturday": "土曜日", + "sunday": "日曜日", + "thursday": "木曜日", + "tuesday": "火曜日", + "wednesday": "水曜日" + }, + "welcomeBack": "ログインしました、お帰りなさい!" }, - "attribution": { - "codeContributionsBy": "MapCompleteは{contributors}と、 {hiddenCount}人の貢献者によって開発されました", - "mapContributionsByAndHidden": "現在表示されているデータには、{contributors}および、{hiddenCount}人の貢献者が編集したものが含まれています", - "mapContributionsBy": "現在表示されているデータには、{contributors}によって編集が行われています", - "iconAttribution": { - "title": "使用されるアイコン" - }, - "themeBy": "{author} によって管理されるテーマ", - "attributionContent": "

すべてのデータはOpenStreetMapによって提供され、 Open DataBaseライセンスの下で自由に再利用できます。

", - "attributionTitle": "帰属通知" + "image": { + "addPicture": "写真の追加", + "ccb": "CC-BY-ライセンスで", + "ccbs": "CC-BY-SA-ライセンスで", + "cco": "in the public domain", + "doDelete": "イメージの削除", + "dontDelete": "[キャンセル]", + "isDeleted": "削除済み", + "pleaseLogin": "写真を追加するにはログインしてください", + "respectPrivacy": "人やナンバープレートを撮影しないでください。Googleマップ、Google Streetview、その他著作権で保護された情報源をアップロードしないでください。", + "uploadDone": "あなたの写真が追加されました。ご協力ありがとうございます!", + "uploadFailed": "写真をアップロードできませんでした。インターネット接続があり、外部のAPIが許可されていますか?Brave ブラウザやUMatrixは、これらをブロックするかもしれません。", + "uploadingMultiple": "{count} 枚の写真をアップロードします…", + "uploadingPicture": "写真をアップロードします…", + "willBePublished": "写真は公開されます: " }, - "questions": { - "emailIs": "この{category}の電子メール・アドレスは{email}です", - "emailOf": "{category} の電子メールアドレスは何ですか?", - "websiteIs": "Webサイト:{website}", - "websiteOf": "{category} のウェブサイトはどこですか?", - "phoneNumberIs": "この {category} の電話番号は{phone}です。", - "phoneNumberOf": "{category} の電話番号は何番ですか?" + "index": { + "#": "これらのテキストは、テーマがロードされていない場合にテーマボタンの上に表示されます", + "intro": "MapCompleteはOpenStreetMapのビューア兼エディタであり、特定のテーマに関する情報を表示します。", + "pickTheme": "開始するには、下のテーマを選択してください。", + "title": "MapCompleteへようこそ" }, - "nameInlineQuestion": "この {category} の名前は $$$ です", - "about": "特定のテーマに沿って、OpenStreetMapを簡単に編集し、情報を追加できます", - "add": { - "intro": "データがまだわからない場所をクリックしました。
", - "addNew": "ここに新しい {category} を追加します", - "layerNotEnabled": "レイヤ{layer}は有効になっていません。このレイヤで点を追加できるようにする", - "openLayerControl": "レイヤコントロールボックスを開く", - "confirmButton": "ここに{category}を追加します。
追加内容はすべてのユーザーに表示されます。
", - "confirmIntro": "

ここに{title}を追加しますか?

ここで作成したポイントはすべてのユーザーに表示されます。本当に存在するものだけをマップに追加してください。多くのアプリケーションがこのデータを使用しています。", - "stillLoading": "データはまだロード中です。新しいポイントを追加する前に少しお待ちください。", - "zoomInFurther": "さらにズーム拡大して点を追加します。", - "pleaseLogin": "新しいポイントを追加するにはログインしてください", - "title": "新しいポイントを追加しますか?" - }, - "osmLinkTooltip": "履歴とその他の編集オプションについては、OpenStreetMapのこのオブジェクトを参照してください", - "skippedQuestions": "一部の質問はスキップされました", - "loginToStart": "ログインしてこの質問に答えてください", - "opening_hours": { - "ph_open": "開店", - "ph_closed": "閉店", - "ph_not_known": " ", - "open_24_7": "24時間営業", - "closed_permanently": "不明な期間、閉店しています", - "closed_until": "{date} まで閉店", - "not_all_rules_parsed": "この店の営業時間は複雑です。次のルールは入力エレメントでは無視されます。", - "openTill": "終了時刻", - "opensAt": "開始時刻", - "open_during_ph": "このアメニティは、祝日には", - "error_loading": "エラー:これらの営業時間を表示できませんでした。" - }, - "weekdays": { - "sunday": "日曜日", - "saturday": "土曜日", - "friday": "金曜日", - "thursday": "木曜日", - "wednesday": "水曜日", - "tuesday": "火曜日", - "monday": "月曜日", - "abbreviations": { - "sunday": "日", - "saturday": "土", - "friday": "金", - "thursday": "木Thu", - "wednesday": "水曜", - "tuesday": "火", - "monday": "月" - } - }, - "backgroundMap": "背景マップ", - "aboutMapcomplete": "

MapCompleteについて

MapCompleteを使えば、1つのテーマに関する情報でOpenStreetMapを充実させることができます。いくつかの質問に答えると、数分以内にあなたの投稿が世界中で公開されます!テーマメンテナは、テーマの要素、質問、言語を定義します。

詳細情報を見る

MapCompleteは常にOpenStreetMapについてさらに学ぶため次のステップを提供します。

  • Webサイトに埋め込まれるとiframeはフルスクリーンのMapCompleteにリンクします
  • フルスクリーン版はOpenStreetMapに関する情報を提供します
  • ログインせずに表示することはできますが、編集にはOSMログインが必要です。
  • ログインしていない場合は、ログインするように求められます
  • 1つの質問に回答すると、マップに新しいポイントを追加できます
  • しばらくすると、実際のOSMタグが表示され、後でWikiにリンクされます


問題に気づきましたか?機能要求はありますか?翻訳の手伝いをしますか?ソースコードまたは問題追跡ツールに移動します。

進捗状況を確認しますか? OsmChaの編集数に従います。

", - "customThemeIntro": "

カスタムテーマ

これらは以前にアクセスされたユーザー生成テーマです。", - "noTagsSelected": "タグが選択されていません", - "getStartedNewAccount": " または新しいアカウントを作成する", - "goToInbox": "受信トレイを開く", - "fewChangesBefore": "新しいポイントを追加する前に、既存のポイントに関するいくつかの質問に答えてください。", - "readYourMessages": "新しいポイントを追加する前に、OpenStreetMapのメッセージをすべて読んでください。", - "openStreetMapIntro": "

オープン地図

誰もが自由に使用して編集できる1つのマップがあればクールではないでしょうか?すべての地理情報を格納するための単一の場所?そうすれば、異なる、小さくて互換性のない地図(常に時代遅れのもの)を持つウェブサイトは、必要なくなるでしょう。

OpenStreetMapこそが地図です。地図データは、(データ変更の公開と帰属表示をすれば)無料で利用できます。さらに、誰でも自由に新しいデータを追加したり、間違いを修正したりすることができます。このサイトでもOpenStreetMapを使っています。すべてのデータは、OSMからのものであり、あなたの答えと訂正もOSMに追加されます。

すでに多くの人やアプリケーションがOpenStreetMapを使っています:Maps.meや、OsmAndなど。Fさらに、acebook、Instagram、Apple-maps、Bing-mapsも(部分的に)OpenStreetMapを利用しています。ここで何かを変更すると、次の更新後にアプリケーションにも反映されます。

", - "noNameCategory": "名前のない {category}", - "pickLanguage": "言語を選択します: ", - "number": "number", - "oneSkippedQuestion": "1つの質問がスキップされます", - "skip": "この質問をスキップします", - "cancel": "[キャンセル]", - "save": "保存", - "returnToTheMap": "マップに戻る", - "search": { - "error": "何かがうまくいかなかった…", - "nothing": "何も見つかりませんでした…", - "searching": "検索中…", - "search": "場所を検索する" - }, - "welcomeBack": "ログインしました、お帰りなさい!", - "loginWithOpenStreetMap": "OpenStreetMapからログインする" - }, - "index": { - "#": "これらのテキストは、テーマがロードされていない場合にテーマボタンの上に表示されます", - "pickTheme": "開始するには、下のテーマを選択してください。", - "intro": "MapCompleteはOpenStreetMapのビューア兼エディタであり、特定のテーマに関する情報を表示します。", - "title": "MapCompleteへようこそ" - }, - "centerMessage": { - "zoomIn": "ズーム・インしてデータを表示または編集", - "retrying": "データの読み込みに失敗しました。{count} 秒以内に再試行します…", - "ready": "完了!", - "loadingData": "データをロードしています…" - }, - "image": { - "isDeleted": "削除済み", - "doDelete": "イメージの削除", - "dontDelete": "[キャンセル]", - "uploadDone": "あなたの写真が追加されました。ご協力ありがとうございます!", - "respectPrivacy": "人やナンバープレートを撮影しないでください。Googleマップ、Google Streetview、その他著作権で保護された情報源をアップロードしないでください。", - "uploadFailed": "写真をアップロードできませんでした。インターネット接続があり、外部のAPIが許可されていますか?Brave ブラウザやUMatrixは、これらをブロックするかもしれません。", - "ccb": "CC-BY-ライセンスで", - "ccbs": "CC-BY-SA-ライセンスで", - "cco": "in the public domain", - "willBePublished": "写真は公開されます: ", - "pleaseLogin": "写真を追加するにはログインしてください", - "uploadingMultiple": "{count} 枚の写真をアップロードします…", - "uploadingPicture": "写真をアップロードします…", - "addPicture": "写真の追加" - } -} + "reviews": { + "affiliated_reviewer_warning": "(関係者のレビュー)", + "attribution": "レビューは、Mangrove Reviews and are available under CC-BY 4.0で公開されます。", + "i_am_affiliated": "わたしは、この対象物の関係者です
所有者、作成者、従業員などの有無を確認します", + "name_required": "レビューを表示および作成するには名前が必要です", + "no_rating": "評価が与えられていません", + "no_reviews_yet": "まだレビューはありません。最初に書き込みを行い、データとビジネスのオープン化を支援しましょう!", + "plz_login": "ログインしてレビューを終了する", + "posting_as": "としての投稿", + "saved": "レビューが保存されました。共有ありがとう!", + "saving_review": "保存中…", + "title": "{count}個のレビュー", + "title_singular": "1回のレビュー", + "tos": "レビューを作成する場合は、Mangrove.reviewsのTOSおよびプライバシーポリシーに同意します。", + "write_a_comment": "レビューを残す…" + } +} \ No newline at end of file diff --git a/langs/layers/ca.json b/langs/layers/ca.json index b5dc2b0cb4..7c63cac570 100644 --- a/langs/layers/ca.json +++ b/langs/layers/ca.json @@ -1,103 +1,91 @@ { - "defibrillator": { - "name": "Desfibril·ladors", - "presets": { - "0": { - "title": "Desfibril·lador" - } - }, - "tagRenderings": { - "defibrillator-access": { - "mappings": { - "0": { - "then": "Accés lliure" - }, - "1": { - "then": "Publicament accessible" - }, - "2": { - "then": "Només accessible a clients" - }, - "3": { - "then": "No accessible al públic en general (ex. només accesible a treballadors, propietaris, ...)" - } + "defibrillator": { + "name": "Desfibril·ladors", + "presets": { + "0": { + "title": "Desfibril·lador" + } }, - "question": "Està el desfibril·lador accessible lliurement?", - "render": "L'accés és {access}" - }, - "defibrillator-defibrillator:location": { - "question": "Dóna detalls d'on es pot trobar el desfibril·lador" - }, - "defibrillator-defibrillator:location:en": { - "question": "Dóna detalls d'on es pot trobar el desfibril·lador" - }, - "defibrillator-defibrillator:location:fr": { - "question": "Dóna detalls d'on es pot trobar el desfibril·lador" - }, - "defibrillator-indoors": { - "mappings": { - "0": { - "then": "Aquest desfibril·lador està a l'interior" - }, - "1": { - "then": "Aquest desfibril·lador està a l'exterior" - } + "tagRenderings": { + "defibrillator-access": { + "mappings": { + "0": { + "then": "Accés lliure" + }, + "1": { + "then": "Publicament accessible" + }, + "2": { + "then": "Només accessible a clients" + }, + "3": { + "then": "No accessible al públic en general (ex. només accesible a treballadors, propietaris, ...)" + } + }, + "question": "Està el desfibril·lador accessible lliurement?", + "render": "L'accés és {access}" + }, + "defibrillator-defibrillator:location": { + "question": "Dóna detalls d'on es pot trobar el desfibril·lador" + }, + "defibrillator-defibrillator:location:en": { + "question": "Dóna detalls d'on es pot trobar el desfibril·lador" + }, + "defibrillator-defibrillator:location:fr": { + "question": "Dóna detalls d'on es pot trobar el desfibril·lador" + }, + "defibrillator-indoors": { + "mappings": { + "0": { + "then": "Aquest desfibril·lador està a l'interior" + }, + "1": { + "then": "Aquest desfibril·lador està a l'exterior" + } + }, + "question": "Està el desfibril·lador a l'interior?" + }, + "defibrillator-level": { + "question": "A quina planta està el desfibril·lador localitzat?", + "render": "Aquest desfibril·lador és a la planta {level}" + } }, - "question": "Està el desfibril·lador a l'interior?" - }, - "defibrillator-level": { - "question": "A quina planta està el desfibril·lador localitzat?", - "render": "Aquest desfibril·lador és a la planta {level}" - } - }, - "title": { - "render": "Desfibril·lador" - } - }, - "ghost_bike": { - "tagRenderings": { - "ghost_bike-inscription": { - "render": "{inscription}" - } - } - }, - "nature_reserve": { - "tagRenderings": { - "Email": { - "render": "{email}" - }, - "phone": { - "render": "{phone}" - } - } - }, - "playground": { - "tagRenderings": { - "playground-email": { - "render": "{email}" - }, - "playground-phone": { - "render": "{phone}" - } - } - }, - "shops": { - "tagRenderings": { - "shops-phone": { - "render": "{phone}" - }, - "shops-website": { - "render": "{website}" - } - } - }, - "tree_node": { - "title": { - "mappings": { - "0": { - "then": "{name}" + "title": { + "render": "Desfibril·lador" + } + }, + "ghost_bike": { + "tagRenderings": { + "ghost_bike-inscription": { + "render": "{inscription}" + } + } + }, + "nature_reserve": { + "tagRenderings": { + "Email": { + "render": "{email}" + } + } + }, + "playground": { + "tagRenderings": { + "playground-email": { + "render": "{email}" + }, + "playground-phone": { + "render": "{phone}" + } + } + }, + "shops": { + "tagRenderings": { + "shops-phone": { + "render": "{phone}" + }, + "shops-website": { + "render": "{website}" + } } - } } - } } \ No newline at end of file diff --git a/langs/layers/cs.json b/langs/layers/cs.json new file mode 100644 index 0000000000..9e26dfeeb6 --- /dev/null +++ b/langs/layers/cs.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/langs/layers/de.json b/langs/layers/de.json index 1359693b3f..3c845d54d8 100644 --- a/langs/layers/de.json +++ b/langs/layers/de.json @@ -1,2876 +1,3278 @@ { - "artwork": { - "description": "Verschiedene Kunstwerke", - "name": "Kunstwerke", - "presets": { - "0": { - "title": "Kunstwerk" - } - }, - "tagRenderings": { - "artwork-artist_name": { - "question": "Welcher Künstler hat das geschaffen?", - "render": "Erstellt von {artist_name}" - }, - "artwork-artwork_type": { - "mappings": { - "0": { - "then": "Architektur" - }, - "1": { - "then": "Wandbild" - }, - "2": { - "then": "Malerei" - }, - "3": { - "then": "Skulptur" - }, - "4": { - "then": "Statue" - }, - "5": { - "then": "Büste" - }, - "6": { - "then": "Stein" - }, - "7": { - "then": "Installation" - }, - "8": { - "then": "Graffiti" - }, - "9": { - "then": "Relief" - }, - "10": { - "then": "Azulejo (spanische dekorative Fliesenarbeit)" - }, - "11": { - "then": "Fliesenarbeit" - } - }, - "question": "Was ist die Art dieses Kunstwerks?", - "render": "Dies ist ein {artwork_type}" - }, - "artwork-website": { - "question": "Gibt es eine Website mit weiteren Informationen über dieses Kunstwerk?", - "render": "Weitere Informationen auf dieser Webseite" - }, - "artwork-wikidata": { - "question": "Welcher Wikidata-Eintrag entspricht diesem Kunstwerk?", - "render": "Entspricht {wikidata}" - } - }, - "title": { - "mappings": { - "0": { - "then": "Kunstwerk {name}" - } - }, - "render": "Kunstwerk" - } - }, - "barrier": { - "description": "Hindernisse beim Fahrradfahren, wie zum Beispiel Poller und Fahrrad Barrieren", - "name": "Hindernisse", - "presets": { - "0": { - "description": "Ein Poller auf der Straße", - "title": "Poller" - }, - "1": { - "description": "Fahrradhindernis, das Radfahrer abbremst", - "title": "Fahrradhindernis" - } - }, - "tagRenderings": { - "Bollard type": { - "mappings": { - "0": { - "then": "Entfernbarer Poller" - }, - "1": { - "then": "Feststehender Poller" - }, - "2": { - "then": "Umlegbarer Poller" - }, - "3": { - "then": "Flexibler Poller, meist aus Kunststoff" - }, - "4": { - "then": "Ausfahrender Poller" - } - }, - "question": "Um was für einen Poller handelt es sich?" - }, - "Cycle barrier type": { - "mappings": { - "0": { - "then": "Einfach, nur zwei Barrieren mit einem Zwischenraum " - }, - "1": { - "then": "Doppelt, zwei Barrieren hintereinander " - }, - "2": { - "then": "Dreifach, drei Barrieren hintereinander " - }, - "3": { - "then": "Eine Durchfahrtsbeschränkung, Durchfahrtsbreite ist oben kleiner als unten " - } - }, - "question": "Um welche Art Fahrradhindernis handelt es sich?" - }, - "MaxWidth": { - "question": "Welche Durchfahrtsbreite hat das Hindernis?", - "render": "Maximale Durchfahrtsbreite: {maxwidth:physical} m" - }, - "Overlap (cyclebarrier)": { - "question": "Wie stark überschneiden sich die Barrieren?", - "render": "Überschneidung: {overlap} m" - }, - "Space between barrier (cyclebarrier)": { - "question": "Wie groß ist der Abstand zwischen den Barrieren (entlang der Straße)?", - "render": "Abstand zwischen den Barrieren (entlang der Straße): {width:separation} m" - }, - "Width of opening (cyclebarrier)": { - "question": "Wie breit ist die kleinste Öffnung neben den Barrieren?", - "render": "Breite der Öffnung: {width:opening} m" - }, - "bicycle=yes/no": { - "mappings": { - "0": { - "then": "Ein Radfahrer kann hindurchfahren." - }, - "1": { - "then": "Ein Radfahrer kann nicht hindurchfahren." - } - }, - "question": "Kann ein Radfahrer das Hindernis passieren?" - } - }, - "title": { - "mappings": { - "0": { - "then": "Poller" - }, - "1": { - "then": "Barriere für Radfahrer" - } - }, - "render": "Hindernis" - } - }, - "bench": { - "name": "Sitzbänke", - "presets": { - "0": { - "title": "sitzbank" - } - }, - "tagRenderings": { - "bench-backrest": { - "mappings": { - "0": { - "then": "Rückenlehne: Ja" - }, - "1": { - "then": "Rückenlehne: Nein" - } - }, - "question": "Hat diese Bank eine Rückenlehne?" - }, - "bench-colour": { - "mappings": { - "0": { - "then": "Farbe: braun" - }, - "1": { - "then": "Farbe: grün" - }, - "2": { - "then": "Farbe: grau" - }, - "3": { - "then": "Farbe: weiß" - }, - "4": { - "then": "Farbe: rot" - }, - "5": { - "then": "Farbe: schwarz" - }, - "6": { - "then": "Farbe: blau" - }, - "7": { - "then": "Farbe: gelb" - } - }, - "question": "Welche Farbe hat diese Sitzbank?", - "render": "Farbe: {colour}" - }, - "bench-direction": { - "question": "In welche Richtung schaut man, wenn man auf der Bank sitzt?", - "render": "Wenn man auf der Bank sitzt, schaut man in Richtung {direction}°." - }, - "bench-material": { - "mappings": { - "0": { - "then": "Material: Holz" - }, - "1": { - "then": "Material: Metall" - }, - "2": { - "then": "Material: Stein" - }, - "3": { - "then": "Material: Beton" - }, - "4": { - "then": "Material: Kunststoff" - }, - "5": { - "then": "Material: Stahl" - } - }, - "question": "Aus welchem Material besteht die Sitzbank (Sitzfläche)?", - "render": "Material: {material}" - }, - "bench-seats": { - "question": "Wie viele Sitzplätze hat diese Bank?", - "render": "{seats} Sitzplätze" - }, - "bench-survey:date": { - "question": "Wann wurde diese Bank zuletzt überprüft?", - "render": "Diese Bank wurde zuletzt überprüft am {survey:date}" - } - }, - "title": { - "render": "Sitzbank" - } - }, - "bench_at_pt": { - "name": "Sitzbänke bei Haltestellen", - "tagRenderings": { - "bench_at_pt-bench_type": { - "mappings": { - "1": { - "then": "Stehbank" - } - } - }, - "bench_at_pt-name": { - "render": "{name}" - } - }, - "title": { - "mappings": { - "0": { - "then": "Sitzbank bei Haltestelle" - }, - "1": { - "then": "Sitzbank in Unterstand" - } - }, - "render": "Sitzbank" - } - }, - "bicycle_library": { - "description": "Eine Einrichtung, in der Fahrräder für längere Zeit geliehen werden können", - "name": "Fahrradbibliothek", - "presets": { - "0": { - "description": "Eine Fahrradbibliothek verfügt über eine Sammlung von Fahrrädern, die ausgeliehen werden können", - "title": "Fahrradbibliothek" - } - }, - "tagRenderings": { - "bicycle-library-target-group": { - "mappings": { - "0": { - "then": "Fahrräder für Kinder verfügbar" - }, - "1": { - "then": "Fahrräder für Erwachsene verfügbar" - }, - "2": { - "then": "Fahrräder für Behinderte verfügbar" - } - }, - "question": "Wer kann hier Fahrräder ausleihen?" - }, - "bicycle_library-charge": { - "mappings": { - "0": { - "then": "Das Ausleihen eines Fahrrads ist kostenlos" - }, - "1": { - "then": "Das Ausleihen eines Fahrrads kostet 20€ pro Jahr und 20€ Gebühr" - } - }, - "question": "Wie viel kostet das Ausleihen eines Fahrrads?", - "render": "Das Ausleihen eines Fahrrads kostet {charge}" - }, - "bicycle_library-name": { - "question": "Wie lautet der Name dieser Fahrradbibliothek?", - "render": "Diese Fahrradbibliothek heißt {name}" - } - }, - "title": { - "render": "Fahrradbibliothek" - } - }, - "bicycle_tube_vending_machine": { - "name": "Fahrradschlauch-Automat", - "presets": { - "0": { - "title": "Fahrradschlauch-Automat" - } - }, - "tagRenderings": { - "Still in use?": { - "mappings": { - "0": { - "then": "Dieser Automat funktioniert" - }, - "1": { - "then": "Dieser Automat ist kaputt" - }, - "2": { - "then": "Dieser Automat ist geschlossen" - } - }, - "question": "Ist dieser Automat noch in Betrieb?", - "render": "Der Betriebszustand ist {operational_status}" - } - }, - "title": { - "render": "Fahrradschlauch-Automat" - } - }, - "bike_cafe": { - "name": "Fahrrad-Café", - "presets": { - "0": { - "title": "Fahrrad-Café" - } - }, - "tagRenderings": { - "bike_cafe-bike-pump": { - "mappings": { - "0": { - "then": "Dieses Fahrrad-Café bietet eine Fahrradpumpe an, die von jedem benutzt werden kann" - }, - "1": { - "then": "Dieses Fahrrad-Café bietet keine Fahrradpumpe an, die von jedem benutzt werden kann" - } - }, - "question": "Bietet dieses Fahrrad-Café eine Fahrradpumpe an, die von jedem benutzt werden kann?" - }, - "bike_cafe-email": { - "question": "Wie lautet die E-Mail-Adresse von {name}?" - }, - "bike_cafe-name": { - "question": "Wie heißt dieses Fahrrad-Café?", - "render": "Dieses Fahrrad-Café heißt {name}" - }, - "bike_cafe-opening_hours": { - "question": "Wann ist dieses Fahrradcafé geöffnet?" - }, - "bike_cafe-phone": { - "question": "Wie lautet die Telefonnummer von {name}?" - }, - "bike_cafe-repair-service": { - "mappings": { - "0": { - "then": "Dieses Fahrrad-Café repariert Fahrräder" - }, - "1": { - "then": "Dieses Fahrrad-Café repariert keine Fahrräder" - } - }, - "question": "Repariert dieses Fahrrad-Café Fahrräder?" - }, - "bike_cafe-repair-tools": { - "mappings": { - "0": { - "then": "Dieses Fahrrad-Café bietet Werkzeuge für die selbständige Reparatur an" - }, - "1": { - "then": "Dieses Fahrrad-Café bietet keine Werkzeuge für die selbständige Reparatur an" - } - }, - "question": "Gibt es hier Werkzeuge, um das eigene Fahrrad zu reparieren?" - }, - "bike_cafe-website": { - "question": "Was ist die Webseite von {name}?" - } - }, - "title": { - "mappings": { - "0": { - "then": "Fahrrad-Café {name}" - } - }, - "render": "Fahrrad-Café" - } - }, - "bike_cleaning": { - "name": "Fahrrad-Reinigungsdienst", - "presets": { - "0": { - "title": "Fahrrad-Reinigungsdienst" - } - }, - "title": { - "mappings": { - "0": { - "then": "Fahrrad-Reinigungsdienst{name}" - } - }, - "render": "Fahrrad-Reinigungsdienst" - } - }, - "bike_parking": { - "name": "Fahrrad-Parkplätze", - "presets": { - "0": { - "title": "Fahrrad-Parkplätze" - } - }, - "tagRenderings": { - "Access": { - "mappings": { - "0": { - "then": "Öffentlich zugänglich" - }, - "1": { - "then": "Der Zugang ist in erster Linie für Besucher eines Unternehmens bestimmt" - }, - "2": { - "then": "Der Zugang ist beschränkt auf Mitglieder einer Schule, eines Unternehmens oder einer Organisation" - } - }, - "question": "Wer kann diesen Fahrradparplatz nutzen?", - "render": "{access}" - }, - "Bicycle parking type": { - "mappings": { - "0": { - "then": "Fahrradbügel " - }, - "1": { - "then": "Metallgestänge " - }, - "2": { - "then": "Halter für Fahrradlenker " - }, - "3": { - "then": "Gestell " - }, - "4": { - "then": "Zweistufig " - }, - "5": { - "then": "Schuppen " - }, - "6": { - "then": "Poller " - }, - "7": { - "then": "Ein Bereich auf dem Boden, der für das Abstellen von Fahrrädern gekennzeichnet ist" - } - }, - "question": "Was ist die Art dieses Fahrrad-Parkplatzes?", - "render": "Dies ist ein Fahrrad-Parkplatz der Art: {bicycle_parking}" - }, - "Capacity": { - "question": "Wie viele Fahrräder passen auf diesen Fahrrad-Parkplatz (einschließlich möglicher Lastenfahrräder)?", - "render": "Platz für {capacity} Fahrräder" - }, - "Cargo bike capacity?": { - "question": "Wie viele Lastenfahrräder passen auf diesen Fahrrad-Parkplatz?", - "render": "Auf diesen Parkplatz passen {capacity:cargo_bike} Lastenfahrräder" - }, - "Cargo bike spaces?": { - "mappings": { - "0": { - "then": "Dieser Parkplatz bietet Platz für Lastenfahrräder" - }, - "1": { - "then": "Dieser Parkplatz verfügt über ausgewiesene (offizielle) Plätze für Lastenfahrräder." - }, - "2": { - "then": "Es ist nicht erlaubt, Lastenfahrräder zu parken" - } - }, - "question": "Gibt es auf diesem Fahrrad-Parkplatz Plätze für Lastenfahrräder?" - }, - "Is covered?": { - "mappings": { - "0": { - "then": "Dieser Parkplatz ist überdacht (er hat ein Dach)" - }, - "1": { - "then": "Dieser Parkplatz ist nicht überdacht" - } - }, - "question": "Ist dieser Parkplatz überdacht? Wählen Sie auch \"überdacht\" für Innenparkplätze." - }, - "Underground?": { - "mappings": { - "0": { - "then": "Tiefgarage" - }, - "1": { - "then": "Ebenerdiges Parken" - }, - "2": { - "then": "Parkplatz auf dem Dach" - }, - "3": { - "then": "Ebenerdiges Parken" - }, - "4": { - "then": "Parkplatz auf dem Dach" - } - }, - "question": "Wo befinden sich diese Fahrradabstellplätze?" - } - }, - "title": { - "render": "Fahrrad-Parkplätze" - } - }, - "bike_repair_station": { - "name": "Fahrradstationen (Reparatur, Pumpe oder beides)", - "presets": { - "0": { - "description": "Ein Gerät zum Aufpumpen von Reifen an einem festen Standort im öffentlichen Raum.

Beispiele für Fahrradpumpen

", - "title": "Fahrradpumpe" - }, - "1": { - "description": "Ein Gerät mit Werkzeugen zur Reparatur von Fahrrädern kombiniert mit einer Pumpe an einem festen Standort. Die Werkzeuge sind oft mit Ketten gegen Diebstahl gesichert.

Beispiel

", - "title": "Fahrrad-Reparaturstation und Pumpe" - }, - "2": { - "title": "Fahrrad-Reparaturstation ohne Pumpe" - } - }, - "tagRenderings": { - "Email maintainer": { - "render": "Melde diese Fahrradpumpe als kaputt" - }, - "Operational status": { - "mappings": { - "0": { - "then": "Die Fahrradpumpe ist kaputt" - }, - "1": { - "then": "Die Fahrradpumpe ist betriebsbereit" - } - }, - "question": "Ist die Fahrradpumpe noch funktionstüchtig?" - }, - "bike_repair_station-available-services": { - "mappings": { - "0": { - "then": "Es ist nur eine Pumpe vorhanden" - }, - "1": { - "then": "Es sind nur Werkzeuge (Schraubenzieher, Zangen...) vorhanden" - }, - "2": { - "then": "Es sind sowohl Werkzeuge als auch eine Pumpe vorhanden" - } - }, - "question": "Welche Einrichtungen stehen an dieser Fahrradstation zur Verfügung?" - }, - "bike_repair_station-bike-chain-tool": { - "mappings": { - "0": { - "then": "Es gibt ein Kettenwerkzeug" - }, - "1": { - "then": "Es gibt kein Kettenwerkzeug" - } - }, - "question": "Verfügt diese Fahrrad-Reparaturstation über Spezialwerkzeug zur Reparatur von Fahrradketten?" - }, - "bike_repair_station-bike-stand": { - "mappings": { - "0": { - "then": "Es gibt einen Haken oder Ständer" - }, - "1": { - "then": "Es gibt keinen Haken oder Ständer" - } - }, - "question": "Hat diese Fahrradstation einen Haken, an dem Sie Ihr Fahrrad aufhängen können, oder einen Ständer, um es anzuheben?" - }, - "bike_repair_station-electrical_pump": { - "mappings": { - "0": { - "then": "Manuelle Pumpe" - }, - "1": { - "then": "Elektrische Pumpe" - } - }, - "question": "Ist dies eine elektrische Fahrradpumpe?" - }, - "bike_repair_station-email": { - "question": "Wie lautet die E-Mail-Adresse des Betreuers?" - }, - "bike_repair_station-manometer": { - "mappings": { - "0": { - "then": "Es gibt ein Manometer" - }, - "1": { - "then": "Es gibt kein Manometer" - }, - "2": { - "then": "Es gibt ein Manometer, aber es ist kaputt" - } - }, - "question": "Verfügt die Pumpe über einen Druckanzeiger oder ein Manometer?" - }, - "bike_repair_station-opening_hours": { - "mappings": { - "0": { - "then": "Immer geöffnet" - }, - "1": { - "then": "Immer geöffnet" - } - }, - "question": "Wann ist diese Fahrradreparaturstelle geöffnet?" - }, - "bike_repair_station-operator": { - "question": "Wer wartet diese Fahrradpumpe?", - "render": "Gewartet von {operator}" - }, - "bike_repair_station-phone": { - "question": "Wie lautet die Telefonnummer des Betreibers?" - }, - "bike_repair_station-valves": { - "mappings": { - "0": { - "then": "Sklaverand (auch bekannt als Presta)" - }, - "1": { - "then": "Dunlop" - }, - "2": { - "then": "Schrader (Autos)" - } - }, - "question": "Welche Ventile werden unterstützt?", - "render": "Diese Pumpe unterstützt die folgenden Ventile: {valves}" - } - }, - "title": { - "mappings": { - "0": { - "then": "Fahrrad-Reparaturstation" - }, - "1": { - "then": "Fahrrad-Reparaturstation" - }, - "2": { - "then": "Kaputte Pumpe" - }, - "3": { - "then": "Fahrradpumpe {name}" - }, - "4": { - "then": "Fahrradpumpe" - } - }, - "render": "Fahrradstation (Pumpe & Reparatur)" - } - }, - "bike_shop": { - "description": "Ein Geschäft, das speziell Fahrräder oder verwandte Artikel verkauft", - "name": "Fahrradwerkstatt/geschäft", - "presets": { - "0": { - "title": "Fahrradwerkstatt/geschäft" - } - }, - "tagRenderings": { - "bike_repair_bike-pump-service": { - "mappings": { - "0": { - "then": "Dieses Geschäft bietet eine Fahrradpumpe für alle an" - }, - "1": { - "then": "Dieses Geschäft bietet für niemanden eine Fahrradpumpe an" - }, - "2": { - "then": "Es gibt eine Fahrradpumpe, sie wird als separater Punkt angezeigt " - } - }, - "question": "Bietet dieses Geschäft eine Fahrradpumpe zur Benutzung für alle an?" - }, - "bike_repair_bike-wash": { - "mappings": { - "0": { - "then": "Dieses Geschäft reinigt Fahrräder" - }, - "1": { - "then": "Dieser Laden hat eine Anlage, in der man Fahrräder selbst reinigen kann" - }, - "2": { - "then": "Dieser Laden bietet keine Fahrradreinigung an" - } - }, - "question": "Werden hier Fahrräder gewaschen?" - }, - "bike_repair_rents-bikes": { - "mappings": { - "0": { - "then": "Dieses Geschäft vermietet Fahrräder" - }, - "1": { - "then": "Dieses Geschäft vermietet keine Fahrräder" - } - }, - "question": "Vermietet dieser Laden Fahrräder?" - }, - "bike_repair_repairs-bikes": { - "mappings": { - "0": { - "then": "Dieses Geschäft repariert Fahrräder" - }, - "1": { - "then": "Dieses Geschäft repariert keine Fahrräder" - }, - "2": { - "then": "Dieses Geschäft repariert nur hier gekaufte Fahrräder" - }, - "3": { - "then": "Dieses Geschäft repariert nur Fahrräder einer bestimmten Marke" - } - }, - "question": "Repariert dieses Geschäft Fahrräder?" - }, - "bike_repair_second-hand-bikes": { - "mappings": { - "0": { - "then": "Dieses Geschäft verkauft gebrauchte Fahrräder" - }, - "1": { - "then": "Dieses Geschäft verkauft keine gebrauchten Fahrräder" - }, - "2": { - "then": "Dieses Geschäft verkauft nur gebrauchte Fahrräder" - } - }, - "question": "Verkauft dieses Geschäft gebrauchte Fahrräder?" - }, - "bike_repair_sells-bikes": { - "mappings": { - "0": { - "then": "Dieses Geschäft verkauft Fahrräder" - }, - "1": { - "then": "Dieses Geschäft verkauft keine Fahrräder" - } - }, - "question": "Verkauft dieser Laden Fahrräder?" - }, - "bike_repair_tools-service": { - "mappings": { - "0": { - "then": "Dieses Geschäft bietet Werkzeuge für die Heimwerkerreparatur an" - }, - "1": { - "then": "Dieses Geschäft bietet keine Werkzeuge für Heimwerkerreparaturen an" - }, - "2": { - "then": "Werkzeuge für die Selbstreparatur sind nur verfügbar, wenn Sie das Fahrrad im Laden gekauft/gemietet haben" - } - }, - "question": "Gibt es hier Werkzeuge, um das eigene Fahrrad zu reparieren?" - }, - "bike_shop-email": { - "question": "Wie lautet die E-Mail-Adresse von {name}?" - }, - "bike_shop-is-bicycle_shop": { - "render": "Dieses Geschäft ist auf den Verkauf von {shop} spezialisiert und im Bereich Fahrrad tätig" - }, - "bike_shop-name": { - "question": "Wie heißt dieser Fahrradladen?", - "render": "Dieses Fahrradgeschäft heißt {name}" - }, - "bike_shop-phone": { - "question": "Wie lautet die Telefonnummer von {name}?" - }, - "bike_shop-website": { - "question": "Was ist die Webseite von {name}?" - } - }, - "title": { - "mappings": { - "0": { - "then": "Sportartikelgeschäft {name}" - }, - "2": { - "then": "Fahrradverleih{name}" - }, - "3": { - "then": "Fahrradwerkstatt {name}" - }, - "4": { - "then": "Fahrradgeschäft {name}" - }, - "5": { - "then": "Fahrradwerkstatt/geschäft {name}" - } - }, - "render": "Fahrradwerkstatt/geschäft" - } - }, - "bike_themed_object": { - "name": "Mit Fahrrad zusammenhängendes Objekt", - "title": { - "mappings": { - "1": { - "then": "Radweg" - } - }, - "render": "Mit Fahrrad zusammenhängendes Objekt" - } - }, - "binocular": { - "description": "Fernglas", - "name": "Ferngläser", - "presets": { - "0": { - "description": "Ein fest installiertes Teleskop oder Fernglas, für die öffentliche Nutzung. ", - "title": "Ferngläser" - } - }, - "tagRenderings": { - "binocular-charge": { - "mappings": { - "0": { - "then": "Kostenlose Nutzung" - } - }, - "question": "Wie viel muss man für die Nutzung dieser Ferngläser bezahlen?", - "render": "Die Benutzung dieses Fernglases kostet {charge}" - }, - "binocular-direction": { - "question": "In welche Richtung blickt man, wenn man durch dieses Fernglas schaut?", - "render": "Blick in Richtung {direction}°" - } - }, - "title": { - "render": "Ferngläser" - } - }, - "birdhide": { - "filter": { - "0": { - "options": { - "0": { - "question": "Zugänglich für Rollstuhlfahrer" - } - } - } - } - }, - "cafe_pub": { - "filter": { - "0": { - "options": { - "0": { - "question": "Jetzt geöffnet" - } - } - } - }, - "name": "Cafés und Kneipen", - "presets": { - "0": { - "title": "Kneipe" - }, - "1": { - "title": "Bar" - }, - "2": { - "title": "Café" - } - }, - "tagRenderings": { - "Classification": { - "question": "Was ist das für ein Café" - }, - "Name": { - "question": "Wie heißt diese Kneipe?", - "render": "Diese Kneipe heißt {name}" - } - }, - "title": { - "mappings": { - "0": { - "then": "{name}" - } - } - } - }, - "crossings": { - "description": "Übergänge für Fußgänger und Radfahrer", - "name": "Kreuzungen", - "presets": { - "0": { - "description": "Kreuzung für Fußgänger und/oder Radfahrer", - "title": "Kreuzung" - }, - "1": { - "description": "Ampel an einer Straße", - "title": "Ampel" - } - }, - "tagRenderings": { - "crossing-bicycle-allowed": { - "mappings": { - "0": { - "then": "Radfahrer können diese Kreuzung nutzen" - }, - "1": { - "then": "Radfahrer können diese Kreuzung nicht nutzen" - } - }, - "question": "Können Radfahrer diese Kreuzung nutzen?" - }, - "crossing-button": { - "mappings": { - "0": { - "then": "Diese Ampel hat eine Taste, um ein grünes Signal anzufordern" - }, - "1": { - "then": "Diese Ampel hat keine Taste, um ein grünes Signal anzufordern." - } - }, - "question": "Hat diese Ampel eine Taste, um ein grünes Signal anzufordern?" - }, - "crossing-continue-through-red": { - "mappings": { - "0": { - "then": "Ein Radfahrer kann bei roter Ampel geradeaus fahren " - }, - "1": { - "then": "Ein Radfahrer kann bei roter Ampel geradeaus fahren" - }, - "2": { - "then": "Ein Radfahrer kann bei roter Ampel nicht geradeaus fahren" - } - }, - "question": "Kann ein Radfahrer bei roter Ampel geradeaus fahren?" - }, - "crossing-has-island": { - "mappings": { - "0": { - "then": "Der Übergang hat eine Verkehrsinsel" - }, - "1": { - "then": "Diese Ampel hat eine Taste, um ein grünes Signal anzufordern" - } - }, - "question": "Gibt es an diesem Übergang eine Verkehrsinsel?" - }, - "crossing-is-zebra": { - "mappings": { - "0": { - "then": "Dies ist ein Zebrastreifen" - }, - "1": { - "then": "Dies ist kein Zebrastreifen" - } - }, - "question": "Ist das ein Zebrastreifen?" - }, - "crossing-right-turn-through-red": { - "mappings": { - "0": { - "then": "Ein Radfahrer kann bei roter Ampel rechts abbiegen " - }, - "1": { - "then": "Ein Radfahrer kann bei roter Ampel rechts abbiegen" - }, - "2": { - "then": "Ein Radfahrer kann bei roter Ampel nicht rechts abbiegen" - } - }, - "question": "Kann ein Radfahrer bei roter Ampel rechts abbiegen?" - }, - "crossing-tactile": { - "mappings": { - "0": { - "then": "An dieser Kreuzung gibt es ein Blindenleitsystem" - }, - "1": { - "then": "Diese Kreuzung hat kein Blindenleitsystem" - }, - "2": { - "then": "Diese Kreuzung hat taktile Pflasterung, ist aber nicht korrekt" - } - }, - "question": "Gibt es an dieser Kreuzung ein Blindenleitsystem?" - }, - "crossing-type": { - "mappings": { - "0": { - "then": "Kreuzungen ohne Ampeln" - }, - "1": { - "then": "Kreuzungen mit Ampeln" - }, - "2": { - "then": "Zebrastreifen" - } - }, - "question": "Was ist das für eine Kreuzung?" - } - }, - "title": { - "mappings": { - "0": { - "then": "Ampel" - }, - "1": { - "then": "Kreuzung mit Ampeln" - } - }, - "render": "Kreuzung" - } - }, - "cycleways_and_roads": { - "name": "Radwege und Straßen", - "tagRenderings": { - "Cycleway type for a road": { - "mappings": { - "0": { - "then": "Es gibt eine geteilte Fahrspur" - }, - "1": { - "then": "Es gibt eine Spur neben der Straße (getrennt durch eine Straßenmarkierung)" - }, - "2": { - "then": "Es gibt einen Weg, aber keinen Radweg, der auf der Karte getrennt von dieser Straße eingezeichnet ist." - }, - "3": { - "then": "Hier ist ein getrennter Radweg vorhanden" - }, - "4": { - "then": "Es gibt keinen Radweg" - }, - "5": { - "then": "Es gibt keinen Radweg" - } - }, - "question": "Was für ein Radweg ist hier?" - }, - "Cycleway:smoothness": { - "mappings": { - "0": { - "then": "Geeignet für dünne Rollen: Rollerblades, Skateboard" - }, - "1": { - "then": "Geeignet für dünne Reifen: Rennrad" - }, - "2": { - "then": "Geeignet für normale Reifen: Fahrrad, Rollstuhl, Scooter" - }, - "3": { - "then": "Geeignet für breite Reifen: Trekkingfahrrad, Auto, Rikscha" - }, - "4": { - "then": "Geeignet für Fahrzeuge mit großer Bodenfreiheit: leichte Geländewagen" - }, - "5": { - "then": "Geeignet für Geländefahrzeuge: schwerer Geländewagen" - }, - "6": { - "then": "Geeignet für Geländefahrzeuge: Traktor, ATV" - }, - "7": { - "then": "Unpassierbar / Keine bereiften Fahrzeuge" - } - }, - "question": "Wie eben ist dieser Radweg?" - }, - "Cycleway:surface": { - "mappings": { - "0": { - "then": "Dieser Radweg hat keinen festen Belag" - }, - "1": { - "then": "Dieser Radweg hat einen festen Belag" - }, - "2": { - "then": "Der Radweg ist aus Asphalt" - }, - "3": { - "then": "Dieser Fahrradweg besteht aus ebenen Pflastersteinen" - }, - "4": { - "then": "Der Radweg ist aus Beton" - }, - "5": { - "then": "Dieser Radweg besteht aus Kopfsteinpflaster" - }, - "6": { - "then": "Dieser Fahrradweg besteht aus unregelmäßigem, unbehauenem Kopfsteinpflaster" - }, - "7": { - "then": "Dieser Fahrradweg besteht aus regelmäßigem, behauenem Kopfsteinpflaster" - }, - "8": { - "then": "Der Radweg ist aus Holz" - }, - "9": { - "then": "Der Radweg ist aus Schotter" - }, - "10": { - "then": "Dieser Radweg besteht aus feinem Schotter" - }, - "11": { - "then": "Der Radweg ist aus Kies" - }, - "12": { - "then": "Dieser Radweg besteht aus Rohboden" - } - }, - "question": "Was ist der Belag dieses Radwegs?", - "render": "Der Radweg ist aus {cycleway:surface}" - }, - "Is this a cyclestreet? (For a road)": { - "mappings": { - "0": { - "then": "Dies ist eine Fahrradstraße in einer 30km/h Zone." - }, - "1": { - "then": "Dies ist eine Fahrradstraße" - }, - "2": { - "then": "Dies ist keine Fahrradstraße." - } - }, - "question": "Ist das eine Fahrradstraße?" - }, - "Maxspeed (for road)": { - "mappings": { - "0": { - "then": "Die Höchstgeschwindigkeit ist 20 km/h" - }, - "1": { - "then": "Die Höchstgeschwindigkeit ist 30 km/h" - }, - "2": { - "then": "Die Höchstgeschwindigkeit ist 50 km/h" - }, - "3": { - "then": "Die Höchstgeschwindigkeit ist 70 km/h" - }, - "4": { - "then": "Die Höchstgeschwindigkeit ist 90 km/h" - } - }, - "question": "Was ist die Höchstgeschwindigkeit auf dieser Straße?", - "render": "Die Höchstgeschwindigkeit auf dieser Straße beträgt {maxspeed} km/h" - }, - "Surface of the road": { - "mappings": { - "0": { - "then": "Dieser Radweg ist nicht befestigt" - }, - "1": { - "then": "Dieser Radweg hat einen festen Belag" - }, - "2": { - "then": "Der Radweg ist aus Asphalt" - }, - "3": { - "then": "Dieser Fahrradweg besteht aus ebenen Pflastersteinen" - }, - "4": { - "then": "Der Radweg ist aus Beton" - }, - "5": { - "then": "Dieser Radweg besteht aus Kopfsteinpflaster" - }, - "6": { - "then": "Dieser Fahrradweg besteht aus unregelmäßigem, unbehauenem Kopfsteinpflaster" - }, - "7": { - "then": "Dieser Fahrradweg besteht aus regelmäßigem, behauenem Kopfsteinpflaster" - }, - "8": { - "then": "Der Radweg ist aus Holz" - }, - "9": { - "then": "Der Radweg ist aus Schotter" - }, - "10": { - "then": "Dieser Radweg besteht aus feinem Schotter" - }, - "11": { - "then": "Der Radweg ist aus Kies" - }, - "12": { - "then": "Dieser Radweg besteht aus Rohboden" - } - }, - "question": "Was ist der Belag dieser Straße?", - "render": "Der Radweg ist aus {surface}" - }, - "Surface of the street": { - "mappings": { - "0": { - "then": "Geeignet für dünne Rollen: Rollerblades, Skateboard" - }, - "1": { - "then": "Geeignet für dünne Reifen: Rennrad" - }, - "2": { - "then": "Geeignet für normale Reifen: Fahrrad, Rollstuhl, Scooter" - }, - "3": { - "then": "Geeignet für breite Reifen: Trekkingfahrrad, Auto, Rikscha" - }, - "4": { - "then": "Geeignet für Fahrzeuge mit großer Bodenfreiheit: leichte Geländewagen" - }, - "5": { - "then": "Geeignet für Geländefahrzeuge: schwerer Geländewagen" - }, - "6": { - "then": "Geeignet für spezielle Geländewagen: Traktor, ATV" - }, - "7": { - "then": "Unpassierbar / Keine bereiften Fahrzeuge" - } - }, - "question": "Wie eben ist diese Straße?" - }, - "cyclelan-segregation": { - "mappings": { - "0": { - "then": "Der Radweg ist abgegrenzt durch eine gestrichelte Linie" - }, - "1": { - "then": "Der Radweg ist abgegrenzt durch eine durchgezogene Linie" - }, - "2": { - "then": "Der Radweg ist abgegrenzt durch eine Parkspur" - }, - "3": { - "then": "Dieser Radweg ist getrennt durch einen Bordstein" - } - }, - "question": "Wie ist der Radweg von der Straße abgegrenzt?" - }, - "cycleway-lane-track-traffic-signs": { - "mappings": { - "0": { - "then": "Vorgeschriebener Radweg " - }, - "1": { - "then": "Vorgeschriebener Radweg (mit Zusatzschild)
" - }, - "2": { - "then": "Getrennter Fuß-/Radweg " - }, - "3": { - "then": "Gemeinsamer Fuß-/Radweg " - }, - "4": { - "then": "Kein Verkehrsschild vorhanden" - } - }, - "question": "Welches Verkehrszeichen hat dieser Radweg?" - }, - "cycleway-segregation": { - "mappings": { - "0": { - "then": "Der Radweg ist abgegrenzt durch eine gestrichelte Linie" - }, - "1": { - "then": "Der Radweg ist abgegrenzt durch eine durchgezogene Linie" - }, - "2": { - "then": "Der Radweg ist abgegrenzt durch eine Parkspur" - }, - "3": { - "then": "Dieser Radweg ist getrennt durch einen Bordstein" - } - }, - "question": "Wie ist der Radweg von der Straße abgegrenzt?" - }, - "cycleway-traffic-signs": { - "mappings": { - "0": { - "then": "Vorgeschriebener Radweg " - }, - "1": { - "then": "Vorgeschriebener Radweg (mit Zusatzschild)
" - }, - "2": { - "then": "Getrennter Fuß-/Radweg " - }, - "3": { - "then": "Gemeinsamer Fuß-/Radweg " - }, - "4": { - "then": "Kein Verkehrsschild vorhanden" - } - }, - "question": "Welches Verkehrszeichen hat dieser Radweg?" - }, - "cycleway-traffic-signs-D7-supplementary": { - "mappings": { - "1": { - "then": "" - }, - "6": { - "then": "Kein zusätzliches Verkehrszeichen vorhanden" - } - }, - "question": "Hat das Verkehrszeichen D7 () ein Zusatzzeichen?" - }, - "cycleway-traffic-signs-supplementary": { - "mappings": { - "6": { - "then": "Kein zusätzliches Verkehrszeichen vorhanden" - } - }, - "question": "Hat das Verkehrszeichen D7 () ein Zusatzzeichen?" - }, - "cycleways_and_roads-cycleway:buffer": { - "question": "Wie breit ist der Abstand zwischen Radweg und Straße?", - "render": "Der Sicherheitsabstand zu diesem Radweg beträgt {cycleway:buffer} m" - }, - "is lit?": { - "mappings": { - "0": { - "then": "Diese Straße ist beleuchtet" - }, - "1": { - "then": "Diese Straße ist nicht beleuchtet" - }, - "2": { - "then": "Diese Straße ist nachts beleuchtet" - }, - "3": { - "then": "Diese Straße ist durchgehend beleuchtet" - } - }, - "question": "Ist diese Straße beleuchtet?" - }, - "width:carriageway": { - "question": "Wie groß ist die Fahrbahnbreite dieser Straße (in Metern)?
Diese wird von Bordstein zu Bordstein gemessen und schließt daher die Breite von parallelen Parkspuren ein", - "render": "Die Fahrbahnbreite dieser Straße beträgt {width:carriageway}m" - } - }, - "title": { - "mappings": { - "0": { - "then": "Radweg" - }, - "1": { - "then": "Gemeinsame Fahrspur" - }, - "2": { - "then": "Fahrradspur" - }, - "3": { - "then": "Radweg neben der Straße" - }, - "4": { - "then": "Fahrradstraße" - } - }, - "render": "Radwege" - } - }, - "defibrillator": { - "name": "Defibrillatoren", - "presets": { - "0": { - "title": "Defibrillator" - } - }, - "tagRenderings": { - "defibrillator-access": { - "mappings": { - "0": { - "then": "Öffentlich zugänglich" - }, - "1": { - "then": "Öffentlich zugänglich" - }, - "2": { - "then": "Nur für Kunden zugänglich" - }, - "3": { - "then": "Nicht für die Öffentlichkeit zugänglich (z.B. nur für das Personal, die Eigentümer, ...)" - }, - "4": { - "then": "Nicht zugänglich, möglicherweise nur für betriebliche Nutzung" - } - }, - "question": "Ist dieser Defibrillator frei zugänglich?", - "render": "Zugang ist {access}" - }, - "defibrillator-defibrillator": { - "mappings": { - "0": { - "then": "Es gibt keine Informationen über den Gerätetyp" - }, - "1": { - "then": "Dies ist ein manueller Defibrillator für den professionellen Einsatz" - }, - "2": { - "then": "Dies ist ein normaler automatischer Defibrillator" - } - }, - "question": "Ist dies ein normaler automatischer Defibrillator oder ein manueller Defibrillator nur für Profis?" - }, - "defibrillator-defibrillator:location": { - "question": "Bitte geben Sie einige Erläuterungen dazu, wo der Defibrillator zu finden ist (in der lokalen Sprache)", - "render": "Zusätzliche Informationen über den Standort (in der Landessprache):
{defibrillator:location}" - }, - "defibrillator-defibrillator:location:en": { - "question": "Bitte geben Sie einige Erläuterungen dazu, wo der Defibrillator zu finden ist (auf Englisch)", - "render": "Zusätzliche Informationen über den Standort (auf Englisch):
{defibrillator:location:en}" - }, - "defibrillator-defibrillator:location:fr": { - "question": "Bitte geben Sie einige Erläuterungen dazu, wo der Defibrillator zu finden ist (auf Französisch)", - "render": "Zusätzliche Informationen zum Standort (auf Französisch):
{defibrillator:location:fr}" - }, - "defibrillator-description": { - "question": "Gibt es nützliche Informationen für Benutzer, die Sie oben nicht beschreiben konnten? (leer lassen, wenn nein)", - "render": "Zusätzliche Informationen: {description}" - }, - "defibrillator-email": { - "question": "Wie lautet die E-Mail für Fragen zu diesem Defibrillator?", - "render": "E-Mail für Fragen zu diesem Defibrillator: {email}" - }, - "defibrillator-fixme": { - "question": "Gibt es einen Fehler in der Kartierung, den Sie hier nicht beheben konnten? (hinterlasse eine Notiz an OpenStreetMap-Experten)", - "render": "Zusätzliche Informationen für OpenStreetMap-Experten: {fixme}" - }, - "defibrillator-indoors": { - "mappings": { - "0": { - "then": "Dieser Defibrillator befindet sich im Gebäude" - }, - "1": { - "then": "Dieser Defibrillator befindet sich im Freien" - } - }, - "question": "Befindet sich dieser Defibrillator im Gebäude?" - }, - "defibrillator-level": { - "mappings": { - "0": { - "then": "Dieser Defibrillator befindet sich im Erdgeschoss" - }, - "1": { - "then": "Dieser Defibrillator befindet sich in der ersten Etage" - } - }, - "question": "In welchem Stockwerk befindet sich dieser Defibrillator?", - "render": "Dieser Defibrallator befindet sich im {level}. Stockwerk" - }, - "defibrillator-opening_hours": { - "mappings": { - "0": { - "then": "24/7 geöffnet (auch an Feiertagen)" - } - }, - "question": "Zu welchen Zeiten ist dieser Defibrillator verfügbar?", - "render": "{opening_hours_table(opening_hours)}" - }, - "defibrillator-phone": { - "question": "Wie lautet die Telefonnummer für Fragen zu diesem Defibrillator?", - "render": "Telefonnummer für Fragen zu diesem Defibrillator: {phone}" - }, - "defibrillator-ref": { - "question": "Wie lautet die offizielle Identifikationsnummer des Geräts? (falls am Gerät sichtbar)", - "render": "Offizielle Identifikationsnummer des Geräts: {ref}" - }, - "defibrillator-survey:date": { - "mappings": { - "0": { - "then": "Heute überprüft!" - } - }, - "question": "Wann wurde dieser Defibrillator zuletzt überprüft?", - "render": "Dieser Defibrillator wurde zuletzt am {survey:date} überprüft" - } - }, - "title": { - "render": "Defibrillator" - } - }, - "direction": { - "description": "Diese Ebene visualisiert Richtungen", - "name": "Visualisierung der Richtung" - }, - "drinking_water": { - "name": "Trinkwasserstelle", - "presets": { - "0": { - "title": "trinkwasser" - } - }, - "tagRenderings": { - "Bottle refill": { - "mappings": { - "0": { - "then": "Es ist einfach, Wasserflaschen nachzufüllen" - }, - "1": { - "then": "Wasserflaschen passen möglicherweise nicht" - } - }, - "question": "Wie einfach ist es, Wasserflaschen zu füllen?" - }, - "Still in use?": { - "mappings": { - "0": { - "then": "Diese Trinkwasserstelle funktioniert" - }, - "1": { - "then": "Diese Trinkwasserstelle ist kaputt" - }, - "2": { - "then": "Diese Trinkwasserstelle wurde geschlossen" - } - }, - "question": "Ist diese Trinkwasserstelle noch in Betrieb?", - "render": "Der Betriebsstatus ist {operational_status}/i>" - }, - "render-closest-drinking-water": { - "render": "Ein weiterer Trinkwasserbrunnen befindet sich in {_closest_other_drinking_water_distance} Meter" - } - }, - "title": { - "render": "Trinkwasserstelle" - } - }, - "etymology": { - "description": "Alle Objekte, die eine bekannte Namensherkunft haben", - "name": "Hat eine Namensherkunft", - "tagRenderings": { - "simple etymology": { - "mappings": { - "0": { - "then": "Der Ursprung dieses Namens ist in der gesamten Literatur unbekannt" - } - }, - "question": "Wonach ist dieses Objekt benannt?
Das könnte auf einem Straßenschild stehen", - "render": "Benannt nach {name:etymology}" - }, - "wikipedia-etymology": { - "question": "Was ist das Wikidata-Element, nach dem dieses Objekt benannt ist?", - "render": "

Wikipedia Artikel zur Namensherkunft

{wikipedia(name:etymology:wikidata):max-height:20rem}" - } - } - }, - "food": { - "filter": { - "0": { - "options": { - "0": { - "question": "Aktuell geöffnet" - } - } - }, - "1": { - "options": { - "0": { - "question": "Hat vegetarische Speisen" - } - } - }, - "2": { - "options": { - "0": { - "question": "Bietet vegan Speisen an" - } - } - }, - "3": { - "options": { - "0": { - "question": "Hat halal Speisen" - } - } - } - }, - "name": "Restaurants und Fast Food", - "presets": { - "0": { - "description": "Ein klassisches Speiselokal mit Sitzgelegenheiten, in dem vollständige Mahlzeiten von Kellnern serviert werden", - "title": "Restaurant" - }, - "1": { - "description": "Ein Lebensmittelunternehmen, das sich auf schnellen Thekendienst und Essen zum Mitnehmen konzentriert", - "title": "Schnellimbiss" - }, - "2": { - "title": "Pommesbude" - } - }, - "tagRenderings": { - "Cuisine": { - "mappings": { - "0": { - "then": "Dies ist eine Pizzeria" - }, - "1": { - "then": "Dies ist eine Pommesbude" - }, - "2": { - "then": "Bietet vorwiegend Pastagerichte an" - } - }, - "question": "Welches Essen gibt es hier?", - "render": "An diesem Ort gibt es hauptsächlich {cuisine}" - }, - "Fastfood vs restaurant": { - "question": "Um was für ein Geschäft handelt es sich?" - }, - "Name": { - "question": "Wie heißt dieses Restaurant?", - "render": "Das Restaurant heißt {name}" - }, - "Takeaway": { - "mappings": { - "0": { - "then": "Dieses Geschäft bietet nur Artikel zur Mitnahme an" - }, - "1": { - "then": "Mitnahme möglich" - }, - "2": { - "then": "Mitnahme nicht möglich" - } - }, - "question": "Ist an diesem Ort Mitnahme möglich?" - }, - "Vegetarian (no friture)": { - "question": "Gibt es im das Restaurant vegetarische Speisen?" - }, - "friture-take-your-container": { - "mappings": { - "0": { - "then": "Sie können ihre eigenen Behälter mitbringen, um Ihre Bestellung zu erhalten, was Einwegverpackungsmaterial und damit Abfall spart" - }, - "1": { - "then": "Das Mitbringen eines eigenen Containers ist nicht erlaubt" - }, - "2": { - "then": "Sie müssen Ihren eigenen Behälter mitbringen, um hier zu bestellen." - } - }, - "question": "Wenn Sie Ihr eigenes Behältnis mitbringen (z. B. einen Kochtopf und kleine Töpfe), wird es dann zum Verpacken Ihrer Bestellung verwendet?
" - }, - "halal (no friture)": { - "mappings": { - "0": { - "then": "Hier gibt es keine halal Speisen" - }, - "1": { - "then": "Hier gibt es wenige halal Speisen" - }, - "2": { - "then": "Es gibt halal Speisen" - }, - "3": { - "then": "Es gibt ausschließlich halal Speisen" - } - }, - "question": "Gibt es im das Restaurant halal Speisen?" - } - }, - "title": { - "mappings": { - "0": { - "then": "Restaurant {name}" - }, - "1": { - "then": "Schnellrestaurant{name}" - } - } - } - }, - "ghost_bike": { - "name": "Geisterräder", - "presets": { - "0": { - "title": "Geisterrad" - } - }, - "tagRenderings": { - "ghost-bike-explanation": { - "render": "Ein Geisterrad ist ein Denkmal für einen Radfahrer, der bei einem Verkehrsunfall ums Leben kam, in Form eines weißen Fahrrades, das dauerhaft in der Nähe des Unfallortes aufgestellt wird." - }, - "ghost_bike-inscription": { - "question": "Wie lautet die Inschrift auf diesem Geisterrad?", - "render": "{inscription}" - }, - "ghost_bike-name": { - "mappings": { - "0": { - "then": "Auf dem Fahrrad ist kein Name angegeben" - } - }, - "question": "An wen erinnert dieses Geisterrad?
Bitte respektieren Sie die Privatsphäre - geben Sie den Namen nur an, wenn er weit verbreitet oder auf dem Fahrrad markiert ist. Den Familiennamen können Sie weglassen.
", - "render": "Im Gedenken an {name}" - }, - "ghost_bike-source": { - "question": "Auf welcher Webseite kann man mehr Informationen über das Geisterrad oder den Unfall finden?", - "render": "Mehr Informationen" - }, - "ghost_bike-start_date": { - "question": "Wann wurde dieses Geisterrad aufgestellt?", - "render": "Aufgestellt am {start_date}" - } - }, - "title": { - "mappings": { - "0": { - "then": "Geisterrad im Gedenken an {name}" - } - }, - "render": "Geisterrad" - } - }, - "information_board": { - "name": "Informationstafeln", - "presets": { - "0": { - "title": "informationstafel" - } - }, - "title": { - "render": "Informationstafel" - } - }, - "map": { - "description": "Eine Karte, die für Touristen gedacht ist und dauerhaft im öffentlichen Raum aufgestellt ist", - "name": "Karten", - "presets": { - "0": { - "description": "Fehlende Karte hinzufügen", - "title": "Karte" - } - }, - "tagRenderings": { - "map-attribution": { - "mappings": { - "0": { - "then": "OpenStreetMap ist eindeutig attributiert, einschließlich der ODBL-Lizenz" - }, - "1": { - "then": "OpenStreetMap ist eindeutig attributiert, aber die Lizenz wird nicht erwähnt" - }, - "2": { - "then": "OpenStreetMap wurde nicht erwähnt, aber jemand hat einen OpenStreetMap-Aufkleber darauf geklebt" - }, - "3": { - "then": "Es gibt überhaupt keine Namensnennung" - }, - "4": { - "then": "Es gibt überhaupt keine Namensnennung" - } - }, - "question": "Ist die OpenStreetMap-Attribution vorhanden?" - }, - "map-map_source": { - "mappings": { - "0": { - "then": "Diese Karte basiert auf OpenStreetMap" - } - }, - "question": "Auf welchen Daten basiert diese Karte?", - "render": "Diese Karte basiert auf {map_source}" - } - }, - "title": { - "render": "Karte" - } - }, - "nature_reserve": { - "tagRenderings": { - "Curator": { - "question": "Wer ist der Verwalter dieses Naturschutzgebietes?
Respektieren Sie die Privatsphäre - geben Sie nur dann einen Namen an, wenn dieser allgemein bekannt ist", - "render": "{curator} ist der Pfleger dieses Naturschutzgebietes" - }, - "Dogs?": { - "mappings": { - "0": { - "then": "Hunde müssen angeleint sein" - }, - "1": { - "then": "Hunde sind nicht erlaubt" - }, - "2": { - "then": "Hunde dürfen frei herumlaufen" - } - }, - "question": "Sind Hunde in diesem Naturschutzgebiet erlaubt?" - }, - "Email": { - "question": "An welche Email-Adresse kann man sich bei Fragen und Problemen zu diesem Naturschutzgebiet wenden?
Respektieren Sie die Privatsphäre - geben Sie nur dann eine persönliche Email-Adresse an, wenn diese allgemein bekannt ist", - "render": "{email}" - }, - "Surface area": { - "render": "Grundfläche: {_surface:ha}ha" - }, - "Website": { - "question": "Auf welcher Webseite kann man mehr Informationen über dieses Naturschutzgebiet finden?" - }, - "phone": { - "question": "Welche Telefonnummer kann man bei Fragen und Problemen zu diesem Naturschutzgebiet anrufen?
Respektieren Sie die Privatsphäre - geben Sie nur eine Telefonnummer an, wenn diese allgemein bekannt ist", - "render": "{phone}" - } - } - }, - "observation_tower": { - "description": "Türme zur Aussicht auf die umgebende Landschaft", - "name": "Aussichtstürme", - "presets": { - "0": { - "title": "Beobachtungsturm" - } - }, - "tagRenderings": { - "Fee": { - "mappings": { - "0": { - "then": "Eintritt kostenlos" - } - }, - "question": "Was kostet der Zugang zu diesem Turm?", - "render": "Der Besuch des Turms kostet {charge}" - }, - "Height": { - "question": "Wie hoch ist dieser Turm?", - "render": "Dieser Turm ist {height} hoch" - }, - "Operator": { - "question": "Wer betreibt diesen Turm?", - "render": "Betrieben von {operator}" - }, - "name": { - "mappings": { - "0": { - "then": "Dieser Turm hat keinen eigenen Namen" - } - }, - "question": "Wie heißt dieser Turm?", - "render": "Der Name dieses Turms lautet {name}" - } - }, - "title": { - "mappings": { - "0": { - "then": "{name}" - } - }, - "render": "Beobachtungsturm" - }, - "units": { - "0": { - "applicableUnits": { - "0": { - "human": " Meter" - } - } - } - } - }, - "picnic_table": { - "description": "Die Ebene zeigt Picknicktische an", - "name": "Picknick-Tische", - "presets": { - "0": { - "title": "picknicktisch" - } - }, - "tagRenderings": { - "picnic_table-material": { - "mappings": { - "0": { - "then": "Dies ist ein Picknicktisch aus Holz" - }, - "1": { - "then": "Dies ist ein Picknicktisch aus Beton" - } - }, - "question": "Aus welchem Material besteht dieser Picknicktisch?", - "render": "Dieser Picknicktisch besteht aus {material}" - } - }, - "title": { - "render": "Picknick-Tisch" - } - }, - "playground": { - "description": "Spielplätze", - "name": "Spielplätze", - "presets": { - "0": { - "title": "Spielplatz" - } - }, - "tagRenderings": { - "Playground-wheelchair": { - "mappings": { - "0": { - "then": "Vollständig zugänglich für Rollstuhlfahrer" - }, - "1": { - "then": "Eingeschränkte Zugänglichkeit für Rollstuhlfahrer" - }, - "2": { - "then": "Nicht zugänglich für Rollstuhlfahrer" - } - }, - "question": "Ist dieser Spielplatz für Rollstuhlfahrer zugänglich?" - }, - "playground-access": { - "mappings": { - "0": { - "then": "Zugänglich für die Allgemeinheit" - }, - "1": { - "then": "Zugänglich für die Allgemeinheit" - }, - "2": { - "then": "Nur für Kunden des Betreibers zugänglich" - }, - "3": { - "then": "Nur für Schüler der Schule zugänglich" - }, - "4": { - "then": "Nicht zugänglich" - } - }, - "question": "Ist dieser Spielplatz für die Allgemeinheit zugänglich?" - }, - "playground-email": { - "question": "Wie lautet die E-Mail Adresse des Spielplatzbetreuers?", - "render": "{email}" - }, - "playground-lit": { - "mappings": { - "0": { - "then": "Dieser Spielplatz ist nachts beleuchtet" - }, - "1": { - "then": "Dieser Spielplatz ist nachts nicht beleuchtet" - } - }, - "question": "Ist dieser Spielplatz nachts beleuchtet?" - }, - "playground-max_age": { - "question": "Bis zu welchem Alter dürfen Kinder auf diesem Spielplatz spielen?", - "render": "Zugang nur für Kinder bis maximal {max_age}" - }, - "playground-min_age": { - "question": "Ab welchem Alter dürfen Kinder auf diesem Spielplatz spielen?", - "render": "Zugang nur für Kinder ab {min_age} Jahren" - }, - "playground-opening_hours": { - "mappings": { - "0": { - "then": "Zugänglich von Sonnenaufgang bis Sonnenuntergang" - }, - "1": { - "then": "Immer zugänglich" - }, - "2": { - "then": "Immer zugänglich" - } - }, - "question": "Wann ist dieser Spielplatz zugänglich?" - }, - "playground-operator": { - "question": "Wer betreibt diesen Spielplatz?", - "render": "Betrieben von {operator}" - }, - "playground-phone": { - "question": "Wie lautet die Telefonnummer vom Betreiber des Spielplatzes?", - "render": "{phone}" - }, - "playground-surface": { - "mappings": { - "0": { - "then": "Die Oberfläche ist Gras" - }, - "1": { - "then": "Die Oberfläche ist Sand" - }, - "2": { - "then": "Die Oberfläche besteht aus Holzschnitzeln" - }, - "3": { - "then": "Die Oberfläche ist Pflastersteine" - }, - "4": { - "then": "Die Oberfläche ist Asphalt" - }, - "5": { - "then": "Die Oberfläche ist Beton" - }, - "6": { - "then": "Die Oberfläche ist unbefestigt" - }, - "7": { - "then": "Die Oberfläche ist befestigt" - } - }, - "question": "Welche Oberfläche hat dieser Spielplatz?
Wenn es mehrere gibt, wähle die am häufigsten vorkommende aus", - "render": "Die Oberfläche ist {surface}" - } - }, - "title": { - "mappings": { - "0": { - "then": "Spielplatz {name}" - } - }, - "render": "Spielplatz" - } - }, - "public_bookcase": { - "description": "Ein Bücherschrank am Straßenrand mit Büchern, für jedermann zugänglich", - "filter": { - "2": { - "options": { - "0": { - "question": "Innen oder Außen" - } - } - } - }, - "name": "Bücherschränke", - "presets": { - "0": { - "title": "Bücherschrank" - } - }, - "tagRenderings": { - "bookcase-booktypes": { - "mappings": { - "0": { - "then": "Vorwiegend Kinderbücher" - }, - "1": { - "then": "Vorwiegend Bücher für Erwachsene" - }, - "2": { - "then": "Sowohl Bücher für Kinder als auch für Erwachsene" - } - }, - "question": "Welche Art von Büchern sind in diesem öffentlichen Bücherschrank zu finden?" - }, - "bookcase-is-accessible": { - "mappings": { - "0": { - "then": "Öffentlich zugänglich" - }, - "1": { - "then": "Nur für Kunden zugänglich" - } - }, - "question": "Ist dieser öffentliche Bücherschrank frei zugänglich?" - }, - "bookcase-is-indoors": { - "mappings": { - "0": { - "then": "Dieser Bücherschrank befindet sich im Innenbereich" - }, - "1": { - "then": "Dieser Bücherschrank befindet sich im Freien" - }, - "2": { - "then": "Dieser Bücherschrank befindet sich im Freien" - } - }, - "question": "Befindet sich dieser Bücherschrank im Freien?" - }, - "public_bookcase-brand": { - "mappings": { - "0": { - "then": "Teil des Netzwerks 'Little Free Library'" - }, - "1": { - "then": "Dieser öffentliche Bücherschrank ist nicht Teil eines größeren Netzwerks" - } - }, - "question": "Ist dieser öffentliche Bücherschrank Teil eines größeren Netzwerks?", - "render": "Dieser Bücherschrank ist Teil von {brand}" - }, - "public_bookcase-capacity": { - "question": "Wie viele Bücher passen in diesen öffentlichen Bücherschrank?", - "render": "{capacity} Bücher passen in diesen Bücherschrank" - }, - "public_bookcase-name": { - "mappings": { - "0": { - "then": "Dieser Bücherschrank hat keinen Namen" - } - }, - "question": "Wie heißt dieser öffentliche Bücherschrank?", - "render": "Der Name dieses Bücherschrank lautet {name}" - }, - "public_bookcase-operator": { - "question": "Wer unterhält diesen öffentlichen Bücherschrank?", - "render": "Betrieben von {operator}" - }, - "public_bookcase-ref": { - "mappings": { - "0": { - "then": "Dieser Bücherschrank ist nicht Teil eines größeren Netzwerks" - } - }, - "question": "Wie lautet die Referenznummer dieses öffentlichen Bücherschranks?", - "render": "Die Referenznummer dieses öffentlichen Bücherschranks innerhalb {brand} lautet {ref}" - }, - "public_bookcase-start_date": { - "question": "Wann wurde dieser öffentliche Bücherschrank installiert?", - "render": "Installiert am {start_date}" - }, - "public_bookcase-website": { - "question": "Gibt es eine Website mit weiteren Informationen über diesen öffentlichen Bücherschrank?", - "render": "Weitere Informationen auf der Webseite" - } - }, - "title": { - "mappings": { - "0": { - "then": "Öffentlicher Bücherschrank {name}" - } - }, - "render": "Bücherschrank" - } - }, - "shops": { - "description": "Ein Geschäft", - "name": "Geschäft", - "presets": { - "0": { - "description": "Ein neues Geschäft hinzufügen", - "title": "Geschäft" - } - }, - "tagRenderings": { - "shops-email": { - "question": "Wie ist die Email-Adresse dieses Geschäfts?" - }, - "shops-name": { - "question": "Wie ist der Name dieses Geschäfts?" - }, - "shops-opening_hours": { - "question": "Wie sind die Öffnungszeiten dieses Geschäfts?" - }, - "shops-phone": { - "question": "Wie ist die Telefonnummer?", - "render": "{phone}" - }, - "shops-shop": { - "mappings": { - "0": { - "then": "Lebensmittelladen" - }, - "1": { - "then": "Supermarkt" - }, - "2": { - "then": "Bekleidungsgeschäft" - }, - "3": { - "then": "Friseur" - }, - "4": { - "then": "Bäckerei" - }, - "5": { - "then": "Autowerkstatt" - }, - "6": { - "then": "Autohändler" - } - }, - "question": "Was wird in diesem Geschäft verkauft?", - "render": "Dieses Geschäft verkauft {shop}" - }, - "shops-website": { - "question": "Wie lautet die Webseite dieses Geschäfts?", - "render": "{website}" - } - }, - "title": { - "mappings": { - "0": { - "then": "{name}" - }, - "1": { - "then": "{shop}" - } - }, - "render": "Geschäft" - } - }, - "slow_roads": { - "tagRenderings": { - "slow_roads-surface": { - "mappings": { - "0": { - "then": "Die Oberfläche ist Gras" - }, - "1": { - "then": "Die Oberfläche ist Erde" - }, - "2": { - "then": "Die Oberfläche ist ohne festen Belag" - }, - "3": { - "then": "Die Oberfläche ist Sand" - }, - "4": { - "then": "Die Oberfläche ist aus Pflastersteinen" - }, - "5": { - "then": "Die Oberfläche ist Asphalt" - }, - "6": { - "then": "Die Oberfläche ist Beton" - }, - "7": { - "then": "Die Oberfläche ist gepflastert" - } - }, - "render": "Die Oberfläche ist {surface}" - } - } - }, - "sport_pitch": { - "description": "Ein Sportplatz", - "name": "Sportplätze", - "presets": { - "0": { - "title": "Tischtennisplatte" - }, - "1": { - "title": "Sportplatz" - } - }, - "tagRenderings": { - "sport-pitch-access": { - "mappings": { - "0": { - "then": "Öffentlicher Zugang" - }, - "1": { - "then": "Eingeschränkter Zugang (z. B. nur mit Termin, zu bestimmten Zeiten, ...)" - }, - "2": { - "then": "Zugang nur für Vereinsmitglieder" - }, - "3": { - "then": "Privat - kein öffentlicher Zugang" - } - }, - "question": "Ist dieser Sportplatz öffentlich zugänglich?" - }, - "sport-pitch-reservation": { - "mappings": { - "0": { - "then": "Für die Nutzung des Sportplatzes ist eine Voranmeldung erforderlich" - }, - "1": { - "then": "Für die Nutzung des Sportplatzes wird eine Voranmeldung empfohlen" - }, - "2": { - "then": "Eine Voranmeldung ist möglich, aber nicht notwendig, um diesen Sportplatz zu nutzen" - }, - "3": { - "then": "Termine nach Vereinbarung nicht möglich" - } - }, - "question": "Muss man einen Termin vereinbaren, um diesen Sportplatz zu benutzen?" - }, - "sport_pitch-email": { - "question": "Wie ist die Email-Adresse des Betreibers?" - }, - "sport_pitch-opening_hours": { - "mappings": { - "1": { - "then": "Immer zugänglich" - } - }, - "question": "Wann ist dieser Sportplatz zugänglich?" - }, - "sport_pitch-phone": { - "question": "Wie ist die Telefonnummer des Betreibers?" - }, - "sport_pitch-sport": { - "mappings": { - "0": { - "then": "Hier wird Basketball gespielt" - }, - "1": { - "then": "Hier wird Fußball gespielt" - }, - "2": { - "then": "Dies ist eine Tischtennisplatte" - }, - "3": { - "then": "Hier wird Tennis gespielt" - }, - "4": { - "then": "Hier wird Kopfball gespielt" - }, - "5": { - "then": "Hier wird Basketball gespielt" - } - }, - "question": "Welche Sportarten können hier gespielt werden?", - "render": "Hier wird {sport} gespielt" - }, - "sport_pitch-surface": { - "mappings": { - "0": { - "then": "Die Oberfläche ist Gras" - }, - "1": { - "then": "Die Oberfläche ist Sand" - }, - "2": { - "then": "Die Oberfläche ist aus Pflastersteinen" - }, - "3": { - "then": "Die Oberfläche ist Asphalt" - }, - "4": { - "then": "Die Oberfläche ist Beton" - } - }, - "question": "Was ist die Oberfläche dieses Sportplatzes?", - "render": "Die Oberfläche ist {surface}" - } - }, - "title": { - "render": "Sportplatz" - } - }, - "surveillance_camera": { - "name": "Überwachungskameras", - "tagRenderings": { - "Camera type: fixed; panning; dome": { - "mappings": { - "0": { - "then": "Eine fest montierte (nicht bewegliche) Kamera" - }, - "1": { - "then": "Eine Kuppelkamera (drehbar)" - }, - "2": { - "then": "Eine bewegliche Kamera" - } - }, - "question": "Um welche Kameratyp handelt se sich?" - }, - "Level": { - "question": "Auf welcher Ebene befindet sich diese Kamera?", - "render": "Befindet sich auf Ebene {level}" - }, - "Operator": { - "question": "Wer betreibt diese CCTV Kamera?", - "render": "Betrieben von {operator}" - }, - "Surveillance type: public, outdoor, indoor": { - "mappings": { - "0": { - "then": "Überwacht wird ein öffentlicher Bereich, z. B. eine Straße, eine Brücke, ein Platz, ein Park, ein Bahnhof, ein öffentlicher Korridor oder Tunnel,..." - }, - "1": { - "then": "Ein privater Außenbereich wird überwacht (z. B. ein Parkplatz, eine Tankstelle, ein Innenhof, ein Eingang, eine private Einfahrt, ...)" - }, - "2": { - "then": "Ein privater Innenbereich wird überwacht, z. B. ein Geschäft, eine private Tiefgarage, ..." - } - }, - "question": "Um was für eine Überwachungskamera handelt es sich" - }, - "Surveillance:zone": { - "mappings": { - "0": { - "then": "Überwacht einen Parkplatz" - }, - "1": { - "then": "Überwacht den Verkehr" - }, - "2": { - "then": "Überwacht einen Eingang" - }, - "3": { - "then": "Überwacht einen Gang" - }, - "4": { - "then": "Überwacht eine Haltestelle" - }, - "5": { - "then": "Überwacht ein Geschäft" - } - }, - "question": "Was genau wird hier überwacht?", - "render": " Überwacht ein/e {surveillance:zone}" - }, - "camera:mount": { - "mappings": { - "0": { - "then": "Diese Kamera ist an einer Wand montiert" - }, - "1": { - "then": "Diese Kamera ist an einer Stange montiert" - }, - "2": { - "then": "Diese Kamera ist an der Decke montiert" - } - }, - "question": "Wie ist diese Kamera montiert?", - "render": "Montageart: {camera:mount}" - }, - "camera_direction": { - "question": "In welche Himmelsrichtung ist diese Kamera ausgerichtet?" - }, - "is_indoor": { - "mappings": { - "0": { - "then": "Diese Kamera befindet sich im Innenraum" - }, - "1": { - "then": "Diese Kamera befindet sich im Freien" - }, - "2": { - "then": "Diese Kamera ist möglicherweise im Freien" - } - }, - "question": "Handelt es sich bei dem von dieser Kamera überwachten öffentlichen Raum um einen Innen- oder Außenbereich?" - } - }, - "title": { - "render": "Überwachungskamera" - } - }, - "toilet": { - "filter": { - "0": { - "options": { - "0": { - "question": "Rollstuhlgerecht" - } - } - }, - "1": { - "options": { - "0": { - "question": "Hat einen Wickeltisch" - } - } - }, - "2": { - "options": { - "0": { - "question": "Nutzung kostenlos" - } - } - } - }, - "name": "Toiletten", - "presets": { - "0": { - "description": "Eine öffentlich zugängliche Toilette", - "title": "toilette" - }, - "1": { - "description": "Eine Toilettenanlage mit mindestens einer rollstuhlgerechten Toilette", - "title": "toiletten mit rollstuhlgerechter Toilette" - } - }, - "tagRenderings": { - "toilet-access": { - "mappings": { - "0": { - "then": "Öffentlicher Zugang" - }, - "1": { - "then": "Nur Zugang für Kunden" - }, - "2": { - "then": "Nicht zugänglich" - }, - "3": { - "then": "Zugänglich, aber man muss einen Schlüssel für die Eingabe verlangen" - }, - "4": { - "then": "Öffentlicher Zugang" - } - }, - "question": "Sind diese Toiletten öffentlich zugänglich?", - "render": "Zugang ist {access}" - }, - "toilet-changing_table:location": { - "mappings": { - "0": { - "then": "Der Wickeltisch befindet sich in der Damentoilette. " - }, - "1": { - "then": "Der Wickeltisch befindet sich in der Herrentoilette. " - }, - "2": { - "then": "Der Wickeltisch befindet sich in der Toilette für Rollstuhlfahrer. " - }, - "3": { - "then": "Der Wickeltisch befindet sich in einem eigenen Raum. " - } - }, - "question": "Wo befindet sich der Wickeltisch?", - "render": "Die Wickeltabelle befindet sich in {changing_table:location}" - }, - "toilet-charge": { - "question": "Wie viel muss man für diese Toiletten bezahlen?", - "render": "Die Gebühr beträgt {charge}" - }, - "toilet-handwashing": { - "mappings": { - "0": { - "then": "Diese Toilette verfügt über ein Waschbecken" - }, - "1": { - "then": "Diese Toilette verfügt über kein Waschbecken" - } - }, - "question": "Verfügt diese Toilette über ein Waschbecken?" - }, - "toilet-has-paper": { - "mappings": { - "1": { - "then": "Für diese Toilette müssen Sie Ihr eigenes Toilettenpapier mitbringen" - } - }, - "question": "Muss man für diese Toilette sein eigenes Toilettenpapier mitbringen?" - }, - "toilets-changing-table": { - "mappings": { - "0": { - "then": "Ein Wickeltisch ist verfügbar" - }, - "1": { - "then": "Es ist kein Wickeltisch verfügbar" - } - }, - "question": "Ist ein Wickeltisch (zum Wechseln der Windeln) vorhanden?" - }, - "toilets-fee": { - "mappings": { - "0": { - "then": "Dies sind bezahlte Toiletten" - }, - "1": { - "then": "Kostenlose Nutzung" - } - }, - "question": "Können diese Toiletten kostenlos benutzt werden?" - }, - "toilets-type": { - "mappings": { - "0": { - "then": "Es gibt nur Sitztoiletten" - }, - "1": { - "then": "Hier gibt es nur Pissoirs" - }, - "2": { - "then": "Es gibt hier nur Hocktoiletten" - }, - "3": { - "then": "Sowohl Sitztoiletten als auch Pissoirs sind hier verfügbar" - } - }, - "question": "Welche Art von Toiletten sind das?" - }, - "toilets-wheelchair": { - "mappings": { - "0": { - "then": "Es gibt eine Toilette für Rollstuhlfahrer" - }, - "1": { - "then": "Kein Zugang für Rollstuhlfahrer" - } - }, - "question": "Gibt es eine Toilette für Rollstuhlfahrer?" - } - }, - "title": { - "render": "Toilette" - } - }, - "trail": { - "name": "Wanderwege", - "tagRenderings": { - "Color": { - "mappings": { - "0": { - "then": "Blauer Weg" - }, - "1": { - "then": "Roter Weg" - }, - "2": { - "then": "Grüner Weg" - }, - "3": { - "then": "Gelber Weg" - } - } - }, - "trail-length": { - "render": "Der Wanderweg ist {_length:km} Kilometer lang" - } - }, - "title": { - "render": "Wanderweg" - } - }, - "tree_node": { - "name": "Baum", - "presets": { - "0": { - "description": "Ein Baum mit Blättern, z. B. Eiche oder Buche.", - "title": "Laubbaum" - }, - "1": { - "description": "Ein Baum mit Nadeln, z. B. Kiefer oder Fichte.", - "title": "Nadelbaum" - }, - "2": { - "description": "Wenn Sie nicht sicher sind, ob es sich um einen Laubbaum oder einen Nadelbaum handelt.", - "title": "Baum" - } - }, - "tagRenderings": { - "tree-decidouous": { - "mappings": { - "0": { - "then": "Laubabwerfend: Der Baum verliert für eine gewisse Zeit des Jahres seine Blätter." - }, - "1": { - "then": "immergrüner Baum." - } - }, - "question": "Ist dies ein Nadelbaum oder ein Laubbaum?" - }, - "tree-denotation": { - "mappings": { - "0": { - "then": "Der Baum ist aufgrund seiner Größe oder seiner markanten Lage bedeutsam. Er ist nützlich zur Orientierung." - }, - "1": { - "then": "Der Baum ist ein Naturdenkmal, z. B. weil er besonders alt ist oder zu einer wertvollen Art gehört." - }, - "2": { - "then": "Der Baum wird für landwirtschaftliche Zwecke genutzt, z. B. in einer Obstplantage." - }, - "3": { - "then": "Der Baum steht in einem Park oder ähnlichem (Friedhof, Schulgelände, ...)." - }, - "5": { - "then": "Dieser Baum steht entlang einer Straße." - }, - "7": { - "then": "Dieser Baum steht außerhalb eines städtischen Gebiets." - } - }, - "question": "Wie bedeutsam ist dieser Baum? Wählen Sie die erste Antwort, die zutrifft." - }, - "tree-height": { - "mappings": { - "0": { - "then": "Höhe: {height} m" - } - }, - "render": "Höhe: {height}" - }, - "tree-heritage": { - "mappings": { - "0": { - "then": "\"\"/ Als Denkmal registriert von der Onroerend Erfgoed Flandern" - }, - "1": { - "then": "Als Denkmal registriert von der Direction du Patrimoine culturel Brüssel" - }, - "2": { - "then": "Von einer anderen Organisation als Denkmal registriert" - }, - "3": { - "then": "Nicht als Denkmal registriert" - }, - "4": { - "then": "Von einer anderen Organisation als Denkmal registriert" - } - }, - "question": "Ist dieser Baum ein Naturdenkmal?" - }, - "tree-leaf_type": { - "mappings": { - "0": { - "then": "\"\"/ Laubbaum" - }, - "1": { - "then": "\"\"/ Nadelbaum" - }, - "2": { - "then": "\"\"/ Dauerhaft blattlos" - } - }, - "question": "Ist dies ein Laub- oder Nadelbaum?" - }, - "tree_node-name": { - "mappings": { - "0": { - "then": "Der Baum hat keinen Namen." - } - }, - "question": "Hat der Baum einen Namen?", - "render": "Name: {name}" - }, - "tree_node-ref:OnroerendErfgoed": { - "question": "Wie lautet die Kennung der Onroerend Erfgoed Flanders?" - }, - "tree_node-wikidata": { - "question": "Was ist das passende Wikidata Element zu diesem Baum?", - "render": "\"\"/ Wikidata: {wikidata}" - } - }, - "title": { - "mappings": { - "0": { - "then": "{name}" - } - }, - "render": "Baum" - } - }, - "viewpoint": { - "description": "Ein schöner Aussichtspunkt oder eine schöne Aussicht. Ideal zum Hinzufügen eines Bildes, wenn keine andere Kategorie passt", - "name": "Aussichtspunkt", - "presets": { - "0": { - "title": "Aussichtspunkt" - } - }, - "tagRenderings": { - "viewpoint-description": { - "question": "Möchten Sie eine Beschreibung hinzufügen?" - } - }, - "title": { - "render": "Aussichtspunkt" - } - }, - "visitor_information_centre": { - "description": "Ein Besucherzentrum bietet Informationen über eine bestimmte Attraktion oder Sehenswürdigkeit, an der es sich befindet.", - "name": "Besucherinformationszentrum", - "title": { - "mappings": { - "1": { - "then": "{name}" - } - }, - "render": "{name}" - } - }, - "waste_basket": { - "description": "Dies ist ein öffentlicher Abfalleimer, in den Sie Ihren Müll entsorgen können.", - "mapRendering": { - "0": { - "iconSize": { - "mappings": { - "0": { - "then": "Abfalleimer" + "address": { + "description": "Adressen", + "name": "Bekannte Adressen in OSM", + "tagRenderings": { + "fixme": { + "question": "Was sollte hier korrigiert werden? Bitte erläutern" + }, + "housenumber": { + "mappings": { + "0": { + "then": "Dieses Gebäude hat keine Hausnummer" + } + }, + "question": "Wie lautet die Nummer dieses Hauses?", + "render": "Die Hausnummer ist {addr:housenumber}" + }, + "street": { + "question": "In welcher Straße befindet sich diese Adresse?", + "render": "Diese Adresse befindet sich in der Straße {addr:street}" } - } + }, + "title": { + "render": "Bekannte Adresse" } - } }, - "name": "Abfalleimer", - "presets": { - "0": { - "title": "Abfalleimer" - } - }, - "tagRenderings": { - "dispensing_dog_bags": { - "mappings": { - "0": { - "then": "Dieser Abfalleimer verfügt über einen Spender für (Hunde-)Kotbeutel" - }, - "1": { - "then": "Dieser Abfalleimer hat keinen Spender für (Hunde-)Kotbeutel" - }, - "2": { - "then": "Dieser Abfalleimer hat keinen Spender für (Hunde-)Kotbeutel" - } + "ambulancestation": { + "description": "Eine Rettungswache ist ein Ort, an dem Rettungsfahrzeuge, medizinische Ausrüstung, persönliche Schutzausrüstung und anderes medizinisches Material untergebracht sind.", + "name": "Karte der Rettungswachen", + "presets": { + "0": { + "description": "Eine Rettungsstation der Karte hinzufügen", + "title": "Rettungswache" + } }, - "question": "Verfügt dieser Abfalleimer über einen Spender für (Hunde-)Kotbeutel?" - }, - "waste-basket-waste-types": { - "mappings": { - "0": { - "then": "Ein Abfalleimer für allgemeinen Müll" - }, - "1": { - "then": "Ein Abfalleimer für allgemeinen Müll" - }, - "2": { - "then": "Ein Abfalleimer für Hundekot" - }, - "3": { - "then": "Mülleimer für Zigaretten" - }, - "4": { - "then": "Mülleimer für Drogen" - }, - "5": { - "then": "Ein Abfalleimer für Nadeln und andere scharfe Gegenstände" - } + "tagRenderings": { + "ambulance-agency": { + "question": "Welches Unternehmen betreibt diese Rettungswache?", + "render": "Diese Rettungswache wird betrieben von {operator}." + }, + "ambulance-name": { + "question": "Wie heißt diese Rettungswache?", + "render": "Diese Rettungswache heißt {name}." + }, + "ambulance-operator-type": { + "mappings": { + "0": { + "then": "Die Rettungswache wird von einer Behörde betrieben." + }, + "1": { + "then": "Die Rettungswache wird von einer gemeindenahen oder informellen Organisation betrieben." + }, + "2": { + "then": "Die Rettungswache wird von einer Freiwilligenorganisation betrieben." + }, + "3": { + "then": "Die Rettungswache wird von einer privaten Organisation betrieben." + } + }, + "question": "Wie kann der Betreiber der Rettungswache eingestuft werden?", + "render": "Der Betreiber ist eine {operator:type}." + }, + "ambulance-place": { + "question": "Wo befindet sich die Rettungswache? (z. B. Name von Stadtviertel, Dorf oder Stadt)", + "render": "Diese Rettungswache befindet sich in {addr:place}." + }, + "ambulance-street": { + "question": " Wie lautet der Name der Straße, in der sich die Rettungswache befindet?", + "render": "Dieser Bahnhof liegt an der Straße {addr:street}." + } }, - "question": "Um was für einen Abfalleimer handelt es sich?" - } + "title": { + "render": "Rettungswache" + } }, - "title": { - "render": "Abfalleimer" + "artwork": { + "description": "Verschiedene Kunstwerke", + "name": "Kunstwerke", + "presets": { + "0": { + "title": "Kunstwerk" + } + }, + "tagRenderings": { + "artwork-artist_name": { + "question": "Welcher Künstler hat das geschaffen?", + "render": "Erstellt von {artist_name}" + }, + "artwork-artwork_type": { + "mappings": { + "0": { + "then": "Architektur" + }, + "1": { + "then": "Wandbild" + }, + "2": { + "then": "Malerei" + }, + "3": { + "then": "Skulptur" + }, + "4": { + "then": "Statue" + }, + "5": { + "then": "Büste" + }, + "6": { + "then": "Stein" + }, + "7": { + "then": "Installation" + }, + "8": { + "then": "Graffiti" + }, + "9": { + "then": "Relief" + }, + "10": { + "then": "Azulejo (spanische dekorative Fliesenarbeit)" + }, + "11": { + "then": "Fliesenarbeit" + } + }, + "question": "Was ist die Art dieses Kunstwerks?", + "render": "Dies ist ein {artwork_type}" + }, + "artwork-website": { + "question": "Gibt es eine Website mit weiteren Informationen über dieses Kunstwerk?", + "render": "Weitere Informationen auf dieser Webseite" + }, + "artwork-wikidata": { + "question": "Welcher Wikidata-Eintrag entspricht diesem Kunstwerk?", + "render": "Entspricht {wikidata}" + } + }, + "title": { + "mappings": { + "0": { + "then": "Kunstwerk {name}" + } + }, + "render": "Kunstwerk" + } + }, + "barrier": { + "description": "Hindernisse beim Fahrradfahren, wie zum Beispiel Poller und Fahrrad Barrieren", + "name": "Hindernisse", + "presets": { + "0": { + "description": "Ein Poller auf der Straße", + "title": "Poller" + }, + "1": { + "description": "Fahrradhindernis, das Radfahrer abbremst", + "title": "Fahrradhindernis" + } + }, + "tagRenderings": { + "Bollard type": { + "mappings": { + "0": { + "then": "Entfernbarer Poller" + }, + "1": { + "then": "Feststehender Poller" + }, + "2": { + "then": "Umlegbarer Poller" + }, + "3": { + "then": "Flexibler Poller, meist aus Kunststoff" + }, + "4": { + "then": "Ausfahrender Poller" + } + }, + "question": "Um was für einen Poller handelt es sich?" + }, + "Cycle barrier type": { + "mappings": { + "0": { + "then": "Einfach, nur zwei Barrieren mit einem Zwischenraum" + }, + "1": { + "then": "Doppelt, zwei Barrieren hintereinander" + }, + "2": { + "then": "Dreifach, drei Barrieren hintereinander" + }, + "3": { + "then": "Eine Durchfahrtsbeschränkung, Durchfahrtsbreite ist oben kleiner als unten" + } + }, + "question": "Um welche Art Fahrradhindernis handelt es sich?" + }, + "MaxWidth": { + "question": "Welche Durchfahrtsbreite hat das Hindernis?", + "render": "Maximale Durchfahrtsbreite: {maxwidth:physical} m" + }, + "Overlap (cyclebarrier)": { + "question": "Wie stark überschneiden sich die Barrieren?", + "render": "Überschneidung: {overlap} m" + }, + "Space between barrier (cyclebarrier)": { + "question": "Wie groß ist der Abstand zwischen den Barrieren (entlang der Straße)?", + "render": "Abstand zwischen den Barrieren (entlang der Straße): {width:separation} m" + }, + "Width of opening (cyclebarrier)": { + "question": "Wie breit ist die kleinste Öffnung neben den Barrieren?", + "render": "Breite der Öffnung: {width:opening} m" + }, + "bicycle=yes/no": { + "mappings": { + "0": { + "then": "Ein Radfahrer kann hindurchfahren." + }, + "1": { + "then": "Ein Radfahrer kann nicht hindurchfahren." + } + }, + "question": "Kann ein Radfahrer das Hindernis passieren?" + } + }, + "title": { + "mappings": { + "0": { + "then": "Poller" + }, + "1": { + "then": "Barriere für Radfahrer" + } + }, + "render": "Hindernis" + } + }, + "bench": { + "name": "Sitzbänke", + "presets": { + "0": { + "title": "sitzbank" + } + }, + "tagRenderings": { + "bench-backrest": { + "mappings": { + "0": { + "then": "Rückenlehne: Ja" + }, + "1": { + "then": "Rückenlehne: Nein" + } + }, + "question": "Hat diese Bank eine Rückenlehne?" + }, + "bench-colour": { + "mappings": { + "0": { + "then": "Farbe: braun" + }, + "1": { + "then": "Farbe: grün" + }, + "2": { + "then": "Farbe: grau" + }, + "3": { + "then": "Farbe: weiß" + }, + "4": { + "then": "Farbe: rot" + }, + "5": { + "then": "Farbe: schwarz" + }, + "6": { + "then": "Farbe: blau" + }, + "7": { + "then": "Farbe: gelb" + } + }, + "question": "Welche Farbe hat diese Sitzbank?", + "render": "Farbe: {colour}" + }, + "bench-direction": { + "question": "In welche Richtung schaut man, wenn man auf der Bank sitzt?", + "render": "Wenn man auf der Bank sitzt, schaut man in Richtung {direction}°." + }, + "bench-material": { + "mappings": { + "0": { + "then": "Material: Holz" + }, + "1": { + "then": "Material: Metall" + }, + "2": { + "then": "Material: Stein" + }, + "3": { + "then": "Material: Beton" + }, + "4": { + "then": "Material: Kunststoff" + }, + "5": { + "then": "Material: Stahl" + } + }, + "question": "Aus welchem Material besteht die Sitzbank (Sitzfläche)?", + "render": "Material: {material}" + }, + "bench-seats": { + "question": "Wie viele Sitzplätze hat diese Bank?", + "render": "{seats} Sitzplätze" + }, + "bench-survey:date": { + "question": "Wann wurde diese Bank zuletzt überprüft?", + "render": "Diese Bank wurde zuletzt überprüft am {survey:date}" + } + }, + "title": { + "render": "Sitzbank" + } + }, + "bench_at_pt": { + "name": "Sitzbänke bei Haltestellen", + "tagRenderings": { + "bench_at_pt-bench_type": { + "mappings": { + "0": { + "then": "Hier gibt es eine normale Sitzbank" + }, + "1": { + "then": "Stehbank" + }, + "2": { + "then": "Hier gibt es keine Bank" + } + }, + "question": "Was ist das für eine Bank?" + }, + "bench_at_pt-name": { + "render": "{name}" + } + }, + "title": { + "mappings": { + "0": { + "then": "Sitzbank bei Haltestelle" + }, + "1": { + "then": "Sitzbank in Unterstand" + } + }, + "render": "Sitzbank" + } + }, + "bicycle_library": { + "description": "Eine Einrichtung, in der Fahrräder für längere Zeit geliehen werden können", + "name": "Fahrradbibliothek", + "presets": { + "0": { + "description": "Eine Fahrradbibliothek verfügt über eine Sammlung von Fahrrädern, die ausgeliehen werden können", + "title": "Fahrradbibliothek" + } + }, + "tagRenderings": { + "bicycle-library-target-group": { + "mappings": { + "0": { + "then": "Fahrräder für Kinder verfügbar" + }, + "1": { + "then": "Fahrräder für Erwachsene verfügbar" + }, + "2": { + "then": "Fahrräder für Behinderte verfügbar" + } + }, + "question": "Wer kann hier Fahrräder ausleihen?" + }, + "bicycle_library-charge": { + "mappings": { + "0": { + "then": "Das Ausleihen eines Fahrrads ist kostenlos" + }, + "1": { + "then": "Das Ausleihen eines Fahrrads kostet 20€ pro Jahr und 20€ Gebühr" + } + }, + "question": "Wie viel kostet das Ausleihen eines Fahrrads?", + "render": "Das Ausleihen eines Fahrrads kostet {charge}" + }, + "bicycle_library-name": { + "question": "Wie lautet der Name dieser Fahrradbibliothek?", + "render": "Diese Fahrradbibliothek heißt {name}" + } + }, + "title": { + "render": "Fahrradbibliothek" + } + }, + "bicycle_tube_vending_machine": { + "name": "Fahrradschlauch-Automat", + "presets": { + "0": { + "title": "Fahrradschlauch-Automat" + } + }, + "tagRenderings": { + "Still in use?": { + "mappings": { + "0": { + "then": "Dieser Automat funktioniert" + }, + "1": { + "then": "Dieser Automat ist kaputt" + }, + "2": { + "then": "Dieser Automat ist geschlossen" + } + }, + "question": "Ist dieser Automat noch in Betrieb?", + "render": "Der Betriebszustand ist {operational_status}" + } + }, + "title": { + "render": "Fahrradschlauch-Automat" + } + }, + "bike_cafe": { + "name": "Fahrrad-Café", + "presets": { + "0": { + "title": "Fahrrad-Café" + } + }, + "tagRenderings": { + "bike_cafe-bike-pump": { + "mappings": { + "0": { + "then": "Dieses Fahrrad-Café bietet eine Fahrradpumpe an, die von jedem benutzt werden kann" + }, + "1": { + "then": "Dieses Fahrrad-Café bietet keine Fahrradpumpe an, die von jedem benutzt werden kann" + } + }, + "question": "Bietet dieses Fahrrad-Café eine Fahrradpumpe an, die von jedem benutzt werden kann?" + }, + "bike_cafe-email": { + "question": "Wie lautet die E-Mail-Adresse von {name}?" + }, + "bike_cafe-name": { + "question": "Wie heißt dieses Fahrrad-Café?", + "render": "Dieses Fahrrad-Café heißt {name}" + }, + "bike_cafe-opening_hours": { + "question": "Wann ist dieses Fahrradcafé geöffnet?" + }, + "bike_cafe-phone": { + "question": "Wie lautet die Telefonnummer von {name}?" + }, + "bike_cafe-repair-service": { + "mappings": { + "0": { + "then": "Dieses Fahrrad-Café repariert Fahrräder" + }, + "1": { + "then": "Dieses Fahrrad-Café repariert keine Fahrräder" + } + }, + "question": "Repariert dieses Fahrrad-Café Fahrräder?" + }, + "bike_cafe-repair-tools": { + "mappings": { + "0": { + "then": "Dieses Fahrrad-Café bietet Werkzeuge für die selbständige Reparatur an" + }, + "1": { + "then": "Dieses Fahrrad-Café bietet keine Werkzeuge für die selbständige Reparatur an" + } + }, + "question": "Gibt es hier Werkzeuge, um das eigene Fahrrad zu reparieren?" + }, + "bike_cafe-website": { + "question": "Was ist die Webseite von {name}?" + } + }, + "title": { + "mappings": { + "0": { + "then": "Fahrrad-Café {name}" + } + }, + "render": "Fahrrad-Café" + } + }, + "bike_cleaning": { + "name": "Fahrrad-Reinigungsdienst", + "presets": { + "0": { + "title": "Fahrrad-Reinigungsdienst" + } + }, + "tagRenderings": { + "bike_cleaning-charge": { + "mappings": { + "0": { + "then": "Kostenloser Reinigungsservice" + }, + "1": { + "then": "Kostenlose Nutzung" + }, + "2": { + "then": "Der Reinigungsservice ist kostenpflichtig" + } + }, + "question": "Wie viel kostet die Nutzung des Reinigungsdienstes?", + "render": "Die Nutzung des Reinigungsdienstes kostet {charge}" + }, + "bike_cleaning-service:bicycle:cleaning:charge": { + "mappings": { + "0": { + "then": "Der Reinigungsservice ist kostenlos" + }, + "1": { + "then": "Kostenlose Nutzung" + }, + "2": { + "then": "Der Reinigungsdienst ist kostenpflichtig, aber der Betrag ist nicht bekannt" + } + }, + "question": "Wie viel kostet die Nutzung des Reinigungsdienstes?", + "render": "Nutzung des Reinigungsservice kostet {service:bicycle:cleaning:charge}" + } + }, + "title": { + "mappings": { + "0": { + "then": "Fahrrad-Reinigungsdienst{name}" + } + }, + "render": "Fahrrad-Reinigungsdienst" + } + }, + "bike_parking": { + "name": "Fahrrad-Parkplätze", + "presets": { + "0": { + "title": "Fahrrad-Parkplätze" + } + }, + "tagRenderings": { + "Access": { + "mappings": { + "0": { + "then": "Öffentlich zugänglich" + }, + "1": { + "then": "Der Zugang ist in erster Linie für Besucher eines Unternehmens bestimmt" + }, + "2": { + "then": "Der Zugang ist beschränkt auf Mitglieder einer Schule, eines Unternehmens oder einer Organisation" + } + }, + "question": "Wer kann diesen Fahrradparplatz nutzen?", + "render": "{access}" + }, + "Bicycle parking type": { + "mappings": { + "0": { + "then": "Fahrradbügel" + }, + "1": { + "then": "Metallgestänge" + }, + "2": { + "then": "Halter für Fahrradlenker" + }, + "3": { + "then": "Gestell" + }, + "4": { + "then": "Zweistufig" + }, + "5": { + "then": "Schuppen" + }, + "6": { + "then": "Poller" + }, + "7": { + "then": "Ein Bereich auf dem Boden, der für das Abstellen von Fahrrädern gekennzeichnet ist" + } + }, + "question": "Was ist die Art dieses Fahrrad-Parkplatzes?", + "render": "Dies ist ein Fahrrad-Parkplatz der Art: {bicycle_parking}" + }, + "Capacity": { + "question": "Wie viele Fahrräder passen auf diesen Fahrrad-Parkplatz (einschließlich möglicher Lastenfahrräder)?", + "render": "Platz für {capacity} Fahrräder" + }, + "Cargo bike capacity?": { + "question": "Wie viele Lastenfahrräder passen auf diesen Fahrrad-Parkplatz?", + "render": "Auf diesen Parkplatz passen {capacity:cargo_bike} Lastenfahrräder" + }, + "Cargo bike spaces?": { + "mappings": { + "0": { + "then": "Dieser Parkplatz bietet Platz für Lastenfahrräder" + }, + "1": { + "then": "Dieser Parkplatz verfügt über ausgewiesene (offizielle) Plätze für Lastenfahrräder." + }, + "2": { + "then": "Es ist nicht erlaubt, Lastenfahrräder zu parken" + } + }, + "question": "Gibt es auf diesem Fahrrad-Parkplatz Plätze für Lastenfahrräder?" + }, + "Is covered?": { + "mappings": { + "0": { + "then": "Dieser Parkplatz ist überdacht (er hat ein Dach)" + }, + "1": { + "then": "Dieser Parkplatz ist nicht überdacht" + } + }, + "question": "Ist dieser Parkplatz überdacht? Wählen Sie auch \"überdacht\" für Innenparkplätze." + }, + "Underground?": { + "mappings": { + "0": { + "then": "Tiefgarage" + }, + "1": { + "then": "Ebenerdiges Parken" + }, + "2": { + "then": "Parkplatz auf dem Dach" + }, + "3": { + "then": "Ebenerdiges Parken" + } + }, + "question": "Wo befinden sich diese Fahrradabstellplätze?" + } + }, + "title": { + "render": "Fahrrad-Parkplätze" + } + }, + "bike_repair_station": { + "name": "Fahrradstationen (Reparatur, Pumpe oder beides)", + "presets": { + "0": { + "description": "Ein Gerät zum Aufpumpen von Reifen an einem festen Standort im öffentlichen Raum.", + "title": "fahrradpumpe" + }, + "1": { + "description": "Ein Gerät mit Werkzeugen zur Reparatur von Fahrrädern kombiniert mit einer Pumpe an einem festen Standort. Die Werkzeuge sind oft mit Ketten gegen Diebstahl gesichert.", + "title": "fahrrad-Reparaturstation und Pumpe" + }, + "2": { + "title": "fahrrad-Reparaturstation ohne Pumpe" + } + }, + "tagRenderings": { + "Email maintainer": { + "render": "Melde diese Fahrradpumpe als kaputt" + }, + "Operational status": { + "mappings": { + "0": { + "then": "Die Fahrradpumpe ist kaputt" + }, + "1": { + "then": "Die Fahrradpumpe ist betriebsbereit" + } + }, + "question": "Ist die Fahrradpumpe noch funktionstüchtig?" + }, + "bike_repair_station-available-services": { + "mappings": { + "0": { + "then": "Es ist nur eine Pumpe vorhanden" + }, + "1": { + "then": "Es sind nur Werkzeuge (Schraubenzieher, Zangen...) vorhanden" + }, + "2": { + "then": "Es sind sowohl Werkzeuge als auch eine Pumpe vorhanden" + } + }, + "question": "Welche Einrichtungen stehen an dieser Fahrradstation zur Verfügung?" + }, + "bike_repair_station-bike-chain-tool": { + "mappings": { + "0": { + "then": "Es gibt ein Kettenwerkzeug" + }, + "1": { + "then": "Es gibt kein Kettenwerkzeug" + } + }, + "question": "Verfügt diese Fahrrad-Reparaturstation über Spezialwerkzeug zur Reparatur von Fahrradketten?" + }, + "bike_repair_station-bike-stand": { + "mappings": { + "0": { + "then": "Es gibt einen Haken oder Ständer" + }, + "1": { + "then": "Es gibt keinen Haken oder Ständer" + } + }, + "question": "Hat diese Fahrradstation einen Haken, an dem Sie Ihr Fahrrad aufhängen können, oder einen Ständer, um es anzuheben?" + }, + "bike_repair_station-electrical_pump": { + "mappings": { + "0": { + "then": "Manuelle Pumpe" + }, + "1": { + "then": "Elektrische Pumpe" + } + }, + "question": "Ist dies eine elektrische Fahrradpumpe?" + }, + "bike_repair_station-email": { + "question": "Wie lautet die E-Mail-Adresse des Betreuers?" + }, + "bike_repair_station-manometer": { + "mappings": { + "0": { + "then": "Es gibt ein Manometer" + }, + "1": { + "then": "Es gibt kein Manometer" + }, + "2": { + "then": "Es gibt ein Manometer, aber es ist kaputt" + } + }, + "question": "Verfügt die Pumpe über einen Druckanzeiger oder ein Manometer?" + }, + "bike_repair_station-opening_hours": { + "mappings": { + "0": { + "then": "Immer geöffnet" + } + }, + "question": "Wann ist diese Fahrradreparaturstelle geöffnet?" + }, + "bike_repair_station-operator": { + "question": "Wer wartet diese Fahrradpumpe?", + "render": "Gewartet von {operator}" + }, + "bike_repair_station-phone": { + "question": "Wie lautet die Telefonnummer des Betreibers?" + }, + "bike_repair_station-valves": { + "mappings": { + "0": { + "then": "Sklaverand (auch bekannt als Presta)" + }, + "1": { + "then": "Dunlop" + }, + "2": { + "then": "Schrader (Autos)" + } + }, + "question": "Welche Ventile werden unterstützt?", + "render": "Diese Pumpe unterstützt die folgenden Ventile: {valves}" + } + }, + "title": { + "mappings": { + "0": { + "then": "Fahrrad-Reparaturstation" + }, + "1": { + "then": "Fahrrad-Reparaturstation" + }, + "2": { + "then": "Kaputte Pumpe" + }, + "3": { + "then": "Fahrradpumpe {name}" + }, + "4": { + "then": "Fahrradpumpe" + } + }, + "render": "Fahrradstation (Pumpe & Reparatur)" + } + }, + "bike_shop": { + "description": "Ein Geschäft, das speziell Fahrräder oder verwandte Artikel verkauft", + "name": "Fahrradwerkstatt/geschäft", + "presets": { + "0": { + "title": "Fahrradwerkstatt/geschäft" + } + }, + "tagRenderings": { + "bike_repair_bike-pump-service": { + "mappings": { + "0": { + "then": "Dieses Geschäft bietet eine Fahrradpumpe für alle an" + }, + "1": { + "then": "Dieses Geschäft bietet für niemanden eine Fahrradpumpe an" + }, + "2": { + "then": "Es gibt eine Fahrradpumpe, sie wird als separater Punkt angezeigt " + } + }, + "question": "Bietet dieses Geschäft eine Fahrradpumpe zur Benutzung für alle an?" + }, + "bike_repair_bike-wash": { + "mappings": { + "0": { + "then": "Dieses Geschäft reinigt Fahrräder" + }, + "1": { + "then": "Dieser Laden hat eine Anlage, in der man Fahrräder selbst reinigen kann" + }, + "2": { + "then": "Dieser Laden bietet keine Fahrradreinigung an" + } + }, + "question": "Werden hier Fahrräder gewaschen?" + }, + "bike_repair_rents-bikes": { + "mappings": { + "0": { + "then": "Dieses Geschäft vermietet Fahrräder" + }, + "1": { + "then": "Dieses Geschäft vermietet keine Fahrräder" + } + }, + "question": "Vermietet dieser Laden Fahrräder?" + }, + "bike_repair_repairs-bikes": { + "mappings": { + "0": { + "then": "Dieses Geschäft repariert Fahrräder" + }, + "1": { + "then": "Dieses Geschäft repariert keine Fahrräder" + }, + "2": { + "then": "Dieses Geschäft repariert nur hier gekaufte Fahrräder" + }, + "3": { + "then": "Dieses Geschäft repariert nur Fahrräder einer bestimmten Marke" + } + }, + "question": "Repariert dieses Geschäft Fahrräder?" + }, + "bike_repair_second-hand-bikes": { + "mappings": { + "0": { + "then": "Dieses Geschäft verkauft gebrauchte Fahrräder" + }, + "1": { + "then": "Dieses Geschäft verkauft keine gebrauchten Fahrräder" + }, + "2": { + "then": "Dieses Geschäft verkauft nur gebrauchte Fahrräder" + } + }, + "question": "Verkauft dieses Geschäft gebrauchte Fahrräder?" + }, + "bike_repair_sells-bikes": { + "mappings": { + "0": { + "then": "Dieses Geschäft verkauft Fahrräder" + }, + "1": { + "then": "Dieses Geschäft verkauft keine Fahrräder" + } + }, + "question": "Verkauft dieser Laden Fahrräder?" + }, + "bike_repair_tools-service": { + "mappings": { + "0": { + "then": "Dieses Geschäft bietet Werkzeuge für die Heimwerkerreparatur an" + }, + "1": { + "then": "Dieses Geschäft bietet keine Werkzeuge für Heimwerkerreparaturen an" + }, + "2": { + "then": "Werkzeuge für die Selbstreparatur sind nur verfügbar, wenn Sie das Fahrrad im Laden gekauft/gemietet haben" + } + }, + "question": "Gibt es hier Werkzeuge, um das eigene Fahrrad zu reparieren?" + }, + "bike_shop-email": { + "question": "Wie lautet die E-Mail-Adresse von {name}?" + }, + "bike_shop-is-bicycle_shop": { + "render": "Dieses Geschäft ist auf den Verkauf von {shop} spezialisiert und im Bereich Fahrrad tätig" + }, + "bike_shop-name": { + "question": "Wie heißt dieser Fahrradladen?", + "render": "Dieses Fahrradgeschäft heißt {name}" + }, + "bike_shop-phone": { + "question": "Wie lautet die Telefonnummer von {name}?" + }, + "bike_shop-website": { + "question": "Was ist die Webseite von {name}?" + } + }, + "title": { + "mappings": { + "0": { + "then": "Sportartikelgeschäft {name}" + }, + "2": { + "then": "Fahrradverleih{name}" + }, + "3": { + "then": "Fahrradwerkstatt {name}" + }, + "4": { + "then": "Fahrradgeschäft {name}" + }, + "5": { + "then": "Fahrradwerkstatt/geschäft {name}" + } + }, + "render": "Fahrradwerkstatt/geschäft" + } + }, + "bike_themed_object": { + "name": "Mit Fahrrad zusammenhängendes Objekt", + "title": { + "mappings": { + "1": { + "then": "Radweg" + } + }, + "render": "Mit Fahrrad zusammenhängendes Objekt" + } + }, + "binocular": { + "description": "Fernglas", + "name": "Ferngläser", + "presets": { + "0": { + "description": "Ein fest installiertes Teleskop oder Fernglas, für die öffentliche Nutzung. ", + "title": "Ferngläser" + } + }, + "tagRenderings": { + "binocular-charge": { + "mappings": { + "0": { + "then": "Kostenlose Nutzung" + } + }, + "question": "Wie viel muss man für die Nutzung dieser Ferngläser bezahlen?", + "render": "Die Benutzung dieses Fernglases kostet {charge}" + }, + "binocular-direction": { + "question": "In welche Richtung blickt man, wenn man durch dieses Fernglas schaut?", + "render": "Blick in Richtung {direction}°" + } + }, + "title": { + "render": "Ferngläser" + } + }, + "birdhide": { + "filter": { + "0": { + "options": { + "0": { + "question": "Zugänglich für Rollstuhlfahrer" + } + } + } + } + }, + "cafe_pub": { + "filter": { + "0": { + "options": { + "0": { + "question": "Jetzt geöffnet" + } + } + } + }, + "name": "Cafés und Kneipen", + "presets": { + "0": { + "title": "Kneipe" + }, + "1": { + "title": "Bar" + }, + "2": { + "title": "Café" + } + }, + "tagRenderings": { + "Classification": { + "question": "Was ist das für ein Café" + }, + "Name": { + "question": "Wie heißt diese Kneipe?", + "render": "Diese Kneipe heißt {name}" + } + }, + "title": { + "mappings": { + "0": { + "then": "{name}" + } + } + } + }, + "charging_station": { + "description": "Eine Ladestation", + "filter": { + "0": { + "options": { + "0": { + "question": "Alle Fahrzeugtypen" + }, + "1": { + "question": "Ladestation für Fahrräder" + }, + "2": { + "question": "Ladestation für Autos" + } + } + }, + "1": { + "options": { + "0": { + "question": "Nur funktionierende Ladestationen" + } + } + }, + "2": { + "options": { + "0": { + "question": "Alle Anschlüsse" + }, + "1": { + "question": "Verfügt über einen
Schuko-Stecker ohne Erdungsstift (CEE7/4 Typ F)
" + }, + "3": { + "question": "Verfügt über einen
Chademo
Stecker" + }, + "4": { + "question": "Verfügt über einen
Typ 1 (J1772)
Stecker mit Kabel" + }, + "5": { + "question": "Verfügt über einen
Typ 1 (J1772)
Stecker ohne Kabel" + }, + "6": { + "question": "Verfügt über einen
Typ 1 CCS
Stecker, auch bekannt als Typ 1 Combo" + }, + "7": { + "question": "Verfügt über einen
Tesla Supercharger
Stecker" + } + } + } + }, + "name": "Ladestationen", + "presets": { + "1": { + "title": "Ladestation für e-bikes" + } + }, + "tagRenderings": { + "Authentication": { + "mappings": { + "0": { + "then": "Authentifizierung per Mitgliedskarte" + }, + "1": { + "then": "Authentifizierung per App" + }, + "2": { + "then": "Authentifizierung per Anruf ist möglich" + }, + "3": { + "then": "Authentifizierung per SMS ist möglich" + }, + "4": { + "then": "Authentifizierung per NFC ist möglich" + }, + "5": { + "then": "Authentifizierung per Geldkarte ist möglich" + }, + "6": { + "then": "Authentifizierung per Kreditkarte ist möglich" + }, + "7": { + "then": "Das Laden ist hier (auch) ohne Authentifizierung möglich" + } + }, + "question": "Welche Art der Authentifizierung ist an der Ladestation möglich?" + }, + "Available_charging_stations (generated)": { + "question": "Welche Ladeanschlüsse gibt es hier?" + }, + "Network": { + "mappings": { + "0": { + "then": "Nicht Teil eines größeren Netzwerks, z. B. weil die Ladestation von einem lokalen Unternehmen betrieben wird" + }, + "1": { + "then": "Nicht Teil eines größeren Netzwerks" + } + }, + "question": "Ist diese Ladestation Teil eines Netzwerks?", + "render": "Teil des Netzwerks {network}" + }, + "OH": { + "mappings": { + "0": { + "then": "durchgehend geöffnet (einschließlich Feiertage)" + } + }, + "question": "Wann ist diese Ladestation geöffnet?" + }, + "Operational status": { + "mappings": { + "0": { + "then": "Diese Ladestation ist betriebsbereit" + }, + "1": { + "then": "Diese Ladestation ist defekt" + }, + "2": { + "then": "Hier ist eine Ladestation geplant" + }, + "3": { + "then": "Hier wird eine Ladestation errichtet" + }, + "4": { + "then": "Diese Ladestation wurde dauerhaft geschlossen und wird nicht mehr benutzt, ist aber noch sichtbar" + } + }, + "question": "Ist dieser Ladepunkt in Betrieb?" + }, + "Operator": { + "mappings": { + "0": { + "then": "Eigentlich ist {operator} das Netzwerk" + } + }, + "question": "Wer ist der Betreiber dieser Ladestation?", + "render": "Diese Ladestation wird betrieben von {operator}" + }, + "Parking:fee": { + "mappings": { + "0": { + "then": "Keine zusätzlichen Parkkosten während des Ladens" + }, + "1": { + "then": "Während des Ladens ist eine zusätzliche Parkgebühr zu entrichten" + } + }, + "question": "Muss man während des Ladens eine Parkgebühr bezahlen?" + }, + "Type": { + "mappings": { + "0": { + "then": "Fahrräder können hier geladen werden" + }, + "1": { + "then": "Autos können hier geladen werden" + }, + "2": { + "then": "Roller können hier geladen werden" + }, + "3": { + "then": "LKW können hier geladen werden" + }, + "4": { + "then": "Busse können hier geladen werden" + } + }, + "question": "Welche Fahrzeuge dürfen hier laden?" + } + } + }, + "crossings": { + "description": "Übergänge für Fußgänger und Radfahrer", + "name": "Kreuzungen", + "presets": { + "0": { + "description": "Kreuzung für Fußgänger und/oder Radfahrer", + "title": "Kreuzung" + }, + "1": { + "description": "Ampel an einer Straße", + "title": "Ampel" + } + }, + "tagRenderings": { + "crossing-bicycle-allowed": { + "mappings": { + "0": { + "then": "Radfahrer können diese Kreuzung nutzen" + }, + "1": { + "then": "Radfahrer können diese Kreuzung nicht nutzen" + } + }, + "question": "Können Radfahrer diese Kreuzung nutzen?" + }, + "crossing-button": { + "mappings": { + "0": { + "then": "Diese Ampel hat eine Taste, um ein grünes Signal anzufordern" + }, + "1": { + "then": "Diese Ampel hat keine Taste, um ein grünes Signal anzufordern" + } + }, + "question": "Hat diese Ampel eine Taste, um ein grünes Signal anzufordern?" + }, + "crossing-continue-through-red": { + "mappings": { + "0": { + "then": "Ein Radfahrer kann bei roter Ampel geradeaus fahren" + }, + "1": { + "then": "Ein Radfahrer kann bei roter Ampel geradeaus fahren" + }, + "2": { + "then": "Ein Radfahrer kann bei roter Ampel nicht geradeaus fahren" + } + }, + "question": "Kann ein Radfahrer bei roter Ampel geradeaus fahren?" + }, + "crossing-has-island": { + "mappings": { + "0": { + "then": "Der Übergang hat eine Verkehrsinsel" + }, + "1": { + "then": "Diese Ampel hat eine Taste, um ein grünes Signal anzufordern" + } + }, + "question": "Gibt es an diesem Übergang eine Verkehrsinsel?" + }, + "crossing-is-zebra": { + "mappings": { + "0": { + "then": "Dies ist ein Zebrastreifen" + }, + "1": { + "then": "Dies ist kein Zebrastreifen" + } + }, + "question": "Ist das ein Zebrastreifen?" + }, + "crossing-right-turn-through-red": { + "mappings": { + "0": { + "then": "Ein Radfahrer kann bei roter Ampel rechts abbiegen" + }, + "1": { + "then": "Ein Radfahrer kann bei roter Ampel rechts abbiegen" + }, + "2": { + "then": "Ein Radfahrer kann bei roter Ampel nicht rechts abbiegen" + } + }, + "question": "Kann ein Radfahrer bei roter Ampel rechts abbiegen?" + }, + "crossing-tactile": { + "mappings": { + "0": { + "then": "An dieser Kreuzung gibt es ein Blindenleitsystem" + }, + "1": { + "then": "Diese Kreuzung hat kein Blindenleitsystem" + }, + "2": { + "then": "Diese Kreuzung hat taktile Pflasterung, ist aber nicht korrekt" + } + }, + "question": "Gibt es an dieser Kreuzung ein Blindenleitsystem?" + }, + "crossing-type": { + "mappings": { + "0": { + "then": "Kreuzungen ohne Ampeln" + }, + "1": { + "then": "Kreuzungen mit Ampeln" + }, + "2": { + "then": "Zebrastreifen" + } + }, + "question": "Was ist das für eine Kreuzung?" + } + }, + "title": { + "mappings": { + "0": { + "then": "Ampel" + }, + "1": { + "then": "Kreuzung mit Ampeln" + } + }, + "render": "Kreuzung" + } + }, + "cycleways_and_roads": { + "name": "Radwege und Straßen", + "tagRenderings": { + "Cycleway type for a road": { + "mappings": { + "0": { + "then": "Es gibt eine geteilte Fahrspur" + }, + "1": { + "then": "Es gibt eine Spur neben der Straße (getrennt durch eine Straßenmarkierung)" + }, + "2": { + "then": "Es gibt einen Weg, aber keinen Radweg, der auf der Karte getrennt von dieser Straße eingezeichnet ist." + }, + "3": { + "then": "Hier ist ein getrennter Radweg vorhanden" + }, + "4": { + "then": "Es gibt keinen Radweg" + }, + "5": { + "then": "Es gibt keinen Radweg" + } + }, + "question": "Was für ein Radweg ist hier?" + }, + "Cycleway:smoothness": { + "mappings": { + "0": { + "then": "Geeignet für dünne Rollen: Rollerblades, Skateboard" + }, + "1": { + "then": "Geeignet für dünne Reifen: Rennrad" + }, + "2": { + "then": "Geeignet für normale Reifen: Fahrrad, Rollstuhl, Scooter" + }, + "3": { + "then": "Geeignet für breite Reifen: Trekkingfahrrad, Auto, Rikscha" + }, + "4": { + "then": "Geeignet für Fahrzeuge mit großer Bodenfreiheit: leichte Geländewagen" + }, + "5": { + "then": "Geeignet für Geländefahrzeuge: schwerer Geländewagen" + }, + "6": { + "then": "Geeignet für Geländefahrzeuge: Traktor, ATV" + }, + "7": { + "then": "Unpassierbar / Keine bereiften Fahrzeuge" + } + }, + "question": "Wie eben ist dieser Radweg?" + }, + "Cycleway:surface": { + "mappings": { + "0": { + "then": "Dieser Radweg hat keinen festen Belag" + }, + "1": { + "then": "Dieser Radweg hat einen festen Belag" + }, + "2": { + "then": "Der Radweg ist aus Asphalt" + }, + "3": { + "then": "Dieser Fahrradweg besteht aus ebenen Pflastersteinen" + }, + "4": { + "then": "Der Radweg ist aus Beton" + }, + "5": { + "then": "Dieser Radweg besteht aus Kopfsteinpflaster" + }, + "6": { + "then": "Dieser Fahrradweg besteht aus unregelmäßigem, unbehauenem Kopfsteinpflaster" + }, + "7": { + "then": "Dieser Fahrradweg besteht aus regelmäßigem, behauenem Kopfsteinpflaster" + }, + "8": { + "then": "Der Radweg ist aus Holz" + }, + "9": { + "then": "Der Radweg ist aus Schotter" + }, + "10": { + "then": "Dieser Radweg besteht aus feinem Schotter" + }, + "11": { + "then": "Der Radweg ist aus Kies" + }, + "12": { + "then": "Dieser Radweg besteht aus Rohboden" + } + }, + "question": "Was ist der Belag dieses Radwegs?", + "render": "Der Radweg ist aus {cycleway:surface}" + }, + "Is this a cyclestreet? (For a road)": { + "mappings": { + "0": { + "then": "Dies ist eine Fahrradstraße in einer 30km/h Zone." + }, + "1": { + "then": "Dies ist eine Fahrradstraße" + }, + "2": { + "then": "Dies ist keine Fahrradstraße." + } + }, + "question": "Ist das eine Fahrradstraße?" + }, + "Maxspeed (for road)": { + "mappings": { + "0": { + "then": "Die Höchstgeschwindigkeit ist 20 km/h" + }, + "1": { + "then": "Die Höchstgeschwindigkeit ist 30 km/h" + }, + "2": { + "then": "Die Höchstgeschwindigkeit ist 50 km/h" + }, + "3": { + "then": "Die Höchstgeschwindigkeit ist 70 km/h" + }, + "4": { + "then": "Die Höchstgeschwindigkeit ist 90 km/h" + } + }, + "question": "Was ist die Höchstgeschwindigkeit auf dieser Straße?", + "render": "Die Höchstgeschwindigkeit auf dieser Straße beträgt {maxspeed} km/h" + }, + "Surface of the road": { + "mappings": { + "0": { + "then": "Dieser Radweg ist nicht befestigt" + }, + "1": { + "then": "Dieser Radweg hat einen festen Belag" + }, + "2": { + "then": "Der Radweg ist aus Asphalt" + }, + "3": { + "then": "Dieser Fahrradweg besteht aus ebenen Pflastersteinen" + }, + "4": { + "then": "Der Radweg ist aus Beton" + }, + "5": { + "then": "Dieser Radweg besteht aus Kopfsteinpflaster" + }, + "6": { + "then": "Dieser Fahrradweg besteht aus unregelmäßigem, unbehauenem Kopfsteinpflaster" + }, + "7": { + "then": "Dieser Fahrradweg besteht aus regelmäßigem, behauenem Kopfsteinpflaster" + }, + "8": { + "then": "Der Radweg ist aus Holz" + }, + "9": { + "then": "Der Radweg ist aus Schotter" + }, + "10": { + "then": "Dieser Radweg besteht aus feinem Schotter" + }, + "11": { + "then": "Der Radweg ist aus Kies" + }, + "12": { + "then": "Dieser Radweg besteht aus Rohboden" + } + }, + "question": "Was ist der Belag dieser Straße?", + "render": "Der Radweg ist aus {surface}" + }, + "Surface of the street": { + "mappings": { + "0": { + "then": "Geeignet für dünne Rollen: Rollerblades, Skateboard" + }, + "1": { + "then": "Geeignet für dünne Reifen: Rennrad" + }, + "2": { + "then": "Geeignet für normale Reifen: Fahrrad, Rollstuhl, Scooter" + }, + "3": { + "then": "Geeignet für breite Reifen: Trekkingfahrrad, Auto, Rikscha" + }, + "4": { + "then": "Geeignet für Fahrzeuge mit großer Bodenfreiheit: leichte Geländewagen" + }, + "5": { + "then": "Geeignet für Geländefahrzeuge: schwerer Geländewagen" + }, + "6": { + "then": "Geeignet für spezielle Geländewagen: Traktor, ATV" + }, + "7": { + "then": "Unpassierbar / Keine bereiften Fahrzeuge" + } + }, + "question": "Wie eben ist diese Straße?" + }, + "cyclelan-segregation": { + "mappings": { + "0": { + "then": "Der Radweg ist abgegrenzt durch eine gestrichelte Linie" + }, + "1": { + "then": "Der Radweg ist abgegrenzt durch eine durchgezogene Linie" + }, + "2": { + "then": "Der Radweg ist abgegrenzt durch eine Parkspur" + }, + "3": { + "then": "Dieser Radweg ist getrennt durch einen Bordstein" + } + }, + "question": "Wie ist der Radweg von der Straße abgegrenzt?" + }, + "cycleway-lane-track-traffic-signs": { + "mappings": { + "0": { + "then": "Vorgeschriebener Radweg" + }, + "1": { + "then": "Vorgeschriebener Radweg (mit Zusatzschild)
" + }, + "2": { + "then": "Getrennter Fuß-/Radweg" + }, + "3": { + "then": "Gemeinsamer Fuß-/Radweg" + }, + "4": { + "then": "Kein Verkehrsschild vorhanden" + } + }, + "question": "Welches Verkehrszeichen hat dieser Radweg?" + }, + "cycleway-segregation": { + "mappings": { + "0": { + "then": "Der Radweg ist abgegrenzt durch eine gestrichelte Linie" + }, + "1": { + "then": "Der Radweg ist abgegrenzt durch eine durchgezogene Linie" + }, + "2": { + "then": "Der Radweg ist abgegrenzt durch eine Parkspur" + }, + "3": { + "then": "Dieser Radweg ist getrennt durch einen Bordstein" + } + }, + "question": "Wie ist der Radweg von der Straße abgegrenzt?" + }, + "cycleway-traffic-signs": { + "mappings": { + "0": { + "then": "Vorgeschriebener Radweg" + }, + "1": { + "then": "Vorgeschriebener Radweg (mit Zusatzschild)
" + }, + "2": { + "then": "Getrennter Fuß-/Radweg" + }, + "3": { + "then": "Gemeinsamer Fuß-/Radweg" + }, + "4": { + "then": "Kein Verkehrsschild vorhanden" + } + }, + "question": "Welches Verkehrszeichen hat dieser Radweg?" + }, + "cycleway-traffic-signs-supplementary": { + "mappings": { + "6": { + "then": "Kein zusätzliches Verkehrszeichen vorhanden" + } + }, + "question": "Hat das Verkehrszeichen D7 () ein Zusatzzeichen?" + }, + "cycleways_and_roads-cycleway:buffer": { + "question": "Wie breit ist der Abstand zwischen Radweg und Straße?", + "render": "Der Sicherheitsabstand zu diesem Radweg beträgt {cycleway:buffer} m" + }, + "is lit?": { + "mappings": { + "0": { + "then": "Diese Straße ist beleuchtet" + }, + "1": { + "then": "Diese Straße ist nicht beleuchtet" + }, + "2": { + "then": "Diese Straße ist nachts beleuchtet" + }, + "3": { + "then": "Diese Straße ist durchgehend beleuchtet" + } + }, + "question": "Ist diese Straße beleuchtet?" + }, + "width:carriageway": { + "question": "Wie groß ist die Fahrbahnbreite dieser Straße (in Metern)?
Diese wird von Bordstein zu Bordstein gemessen und schließt daher die Breite von parallelen Parkspuren ein", + "render": "Die Fahrbahnbreite dieser Straße beträgt {width:carriageway}m" + } + }, + "title": { + "mappings": { + "0": { + "then": "Radweg" + }, + "1": { + "then": "Gemeinsame Fahrspur" + }, + "2": { + "then": "Fahrradspur" + }, + "3": { + "then": "Radweg neben der Straße" + }, + "4": { + "then": "Fahrradstraße" + } + }, + "render": "Radwege" + } + }, + "defibrillator": { + "name": "Defibrillatoren", + "presets": { + "0": { + "title": "Defibrillator" + } + }, + "tagRenderings": { + "defibrillator-access": { + "mappings": { + "0": { + "then": "Öffentlich zugänglich" + }, + "1": { + "then": "Öffentlich zugänglich" + }, + "2": { + "then": "Nur für Kunden zugänglich" + }, + "3": { + "then": "Nicht für die Öffentlichkeit zugänglich (z.B. nur für das Personal, die Eigentümer, ...)" + }, + "4": { + "then": "Nicht zugänglich, möglicherweise nur für betriebliche Nutzung" + } + }, + "question": "Ist dieser Defibrillator frei zugänglich?", + "render": "Zugang ist {access}" + }, + "defibrillator-defibrillator": { + "mappings": { + "0": { + "then": "Es gibt keine Informationen über den Gerätetyp" + }, + "1": { + "then": "Dies ist ein manueller Defibrillator für den professionellen Einsatz" + }, + "2": { + "then": "Dies ist ein normaler automatischer Defibrillator" + } + }, + "question": "Ist dies ein normaler automatischer Defibrillator oder ein manueller Defibrillator nur für Profis?" + }, + "defibrillator-defibrillator:location": { + "question": "Bitte geben Sie einige Erläuterungen dazu, wo der Defibrillator zu finden ist (in der lokalen Sprache)", + "render": "Zusätzliche Informationen über den Standort (in der Landessprache):
{defibrillator:location}" + }, + "defibrillator-defibrillator:location:en": { + "question": "Bitte geben Sie einige Erläuterungen dazu, wo der Defibrillator zu finden ist (auf Englisch)", + "render": "Zusätzliche Informationen über den Standort (auf Englisch):
{defibrillator:location:en}" + }, + "defibrillator-defibrillator:location:fr": { + "question": "Bitte geben Sie einige Erläuterungen dazu, wo der Defibrillator zu finden ist (auf Französisch)", + "render": "Zusätzliche Informationen zum Standort (auf Französisch):
{defibrillator:location:fr}" + }, + "defibrillator-description": { + "question": "Gibt es nützliche Informationen für Benutzer, die Sie oben nicht beschreiben konnten? (leer lassen, wenn nein)", + "render": "Zusätzliche Informationen: {description}" + }, + "defibrillator-email": { + "question": "Wie lautet die E-Mail für Fragen zu diesem Defibrillator?", + "render": "E-Mail für Fragen zu diesem Defibrillator: {email}" + }, + "defibrillator-fixme": { + "question": "Gibt es einen Fehler in der Kartierung, den Sie hier nicht beheben konnten? (hinterlasse eine Notiz an OpenStreetMap-Experten)", + "render": "Zusätzliche Informationen für OpenStreetMap-Experten: {fixme}" + }, + "defibrillator-indoors": { + "mappings": { + "0": { + "then": "Dieser Defibrillator befindet sich im Gebäude" + }, + "1": { + "then": "Dieser Defibrillator befindet sich im Freien" + } + }, + "question": "Befindet sich dieser Defibrillator im Gebäude?" + }, + "defibrillator-level": { + "mappings": { + "0": { + "then": "Dieser Defibrillator befindet sich im Erdgeschoss" + }, + "1": { + "then": "Dieser Defibrillator befindet sich in der ersten Etage" + } + }, + "question": "In welchem Stockwerk befindet sich dieser Defibrillator?", + "render": "Dieser Defibrallator befindet sich im {level}. Stockwerk" + }, + "defibrillator-opening_hours": { + "mappings": { + "0": { + "then": "24/7 geöffnet (auch an Feiertagen)" + } + }, + "question": "Zu welchen Zeiten ist dieser Defibrillator verfügbar?", + "render": "{opening_hours_table(opening_hours)}" + }, + "defibrillator-phone": { + "question": "Wie lautet die Telefonnummer für Fragen zu diesem Defibrillator?", + "render": "Telefonnummer für Fragen zu diesem Defibrillator: {phone}" + }, + "defibrillator-ref": { + "question": "Wie lautet die offizielle Identifikationsnummer des Geräts? (falls am Gerät sichtbar)", + "render": "Offizielle Identifikationsnummer des Geräts: {ref}" + }, + "defibrillator-survey:date": { + "mappings": { + "0": { + "then": "Heute überprüft!" + } + }, + "question": "Wann wurde dieser Defibrillator zuletzt überprüft?", + "render": "Dieser Defibrillator wurde zuletzt am {survey:date} überprüft" + } + }, + "title": { + "render": "Defibrillator" + } + }, + "direction": { + "description": "Diese Ebene visualisiert Richtungen", + "name": "Visualisierung der Richtung" + }, + "drinking_water": { + "name": "Trinkwasserstelle", + "presets": { + "0": { + "title": "trinkwasser" + } + }, + "tagRenderings": { + "Bottle refill": { + "mappings": { + "0": { + "then": "Es ist einfach, Wasserflaschen nachzufüllen" + }, + "1": { + "then": "Wasserflaschen passen möglicherweise nicht" + } + }, + "question": "Wie einfach ist es, Wasserflaschen zu füllen?" + }, + "Still in use?": { + "mappings": { + "0": { + "then": "Diese Trinkwasserstelle funktioniert" + }, + "1": { + "then": "Diese Trinkwasserstelle ist kaputt" + }, + "2": { + "then": "Diese Trinkwasserstelle wurde geschlossen" + } + }, + "question": "Ist diese Trinkwasserstelle noch in Betrieb?", + "render": "Der Betriebsstatus ist {operational_status}" + }, + "render-closest-drinking-water": { + "render": "Ein weiterer Trinkwasserbrunnen befindet sich in {_closest_other_drinking_water_distance} Meter" + } + }, + "title": { + "render": "Trinkwasserstelle" + } + }, + "etymology": { + "description": "Alle Objekte, die eine bekannte Namensherkunft haben", + "name": "Hat eine Namensherkunft", + "tagRenderings": { + "simple etymology": { + "mappings": { + "0": { + "then": "Der Ursprung dieses Namens ist in der gesamten Literatur unbekannt" + } + }, + "question": "Wonach ist dieses Objekt benannt?
Das könnte auf einem Straßenschild stehen", + "render": "Benannt nach {name:etymology}" + }, + "wikipedia-etymology": { + "question": "Was ist das Wikidata-Element, nach dem dieses Objekt benannt ist?", + "render": "

Wikipedia Artikel zur Namensherkunft

{wikipedia(name:etymology:wikidata):max-height:20rem}" + } + } + }, + "extinguisher": { + "description": "Kartenebene zur Anzeige von Hydranten.", + "name": "Karte mit Feuerlöschern.", + "presets": { + "0": { + "description": "Ein Feuerlöscher ist ein kleines, tragbares Gerät, das dazu dient, ein Feuer zu löschen", + "title": "Feuerlöscher" + } + }, + "tagRenderings": { + "extinguisher-location": { + "mappings": { + "0": { + "then": "Im Innenraum vorhanden." + }, + "1": { + "then": "Im Außenraum vorhanden." + } + }, + "question": "Wo befindet er sich?", + "render": "Standort: {location}" + } + }, + "title": { + "render": "Feuerlöscher" + } + }, + "fire_station": { + "description": "Kartenebene zur Darstellung von Feuerwachen.", + "name": "Karte der Feuerwachen", + "presets": { + "0": { + "description": "Eine Feuerwache ist ein Ort, an dem die Feuerwehrfahrzeuge und die Feuerwehrleute untergebracht sind, wenn sie nicht im Einsatz sind.", + "title": "Feuerwache" + } + }, + "tagRenderings": { + "station-agency": { + "mappings": { + "0": { + "then": "Brandschutzbehörde" + } + } + }, + "station-name": { + "question": "Wie lautet der Name dieser Feuerwache?" + } + }, + "title": { + "render": "Feuerwache" + } + }, + "food": { + "filter": { + "0": { + "options": { + "0": { + "question": "Aktuell geöffnet" + } + } + }, + "1": { + "options": { + "0": { + "question": "Hat vegetarische Speisen" + } + } + }, + "2": { + "options": { + "0": { + "question": "Bietet vegan Speisen an" + } + } + }, + "3": { + "options": { + "0": { + "question": "Hat halal Speisen" + } + } + } + }, + "name": "Restaurants und Fast Food", + "presets": { + "0": { + "description": "Ein klassisches Speiselokal mit Sitzgelegenheiten, in dem vollständige Mahlzeiten von Kellnern serviert werden", + "title": "Restaurant" + }, + "1": { + "description": "Ein Lebensmittelunternehmen, das sich auf schnellen Thekendienst und Essen zum Mitnehmen konzentriert", + "title": "Schnellimbiss" + }, + "2": { + "title": "Pommesbude" + } + }, + "tagRenderings": { + "Cuisine": { + "mappings": { + "0": { + "then": "Dies ist eine Pizzeria" + }, + "1": { + "then": "Dies ist eine Pommesbude" + }, + "2": { + "then": "Bietet vorwiegend Pastagerichte an" + } + }, + "question": "Welches Essen gibt es hier?", + "render": "An diesem Ort gibt es hauptsächlich {cuisine}" + }, + "Fastfood vs restaurant": { + "question": "Um was für ein Geschäft handelt es sich?" + }, + "Name": { + "question": "Wie heißt dieses Restaurant?", + "render": "Das Restaurant heißt {name}" + }, + "Takeaway": { + "mappings": { + "0": { + "then": "Dieses Geschäft bietet nur Artikel zur Mitnahme an" + }, + "1": { + "then": "Mitnahme möglich" + }, + "2": { + "then": "Mitnahme nicht möglich" + } + }, + "question": "Ist an diesem Ort Mitnahme möglich?" + }, + "Vegetarian (no friture)": { + "question": "Gibt es im das Restaurant vegetarische Speisen?" + }, + "friture-take-your-container": { + "mappings": { + "0": { + "then": "Sie können ihre eigenen Behälter mitbringen, um Ihre Bestellung zu erhalten, was Einwegverpackungsmaterial und damit Abfall spart" + }, + "1": { + "then": "Das Mitbringen eines eigenen Containers ist nicht erlaubt" + }, + "2": { + "then": "Sie müssen Ihren eigenen Behälter mitbringen, um hier zu bestellen." + } + }, + "question": "Wenn Sie Ihr eigenes Behältnis mitbringen (z. B. einen Kochtopf und kleine Töpfe), wird es dann zum Verpacken Ihrer Bestellung verwendet?
" + }, + "halal (no friture)": { + "mappings": { + "0": { + "then": "Hier gibt es keine halal Speisen" + }, + "1": { + "then": "Hier gibt es wenige halal Speisen" + }, + "2": { + "then": "Es gibt halal Speisen" + }, + "3": { + "then": "Es gibt ausschließlich halal Speisen" + } + }, + "question": "Gibt es im das Restaurant halal Speisen?" + } + }, + "title": { + "mappings": { + "0": { + "then": "Restaurant {name}" + }, + "1": { + "then": "Schnellrestaurant{name}" + }, + "2": { + "then": "Schnellrestaurant" + } + } + } + }, + "ghost_bike": { + "name": "Geisterräder", + "presets": { + "0": { + "title": "Geisterrad" + } + }, + "tagRenderings": { + "ghost-bike-explanation": { + "render": "Ein Geisterrad ist ein Denkmal für einen Radfahrer, der bei einem Verkehrsunfall ums Leben kam, in Form eines weißen Fahrrades, das dauerhaft in der Nähe des Unfallortes aufgestellt wird." + }, + "ghost_bike-inscription": { + "question": "Wie lautet die Inschrift auf diesem Geisterrad?", + "render": "{inscription}" + }, + "ghost_bike-name": { + "mappings": { + "0": { + "then": "Auf dem Fahrrad ist kein Name angegeben" + } + }, + "question": "An wen erinnert dieses Geisterrad?
Bitte respektieren Sie die Privatsphäre - geben Sie den Namen nur an, wenn er weit verbreitet oder auf dem Fahrrad markiert ist. Den Familiennamen können Sie weglassen.
", + "render": "Im Gedenken an {name}" + }, + "ghost_bike-source": { + "question": "Auf welcher Webseite kann man mehr Informationen über das Geisterrad oder den Unfall finden?", + "render": "Mehr Informationen" + }, + "ghost_bike-start_date": { + "question": "Wann wurde dieses Geisterrad aufgestellt?", + "render": "Aufgestellt am {start_date}" + } + }, + "title": { + "mappings": { + "0": { + "then": "Geisterrad im Gedenken an {name}" + } + }, + "render": "Geisterrad" + } + }, + "hydrant": { + "description": "Kartenebene zur Anzeige von Hydranten.", + "name": "Karte der Hydranten", + "presets": { + "0": { + "description": "Ein Hydrant ist ein Anschlusspunkt, an dem die Feuerwehr Wasser zapfen kann. Er kann sich unterirdisch befinden.", + "title": "Löschwasser-Hydrant" + } + }, + "tagRenderings": { + "hydrant-color": { + "mappings": { + "0": { + "then": "Die Farbe des Hydranten ist unbekannt." + }, + "1": { + "then": "Die Farbe des Hydranten ist gelb." + }, + "2": { + "then": "Die Farbe des Hydranten ist rot." + } + }, + "question": "Welche Farbe hat der Hydrant?", + "render": "Der Hydrant hat die Farbe {colour}" + }, + "hydrant-state": { + "mappings": { + "0": { + "then": "Der Hydrant ist (ganz oder teilweise) in Betrieb" + }, + "1": { + "then": "Der Hydrant ist nicht verfügbar" + }, + "2": { + "then": "Der Hydrant wurde entfernt" + } + }, + "question": "Ist dieser Hydrant noch in Betrieb?" + }, + "hydrant-type": { + "mappings": { + "0": { + "then": "Der Typ des Hydranten ist unbekannt." + }, + "1": { + "then": "Säulenart." + }, + "2": { + "then": "Rohrtyp." + }, + "3": { + "then": "Wandtyp." + }, + "4": { + "then": "Untergrundtyp." + } + }, + "question": "Um welche Art von Hydrant handelt es sich?", + "render": " Hydranten-Typ: {fire_hydrant:type}" + } + }, + "title": { + "render": "Hydrant" + } + }, + "information_board": { + "name": "Informationstafeln", + "presets": { + "0": { + "title": "informationstafel" + } + }, + "title": { + "render": "Informationstafel" + } + }, + "map": { + "description": "Eine Karte, die für Touristen gedacht ist und dauerhaft im öffentlichen Raum aufgestellt ist", + "name": "Karten", + "presets": { + "0": { + "description": "Fehlende Karte hinzufügen", + "title": "Karte" + } + }, + "tagRenderings": { + "map-attribution": { + "mappings": { + "0": { + "then": "OpenStreetMap ist eindeutig attributiert, einschließlich der ODBL-Lizenz" + }, + "1": { + "then": "OpenStreetMap ist eindeutig attributiert, aber die Lizenz wird nicht erwähnt" + }, + "2": { + "then": "OpenStreetMap wurde nicht erwähnt, aber jemand hat einen OpenStreetMap-Aufkleber darauf geklebt" + }, + "3": { + "then": "Es gibt überhaupt keine Namensnennung" + }, + "4": { + "then": "Es gibt überhaupt keine Namensnennung" + } + }, + "question": "Ist die OpenStreetMap-Attribution vorhanden?" + }, + "map-map_source": { + "mappings": { + "0": { + "then": "Diese Karte basiert auf OpenStreetMap" + } + }, + "question": "Auf welchen Daten basiert diese Karte?", + "render": "Diese Karte basiert auf {map_source}" + } + }, + "title": { + "render": "Karte" + } + }, + "nature_reserve": { + "tagRenderings": { + "Curator": { + "question": "Wer ist der Verwalter dieses Naturschutzgebietes?
Respektieren Sie die Privatsphäre - geben Sie nur dann einen Namen an, wenn dieser allgemein bekannt ist", + "render": "{curator} ist der Pfleger dieses Naturschutzgebietes" + }, + "Dogs?": { + "mappings": { + "0": { + "then": "Hunde müssen angeleint sein" + }, + "1": { + "then": "Hunde sind nicht erlaubt" + }, + "2": { + "then": "Hunde dürfen frei herumlaufen" + } + }, + "question": "Sind Hunde in diesem Naturschutzgebiet erlaubt?" + }, + "Email": { + "question": "An welche Email-Adresse kann man sich bei Fragen und Problemen zu diesem Naturschutzgebiet wenden?
Respektieren Sie die Privatsphäre - geben Sie nur dann eine persönliche Email-Adresse an, wenn diese allgemein bekannt ist", + "render": "{email}" + }, + "Surface area": { + "render": "Grundfläche: {_surface:ha}ha" + }, + "phone": { + "question": "Welche Telefonnummer kann man bei Fragen und Problemen zu diesem Naturschutzgebiet anrufen?
Respektieren Sie die Privatsphäre - geben Sie nur eine Telefonnummer an, wenn diese allgemein bekannt ist" + } + } + }, + "observation_tower": { + "description": "Türme zur Aussicht auf die umgebende Landschaft", + "name": "Aussichtstürme", + "tagRenderings": { + "Fee": { + "mappings": { + "0": { + "then": "Eintritt kostenlos" + } + }, + "question": "Was kostet der Zugang zu diesem Turm?", + "render": "Der Besuch des Turms kostet {charge}" + }, + "Height": { + "question": "Wie hoch ist dieser Turm?", + "render": "Dieser Turm ist {height} hoch" + }, + "Operator": { + "question": "Wer betreibt diesen Turm?", + "render": "Betrieben von {operator}" + }, + "name": { + "mappings": { + "0": { + "then": "Dieser Turm hat keinen eigenen Namen" + } + }, + "question": "Wie heißt dieser Turm?", + "render": "Der Name dieses Turms lautet {name}" + } + }, + "title": { + "mappings": { + "0": { + "then": "{name}" + } + }, + "render": "Beobachtungsturm" + }, + "units": { + "0": { + "applicableUnits": { + "0": { + "human": " Meter" + } + } + } + } + }, + "picnic_table": { + "description": "Die Ebene zeigt Picknicktische an", + "name": "Picknick-Tische", + "presets": { + "0": { + "title": "picknicktisch" + } + }, + "tagRenderings": { + "picnic_table-material": { + "mappings": { + "0": { + "then": "Dies ist ein Picknicktisch aus Holz" + }, + "1": { + "then": "Dies ist ein Picknicktisch aus Beton" + } + }, + "question": "Aus welchem Material besteht dieser Picknicktisch?", + "render": "Dieser Picknicktisch besteht aus {material}" + } + }, + "title": { + "render": "Picknick-Tisch" + } + }, + "playground": { + "description": "Spielplätze", + "name": "Spielplätze", + "presets": { + "0": { + "title": "spielplatz" + } + }, + "tagRenderings": { + "Playground-wheelchair": { + "mappings": { + "0": { + "then": "Vollständig zugänglich für Rollstuhlfahrer" + }, + "1": { + "then": "Eingeschränkte Zugänglichkeit für Rollstuhlfahrer" + }, + "2": { + "then": "Nicht zugänglich für Rollstuhlfahrer" + } + }, + "question": "Ist dieser Spielplatz für Rollstuhlfahrer zugänglich?" + }, + "playground-access": { + "mappings": { + "0": { + "then": "Zugänglich für die Allgemeinheit" + }, + "1": { + "then": "Nur für Kunden des Betreibers zugänglich" + }, + "2": { + "then": "Nur für Schüler der Schule zugänglich" + }, + "3": { + "then": "Nicht zugänglich" + } + }, + "question": "Ist dieser Spielplatz für die Allgemeinheit zugänglich?" + }, + "playground-email": { + "question": "Wie lautet die E-Mail Adresse des Spielplatzbetreuers?", + "render": "{email}" + }, + "playground-lit": { + "mappings": { + "0": { + "then": "Dieser Spielplatz ist nachts beleuchtet" + }, + "1": { + "then": "Dieser Spielplatz ist nachts nicht beleuchtet" + } + }, + "question": "Ist dieser Spielplatz nachts beleuchtet?" + }, + "playground-max_age": { + "question": "Bis zu welchem Alter dürfen Kinder auf diesem Spielplatz spielen?", + "render": "Zugang nur für Kinder bis maximal {max_age}" + }, + "playground-min_age": { + "question": "Ab welchem Alter dürfen Kinder auf diesem Spielplatz spielen?", + "render": "Zugang nur für Kinder ab {min_age} Jahren" + }, + "playground-opening_hours": { + "mappings": { + "0": { + "then": "Zugänglich von Sonnenaufgang bis Sonnenuntergang" + }, + "1": { + "then": "Immer zugänglich" + } + }, + "question": "Wann ist dieser Spielplatz zugänglich?" + }, + "playground-operator": { + "question": "Wer betreibt diesen Spielplatz?", + "render": "Betrieben von {operator}" + }, + "playground-phone": { + "question": "Wie lautet die Telefonnummer vom Betreiber des Spielplatzes?", + "render": "{phone}" + }, + "playground-surface": { + "mappings": { + "0": { + "then": "Die Oberfläche ist Gras" + }, + "1": { + "then": "Die Oberfläche ist Sand" + }, + "2": { + "then": "Die Oberfläche besteht aus Holzschnitzeln" + }, + "3": { + "then": "Die Oberfläche ist Pflastersteine" + }, + "4": { + "then": "Die Oberfläche ist Asphalt" + }, + "5": { + "then": "Die Oberfläche ist Beton" + }, + "6": { + "then": "Die Oberfläche ist unbefestigt" + }, + "7": { + "then": "Die Oberfläche ist befestigt" + } + }, + "question": "Welche Oberfläche hat dieser Spielplatz?
Wenn es mehrere gibt, wähle die am häufigsten vorkommende aus", + "render": "Die Oberfläche ist {surface}" + } + }, + "title": { + "mappings": { + "0": { + "then": "Spielplatz {name}" + } + }, + "render": "Spielplatz" + } + }, + "public_bookcase": { + "description": "Ein Bücherschrank am Straßenrand mit Büchern, für jedermann zugänglich", + "filter": { + "2": { + "options": { + "0": { + "question": "Innen oder Außen" + } + } + } + }, + "name": "Bücherschränke", + "presets": { + "0": { + "title": "Bücherschrank" + } + }, + "tagRenderings": { + "bookcase-booktypes": { + "mappings": { + "0": { + "then": "Vorwiegend Kinderbücher" + }, + "1": { + "then": "Vorwiegend Bücher für Erwachsene" + }, + "2": { + "then": "Sowohl Bücher für Kinder als auch für Erwachsene" + } + }, + "question": "Welche Art von Büchern sind in diesem öffentlichen Bücherschrank zu finden?" + }, + "bookcase-is-accessible": { + "mappings": { + "0": { + "then": "Öffentlich zugänglich" + }, + "1": { + "then": "Nur für Kunden zugänglich" + } + }, + "question": "Ist dieser öffentliche Bücherschrank frei zugänglich?" + }, + "bookcase-is-indoors": { + "mappings": { + "0": { + "then": "Dieser Bücherschrank befindet sich im Innenbereich" + }, + "1": { + "then": "Dieser Bücherschrank befindet sich im Freien" + }, + "2": { + "then": "Dieser Bücherschrank befindet sich im Freien" + } + }, + "question": "Befindet sich dieser Bücherschrank im Freien?" + }, + "public_bookcase-brand": { + "mappings": { + "0": { + "then": "Teil des Netzwerks 'Little Free Library'" + }, + "1": { + "then": "Dieser öffentliche Bücherschrank ist nicht Teil eines größeren Netzwerks" + } + }, + "question": "Ist dieser öffentliche Bücherschrank Teil eines größeren Netzwerks?", + "render": "Dieser Bücherschrank ist Teil von {brand}" + }, + "public_bookcase-capacity": { + "question": "Wie viele Bücher passen in diesen öffentlichen Bücherschrank?", + "render": "{capacity} Bücher passen in diesen Bücherschrank" + }, + "public_bookcase-name": { + "mappings": { + "0": { + "then": "Dieser Bücherschrank hat keinen Namen" + } + }, + "question": "Wie heißt dieser öffentliche Bücherschrank?", + "render": "Der Name dieses Bücherschrank lautet {name}" + }, + "public_bookcase-operator": { + "question": "Wer unterhält diesen öffentlichen Bücherschrank?", + "render": "Betrieben von {operator}" + }, + "public_bookcase-ref": { + "mappings": { + "0": { + "then": "Dieser Bücherschrank ist nicht Teil eines größeren Netzwerks" + } + }, + "question": "Wie lautet die Referenznummer dieses öffentlichen Bücherschranks?", + "render": "Die Referenznummer dieses öffentlichen Bücherschranks innerhalb {brand} lautet {ref}" + }, + "public_bookcase-start_date": { + "question": "Wann wurde dieser öffentliche Bücherschrank installiert?", + "render": "Installiert am {start_date}" + }, + "public_bookcase-website": { + "question": "Gibt es eine Website mit weiteren Informationen über diesen öffentlichen Bücherschrank?", + "render": "Weitere Informationen auf der Webseite" + } + }, + "title": { + "mappings": { + "0": { + "then": "Öffentlicher Bücherschrank {name}" + } + }, + "render": "Bücherschrank" + } + }, + "shops": { + "description": "Ein Geschäft", + "name": "Geschäft", + "presets": { + "0": { + "description": "Ein neues Geschäft hinzufügen", + "title": "Geschäft" + } + }, + "tagRenderings": { + "shops-email": { + "question": "Wie ist die Email-Adresse dieses Geschäfts?" + }, + "shops-name": { + "question": "Wie ist der Name dieses Geschäfts?" + }, + "shops-opening_hours": { + "question": "Wie sind die Öffnungszeiten dieses Geschäfts?" + }, + "shops-phone": { + "question": "Wie ist die Telefonnummer?", + "render": "{phone}" + }, + "shops-shop": { + "mappings": { + "0": { + "then": "Lebensmittelladen" + }, + "1": { + "then": "Supermarkt" + }, + "2": { + "then": "Bekleidungsgeschäft" + }, + "3": { + "then": "Friseur" + }, + "4": { + "then": "Bäckerei" + }, + "5": { + "then": "Autowerkstatt" + }, + "6": { + "then": "Autohändler" + } + }, + "question": "Was wird in diesem Geschäft verkauft?", + "render": "Dieses Geschäft verkauft {shop}" + }, + "shops-website": { + "question": "Wie lautet die Webseite dieses Geschäfts?", + "render": "{website}" + } + }, + "title": { + "mappings": { + "0": { + "then": "{name}" + }, + "1": { + "then": "{shop}" + } + }, + "render": "Geschäft" + } + }, + "slow_roads": { + "tagRenderings": { + "slow_roads-surface": { + "mappings": { + "0": { + "then": "Die Oberfläche ist Gras" + }, + "1": { + "then": "Die Oberfläche ist Erde" + }, + "2": { + "then": "Die Oberfläche ist ohne festen Belag" + }, + "3": { + "then": "Die Oberfläche ist Sand" + }, + "4": { + "then": "Die Oberfläche ist aus Pflastersteinen" + }, + "5": { + "then": "Die Oberfläche ist Asphalt" + }, + "6": { + "then": "Die Oberfläche ist Beton" + }, + "7": { + "then": "Die Oberfläche ist gepflastert" + } + }, + "render": "Die Oberfläche ist {surface}" + } + } + }, + "sport_pitch": { + "description": "Ein Sportplatz", + "name": "Sportplätze", + "presets": { + "0": { + "title": "Tischtennisplatte" + }, + "1": { + "title": "Sportplatz" + } + }, + "tagRenderings": { + "sport-pitch-access": { + "mappings": { + "0": { + "then": "Öffentlicher Zugang" + }, + "1": { + "then": "Eingeschränkter Zugang (z. B. nur mit Termin, zu bestimmten Zeiten, ...)" + }, + "2": { + "then": "Zugang nur für Vereinsmitglieder" + }, + "3": { + "then": "Privat - kein öffentlicher Zugang" + } + }, + "question": "Ist dieser Sportplatz öffentlich zugänglich?" + }, + "sport-pitch-reservation": { + "mappings": { + "0": { + "then": "Für die Nutzung des Sportplatzes ist eine Voranmeldung erforderlich" + }, + "1": { + "then": "Für die Nutzung des Sportplatzes wird eine Voranmeldung empfohlen" + }, + "2": { + "then": "Eine Voranmeldung ist möglich, aber nicht notwendig, um diesen Sportplatz zu nutzen" + }, + "3": { + "then": "Termine nach Vereinbarung nicht möglich" + } + }, + "question": "Muss man einen Termin vereinbaren, um diesen Sportplatz zu benutzen?" + }, + "sport_pitch-email": { + "question": "Wie ist die Email-Adresse des Betreibers?" + }, + "sport_pitch-opening_hours": { + "mappings": { + "1": { + "then": "Immer zugänglich" + } + }, + "question": "Wann ist dieser Sportplatz zugänglich?" + }, + "sport_pitch-phone": { + "question": "Wie ist die Telefonnummer des Betreibers?" + }, + "sport_pitch-sport": { + "mappings": { + "0": { + "then": "Hier wird Basketball gespielt" + }, + "1": { + "then": "Hier wird Fußball gespielt" + }, + "2": { + "then": "Dies ist eine Tischtennisplatte" + }, + "3": { + "then": "Hier wird Tennis gespielt" + }, + "4": { + "then": "Hier wird Kopfball gespielt" + }, + "5": { + "then": "Hier wird Basketball gespielt" + } + }, + "question": "Welche Sportarten können hier gespielt werden?", + "render": "Hier wird {sport} gespielt" + }, + "sport_pitch-surface": { + "mappings": { + "0": { + "then": "Die Oberfläche ist Gras" + }, + "1": { + "then": "Die Oberfläche ist Sand" + }, + "2": { + "then": "Die Oberfläche ist aus Pflastersteinen" + }, + "3": { + "then": "Die Oberfläche ist Asphalt" + }, + "4": { + "then": "Die Oberfläche ist Beton" + } + }, + "question": "Was ist die Oberfläche dieses Sportplatzes?", + "render": "Die Oberfläche ist {surface}" + } + }, + "title": { + "render": "Sportplatz" + } + }, + "surveillance_camera": { + "name": "Überwachungskameras", + "tagRenderings": { + "Camera type: fixed; panning; dome": { + "mappings": { + "0": { + "then": "Eine fest montierte (nicht bewegliche) Kamera" + }, + "1": { + "then": "Eine Kuppelkamera (drehbar)" + }, + "2": { + "then": "Eine bewegliche Kamera" + } + }, + "question": "Um welche Kameratyp handelt se sich?" + }, + "Level": { + "question": "Auf welcher Ebene befindet sich diese Kamera?", + "render": "Befindet sich auf Ebene {level}" + }, + "Operator": { + "question": "Wer betreibt diese CCTV Kamera?", + "render": "Betrieben von {operator}" + }, + "Surveillance type: public, outdoor, indoor": { + "mappings": { + "0": { + "then": "Überwacht wird ein öffentlicher Bereich, z. B. eine Straße, eine Brücke, ein Platz, ein Park, ein Bahnhof, ein öffentlicher Korridor oder Tunnel,..." + }, + "1": { + "then": "Ein privater Außenbereich wird überwacht (z. B. ein Parkplatz, eine Tankstelle, ein Innenhof, ein Eingang, eine private Einfahrt, ...)" + }, + "2": { + "then": "Ein privater Innenbereich wird überwacht, z. B. ein Geschäft, eine private Tiefgarage, ..." + } + }, + "question": "Um was für eine Überwachungskamera handelt es sich" + }, + "Surveillance:zone": { + "mappings": { + "0": { + "then": "Überwacht einen Parkplatz" + }, + "1": { + "then": "Überwacht den Verkehr" + }, + "2": { + "then": "Überwacht einen Eingang" + }, + "3": { + "then": "Überwacht einen Gang" + }, + "4": { + "then": "Überwacht eine Haltestelle" + }, + "5": { + "then": "Überwacht ein Geschäft" + } + }, + "question": "Was genau wird hier überwacht?", + "render": " Überwacht ein/e {surveillance:zone}" + }, + "camera:mount": { + "mappings": { + "0": { + "then": "Diese Kamera ist an einer Wand montiert" + }, + "1": { + "then": "Diese Kamera ist an einer Stange montiert" + }, + "2": { + "then": "Diese Kamera ist an der Decke montiert" + } + }, + "question": "Wie ist diese Kamera montiert?", + "render": "Montageart: {camera:mount}" + }, + "camera_direction": { + "question": "In welche Himmelsrichtung ist diese Kamera ausgerichtet?" + }, + "is_indoor": { + "mappings": { + "0": { + "then": "Diese Kamera befindet sich im Innenraum" + }, + "1": { + "then": "Diese Kamera befindet sich im Freien" + }, + "2": { + "then": "Diese Kamera ist möglicherweise im Freien" + } + }, + "question": "Handelt es sich bei dem von dieser Kamera überwachten öffentlichen Raum um einen Innen- oder Außenbereich?" + } + }, + "title": { + "render": "Überwachungskamera" + } + }, + "toilet": { + "filter": { + "0": { + "options": { + "0": { + "question": "Rollstuhlgerecht" + } + } + }, + "1": { + "options": { + "0": { + "question": "Hat einen Wickeltisch" + } + } + }, + "2": { + "options": { + "0": { + "question": "Nutzung kostenlos" + } + } + } + }, + "name": "Toiletten", + "presets": { + "0": { + "title": "öffentlich zugängliche Toilette" + }, + "1": { + "description": "Eine Toilettenanlage mit mindestens einer rollstuhlgerechten Toilette", + "title": "toiletten mit rollstuhlgerechter Toilette" + } + }, + "tagRenderings": { + "toilet-access": { + "mappings": { + "0": { + "then": "Öffentlicher Zugang" + }, + "1": { + "then": "Nur Zugang für Kunden" + }, + "2": { + "then": "Nicht zugänglich" + }, + "3": { + "then": "Zugänglich, aber man muss einen Schlüssel für die Eingabe verlangen" + }, + "4": { + "then": "Öffentlicher Zugang" + } + }, + "question": "Sind diese Toiletten öffentlich zugänglich?", + "render": "Zugang ist {access}" + }, + "toilet-changing_table:location": { + "mappings": { + "0": { + "then": "Der Wickeltisch befindet sich in der Damentoilette. " + }, + "1": { + "then": "Der Wickeltisch befindet sich in der Herrentoilette. " + }, + "2": { + "then": "Der Wickeltisch befindet sich in der Toilette für Rollstuhlfahrer. " + }, + "3": { + "then": "Der Wickeltisch befindet sich in einem eigenen Raum. " + } + }, + "question": "Wo befindet sich der Wickeltisch?", + "render": "Die Wickeltabelle befindet sich in {changing_table:location}" + }, + "toilet-charge": { + "question": "Wie viel muss man für diese Toiletten bezahlen?", + "render": "Die Gebühr beträgt {charge}" + }, + "toilet-handwashing": { + "mappings": { + "0": { + "then": "Diese Toilette verfügt über ein Waschbecken" + }, + "1": { + "then": "Diese Toilette verfügt über kein Waschbecken" + } + }, + "question": "Verfügt diese Toilette über ein Waschbecken?" + }, + "toilet-has-paper": { + "mappings": { + "1": { + "then": "Für diese Toilette müssen Sie Ihr eigenes Toilettenpapier mitbringen" + } + }, + "question": "Muss man für diese Toilette sein eigenes Toilettenpapier mitbringen?" + }, + "toilets-changing-table": { + "mappings": { + "0": { + "then": "Ein Wickeltisch ist verfügbar" + }, + "1": { + "then": "Es ist kein Wickeltisch verfügbar" + } + }, + "question": "Ist ein Wickeltisch (zum Wechseln der Windeln) vorhanden?" + }, + "toilets-fee": { + "mappings": { + "0": { + "then": "Dies sind bezahlte Toiletten" + }, + "1": { + "then": "Kostenlose Nutzung" + } + }, + "question": "Können diese Toiletten kostenlos benutzt werden?" + }, + "toilets-type": { + "mappings": { + "0": { + "then": "Es gibt nur Sitztoiletten" + }, + "1": { + "then": "Hier gibt es nur Pissoirs" + }, + "2": { + "then": "Es gibt hier nur Hocktoiletten" + }, + "3": { + "then": "Sowohl Sitztoiletten als auch Pissoirs sind hier verfügbar" + } + }, + "question": "Welche Art von Toiletten sind das?" + }, + "toilets-wheelchair": { + "mappings": { + "0": { + "then": "Es gibt eine Toilette für Rollstuhlfahrer" + }, + "1": { + "then": "Kein Zugang für Rollstuhlfahrer" + } + }, + "question": "Gibt es eine Toilette für Rollstuhlfahrer?" + } + }, + "title": { + "render": "Toilette" + } + }, + "trail": { + "name": "Wanderwege", + "tagRenderings": { + "Color": { + "mappings": { + "0": { + "then": "Blauer Weg" + }, + "1": { + "then": "Roter Weg" + }, + "2": { + "then": "Grüner Weg" + }, + "3": { + "then": "Gelber Weg" + } + } + }, + "trail-length": { + "render": "Der Wanderweg ist {_length:km} Kilometer lang" + } + }, + "title": { + "render": "Wanderweg" + } + }, + "tree_node": { + "name": "Baum", + "presets": { + "0": { + "description": "Ein Baum mit Blättern, z. B. Eiche oder Buche.", + "title": "Laubbaum" + }, + "1": { + "description": "Ein Baum mit Nadeln, z. B. Kiefer oder Fichte.", + "title": "Nadelbaum" + }, + "2": { + "description": "Wenn Sie nicht sicher sind, ob es sich um einen Laubbaum oder einen Nadelbaum handelt.", + "title": "Baum" + } + }, + "tagRenderings": { + "tree-decidouous": { + "mappings": { + "0": { + "then": "Laubabwerfend: Der Baum verliert für eine gewisse Zeit des Jahres seine Blätter." + }, + "1": { + "then": "immergrüner Baum." + } + }, + "question": "Ist dies ein Nadelbaum oder ein Laubbaum?" + }, + "tree-denotation": { + "mappings": { + "0": { + "then": "Der Baum ist aufgrund seiner Größe oder seiner markanten Lage bedeutsam. Er ist nützlich zur Orientierung." + }, + "1": { + "then": "Der Baum ist ein Naturdenkmal, z. B. weil er besonders alt ist oder zu einer wertvollen Art gehört." + }, + "2": { + "then": "Der Baum wird für landwirtschaftliche Zwecke genutzt, z. B. in einer Obstplantage." + }, + "3": { + "then": "Der Baum steht in einem Park oder ähnlichem (Friedhof, Schulgelände, ...)." + }, + "5": { + "then": "Dieser Baum steht entlang einer Straße." + }, + "7": { + "then": "Dieser Baum steht außerhalb eines städtischen Gebiets." + } + }, + "question": "Wie bedeutsam ist dieser Baum? Wählen Sie die erste Antwort, die zutrifft." + }, + "tree-height": { + "mappings": { + "0": { + "then": "Höhe: {height} m" + } + }, + "render": "Höhe: {height}" + }, + "tree-heritage": { + "mappings": { + "0": { + "then": "Als Denkmal registriert von der Onroerend Erfgoed Flandern" + }, + "1": { + "then": "Als Denkmal registriert von der Direction du Patrimoine culturel Brüssel" + }, + "2": { + "then": "Von einer anderen Organisation als Denkmal registriert" + }, + "3": { + "then": "Nicht als Denkmal registriert" + }, + "4": { + "then": "Von einer anderen Organisation als Denkmal registriert" + } + }, + "question": "Ist dieser Baum ein Naturdenkmal?" + }, + "tree-leaf_type": { + "mappings": { + "0": { + "then": "Laubbaum" + }, + "1": { + "then": "Nadelbaum" + }, + "2": { + "then": "Dauerhaft blattlos" + } + }, + "question": "Ist dies ein Laub- oder Nadelbaum?" + }, + "tree_node-name": { + "mappings": { + "0": { + "then": "Der Baum hat keinen Namen." + } + }, + "question": "Hat der Baum einen Namen?", + "render": "Name: {name}" + }, + "tree_node-ref:OnroerendErfgoed": { + "question": "Wie lautet die Kennung der Onroerend Erfgoed Flanders?" + }, + "tree_node-wikidata": { + "question": "Was ist das passende Wikidata Element zu diesem Baum?", + "render": "\"\"/ Wikidata: {wikidata}" + } + }, + "title": { + "render": "Baum" + } + }, + "viewpoint": { + "description": "Ein schöner Aussichtspunkt oder eine schöne Aussicht. Ideal zum Hinzufügen eines Bildes, wenn keine andere Kategorie passt", + "name": "Aussichtspunkt", + "presets": { + "0": { + "title": "Aussichtspunkt" + } + }, + "tagRenderings": { + "viewpoint-description": { + "question": "Möchten Sie eine Beschreibung hinzufügen?" + } + }, + "title": { + "render": "Aussichtspunkt" + } + }, + "visitor_information_centre": { + "description": "Ein Besucherzentrum bietet Informationen über eine bestimmte Attraktion oder Sehenswürdigkeit, an der es sich befindet.", + "name": "Besucherinformationszentrum", + "title": { + "mappings": { + "1": { + "then": "{name}" + } + }, + "render": "{name}" + } + }, + "waste_basket": { + "description": "Dies ist ein öffentlicher Abfalleimer, in den Sie Ihren Müll entsorgen können.", + "filter": { + "0": { + "options": { + "0": { + "question": "Alle Typen" + }, + "1": { + "question": "Mülleimer für Zigaretten" + }, + "2": { + "question": "Mülleimer für Drogen" + }, + "3": { + "question": "Mülleimer für Hundekot" + }, + "4": { + "question": "Mülleimer für allgemeinen Müll" + }, + "5": { + "question": "Mülleimer für Nadeln und andere scharfe Gegenstände" + }, + "6": { + "question": "Mülleimer für Plastik" + } + } + }, + "1": { + "options": { + "0": { + "question": "Abfalleimer mit Spender für (Hunde-)Kotbeutel" + } + } + } + }, + "mapRendering": { + "0": { + "iconSize": { + "mappings": { + "0": { + "then": "Abfalleimer" + } + } + } + } + }, + "name": "Abfalleimer", + "presets": { + "0": { + "title": "Abfalleimer" + } + }, + "tagRenderings": { + "dispensing_dog_bags": { + "mappings": { + "0": { + "then": "Dieser Abfalleimer verfügt über einen Spender für (Hunde-)Kotbeutel" + }, + "1": { + "then": "Dieser Abfalleimer hat keinen Spender für (Hunde-)Kotbeutel" + }, + "2": { + "then": "Dieser Abfalleimer hat keinen Spender für (Hunde-)Kotbeutel" + } + }, + "question": "Verfügt dieser Abfalleimer über einen Spender für (Hunde-)Kotbeutel?" + }, + "waste-basket-waste-types": { + "mappings": { + "0": { + "then": "Ein Abfalleimer für allgemeinen Müll" + }, + "1": { + "then": "Ein Abfalleimer für allgemeinen Müll" + }, + "2": { + "then": "Ein Abfalleimer für Hundekot" + }, + "3": { + "then": "Mülleimer für Zigaretten" + }, + "4": { + "then": "Mülleimer für Drogen" + }, + "5": { + "then": "Ein Abfalleimer für Nadeln und andere scharfe Gegenstände" + }, + "6": { + "then": "Ein Abfalleimer für Plastik" + } + }, + "question": "Um was für einen Abfalleimer handelt es sich?" + } + }, + "title": { + "render": "Abfalleimer" + } + }, + "watermill": { + "name": "Wassermühle" } - }, - "watermill": { - "name": "Wassermühle" - } } \ No newline at end of file diff --git a/langs/layers/en.json b/langs/layers/en.json index f92ed53b29..ac5a293261 100644 --- a/langs/layers/en.json +++ b/langs/layers/en.json @@ -1,4166 +1,5326 @@ { - "artwork": { - "description": "Diverse pieces of artwork", - "name": "Artworks", - "presets": { - "0": { - "title": "Artwork" - } - }, - "tagRenderings": { - "artwork-artist_name": { - "question": "Which artist created this?", - "render": "Created by {artist_name}" - }, - "artwork-artwork_type": { - "mappings": { - "0": { - "then": "Architecture" - }, - "1": { - "then": "Mural" - }, - "2": { - "then": "Painting" - }, - "3": { - "then": "Sculpture" - }, - "4": { - "then": "Statue" - }, - "5": { - "then": "Bust" - }, - "6": { - "then": "Stone" - }, - "7": { - "then": "Installation" - }, - "8": { - "then": "Graffiti" - }, - "9": { - "then": "Relief" - }, - "10": { - "then": "Azulejo (Spanish decorative tilework)" - }, - "11": { - "then": "Tilework" - } + "address": { + "description": "Addresses", + "name": "Known addresses in OSM", + "tagRenderings": { + "fixme": { + "question": "What should be fixed here? Please explain" + }, + "housenumber": { + "mappings": { + "0": { + "then": "This building has no house number" + } + }, + "question": "What is the number of this house?", + "render": "The housenumber is {addr:housenumber}" + }, + "street": { + "question": "What street is this address located in?", + "render": "This address is in street {addr:street}" + } }, - "question": "What is the type of this artwork?", - "render": "This is a {artwork_type}" - }, - "artwork-website": { - "question": "Is there a website with more information about this artwork?", - "render": "More information on this website" - }, - "artwork-wikidata": { - "question": "Which Wikidata-entry corresponds with this artwork?", - "render": "Corresponds with {wikidata}" - } - }, - "title": { - "mappings": { - "0": { - "then": "Artwork {name}" + "title": { + "render": "Known address" } - }, - "render": "Artwork" - } - }, - "barrier": { - "description": "Obstacles while cycling, such as bollards and cycle barriers", - "name": "Barriers", - "presets": { - "0": { - "description": "A bollard in the road", - "title": "Bollard" - }, - "1": { - "description": "Cycle barrier, slowing down cyclists", - "title": "Cycle barrier" - } }, - "tagRenderings": { - "Bollard type": { - "mappings": { - "0": { - "then": "Removable bollard" - }, - "1": { - "then": "Fixed bollard" - }, - "2": { - "then": "Bollard that can be folded down" - }, - "3": { - "then": "Flexible bollard, usually plastic" - }, - "4": { - "then": "Rising bollard" - } - }, - "question": "What kind of bollard is this?" - }, - "Cycle barrier type": { - "mappings": { - "0": { - "then": "Single, just two barriers with a space inbetween " - }, - "1": { - "then": "Double, two barriers behind each other " - }, - "2": { - "then": "Triple, three barriers behind each other " - }, - "3": { - "then": "Squeeze gate, gap is smaller at top, than at the bottom " - } - }, - "question": "What kind of cycling barrier is this?" - }, - "MaxWidth": { - "question": "How wide is the gap left over besides the barrier?", - "render": "Maximum width: {maxwidth:physical} m" - }, - "Overlap (cyclebarrier)": { - "question": "How much overlap do the barriers have?", - "render": "Overlap: {overlap} m" - }, - "Space between barrier (cyclebarrier)": { - "question": "How much space is there between the barriers (along the length of the road)?", - "render": "Space between barriers (along the length of the road): {width:separation} m" - }, - "Width of opening (cyclebarrier)": { - "question": "How wide is the smallest opening next to the barriers?", - "render": "Width of opening: {width:opening} m" - }, - "bicycle=yes/no": { - "mappings": { - "0": { - "then": "A cyclist can go past this." - }, - "1": { - "then": "A cyclist can not go past this." - } - }, - "question": "Can a bicycle go past this barrier?" - } - }, - "title": { - "mappings": { - "0": { - "then": "Bollard" - }, - "1": { - "then": "Cycling Barrier" - } - }, - "render": "Barrier" - } - }, - "bench": { - "name": "Benches", - "presets": { - "0": { - "title": "bench" - } - }, - "tagRenderings": { - "bench-backrest": { - "mappings": { - "0": { - "then": "Backrest: Yes" - }, - "1": { - "then": "Backrest: No" - } - }, - "question": "Does this bench have a backrest?" - }, - "bench-colour": { - "mappings": { - "0": { - "then": "Colour: brown" - }, - "1": { - "then": "Colour: green" - }, - "2": { - "then": "Colour: gray" - }, - "3": { - "then": "Colour: white" - }, - "4": { - "then": "Colour: red" - }, - "5": { - "then": "Colour: black" - }, - "6": { - "then": "Colour: blue" - }, - "7": { - "then": "Colour: yellow" - } - }, - "question": "Which colour does this bench have?", - "render": "Colour: {colour}" - }, - "bench-direction": { - "question": "In which direction are you looking when sitting on the bench?", - "render": "When sitting on the bench, one looks towards {direction}°." - }, - "bench-material": { - "mappings": { - "0": { - "then": "Material: wood" - }, - "1": { - "then": "Material: metal" - }, - "2": { - "then": "Material: stone" - }, - "3": { - "then": "Material: concrete" - }, - "4": { - "then": "Material: plastic" - }, - "5": { - "then": "Material: steel" - } - }, - "question": "What is the bench (seating) made from?", - "render": "Material: {material}" - }, - "bench-seats": { - "question": "How many seats does this bench have?", - "render": "{seats} seats" - }, - "bench-survey:date": { - "question": "When was this bench last surveyed?", - "render": "This bench was last surveyed on {survey:date}" - } - }, - "title": { - "render": "Bench" - } - }, - "bench_at_pt": { - "name": "Benches at public transport stops", - "tagRenderings": { - "bench_at_pt-bench_type": { - "mappings": { - "0": { - "then": "There is a normal, sit-down bench here" - }, - "1": { - "then": "Stand up bench" - }, - "2": { - "then": "There is no bench here" - } - }, - "question": "What kind of bench is this?" - }, - "bench_at_pt-name": { - "render": "{name}" - } - }, - "title": { - "mappings": { - "0": { - "then": "Bench at public transport stop" - }, - "1": { - "then": "Bench in shelter" - } - }, - "render": "Bench" - } - }, - "bicycle_library": { - "description": "A facility where bicycles can be lent for longer period of times", - "name": "Bicycle library", - "presets": { - "0": { - "description": "A bicycle library has a collection of bikes which can be lent", - "title": "Fietsbibliotheek" - } - }, - "tagRenderings": { - "bicycle-library-target-group": { - "mappings": { - "0": { - "then": "Bikes for children available" - }, - "1": { - "then": "Bikes for adult available" - }, - "2": { - "then": "Bikes for disabled persons available" - } - }, - "question": "Who can lend bicycles here?" - }, - "bicycle_library-charge": { - "mappings": { - "0": { - "then": "Lending a bicycle is free" - }, - "1": { - "then": "Lending a bicycle costs €20/year and €20 warranty" - } - }, - "question": "How much does lending a bicycle cost?", - "render": "Lending a bicycle costs {charge}" - }, - "bicycle_library-name": { - "question": "What is the name of this bicycle library?", - "render": "This bicycle library is called {name}" - } - }, - "title": { - "render": "Bicycle library" - } - }, - "bicycle_tube_vending_machine": { - "name": "Bicycle tube vending machine", - "presets": { - "0": { - "title": "Bicycle tube vending machine" - } - }, - "tagRenderings": { - "Still in use?": { - "mappings": { - "0": { - "then": "This vending machine works" - }, - "1": { - "then": "This vending machine is broken" - }, - "2": { - "then": "This vending machine is closed" - } - }, - "question": "Is this vending machine still operational?", - "render": "The operational status is {operational_status}" - } - }, - "title": { - "render": "Bicycle tube vending machine" - } - }, - "bike_cafe": { - "name": "Bike cafe", - "presets": { - "0": { - "title": "Bike cafe" - } - }, - "tagRenderings": { - "bike_cafe-bike-pump": { - "mappings": { - "0": { - "then": "This bike cafe offers a bike pump for anyone" - }, - "1": { - "then": "This bike cafe doesn't offer a bike pump for anyone" - } - }, - "question": "Does this bike cafe offer a bike pump for use by anyone?" - }, - "bike_cafe-email": { - "question": "What is the email address of {name}?" - }, - "bike_cafe-name": { - "question": "What is the name of this bike cafe?", - "render": "This bike cafe is called {name}" - }, - "bike_cafe-opening_hours": { - "question": "When it this bike café opened?" - }, - "bike_cafe-phone": { - "question": "What is the phone number of {name}?" - }, - "bike_cafe-repair-service": { - "mappings": { - "0": { - "then": "This bike cafe repairs bikes" - }, - "1": { - "then": "This bike cafe doesn't repair bikes" - } - }, - "question": "Does this bike cafe repair bikes?" - }, - "bike_cafe-repair-tools": { - "mappings": { - "0": { - "then": "This bike cafe offers tools for DIY repair" - }, - "1": { - "then": "This bike cafe doesn't offer tools for DIY repair" - } - }, - "question": "Are there tools here to repair your own bike?" - }, - "bike_cafe-website": { - "question": "What is the website of {name}?" - } - }, - "title": { - "mappings": { - "0": { - "then": "Bike cafe {name}" - } - }, - "render": "Bike cafe" - } - }, - "bike_cleaning": { - "name": "Bike cleaning service", - "presets": { - "0": { - "title": "Bike cleaning service" - } - }, - "tagRenderings": { - "bike_cleaning-charge": { - "mappings": { - "0": { - "then": "Free to use cleaning service" - }, - "1": { - "then": "Free to use" - }, - "2": { - "then": "The cleaning service has a fee" - } - }, - "question": "How much does it cost to use the cleaning service?", - "render": "Using the cleaning service costs {charge}" - }, - "bike_cleaning-service:bicycle:cleaning:charge": { - "mappings": { - "0": { - "then": "The cleaning service is free to use" - }, - "1": { - "then": "Free to use" - }, - "2": { - "then": "The cleaning service has a fee, but the amount is not known" - } - }, - "question": "How much does it cost to use the cleaning service?", - "render": "Using the cleaning service costs {service:bicycle:cleaning:charge}" - } - }, - "title": { - "mappings": { - "0": { - "then": "Bike cleaning service {name}" - } - }, - "render": "Bike cleaning service" - } - }, - "bike_parking": { - "name": "Bike parking", - "presets": { - "0": { - "title": "Bike parking" - } - }, - "tagRenderings": { - "Access": { - "mappings": { - "0": { - "then": "Publicly accessible" - }, - "1": { - "then": "Access is primarily for visitors to a business" - }, - "2": { - "then": "Access is limited to members of a school, company or organisation" - } - }, - "question": "Who can use this bicycle parking?", - "render": "{access}" - }, - "Bicycle parking type": { - "mappings": { - "0": { - "then": "Staple racks " - }, - "1": { - "then": "Wheel rack/loops " - }, - "2": { - "then": "Handlebar holder " - }, - "3": { - "then": "Rack " - }, - "4": { - "then": "Two-tiered " - }, - "5": { - "then": "Shed " - }, - "6": { - "then": "Bollard " - }, - "7": { - "then": "An area on the floor which is marked for bicycle parking" - } - }, - "question": "What is the type of this bicycle parking?", - "render": "This is a bicycle parking of the type: {bicycle_parking}" - }, - "Capacity": { - "question": "How many bicycles fit in this bicycle parking (including possible cargo bicycles)?", - "render": "Place for {capacity} bikes" - }, - "Cargo bike capacity?": { - "question": "How many cargo bicycles fit in this bicycle parking?", - "render": "This parking fits {capacity:cargo_bike} cargo bikes" - }, - "Cargo bike spaces?": { - "mappings": { - "0": { - "then": "This parking has room for cargo bikes" - }, - "1": { - "then": "This parking has designated (official) spots for cargo bikes." - }, - "2": { - "then": "You're not allowed to park cargo bikes" - } - }, - "question": "Does this bicycle parking have spots for cargo bikes?" - }, - "Is covered?": { - "mappings": { - "0": { - "then": "This parking is covered (it has a roof)" - }, - "1": { - "then": "This parking is not covered" - } - }, - "question": "Is this parking covered? Also select \"covered\" for indoor parkings." - }, - "Underground?": { - "mappings": { - "0": { - "then": "Underground parking" - }, - "1": { - "then": "Surface level parking" - }, - "2": { - "then": "Rooftop parking" - }, - "3": { - "then": "Surface level parking" - }, - "4": { - "then": "Rooftop parking" - } - }, - "question": "What is the relative location of this bicycle parking?" - } - }, - "title": { - "render": "Bike parking" - } - }, - "bike_repair_station": { - "name": "Bike stations (repair, pump or both)", - "presets": { - "0": { - "description": "A device to inflate your tires on a fixed location in the public space.

Examples of bicycle pumps

", - "title": "Bike pump" - }, - "1": { - "description": "A device with tools to repair your bike combined with a pump at a fixed location. The tools are often secured with chains against theft.

Example

", - "title": "Bike repair station and pump" - }, - "2": { - "title": "Bike repair station without pump" - } - }, - "tagRenderings": { - "Email maintainer": { - "render": "Report this bicycle pump as broken" - }, - "Operational status": { - "mappings": { - "0": { - "then": "The bike pump is broken" - }, - "1": { - "then": "The bike pump is operational" - } - }, - "question": "Is the bike pump still operational?" - }, - "bike_repair_station-available-services": { - "mappings": { - "0": { - "then": "There is only a pump present" - }, - "1": { - "then": "There are only tools (screwdrivers, pliers...) present" - }, - "2": { - "then": "There are both tools and a pump present" - } - }, - "question": "Which services are available at this bike station?" - }, - "bike_repair_station-bike-chain-tool": { - "mappings": { - "0": { - "then": "There is a chain tool" - }, - "1": { - "then": "There is no chain tool" - } - }, - "question": "Does this bike repair station have a special tool to repair your bike chain?" - }, - "bike_repair_station-bike-stand": { - "mappings": { - "0": { - "then": "There is a hook or stand" - }, - "1": { - "then": "There is no hook or stand" - } - }, - "question": "Does this bike station have a hook to hang your bike on or a stand to raise it?" - }, - "bike_repair_station-electrical_pump": { - "mappings": { - "0": { - "then": "Manual pump" - }, - "1": { - "then": "Electrical pump" - } - }, - "question": "Is this an electric bike pump?" - }, - "bike_repair_station-email": { - "question": "What is the email address of the maintainer?" - }, - "bike_repair_station-manometer": { - "mappings": { - "0": { - "then": "There is a manometer" - }, - "1": { - "then": "There is no manometer" - }, - "2": { - "then": "There is manometer but it is broken" - } - }, - "question": "Does the pump have a pressure indicator or manometer?" - }, - "bike_repair_station-opening_hours": { - "mappings": { - "0": { - "then": "Always open" - }, - "1": { - "then": "Always open" - } - }, - "question": "When is this bicycle repair point open?" - }, - "bike_repair_station-operator": { - "question": "Who maintains this cycle pump?", - "render": "Maintained by {operator}" - }, - "bike_repair_station-phone": { - "question": "What is the phone number of the maintainer?" - }, - "bike_repair_station-valves": { - "mappings": { - "0": { - "then": "Sclaverand (also known as Presta)" - }, - "1": { - "then": "Dunlop" - }, - "2": { - "then": "Schrader (cars)" - } - }, - "question": "What valves are supported?", - "render": "This pump supports the following valves: {valves}" - } - }, - "title": { - "mappings": { - "0": { - "then": "Bike repair station" - }, - "1": { - "then": "Bike repair station" - }, - "2": { - "then": "Broken pump" - }, - "3": { - "then": "Bicycle pump {name}" - }, - "4": { - "then": "Bicycle pump" - } - }, - "render": "Bike station (pump & repair)" - } - }, - "bike_shop": { - "description": "A shop specifically selling bicycles or related items", - "name": "Bike repair/shop", - "presets": { - "0": { - "title": "Bike repair/shop" - } - }, - "tagRenderings": { - "bike_repair_bike-pump-service": { - "mappings": { - "0": { - "then": "This shop offers a bike pump for anyone" - }, - "1": { - "then": "This shop doesn't offer a bike pump for anyone" - }, - "2": { - "then": "There is bicycle pump, it is shown as a separate point " - } - }, - "question": "Does this shop offer a bike pump for use by anyone?" - }, - "bike_repair_bike-wash": { - "mappings": { - "0": { - "then": "This shop cleans bicycles" - }, - "1": { - "then": "This shop has an installation where one can clean bicycles themselves" - }, - "2": { - "then": "This shop doesn't offer bicycle cleaning" - } - }, - "question": "Are bicycles washed here?" - }, - "bike_repair_rents-bikes": { - "mappings": { - "0": { - "then": "This shop rents out bikes" - }, - "1": { - "then": "This shop doesn't rent out bikes" - } - }, - "question": "Does this shop rent out bikes?" - }, - "bike_repair_repairs-bikes": { - "mappings": { - "0": { - "then": "This shop repairs bikes" - }, - "1": { - "then": "This shop doesn't repair bikes" - }, - "2": { - "then": "This shop only repairs bikes bought here" - }, - "3": { - "then": "This shop only repairs bikes of a certain brand" - } - }, - "question": "Does this shop repair bikes?" - }, - "bike_repair_second-hand-bikes": { - "mappings": { - "0": { - "then": "This shop sells second-hand bikes" - }, - "1": { - "then": "This shop doesn't sell second-hand bikes" - }, - "2": { - "then": "This shop only sells second-hand bikes" - } - }, - "question": "Does this shop sell second-hand bikes?" - }, - "bike_repair_sells-bikes": { - "mappings": { - "0": { - "then": "This shop sells bikes" - }, - "1": { - "then": "This shop doesn't sell bikes" - } - }, - "question": "Does this shop sell bikes?" - }, - "bike_repair_tools-service": { - "mappings": { - "0": { - "then": "This shop offers tools for DIY repair" - }, - "1": { - "then": "This shop doesn't offer tools for DIY repair" - }, - "2": { - "then": "Tools for DIY repair are only available if you bought/hire the bike in the shop" - } - }, - "question": "Are there tools here to repair your own bike?" - }, - "bike_shop-email": { - "question": "What is the email address of {name}?" - }, - "bike_shop-is-bicycle_shop": { - "render": "This shop is specialized in selling {shop} and does bicycle related activities" - }, - "bike_shop-name": { - "question": "What is the name of this bicycle shop?", - "render": "This bicycle shop is called {name}" - }, - "bike_shop-phone": { - "question": "What is the phone number of {name}?" - }, - "bike_shop-website": { - "question": "What is the website of {name}?" - } - }, - "title": { - "mappings": { - "0": { - "then": "Sport gear shop {name}" - }, - "2": { - "then": "Bicycle rental {name}" - }, - "3": { - "then": "Bike repair {name}" - }, - "4": { - "then": "Bike shop {name}" - }, - "5": { - "then": "Bike repair/shop {name}" - } - }, - "render": "Bike repair/shop" - } - }, - "bike_themed_object": { - "name": "Bike related object", - "title": { - "mappings": { - "1": { - "then": "Cycle track" - } - }, - "render": "Bike related object" - } - }, - "binocular": { - "description": "Binoculas", - "name": "Binoculars", - "presets": { - "0": { - "description": "A telescope or pair of binoculars mounted on a pole, available to the public to look around. ", - "title": "binoculars" - } - }, - "tagRenderings": { - "binocular-charge": { - "mappings": { - "0": { - "then": "Free to use" - } - }, - "question": "How much does one have to pay to use these binoculars?", - "render": "Using these binoculars costs {charge}" - }, - "binocular-direction": { - "question": "When looking through this binocular, in what direction does one look?", - "render": "Looks towards {direction}°" - } - }, - "title": { - "render": "Binoculars" - } - }, - "birdhide": { - "filter": { - "0": { - "options": { - "0": { - "question": "Wheelchair accessible" - } - } - } - } - }, - "cafe_pub": { - "filter": { - "0": { - "options": { - "0": { - "question": "Opened now" - } - } - } - }, - "name": "Cafés and pubs", - "presets": { - "0": { - "title": "pub" - }, - "1": { - "title": "bar" - }, - "2": { - "title": "cafe" - } - }, - "tagRenderings": { - "Classification": { - "question": "What kind of cafe is this" - }, - "Name": { - "question": "What is the name of this pub?", - "render": "This pub is named {name}" - } - }, - "title": { - "mappings": { - "0": { - "then": "{name}" - } - } - } - }, - "charging_station": { - "description": "A charging station", - "filter": { - "0": { - "options": { - "0": { - "question": "All vehicle types" - }, - "1": { - "question": "Charging station for bicycles" - }, - "2": { - "question": "Charging station for cars" - } - } - }, - "1": { - "options": { - "0": { - "question": "Only working charging stations" - } - } - }, - "2": { - "options": { - "0": { - "question": "All connectors" - }, - "1": { - "question": "Has a
Schuko wall plug without ground pin (CEE7/4 type F)
connector" - }, - "2": { - "question": "Has a
European wall plug with ground pin (CEE7/4 type E)
connector" - }, - "3": { - "question": "Has a
Chademo
connector" - }, - "4": { - "question": "Has a
Type 1 with cable (J1772)
connector" - }, - "5": { - "question": "Has a
Type 1 without cable (J1772)
connector" - }, - "6": { - "question": "Has a
Type 1 CCS (aka Type 1 Combo)
connector" - }, - "7": { - "question": "Has a
Tesla Supercharger
connector" - }, - "8": { - "question": "Has a
Type 2 (mennekes)
connector" - }, - "9": { - "question": "Has a
Type 2 CCS (mennekes)
connector" - }, - "10": { - "question": "Has a
Type 2 with cable (mennekes)
connector" - }, - "11": { - "question": "Has a
Tesla Supercharger CCS (a branded type2_css)
connector" - }, - "12": { - "question": "Has a
Tesla Supercharger (destination)
connector" - }, - "13": { - "question": "Has a
Tesla supercharger (destination (A Type 2 with cable branded as tesla)
connector" - }, - "14": { - "question": "Has a
USB to charge phones and small electronics
connector" - }, - "15": { - "question": "Has a
Bosch Active Connect with 3 pins and cable
connector" - }, - "16": { - "question": "Has a
Bosch Active Connect with 5 pins and cable
connector" - } - } - } - }, - "name": "Charging stations", - "presets": { - "0": { - "title": "charging station with a normal european wall plug (meant to charge electrical bikes)" - }, - "1": { - "title": "charging station for e-bikes" - }, - "2": { - "title": "charging station for cars" - }, - "3": { - "title": "charging station" - } - }, - "tagRenderings": { - "Auth phone": { - "question": "What's the phone number for authentication call or SMS?", - "render": "Authenticate by calling or SMS'ing to {authentication:phone_call:number}" - }, - "Authentication": { - "mappings": { - "0": { - "then": "Authentication by a membership card" - }, - "1": { - "then": "Authentication by an app" - }, - "2": { - "then": "Authentication via phone call is available" - }, - "3": { - "then": "Authentication via SMS is available" - }, - "4": { - "then": "Authentication via NFC is available" - }, - "5": { - "then": "Authentication via Money Card is available" - }, - "6": { - "then": "Authentication via debit card is available" - }, - "7": { - "then": "Charging here is (also) possible without authentication" - } - }, - "question": "What kind of authentication is available at the charging station?" - }, - "Available_charging_stations (generated)": { - "mappings": { - "0": { - "then": "
Schuko wall plug without ground pin (CEE7/4 type F)
" - }, - "1": { - "then": "
Schuko wall plug without ground pin (CEE7/4 type F)
" - }, - "2": { - "then": "
European wall plug with ground pin (CEE7/4 type E)
" - }, - "3": { - "then": "
European wall plug with ground pin (CEE7/4 type E)
" - }, - "4": { - "then": "
Chademo
" - }, - "5": { - "then": "
Chademo
" - }, - "6": { - "then": "
Type 1 with cable (J1772)
" - }, - "7": { - "then": "
Type 1 with cable (J1772)
" - }, - "8": { - "then": "
Type 1 without cable (J1772)
" - }, - "9": { - "then": "
Type 1 without cable (J1772)
" - }, - "10": { - "then": "
Type 1 CCS (aka Type 1 Combo)
" - }, - "11": { - "then": "
Type 1 CCS (aka Type 1 Combo)
" - }, - "12": { - "then": "
Tesla Supercharger
" - }, - "13": { - "then": "
Tesla Supercharger
" - }, - "14": { - "then": "
Type 2 (mennekes)
" - }, - "15": { - "then": "
Type 2 (mennekes)
" - }, - "16": { - "then": "
Type 2 CCS (mennekes)
" - }, - "17": { - "then": "
Type 2 CCS (mennekes)
" - }, - "18": { - "then": "
Type 2 with cable (mennekes)
" - }, - "19": { - "then": "
Type 2 with cable (mennekes)
" - }, - "20": { - "then": "
Tesla Supercharger CCS (a branded type2_css)
" - }, - "21": { - "then": "
Tesla Supercharger CCS (a branded type2_css)
" - }, - "22": { - "then": "
Tesla Supercharger (destination)
" - }, - "23": { - "then": "
Tesla Supercharger (destination)
" - }, - "24": { - "then": "
Tesla supercharger (destination (A Type 2 with cable branded as tesla)
" - }, - "25": { - "then": "
Tesla supercharger (destination (A Type 2 with cable branded as tesla)
" - }, - "26": { - "then": "
USB to charge phones and small electronics
" - }, - "27": { - "then": "
USB to charge phones and small electronics
" - }, - "28": { - "then": "
Bosch Active Connect with 3 pins and cable
" - }, - "29": { - "then": "
Bosch Active Connect with 3 pins and cable
" - }, - "30": { - "then": "
Bosch Active Connect with 5 pins and cable
" - }, - "31": { - "then": "
Bosch Active Connect with 5 pins and cable
" - } - }, - "question": "Which charging connections are available here?" - }, - "Network": { - "mappings": { - "0": { - "then": "Not part of a bigger network" - }, - "1": { - "then": "Not part of a bigger network" - } - }, - "question": "Is this charging station part of a network?", - "render": "Part of the network {network}" - }, - "OH": { - "mappings": { - "0": { - "then": "24/7 opened (including holidays)" - } - }, - "question": "When is this charging station opened?" - }, - "Operational status": { - "mappings": { - "0": { - "then": "This charging station works" - }, - "1": { - "then": "This charging station is broken" - }, - "2": { - "then": "A charging station is planned here" - }, - "3": { - "then": "A charging station is constructed here" - }, - "4": { - "then": "This charging station has beed permanently disabled and is not in use anymore but is still visible" - } - }, - "question": "Is this charging point in use?" - }, - "Operator": { - "mappings": { - "0": { - "then": "Actually, {operator} is the network" - } - }, - "question": "Who is the operator of this charging station?", - "render": "This charging station is operated by {operator}" - }, - "Parking:fee": { - "mappings": { - "0": { - "then": "No additional parking cost while charging" - }, - "1": { - "then": "An additional parking fee should be paid while charging" - } - }, - "question": "Does one have to pay a parking fee while charging?" - }, - "Type": { - "mappings": { - "0": { - "then": "Bcycles can be charged here" - }, - "1": { - "then": "Cars can be charged here" - }, - "2": { - "then": "Scooters can be charged here" - }, - "3": { - "then": "Heavy good vehicles (such as trucks) can be charged here" - }, - "4": { - "then": "Buses can be charged here" - } - }, - "question": "Which vehicles are allowed to charge here?" - }, - "access": { - "mappings": { - "0": { - "then": "Anyone can use this charging station (payment might be needed)" - }, - "1": { - "then": "Anyone can use this charging station (payment might be needed)" - }, - "2": { - "then": "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" - }, - "3": { - "then": "Not accessible to the general public (e.g. only accessible to the owners, employees, ...)" - } - }, - "question": "Who is allowed to use this charging station?", - "render": "Access is {access}" - }, - "capacity": { - "question": "How much vehicles can be charged here at the same time?", - "render": "{capacity} vehicles can be charged here at the same time" - }, - "charge": { - "question": "How much does one have to pay to use this charging station?", - "render": "Using this charging station costs {charge}" - }, - "current-0": { - "mappings": { - "0": { - "then": "
Schuko wall plug without ground pin (CEE7/4 type F)
outputs at most 16 A" - } - }, - "question": "What current do the plugs with
Schuko wall plug without ground pin (CEE7/4 type F)
offer?", - "render": "
Schuko wall plug without ground pin (CEE7/4 type F)
outputs at most {socket:schuko:current}A" - }, - "current-1": { - "mappings": { - "0": { - "then": "
European wall plug with ground pin (CEE7/4 type E)
outputs at most 16 A" - } - }, - "question": "What current do the plugs with
European wall plug with ground pin (CEE7/4 type E)
offer?", - "render": "
European wall plug with ground pin (CEE7/4 type E)
outputs at most {socket:typee:current}A" - }, - "current-10": { - "mappings": { - "0": { - "then": "
Tesla Supercharger CCS (a branded type2_css)
outputs at most 125 A" - }, - "1": { - "then": "
Tesla Supercharger CCS (a branded type2_css)
outputs at most 350 A" - } - }, - "question": "What current do the plugs with
Tesla Supercharger CCS (a branded type2_css)
offer?", - "render": "
Tesla Supercharger CCS (a branded type2_css)
outputs at most {socket:tesla_supercharger_ccs:current}A" - }, - "current-11": { - "mappings": { - "0": { - "then": "
Tesla Supercharger (destination)
outputs at most 125 A" - }, - "1": { - "then": "
Tesla Supercharger (destination)
outputs at most 350 A" - } - }, - "question": "What current do the plugs with
Tesla Supercharger (destination)
offer?", - "render": "
Tesla Supercharger (destination)
outputs at most {socket:tesla_destination:current}A" - }, - "current-12": { - "mappings": { - "0": { - "then": "
Tesla supercharger (destination (A Type 2 with cable branded as tesla)
outputs at most 16 A" - }, - "1": { - "then": "
Tesla supercharger (destination (A Type 2 with cable branded as tesla)
outputs at most 32 A" - } - }, - "question": "What current do the plugs with
Tesla supercharger (destination (A Type 2 with cable branded as tesla)
offer?", - "render": "
Tesla supercharger (destination (A Type 2 with cable branded as tesla)
outputs at most {socket:tesla_destination:current}A" - }, - "current-13": { - "mappings": { - "0": { - "then": "
USB to charge phones and small electronics
outputs at most 1 A" - }, - "1": { - "then": "
USB to charge phones and small electronics
outputs at most 2 A" - } - }, - "question": "What current do the plugs with
USB to charge phones and small electronics
offer?", - "render": "
USB to charge phones and small electronics
outputs at most {socket:USB-A:current}A" - }, - "current-14": { - "question": "What current do the plugs with
Bosch Active Connect with 3 pins and cable
offer?", - "render": "
Bosch Active Connect with 3 pins and cable
outputs at most {socket:bosch_3pin:current}A" - }, - "current-15": { - "question": "What current do the plugs with
Bosch Active Connect with 5 pins and cable
offer?", - "render": "
Bosch Active Connect with 5 pins and cable
outputs at most {socket:bosch_5pin:current}A" - }, - "current-2": { - "mappings": { - "0": { - "then": "
Chademo
outputs at most 120 A" - } - }, - "question": "What current do the plugs with
Chademo
offer?", - "render": "
Chademo
outputs at most {socket:chademo:current}A" - }, - "current-3": { - "mappings": { - "0": { - "then": "
Type 1 with cable (J1772)
outputs at most 32 A" - } - }, - "question": "What current do the plugs with
Type 1 with cable (J1772)
offer?", - "render": "
Type 1 with cable (J1772)
outputs at most {socket:type1_cable:current}A" - }, - "current-4": { - "mappings": { - "0": { - "then": "
Type 1 without cable (J1772)
outputs at most 32 A" - } - }, - "question": "What current do the plugs with
Type 1 without cable (J1772)
offer?", - "render": "
Type 1 without cable (J1772)
outputs at most {socket:type1:current}A" - }, - "current-5": { - "mappings": { - "0": { - "then": "
Type 1 CCS (aka Type 1 Combo)
outputs at most 50 A" - }, - "1": { - "then": "
Type 1 CCS (aka Type 1 Combo)
outputs at most 125 A" - } - }, - "question": "What current do the plugs with
Type 1 CCS (aka Type 1 Combo)
offer?", - "render": "
Type 1 CCS (aka Type 1 Combo)
outputs at most {socket:type1_combo:current}A" - }, - "current-6": { - "mappings": { - "0": { - "then": "
Tesla Supercharger
outputs at most 125 A" - }, - "1": { - "then": "
Tesla Supercharger
outputs at most 350 A" - } - }, - "question": "What current do the plugs with
Tesla Supercharger
offer?", - "render": "
Tesla Supercharger
outputs at most {socket:tesla_supercharger:current}A" - }, - "current-7": { - "mappings": { - "0": { - "then": "
Type 2 (mennekes)
outputs at most 16 A" - }, - "1": { - "then": "
Type 2 (mennekes)
outputs at most 32 A" - } - }, - "question": "What current do the plugs with
Type 2 (mennekes)
offer?", - "render": "
Type 2 (mennekes)
outputs at most {socket:type2:current}A" - }, - "current-8": { - "mappings": { - "0": { - "then": "
Type 2 CCS (mennekes)
outputs at most 125 A" - }, - "1": { - "then": "
Type 2 CCS (mennekes)
outputs at most 350 A" - } - }, - "question": "What current do the plugs with
Type 2 CCS (mennekes)
offer?", - "render": "
Type 2 CCS (mennekes)
outputs at most {socket:type2_combo:current}A" - }, - "current-9": { - "mappings": { - "0": { - "then": "
Type 2 with cable (mennekes)
outputs at most 16 A" - }, - "1": { - "then": "
Type 2 with cable (mennekes)
outputs at most 32 A" - } - }, - "question": "What current do the plugs with
Type 2 with cable (mennekes)
offer?", - "render": "
Type 2 with cable (mennekes)
outputs at most {socket:type2_cable:current}A" - }, - "email": { - "question": "What is the email address of the operator?", - "render": "In case of problems, send an email to {email}" - }, - "fee": { - "mappings": { - "0": { - "then": "Free to use" - }, - "1": { - "then": "Free to use (without authenticating)" - }, - "2": { - "then": "Free to use, but one has to authenticate" - }, - "3": { - "then": "Paid use, but free for customers of the hotel/pub/hospital/... who operates the charging station" - }, - "4": { - "then": "Paid use" - } - }, - "question": "Does one have to pay to use this charging station?" - }, - "maxstay": { - "mappings": { - "0": { - "then": "No timelimit on leaving your vehicle here" - } - }, - "question": "What is the maximum amount of time one is allowed to stay here?", - "render": "One can stay at most {canonical(maxstay)}" - }, - "payment-options": { - "override": { - "mappings+": { + "ambulancestation": { + "description": "An ambulance station is an area for storage of ambulance vehicles, medical equipment, personal protective equipment, and other medical supplies.", + "name": "Map of ambulance stations", + "presets": { "0": { - "then": "Payment is done using a dedicated app" + "description": "Add an ambulance station to the map", + "title": "Ambulance station" + } + }, + "tagRenderings": { + "ambulance-agency": { + "question": "What agency operates this station?", + "render": "This station is operated by {operator}." + }, + "ambulance-name": { + "question": "What is the name of this ambulance station?", + "render": "This station is called {name}." + }, + "ambulance-operator-type": { + "mappings": { + "0": { + "then": "The station is operated by the government." + }, + "1": { + "then": "The station is operated by a community-based, or informal organization." + }, + "2": { + "then": "The station is operated by a formal group of volunteers." + }, + "3": { + "then": "The station is privately operated." + } + }, + "question": "How is the station operator classified?", + "render": "The operator is a(n) {operator:type} entity." + }, + "ambulance-place": { + "question": "Where is the station located? (e.g. name of neighborhood, villlage, or town)", + "render": "This station is found within {addr:place}." + }, + "ambulance-street": { + "question": " What is the street name where the station located?", + "render": "This station is along a highway called {addr:street}." + } + }, + "title": { + "render": "Ambulance Station" + } + }, + "artwork": { + "description": "Diverse pieces of artwork", + "name": "Artworks", + "presets": { + "0": { + "title": "Artwork" + } + }, + "tagRenderings": { + "artwork-artist_name": { + "question": "Which artist created this?", + "render": "Created by {artist_name}" + }, + "artwork-artwork_type": { + "mappings": { + "0": { + "then": "Architecture" + }, + "1": { + "then": "Mural" + }, + "2": { + "then": "Painting" + }, + "3": { + "then": "Sculpture" + }, + "4": { + "then": "Statue" + }, + "5": { + "then": "Bust" + }, + "6": { + "then": "Stone" + }, + "7": { + "then": "Installation" + }, + "8": { + "then": "Graffiti" + }, + "9": { + "then": "Relief" + }, + "10": { + "then": "Azulejo (Spanish decorative tilework)" + }, + "11": { + "then": "Tilework" + } + }, + "question": "What is the type of this artwork?", + "render": "This is a {artwork_type}" + }, + "artwork-website": { + "question": "Is there a website with more information about this artwork?", + "render": "More information on this website" + }, + "artwork-wikidata": { + "question": "Which Wikidata-entry corresponds with this artwork?", + "render": "Corresponds with {wikidata}" + } + }, + "title": { + "mappings": { + "0": { + "then": "Artwork {name}" + } + }, + "render": "Artwork" + } + }, + "barrier": { + "description": "Obstacles while cycling, such as bollards and cycle barriers", + "name": "Barriers", + "presets": { + "0": { + "description": "A bollard in the road", + "title": "Bollard" }, "1": { - "then": "Payment is done using a membership card" + "description": "Cycle barrier, slowing down cyclists", + "title": "Cycle barrier" } - } + }, + "tagRenderings": { + "Bollard type": { + "mappings": { + "0": { + "then": "Removable bollard" + }, + "1": { + "then": "Fixed bollard" + }, + "2": { + "then": "Bollard that can be folded down" + }, + "3": { + "then": "Flexible bollard, usually plastic" + }, + "4": { + "then": "Rising bollard" + } + }, + "question": "What kind of bollard is this?" + }, + "Cycle barrier type": { + "mappings": { + "0": { + "then": "Single, just two barriers with a space inbetween" + }, + "1": { + "then": "Double, two barriers behind each other" + }, + "2": { + "then": "Triple, three barriers behind each other" + }, + "3": { + "then": "Squeeze gate, gap is smaller at top, than at the bottom" + } + }, + "question": "What kind of cycling barrier is this?" + }, + "MaxWidth": { + "question": "How wide is the gap left over besides the barrier?", + "render": "Maximum width: {maxwidth:physical} m" + }, + "Overlap (cyclebarrier)": { + "question": "How much overlap do the barriers have?", + "render": "Overlap: {overlap} m" + }, + "Space between barrier (cyclebarrier)": { + "question": "How much space is there between the barriers (along the length of the road)?", + "render": "Space between barriers (along the length of the road): {width:separation} m" + }, + "Width of opening (cyclebarrier)": { + "question": "How wide is the smallest opening next to the barriers?", + "render": "Width of opening: {width:opening} m" + }, + "barrier_type": { + "mappings": { + "0": { + "then": "This is a single bollard in the road" + }, + "1": { + "then": "This is a cycle barrier slowing down cyclists" + } + } + }, + "bicycle=yes/no": { + "mappings": { + "0": { + "then": "A cyclist can go past this." + }, + "1": { + "then": "A cyclist can not go past this." + } + }, + "question": "Can a bicycle go past this barrier?" + } + }, + "title": { + "mappings": { + "0": { + "then": "Bollard" + }, + "1": { + "then": "Cycling Barrier" + } + }, + "render": "Barrier" } - }, - "phone": { - "question": "What number can one call if there is a problem with this charging station?", - "render": "In case of problems, call {phone}" - }, - "plugs-0": { - "question": "How much plugs of type
Schuko wall plug without ground pin (CEE7/4 type F)
are available here?", - "render": "There are {socket:schuko} plugs of type
Schuko wall plug without ground pin (CEE7/4 type F)
available here" - }, - "plugs-1": { - "question": "How much plugs of type
European wall plug with ground pin (CEE7/4 type E)
are available here?", - "render": "There are {socket:typee} plugs of type
European wall plug with ground pin (CEE7/4 type E)
available here" - }, - "plugs-10": { - "question": "How much plugs of type
Tesla Supercharger CCS (a branded type2_css)
are available here?", - "render": "There are {socket:tesla_supercharger_ccs} plugs of type
Tesla Supercharger CCS (a branded type2_css)
available here" - }, - "plugs-11": { - "question": "How much plugs of type
Tesla Supercharger (destination)
are available here?", - "render": "There are {socket:tesla_destination} plugs of type
Tesla Supercharger (destination)
available here" - }, - "plugs-12": { - "question": "How much plugs of type
Tesla supercharger (destination (A Type 2 with cable branded as tesla)
are available here?", - "render": "There are {socket:tesla_destination} plugs of type
Tesla supercharger (destination (A Type 2 with cable branded as tesla)
available here" - }, - "plugs-13": { - "question": "How much plugs of type
USB to charge phones and small electronics
are available here?", - "render": "There are {socket:USB-A} plugs of type
USB to charge phones and small electronics
available here" - }, - "plugs-14": { - "question": "How much plugs of type
Bosch Active Connect with 3 pins and cable
are available here?", - "render": "There are {socket:bosch_3pin} plugs of type
Bosch Active Connect with 3 pins and cable
available here" - }, - "plugs-15": { - "question": "How much plugs of type
Bosch Active Connect with 5 pins and cable
are available here?", - "render": "There are {socket:bosch_5pin} plugs of type
Bosch Active Connect with 5 pins and cable
available here" - }, - "plugs-2": { - "question": "How much plugs of type
Chademo
are available here?", - "render": "There are {socket:chademo} plugs of type
Chademo
available here" - }, - "plugs-3": { - "question": "How much plugs of type
Type 1 with cable (J1772)
are available here?", - "render": "There are {socket:type1_cable} plugs of type
Type 1 with cable (J1772)
available here" - }, - "plugs-4": { - "question": "How much plugs of type
Type 1 without cable (J1772)
are available here?", - "render": "There are {socket:type1} plugs of type
Type 1 without cable (J1772)
available here" - }, - "plugs-5": { - "question": "How much plugs of type
Type 1 CCS (aka Type 1 Combo)
are available here?", - "render": "There are {socket:type1_combo} plugs of type
Type 1 CCS (aka Type 1 Combo)
available here" - }, - "plugs-6": { - "question": "How much plugs of type
Tesla Supercharger
are available here?", - "render": "There are {socket:tesla_supercharger} plugs of type
Tesla Supercharger
available here" - }, - "plugs-7": { - "question": "How much plugs of type
Type 2 (mennekes)
are available here?", - "render": "There are {socket:type2} plugs of type
Type 2 (mennekes)
available here" - }, - "plugs-8": { - "question": "How much plugs of type
Type 2 CCS (mennekes)
are available here?", - "render": "There are {socket:type2_combo} plugs of type
Type 2 CCS (mennekes)
available here" - }, - "plugs-9": { - "question": "How much plugs of type
Type 2 with cable (mennekes)
are available here?", - "render": "There are {socket:type2_cable} plugs of type
Type 2 with cable (mennekes)
available here" - }, - "power-output-0": { - "mappings": { - "0": { - "then": "
Schuko wall plug without ground pin (CEE7/4 type F)
outputs at most 3.6 kw" - } - }, - "question": "What power output does a single plug of type
Schuko wall plug without ground pin (CEE7/4 type F)
offer?", - "render": "
Schuko wall plug without ground pin (CEE7/4 type F)
outputs at most {socket:schuko:output}" - }, - "power-output-1": { - "mappings": { - "0": { - "then": "
European wall plug with ground pin (CEE7/4 type E)
outputs at most 3 kw" - }, - "1": { - "then": "
European wall plug with ground pin (CEE7/4 type E)
outputs at most 22 kw" - } - }, - "question": "What power output does a single plug of type
European wall plug with ground pin (CEE7/4 type E)
offer?", - "render": "
European wall plug with ground pin (CEE7/4 type E)
outputs at most {socket:typee:output}" - }, - "power-output-10": { - "mappings": { - "0": { - "then": "
Tesla Supercharger CCS (a branded type2_css)
outputs at most 50 kw" - } - }, - "question": "What power output does a single plug of type
Tesla Supercharger CCS (a branded type2_css)
offer?", - "render": "
Tesla Supercharger CCS (a branded type2_css)
outputs at most {socket:tesla_supercharger_ccs:output}" - }, - "power-output-11": { - "mappings": { - "0": { - "then": "
Tesla Supercharger (destination)
outputs at most 120 kw" - }, - "1": { - "then": "
Tesla Supercharger (destination)
outputs at most 150 kw" - }, - "2": { - "then": "
Tesla Supercharger (destination)
outputs at most 250 kw" - } - }, - "question": "What power output does a single plug of type
Tesla Supercharger (destination)
offer?", - "render": "
Tesla Supercharger (destination)
outputs at most {socket:tesla_destination:output}" - }, - "power-output-12": { - "mappings": { - "0": { - "then": "
Tesla supercharger (destination (A Type 2 with cable branded as tesla)
outputs at most 11 kw" - }, - "1": { - "then": "
Tesla supercharger (destination (A Type 2 with cable branded as tesla)
outputs at most 22 kw" - } - }, - "question": "What power output does a single plug of type
Tesla supercharger (destination (A Type 2 with cable branded as tesla)
offer?", - "render": "
Tesla supercharger (destination (A Type 2 with cable branded as tesla)
outputs at most {socket:tesla_destination:output}" - }, - "power-output-13": { - "mappings": { - "0": { - "then": "
USB to charge phones and small electronics
outputs at most 5w" - }, - "1": { - "then": "
USB to charge phones and small electronics
outputs at most 10w" - } - }, - "question": "What power output does a single plug of type
USB to charge phones and small electronics
offer?", - "render": "
USB to charge phones and small electronics
outputs at most {socket:USB-A:output}" - }, - "power-output-14": { - "question": "What power output does a single plug of type
Bosch Active Connect with 3 pins and cable
offer?", - "render": "
Bosch Active Connect with 3 pins and cable
outputs at most {socket:bosch_3pin:output}" - }, - "power-output-15": { - "question": "What power output does a single plug of type
Bosch Active Connect with 5 pins and cable
offer?", - "render": "
Bosch Active Connect with 5 pins and cable
outputs at most {socket:bosch_5pin:output}" - }, - "power-output-2": { - "mappings": { - "0": { - "then": "
Chademo
outputs at most 50 kw" - } - }, - "question": "What power output does a single plug of type
Chademo
offer?", - "render": "
Chademo
outputs at most {socket:chademo:output}" - }, - "power-output-3": { - "mappings": { - "0": { - "then": "
Type 1 with cable (J1772)
outputs at most 3.7 kw" - }, - "1": { - "then": "
Type 1 with cable (J1772)
outputs at most 7 kw" - } - }, - "question": "What power output does a single plug of type
Type 1 with cable (J1772)
offer?", - "render": "
Type 1 with cable (J1772)
outputs at most {socket:type1_cable:output}" - }, - "power-output-4": { - "mappings": { - "0": { - "then": "
Type 1 without cable (J1772)
outputs at most 3.7 kw" - }, - "1": { - "then": "
Type 1 without cable (J1772)
outputs at most 6.6 kw" - }, - "2": { - "then": "
Type 1 without cable (J1772)
outputs at most 7 kw" - }, - "3": { - "then": "
Type 1 without cable (J1772)
outputs at most 7.2 kw" - } - }, - "question": "What power output does a single plug of type
Type 1 without cable (J1772)
offer?", - "render": "
Type 1 without cable (J1772)
outputs at most {socket:type1:output}" - }, - "power-output-5": { - "mappings": { - "0": { - "then": "
Type 1 CCS (aka Type 1 Combo)
outputs at most 50 kw" - }, - "1": { - "then": "
Type 1 CCS (aka Type 1 Combo)
outputs at most 62.5 kw" - }, - "2": { - "then": "
Type 1 CCS (aka Type 1 Combo)
outputs at most 150 kw" - }, - "3": { - "then": "
Type 1 CCS (aka Type 1 Combo)
outputs at most 350 kw" - } - }, - "question": "What power output does a single plug of type
Type 1 CCS (aka Type 1 Combo)
offer?", - "render": "
Type 1 CCS (aka Type 1 Combo)
outputs at most {socket:type1_combo:output}" - }, - "power-output-6": { - "mappings": { - "0": { - "then": "
Tesla Supercharger
outputs at most 120 kw" - }, - "1": { - "then": "
Tesla Supercharger
outputs at most 150 kw" - }, - "2": { - "then": "
Tesla Supercharger
outputs at most 250 kw" - } - }, - "question": "What power output does a single plug of type
Tesla Supercharger
offer?", - "render": "
Tesla Supercharger
outputs at most {socket:tesla_supercharger:output}" - }, - "power-output-7": { - "mappings": { - "0": { - "then": "
Type 2 (mennekes)
outputs at most 11 kw" - }, - "1": { - "then": "
Type 2 (mennekes)
outputs at most 22 kw" - } - }, - "question": "What power output does a single plug of type
Type 2 (mennekes)
offer?", - "render": "
Type 2 (mennekes)
outputs at most {socket:type2:output}" - }, - "power-output-8": { - "mappings": { - "0": { - "then": "
Type 2 CCS (mennekes)
outputs at most 50 kw" - } - }, - "question": "What power output does a single plug of type
Type 2 CCS (mennekes)
offer?", - "render": "
Type 2 CCS (mennekes)
outputs at most {socket:type2_combo:output}" - }, - "power-output-9": { - "mappings": { - "0": { - "then": "
Type 2 with cable (mennekes)
outputs at most 11 kw" - }, - "1": { - "then": "
Type 2 with cable (mennekes)
outputs at most 22 kw" - } - }, - "question": "What power output does a single plug of type
Type 2 with cable (mennekes)
offer?", - "render": "
Type 2 with cable (mennekes)
outputs at most {socket:type2_cable:output}" - }, - "questions": { - "render": "

Technical questions

The questions below are very technical. Feel free to ignore them
{questions}" - }, - "ref": { - "question": "What is the reference number of this charging station?", - "render": "Reference number is {ref}" - }, - "voltage-0": { - "mappings": { - "0": { - "then": "
Schuko wall plug without ground pin (CEE7/4 type F)
outputs 230 volt" - } - }, - "question": "What voltage do the plugs with
Schuko wall plug without ground pin (CEE7/4 type F)
offer?", - "render": "
Schuko wall plug without ground pin (CEE7/4 type F)
outputs {socket:schuko:voltage} volt" - }, - "voltage-1": { - "mappings": { - "0": { - "then": "
European wall plug with ground pin (CEE7/4 type E)
outputs 230 volt" - } - }, - "question": "What voltage do the plugs with
European wall plug with ground pin (CEE7/4 type E)
offer?", - "render": "
European wall plug with ground pin (CEE7/4 type E)
outputs {socket:typee:voltage} volt" - }, - "voltage-10": { - "mappings": { - "0": { - "then": "
Tesla Supercharger CCS (a branded type2_css)
outputs 500 volt" - }, - "1": { - "then": "
Tesla Supercharger CCS (a branded type2_css)
outputs 920 volt" - } - }, - "question": "What voltage do the plugs with
Tesla Supercharger CCS (a branded type2_css)
offer?", - "render": "
Tesla Supercharger CCS (a branded type2_css)
outputs {socket:tesla_supercharger_ccs:voltage} volt" - }, - "voltage-11": { - "mappings": { - "0": { - "then": "
Tesla Supercharger (destination)
outputs 480 volt" - } - }, - "question": "What voltage do the plugs with
Tesla Supercharger (destination)
offer?", - "render": "
Tesla Supercharger (destination)
outputs {socket:tesla_destination:voltage} volt" - }, - "voltage-12": { - "mappings": { - "0": { - "then": "
Tesla supercharger (destination (A Type 2 with cable branded as tesla)
outputs 230 volt" - }, - "1": { - "then": "
Tesla supercharger (destination (A Type 2 with cable branded as tesla)
outputs 400 volt" - } - }, - "question": "What voltage do the plugs with
Tesla supercharger (destination (A Type 2 with cable branded as tesla)
offer?", - "render": "
Tesla supercharger (destination (A Type 2 with cable branded as tesla)
outputs {socket:tesla_destination:voltage} volt" - }, - "voltage-13": { - "mappings": { - "0": { - "then": "
USB to charge phones and small electronics
outputs 5 volt" - } - }, - "question": "What voltage do the plugs with
USB to charge phones and small electronics
offer?", - "render": "
USB to charge phones and small electronics
outputs {socket:USB-A:voltage} volt" - }, - "voltage-14": { - "question": "What voltage do the plugs with
Bosch Active Connect with 3 pins and cable
offer?", - "render": "
Bosch Active Connect with 3 pins and cable
outputs {socket:bosch_3pin:voltage} volt" - }, - "voltage-15": { - "question": "What voltage do the plugs with
Bosch Active Connect with 5 pins and cable
offer?", - "render": "
Bosch Active Connect with 5 pins and cable
outputs {socket:bosch_5pin:voltage} volt" - }, - "voltage-2": { - "mappings": { - "0": { - "then": "
Chademo
outputs 500 volt" - } - }, - "question": "What voltage do the plugs with
Chademo
offer?", - "render": "
Chademo
outputs {socket:chademo:voltage} volt" - }, - "voltage-3": { - "mappings": { - "0": { - "then": "
Type 1 with cable (J1772)
outputs 200 volt" - }, - "1": { - "then": "
Type 1 with cable (J1772)
outputs 240 volt" - } - }, - "question": "What voltage do the plugs with
Type 1 with cable (J1772)
offer?", - "render": "
Type 1 with cable (J1772)
outputs {socket:type1_cable:voltage} volt" - }, - "voltage-4": { - "mappings": { - "0": { - "then": "
Type 1 without cable (J1772)
outputs 200 volt" - }, - "1": { - "then": "
Type 1 without cable (J1772)
outputs 240 volt" - } - }, - "question": "What voltage do the plugs with
Type 1 without cable (J1772)
offer?", - "render": "
Type 1 without cable (J1772)
outputs {socket:type1:voltage} volt" - }, - "voltage-5": { - "mappings": { - "0": { - "then": "
Type 1 CCS (aka Type 1 Combo)
outputs 400 volt" - }, - "1": { - "then": "
Type 1 CCS (aka Type 1 Combo)
outputs 1000 volt" - } - }, - "question": "What voltage do the plugs with
Type 1 CCS (aka Type 1 Combo)
offer?", - "render": "
Type 1 CCS (aka Type 1 Combo)
outputs {socket:type1_combo:voltage} volt" - }, - "voltage-6": { - "mappings": { - "0": { - "then": "
Tesla Supercharger
outputs 480 volt" - } - }, - "question": "What voltage do the plugs with
Tesla Supercharger
offer?", - "render": "
Tesla Supercharger
outputs {socket:tesla_supercharger:voltage} volt" - }, - "voltage-7": { - "mappings": { - "0": { - "then": "
Type 2 (mennekes)
outputs 230 volt" - }, - "1": { - "then": "
Type 2 (mennekes)
outputs 400 volt" - } - }, - "question": "What voltage do the plugs with
Type 2 (mennekes)
offer?", - "render": "
Type 2 (mennekes)
outputs {socket:type2:voltage} volt" - }, - "voltage-8": { - "mappings": { - "0": { - "then": "
Type 2 CCS (mennekes)
outputs 500 volt" - }, - "1": { - "then": "
Type 2 CCS (mennekes)
outputs 920 volt" - } - }, - "question": "What voltage do the plugs with
Type 2 CCS (mennekes)
offer?", - "render": "
Type 2 CCS (mennekes)
outputs {socket:type2_combo:voltage} volt" - }, - "voltage-9": { - "mappings": { - "0": { - "then": "
Type 2 with cable (mennekes)
outputs 230 volt" - }, - "1": { - "then": "
Type 2 with cable (mennekes)
outputs 400 volt" - } - }, - "question": "What voltage do the plugs with
Type 2 with cable (mennekes)
offer?", - "render": "
Type 2 with cable (mennekes)
outputs {socket:type2_cable:voltage} volt" - }, - "website": { - "question": "What is the website where one can find more information about this charging station?", - "render": "More info on {website}" - } }, - "title": { - "render": "Charging station" - }, - "units": { - "0": { - "applicableUnits": { - "0": { - "human": " minutes", - "humanSingular": " minute" - }, - "1": { - "human": " hours", - "humanSingular": " hour" - }, - "2": { - "human": " days", - "humanSingular": " day" - } - } - }, - "1": { - "applicableUnits": { - "0": { - "human": "Volts" - } - } - }, - "2": { - "applicableUnits": { - "0": { - "human": "A" - } - } - }, - "3": { - "applicableUnits": { - "0": { - "human": "kilowatt" - }, - "1": { - "human": "megawatt" - } - } - } - } - }, - "crossings": { - "description": "Crossings for pedestrians and cyclists", - "name": "Crossings", - "presets": { - "0": { - "description": "Crossing for pedestrians and/or cyclists", - "title": "Crossing" - }, - "1": { - "description": "Traffic signal on a road", - "title": "Traffic signal" - } - }, - "tagRenderings": { - "crossing-bicycle-allowed": { - "mappings": { - "0": { - "then": "A cyclist can use this crossing" - }, - "1": { - "then": "A cyclist can not use this crossing" - } - }, - "question": "Is this crossing also for bicycles?" - }, - "crossing-button": { - "mappings": { - "0": { - "then": "This traffic light has a button to request green light" - }, - "1": { - "then": "This traffic light does not have a button to request green light" - } - }, - "question": "Does this traffic light have a button to request green light?" - }, - "crossing-continue-through-red": { - "mappings": { - "0": { - "then": "A cyclist can go straight on if the light is red " - }, - "1": { - "then": "A cyclist can go straight on if the light is red" - }, - "2": { - "then": "A cyclist can not go straight on if the light is red" - } - }, - "question": "Can a cyclist go straight on when the light is red?" - }, - "crossing-has-island": { - "mappings": { - "0": { - "then": "This crossing has an island in the middle" - }, - "1": { - "then": "This crossing does not have an island in the middle" - } - }, - "question": "Does this crossing have an island in the middle?" - }, - "crossing-is-zebra": { - "mappings": { - "0": { - "then": "This is a zebra crossing" - }, - "1": { - "then": "This is not a zebra crossing" - } - }, - "question": "Is this is a zebra crossing?" - }, - "crossing-right-turn-through-red": { - "mappings": { - "0": { - "then": "A cyclist can turn right if the light is red " - }, - "1": { - "then": "A cyclist can turn right if the light is red" - }, - "2": { - "then": "A cyclist can not turn right if the light is red" - } - }, - "question": "Can a cyclist turn right when the light is red?" - }, - "crossing-tactile": { - "mappings": { - "0": { - "then": "This crossing has tactile paving" - }, - "1": { - "then": "This crossing does not have tactile paving" - }, - "2": { - "then": "This crossing has tactile paving, but is not correct" - } - }, - "question": "Does this crossing have tactile paving?" - }, - "crossing-type": { - "mappings": { - "0": { - "then": "Crossing, without traffic lights" - }, - "1": { - "then": "Crossing with traffic signals" - }, - "2": { - "then": "Zebra crossing" - } - }, - "question": "What kind of crossing is this?" - } - }, - "title": { - "mappings": { - "0": { - "then": "Traffic signal" - }, - "1": { - "then": "Crossing with traffic signals" - } - }, - "render": "Crossing" - } - }, - "cycleways_and_roads": { - "name": "Cycleways and roads", - "tagRenderings": { - "Cycleway type for a road": { - "mappings": { - "0": { - "then": "There is a shared lane" - }, - "1": { - "then": "There is a lane next to the road (separated with paint)" - }, - "2": { - "then": "There is a track, but no cycleway drawn separately from this road on the map." - }, - "3": { - "then": "There is a separately drawn cycleway" - }, - "4": { - "then": "There is no cycleway" - }, - "5": { - "then": "There is no cycleway" - } - }, - "question": "What kind of cycleway is here?" - }, - "Cycleway:smoothness": { - "mappings": { - "0": { - "then": "Usable for thin rollers: rollerblade, skateboard" - }, - "1": { - "then": "Usable for thin wheels: racing bike" - }, - "2": { - "then": "Usable for normal wheels: city bike, wheelchair, scooter" - }, - "3": { - "then": "Usable for robust wheels: trekking bike, car, rickshaw" - }, - "4": { - "then": "Usable for vehicles with high clearance: light duty off-road vehicle" - }, - "5": { - "then": "Usable for off-road vehicles: heavy duty off-road vehicle" - }, - "6": { - "then": "Usable for specialized off-road vehicles: tractor, ATV" - }, - "7": { - "then": "Impassable / No wheeled vehicle" - } - }, - "question": "What is the smoothness of this cycleway?" - }, - "Cycleway:surface": { - "mappings": { - "0": { - "then": "This cycleway is unpaved" - }, - "1": { - "then": "This cycleway is paved" - }, - "2": { - "then": "This cycleway is made of asphalt" - }, - "3": { - "then": "This cycleway is made of smooth paving stones" - }, - "4": { - "then": "This cycleway is made of concrete" - }, - "5": { - "then": "This cycleway is made of cobblestone (unhewn or sett)" - }, - "6": { - "then": "This cycleway is made of raw, natural cobblestone" - }, - "7": { - "then": "This cycleway is made of flat, square cobblestone" - }, - "8": { - "then": "This cycleway is made of wood" - }, - "9": { - "then": "This cycleway is made of gravel" - }, - "10": { - "then": "This cycleway is made of fine gravel" - }, - "11": { - "then": "This cycleway is made of pebblestone" - }, - "12": { - "then": "This cycleway is made from raw ground" - } - }, - "question": "What is the surface of the cycleway made from?", - "render": "This cyleway is made of {cycleway:surface}" - }, - "Is this a cyclestreet? (For a road)": { - "mappings": { - "0": { - "then": "This is a cyclestreet, and a 30km/h zone." - }, - "1": { - "then": "This is a cyclestreet" - }, - "2": { - "then": "This is not a cyclestreet." - } - }, - "question": "Is this a cyclestreet?" - }, - "Maxspeed (for road)": { - "mappings": { - "0": { - "then": "The maximum speed is 20 km/h" - }, - "1": { - "then": "The maximum speed is 30 km/h" - }, - "2": { - "then": "The maximum speed is 50 km/h" - }, - "3": { - "then": "The maximum speed is 70 km/h" - }, - "4": { - "then": "The maximum speed is 90 km/h" - } - }, - "question": "What is the maximum speed in this street?", - "render": "The maximum speed on this road is {maxspeed} km/h" - }, - "Surface of the road": { - "mappings": { - "0": { - "then": "This cycleway is unhardened" - }, - "1": { - "then": "This cycleway is paved" - }, - "2": { - "then": "This cycleway is made of asphalt" - }, - "3": { - "then": "This cycleway is made of smooth paving stones" - }, - "4": { - "then": "This cycleway is made of concrete" - }, - "5": { - "then": "This cycleway is made of cobblestone (unhewn or sett)" - }, - "6": { - "then": "This cycleway is made of raw, natural cobblestone" - }, - "7": { - "then": "This cycleway is made of flat, square cobblestone" - }, - "8": { - "then": "This cycleway is made of wood" - }, - "9": { - "then": "This cycleway is made of gravel" - }, - "10": { - "then": "This cycleway is made of fine gravel" - }, - "11": { - "then": "This cycleway is made of pebblestone" - }, - "12": { - "then": "This cycleway is made from raw ground" - } - }, - "question": "What is the surface of the street made from?", - "render": "This road is made of {surface}" - }, - "Surface of the street": { - "mappings": { - "0": { - "then": "Usable for thin rollers: rollerblade, skateboard" - }, - "1": { - "then": "Usable for thin wheels: racing bike" - }, - "2": { - "then": "Usable for normal wheels: city bike, wheelchair, scooter" - }, - "3": { - "then": "Usable for robust wheels: trekking bike, car, rickshaw" - }, - "4": { - "then": "Usable for vehicles with high clearance: light duty off-road vehicle" - }, - "5": { - "then": "Usable for off-road vehicles: heavy duty off-road vehicle" - }, - "6": { - "then": "Usable for specialized off-road vehicles: tractor, ATV" - }, - "7": { - "then": "Impassable / No wheeled vehicle" - } - }, - "question": "What is the smoothness of this street?" - }, - "cyclelan-segregation": { - "mappings": { - "0": { - "then": "This cycleway is separated by a dashed line" - }, - "1": { - "then": "This cycleway is separated by a solid line" - }, - "2": { - "then": "This cycleway is separated by a parking lane" - }, - "3": { - "then": "This cycleway is separated by a kerb" - } - }, - "question": "How is this cycleway separated from the road?" - }, - "cycleway-lane-track-traffic-signs": { - "mappings": { - "0": { - "then": "Compulsory cycleway " - }, - "1": { - "then": "Compulsory cycleway (with supplementary sign)
" - }, - "2": { - "then": "Segregated foot/cycleway " - }, - "3": { - "then": "Unsegregated foot/cycleway " - }, - "4": { - "then": "No traffic sign present" - } - }, - "question": "What traffic sign does this cycleway have?" - }, - "cycleway-segregation": { - "mappings": { - "0": { - "then": "This cycleway is separated by a dashed line" - }, - "1": { - "then": "This cycleway is separated by a solid line" - }, - "2": { - "then": "This cycleway is separated by a parking lane" - }, - "3": { - "then": "This cycleway is separated by a kerb" - } - }, - "question": "How is this cycleway separated from the road?" - }, - "cycleway-traffic-signs": { - "mappings": { - "0": { - "then": "Compulsory cycleway " - }, - "1": { - "then": "Compulsory cycleway (with supplementary sign)
" - }, - "2": { - "then": "Segregated foot/cycleway " - }, - "3": { - "then": "Unsegregated foot/cycleway " - }, - "4": { - "then": "No traffic sign present" - } - }, - "question": "What traffic sign does this cycleway have?" - }, - "cycleway-traffic-signs-D7-supplementary": { - "mappings": { - "0": { - "then": "" - }, - "1": { - "then": "" - }, - "2": { - "then": "" - }, - "3": { - "then": "" - }, - "4": { - "then": "" - }, - "5": { - "then": "" - }, - "6": { - "then": "No supplementary traffic sign present" - } - }, - "question": "Does the traffic sign D7 () have a supplementary sign?" - }, - "cycleway-traffic-signs-supplementary": { - "mappings": { - "0": { - "then": "" - }, - "1": { - "then": "" - }, - "2": { - "then": "" - }, - "3": { - "then": "" - }, - "4": { - "then": "" - }, - "5": { - "then": "" - }, - "6": { - "then": "No supplementary traffic sign present" - } - }, - "question": "Does the traffic sign D7 () have a supplementary sign?" - }, - "cycleways_and_roads-cycleway:buffer": { - "question": "How wide is the gap between the cycleway and the road?", - "render": "The buffer besides this cycleway is {cycleway:buffer} m" - }, - "is lit?": { - "mappings": { - "0": { - "then": "This street is lit" - }, - "1": { - "then": "This road is not lit" - }, - "2": { - "then": "This road is lit at night" - }, - "3": { - "then": "This road is lit 24/7" - } - }, - "question": "Is this street lit?" - }, - "width:carriageway": { - "question": "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", - "render": "The carriage width of this road is {width:carriageway}m" - } - }, - "title": { - "mappings": { - "0": { - "then": "Cycleway" - }, - "1": { - "then": "Shared lane" - }, - "2": { - "then": "Bike lane" - }, - "3": { - "then": "Cycleway next to the road" - }, - "4": { - "then": "Cyclestreet" - } - }, - "render": "Cycleways" - } - }, - "defibrillator": { - "name": "Defibrillators", - "presets": { - "0": { - "title": "Defibrillator" - } - }, - "tagRenderings": { - "defibrillator-access": { - "mappings": { - "0": { - "then": "Publicly accessible" - }, - "1": { - "then": "Publicly accessible" - }, - "2": { - "then": "Only accessible to customers" - }, - "3": { - "then": "Not accessible to the general public (e.g. only accesible to staff, the owners, ...)" - }, - "4": { - "then": "Not accessible, possibly only for professional use" - } - }, - "question": "Is this defibrillator freely accessible?", - "render": "Access is {access}" - }, - "defibrillator-defibrillator": { - "mappings": { - "0": { - "then": "There is no info about the type of device" - }, - "1": { - "then": "This is a manual defibrillator for professionals" - }, - "2": { - "then": "This is a normal automatic defibrillator" - }, - "3": { - "then": "This is a special type of defibrillator: {defibrillator}" - } - }, - "question": "Is this a a regular automatic defibrillator or a manual defibrillator for professionals only?" - }, - "defibrillator-defibrillator:location": { - "question": "Please give some explanation on where the defibrillator can be found (in the local language)", - "render": "Extra information about the location (in the local languagel):
{defibrillator:location}" - }, - "defibrillator-defibrillator:location:en": { - "question": "Please give some explanation on where the defibrillator can be found (in English)", - "render": "Extra information about the location (in English):
{defibrillator:location:en}" - }, - "defibrillator-defibrillator:location:fr": { - "question": "Please give some explanation on where the defibrillator can be found (in French)", - "render": "Extra information about the location (in French):
{defibrillator:location:fr}" - }, - "defibrillator-description": { - "question": "Is there any useful information for users that you haven't been able to describe above? (leave blank if no)", - "render": "Additional information: {description}" - }, - "defibrillator-email": { - "question": "What is the email for questions about this defibrillator?", - "render": "Email for questions about this defibrillator: {email}" - }, - "defibrillator-fixme": { - "question": "Is there something wrong with how this is mapped, that you weren't able to fix here? (leave a note to OpenStreetMap experts)", - "render": "Extra information for OpenStreetMap experts: {fixme}" - }, - "defibrillator-indoors": { - "mappings": { - "0": { - "then": "This defibrillator is located indoors" - }, - "1": { - "then": "This defibrillator is located outdoors" - } - }, - "question": "Is this defibrillator located indoors?" - }, - "defibrillator-level": { - "mappings": { - "0": { - "then": "This defibrillator is on the ground floor" - }, - "1": { - "then": "This defibrillator is on the first floor" - } - }, - "question": "On which floor is this defibrillator located?", - "render": "This defibrillator is on floor {level}" - }, - "defibrillator-opening_hours": { - "mappings": { - "0": { - "then": "24/7 opened (including holidays)" - } - }, - "question": "At what times is this defibrillator available?", - "render": "{opening_hours_table(opening_hours)}" - }, - "defibrillator-phone": { - "question": "What is the phone number for questions about this defibrillator?", - "render": "Telephone for questions about this defibrillator: {phone}" - }, - "defibrillator-ref": { - "question": "What is the official identification number of the device? (if visible on device)", - "render": "Official identification number of the device: {ref}" - }, - "defibrillator-survey:date": { - "mappings": { - "0": { - "then": "Checked today!" - } - }, - "question": "When was this defibrillator last surveyed?", - "render": "This defibrillator was last surveyed on {survey:date}" - } - }, - "title": { - "render": "Defibrillator" - } - }, - "direction": { - "description": "This layer visualizes directions", - "name": "Direction visualization" - }, - "drinking_water": { - "name": "Drinking water", - "presets": { - "0": { - "title": "drinking water" - } - }, - "tagRenderings": { - "Bottle refill": { - "mappings": { - "0": { - "then": "It is easy to refill water bottles" - }, - "1": { - "then": "Water bottles may not fit" - } - }, - "question": "How easy is it to fill water bottles?" - }, - "Still in use?": { - "mappings": { - "0": { - "then": "This drinking water works" - }, - "1": { - "then": "This drinking water is broken" - }, - "2": { - "then": "This drinking water is closed" - } - }, - "question": "Is this drinking water spot still operational?", - "render": "The operational status is {operational_status}" - }, - "render-closest-drinking-water": { - "render": "There is another drinking water fountain at {_closest_other_drinking_water_distance} meter" - } - }, - "title": { - "render": "Drinking water" - } - }, - "etymology": { - "description": "All objects which have an etymology known", - "name": "Has etymolgy", - "tagRenderings": { - "etymology_multi_apply": { - "render": "{multi_apply(_same_name_ids, name:etymology:wikidata;name:etymology, Auto-applying data on all segments with the same name, true)}" - }, - "simple etymology": { - "mappings": { - "0": { - "then": "The origin of this name is unknown in all literature" - } - }, - "question": "What is this object named after?
This might be written on the street name sign", - "render": "Named after {name:etymology}" - }, - "street-name-sign-image": { - "render": "{image_carousel(image:streetsign)}
{image_upload(image:streetsign, Add image of a street name sign)}" - }, - "wikipedia-etymology": { - "question": "What is the Wikidata-item that this object is named after?", - "render": "

Wikipedia article of the name giver

{wikipedia(name:etymology:wikidata):max-height:20rem}" - }, - "zoeken op inventaris onroerend erfgoed": { - "render": "Search on inventaris onroerend erfgoed" - } - } - }, - "food": { - "filter": { - "0": { - "options": { - "0": { - "question": "Opened now" - } - } - }, - "1": { - "options": { - "0": { - "question": "Has a vegetarian menu" - } - } - }, - "2": { - "options": { - "0": { - "question": "Has a vegan menu" - } - } - }, - "3": { - "options": { - "0": { - "question": "Has a halal menu" - } - } - } - }, - "name": "Restaurants and fast food", - "presets": { - "0": { - "description": "A formal eating place with sit-down facilities selling full meals served by waiters", - "title": "restaurant" - }, - "1": { - "description": "A food business concentrating on fast counter-only service and take-away food", - "title": "fastfood" - }, - "2": { - "title": "fries shop" - } - }, - "tagRenderings": { - "Cuisine": { - "mappings": { - "0": { - "then": "This is a pizzeria" - }, - "1": { - "then": "This is a friture" - }, - "2": { - "then": "Mainly serves pasta" - } - }, - "question": "Which food is served here?", - "render": "This place mostly serves {cuisine}" - }, - "Fastfood vs restaurant": { - "question": "What type of business is this?" - }, - "Name": { - "question": "What is the name of this restaurant?", - "render": "The name of this restaurant is {name}" - }, - "Takeaway": { - "mappings": { - "0": { - "then": "This is a take-away only business" - }, - "1": { - "then": "Take-away is possible here" - }, - "2": { - "then": "Take-away is not possible here" - } - }, - "question": "Does this place offer takea-way?" - }, - "Vegetarian (no friture)": { - "question": "Does this restaurant have a vegetarian option?" - }, - "friture-take-your-container": { - "mappings": { - "0": { - "then": "You can bring your own containers to get your order, saving on single-use packaging material and thus waste" - }, - "1": { - "then": "Bringing your own container is not allowed" - }, - "2": { - "then": "You must bring your own container to order here." - } - }, - "question": "If you bring your own container (such as a cooking pot and small pots), is it used to package your order?
" - }, - "halal (no friture)": { - "mappings": { - "0": { - "then": "There are no halal options available" - }, - "1": { - "then": "There is a small halal menu" - }, - "2": { - "then": "There is a halal menu" - }, - "3": { - "then": "Only halal options are available" - } - }, - "question": "Does this restaurant offer a halal menu?" - } - }, - "title": { - "mappings": { - "0": { - "then": "Restaurant {name}" - }, - "1": { - "then": "Fastfood {name}" - } - } - } - }, - "ghost_bike": { - "name": "Ghost bikes", - "presets": { - "0": { - "title": "Ghost bike" - } - }, - "tagRenderings": { - "ghost-bike-explanation": { - "render": "A ghost bike is a memorial for a cyclist who died in a traffic accident, in the form of a white bicycle placed permanently near the accident location." - }, - "ghost_bike-inscription": { - "question": "What is the inscription on this Ghost bike?", - "render": "{inscription}" - }, - "ghost_bike-name": { - "mappings": { - "0": { - "then": "No name is marked on the bike" - } - }, - "question": "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.
", - "render": "In remembrance of {name}" - }, - "ghost_bike-source": { - "question": "On what webpage can one find more information about the Ghost bike or the accident?", - "render": "More information is available" - }, - "ghost_bike-start_date": { - "question": "When was this Ghost bike installed?", - "render": "Placed on {start_date}" - } - }, - "title": { - "mappings": { - "0": { - "then": "Ghost bike in the remembrance of {name}" - } - }, - "render": "Ghost bike" - } - }, - "gps_track": { - "tagRenderings": { - "Privacy notice": { - "render": "This is the path you've travelled since this website is opened. Don't worry - this is only visible to you and no one else. Your location data is never sent off-device without your permission." - } - } - }, - "information_board": { - "name": "Information boards", - "presets": { - "0": { - "title": "information board" - } - }, - "title": { - "render": "Information board" - } - }, - "map": { - "description": "A map, meant for tourists which is permanently installed in the public space", - "name": "Maps", - "presets": { - "0": { - "description": "Add a missing map", - "title": "Map" - } - }, - "tagRenderings": { - "map-attribution": { - "mappings": { - "0": { - "then": "OpenStreetMap is clearly attributed, including the ODBL-license" - }, - "1": { - "then": "OpenStreetMap is clearly attributed, but the license is not mentioned" - }, - "2": { - "then": "OpenStreetMap wasn't mentioned, but someone put an OpenStreetMap-sticker on it" - }, - "3": { - "then": "There is no attribution at all" - }, - "4": { - "then": "There is no attribution at all" - } - }, - "question": "Is the OpenStreetMap-attribution given?" - }, - "map-map_source": { - "mappings": { - "0": { - "then": "This map is based on OpenStreetMap" - } - }, - "question": "On which data is this map based?", - "render": "This map is based on {map_source}" - } - }, - "title": { - "render": "Map" - } - }, - "nature_reserve": { - "tagRenderings": { - "Curator": { - "question": "Whom is the curator of this nature reserve?
Respect privacy - only fill out a name if this is widely published", - "render": "{curator} is the curator of this nature reserve" - }, - "Dogs?": { - "mappings": { - "0": { - "then": "Dogs have to be leashed" - }, - "1": { - "then": "No dogs allowed" - }, - "2": { - "then": "Dogs are allowed to roam freely" - } - }, - "question": "Are dogs allowed in this nature reserve?" - }, - "Email": { - "question": "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", - "render": "{email}" - }, - "Surface area": { - "render": "Surface area: {_surface:ha}Ha" - }, - "Website": { - "question": "On which webpage can one find more information about this nature reserve?" - }, - "phone": { - "question": "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", - "render": "{phone}" - } - } - }, - "observation_tower": { - "description": "Towers with a panoramic view", - "name": "Observation towers", - "presets": { - "0": { - "title": "observation tower" - } - }, - "tagRenderings": { - "Fee": { - "mappings": { - "0": { - "then": "Free to visit" - } - }, - "question": "How much does one have to pay to enter this tower?", - "render": "Visiting this tower costs {charge}" - }, - "Height": { - "question": "What is the height of this tower?", - "render": "This tower is {height} high" - }, - "Operator": { - "question": "Who maintains this tower?", - "render": "Maintained by {operator}" - }, - "name": { - "mappings": { - "0": { - "then": "This tower doesn't have a specific name" - } - }, - "question": "What is the name of this tower?", - "render": "This tower is called {name}" - } - }, - "title": { - "mappings": { - "0": { - "then": "{name}" - } - }, - "render": "Observation tower" - }, - "units": { - "0": { - "applicableUnits": { - "0": { - "human": " meter" - } - } - } - } - }, - "parking": { - "description": "A layer showing car parkings", - "presets": { - "0": { - "title": "car parking" - } - }, - "title": { - "render": "Car parking" - } - }, - "picnic_table": { - "description": "The layer showing picnic tables", - "name": "Picnic tables", - "presets": { - "0": { - "title": "picnic table" - } - }, - "tagRenderings": { - "picnic_table-material": { - "mappings": { - "0": { - "then": "This is a wooden picnic table" - }, - "1": { - "then": "This is a concrete picnic table" - } - }, - "question": "What material is this picnic table made of?", - "render": "This picnic table is made of {material}" - } - }, - "title": { - "render": "Picnic table" - } - }, - "playground": { - "description": "Playgrounds", - "name": "Playgrounds", - "presets": { - "0": { - "title": "Playground" - } - }, - "tagRenderings": { - "Playground-wheelchair": { - "mappings": { - "0": { - "then": "Completely accessible for wheelchair users" - }, - "1": { - "then": "Limited accessibility for wheelchair users" - }, - "2": { - "then": "Not accessible for wheelchair users" - } - }, - "question": "Is this playground accessible to wheelchair users?" - }, - "playground-access": { - "mappings": { - "0": { - "then": "Accessible to the general public" - }, - "1": { - "then": "Accessible to the general public" - }, - "2": { - "then": "Only accessible for clients of the operating business" - }, - "3": { - "then": "Only accessible to students of the school" - }, - "4": { - "then": "Not accessible" - } - }, - "question": "Is this playground accessible to the general public?" - }, - "playground-email": { - "question": "What is the email address of the playground maintainer?", - "render": "{email}" - }, - "playground-lit": { - "mappings": { - "0": { - "then": "This playground is lit at night" - }, - "1": { - "then": "This playground is not lit at night" - } - }, - "question": "Is this playground lit at night?" - }, - "playground-max_age": { - "question": "What is the maximum age allowed to access this playground?", - "render": "Accessible to kids of at most {max_age}" - }, - "playground-min_age": { - "question": "What is the minimum age required to access this playground?", - "render": "Accessible to kids older than {min_age} years" - }, - "playground-opening_hours": { - "mappings": { - "0": { - "then": "Accessible from sunrise till sunset" - }, - "1": { - "then": "Always accessible" - }, - "2": { - "then": "Always accessible" - } - }, - "question": "When is this playground accessible?" - }, - "playground-operator": { - "question": "Who operates this playground?", - "render": "Operated by {operator}" - }, - "playground-phone": { - "question": "What is the phone number of the playground maintainer?", - "render": "{phone}" - }, - "playground-surface": { - "mappings": { - "0": { - "then": "The surface is grass" - }, - "1": { - "then": "The surface is sand" - }, - "2": { - "then": "The surface consist of woodchips" - }, - "3": { - "then": "The surface is paving stones" - }, - "4": { - "then": "The surface is asphalt" - }, - "5": { - "then": "The surface is concrete" - }, - "6": { - "then": "The surface is unpaved" - }, - "7": { - "then": "The surface is paved" - } - }, - "question": "Which is the surface of this playground?
If there are multiple, select the most occuring one", - "render": "The surface is {surface}" - } - }, - "title": { - "mappings": { - "0": { - "then": "Playground {name}" - } - }, - "render": "Playground" - } - }, - "public_bookcase": { - "description": "A streetside cabinet with books, accessible to anyone", - "filter": { - "2": { - "options": { - "0": { - "question": "Indoor or outdoor" - } - } - } - }, - "name": "Bookcases", - "presets": { - "0": { - "title": "Bookcase" - } - }, - "tagRenderings": { - "bookcase-booktypes": { - "mappings": { - "0": { - "then": "Mostly children books" - }, - "1": { - "then": "Mostly books for adults" - }, - "2": { - "then": "Both books for kids and adults" - } - }, - "question": "What kind of books can be found in this public bookcase?" - }, - "bookcase-is-accessible": { - "mappings": { - "0": { - "then": "Publicly accessible" - }, - "1": { - "then": "Only accessible to customers" - } - }, - "question": "Is this public bookcase freely accessible?" - }, - "bookcase-is-indoors": { - "mappings": { - "0": { - "then": "This bookcase is located indoors" - }, - "1": { - "then": "This bookcase is located outdoors" - }, - "2": { - "then": "This bookcase is located outdoors" - } - }, - "question": "Is this bookcase located outdoors?" - }, - "public_bookcase-brand": { - "mappings": { - "0": { - "then": "Part of the network 'Little Free Library'" - }, - "1": { - "then": "This public bookcase is not part of a bigger network" - } - }, - "question": "Is this public bookcase part of a bigger network?", - "render": "This public bookcase is part of {brand}" - }, - "public_bookcase-capacity": { - "question": "How many books fit into this public bookcase?", - "render": "{capacity} books fit in this bookcase" - }, - "public_bookcase-name": { - "mappings": { - "0": { - "then": "This bookcase doesn't have a name" - } - }, - "question": "What is the name of this public bookcase?", - "render": "The name of this bookcase is {name}" - }, - "public_bookcase-operator": { - "question": "Who maintains this public bookcase?", - "render": "Operated by {operator}" - }, - "public_bookcase-ref": { - "mappings": { - "0": { - "then": "This bookcase is not part of a bigger network" - } - }, - "question": "What is the reference number of this public bookcase?", - "render": "The reference number of this public bookcase within {brand} is {ref}" - }, - "public_bookcase-start_date": { - "question": "When was this public bookcase installed?", - "render": "Installed on {start_date}" - }, - "public_bookcase-website": { - "question": "Is there a website with more information about this public bookcase?", - "render": "More info on the website" - } - }, - "title": { - "mappings": { - "0": { - "then": "Public bookcase {name}" - } - }, - "render": "Bookcase" - } - }, - "shops": { - "description": "A shop", - "name": "Shop", - "presets": { - "0": { - "description": "Add a new shop", - "title": "Shop" - } - }, - "tagRenderings": { - "shops-email": { - "question": "What is the email address of this shop?", - "render": "{email}" - }, - "shops-name": { - "question": "What is the name of this shop?" - }, - "shops-opening_hours": { - "question": "What are the opening hours of this shop?", - "render": "{opening_hours_table(opening_hours)}" - }, - "shops-phone": { - "question": "What is the phone number?", - "render": "{phone}" - }, - "shops-shop": { - "mappings": { - "0": { - "then": "Convenience store" - }, - "1": { - "then": "Supermarket" - }, - "2": { - "then": "Clothing store" - }, - "3": { - "then": "Hairdresser" - }, - "4": { - "then": "Bakery" - }, - "5": { - "then": "Car repair (garage)" - }, - "6": { - "then": "Car dealer" - } - }, - "question": "What does this shop sell?", - "render": "This shop sells {shop}" - }, - "shops-website": { - "question": "What is the website of this shop?", - "render": "{website}" - } - }, - "title": { - "mappings": { - "0": { - "then": "{name}" - }, - "1": { - "then": "{shop}" - } - }, - "render": "Shop" - } - }, - "slow_roads": { - "tagRenderings": { - "slow_roads-surface": { - "mappings": { - "0": { - "then": "The surface is grass" - }, - "1": { - "then": "The surface is ground" - }, - "2": { - "then": "The surface is unpaved" - }, - "3": { - "then": "The surface is sand" - }, - "4": { - "then": "The surface is paving stones" - }, - "5": { - "then": "The surface is asphalt" - }, - "6": { - "then": "The surface is concrete" - }, - "7": { - "then": "The surface is paved" - } - }, - "render": "The surface is {surface}" - } - } - }, - "sport_pitch": { - "description": "A sport pitch", - "name": "Sport pitches", - "presets": { - "0": { - "title": "Tabletennis table" - }, - "1": { - "title": "Sport pitch" - } - }, - "tagRenderings": { - "sport-pitch-access": { - "mappings": { - "0": { - "then": "Public access" - }, - "1": { - "then": "Limited access (e.g. only with an appointment, during certain hours, ...)" - }, - "2": { - "then": "Only accessible for members of the club" - }, - "3": { - "then": "Private - not accessible to the public" - } - }, - "question": "Is this sport pitch publicly accessible?" - }, - "sport-pitch-reservation": { - "mappings": { - "0": { - "then": "Making an appointment is obligatory to use this sport pitch" - }, - "1": { - "then": "Making an appointment is recommended when using this sport pitch" - }, - "2": { - "then": "Making an appointment is possible, but not necessary to use this sport pitch" - }, - "3": { - "then": "Making an appointment is not possible" - } - }, - "question": "Does one have to make an appointment to use this sport pitch?" - }, - "sport_pitch-email": { - "question": "What is the email address of the operator?" - }, - "sport_pitch-opening_hours": { - "mappings": { - "1": { - "then": "Always accessible" - } - }, - "question": "When is this pitch accessible?" - }, - "sport_pitch-phone": { - "question": "What is the phone number of the operator?" - }, - "sport_pitch-sport": { - "mappings": { - "0": { - "then": "Basketball is played here" - }, - "1": { - "then": "Soccer is played here" - }, - "2": { - "then": "This is a pingpong table" - }, - "3": { - "then": "Tennis is played here" - }, - "4": { - "then": "Korfball is played here" - }, - "5": { - "then": "Basketball is played here" - } - }, - "question": "Which sport can be played here?", - "render": "{sport} is played here" - }, - "sport_pitch-surface": { - "mappings": { - "0": { - "then": "The surface is grass" - }, - "1": { - "then": "The surface is sand" - }, - "2": { - "then": "The surface is paving stones" - }, - "3": { - "then": "The surface is asphalt" - }, - "4": { - "then": "The surface is concrete" - } - }, - "question": "Which is the surface of this sport pitch?", - "render": "The surface is {surface}" - } - }, - "title": { - "render": "Sport pitch" - } - }, - "street_lamps": { - "name": "Street Lamps", - "presets": { - "0": { - "title": "street lamp" - } - }, - "tagRenderings": { - "colour": { - "mappings": { - "0": { - "then": "This lamp emits white light" - }, - "1": { - "then": "This lamp emits green light" - }, - "2": { - "then": "This lamp emits orange light" - } - }, - "question": "What colour light does this lamp emit?", - "render": "This lamp emits {light:colour} light" - }, - "count": { - "mappings": { - "0": { - "then": "This lamp has 1 fixture" - }, - "1": { - "then": "This lamp has 2 fixtures" - } - }, - "question": "How many fixtures does this light have?", - "render": "This lamp has {light:count} fixtures" - }, - "direction": { - "question": "Where does this lamp point to?", - "render": "This lamp points towards {light:direction}" - }, - "lamp_mount": { - "mappings": { - "0": { - "then": "This lamp sits atop of a straight mast" - }, - "1": { - "then": "This lamp sits at the end of a bent mast" - } - }, - "question": "How is this lamp mounted to the pole?" - }, - "lit": { - "mappings": { - "0": { - "then": "This lamp is lit at night" - }, - "1": { - "then": "This lamp is lit 24/7" - }, - "2": { - "then": "This lamp is lit based on motion" - }, - "3": { - "then": "This lamp is lit based on demand (e.g. with a pushbutton)" - } - }, - "question": "When is this lamp lit?" - }, - "method": { - "mappings": { - "0": { - "then": "This lamp is lit electrically" - }, - "1": { - "then": "This lamp uses LEDs" - }, - "2": { - "then": "This lamp uses incandescent lighting" - }, - "3": { - "then": "This lamp uses halogen lighting" - }, - "4": { - "then": "This lamp uses discharge lamps (unknown type)" - }, - "5": { - "then": "This lamp uses a mercury-vapour lamp (lightly blueish)" - }, - "6": { - "then": "This lamp uses metal-halide lamps (bright white)" - }, - "7": { - "then": "This lamp uses fluorescent lighting" - }, - "8": { - "then": "This lamp uses sodium lamps (unknown type)" - }, - "9": { - "then": "This lamp uses low pressure sodium lamps (monochrome orange)" - }, - "10": { - "then": "This lamp uses high pressure sodium lamps (orange with white)" - }, - "11": { - "then": "This lamp is lit using gas" - } - }, - "question": "What kind of lighting does this lamp use?" - }, - "ref": { - "question": "What is the reference number of this street lamp?", - "render": "This street lamp has the reference number {ref}" - }, - "support": { - "mappings": { - "0": { - "then": "This lamp is suspended using cables" - }, - "1": { - "then": "This lamp is mounted on a ceiling" - }, - "2": { - "then": "This lamp is mounted in the ground" - }, - "3": { - "then": "This lamp is mounted on a short pole (mostly < 1.5m)" - }, - "4": { - "then": "This lamp is mounted on a pole" - }, - "5": { - "then": "This lamp is mounted directly to the wall" - }, - "6": { - "then": "This lamp is mounted to the wall using a metal bar" - } - }, - "question": "How is this street lamp mounted?" - } - }, - "title": { - "mappings": { - "0": { - "then": "Street Lamp {ref}" - } - }, - "render": "Street Lamp" - } - }, - "surveillance_camera": { - "name": "Surveillance camera's", - "tagRenderings": { - "Camera type: fixed; panning; dome": { - "mappings": { - "0": { - "then": "A fixed (non-moving) camera" - }, - "1": { - "then": "A dome camera (which can turn)" - }, - "2": { - "then": "A panning camera" - } - }, - "question": "What kind of camera is this?" - }, - "Level": { - "question": "On which level is this camera located?", - "render": "Located on level {level}" - }, - "Operator": { - "question": "Who operates this CCTV?", - "render": "Operated by {operator}" - }, - "Surveillance type: public, outdoor, indoor": { - "mappings": { - "0": { - "then": "A public area is surveilled, such as a street, a bridge, a square, a park, a train station, a public corridor or tunnel,..." - }, - "1": { - "then": "An outdoor, yet private area is surveilled (e.g. a parking lot, a fuel station, courtyard, entrance, private driveway, ...)" - }, - "2": { - "then": "A private indoor area is surveilled, e.g. a shop, a private underground parking, ..." - } - }, - "question": "What kind of surveillance is this camera" - }, - "Surveillance:zone": { - "mappings": { - "0": { - "then": "Surveills a parking" - }, - "1": { - "then": "Surveills the traffic" - }, - "2": { - "then": "Surveills an entrance" - }, - "3": { - "then": "Surveills a corridor" - }, - "4": { - "then": "Surveills a public tranport platform" - }, - "5": { - "then": "Surveills a shop" - } - }, - "question": "What exactly is surveilled here?", - "render": " Surveills a {surveillance:zone}" - }, - "camera:mount": { - "mappings": { - "0": { - "then": "This camera is placed against a wall" - }, - "1": { - "then": "This camera is placed one a pole" - }, - "2": { - "then": "This camera is placed on the ceiling" - } - }, - "question": "How is this camera placed?", - "render": "Mounting method: {camera:mount}" - }, - "camera_direction": { - "mappings": { - "0": { - "then": "Films to a compass heading of {direction}" - } - }, - "question": "In which geographical direction does this camera film?", - "render": "Films to a compass heading of {camera:direction}" - }, - "is_indoor": { - "mappings": { - "0": { - "then": "This camera is located indoors" - }, - "1": { - "then": "This camera is located outdoors" - }, - "2": { - "then": "This camera is probably located outdoors" - } - }, - "question": "Is the public space surveilled by this camera an indoor or outdoor space?" - } - }, - "title": { - "render": "Surveillance Camera" - } - }, - "toilet": { - "filter": { - "0": { - "options": { - "0": { - "question": "Wheelchair accessible" - } - } - }, - "1": { - "options": { - "0": { - "question": "Has a changing table" - } - } - }, - "2": { - "options": { - "0": { - "question": "Free to use" - } - } - }, - "3": { - "options": { - "0": { - "question": "Opened now" - } - } - } - }, - "name": "Toilets", - "presets": { - "0": { - "description": "A publicly accessible toilet or restroom", - "title": "toilet" - }, - "1": { - "description": "A restroom which has at least one wheelchair-accessible toilet", - "title": "toilets with wheelchair accessible toilet" - } - }, - "tagRenderings": { - "Opening-hours": { - "mappings": { - "0": { - "then": "Opened 24/7" - } - }, - "question": "When are these toilets opened?" - }, - "toilet-access": { - "mappings": { - "0": { - "then": "Public access" - }, - "1": { - "then": "Only access to customers" - }, - "2": { - "then": "Not accessible" - }, - "3": { - "then": "Accessible, but one has to ask a key to enter" - }, - "4": { - "then": "Public access" - } - }, - "question": "Are these toilets publicly accessible?", - "render": "Access is {access}" - }, - "toilet-changing_table:location": { - "mappings": { - "0": { - "then": "The changing table is in the toilet for women. " - }, - "1": { - "then": "The changing table is in the toilet for men. " - }, - "2": { - "then": "The changing table is in the toilet for wheelchair users. " - }, - "3": { - "then": "The changing table is in a dedicated room. " - } - }, - "question": "Where is the changing table located?", - "render": "The changing table is located at {changing_table:location}" - }, - "toilet-charge": { - "question": "How much does one have to pay for these toilets?", - "render": "The fee is {charge}" - }, - "toilet-handwashing": { - "mappings": { - "0": { - "then": "This toilets have a sink to wash your hands" - }, - "1": { - "then": "This toilets don't have a sink to wash your hands" - } - }, - "question": "Do these toilets have a sink to wash your hands?" - }, - "toilet-has-paper": { - "mappings": { - "0": { - "then": "This toilet is equipped with toilet paper" - }, - "1": { - "then": "You have to bring your own toilet paper to this toilet" - } - }, - "question": "Does one have to bring their own toilet paper to this toilet?" - }, - "toilets-changing-table": { - "mappings": { - "0": { - "then": "A changing table is available" - }, - "1": { - "then": "No changing table is available" - } - }, - "question": "Is a changing table (to change diapers) available?" - }, - "toilets-fee": { - "mappings": { - "0": { - "then": "These are paid toilets" - }, - "1": { - "then": "Free to use" - } - }, - "question": "Are these toilets free to use?" - }, - "toilets-type": { - "mappings": { - "0": { - "then": "There are only seated toilets" - }, - "1": { - "then": "There are only urinals here" - }, - "2": { - "then": "There are only squat toilets here" - }, - "3": { - "then": "Both seated toilets and urinals are available here" - } - }, - "question": "Which kind of toilets are this?" - }, - "toilets-wheelchair": { - "mappings": { - "0": { - "then": "There is a dedicated toilet for wheelchair users" - }, - "1": { - "then": "No wheelchair access" - } - }, - "question": "Is there a dedicated toilet for wheelchair users" - } - }, - "title": { - "render": "Toilet" - } - }, - "trail": { - "name": "Trails", - "tagRenderings": { - "Color": { - "mappings": { - "0": { - "then": "Blue trail" - }, - "1": { - "then": "Red trail" - }, - "2": { - "then": "Green trail" - }, - "3": { - "then": "Yellow trail" - } - } - }, - "trail-length": { - "render": "The trail is {_length:km} kilometers long" - } - }, - "title": { - "render": "Trail" - } - }, - "tree_node": { - "name": "Tree", - "presets": { - "0": { - "description": "A tree of a species with leaves, such as oak or populus.", - "title": "Broadleaved tree" - }, - "1": { - "description": "A tree of a species with needles, such as pine or spruce.", - "title": "Needleleaved tree" - }, - "2": { - "description": "If you're not sure whether it's a broadleaved or needleleaved tree.", - "title": "Tree" - } - }, - "tagRenderings": { - "tree-decidouous": { - "mappings": { - "0": { - "then": "Deciduous: the tree loses its leaves for some time of the year." - }, - "1": { - "then": "Evergreen." - } - }, - "question": "Is this tree evergreen or deciduous?" - }, - "tree-denotation": { - "mappings": { - "0": { - "then": "The tree is remarkable due to its size or prominent location. It is useful for navigation." - }, - "1": { - "then": "The tree is a natural monument, e.g. because it is especially old, or of a valuable species." - }, - "2": { - "then": "The tree is used for agricultural purposes, e.g. in an orchard." - }, - "3": { - "then": "The tree is in a park or similar (cemetery, school grounds, …)." - }, - "4": { - "then": "The tree is a residential garden." - }, - "5": { - "then": "This is a tree along an avenue." - }, - "6": { - "then": "The tree is an urban area." - }, - "7": { - "then": "The tree is outside of an urban area." - } - }, - "question": "How significant is this tree? Choose the first answer that applies." - }, - "tree-height": { - "mappings": { - "0": { - "then": "Height: {height} m" - } - }, - "render": "Height: {height}" - }, - "tree-heritage": { - "mappings": { - "0": { - "then": "\"\"/ Registered as heritage by Onroerend Erfgoed Flanders" - }, - "1": { - "then": "Registered as heritage by Direction du Patrimoine culturel Brussels" - }, - "2": { - "then": "Registered as heritage by a different organisation" - }, - "3": { - "then": "Not registered as heritage" - }, - "4": { - "then": "Registered as heritage by a different organisation" - } - }, - "question": "Is this tree registered heritage?" - }, - "tree-leaf_type": { - "mappings": { - "0": { - "then": "\"\"/ Broadleaved" - }, - "1": { - "then": "\"\"/ Needleleaved" - }, - "2": { - "then": "\"\"/ Permanently leafless" - } - }, - "question": "Is this a broadleaved or needleleaved tree?" - }, - "tree_node-name": { - "mappings": { - "0": { - "then": "The tree does not have a name." - } - }, - "question": "Does the tree have a name?", - "render": "Name: {name}" - }, - "tree_node-ref:OnroerendErfgoed": { - "question": "What is the ID issued by Onroerend Erfgoed Flanders?", - "render": "\"\"/ Onroerend Erfgoed ID: {ref:OnroerendErfgoed}" - }, - "tree_node-wikidata": { - "question": "What is the Wikidata ID for this tree?", - "render": "\"\"/ Wikidata: {wikidata}" - } - }, - "title": { - "mappings": { - "0": { - "then": "{name}" - } - }, - "render": "Tree" - } - }, - "viewpoint": { - "description": "A nice viewpoint or nice view. Ideal to add an image if no other category fits", - "name": "Viewpoint", - "presets": { - "0": { - "title": "Viewpoint" - } - }, - "tagRenderings": { - "viewpoint-description": { - "question": "Do you want to add a description?" - } - }, - "title": { - "render": "Viewpoint" - } - }, - "visitor_information_centre": { - "description": "A visitor center offers information about a specific attraction or place of interest where it is located.", - "name": "Visitor Information Centre", - "title": { - "mappings": { - "1": { - "then": "{name}" - } - }, - "render": "{name}" - } - }, - "waste_basket": { - "description": "This is a public waste basket, thrash can, where you can throw away your thrash.", - "mapRendering": { - "0": { - "iconSize": { - "mappings": { + "bench": { + "description": "A bench is a wooden, metal, stone, ... surface where a human can sit. This layers visualises them and asks a few questions about them.", + "name": "Benches", + "presets": { "0": { - "then": "Waste Basket" + "title": "bench" } - } + }, + "tagRenderings": { + "bench-backrest": { + "mappings": { + "0": { + "then": "Backrest: Yes" + }, + "1": { + "then": "Backrest: No" + } + }, + "question": "Does this bench have a backrest?" + }, + "bench-colour": { + "mappings": { + "0": { + "then": "Colour: brown" + }, + "1": { + "then": "Colour: green" + }, + "2": { + "then": "Colour: gray" + }, + "3": { + "then": "Colour: white" + }, + "4": { + "then": "Colour: red" + }, + "5": { + "then": "Colour: black" + }, + "6": { + "then": "Colour: blue" + }, + "7": { + "then": "Colour: yellow" + } + }, + "question": "Which colour does this bench have?", + "render": "Colour: {colour}" + }, + "bench-direction": { + "question": "In which direction are you looking when sitting on the bench?", + "render": "When sitting on the bench, one looks towards {direction}°." + }, + "bench-material": { + "mappings": { + "0": { + "then": "Material: wood" + }, + "1": { + "then": "Material: metal" + }, + "2": { + "then": "Material: stone" + }, + "3": { + "then": "Material: concrete" + }, + "4": { + "then": "Material: plastic" + }, + "5": { + "then": "Material: steel" + } + }, + "question": "What is the bench (seating) made from?", + "render": "Material: {material}" + }, + "bench-seats": { + "question": "How many seats does this bench have?", + "render": "{seats} seats" + }, + "bench-survey:date": { + "question": "When was this bench last surveyed?", + "render": "This bench was last surveyed on {survey:date}" + } + }, + "title": { + "render": "Bench" } - } }, - "name": "Waste Basket", - "presets": { - "0": { - "title": "Waste Basket" - } - }, - "tagRenderings": { - "dispensing_dog_bags": { - "mappings": { - "0": { - "then": "This waste basket has a dispenser for (dog) excrement bags" - }, - "1": { - "then": "This waste basket does not have a dispenser for (dog) excrement bags" - }, - "2": { - "then": "This waste basket does not have a dispenser for (dog) excrement bags" - } + "bench_at_pt": { + "description": "A layer showing all public-transport-stops which do have a bench", + "name": "Benches at public transport stops", + "tagRenderings": { + "bench_at_pt-bench_type": { + "mappings": { + "0": { + "then": "There is a normal, sit-down bench here" + }, + "1": { + "then": "Stand up bench" + }, + "2": { + "then": "There is no bench here" + } + }, + "question": "What kind of bench is this?" + }, + "bench_at_pt-name": { + "render": "{name}" + } }, - "question": "Does this waste basket have a dispenser for dog excrement bags?" - }, - "waste-basket-waste-types": { - "mappings": { - "0": { - "then": "A waste basket for general waste" - }, - "1": { - "then": "A waste basket for general waste" - }, - "2": { - "then": "A waste basket for dog excrements" - }, - "3": { - "then": "A waste basket for cigarettes" - }, - "4": { - "then": "A waste basket for drugs" - }, - "5": { - "then": "A waste basket for needles and other sharp objects" - } - }, - "question": "What kind of waste basket is this?" - } + "title": { + "mappings": { + "0": { + "then": "Bench at public transport stop" + }, + "1": { + "then": "Bench in shelter" + } + }, + "render": "Bench" + } }, - "title": { - "render": "Waste Basket" + "bicycle_library": { + "description": "A facility where bicycles can be lent for longer period of times", + "name": "Bicycle library", + "presets": { + "0": { + "description": "A bicycle library has a collection of bikes which can be lent", + "title": "Fietsbibliotheek" + } + }, + "tagRenderings": { + "bicycle-library-target-group": { + "mappings": { + "0": { + "then": "Bikes for children available" + }, + "1": { + "then": "Bikes for adult available" + }, + "2": { + "then": "Bikes for disabled persons available" + } + }, + "question": "Who can lend bicycles here?" + }, + "bicycle_library-charge": { + "mappings": { + "0": { + "then": "Lending a bicycle is free" + }, + "1": { + "then": "Lending a bicycle costs €20/year and €20 warranty" + } + }, + "question": "How much does lending a bicycle cost?", + "render": "Lending a bicycle costs {charge}" + }, + "bicycle_library-name": { + "question": "What is the name of this bicycle library?", + "render": "This bicycle library is called {name}" + } + }, + "title": { + "render": "Bicycle library" + } + }, + "bicycle_rental": { + "description": "Bicycle rental stations", + "name": "Bicycle rental", + "presets": { + "0": { + "description": "A manned shop which focuses on bicycle rental", + "title": "bicycle rental shop" + }, + "1": { + "title": "bicycle rental" + } + }, + "tagRenderings": { + "8": { + "renderings": { + "0": { + "question": "How much type_plural can be rented here? ", + "render": "{capacity:bicycle_type} type_plural can be rented here" + } + }, + "rewrite": { + "into": { + "0": { + "1": "city bikes" + }, + "1": { + "1": "electrical bikes" + }, + "2": { + "1": "bikes for children" + }, + "3": { + "1": "BMX bikes" + }, + "4": { + "1": "mountainbike" + }, + "5": { + "1": "bicycle panniers" + } + } + } + }, + "bicycle-types": { + "mappings": { + "0": { + "then": "Normal city bikes can be rented here" + }, + "1": { + "then": "Electrical bikes can be rented here" + }, + "2": { + "then": "BMX bikes can be rented here" + }, + "3": { + "then": "Mountainbikes can be rented here" + }, + "4": { + "then": "Bikes for childs can be rented here" + } + }, + "question": "What kind of bicycles and accessories are rented here?", + "render": "{rental} is rented here" + }, + "bicycle_rental_type": { + "mappings": { + "0": { + "then": "This is a shop whose main focus is bicycle rental" + }, + "1": { + "then": "This is a rental buisiness which rents out various objects and/or vehicles. It rents out bicycles too, but this is not the main focus" + }, + "2": { + "then": "This is a shop which sells or repairs bicycles, but also rents out bicycles" + }, + "3": { + "then": "This is an automated docking station, where a bicycle is mechanically locked into a structure" + }, + "4": { + "then": "A machine is present which dispenses and accepts keys, eventually after authentication and/or payment. The bicycles are parked nearby" + }, + "5": { + "then": "This is a dropoff point: a designated bicycle parking for this cycle rental" + } + }, + "question": "What kind of bicycle rental is this?" + } + }, + "title": { + "mappings": { + "0": { + "then": "{name}" + } + }, + "render": "Bicycle rental" + } + }, + "bicycle_tube_vending_machine": { + "description": "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, ...)", + "name": "Bicycle tube vending machine", + "presets": { + "0": { + "title": "Bicycle tube vending machine" + } + }, + "tagRenderings": { + "Still in use?": { + "mappings": { + "0": { + "then": "This vending machine works" + }, + "1": { + "then": "This vending machine is broken" + }, + "2": { + "then": "This vending machine is closed" + } + }, + "question": "Is this vending machine still operational?", + "render": "The operational status is {operational_status}" + } + }, + "title": { + "render": "Bicycle tube vending machine" + } + }, + "bike_cafe": { + "description": "A bike café is a café geared towards cyclists, for example with services such as a pump, with lots of bicycle-related decoration, ...", + "name": "Bike cafe", + "presets": { + "0": { + "title": "Bike cafe" + } + }, + "tagRenderings": { + "bike_cafe-bike-pump": { + "mappings": { + "0": { + "then": "This bike cafe offers a bike pump for anyone" + }, + "1": { + "then": "This bike cafe doesn't offer a bike pump for anyone" + } + }, + "question": "Does this bike cafe offer a bike pump for use by anyone?" + }, + "bike_cafe-email": { + "question": "What is the email address of {name}?" + }, + "bike_cafe-name": { + "question": "What is the name of this bike cafe?", + "render": "This bike cafe is called {name}" + }, + "bike_cafe-opening_hours": { + "question": "When it this bike café opened?" + }, + "bike_cafe-phone": { + "question": "What is the phone number of {name}?" + }, + "bike_cafe-repair-service": { + "mappings": { + "0": { + "then": "This bike cafe repairs bikes" + }, + "1": { + "then": "This bike cafe doesn't repair bikes" + } + }, + "question": "Does this bike cafe repair bikes?" + }, + "bike_cafe-repair-tools": { + "mappings": { + "0": { + "then": "This bike cafe offers tools for DIY repair" + }, + "1": { + "then": "This bike cafe doesn't offer tools for DIY repair" + } + }, + "question": "Are there tools here to repair your own bike?" + }, + "bike_cafe-website": { + "question": "What is the website of {name}?" + } + }, + "title": { + "mappings": { + "0": { + "then": "Bike cafe {name}" + } + }, + "render": "Bike cafe" + } + }, + "bike_cleaning": { + "description": "A layer showing facilities where one can clean their bike", + "name": "Bike cleaning service", + "presets": { + "0": { + "title": "Bike cleaning service" + } + }, + "tagRenderings": { + "bike_cleaning-charge": { + "mappings": { + "0": { + "then": "Free to use cleaning service" + }, + "1": { + "then": "Free to use" + }, + "2": { + "then": "The cleaning service has a fee" + } + }, + "question": "How much does it cost to use the cleaning service?", + "render": "Using the cleaning service costs {charge}" + }, + "bike_cleaning-service:bicycle:cleaning:charge": { + "mappings": { + "0": { + "then": "The cleaning service is free to use" + }, + "1": { + "then": "Free to use" + }, + "2": { + "then": "The cleaning service has a fee, but the amount is not known" + } + }, + "question": "How much does it cost to use the cleaning service?", + "render": "Using the cleaning service costs {service:bicycle:cleaning:charge}" + } + }, + "title": { + "mappings": { + "0": { + "then": "Bike cleaning service {name}" + } + }, + "render": "Bike cleaning service" + } + }, + "bike_parking": { + "description": "A layer showing where you can park your bike", + "name": "Bike parking", + "presets": { + "0": { + "title": "Bike parking" + } + }, + "tagRenderings": { + "Access": { + "mappings": { + "0": { + "then": "Publicly accessible" + }, + "1": { + "then": "Access is primarily for visitors to a business" + }, + "2": { + "then": "Access is limited to members of a school, company or organisation" + } + }, + "question": "Who can use this bicycle parking?", + "render": "{access}" + }, + "Bicycle parking type": { + "mappings": { + "0": { + "then": "Staple racks" + }, + "1": { + "then": "Wheel rack/loops" + }, + "2": { + "then": "Handlebar holder" + }, + "3": { + "then": "Rack" + }, + "4": { + "then": "Two-tiered" + }, + "5": { + "then": "Shed" + }, + "6": { + "then": "Bollard" + }, + "7": { + "then": "An area on the floor which is marked for bicycle parking" + } + }, + "question": "What is the type of this bicycle parking?", + "render": "This is a bicycle parking of the type: {bicycle_parking}" + }, + "Capacity": { + "question": "How many bicycles fit in this bicycle parking (including possible cargo bicycles)?", + "render": "Place for {capacity} bikes" + }, + "Cargo bike capacity?": { + "question": "How many cargo bicycles fit in this bicycle parking?", + "render": "This parking fits {capacity:cargo_bike} cargo bikes" + }, + "Cargo bike spaces?": { + "mappings": { + "0": { + "then": "This parking has room for cargo bikes" + }, + "1": { + "then": "This parking has designated (official) spots for cargo bikes." + }, + "2": { + "then": "You're not allowed to park cargo bikes" + } + }, + "question": "Does this bicycle parking have spots for cargo bikes?" + }, + "Is covered?": { + "mappings": { + "0": { + "then": "This parking is covered (it has a roof)" + }, + "1": { + "then": "This parking is not covered" + } + }, + "question": "Is this parking covered? Also select \"covered\" for indoor parkings." + }, + "Underground?": { + "mappings": { + "0": { + "then": "Underground parking" + }, + "1": { + "then": "Surface level parking" + }, + "2": { + "then": "Rooftop parking" + }, + "3": { + "then": "Surface level parking" + } + }, + "question": "What is the relative location of this bicycle parking?" + } + }, + "title": { + "render": "Bike parking" + } + }, + "bike_repair_station": { + "description": "A layer showing bicycle pumps and bicycle repair tool stands", + "name": "Bicycle pump and repair", + "presets": { + "0": { + "description": "A device to inflate your tires on a fixed location in the public space.", + "title": "bike pump" + }, + "1": { + "description": "A bicycle pump and tools to repair your bike in the public space. The tools are often secured with chains against theft.", + "title": "bike repair station and pump" + }, + "2": { + "description": "Tools to repair your bike in the public space (without pump). The tools are secured against theft.", + "title": "bike repair station without pump" + } + }, + "tagRenderings": { + "Email maintainer": { + "render": "Report this bicycle pump as broken" + }, + "Operational status": { + "mappings": { + "0": { + "then": "The bike pump is broken" + }, + "1": { + "then": "The bike pump is operational" + } + }, + "question": "Is the bike pump still operational?" + }, + "access": { + "mappings": { + "0": { + "then": "Publicly accessible" + }, + "1": { + "then": "Publicly accessible" + }, + "2": { + "then": "Only for customers" + }, + "3": { + "then": "Not accessible to the general public" + }, + "4": { + "then": "Not accessible to the general public" + } + }, + "question": "Who is allowed to use this repair station?" + }, + "bike_repair_station-available-services": { + "mappings": { + "0": { + "then": "There is only a pump present" + }, + "1": { + "then": "There are only tools (screwdrivers, pliers...) present" + }, + "2": { + "then": "There are both tools and a pump present" + } + }, + "question": "Which services are available at this location?" + }, + "bike_repair_station-bike-chain-tool": { + "mappings": { + "0": { + "then": "There is a chain tool" + }, + "1": { + "then": "There is no chain tool" + } + }, + "question": "Does this bike repair station have a special tool to repair your bike chain?" + }, + "bike_repair_station-bike-stand": { + "mappings": { + "0": { + "then": "There is a hook or stand" + }, + "1": { + "then": "There is no hook or stand" + } + }, + "question": "Does this bike station have a hook to hang your bike on or a stand to raise it?" + }, + "bike_repair_station-electrical_pump": { + "mappings": { + "0": { + "then": "Manual pump" + }, + "1": { + "then": "Electrical pump" + } + }, + "question": "Is this an electric bike pump?" + }, + "bike_repair_station-email": { + "question": "What is the email address of the maintainer?" + }, + "bike_repair_station-manometer": { + "mappings": { + "0": { + "then": "There is a manometer" + }, + "1": { + "then": "There is no manometer" + }, + "2": { + "then": "There is manometer but it is broken" + } + }, + "question": "Does the pump have a pressure indicator or manometer?" + }, + "bike_repair_station-opening_hours": { + "mappings": { + "0": { + "then": "Always open" + } + }, + "question": "When is this bicycle repair point open?" + }, + "bike_repair_station-operator": { + "question": "Who maintains this cycle pump?", + "render": "Maintained by {operator}" + }, + "bike_repair_station-phone": { + "question": "What is the phone number of the maintainer?" + }, + "bike_repair_station-valves": { + "mappings": { + "0": { + "then": "Sclaverand (also known as Presta)" + }, + "1": { + "then": "Dunlop" + }, + "2": { + "then": "Schrader (cars)" + } + }, + "question": "What valves are supported?", + "render": "This pump supports the following valves: {valves}" + } + }, + "title": { + "mappings": { + "0": { + "then": "Bike repair station" + }, + "1": { + "then": "Bike repair station" + }, + "2": { + "then": "Broken pump" + }, + "3": { + "then": "Bicycle pump {name}" + }, + "4": { + "then": "Bicycle pump" + } + }, + "render": "Bike station (pump & repair)" + } + }, + "bike_shop": { + "description": "A shop specifically selling bicycles or related items", + "name": "Bike repair/shop", + "presets": { + "0": { + "title": "Bike repair/shop" + } + }, + "tagRenderings": { + "bike_repair_bike-pump-service": { + "mappings": { + "0": { + "then": "This shop offers a bike pump for anyone" + }, + "1": { + "then": "This shop doesn't offer a bike pump for anyone" + }, + "2": { + "then": "There is bicycle pump, it is shown as a separate point " + } + }, + "question": "Does this shop offer a bike pump for use by anyone?" + }, + "bike_repair_bike-wash": { + "mappings": { + "0": { + "then": "This shop cleans bicycles" + }, + "1": { + "then": "This shop has an installation where one can clean bicycles themselves" + }, + "2": { + "then": "This shop doesn't offer bicycle cleaning" + } + }, + "question": "Are bicycles washed here?" + }, + "bike_repair_rents-bikes": { + "mappings": { + "0": { + "then": "This shop rents out bikes" + }, + "1": { + "then": "This shop doesn't rent out bikes" + } + }, + "question": "Does this shop rent out bikes?" + }, + "bike_repair_repairs-bikes": { + "mappings": { + "0": { + "then": "This shop repairs bikes" + }, + "1": { + "then": "This shop doesn't repair bikes" + }, + "2": { + "then": "This shop only repairs bikes bought here" + }, + "3": { + "then": "This shop only repairs bikes of a certain brand" + } + }, + "question": "Does this shop repair bikes?" + }, + "bike_repair_second-hand-bikes": { + "mappings": { + "0": { + "then": "This shop sells second-hand bikes" + }, + "1": { + "then": "This shop doesn't sell second-hand bikes" + }, + "2": { + "then": "This shop only sells second-hand bikes" + } + }, + "question": "Does this shop sell second-hand bikes?" + }, + "bike_repair_sells-bikes": { + "mappings": { + "0": { + "then": "This shop sells bikes" + }, + "1": { + "then": "This shop doesn't sell bikes" + } + }, + "question": "Does this shop sell bikes?" + }, + "bike_repair_tools-service": { + "mappings": { + "0": { + "then": "This shop offers tools for DIY repair" + }, + "1": { + "then": "This shop doesn't offer tools for DIY repair" + }, + "2": { + "then": "Tools for DIY repair are only available if you bought/hire the bike in the shop" + } + }, + "question": "Are there tools here to repair your own bike?" + }, + "bike_shop-email": { + "question": "What is the email address of {name}?" + }, + "bike_shop-is-bicycle_shop": { + "render": "This shop is specialized in selling {shop} and does bicycle related activities" + }, + "bike_shop-name": { + "question": "What is the name of this bicycle shop?", + "render": "This bicycle shop is called {name}" + }, + "bike_shop-phone": { + "question": "What is the phone number of {name}?" + }, + "bike_shop-website": { + "question": "What is the website of {name}?" + } + }, + "title": { + "mappings": { + "0": { + "then": "Sport gear shop {name}" + }, + "2": { + "then": "Bicycle rental {name}" + }, + "3": { + "then": "Bike repair {name}" + }, + "4": { + "then": "Bike shop {name}" + }, + "5": { + "then": "Bike repair/shop {name}" + } + }, + "render": "Bike repair/shop" + } + }, + "bike_themed_object": { + "description": "A layer with bike-themed objects but who don't match any other layer", + "name": "Bike related object", + "title": { + "mappings": { + "1": { + "then": "Cycle track" + } + }, + "render": "Bike related object" + } + }, + "binocular": { + "description": "Binoculas", + "name": "Binoculars", + "presets": { + "0": { + "description": "A telescope or pair of binoculars mounted on a pole, available to the public to look around. ", + "title": "binoculars" + } + }, + "tagRenderings": { + "binocular-charge": { + "mappings": { + "0": { + "then": "Free to use" + } + }, + "question": "How much does one have to pay to use these binoculars?", + "render": "Using these binoculars costs {charge}" + }, + "binocular-direction": { + "question": "When looking through this binocular, in what direction does one look?", + "render": "Looks towards {direction}°" + } + }, + "title": { + "render": "Binoculars" + } + }, + "birdhide": { + "description": "A birdhide", + "filter": { + "0": { + "options": { + "0": { + "question": "Wheelchair accessible" + } + } + }, + "1": { + "options": { + "0": { + "question": "Only covered birdhides" + } + } + } + }, + "name": "Bird watching places", + "presets": { + "0": { + "description": "A covered shelter where one can watch birds comfortably", + "title": "Birdhide" + }, + "1": { + "description": "A screen or wall with openings to watch birds", + "title": "Bird blind" + } + }, + "tagRenderings": { + "bird-hide-shelter-or-wall": { + "mappings": { + "0": { + "then": "Bird blind" + }, + "1": { + "then": "Bird hide" + }, + "2": { + "then": "Bird tower hide" + }, + "3": { + "then": "Bird hide shelter" + } + }, + "question": "Is this a bird blind or a bird watching shelter?" + }, + "bird-hide-wheelchair": { + "mappings": { + "0": { + "then": "There are special provisions for wheelchair users" + }, + "1": { + "then": "A wheelchair can easily use this birdhide" + }, + "2": { + "then": "This birdhide is reachable by wheelchair, but it is not easy" + }, + "3": { + "then": "Not accessible to wheelchair users" + } + }, + "question": "Is this bird hide accessible to wheelchair users?" + }, + "birdhide-operator": { + "mappings": { + "0": { + "then": "Operated by Natuurpunt" + }, + "1": { + "then": "Operated by the Agency for Nature and Forests" + } + }, + "question": "Who operates this birdhide?", + "render": "Operated by {operator}" + } + }, + "title": { + "mappings": { + "1": { + "then": "Bird hide {name}" + }, + "2": { + "then": "Bird blind {name}" + } + }, + "render": "Bird watching place" + } + }, + "cafe_pub": { + "description": "A layer showing cafés and pubs where one can gather around a drink. The layer asks for some relevant questions", + "filter": { + "0": { + "options": { + "0": { + "question": "Opened now" + } + } + } + }, + "name": "Cafés and pubs", + "presets": { + "0": { + "description": "A pub, mostly for drinking beers in a warm, relaxed interior", + "title": "pub" + }, + "1": { + "description": "A more modern and commercial bar, possibly with a music and light installation", + "title": "bar" + }, + "2": { + "description": "A cafe to drink tea, coffee or an alcoholical bevarage in a quiet environment", + "title": "cafe" + } + }, + "tagRenderings": { + "Classification": { + "mappings": { + "0": { + "then": "A pub, mostly for drinking beers in a warm, relaxed interior" + }, + "1": { + "then": "A more modern and commercial bar, possibly with a music and light installation" + }, + "2": { + "then": "A cafe to drink tea, coffee or an alcoholical bevarage in a quiet environment" + }, + "3": { + "then": "A restuarant where one can get a proper meal" + }, + "4": { + "then": "An open space where beer is served, typically seen in Germany" + } + }, + "question": "What kind of cafe is this" + }, + "Name": { + "question": "What is the name of this pub?", + "render": "This pub is named {name}" + } + }, + "title": { + "mappings": { + "0": { + "then": "{name}" + } + }, + "render": "Pub" + } + }, + "charging_station": { + "description": "A charging station", + "filter": { + "0": { + "options": { + "0": { + "question": "All vehicle types" + }, + "1": { + "question": "Charging station for bicycles" + }, + "2": { + "question": "Charging station for cars" + } + } + }, + "1": { + "options": { + "0": { + "question": "Only working charging stations" + } + } + }, + "2": { + "options": { + "0": { + "question": "All connectors" + }, + "1": { + "question": "Has a
Schuko wall plug without ground pin (CEE7/4 type F)
connector" + }, + "2": { + "question": "Has a
European wall plug with ground pin (CEE7/4 type E)
connector" + }, + "3": { + "question": "Has a
Chademo
connector" + }, + "4": { + "question": "Has a
Type 1 with cable (J1772)
connector" + }, + "5": { + "question": "Has a
Type 1 without cable (J1772)
connector" + }, + "6": { + "question": "Has a
Type 1 CCS (aka Type 1 Combo)
connector" + }, + "7": { + "question": "Has a
Tesla Supercharger
connector" + }, + "8": { + "question": "Has a
Type 2 (mennekes)
connector" + }, + "9": { + "question": "Has a
Type 2 CCS (mennekes)
connector" + }, + "10": { + "question": "Has a
Type 2 with cable (mennekes)
connector" + }, + "11": { + "question": "Has a
Tesla Supercharger CCS (a branded type2_css)
connector" + }, + "12": { + "question": "Has a
Tesla Supercharger (destination)
connector" + }, + "13": { + "question": "Has a
Tesla supercharger (destination) (A Type 2 with cable branded as tesla)
connector" + }, + "14": { + "question": "Has a
USB to charge phones and small electronics
connector" + }, + "15": { + "question": "Has a
Bosch Active Connect with 3 pins and cable
connector" + }, + "16": { + "question": "Has a
Bosch Active Connect with 5 pins and cable
connector" + } + } + } + }, + "name": "Charging stations", + "presets": { + "0": { + "title": "charging station for electrical bikes with a normal european wall plug (meant to charge electrical bikes)" + }, + "1": { + "title": "charging station for cars" + } + }, + "tagRenderings": { + "Auth phone": { + "question": "What's the phone number for authentication call or SMS?", + "render": "Authenticate by calling or SMS'ing to {authentication:phone_call:number}" + }, + "Authentication": { + "mappings": { + "0": { + "then": "Authentication by a membership card" + }, + "1": { + "then": "Authentication by an app" + }, + "2": { + "then": "Authentication via phone call is available" + }, + "3": { + "then": "Authentication via SMS is available" + }, + "4": { + "then": "Authentication via NFC is available" + }, + "5": { + "then": "Authentication via Money Card is available" + }, + "6": { + "then": "Authentication via debit card is available" + }, + "7": { + "then": "Charging here is (also) possible without authentication" + } + }, + "question": "What kind of authentication is available at the charging station?" + }, + "Available_charging_stations (generated)": { + "mappings": { + "0": { + "then": "Schuko wall plug without ground pin (CEE7/4 type F)" + }, + "1": { + "then": "Schuko wall plug without ground pin (CEE7/4 type F)" + }, + "2": { + "then": "European wall plug with ground pin (CEE7/4 type E)" + }, + "3": { + "then": "European wall plug with ground pin (CEE7/4 type E)" + }, + "4": { + "then": "Chademo" + }, + "5": { + "then": "Chademo" + }, + "6": { + "then": "Type 1 with cable (J1772)" + }, + "7": { + "then": "Type 1 with cable (J1772)" + }, + "8": { + "then": "Type 1 without cable (J1772)" + }, + "9": { + "then": "Type 1 without cable (J1772)" + }, + "10": { + "then": "Type 1 CCS (aka Type 1 Combo)" + }, + "11": { + "then": "Type 1 CCS (aka Type 1 Combo)" + }, + "12": { + "then": "Tesla Supercharger" + }, + "13": { + "then": "Tesla Supercharger" + }, + "14": { + "then": "Type 2 (mennekes)" + }, + "15": { + "then": "Type 2 (mennekes)" + }, + "16": { + "then": "Type 2 CCS (mennekes)" + }, + "17": { + "then": "Type 2 CCS (mennekes)" + }, + "18": { + "then": "Type 2 with cable (mennekes)" + }, + "19": { + "then": "Type 2 with cable (mennekes)" + }, + "20": { + "then": "Tesla Supercharger CCS (a branded type2_css)" + }, + "21": { + "then": "Tesla Supercharger CCS (a branded type2_css)" + }, + "22": { + "then": "Tesla Supercharger (destination)" + }, + "23": { + "then": "Tesla Supercharger (destination)" + }, + "24": { + "then": "Tesla supercharger (destination) (A Type 2 with cable branded as tesla)" + }, + "25": { + "then": "Tesla supercharger (destination) (A Type 2 with cable branded as tesla)" + }, + "26": { + "then": "USB to charge phones and small electronics" + }, + "27": { + "then": "USB to charge phones and small electronics" + }, + "28": { + "then": "Bosch Active Connect with 3 pins and cable" + }, + "29": { + "then": "Bosch Active Connect with 3 pins and cable" + }, + "30": { + "then": "Bosch Active Connect with 5 pins and cable" + }, + "31": { + "then": "Bosch Active Connect with 5 pins and cable" + } + }, + "question": "Which charging connections are available here?" + }, + "Network": { + "mappings": { + "0": { + "then": "Not part of a bigger network, e.g. because the charging station is maintained by a local business" + }, + "1": { + "then": "Not part of a bigger network" + } + }, + "question": "Is this charging station part of a network?", + "render": "Part of the network {network}" + }, + "OH": { + "mappings": { + "0": { + "then": "24/7 opened (including holidays)" + } + }, + "question": "When is this charging station opened?" + }, + "Operational status": { + "mappings": { + "0": { + "then": "This charging station works" + }, + "1": { + "then": "This charging station is broken" + }, + "2": { + "then": "A charging station is planned here" + }, + "3": { + "then": "A charging station is constructed here" + }, + "4": { + "then": "This charging station has beed permanently disabled and is not in use anymore but is still visible" + } + }, + "question": "Is this charging point in use?" + }, + "Operator": { + "mappings": { + "0": { + "then": "Actually, {operator} is the network" + } + }, + "question": "Who is the operator of this charging station?", + "render": "This charging station is operated by {operator}" + }, + "Parking:fee": { + "mappings": { + "0": { + "then": "No additional parking cost while charging" + }, + "1": { + "then": "An additional parking fee should be paid while charging" + } + }, + "question": "Does one have to pay a parking fee while charging?" + }, + "Type": { + "mappings": { + "0": { + "then": "Bicycles can be charged here" + }, + "1": { + "then": "Cars can be charged here" + }, + "2": { + "then": "Scooters can be charged here" + }, + "3": { + "then": "Heavy good vehicles (such as trucks) can be charged here" + }, + "4": { + "then": "Buses can be charged here" + } + }, + "question": "Which vehicles are allowed to charge here?" + }, + "access": { + "mappings": { + "0": { + "then": "Anyone can use this charging station (payment might be needed)" + }, + "1": { + "then": "Anyone can use this charging station (payment might be needed)" + }, + "2": { + "then": "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" + }, + "3": { + "then": "Not accessible to the general public (e.g. only accessible to the owners, employees, ...)" + } + }, + "question": "Who is allowed to use this charging station?", + "render": "Access is {access}" + }, + "capacity": { + "question": "How much vehicles can be charged here at the same time?", + "render": "{capacity} vehicles can be charged here at the same time" + }, + "charge": { + "question": "How much does one have to pay to use this charging station?", + "render": "Using this charging station costs {charge}" + }, + "current-0": { + "mappings": { + "0": { + "then": "Schuko wall plug without ground pin (CEE7/4 type F) outputs at most 16 A" + } + }, + "question": "What current do the plugs with
Schuko wall plug without ground pin (CEE7/4 type F)
offer?", + "render": "
Schuko wall plug without ground pin (CEE7/4 type F)
outputs at most {socket:schuko:current}A" + }, + "current-1": { + "mappings": { + "0": { + "then": "European wall plug with ground pin (CEE7/4 type E) outputs at most 16 A" + } + }, + "question": "What current do the plugs with
European wall plug with ground pin (CEE7/4 type E)
offer?", + "render": "
European wall plug with ground pin (CEE7/4 type E)
outputs at most {socket:typee:current}A" + }, + "current-10": { + "mappings": { + "0": { + "then": "Tesla Supercharger CCS (a branded type2_css) outputs at most 125 A" + }, + "1": { + "then": "Tesla Supercharger CCS (a branded type2_css) outputs at most 350 A" + } + }, + "question": "What current do the plugs with
Tesla Supercharger CCS (a branded type2_css)
offer?", + "render": "
Tesla Supercharger CCS (a branded type2_css)
outputs at most {socket:tesla_supercharger_ccs:current}A" + }, + "current-11": { + "mappings": { + "0": { + "then": "Tesla Supercharger (destination) outputs at most 125 A" + }, + "1": { + "then": "Tesla Supercharger (destination) outputs at most 350 A" + } + }, + "question": "What current do the plugs with
Tesla Supercharger (destination)
offer?", + "render": "
Tesla Supercharger (destination)
outputs at most {socket:tesla_destination:current}A" + }, + "current-12": { + "mappings": { + "0": { + "then": "Tesla supercharger (destination) (A Type 2 with cable branded as tesla) outputs at most 16 A" + }, + "1": { + "then": "Tesla supercharger (destination) (A Type 2 with cable branded as tesla) outputs at most 32 A" + } + }, + "question": "What current do the plugs with
Tesla supercharger (destination) (A Type 2 with cable branded as tesla)
offer?", + "render": "
Tesla supercharger (destination) (A Type 2 with cable branded as tesla)
outputs at most {socket:tesla_destination:current}A" + }, + "current-13": { + "mappings": { + "0": { + "then": "USB to charge phones and small electronics outputs at most 1 A" + }, + "1": { + "then": "USB to charge phones and small electronics outputs at most 2 A" + } + }, + "question": "What current do the plugs with
USB to charge phones and small electronics
offer?", + "render": "
USB to charge phones and small electronics
outputs at most {socket:USB-A:current}A" + }, + "current-14": { + "question": "What current do the plugs with
Bosch Active Connect with 3 pins and cable
offer?", + "render": "
Bosch Active Connect with 3 pins and cable
outputs at most {socket:bosch_3pin:current}A" + }, + "current-15": { + "question": "What current do the plugs with
Bosch Active Connect with 5 pins and cable
offer?", + "render": "
Bosch Active Connect with 5 pins and cable
outputs at most {socket:bosch_5pin:current}A" + }, + "current-2": { + "mappings": { + "0": { + "then": "Chademo outputs at most 120 A" + } + }, + "question": "What current do the plugs with
Chademo
offer?", + "render": "
Chademo
outputs at most {socket:chademo:current}A" + }, + "current-3": { + "mappings": { + "0": { + "then": "Type 1 with cable (J1772) outputs at most 32 A" + } + }, + "question": "What current do the plugs with
Type 1 with cable (J1772)
offer?", + "render": "
Type 1 with cable (J1772)
outputs at most {socket:type1_cable:current}A" + }, + "current-4": { + "mappings": { + "0": { + "then": "Type 1 without cable (J1772) outputs at most 32 A" + } + }, + "question": "What current do the plugs with
Type 1 without cable (J1772)
offer?", + "render": "
Type 1 without cable (J1772)
outputs at most {socket:type1:current}A" + }, + "current-5": { + "mappings": { + "0": { + "then": "Type 1 CCS (aka Type 1 Combo) outputs at most 50 A" + }, + "1": { + "then": "Type 1 CCS (aka Type 1 Combo) outputs at most 125 A" + } + }, + "question": "What current do the plugs with
Type 1 CCS (aka Type 1 Combo)
offer?", + "render": "
Type 1 CCS (aka Type 1 Combo)
outputs at most {socket:type1_combo:current}A" + }, + "current-6": { + "mappings": { + "0": { + "then": "Tesla Supercharger outputs at most 125 A" + }, + "1": { + "then": "Tesla Supercharger outputs at most 350 A" + } + }, + "question": "What current do the plugs with
Tesla Supercharger
offer?", + "render": "
Tesla Supercharger
outputs at most {socket:tesla_supercharger:current}A" + }, + "current-7": { + "mappings": { + "0": { + "then": "Type 2 (mennekes) outputs at most 16 A" + }, + "1": { + "then": "Type 2 (mennekes) outputs at most 32 A" + } + }, + "question": "What current do the plugs with
Type 2 (mennekes)
offer?", + "render": "
Type 2 (mennekes)
outputs at most {socket:type2:current}A" + }, + "current-8": { + "mappings": { + "0": { + "then": "Type 2 CCS (mennekes) outputs at most 125 A" + }, + "1": { + "then": "Type 2 CCS (mennekes) outputs at most 350 A" + } + }, + "question": "What current do the plugs with
Type 2 CCS (mennekes)
offer?", + "render": "
Type 2 CCS (mennekes)
outputs at most {socket:type2_combo:current}A" + }, + "current-9": { + "mappings": { + "0": { + "then": "Type 2 with cable (mennekes) outputs at most 16 A" + }, + "1": { + "then": "Type 2 with cable (mennekes) outputs at most 32 A" + } + }, + "question": "What current do the plugs with
Type 2 with cable (mennekes)
offer?", + "render": "
Type 2 with cable (mennekes)
outputs at most {socket:type2_cable:current}A" + }, + "email": { + "question": "What is the email address of the operator?", + "render": "In case of problems, send an email to {email}" + }, + "fee": { + "mappings": { + "0": { + "then": "Free to use" + }, + "1": { + "then": "Free to use (without authenticating)" + }, + "2": { + "then": "Free to use, but one has to authenticate" + }, + "3": { + "then": "Paid use, but free for customers of the hotel/pub/hospital/... who operates the charging station" + }, + "4": { + "then": "Paid use" + } + }, + "question": "Does one have to pay to use this charging station?" + }, + "maxstay": { + "mappings": { + "0": { + "then": "No timelimit on leaving your vehicle here" + } + }, + "question": "What is the maximum amount of time one is allowed to stay here?", + "render": "One can stay at most {canonical(maxstay)}" + }, + "phone": { + "question": "What number can one call if there is a problem with this charging station?", + "render": "In case of problems, call {phone}" + }, + "plugs-0": { + "question": "How much plugs of type
Schuko wall plug without ground pin (CEE7/4 type F)
are available here?", + "render": "There are {socket:schuko} plugs of type
Schuko wall plug without ground pin (CEE7/4 type F)
available here" + }, + "plugs-1": { + "question": "How much plugs of type
European wall plug with ground pin (CEE7/4 type E)
are available here?", + "render": "There are {socket:typee} plugs of type
European wall plug with ground pin (CEE7/4 type E)
available here" + }, + "plugs-10": { + "question": "How much plugs of type
Tesla Supercharger CCS (a branded type2_css)
are available here?", + "render": "There are {socket:tesla_supercharger_ccs} plugs of type
Tesla Supercharger CCS (a branded type2_css)
available here" + }, + "plugs-11": { + "question": "How much plugs of type
Tesla Supercharger (destination)
are available here?", + "render": "There are {socket:tesla_destination} plugs of type
Tesla Supercharger (destination)
available here" + }, + "plugs-12": { + "question": "How much plugs of type
Tesla supercharger (destination) (A Type 2 with cable branded as tesla)
are available here?", + "render": "There are {socket:tesla_destination} plugs of type
Tesla supercharger (destination) (A Type 2 with cable branded as tesla)
available here" + }, + "plugs-13": { + "question": "How much plugs of type
USB to charge phones and small electronics
are available here?", + "render": "There are {socket:USB-A} plugs of type
USB to charge phones and small electronics
available here" + }, + "plugs-14": { + "question": "How much plugs of type
Bosch Active Connect with 3 pins and cable
are available here?", + "render": "There are {socket:bosch_3pin} plugs of type
Bosch Active Connect with 3 pins and cable
available here" + }, + "plugs-15": { + "question": "How much plugs of type
Bosch Active Connect with 5 pins and cable
are available here?", + "render": "There are {socket:bosch_5pin} plugs of type
Bosch Active Connect with 5 pins and cable
available here" + }, + "plugs-2": { + "question": "How much plugs of type
Chademo
are available here?", + "render": "There are {socket:chademo} plugs of type
Chademo
available here" + }, + "plugs-3": { + "question": "How much plugs of type
Type 1 with cable (J1772)
are available here?", + "render": "There are {socket:type1_cable} plugs of type
Type 1 with cable (J1772)
available here" + }, + "plugs-4": { + "question": "How much plugs of type
Type 1 without cable (J1772)
are available here?", + "render": "There are {socket:type1} plugs of type
Type 1 without cable (J1772)
available here" + }, + "plugs-5": { + "question": "How much plugs of type
Type 1 CCS (aka Type 1 Combo)
are available here?", + "render": "There are {socket:type1_combo} plugs of type
Type 1 CCS (aka Type 1 Combo)
available here" + }, + "plugs-6": { + "question": "How much plugs of type
Tesla Supercharger
are available here?", + "render": "There are {socket:tesla_supercharger} plugs of type
Tesla Supercharger
available here" + }, + "plugs-7": { + "question": "How much plugs of type
Type 2 (mennekes)
are available here?", + "render": "There are {socket:type2} plugs of type
Type 2 (mennekes)
available here" + }, + "plugs-8": { + "question": "How much plugs of type
Type 2 CCS (mennekes)
are available here?", + "render": "There are {socket:type2_combo} plugs of type
Type 2 CCS (mennekes)
available here" + }, + "plugs-9": { + "question": "How much plugs of type
Type 2 with cable (mennekes)
are available here?", + "render": "There are {socket:type2_cable} plugs of type
Type 2 with cable (mennekes)
available here" + }, + "power-output-0": { + "mappings": { + "0": { + "then": "Schuko wall plug without ground pin (CEE7/4 type F) outputs at most 3.6 kw A" + } + }, + "question": "What power output does a single plug of type
Schuko wall plug without ground pin (CEE7/4 type F)
offer?", + "render": "
Schuko wall plug without ground pin (CEE7/4 type F)
outputs at most {socket:schuko:output}" + }, + "power-output-1": { + "mappings": { + "0": { + "then": "European wall plug with ground pin (CEE7/4 type E) outputs at most 3 kw A" + }, + "1": { + "then": "European wall plug with ground pin (CEE7/4 type E) outputs at most 22 kw A" + } + }, + "question": "What power output does a single plug of type
European wall plug with ground pin (CEE7/4 type E)
offer?", + "render": "
European wall plug with ground pin (CEE7/4 type E)
outputs at most {socket:typee:output}" + }, + "power-output-10": { + "mappings": { + "0": { + "then": "Tesla Supercharger CCS (a branded type2_css) outputs at most 50 kw A" + } + }, + "question": "What power output does a single plug of type
Tesla Supercharger CCS (a branded type2_css)
offer?", + "render": "
Tesla Supercharger CCS (a branded type2_css)
outputs at most {socket:tesla_supercharger_ccs:output}" + }, + "power-output-11": { + "mappings": { + "0": { + "then": "Tesla Supercharger (destination) outputs at most 120 kw A" + }, + "1": { + "then": "Tesla Supercharger (destination) outputs at most 150 kw A" + }, + "2": { + "then": "Tesla Supercharger (destination) outputs at most 250 kw A" + } + }, + "question": "What power output does a single plug of type
Tesla Supercharger (destination)
offer?", + "render": "
Tesla Supercharger (destination)
outputs at most {socket:tesla_destination:output}" + }, + "power-output-12": { + "mappings": { + "0": { + "then": "Tesla supercharger (destination) (A Type 2 with cable branded as tesla) outputs at most 11 kw A" + }, + "1": { + "then": "Tesla supercharger (destination) (A Type 2 with cable branded as tesla) outputs at most 22 kw A" + } + }, + "question": "What power output does a single plug of type
Tesla supercharger (destination) (A Type 2 with cable branded as tesla)
offer?", + "render": "
Tesla supercharger (destination) (A Type 2 with cable branded as tesla)
outputs at most {socket:tesla_destination:output}" + }, + "power-output-13": { + "mappings": { + "0": { + "then": "USB to charge phones and small electronics outputs at most 5w A" + }, + "1": { + "then": "USB to charge phones and small electronics outputs at most 10w A" + } + }, + "question": "What power output does a single plug of type
USB to charge phones and small electronics
offer?", + "render": "
USB to charge phones and small electronics
outputs at most {socket:USB-A:output}" + }, + "power-output-14": { + "question": "What power output does a single plug of type
Bosch Active Connect with 3 pins and cable
offer?", + "render": "
Bosch Active Connect with 3 pins and cable
outputs at most {socket:bosch_3pin:output}" + }, + "power-output-15": { + "question": "What power output does a single plug of type
Bosch Active Connect with 5 pins and cable
offer?", + "render": "
Bosch Active Connect with 5 pins and cable
outputs at most {socket:bosch_5pin:output}" + }, + "power-output-2": { + "mappings": { + "0": { + "then": "Chademo outputs at most 50 kw A" + } + }, + "question": "What power output does a single plug of type
Chademo
offer?", + "render": "
Chademo
outputs at most {socket:chademo:output}" + }, + "power-output-3": { + "mappings": { + "0": { + "then": "Type 1 with cable (J1772) outputs at most 3.7 kw A" + }, + "1": { + "then": "Type 1 with cable (J1772) outputs at most 7 kw A" + } + }, + "question": "What power output does a single plug of type
Type 1 with cable (J1772)
offer?", + "render": "
Type 1 with cable (J1772)
outputs at most {socket:type1_cable:output}" + }, + "power-output-4": { + "mappings": { + "0": { + "then": "Type 1 without cable (J1772) outputs at most 3.7 kw A" + }, + "1": { + "then": "Type 1 without cable (J1772) outputs at most 6.6 kw A" + }, + "2": { + "then": "Type 1 without cable (J1772) outputs at most 7 kw A" + }, + "3": { + "then": "Type 1 without cable (J1772) outputs at most 7.2 kw A" + } + }, + "question": "What power output does a single plug of type
Type 1 without cable (J1772)
offer?", + "render": "
Type 1 without cable (J1772)
outputs at most {socket:type1:output}" + }, + "power-output-5": { + "mappings": { + "0": { + "then": "Type 1 CCS (aka Type 1 Combo) outputs at most 50 kw A" + }, + "1": { + "then": "Type 1 CCS (aka Type 1 Combo) outputs at most 62.5 kw A" + }, + "2": { + "then": "Type 1 CCS (aka Type 1 Combo) outputs at most 150 kw A" + }, + "3": { + "then": "Type 1 CCS (aka Type 1 Combo) outputs at most 350 kw A" + } + }, + "question": "What power output does a single plug of type
Type 1 CCS (aka Type 1 Combo)
offer?", + "render": "
Type 1 CCS (aka Type 1 Combo)
outputs at most {socket:type1_combo:output}" + }, + "power-output-6": { + "mappings": { + "0": { + "then": "Tesla Supercharger outputs at most 120 kw A" + }, + "1": { + "then": "Tesla Supercharger outputs at most 150 kw A" + }, + "2": { + "then": "Tesla Supercharger outputs at most 250 kw A" + } + }, + "question": "What power output does a single plug of type
Tesla Supercharger
offer?", + "render": "
Tesla Supercharger
outputs at most {socket:tesla_supercharger:output}" + }, + "power-output-7": { + "mappings": { + "0": { + "then": "Type 2 (mennekes) outputs at most 11 kw A" + }, + "1": { + "then": "Type 2 (mennekes) outputs at most 22 kw A" + } + }, + "question": "What power output does a single plug of type
Type 2 (mennekes)
offer?", + "render": "
Type 2 (mennekes)
outputs at most {socket:type2:output}" + }, + "power-output-8": { + "mappings": { + "0": { + "then": "Type 2 CCS (mennekes) outputs at most 50 kw A" + } + }, + "question": "What power output does a single plug of type
Type 2 CCS (mennekes)
offer?", + "render": "
Type 2 CCS (mennekes)
outputs at most {socket:type2_combo:output}" + }, + "power-output-9": { + "mappings": { + "0": { + "then": "Type 2 with cable (mennekes) outputs at most 11 kw A" + }, + "1": { + "then": "Type 2 with cable (mennekes) outputs at most 22 kw A" + } + }, + "question": "What power output does a single plug of type
Type 2 with cable (mennekes)
offer?", + "render": "
Type 2 with cable (mennekes)
outputs at most {socket:type2_cable:output}" + }, + "questions": { + "render": "

Technical questions

The questions below are very technical. Feel free to ignore them
{questions}" + }, + "ref": { + "question": "What is the reference number of this charging station?", + "render": "Reference number is {ref}" + }, + "voltage-0": { + "mappings": { + "0": { + "then": "Schuko wall plug without ground pin (CEE7/4 type F) outputs 230 volt" + } + }, + "question": "What voltage do the plugs with
Schuko wall plug without ground pin (CEE7/4 type F)
offer?", + "render": "
Schuko wall plug without ground pin (CEE7/4 type F)
outputs {socket:schuko:voltage} volt" + }, + "voltage-1": { + "mappings": { + "0": { + "then": "European wall plug with ground pin (CEE7/4 type E) outputs 230 volt" + } + }, + "question": "What voltage do the plugs with
European wall plug with ground pin (CEE7/4 type E)
offer?", + "render": "
European wall plug with ground pin (CEE7/4 type E)
outputs {socket:typee:voltage} volt" + }, + "voltage-10": { + "mappings": { + "0": { + "then": "Tesla Supercharger CCS (a branded type2_css) outputs 500 volt" + }, + "1": { + "then": "Tesla Supercharger CCS (a branded type2_css) outputs 920 volt" + } + }, + "question": "What voltage do the plugs with
Tesla Supercharger CCS (a branded type2_css)
offer?", + "render": "
Tesla Supercharger CCS (a branded type2_css)
outputs {socket:tesla_supercharger_ccs:voltage} volt" + }, + "voltage-11": { + "mappings": { + "0": { + "then": "Tesla Supercharger (destination) outputs 480 volt" + } + }, + "question": "What voltage do the plugs with
Tesla Supercharger (destination)
offer?", + "render": "
Tesla Supercharger (destination)
outputs {socket:tesla_destination:voltage} volt" + }, + "voltage-12": { + "mappings": { + "0": { + "then": "Tesla supercharger (destination) (A Type 2 with cable branded as tesla) outputs 230 volt" + }, + "1": { + "then": "Tesla supercharger (destination) (A Type 2 with cable branded as tesla) outputs 400 volt" + } + }, + "question": "What voltage do the plugs with
Tesla supercharger (destination) (A Type 2 with cable branded as tesla)
offer?", + "render": "
Tesla supercharger (destination) (A Type 2 with cable branded as tesla)
outputs {socket:tesla_destination:voltage} volt" + }, + "voltage-13": { + "mappings": { + "0": { + "then": "USB to charge phones and small electronics outputs 5 volt" + } + }, + "question": "What voltage do the plugs with
USB to charge phones and small electronics
offer?", + "render": "
USB to charge phones and small electronics
outputs {socket:USB-A:voltage} volt" + }, + "voltage-14": { + "question": "What voltage do the plugs with
Bosch Active Connect with 3 pins and cable
offer?", + "render": "
Bosch Active Connect with 3 pins and cable
outputs {socket:bosch_3pin:voltage} volt" + }, + "voltage-15": { + "question": "What voltage do the plugs with
Bosch Active Connect with 5 pins and cable
offer?", + "render": "
Bosch Active Connect with 5 pins and cable
outputs {socket:bosch_5pin:voltage} volt" + }, + "voltage-2": { + "mappings": { + "0": { + "then": "Chademo outputs 500 volt" + } + }, + "question": "What voltage do the plugs with
Chademo
offer?", + "render": "
Chademo
outputs {socket:chademo:voltage} volt" + }, + "voltage-3": { + "mappings": { + "0": { + "then": "Type 1 with cable (J1772) outputs 200 volt" + }, + "1": { + "then": "Type 1 with cable (J1772) outputs 240 volt" + } + }, + "question": "What voltage do the plugs with
Type 1 with cable (J1772)
offer?", + "render": "
Type 1 with cable (J1772)
outputs {socket:type1_cable:voltage} volt" + }, + "voltage-4": { + "mappings": { + "0": { + "then": "Type 1 without cable (J1772) outputs 200 volt" + }, + "1": { + "then": "Type 1 without cable (J1772) outputs 240 volt" + } + }, + "question": "What voltage do the plugs with
Type 1 without cable (J1772)
offer?", + "render": "
Type 1 without cable (J1772)
outputs {socket:type1:voltage} volt" + }, + "voltage-5": { + "mappings": { + "0": { + "then": "Type 1 CCS (aka Type 1 Combo) outputs 400 volt" + }, + "1": { + "then": "Type 1 CCS (aka Type 1 Combo) outputs 1000 volt" + } + }, + "question": "What voltage do the plugs with
Type 1 CCS (aka Type 1 Combo)
offer?", + "render": "
Type 1 CCS (aka Type 1 Combo)
outputs {socket:type1_combo:voltage} volt" + }, + "voltage-6": { + "mappings": { + "0": { + "then": "Tesla Supercharger outputs 480 volt" + } + }, + "question": "What voltage do the plugs with
Tesla Supercharger
offer?", + "render": "
Tesla Supercharger
outputs {socket:tesla_supercharger:voltage} volt" + }, + "voltage-7": { + "mappings": { + "0": { + "then": "Type 2 (mennekes) outputs 230 volt" + }, + "1": { + "then": "Type 2 (mennekes) outputs 400 volt" + } + }, + "question": "What voltage do the plugs with
Type 2 (mennekes)
offer?", + "render": "
Type 2 (mennekes)
outputs {socket:type2:voltage} volt" + }, + "voltage-8": { + "mappings": { + "0": { + "then": "Type 2 CCS (mennekes) outputs 500 volt" + }, + "1": { + "then": "Type 2 CCS (mennekes) outputs 920 volt" + } + }, + "question": "What voltage do the plugs with
Type 2 CCS (mennekes)
offer?", + "render": "
Type 2 CCS (mennekes)
outputs {socket:type2_combo:voltage} volt" + }, + "voltage-9": { + "mappings": { + "0": { + "then": "Type 2 with cable (mennekes) outputs 230 volt" + }, + "1": { + "then": "Type 2 with cable (mennekes) outputs 400 volt" + } + }, + "question": "What voltage do the plugs with
Type 2 with cable (mennekes)
offer?", + "render": "
Type 2 with cable (mennekes)
outputs {socket:type2_cable:voltage} volt" + }, + "website": { + "question": "What is the website where one can find more information about this charging station?", + "render": "More info on {website}" + } + }, + "title": { + "mappings": { + "0": { + "then": "Charging station for electrical bicycles" + }, + "1": { + "then": "Charging station for cars" + } + }, + "render": "Charging station" + }, + "units": { + "0": { + "applicableUnits": { + "0": { + "human": " minutes", + "humanSingular": " minute" + }, + "1": { + "human": " hours", + "humanSingular": " hour" + }, + "2": { + "human": " days", + "humanSingular": " day" + } + } + }, + "1": { + "applicableUnits": { + "0": { + "human": "Volts" + } + } + }, + "2": { + "applicableUnits": { + "0": { + "human": "A" + } + } + }, + "3": { + "applicableUnits": { + "0": { + "human": "kilowatt" + }, + "1": { + "human": "megawatt" + } + } + } + } + }, + "crossings": { + "description": "Crossings for pedestrians and cyclists", + "name": "Crossings", + "presets": { + "0": { + "description": "Crossing for pedestrians and/or cyclists", + "title": "Crossing" + }, + "1": { + "description": "Traffic signal on a road", + "title": "Traffic signal" + } + }, + "tagRenderings": { + "crossing-bicycle-allowed": { + "mappings": { + "0": { + "then": "A cyclist can use this crossing" + }, + "1": { + "then": "A cyclist can not use this crossing" + } + }, + "question": "Is this crossing also for bicycles?" + }, + "crossing-button": { + "mappings": { + "0": { + "then": "This traffic light has a button to request green light" + }, + "1": { + "then": "This traffic light does not have a button to request green light" + } + }, + "question": "Does this traffic light have a button to request green light?" + }, + "crossing-continue-through-red": { + "mappings": { + "0": { + "then": "A cyclist can go straight on if the light is red" + }, + "1": { + "then": "A cyclist can go straight on if the light is red" + }, + "2": { + "then": "A cyclist can not go straight on if the light is red" + } + }, + "question": "Can a cyclist go straight on when the light is red?" + }, + "crossing-has-island": { + "mappings": { + "0": { + "then": "This crossing has an island in the middle" + }, + "1": { + "then": "This crossing does not have an island in the middle" + } + }, + "question": "Does this crossing have an island in the middle?" + }, + "crossing-is-zebra": { + "mappings": { + "0": { + "then": "This is a zebra crossing" + }, + "1": { + "then": "This is not a zebra crossing" + } + }, + "question": "Is this is a zebra crossing?" + }, + "crossing-right-turn-through-red": { + "mappings": { + "0": { + "then": "A cyclist can turn right if the light is red" + }, + "1": { + "then": "A cyclist can turn right if the light is red" + }, + "2": { + "then": "A cyclist can not turn right if the light is red" + } + }, + "question": "Can a cyclist turn right when the light is red?" + }, + "crossing-tactile": { + "mappings": { + "0": { + "then": "This crossing has tactile paving" + }, + "1": { + "then": "This crossing does not have tactile paving" + }, + "2": { + "then": "This crossing has tactile paving, but is not correct" + } + }, + "question": "Does this crossing have tactile paving?" + }, + "crossing-type": { + "mappings": { + "0": { + "then": "Crossing, without traffic lights" + }, + "1": { + "then": "Crossing with traffic signals" + }, + "2": { + "then": "Zebra crossing" + }, + "3": { + "then": "Crossing without crossing markings" + } + }, + "question": "What kind of crossing is this?" + } + }, + "title": { + "mappings": { + "0": { + "then": "Traffic signal" + }, + "1": { + "then": "Crossing with traffic signals" + } + }, + "render": "Crossing" + } + }, + "cycleways_and_roads": { + "description": "All infrastructure that someone can cycle over, accompanied with questions about this infrastructure\"", + "name": "Cycleways and roads", + "tagRenderings": { + "Cycleway type for a road": { + "mappings": { + "0": { + "then": "There is a shared lane" + }, + "1": { + "then": "There is a lane next to the road (separated with paint)" + }, + "2": { + "then": "There is a track, but no cycleway drawn separately from this road on the map." + }, + "3": { + "then": "There is a separately drawn cycleway" + }, + "4": { + "then": "There is no cycleway" + }, + "5": { + "then": "There is no cycleway" + } + }, + "question": "What kind of cycleway is here?" + }, + "Cycleway:smoothness": { + "mappings": { + "0": { + "then": "Usable for thin rollers: rollerblade, skateboard" + }, + "1": { + "then": "Usable for thin wheels: racing bike" + }, + "2": { + "then": "Usable for normal wheels: city bike, wheelchair, scooter" + }, + "3": { + "then": "Usable for robust wheels: trekking bike, car, rickshaw" + }, + "4": { + "then": "Usable for vehicles with high clearance: light duty off-road vehicle" + }, + "5": { + "then": "Usable for off-road vehicles: heavy duty off-road vehicle" + }, + "6": { + "then": "Usable for specialized off-road vehicles: tractor, ATV" + }, + "7": { + "then": "Impassable / No wheeled vehicle" + } + }, + "question": "What is the smoothness of this cycleway?" + }, + "Cycleway:surface": { + "mappings": { + "0": { + "then": "This cycleway is unpaved" + }, + "1": { + "then": "This cycleway is paved" + }, + "2": { + "then": "This cycleway is made of asphalt" + }, + "3": { + "then": "This cycleway is made of smooth paving stones" + }, + "4": { + "then": "This cycleway is made of concrete" + }, + "5": { + "then": "This cycleway is made of cobblestone (unhewn or sett)" + }, + "6": { + "then": "This cycleway is made of raw, natural cobblestone" + }, + "7": { + "then": "This cycleway is made of flat, square cobblestone" + }, + "8": { + "then": "This cycleway is made of wood" + }, + "9": { + "then": "This cycleway is made of gravel" + }, + "10": { + "then": "This cycleway is made of fine gravel" + }, + "11": { + "then": "This cycleway is made of pebblestone" + }, + "12": { + "then": "This cycleway is made from raw ground" + } + }, + "question": "What is the surface of the cycleway made from?", + "render": "This cyleway is made of {cycleway:surface}" + }, + "Is this a cyclestreet? (For a road)": { + "mappings": { + "0": { + "then": "This is a cyclestreet, and a 30km/h zone." + }, + "1": { + "then": "This is a cyclestreet" + }, + "2": { + "then": "This is not a cyclestreet." + } + }, + "question": "Is this a cyclestreet?" + }, + "Maxspeed (for road)": { + "mappings": { + "0": { + "then": "The maximum speed is 20 km/h" + }, + "1": { + "then": "The maximum speed is 30 km/h" + }, + "2": { + "then": "The maximum speed is 50 km/h" + }, + "3": { + "then": "The maximum speed is 70 km/h" + }, + "4": { + "then": "The maximum speed is 90 km/h" + } + }, + "question": "What is the maximum speed in this street?", + "render": "The maximum speed on this road is {maxspeed} km/h" + }, + "Surface of the road": { + "mappings": { + "0": { + "then": "This cycleway is unhardened" + }, + "1": { + "then": "This cycleway is paved" + }, + "2": { + "then": "This cycleway is made of asphalt" + }, + "3": { + "then": "This cycleway is made of smooth paving stones" + }, + "4": { + "then": "This cycleway is made of concrete" + }, + "5": { + "then": "This cycleway is made of cobblestone (unhewn or sett)" + }, + "6": { + "then": "This cycleway is made of raw, natural cobblestone" + }, + "7": { + "then": "This cycleway is made of flat, square cobblestone" + }, + "8": { + "then": "This cycleway is made of wood" + }, + "9": { + "then": "This cycleway is made of gravel" + }, + "10": { + "then": "This cycleway is made of fine gravel" + }, + "11": { + "then": "This cycleway is made of pebblestone" + }, + "12": { + "then": "This cycleway is made from raw ground" + } + }, + "question": "What is the surface of the street made from?", + "render": "This road is made of {surface}" + }, + "Surface of the street": { + "mappings": { + "0": { + "then": "Usable for thin rollers: rollerblade, skateboard" + }, + "1": { + "then": "Usable for thin wheels: racing bike" + }, + "2": { + "then": "Usable for normal wheels: city bike, wheelchair, scooter" + }, + "3": { + "then": "Usable for robust wheels: trekking bike, car, rickshaw" + }, + "4": { + "then": "Usable for vehicles with high clearance: light duty off-road vehicle" + }, + "5": { + "then": "Usable for off-road vehicles: heavy duty off-road vehicle" + }, + "6": { + "then": "Usable for specialized off-road vehicles: tractor, ATV" + }, + "7": { + "then": "Impassable / No wheeled vehicle" + } + }, + "question": "What is the smoothness of this street?" + }, + "cyclelan-segregation": { + "mappings": { + "0": { + "then": "This cycleway is separated by a dashed line" + }, + "1": { + "then": "This cycleway is separated by a solid line" + }, + "2": { + "then": "This cycleway is separated by a parking lane" + }, + "3": { + "then": "This cycleway is separated by a kerb" + } + }, + "question": "How is this cycleway separated from the road?" + }, + "cycleway-lane-track-traffic-signs": { + "mappings": { + "0": { + "then": "Compulsory cycleway" + }, + "1": { + "then": "Compulsory cycleway (with supplementary sign)
" + }, + "2": { + "then": "Segregated foot/cycleway" + }, + "3": { + "then": "Unsegregated foot/cycleway" + }, + "4": { + "then": "No traffic sign present" + } + }, + "question": "What traffic sign does this cycleway have?" + }, + "cycleway-segregation": { + "mappings": { + "0": { + "then": "This cycleway is separated by a dashed line" + }, + "1": { + "then": "This cycleway is separated by a solid line" + }, + "2": { + "then": "This cycleway is separated by a parking lane" + }, + "3": { + "then": "This cycleway is separated by a kerb" + } + }, + "question": "How is this cycleway separated from the road?" + }, + "cycleway-traffic-signs": { + "mappings": { + "0": { + "then": "Compulsory cycleway" + }, + "1": { + "then": "Compulsory cycleway (with supplementary sign)
" + }, + "2": { + "then": "Segregated foot/cycleway" + }, + "3": { + "then": "Unsegregated foot/cycleway" + }, + "4": { + "then": "No traffic sign present" + } + }, + "question": "What traffic sign does this cycleway have?" + }, + "cycleway-traffic-signs-supplementary": { + "mappings": { + "0": { + "then": "Mopeds must use the cycleway" + }, + "1": { + "then": "Speedpedelecs must use the cycleway" + }, + "2": { + "then": "Mopeds and speedpedelecs must use the cycleway" + }, + "3": { + "then": "Mopeds are not allowed" + }, + "4": { + "then": "Speedpedelecs are not allowed" + }, + "5": { + "then": "Mopeds and speedpedelecs are not allowed" + }, + "6": { + "then": "No supplementary traffic sign present" + } + }, + "question": "Does the traffic sign D7 () have a supplementary sign?" + }, + "cycleways_and_roads-cycleway:buffer": { + "question": "How wide is the gap between the cycleway and the road?", + "render": "The buffer besides this cycleway is {cycleway:buffer} m" + }, + "is lit?": { + "mappings": { + "0": { + "then": "This street is lit" + }, + "1": { + "then": "This road is not lit" + }, + "2": { + "then": "This road is lit at night" + }, + "3": { + "then": "This road is lit 24/7" + } + }, + "question": "Is this street lit?" + }, + "width:carriageway": { + "question": "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", + "render": "The carriage width of this road is {width:carriageway}m" + } + }, + "title": { + "mappings": { + "0": { + "then": "Cycleway" + }, + "1": { + "then": "Shared lane" + }, + "2": { + "then": "Bike lane" + }, + "3": { + "then": "Cycleway next to the road" + }, + "4": { + "then": "Cyclestreet" + } + }, + "render": "Cycleways" + } + }, + "defibrillator": { + "description": "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", + "name": "Defibrillators", + "presets": { + "0": { + "title": "Defibrillator" + }, + "1": { + "title": "defibrillator mounted on a wall" + } + }, + "tagRenderings": { + "defibrillator-access": { + "mappings": { + "0": { + "then": "Publicly accessible" + }, + "1": { + "then": "Publicly accessible" + }, + "2": { + "then": "Only accessible to customers" + }, + "3": { + "then": "Not accessible to the general public (e.g. only accesible to staff, the owners, ...)" + }, + "4": { + "then": "Not accessible, possibly only for professional use" + } + }, + "question": "Is this defibrillator freely accessible?", + "render": "Access is {access}" + }, + "defibrillator-defibrillator": { + "mappings": { + "0": { + "then": "There is no info about the type of device" + }, + "1": { + "then": "This is a manual defibrillator for professionals" + }, + "2": { + "then": "This is a normal automatic defibrillator" + }, + "3": { + "then": "This is a special type of defibrillator: {defibrillator}" + } + }, + "question": "Is this a a regular automatic defibrillator or a manual defibrillator for professionals only?" + }, + "defibrillator-defibrillator:location": { + "question": "Please give some explanation on where the defibrillator can be found (in the local language)", + "render": "Extra information about the location (in the local languagel):
{defibrillator:location}" + }, + "defibrillator-defibrillator:location:en": { + "question": "Please give some explanation on where the defibrillator can be found (in English)", + "render": "Extra information about the location (in English):
{defibrillator:location:en}" + }, + "defibrillator-defibrillator:location:fr": { + "question": "Please give some explanation on where the defibrillator can be found (in French)", + "render": "Extra information about the location (in French):
{defibrillator:location:fr}" + }, + "defibrillator-description": { + "question": "Is there any useful information for users that you haven't been able to describe above? (leave blank if no)", + "render": "Additional information: {description}" + }, + "defibrillator-email": { + "question": "What is the email for questions about this defibrillator?", + "render": "Email for questions about this defibrillator: {email}" + }, + "defibrillator-fixme": { + "question": "Is there something wrong with how this is mapped, that you weren't able to fix here? (leave a note to OpenStreetMap experts)", + "render": "Extra information for OpenStreetMap experts: {fixme}" + }, + "defibrillator-indoors": { + "mappings": { + "0": { + "then": "This defibrillator is located indoors" + }, + "1": { + "then": "This defibrillator is located outdoors" + } + }, + "question": "Is this defibrillator located indoors?" + }, + "defibrillator-level": { + "mappings": { + "0": { + "then": "This defibrillator is on the ground floor" + }, + "1": { + "then": "This defibrillator is on the first floor" + } + }, + "question": "On which floor is this defibrillator located?", + "render": "This defibrillator is on floor {level}" + }, + "defibrillator-opening_hours": { + "mappings": { + "0": { + "then": "24/7 opened (including holidays)" + } + }, + "question": "At what times is this defibrillator available?", + "render": "{opening_hours_table(opening_hours)}" + }, + "defibrillator-phone": { + "question": "What is the phone number for questions about this defibrillator?", + "render": "Telephone for questions about this defibrillator: {phone}" + }, + "defibrillator-ref": { + "question": "What is the official identification number of the device? (if visible on device)", + "render": "Official identification number of the device: {ref}" + }, + "defibrillator-survey:date": { + "mappings": { + "0": { + "then": "Checked today!" + } + }, + "question": "When was this defibrillator last surveyed?", + "render": "This defibrillator was last surveyed on {survey:date}" + } + }, + "title": { + "render": "Defibrillator" + } + }, + "direction": { + "description": "This layer visualizes directions", + "name": "Direction visualization" + }, + "drinking_water": { + "description": "A layer showing drinking water fountains", + "name": "Drinking water", + "presets": { + "0": { + "title": "drinking water" + } + }, + "tagRenderings": { + "Bottle refill": { + "mappings": { + "0": { + "then": "It is easy to refill water bottles" + }, + "1": { + "then": "Water bottles may not fit" + } + }, + "question": "How easy is it to fill water bottles?" + }, + "Still in use?": { + "mappings": { + "0": { + "then": "This drinking water works" + }, + "1": { + "then": "This drinking water is broken" + }, + "2": { + "then": "This drinking water is closed" + } + }, + "question": "Is this drinking water spot still operational?", + "render": "The operational status is {operational_status}" + }, + "render-closest-drinking-water": { + "render": "There is another drinking water fountain at {_closest_other_drinking_water_distance} meter" + } + }, + "title": { + "render": "Drinking water" + } + }, + "entrance": { + "description": "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, ...)", + "name": "Entrance", + "tagRenderings": { + "Door_type": { + "mappings": { + "0": { + "then": "The door type is not known" + }, + "1": { + "then": "A classical, hinged door supported by joints" + }, + "2": { + "then": "A revolving door which hangs on a central shaft, rotating within a cylindrical enclosure" + }, + "3": { + "then": "A sliding door where the door slides sidewards, typically parallel with a wall" + }, + "4": { + "then": "A door which rolls from overhead, typically seen for garages" + }, + "5": { + "then": "This is an entrance without a physical door" + } + }, + "question": "What is the type of this door?
Wether or not the door is automated is asked in the next question" + }, + "Entrance type": { + "mappings": { + "0": { + "then": "No specific entrance type is known" + }, + "1": { + "then": "This is an indoor door, separating a room or a corridor within a single building" + }, + "2": { + "then": "This is the main entrance" + }, + "3": { + "then": "This is a secondary entrance" + }, + "4": { + "then": "This is a service entrance - normally only used for employees, delivery, ..." + }, + "5": { + "then": "This is an exit where one can not enter" + }, + "6": { + "then": "This is an entrance where one can only enter (but not exit)" + }, + "7": { + "then": "This is emergency exit" + }, + "8": { + "then": "This is the entrance to a private home" + } + }, + "question": "What type of entrance is this?" + }, + "automatic_door": { + "mappings": { + "0": { + "then": "This is an automatic door" + }, + "1": { + "then": "This door is not automated" + }, + "2": { + "then": "This door will open automatically when motion is detected" + }, + "3": { + "then": "This door will open automatically when a sensor in the floor is triggered" + }, + "4": { + "then": "This door will open automatically when a button is pressed" + }, + "5": { + "then": "This door revolves automatically all the time, but has a button to slow it down, e.g. for wheelchair users" + }, + "6": { + "then": "This door revolves automatically all the time" + }, + "7": { + "then": "This door will be opened by staff when requested by pressing a button" + }, + "8": { + "then": "This door will be opened by staff when requested" + } + } + }, + "width": { + "question": "What is the width of this door/entrance?", + "render": "This door has a width of {canonical(width)} meter" + } + }, + "title": { + "render": "Entrance" + } + }, + "etymology": { + "description": "All objects which have an etymology known", + "name": "Has etymolgy", + "tagRenderings": { + "etymology_multi_apply": { + "render": "{multi_apply(_same_name_ids, name:etymology:wikidata;name:etymology, Auto-applying data on all segments with the same name, true)}" + }, + "simple etymology": { + "mappings": { + "0": { + "then": "The origin of this name is unknown in all literature" + } + }, + "question": "What is this object named after?
This might be written on the street name sign", + "render": "Named after {name:etymology}" + }, + "street-name-sign-image": { + "render": "{image_carousel(image:streetsign)}
{image_upload(image:streetsign, Add image of a street name sign)}" + }, + "wikipedia": { + "render": "A Wikipedia article about this street exists:
{wikipedia():max-height:25rem}" + }, + "wikipedia-etymology": { + "question": "What is the Wikidata-item that this object is named after?", + "render": "

Wikipedia article of the name giver

{wikipedia(name:etymology:wikidata):max-height:20rem}" + }, + "zoeken op inventaris onroerend erfgoed": { + "render": "Search on inventaris onroerend erfgoed" + } + } + }, + "extinguisher": { + "description": "Map layer to show fire hydrants.", + "name": "Map of fire extinguishers.", + "presets": { + "0": { + "description": "A fire extinguisher is a small, portable device used to stop a fire", + "title": "Fire extinguisher" + } + }, + "tagRenderings": { + "extinguisher-location": { + "mappings": { + "0": { + "then": "Found indoors." + }, + "1": { + "then": "Found outdoors." + } + }, + "question": "Where is it positioned?", + "render": "Location: {location}" + } + }, + "title": { + "render": "Extinguishers" + } + }, + "fire_station": { + "description": "Map layer to show fire stations.", + "name": "Map of fire stations", + "presets": { + "0": { + "description": "A fire station is a place where the fire trucks and firefighters are located when not in operation.", + "title": "Fire station" + } + }, + "tagRenderings": { + "station-agency": { + "mappings": { + "0": { + "then": "Bureau of Fire Protection" + } + }, + "question": "What agency operates this station?", + "render": "This station is operated by {operator}." + }, + "station-name": { + "question": "What is the name of this fire station?", + "render": "This station is called {name}." + }, + "station-operator": { + "mappings": { + "0": { + "then": "The station is operated by the government." + }, + "1": { + "then": "The station is operated by a community-based, or informal organization." + }, + "2": { + "then": "The station is operated by a formal group of volunteers." + }, + "3": { + "then": "The station is privately operated." + } + }, + "question": "How is the station operator classified?", + "render": "The operator is a(n) {operator:type} entity." + }, + "station-place": { + "question": "Where is the station located? (e.g. name of neighborhood, villlage, or town)", + "render": "This station is found within {addr:place}." + }, + "station-street": { + "question": " What is the street name where the station located?", + "render": "This station is along a highway called {addr:street}." + } + }, + "title": { + "render": "Fire Station" + } + }, + "food": { + "description": "A layer showing restaurants and fast-food amenities (with a special rendering for friteries)", + "filter": { + "0": { + "options": { + "0": { + "question": "Opened now" + } + } + }, + "1": { + "options": { + "0": { + "question": "Has a vegetarian menu" + } + } + }, + "2": { + "options": { + "0": { + "question": "Has a vegan menu" + } + } + }, + "3": { + "options": { + "0": { + "question": "Has a halal menu" + } + } + } + }, + "name": "Restaurants and fast food", + "presets": { + "0": { + "description": "A formal eating place with sit-down facilities selling full meals served by waiters", + "title": "restaurant" + }, + "1": { + "description": "A food business concentrating on fast counter-only service and take-away food", + "title": "fastfood" + }, + "2": { + "description": "A fastfood-buisiness focused on french fries", + "title": "fries shop" + } + }, + "tagRenderings": { + "Cuisine": { + "mappings": { + "0": { + "then": "This is a pizzeria" + }, + "1": { + "then": "This is a friture" + }, + "2": { + "then": "Mainly serves pasta" + }, + "3": { + "then": "This is kebab shop" + }, + "4": { + "then": "This is a sandwichbar" + }, + "5": { + "then": "Burgers are served here" + }, + "6": { + "then": "Sushi is served here" + }, + "7": { + "then": "Coffee is served here" + }, + "8": { + "then": "This is an italian restaurant (which serves more then pasta and pizza)" + }, + "9": { + "then": "French dishes are served here" + }, + "10": { + "then": "Chinese dishes are served here" + }, + "11": { + "then": "Greek dishes are served here" + }, + "12": { + "then": "Indian dishes are served here" + }, + "13": { + "then": "Turkish dishes are served here" + }, + "14": { + "then": "Thai dishes are served here" + } + }, + "question": "Which food is served here?", + "render": "This place mostly serves {cuisine}" + }, + "Fastfood vs restaurant": { + "mappings": { + "0": { + "then": "This is a fastfood-business, focussed on fast service. If seating is available, these are rather limited and functional." + }, + "1": { + "then": "A restaurant, focussed on creating a nice experience where one is served at the table" + } + }, + "question": "What type of business is this?" + }, + "Name": { + "question": "What is the name of this restaurant?", + "render": "The name of this restaurant is {name}" + }, + "Takeaway": { + "mappings": { + "0": { + "then": "This is a take-away only business" + }, + "1": { + "then": "Take-away is possible here" + }, + "2": { + "then": "Take-away is not possible here" + } + }, + "question": "Does this place offer takea-way?" + }, + "Vegan (no friture)": { + "mappings": { + "0": { + "then": "No vegan options available" + }, + "1": { + "then": "Some vegan options are available" + }, + "2": { + "then": "Vegan options are available" + }, + "3": { + "then": "All dishes are vegan" + } + }, + "question": "Does this business serve vegan meals?" + }, + "Vegetarian (no friture)": { + "mappings": { + "0": { + "then": "No vegetarian options are available" + }, + "1": { + "then": "Some vegetarian options are available" + }, + "2": { + "then": "No vegetarian options are available" + }, + "3": { + "then": "All dishes are vegetarian" + } + }, + "question": "Does this restaurant have a vegetarian option?" + }, + "friture-oil": { + "mappings": { + "0": { + "then": "Vegetable oil" + }, + "1": { + "then": "Animal oil" + } + }, + "question": "Does this fries shop use vegetable or animal cooking?" + }, + "friture-take-your-container": { + "mappings": { + "0": { + "then": "You can bring your own containers to get your order, saving on single-use packaging material and thus waste" + }, + "1": { + "then": "Bringing your own container is not allowed" + }, + "2": { + "then": "You must bring your own container to order here." + } + }, + "question": "If you bring your own container (such as a cooking pot and small pots), is it used to package your order?
" + }, + "friture-vegan": { + "mappings": { + "0": { + "then": "Vegan snacks are available" + }, + "1": { + "then": "A small selection of vegan snacks are available" + }, + "2": { + "then": "No vegan snacks are available" + } + }, + "question": "Does this fries shop have vegan snacks?" + }, + "friture-vegetarian": { + "mappings": { + "0": { + "then": "Vegetarian snacks are available" + }, + "1": { + "then": "Only a small selection of snacks are vegetarian" + }, + "2": { + "then": "No vegetarian snacks are available" + } + }, + "question": "Does this fries shop have vegetarian snacks?" + }, + "halal (no friture)": { + "mappings": { + "0": { + "then": "There are no halal options available" + }, + "1": { + "then": "There is a small halal menu" + }, + "2": { + "then": "There is a halal menu" + }, + "3": { + "then": "Only halal options are available" + } + }, + "question": "Does this restaurant offer a halal menu?" + } + }, + "title": { + "mappings": { + "0": { + "then": "Restaurant {name}" + }, + "1": { + "then": "Fastfood {name}" + }, + "2": { + "then": "Fastfood" + } + }, + "render": "Restaurant" + } + }, + "ghost_bike": { + "description": "A layer showing memorials for cyclists, killed in road accidents", + "name": "Ghost bikes", + "presets": { + "0": { + "title": "Ghost bike" + } + }, + "tagRenderings": { + "ghost-bike-explanation": { + "render": "A ghost bike is a memorial for a cyclist who died in a traffic accident, in the form of a white bicycle placed permanently near the accident location." + }, + "ghost_bike-inscription": { + "question": "What is the inscription on this Ghost bike?", + "render": "{inscription}" + }, + "ghost_bike-name": { + "mappings": { + "0": { + "then": "No name is marked on the bike" + } + }, + "question": "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.
", + "render": "In remembrance of {name}" + }, + "ghost_bike-source": { + "question": "On what webpage can one find more information about the Ghost bike or the accident?", + "render": "More information is available" + }, + "ghost_bike-start_date": { + "question": "When was this Ghost bike installed?", + "render": "Placed on {start_date}" + } + }, + "title": { + "mappings": { + "0": { + "then": "Ghost bike in the remembrance of {name}" + } + }, + "render": "Ghost bike" + } + }, + "gps_track": { + "name": "Your travelled track", + "tagRenderings": { + "Privacy notice": { + "render": "This is the path you've travelled since this website is opened. Don't worry - this is only visible to you and no one else. Your location data is never sent off-device." + } + } + }, + "grass_in_parks": { + "description": "Searches for all accessible grass patches within public parks - these are 'groenzones'\"" + }, + "hydrant": { + "description": "Map layer to show fire hydrants.", + "name": "Map of hydrants", + "presets": { + "0": { + "description": "A hydrant is a connection point where firefighters can tap water. It might be located underground.", + "title": "Fire hydrant" + } + }, + "tagRenderings": { + "hydrant-color": { + "mappings": { + "0": { + "then": "The hydrant color is unknown." + }, + "1": { + "then": "The hydrant color is yellow." + }, + "2": { + "then": "The hydrant color is red." + } + }, + "question": "What color is the hydrant?", + "render": "The hydrant color is {colour}" + }, + "hydrant-state": { + "mappings": { + "0": { + "then": "The hydrant is (fully or partially) working" + }, + "1": { + "then": "The hydrant is unavailable" + }, + "2": { + "then": "The hydrant has been removed" + } + }, + "question": "Is this hydrant still working?" + }, + "hydrant-type": { + "mappings": { + "0": { + "then": "The hydrant type is unknown." + }, + "1": { + "then": "Pillar type." + }, + "2": { + "then": "Pipe type." + }, + "3": { + "then": "Wall type." + }, + "4": { + "then": "Underground type." + } + }, + "question": "What type of hydrant is it?", + "render": " Hydrant type: {fire_hydrant:type}" + } + }, + "title": { + "render": "Hydrant" + } + }, + "information_board": { + "description": "A layer showing touristical, road side information boards (e.g. giving information about the landscape, a building, a feature, a map, ...)", + "name": "Information boards", + "presets": { + "0": { + "title": "information board" + } + }, + "title": { + "render": "Information board" + } + }, + "map": { + "description": "A map, meant for tourists which is permanently installed in the public space", + "name": "Maps", + "presets": { + "0": { + "description": "Add a missing map", + "title": "Map" + } + }, + "tagRenderings": { + "map-attribution": { + "mappings": { + "0": { + "then": "OpenStreetMap is clearly attributed, including the ODBL-license" + }, + "1": { + "then": "OpenStreetMap is clearly attributed, but the license is not mentioned" + }, + "2": { + "then": "OpenStreetMap wasn't mentioned, but someone put an OpenStreetMap-sticker on it" + }, + "3": { + "then": "There is no attribution at all" + }, + "4": { + "then": "There is no attribution at all" + } + }, + "question": "Is the OpenStreetMap-attribution given?" + }, + "map-map_source": { + "mappings": { + "0": { + "then": "This map is based on OpenStreetMap" + } + }, + "question": "On which data is this map based?", + "render": "This map is based on {map_source}" + } + }, + "title": { + "render": "Map" + } + }, + "nature_reserve": { + "description": "A nature reserve is an area where nature can take its course", + "filter": { + "0": { + "options": { + "0": { + "question": "Freely accesible" + } + } + }, + "1": { + "options": { + "0": { + "question": "All nature reserves" + }, + "1": { + "question": "Dogs are allowed to roam freely" + }, + "2": { + "question": "Dogs are allowed if they are leashed" + } + } + } + }, + "name": "Nature reserve", + "presets": { + "0": { + "description": "Add a missing nature reserve", + "title": "nature reserve" + } + }, + "tagRenderings": { + "Access tag": { + "mappings": { + "0": { + "then": "Publicly accessible" + }, + "1": { + "then": "Not accessible" + }, + "2": { + "then": "Not accessible as this is a private area" + }, + "3": { + "then": "Accessible despite being a privately owned area" + }, + "4": { + "then": "Only accessible with a guide or during organised activities" + }, + "5": { + "then": "Accessible with fee" + } + }, + "question": "Is this nature reserve accessible to the public?", + "render": "Accessin this nature reserve: {access:description}" + }, + "Curator": { + "question": "Whom is the curator of this nature reserve?
Respect privacy - only fill out a name if this is widely published", + "render": "{curator} is the curator of this nature reserve" + }, + "Dogs?": { + "mappings": { + "0": { + "then": "Dogs have to be leashed" + }, + "1": { + "then": "No dogs allowed" + }, + "2": { + "then": "Dogs are allowed to roam freely" + } + }, + "question": "Are dogs allowed in this nature reserve?" + }, + "Editable description": { + "question": "Is there some extra info?", + "render": "Extra info: {description:0}" + }, + "Email": { + "question": "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", + "render": "{email}" + }, + "Name tag": { + "mappings": { + "0": { + "then": "This area doesn't have a name" + } + }, + "question": "What is the name of this area?", + "render": "This area is named {name}" + }, + "Non-editable description": { + "render": "Extra information: {description}" + }, + "Operator tag": { + "mappings": { + "0": { + "then": "Operated by Natuurpunt" + }, + "1": { + "then": "Operated by {operator}" + }, + "2": { + "then": "Operated by Agentschap Natuur en Bos" + } + }, + "question": "Who operates this area?", + "render": "Operated by {operator}" + }, + "Surface area": { + "render": "Surface area: {_surface:ha}Ha" + }, + "phone": { + "question": "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" + } + }, + "title": { + "render": "Nature reserve" + } + }, + "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" + } + } + }, + "8": { + "options": { + "0": { + "question": "Hide import 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", + "tagRenderings": { + "Fee": { + "mappings": { + "0": { + "then": "Free to visit" + } + }, + "question": "How much does one have to pay to enter this tower?", + "render": "Visiting this tower costs {charge}" + }, + "Height": { + "question": "What is the height of this tower?", + "render": "This tower is {height} high" + }, + "Operator": { + "question": "Who maintains this tower?", + "render": "Maintained by {operator}" + }, + "access": { + "mappings": { + "0": { + "then": "This tower is publicly accessible" + }, + "1": { + "then": "This tower can only be visited with a guide" + } + }, + "question": "Can this tower be visited?" + }, + "elevator": { + "mappings": { + "0": { + "then": "This tower has an elevator which takes visitors to the top" + }, + "1": { + "then": "This tower does not have an elevator" + } + }, + "question": "Does this tower have an elevator?" + }, + "name": { + "mappings": { + "0": { + "then": "This tower doesn't have a specific name" + } + }, + "question": "What is the name of this tower?", + "render": "This tower is called {name}" + }, + "step_count": { + "question": "How much individual steps does one have to climb to reach the top of this tower?", + "render": "This tower has {step_count} steps to reach the top" + } + }, + "title": { + "mappings": { + "0": { + "then": "{name}" + } + }, + "render": "Observation tower" + }, + "units": { + "0": { + "applicableUnits": { + "0": { + "human": " meter" + } + } + } + } + }, + "parking": { + "description": "A layer showing car parkings", + "name": "Parking", + "presets": { + "0": { + "title": "car parking" + } + }, + "title": { + "render": "Car parking" + } + }, + "pedestrian_path": { + "description": "Pedestrian footpaths, especially used for indoor navigation and snapping entrances to this layer", + "name": "Pedestrain paths" + }, + "picnic_table": { + "description": "The layer showing picnic tables", + "name": "Picnic tables", + "presets": { + "0": { + "title": "picnic table" + } + }, + "tagRenderings": { + "picnic_table-material": { + "mappings": { + "0": { + "then": "This is a wooden picnic table" + }, + "1": { + "then": "This is a concrete picnic table" + } + }, + "question": "What material is this picnic table made of?", + "render": "This picnic table is made of {material}" + } + }, + "title": { + "render": "Picnic table" + } + }, + "playground": { + "description": "Playgrounds", + "name": "Playgrounds", + "presets": { + "0": { + "title": "playground" + } + }, + "tagRenderings": { + "Playground-wheelchair": { + "mappings": { + "0": { + "then": "Completely accessible for wheelchair users" + }, + "1": { + "then": "Limited accessibility for wheelchair users" + }, + "2": { + "then": "Not accessible for wheelchair users" + } + }, + "question": "Is this playground accessible to wheelchair users?" + }, + "playground-access": { + "mappings": { + "0": { + "then": "Accessible to the general public" + }, + "1": { + "then": "Only accessible for clients of the operating business" + }, + "2": { + "then": "Only accessible to students of the school" + }, + "3": { + "then": "Not accessible" + } + }, + "question": "Is this playground accessible to the general public?" + }, + "playground-email": { + "question": "What is the email address of the playground maintainer?", + "render": "{email}" + }, + "playground-lit": { + "mappings": { + "0": { + "then": "This playground is lit at night" + }, + "1": { + "then": "This playground is not lit at night" + } + }, + "question": "Is this playground lit at night?" + }, + "playground-max_age": { + "question": "What is the maximum age allowed to access this playground?", + "render": "Accessible to kids of at most {max_age}" + }, + "playground-min_age": { + "question": "What is the minimum age required to access this playground?", + "render": "Accessible to kids older than {min_age} years" + }, + "playground-opening_hours": { + "mappings": { + "0": { + "then": "Accessible from sunrise till sunset" + }, + "1": { + "then": "Always accessible" + } + }, + "question": "When is this playground accessible?" + }, + "playground-operator": { + "question": "Who operates this playground?", + "render": "Operated by {operator}" + }, + "playground-phone": { + "question": "What is the phone number of the playground maintainer?", + "render": "{phone}" + }, + "playground-surface": { + "mappings": { + "0": { + "then": "The surface is grass" + }, + "1": { + "then": "The surface is sand" + }, + "2": { + "then": "The surface consist of woodchips" + }, + "3": { + "then": "The surface is paving stones" + }, + "4": { + "then": "The surface is asphalt" + }, + "5": { + "then": "The surface is concrete" + }, + "6": { + "then": "The surface is unpaved" + }, + "7": { + "then": "The surface is paved" + } + }, + "question": "Which is the surface of this playground?
If there are multiple, select the most occuring one", + "render": "The surface is {surface}" + } + }, + "title": { + "mappings": { + "0": { + "then": "Playground {name}" + } + }, + "render": "Playground" + } + }, + "public_bookcase": { + "description": "A streetside cabinet with books, accessible to anyone", + "filter": { + "2": { + "options": { + "0": { + "question": "Indoor or outdoor" + } + } + } + }, + "name": "Bookcases", + "presets": { + "0": { + "title": "Bookcase" + } + }, + "tagRenderings": { + "bookcase-booktypes": { + "mappings": { + "0": { + "then": "Mostly children books" + }, + "1": { + "then": "Mostly books for adults" + }, + "2": { + "then": "Both books for kids and adults" + } + }, + "question": "What kind of books can be found in this public bookcase?" + }, + "bookcase-is-accessible": { + "mappings": { + "0": { + "then": "Publicly accessible" + }, + "1": { + "then": "Only accessible to customers" + } + }, + "question": "Is this public bookcase freely accessible?" + }, + "bookcase-is-indoors": { + "mappings": { + "0": { + "then": "This bookcase is located indoors" + }, + "1": { + "then": "This bookcase is located outdoors" + }, + "2": { + "then": "This bookcase is located outdoors" + } + }, + "question": "Is this bookcase located outdoors?" + }, + "public_bookcase-brand": { + "mappings": { + "0": { + "then": "Part of the network 'Little Free Library'" + }, + "1": { + "then": "This public bookcase is not part of a bigger network" + } + }, + "question": "Is this public bookcase part of a bigger network?", + "render": "This public bookcase is part of {brand}" + }, + "public_bookcase-capacity": { + "question": "How many books fit into this public bookcase?", + "render": "{capacity} books fit in this bookcase" + }, + "public_bookcase-name": { + "mappings": { + "0": { + "then": "This bookcase doesn't have a name" + } + }, + "question": "What is the name of this public bookcase?", + "render": "The name of this bookcase is {name}" + }, + "public_bookcase-operator": { + "question": "Who maintains this public bookcase?", + "render": "Operated by {operator}" + }, + "public_bookcase-ref": { + "mappings": { + "0": { + "then": "This bookcase is not part of a bigger network" + } + }, + "question": "What is the reference number of this public bookcase?", + "render": "The reference number of this public bookcase within {brand} is {ref}" + }, + "public_bookcase-start_date": { + "question": "When was this public bookcase installed?", + "render": "Installed on {start_date}" + }, + "public_bookcase-website": { + "question": "Is there a website with more information about this public bookcase?", + "render": "More info on the website" + } + }, + "title": { + "mappings": { + "0": { + "then": "Public bookcase {name}" + } + }, + "render": "Bookcase" + } + }, + "recycling": { + "description": "A layer with recycling containers and centres", + "filter": { + "0": { + "options": { + "0": { + "question": "Currently open" + } + } + }, + "1": { + "options": { + "0": { + "question": "All recycling types" + }, + "1": { + "question": "Recycling of batteries" + }, + "2": { + "question": "Recycling of beverage cartons" + }, + "3": { + "question": "Recycling of cans" + }, + "4": { + "question": "Recycling of clothes" + }, + "5": { + "question": "Recycling of cooking oil" + }, + "6": { + "question": "Recycling of engine oil" + }, + "7": { + "question": "Recycling of green waste" + }, + "8": { + "question": "Recycling of glass bottles" + }, + "9": { + "question": "Recycling of glass" + }, + "10": { + "question": "Recycling of newspapers" + }, + "11": { + "question": "Recycling of paper" + }, + "12": { + "question": "Recycling of plastic bottles" + }, + "13": { + "question": "Recycling of plastic packaging" + }, + "14": { + "question": "Recycling of plastic" + }, + "15": { + "question": "Recycling of scrap metal" + }, + "16": { + "question": "Recycling of small electrical appliances" + }, + "17": { + "question": "Recycling of residual waste" + } + } + } + }, + "name": "Recycling", + "presets": { + "0": { + "title": "recycling container" + }, + "1": { + "title": "recycling centre" + } + }, + "tagRenderings": { + "container-location": { + "mappings": { + "0": { + "then": "This is an underground container" + }, + "1": { + "then": "This container is located indoors" + }, + "2": { + "then": "This container is located outdoors" + } + }, + "question": "Where is this container located?" + }, + "opening_hours": { + "mappings": { + "0": { + "then": "24/7" + } + }, + "question": "What are the opening hours of this recycling facility?" + }, + "operator": { + "question": "What company operates this recycling facility?", + "render": "This recycling facility is operated by {operator}" + }, + "recycling-accepts": { + "mappings": { + "0": { + "then": "Batteries can be recycled here" + }, + "1": { + "then": "Beverage cartons can be recycled here" + }, + "2": { + "then": "Cans can be recycled here" + }, + "3": { + "then": "Clothes can be recycled here" + }, + "4": { + "then": "Cooking oil can be recycled here" + }, + "5": { + "then": "Engine oil can be recycled here" + }, + "6": { + "then": "Green waste can be recycled here" + }, + "7": { + "then": "Organic waste can be recycled here" + }, + "8": { + "then": "Glass bottles can be recycled here" + }, + "9": { + "then": "Glass can be recycled here" + }, + "10": { + "then": "Newspapers can be recycled here" + }, + "11": { + "then": "Paper can be recycled here" + }, + "12": { + "then": "Plastic bottles can be recycled here" + }, + "13": { + "then": "Plastic packaging can be recycled here" + }, + "14": { + "then": "Plastic can be recycled here" + }, + "15": { + "then": "Scrap metal can be recycled here" + }, + "16": { + "then": "Shoes can be recycled here" + }, + "17": { + "then": "Small electrical appliances can be recycled here" + }, + "18": { + "then": "Small electrical appliances can be recycled here" + }, + "19": { + "then": "Residual waste can be recycled here" + } + }, + "question": "What can be recycled here?" + }, + "recycling-centre-name": { + "mappings": { + "0": { + "then": "This recycling centre doesn't have a specific name" + } + }, + "question": "What is the name of this recycling centre?", + "render": "This recycling centre is named {name}" + }, + "recycling-type": { + "mappings": { + "0": { + "then": "This is a recycling container" + }, + "1": { + "then": "This is a recycling centre" + }, + "2": { + "then": "Waste disposal container for residual waste" + } + }, + "question": "What type of recycling is this?" + } + }, + "title": { + "mappings": { + "0": { + "then": "Recycling centre" + }, + "1": { + "then": "Recycling container" + }, + "2": { + "then": "Recycling container" + } + }, + "render": "Recycling facility" + } + }, + "shops": { + "description": "A shop", + "name": "Shop", + "presets": { + "0": { + "description": "Add a new shop", + "title": "Shop" + } + }, + "tagRenderings": { + "shops-email": { + "question": "What is the email address of this shop?", + "render": "{email}" + }, + "shops-name": { + "question": "What is the name of this shop?" + }, + "shops-opening_hours": { + "question": "What are the opening hours of this shop?", + "render": "{opening_hours_table(opening_hours)}" + }, + "shops-phone": { + "question": "What is the phone number?", + "render": "{phone}" + }, + "shops-shop": { + "mappings": { + "0": { + "then": "Convenience store" + }, + "1": { + "then": "Supermarket" + }, + "2": { + "then": "Clothing store" + }, + "3": { + "then": "Hairdresser" + }, + "4": { + "then": "Bakery" + }, + "5": { + "then": "Car repair (garage)" + }, + "6": { + "then": "Car dealer" + } + }, + "question": "What does this shop sell?", + "render": "This shop sells {shop}" + }, + "shops-website": { + "question": "What is the website of this shop?", + "render": "{website}" + } + }, + "title": { + "mappings": { + "0": { + "then": "{name}" + }, + "1": { + "then": "{shop}" + } + }, + "render": "Shop" + } + }, + "slow_roads": { + "description": "All carfree roads", + "tagRenderings": { + "slow_roads-surface": { + "mappings": { + "0": { + "then": "The surface is grass" + }, + "1": { + "then": "The surface is ground" + }, + "2": { + "then": "The surface is unpaved" + }, + "3": { + "then": "The surface is sand" + }, + "4": { + "then": "The surface is paving stones" + }, + "5": { + "then": "The surface is asphalt" + }, + "6": { + "then": "The surface is concrete" + }, + "7": { + "then": "The surface is paved" + } + }, + "render": "The surface is {surface}" + } + } + }, + "sport_pitch": { + "description": "A sport pitch", + "name": "Sport pitches", + "presets": { + "0": { + "title": "Tabletennis table" + }, + "1": { + "title": "Sport pitch" + } + }, + "tagRenderings": { + "sport-pitch-access": { + "mappings": { + "0": { + "then": "Public access" + }, + "1": { + "then": "Limited access (e.g. only with an appointment, during certain hours, ...)" + }, + "2": { + "then": "Only accessible for members of the club" + }, + "3": { + "then": "Private - not accessible to the public" + } + }, + "question": "Is this sport pitch publicly accessible?" + }, + "sport-pitch-reservation": { + "mappings": { + "0": { + "then": "Making an appointment is obligatory to use this sport pitch" + }, + "1": { + "then": "Making an appointment is recommended when using this sport pitch" + }, + "2": { + "then": "Making an appointment is possible, but not necessary to use this sport pitch" + }, + "3": { + "then": "Making an appointment is not possible" + } + }, + "question": "Does one have to make an appointment to use this sport pitch?" + }, + "sport_pitch-email": { + "question": "What is the email address of the operator?" + }, + "sport_pitch-opening_hours": { + "mappings": { + "1": { + "then": "Always accessible" + } + }, + "question": "When is this pitch accessible?" + }, + "sport_pitch-phone": { + "question": "What is the phone number of the operator?" + }, + "sport_pitch-sport": { + "mappings": { + "0": { + "then": "Basketball is played here" + }, + "1": { + "then": "Soccer is played here" + }, + "2": { + "then": "This is a pingpong table" + }, + "3": { + "then": "Tennis is played here" + }, + "4": { + "then": "Korfball is played here" + }, + "5": { + "then": "Basketball is played here" + } + }, + "question": "Which sport can be played here?", + "render": "{sport} is played here" + }, + "sport_pitch-surface": { + "mappings": { + "0": { + "then": "The surface is grass" + }, + "1": { + "then": "The surface is sand" + }, + "2": { + "then": "The surface is paving stones" + }, + "3": { + "then": "The surface is asphalt" + }, + "4": { + "then": "The surface is concrete" + } + }, + "question": "Which is the surface of this sport pitch?", + "render": "The surface is {surface}" + } + }, + "title": { + "render": "Sport pitch" + } + }, + "street_lamps": { + "description": "A layer showing street lights", + "name": "Street Lamps", + "presets": { + "0": { + "title": "street lamp" + } + }, + "tagRenderings": { + "colour": { + "mappings": { + "0": { + "then": "This lamp emits white light" + }, + "1": { + "then": "This lamp emits green light" + }, + "2": { + "then": "This lamp emits orange light" + } + }, + "question": "What colour light does this lamp emit?", + "render": "This lamp emits {light:colour} light" + }, + "count": { + "mappings": { + "0": { + "then": "This lamp has 1 fixture" + }, + "1": { + "then": "This lamp has 2 fixtures" + } + }, + "question": "How many fixtures does this light have?", + "render": "This lamp has {light:count} fixtures" + }, + "direction": { + "question": "Where does this lamp point to?", + "render": "This lamp points towards {light:direction}" + }, + "lamp_mount": { + "mappings": { + "0": { + "then": "This lamp sits atop of a straight mast" + }, + "1": { + "then": "This lamp sits at the end of a bent mast" + } + }, + "question": "How is this lamp mounted to the pole?" + }, + "lit": { + "mappings": { + "0": { + "then": "This lamp is lit at night" + }, + "1": { + "then": "This lamp is lit 24/7" + }, + "2": { + "then": "This lamp is lit based on motion" + }, + "3": { + "then": "This lamp is lit based on demand (e.g. with a pushbutton)" + } + }, + "question": "When is this lamp lit?" + }, + "method": { + "mappings": { + "0": { + "then": "This lamp is lit electrically" + }, + "1": { + "then": "This lamp uses LEDs" + }, + "2": { + "then": "This lamp uses incandescent lighting" + }, + "3": { + "then": "This lamp uses halogen lighting" + }, + "4": { + "then": "This lamp uses discharge lamps (unknown type)" + }, + "5": { + "then": "This lamp uses a mercury-vapour lamp (lightly blueish)" + }, + "6": { + "then": "This lamp uses metal-halide lamps (bright white)" + }, + "7": { + "then": "This lamp uses fluorescent lighting" + }, + "8": { + "then": "This lamp uses sodium lamps (unknown type)" + }, + "9": { + "then": "This lamp uses low pressure sodium lamps (monochrome orange)" + }, + "10": { + "then": "This lamp uses high pressure sodium lamps (orange with white)" + }, + "11": { + "then": "This lamp is lit using gas" + } + }, + "question": "What kind of lighting does this lamp use?" + }, + "ref": { + "question": "What is the reference number of this street lamp?", + "render": "This street lamp has the reference number {ref}" + }, + "support": { + "mappings": { + "0": { + "then": "This lamp is suspended using cables" + }, + "1": { + "then": "This lamp is mounted on a ceiling" + }, + "2": { + "then": "This lamp is mounted in the ground" + }, + "3": { + "then": "This lamp is mounted on a short pole (mostly < 1.5m)" + }, + "4": { + "then": "This lamp is mounted on a pole" + }, + "5": { + "then": "This lamp is mounted directly to the wall" + }, + "6": { + "then": "This lamp is mounted to the wall using a metal bar" + } + }, + "question": "How is this street lamp mounted?" + } + }, + "title": { + "mappings": { + "0": { + "then": "Street Lamp {ref}" + } + }, + "render": "Street Lamp" + } + }, + "surveillance_camera": { + "description": "This layer shows surveillance cameras and allows a contributor to update information and add new cameras", + "name": "Surveillance camera's", + "presets": { + "0": { + "title": "surveillance camera" + }, + "1": { + "title": "surveillance camera mounted on a wall" + } + }, + "tagRenderings": { + "Camera type: fixed; panning; dome": { + "mappings": { + "0": { + "then": "A fixed (non-moving) camera" + }, + "1": { + "then": "A dome camera (which can turn)" + }, + "2": { + "then": "A panning camera" + } + }, + "question": "What kind of camera is this?" + }, + "Level": { + "question": "On which level is this camera located?", + "render": "Located on level {level}" + }, + "Operator": { + "question": "Who operates this CCTV?", + "render": "Operated by {operator}" + }, + "Surveillance type: public, outdoor, indoor": { + "mappings": { + "0": { + "then": "A public area is surveilled, such as a street, a bridge, a square, a park, a train station, a public corridor or tunnel,..." + }, + "1": { + "then": "An outdoor, yet private area is surveilled (e.g. a parking lot, a fuel station, courtyard, entrance, private driveway, ...)" + }, + "2": { + "then": "A private indoor area is surveilled, e.g. a shop, a private underground parking, ..." + } + }, + "question": "What kind of surveillance is this camera" + }, + "Surveillance:zone": { + "mappings": { + "0": { + "then": "Surveills a parking" + }, + "1": { + "then": "Surveills the traffic" + }, + "2": { + "then": "Surveills an entrance" + }, + "3": { + "then": "Surveills a corridor" + }, + "4": { + "then": "Surveills a public tranport platform" + }, + "5": { + "then": "Surveills a shop" + } + }, + "question": "What exactly is surveilled here?", + "render": " Surveills a {surveillance:zone}" + }, + "camera:mount": { + "mappings": { + "0": { + "then": "This camera is placed against a wall" + }, + "1": { + "then": "This camera is placed one a pole" + }, + "2": { + "then": "This camera is placed on the ceiling" + } + }, + "question": "How is this camera placed?", + "render": "Mounting method: {camera:mount}" + }, + "camera_direction": { + "mappings": { + "0": { + "then": "Films to a compass heading of {direction}" + } + }, + "question": "In which geographical direction does this camera film?", + "render": "Films to a compass heading of {camera:direction}" + }, + "is_indoor": { + "mappings": { + "0": { + "then": "This camera is located indoors" + }, + "1": { + "then": "This camera is located outdoors" + }, + "2": { + "then": "This camera is probably located outdoors" + } + }, + "question": "Is the public space surveilled by this camera an indoor or outdoor space?" + } + }, + "title": { + "render": "Surveillance Camera" + } + }, + "toilet": { + "description": "A layer showing (public) toilets", + "filter": { + "0": { + "options": { + "0": { + "question": "Wheelchair accessible" + } + } + }, + "1": { + "options": { + "0": { + "question": "Has a changing table" + } + } + }, + "2": { + "options": { + "0": { + "question": "Free to use" + } + } + }, + "3": { + "options": { + "0": { + "question": "Opened now" + } + } + } + }, + "name": "Toilets", + "presets": { + "0": { + "title": "public toilet" + }, + "1": { + "description": "A restroom which has at least one wheelchair-accessible toilet", + "title": "toilets with wheelchair accessible toilet" + } + }, + "tagRenderings": { + "Opening-hours": { + "mappings": { + "0": { + "then": "Opened 24/7" + } + }, + "question": "When are these toilets opened?" + }, + "toilet-access": { + "mappings": { + "0": { + "then": "Public access" + }, + "1": { + "then": "Only access to customers" + }, + "2": { + "then": "Not accessible" + }, + "3": { + "then": "Accessible, but one has to ask a key to enter" + }, + "4": { + "then": "Public access" + } + }, + "question": "Are these toilets publicly accessible?", + "render": "Access is {access}" + }, + "toilet-changing_table:location": { + "mappings": { + "0": { + "then": "The changing table is in the toilet for women. " + }, + "1": { + "then": "The changing table is in the toilet for men. " + }, + "2": { + "then": "The changing table is in the toilet for wheelchair users. " + }, + "3": { + "then": "The changing table is in a dedicated room. " + } + }, + "question": "Where is the changing table located?", + "render": "The changing table is located at {changing_table:location}" + }, + "toilet-charge": { + "question": "How much does one have to pay for these toilets?", + "render": "The fee is {charge}" + }, + "toilet-handwashing": { + "mappings": { + "0": { + "then": "This toilets have a sink to wash your hands" + }, + "1": { + "then": "This toilets don't have a sink to wash your hands" + } + }, + "question": "Do these toilets have a sink to wash your hands?" + }, + "toilet-has-paper": { + "mappings": { + "0": { + "then": "This toilet is equipped with toilet paper" + }, + "1": { + "then": "You have to bring your own toilet paper to this toilet" + } + }, + "question": "Does one have to bring their own toilet paper to this toilet?" + }, + "toilets-changing-table": { + "mappings": { + "0": { + "then": "A changing table is available" + }, + "1": { + "then": "No changing table is available" + } + }, + "question": "Is a changing table (to change diapers) available?" + }, + "toilets-fee": { + "mappings": { + "0": { + "then": "These are paid toilets" + }, + "1": { + "then": "Free to use" + } + }, + "question": "Are these toilets free to use?" + }, + "toilets-type": { + "mappings": { + "0": { + "then": "There are only seated toilets" + }, + "1": { + "then": "There are only urinals here" + }, + "2": { + "then": "There are only squat toilets here" + }, + "3": { + "then": "Both seated toilets and urinals are available here" + } + }, + "question": "Which kind of toilets are this?" + }, + "toilets-wheelchair": { + "mappings": { + "0": { + "then": "There is a dedicated toilet for wheelchair users" + }, + "1": { + "then": "No wheelchair access" + } + }, + "question": "Is there a dedicated toilet for wheelchair users" + } + }, + "title": { + "render": "Toilet" + } + }, + "trail": { + "name": "Trails", + "tagRenderings": { + "Color": { + "mappings": { + "0": { + "then": "Blue trail" + }, + "1": { + "then": "Red trail" + }, + "2": { + "then": "Green trail" + }, + "3": { + "then": "Yellow trail" + } + } + }, + "trail-length": { + "render": "The trail is {_length:km} kilometers long" + } + }, + "title": { + "render": "Trail" + } + }, + "tree_node": { + "description": "A layer showing trees", + "name": "Tree", + "presets": { + "0": { + "description": "A tree of a species with leaves, such as oak or populus.", + "title": "Broadleaved tree" + }, + "1": { + "description": "A tree of a species with needles, such as pine or spruce.", + "title": "Needleleaved tree" + }, + "2": { + "description": "If you're not sure whether it's a broadleaved or needleleaved tree.", + "title": "Tree" + } + }, + "tagRenderings": { + "tree-decidouous": { + "mappings": { + "0": { + "then": "Deciduous: the tree loses its leaves for some time of the year." + }, + "1": { + "then": "Evergreen." + } + }, + "question": "Is this tree evergreen or deciduous?" + }, + "tree-denotation": { + "mappings": { + "0": { + "then": "The tree is remarkable due to its size or prominent location. It is useful for navigation." + }, + "1": { + "then": "The tree is a natural monument, e.g. because it is especially old, or of a valuable species." + }, + "2": { + "then": "The tree is used for agricultural purposes, e.g. in an orchard." + }, + "3": { + "then": "The tree is in a park or similar (cemetery, school grounds, …)." + }, + "4": { + "then": "The tree is a residential garden." + }, + "5": { + "then": "This is a tree along an avenue." + }, + "6": { + "then": "The tree is an urban area." + }, + "7": { + "then": "The tree is outside of an urban area." + } + }, + "question": "How significant is this tree? Choose the first answer that applies." + }, + "tree-height": { + "mappings": { + "0": { + "then": "Height: {height} m" + } + }, + "render": "Height: {height}" + }, + "tree-heritage": { + "mappings": { + "0": { + "then": "Registered as heritage by Onroerend Erfgoed Flanders" + }, + "1": { + "then": "Registered as heritage by Direction du Patrimoine culturel Brussels" + }, + "2": { + "then": "Registered as heritage by a different organisation" + }, + "3": { + "then": "Not registered as heritage" + }, + "4": { + "then": "Registered as heritage by a different organisation" + } + }, + "question": "Is this tree registered heritage?" + }, + "tree-leaf_type": { + "mappings": { + "0": { + "then": "Broadleaved" + }, + "1": { + "then": "Needleleaved" + }, + "2": { + "then": "Permanently leafless" + } + }, + "question": "Is this a broadleaved or needleleaved tree?" + }, + "tree_node-name": { + "mappings": { + "0": { + "then": "The tree does not have a name." + } + }, + "question": "Does the tree have a name?", + "render": "Name: {name}" + }, + "tree_node-ref:OnroerendErfgoed": { + "question": "What is the ID issued by Onroerend Erfgoed Flanders?", + "render": "\"\"/ Onroerend Erfgoed ID: {ref:OnroerendErfgoed}" + }, + "tree_node-wikidata": { + "question": "What is the Wikidata ID for this tree?", + "render": "\"\"/ Wikidata: {wikidata}" + } + }, + "title": { + "render": "Tree" + } + }, + "viewpoint": { + "description": "A nice viewpoint or nice view. Ideal to add an image if no other category fits", + "name": "Viewpoint", + "presets": { + "0": { + "title": "Viewpoint" + } + }, + "tagRenderings": { + "viewpoint-description": { + "question": "Do you want to add a description?" + } + }, + "title": { + "render": "Viewpoint" + } + }, + "village_green": { + "description": "A layer showing village-green (which are communal green areas, but not quite parks\"" + }, + "visitor_information_centre": { + "description": "A visitor center offers information about a specific attraction or place of interest where it is located.", + "name": "Visitor Information Centre", + "title": { + "mappings": { + "1": { + "then": "{name}" + } + }, + "render": "{name}" + } + }, + "walls_and_buildings": { + "description": "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.", + "title": { + "render": "Wall or building" + } + }, + "waste_basket": { + "description": "This is a public waste basket, thrash can, where you can throw away your thrash.", + "filter": { + "0": { + "options": { + "0": { + "question": "All types" + }, + "1": { + "question": "Waste basket for cigarettes" + }, + "2": { + "question": "Waste basket for drugs" + }, + "3": { + "question": "Waste basket for dog excrement" + }, + "4": { + "question": "Waste basket for trash" + }, + "5": { + "question": "Waste basket for sharps" + }, + "6": { + "question": "Waste basket for plastic" + } + } + }, + "1": { + "options": { + "0": { + "question": "Waste basket with dispenser for (dog) excrement bags" + } + } + } + }, + "mapRendering": { + "0": { + "iconSize": { + "mappings": { + "0": { + "then": "Waste Basket" + } + } + } + } + }, + "name": "Waste Basket", + "presets": { + "0": { + "title": "Waste Basket" + } + }, + "tagRenderings": { + "dispensing_dog_bags": { + "mappings": { + "0": { + "then": "This waste basket has a dispenser for (dog) excrement bags" + }, + "1": { + "then": "This waste basket does not have a dispenser for (dog) excrement bags" + }, + "2": { + "then": "This waste basket does not have a dispenser for (dog) excrement bags" + } + }, + "question": "Does this waste basket have a dispenser for dog excrement bags?" + }, + "waste-basket-waste-types": { + "mappings": { + "0": { + "then": "A waste basket for general waste" + }, + "1": { + "then": "A waste basket for general waste" + }, + "2": { + "then": "A waste basket for dog excrements" + }, + "3": { + "then": "A waste basket for cigarettes" + }, + "4": { + "then": "A waste basket for drugs" + }, + "5": { + "then": "A waste basket for needles and other sharp objects" + }, + "6": { + "then": "A waste basket for plastic" + } + }, + "question": "What kind of waste basket is this?" + } + }, + "title": { + "render": "Waste Basket" + } + }, + "waste_disposal": { + "description": "Waste Disposal Bin, medium to large bin for disposal of (household) waste", + "filter": { + "0": { + "options": { + "0": { + "question": "Only public access" + } + } + } + }, + "name": "Waste Disposal Bins", + "presets": { + "0": { + "description": "Medium to large bin for disposal of (household) waste", + "title": "Waste Disposal Bin" + } + }, + "tagRenderings": { + "access": { + "mappings": { + "0": { + "then": "This bin can be used by anyone" + }, + "1": { + "then": "This bin is private" + }, + "2": { + "then": "This bin is only for residents" + } + }, + "question": "Who can use this waste disposal bin?", + "render": "Access: {access}" + }, + "disposal-location": { + "mappings": { + "0": { + "then": "This is an underground container" + }, + "1": { + "then": "This container is located indoors" + }, + "2": { + "then": "This container is located outdoors" + } + }, + "question": "Where is this container located?" + } + }, + "title": { + "render": "Waste Disposal" + } + }, + "watermill": { + "name": "Watermill" } - }, - "watermill": { - "name": "Watermill" - } } \ No newline at end of file diff --git a/langs/layers/eo.json b/langs/layers/eo.json index f801770b80..63d58d4a4a 100644 --- a/langs/layers/eo.json +++ b/langs/layers/eo.json @@ -1,185 +1,192 @@ { - "bench": { - "tagRenderings": { - "bench-colour": { - "mappings": { - "0": { - "then": "Koloro: bruna" - }, - "1": { - "then": "Koloro: verda" - }, - "2": { - "then": "Koloro: griza" - }, - "3": { - "then": "Koloro: blanka" - }, - "4": { - "then": "Koloro: ruĝa" - }, - "5": { - "then": "Koloro: nigra" - }, - "6": { - "then": "Koloro: blua" - }, - "7": { - "then": "Koloro: flava" - } - }, - "render": "Koloro: {colour}" - }, - "bench-material": { - "mappings": { - "0": { - "then": "Materialo: ligna" - }, - "1": { - "then": "Materialo: metala" - }, - "2": { - "then": "Materialo: ŝtona" - }, - "3": { - "then": "Materialo: betona" - }, - "4": { - "then": "Materialo: plasta" - }, - "5": { - "then": "Materialo: ŝtala" - } - }, - "render": "Materialo: {material}" - } - } - }, - "bench_at_pt": { - "tagRenderings": { - "bench_at_pt-name": { - "render": "{name}" - } - } - }, - "bicycle_library": { - "presets": { - "0": { - "title": "Fietsbibliotheek" - } - } - }, - "bike_parking": { - "tagRenderings": { - "Access": { - "render": "{access}" - } - } - }, - "ghost_bike": { - "name": "Fantombiciklo", - "title": { - "render": "Fantombiciklo" - } - }, - "shops": { - "description": "Butiko", - "name": "Butiko", - "presets": { - "0": { - "description": "Enmeti novan butikon", - "title": "Butiko" - } - }, - "tagRenderings": { - "shops-email": { - "question": "Kio estas la retpoŝta adreso de ĉi tiu butiko?", - "render": "{email}" - }, - "shops-phone": { - "question": "Kio estas la telefonnumero?", - "render": "{phone}" - }, - "shops-shop": { - "mappings": { - "4": { - "then": "Bakejo" - } - }, - "question": "Kion vendas ĉi tiu butiko?", - "render": "Ĉi tiu butiko vendas {shop}" - }, - "shops-website": { - "render": "{website}" - } - }, - "title": { - "mappings": { - "0": { - "then": "{name}" - }, - "1": { - "then": "{shop}" + "bench": { + "tagRenderings": { + "bench-colour": { + "mappings": { + "0": { + "then": "Koloro: bruna" + }, + "1": { + "then": "Koloro: verda" + }, + "2": { + "then": "Koloro: griza" + }, + "3": { + "then": "Koloro: blanka" + }, + "4": { + "then": "Koloro: ruĝa" + }, + "5": { + "then": "Koloro: nigra" + }, + "6": { + "then": "Koloro: blua" + }, + "7": { + "then": "Koloro: flava" + } + }, + "render": "Koloro: {colour}" + }, + "bench-material": { + "mappings": { + "0": { + "then": "Materialo: ligna" + }, + "1": { + "then": "Materialo: metala" + }, + "2": { + "then": "Materialo: ŝtona" + }, + "3": { + "then": "Materialo: betona" + }, + "4": { + "then": "Materialo: plasta" + }, + "5": { + "then": "Materialo: ŝtala" + } + }, + "render": "Materialo: {material}" + } } - }, - "render": "Butiko" - } - }, - "slow_roads": { - "tagRenderings": { - "slow_roads-surface": { - "mappings": { - "0": { - "then": "La surfaco estas herba" - }, - "3": { - "then": "La surfaco estas sabla" - }, - "6": { - "then": "La surfaco estas betona" - } - }, - "render": "La surfaco estas {surface}" - } - } - }, - "tree_node": { - "tagRenderings": { - "tree_node-name": { - "render": "Nomo: {name}" - } }, - "title": { - "mappings": { - "0": { - "then": "{name}" + "bench_at_pt": { + "tagRenderings": { + "bench_at_pt-name": { + "render": "{name}" + } } - }, - "render": "Arbo" - } - }, - "viewpoint": { - "name": "Vidpunkto", - "title": { - "render": "Vidpunkto" - } - }, - "visitor_information_centre": { - "title": { - "mappings": { - "1": { - "then": "{name}" + }, + "bicycle_library": { + "presets": { + "0": { + "title": "Fietsbibliotheek" + } + } + }, + "bike_parking": { + "tagRenderings": { + "Access": { + "render": "{access}" + } + } + }, + "extinguisher": { + "tagRenderings": { + "extinguisher-location": { + "render": "Loko: {location}" + } + } + }, + "ghost_bike": { + "name": "Fantombiciklo", + "presets": { + "0": { + "title": "Fantombiciklo" + } + }, + "title": { + "render": "Fantombiciklo" + } + }, + "shops": { + "description": "Butiko", + "name": "Butiko", + "presets": { + "0": { + "description": "Enmeti novan butikon", + "title": "Butiko" + } + }, + "tagRenderings": { + "shops-email": { + "question": "Kio estas la retpoŝta adreso de ĉi tiu butiko?", + "render": "{email}" + }, + "shops-phone": { + "question": "Kio estas la telefonnumero?", + "render": "{phone}" + }, + "shops-shop": { + "mappings": { + "4": { + "then": "Bakejo" + } + }, + "question": "Kion vendas ĉi tiu butiko?", + "render": "Ĉi tiu butiko vendas {shop}" + }, + "shops-website": { + "render": "{website}" + } + }, + "title": { + "mappings": { + "0": { + "then": "{name}" + }, + "1": { + "then": "{shop}" + } + }, + "render": "Butiko" + } + }, + "slow_roads": { + "tagRenderings": { + "slow_roads-surface": { + "mappings": { + "0": { + "then": "La surfaco estas herba" + }, + "3": { + "then": "La surfaco estas sabla" + }, + "6": { + "then": "La surfaco estas betona" + } + }, + "render": "La surfaco estas {surface}" + } + } + }, + "tree_node": { + "tagRenderings": { + "tree_node-name": { + "render": "Nomo: {name}" + } + }, + "title": { + "render": "Arbo" + } + }, + "viewpoint": { + "name": "Vidpunkto", + "title": { + "render": "Vidpunkto" + } + }, + "visitor_information_centre": { + "title": { + "mappings": { + "1": { + "then": "{name}" + } + }, + "render": "{name}" + } + }, + "waste_basket": { + "name": "Rubujo", + "presets": { + "0": { + "title": "Rubujo" + } } - }, - "render": "{name}" } - }, - "waste_basket": { - "name": "Rubujo", - "presets": { - "0": { - "title": "Rubujo" - } - } - } } \ No newline at end of file diff --git a/langs/layers/es.json b/langs/layers/es.json index ef10b5f045..c71f31cc1d 100644 --- a/langs/layers/es.json +++ b/langs/layers/es.json @@ -1,143 +1,336 @@ { - "artwork": { - "description": "Diversas piezas de obras de arte", - "name": "Obras de arte", - "presets": { - "0": { - "title": "Obra de arte" - } - }, - "tagRenderings": { - "artwork-artwork_type": { - "question": "Cuál es el tipo de esta obra de arte?", - "render": "Esta es un {artwork_type}" - } - }, - "title": { - "mappings": { - "0": { - "then": "Obra de arte {nombre}" + "address": { + "description": "Direcciones", + "name": "Direcciones conocidas en OSM", + "tagRenderings": { + "fixme": { + "question": "¿Qué debe corregirse aquí? Expóngalo" + }, + "housenumber": { + "mappings": { + "0": { + "then": "Esta edificación no tiene número" + } + }, + "question": "¿Cuál es el número de esta casa?" + }, + "street": { + "question": "¿En qué calle se encuentra esta dirección?" + } + }, + "title": { + "render": "Domicilio conocido" } - }, - "render": "Obra de arte" - } - }, - "bench": { - "name": "Bancos", - "presets": { - "0": { - "title": "banco" - } }, - "tagRenderings": { - "bench-backrest": { - "mappings": { - "0": { - "then": "Respaldo: Si" - }, - "1": { - "then": "Respaldo: No" - } + "artwork": { + "description": "Diversas piezas de obras de arte", + "name": "Obras de arte", + "presets": { + "0": { + "title": "Obra de arte" + } }, - "question": "¿Este banco tiene un respaldo?" - }, - "bench-material": { - "mappings": { - "0": { - "then": "Material: madera" - }, - "1": { - "then": "Material: metal" - }, - "2": { - "then": "Material: piedra" - }, - "3": { - "then": "Material: concreto" - }, - "4": { - "then": "Material: plastico" - }, - "5": { - "then": "Material: acero" - } + "tagRenderings": { + "artwork-artwork_type": { + "mappings": { + "0": { + "then": "Arquitectura" + }, + "1": { + "then": "Mural" + }, + "2": { + "then": "Pintura" + }, + "3": { + "then": "Escultura" + }, + "4": { + "then": "Estatua" + }, + "5": { + "then": "Busto" + }, + "7": { + "then": "Instalación" + }, + "8": { + "then": "Grafiti" + } + }, + "question": "¿Qué tipo de obra es esta pieza?", + "render": "Esta es un {artwork_type}" + } }, - "render": "Material: {material}" - }, - "bench-seats": { - "question": "¿Cuántos asientos tiene este banco?", - "render": "{seats} asientos" - } + "title": { + "mappings": { + "0": { + "then": "Obra de arte {name}" + } + }, + "render": "Obra de arte" + } }, - "title": { - "render": "Banco" - } - }, - "bench_at_pt": { - "name": "Bancos en una parada de transporte público", - "title": { - "render": "Banco" - } - }, - "defibrillator": { - "name": "Desfibriladores", - "presets": { - "0": { - "title": "Desfibrilador" - } - }, - "tagRenderings": { - "defibrillator-access": { - "mappings": { - "0": { - "then": "Acceso libre" - }, - "1": { - "then": "Publicament accesible" - }, - "2": { - "then": "Sólo accesible a clientes" - }, - "3": { - "then": "No accesible al público en general (ex. sólo accesible a trabajadores, propietarios, ...)" - } + "barrier": { + "name": "Barreras", + "presets": { + "0": { + "title": "Bolardo" + } }, - "question": "¿Está el desfibrilador accesible libremente?", - "render": "El acceso es {access}" - }, - "defibrillator-defibrillator:location": { - "question": "Da detalles de dónde se puede encontrar el desfibrilador (en el idioma local)" - }, - "defibrillator-defibrillator:location:en": { - "question": "Da detalles de dónde se puede encontrar el desfibrilador (en ingles)" - }, - "defibrillator-defibrillator:location:fr": { - "question": "Da detalles de dónde se puede encontrar el desfibrilador (en frances)" - }, - "defibrillator-indoors": { - "mappings": { - "0": { - "then": "Este desfibrilador está en interior" - }, - "1": { - "then": "Este desfibrilador está en exterior" - } + "tagRenderings": { + "Bollard type": { + "mappings": { + "1": { + "then": "Bolardo fijo" + }, + "3": { + "then": "Bolardo flexible, normalmente plástico" + }, + "4": { + "then": "Bolardo levadizo" + } + }, + "question": "¿Qué tipo de bolardo es este?" + } }, - "question": "¿Esté el desfibrilador en interior?" - }, - "defibrillator-level": { - "question": "¿En qué planta se encuentra el defibrilador localizado?", - "render": "El desfibrilador se encuentra en la planta {level}" - } + "title": { + "mappings": { + "0": { + "then": "Bolardo" + } + }, + "render": "Barrera" + } }, - "title": { - "render": "Desfibrilador" + "bench": { + "name": "Bancos", + "presets": { + "0": { + "title": "banco" + } + }, + "tagRenderings": { + "bench-backrest": { + "mappings": { + "0": { + "then": "Respaldo: sí" + }, + "1": { + "then": "Respaldo: no" + } + }, + "question": "¿Este banco tiene respaldo?" + }, + "bench-colour": { + "mappings": { + "1": { + "then": "Color: verde" + }, + "2": { + "then": "Color: gris" + }, + "3": { + "then": "Color: blanco" + }, + "4": { + "then": "Color: rojo" + }, + "5": { + "then": "Color: negro" + }, + "6": { + "then": "Color: azul" + }, + "7": { + "then": "Color: amarillo" + } + }, + "question": "¿De qué color es este banco?", + "render": "Color: {colour}" + }, + "bench-direction": { + "question": "¿En qué dirección se mira al sentarse en el banco?" + }, + "bench-material": { + "mappings": { + "0": { + "then": "Material: madera" + }, + "1": { + "then": "Material: metal" + }, + "2": { + "then": "Material: piedra" + }, + "3": { + "then": "Material: concreto" + }, + "4": { + "then": "Material: plastico" + }, + "5": { + "then": "Material: acero" + } + }, + "render": "Material: {material}" + }, + "bench-seats": { + "question": "¿Cuántos asientos tiene este banco?", + "render": "{seats} asientos" + } + }, + "title": { + "render": "Banco" + } + }, + "bench_at_pt": { + "description": "Una capa que muestra todas las paradas de transporte público que tienen bancos", + "name": "Bancos en una parada de transporte público", + "tagRenderings": { + "bench_at_pt-bench_type": { + "question": "¿Qué tipo de banco es este?" + }, + "bench_at_pt-name": { + "render": "{name}" + } + }, + "title": { + "render": "Banco" + } + }, + "bicycle_rental": { + "title": { + "render": "Alquiler de bicicletas" + } + }, + "bike_cafe": { + "tagRenderings": { + "bike_cafe-repair-tools": { + "question": "¿Hay herramientas para reparar su propia bicicleta?" + } + } + }, + "charging_station": { + "tagRenderings": { + "Authentication": { + "mappings": { + "0": { + "then": "Autenticación mediante tarjeta de membresía" + }, + "1": { + "then": "Autenticación mediante aplicación" + }, + "2": { + "then": "Autenticación mediante llamada telefónica disponible" + }, + "3": { + "then": "Autenticación mediante SMS disponible" + }, + "4": { + "then": "Autenticación mediante NFC disponible" + }, + "5": { + "then": "Autenticación mediante Money Card disponible" + }, + "6": { + "then": "Autenticación mediante tarjeta de débito disponible" + } + } + }, + "Network": { + "mappings": { + "1": { + "then": "No forma parte de una red mayor" + } + }, + "question": "¿Esta estación de carga forma parte de una red?", + "render": "Parte de la red {network}" + }, + "OH": { + "mappings": { + "0": { + "then": "Abre 24/7 (incluidos días festivos)" + } + }, + "question": "¿Cuándo abre esta estación de carga?" + }, + "Type": { + "question": "¿A qué vehículos se permite la carga aquí?" + } + } + }, + "defibrillator": { + "name": "Desfibriladores", + "presets": { + "0": { + "title": "Desfibrilador" + } + }, + "tagRenderings": { + "defibrillator-access": { + "mappings": { + "0": { + "then": "Acceso libre" + }, + "1": { + "then": "Publicament accesible" + }, + "2": { + "then": "Sólo accesible a clientes" + }, + "3": { + "then": "No accesible al público en general (ex. sólo accesible a trabajadores, propietarios, ...)" + } + }, + "question": "¿Está el desfibrilador accesible libremente?", + "render": "El acceso es {access}" + }, + "defibrillator-defibrillator:location": { + "question": "Da detalles de dónde se puede encontrar el desfibrilador (en el idioma local)" + }, + "defibrillator-defibrillator:location:en": { + "question": "Da detalles de dónde se puede encontrar el desfibrilador (en ingles)" + }, + "defibrillator-defibrillator:location:fr": { + "question": "Da detalles de dónde se puede encontrar el desfibrilador (en frances)" + }, + "defibrillator-indoors": { + "mappings": { + "0": { + "then": "Este desfibrilador está en interior" + }, + "1": { + "then": "Este desfibrilador está en exterior" + } + }, + "question": "¿Esté el desfibrilador en interior?" + }, + "defibrillator-level": { + "question": "¿En qué planta se encuentra el defibrilador localizado?", + "render": "El desfibrilador se encuentra en la planta {level}" + } + }, + "title": { + "render": "Desfibrilador" + } + }, + "ghost_bike": { + "name": "Bicicleta blanca", + "presets": { + "0": { + "title": "Bicicleta blanca" + } + }, + "title": { + "render": "Bicicleta blanca" + } + }, + "observation_tower": { + "tagRenderings": { + "access": { + "question": "¿Se puede visitar esta torre?" + } + } } - }, - "ghost_bike": { - "name": "Bicicleta blanca", - "title": { - "render": "Bicicleta blanca" - } - } } \ No newline at end of file diff --git a/langs/layers/fi.json b/langs/layers/fi.json index 518882d48c..0b2b80e0fc 100644 --- a/langs/layers/fi.json +++ b/langs/layers/fi.json @@ -1,130 +1,135 @@ { - "artwork": { - "presets": { - "0": { - "title": "Taideteos" - } - }, - "title": { - "mappings": { - "0": { - "then": "Taideteos {name}" - } - }, - "render": "Taideteos" - } - }, - "bench": { - "name": "Penkit", - "presets": { - "0": { - "title": "penkki" - } - }, - "tagRenderings": { - "bench-backrest": { - "mappings": { - "0": { - "then": "Selkänoja: kyllä" - }, - "1": { - "then": "Selkänoja: ei" - } - } - }, - "bench-colour": { - "mappings": { - "0": { - "then": "Väri: ruskea" - }, - "1": { - "then": "Väri: vihreä" - }, - "2": { - "then": "Väri: harmaa" - }, - "3": { - "then": "Väri: valkoinen" - }, - "4": { - "then": "Väri: punainen" - }, - "5": { - "then": "Väri: musta" - }, - "6": { - "then": "Väri: sininen" - }, - "7": { - "then": "Väri: keltainen" - } + "artwork": { + "presets": { + "0": { + "title": "Taideteos" + } }, - "render": "Väri: {colour}" - }, - "bench-material": { - "mappings": { - "0": { - "then": "Materiaali: puu" - }, - "2": { - "then": "Materiaali: kivi" - }, - "3": { - "then": "Materiaali: betoni" - }, - "4": { - "then": "Materiaali: muovi" - }, - "5": { - "then": "Materiaali: teräs" - } - }, - "render": "Materiaali: {material}" - } - }, - "title": { - "render": "Penkki" - } - }, - "bench_at_pt": { - "tagRenderings": { - "bench_at_pt-name": { - "render": "{name}" - } - }, - "title": { - "render": "Penkki" - } - }, - "bike_parking": { - "tagRenderings": { - "Access": { - "render": "{access}" - } - } - }, - "bike_repair_station": { - "presets": { - "0": { - "title": "Pyöräpumppu" - } - } - }, - "ghost_bike": { - "name": "Haamupyörä", - "title": { - "render": "Haamupyörä" - } - }, - "shops": { - "tagRenderings": { - "shops-shop": { - "mappings": { - "5": { - "then": "Autokorjaamo" - } + "title": { + "mappings": { + "0": { + "then": "Taideteos {name}" + } + }, + "render": "Taideteos" + } + }, + "bench": { + "name": "Penkit", + "presets": { + "0": { + "title": "penkki" + } + }, + "tagRenderings": { + "bench-backrest": { + "mappings": { + "0": { + "then": "Selkänoja: kyllä" + }, + "1": { + "then": "Selkänoja: ei" + } + } + }, + "bench-colour": { + "mappings": { + "0": { + "then": "Väri: ruskea" + }, + "1": { + "then": "Väri: vihreä" + }, + "2": { + "then": "Väri: harmaa" + }, + "3": { + "then": "Väri: valkoinen" + }, + "4": { + "then": "Väri: punainen" + }, + "5": { + "then": "Väri: musta" + }, + "6": { + "then": "Väri: sininen" + }, + "7": { + "then": "Väri: keltainen" + } + }, + "render": "Väri: {colour}" + }, + "bench-material": { + "mappings": { + "0": { + "then": "Materiaali: puu" + }, + "2": { + "then": "Materiaali: kivi" + }, + "3": { + "then": "Materiaali: betoni" + }, + "4": { + "then": "Materiaali: muovi" + }, + "5": { + "then": "Materiaali: teräs" + } + }, + "render": "Materiaali: {material}" + } + }, + "title": { + "render": "Penkki" + } + }, + "bench_at_pt": { + "tagRenderings": { + "bench_at_pt-name": { + "render": "{name}" + } + }, + "title": { + "render": "Penkki" + } + }, + "bike_parking": { + "tagRenderings": { + "Access": { + "render": "{access}" + } + } + }, + "bike_repair_station": { + "presets": { + "0": { + "title": "pyöräpumppu" + } + } + }, + "ghost_bike": { + "name": "Haamupyörä", + "presets": { + "0": { + "title": "Haamupyörä" + } + }, + "title": { + "render": "Haamupyörä" + } + }, + "shops": { + "tagRenderings": { + "shops-shop": { + "mappings": { + "5": { + "then": "Autokorjaamo" + } + } + } } - } } - } } \ No newline at end of file diff --git a/langs/layers/fr.json b/langs/layers/fr.json index 1f6ea34ce1..b4abbdfb95 100644 --- a/langs/layers/fr.json +++ b/langs/layers/fr.json @@ -1,1938 +1,2385 @@ { - "artwork": { - "description": "Diverses œuvres d'art", - "name": "Œuvres d'art", - "presets": { - "0": { - "title": "Œuvre d'art" - } - }, - "tagRenderings": { - "artwork-artist_name": { - "question": "Quel artiste a créé cette œuvre ?", - "render": "Créé par {artist_name}" - }, - "artwork-artwork_type": { - "mappings": { - "0": { - "then": "Architecture" - }, - "1": { - "then": "Peinture murale" - }, - "2": { - "then": "Peinture" - }, - "3": { - "then": "Sculpture" - }, - "4": { - "then": "Statue" - }, - "5": { - "then": "Buste" - }, - "6": { - "then": "Rocher" - }, - "7": { - "then": "Installation" - }, - "8": { - "then": "Graffiti" - }, - "9": { - "then": "Relief" - }, - "10": { - "then": "Azulejo (faïence latine)" - }, - "11": { - "then": "Carrelage" - } + "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}" + } }, - "question": "Quel est le type de cette œuvre d'art?", - "render": "Type d'œuvre : {artwork_type}" - }, - "artwork-website": { - "question": "Existe-t-il un site web où trouver plus d'informations sur cette œuvre d'art ?", - "render": "Plus d'info sûr ce site web" - }, - "artwork-wikidata": { - "question": "Quelle entrée Wikidata correspond à cette œuvre d'art ?", - "render": "Correspond à {wikidata}" - } - }, - "title": { - "mappings": { - "0": { - "then": "Œuvre d'art {name}" + "title": { + "render": "Adresse connue" } - }, - "render": "Œuvre d'art" - } - }, - "bench": { - "name": "Bancs", - "presets": { - "0": { - "title": "banc" - } }, - "tagRenderings": { - "bench-backrest": { - "mappings": { - "0": { - "then": "Dossier : Oui" - }, - "1": { - "then": "Dossier : Non" - } + "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", + "presets": { + "0": { + "description": "Ajouter une station d’ambulances à la carte", + "title": "Station d’ambulances" + } }, - "question": "Ce banc dispose-t-il d'un dossier ?" - }, - "bench-colour": { - "mappings": { - "0": { - "then": "Couleur : marron" - }, - "1": { - "then": "Couleur : verte" - }, - "2": { - "then": "Couleur : gris" - }, - "3": { - "then": "Couleur : blanc" - }, - "4": { - "then": "Couleur : rouge" - }, - "5": { - "then": "Couleur : noire" - }, - "6": { - "then": "Couleur : bleu" - }, - "7": { - "then": "Couleur : jaune" - } + "tagRenderings": { + "ambulance-agency": { + "question": "Quel est l’exploitant de la station ?", + "render": "Cette station est opérée par {operator}." + }, + "ambulance-name": { + "question": "Quel est le nom de cette station ?", + "render": "Cette station s’appelle {name}." + }, + "ambulance-operator-type": { + "mappings": { + "0": { + "then": "La station est opérée par le gouvernement." + }, + "1": { + "then": "La station est opérée par une organisation informelle." + }, + "2": { + "then": "La station est opérée par un groupe officiel de bénévoles." + }, + "3": { + "then": "La station est opérée par un groupe privé." + } + }, + "question": "Quel est le type d’exploitant ?", + "render": "L’exploitant est de type {operator:type}." + }, + "ambulance-place": { + "question": "Dans quelle localité la station est-elle située ?", + "render": "La station fait partie de {addr:place}." + }, + "ambulance-street": { + "question": " Quel est le nom de la rue où la station se situe ?", + "render": "La station fait partie de {addr:street}." + } }, - "question": "Quelle est la couleur de ce banc ?", - "render": "Couleur : {colour}" - }, - "bench-direction": { - "question": "Dans quelle direction regardez-vous quand vous êtes assis sur le banc ?", - "render": "Assis sur le banc, on regarde vers {direction}°." - }, - "bench-material": { - "mappings": { - "0": { - "then": "Matériau : bois" - }, - "1": { - "then": "Matériau : métal" - }, - "2": { - "then": "Matériau : pierre" - }, - "3": { - "then": "Matériau : béton" - }, - "4": { - "then": "Matériau : plastique" - }, - "5": { - "then": "Matériau : acier" - } - }, - "question": "De quel matériau ce banc est-il fait ?", - "render": "Matériau : {material}" - }, - "bench-seats": { - "question": "De combien de places dispose ce banc ?", - "render": "{seats} places" - }, - "bench-survey:date": { - "question": "Quand ce banc a-t-il été contrôlé pour la dernière fois ?", - "render": "Ce banc a été contrôlé pour la dernière fois le {survey:date}" - } - }, - "title": { - "render": "Banc" - } - }, - "bench_at_pt": { - "name": "Bancs des arrêts de transport en commun", - "tagRenderings": { - "bench_at_pt-bench_type": { - "mappings": { - "1": { - "then": "Banc assis debout" - } + "title": { + "render": "Station d’ambulances" } - }, - "bench_at_pt-name": { - "render": "{name}" - } }, - "title": { - "mappings": { - "0": { - "then": "Banc d'un arrêt de transport en commun" + "artwork": { + "description": "Diverses œuvres d'art", + "name": "Œuvres d'art", + "presets": { + "0": { + "title": "Œuvre d'art" + } }, - "1": { - "then": "Banc dans un abri" + "tagRenderings": { + "artwork-artist_name": { + "question": "Quel artiste a créé cette œuvre ?", + "render": "Créé par {artist_name}" + }, + "artwork-artwork_type": { + "mappings": { + "0": { + "then": "Architecture" + }, + "1": { + "then": "Peinture murale" + }, + "2": { + "then": "Peinture" + }, + "3": { + "then": "Sculpture" + }, + "4": { + "then": "Statue" + }, + "5": { + "then": "Buste" + }, + "6": { + "then": "Rocher" + }, + "7": { + "then": "Installation" + }, + "8": { + "then": "Graffiti" + }, + "9": { + "then": "Relief" + }, + "10": { + "then": "Azulejo (faïence latine)" + }, + "11": { + "then": "Carrelage" + } + }, + "question": "Quel est le type de cette œuvre d'art ?", + "render": "Type d'œuvre : {artwork_type}" + }, + "artwork-website": { + "question": "Existe-t-il un site web où trouver plus d'informations sur cette œuvre d'art ?", + "render": "Plus d'info sûr ce site web" + }, + "artwork-wikidata": { + "question": "Quelle entrée Wikidata correspond à cette œuvre d'art ?", + "render": "Correspond à {wikidata}" + } + }, + "title": { + "mappings": { + "0": { + "then": "Œuvre d'art {name}" + } + }, + "render": "Œuvre d'art" } - }, - "render": "Banc" - } - }, - "bicycle_library": { - "description": "Un lieu où des vélos peuvent être empruntés pour un temps plus long", - "name": "Vélothèque", - "presets": { - "0": { - "description": "Une vélothèque a une flotte de vélos qui peuvent être empruntés", - "title": "Vélothèque" - } }, - "tagRenderings": { - "bicycle-library-target-group": { - "mappings": { - "0": { - "then": "Vélos pour enfants disponibles" - }, - "1": { - "then": "Vélos pour adultes disponibles" - }, - "2": { - "then": "Vélos pour personnes handicapées disponibles" - } + "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" + } }, - "question": "Qui peut emprunter des vélos ici ?" - }, - "bicycle_library-charge": { - "mappings": { - "0": { - "then": "L'emprunt de vélo est gratuit" - }, - "1": { - "then": "Emprunter un vélo coûte 20 €/an et 20 € de garantie" - } + "tagRenderings": { + "Bollard type": { + "mappings": { + "0": { + "then": "Bollard amovible" + }, + "1": { + "then": "Bollard fixe" + }, + "2": { + "then": "Bollard qui peut être couché" + }, + "3": { + "then": "Bollard flexible, généralement en plastique" + }, + "4": { + "then": "Bollard rétractable" + } + }, + "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" + }, + "bicycle=yes/no": { + "mappings": { + "0": { + "then": "Un cycliste peut franchir ceci." + }, + "1": { + "then": "Un cycliste ne peut pas franchir ceci." + } + } + } }, - "question": "Combien coûte l'emprunt d'un vélo ?", - "render": "Emprunter un vélo coûte {charge}" - }, - "bicycle_library-name": { - "question": "Quel est le nom de cette vélothèque ?", - "render": "Cette vélothèque s'appelle {name}" - } - }, - "title": { - "render": "Vélothèque" - } - }, - "bicycle_tube_vending_machine": { - "name": "Distributeur automatique de chambre à air de vélo", - "presets": { - "0": { - "title": "Distributeur automatique de chambre à air de vélo" - } - }, - "tagRenderings": { - "Still in use?": { - "mappings": { - "0": { - "then": "Le distributeur automatique fonctionne" - }, - "1": { - "then": "Le distributeur automatique est en panne" - }, - "2": { - "then": "Le distributeur automatique est fermé" - } - }, - "question": "Cette machine est-elle encore opérationelle ?", - "render": "L'état opérationnel est {operational_status}" - } - }, - "title": { - "render": "Distributeur automatique de chambre à air de vélo" - } - }, - "bike_cafe": { - "name": "Café vélo", - "presets": { - "0": { - "title": "Café Vélo" - } - }, - "tagRenderings": { - "bike_cafe-bike-pump": { - "mappings": { - "0": { - "then": "Ce Café vélo offre une pompe en libre accès" - }, - "1": { - "then": "Ce Café vélo n'offre pas de pompe en libre accès" - } - }, - "question": "Est-ce que ce Café vélo propose une pompe en libre accès ?" - }, - "bike_cafe-email": { - "question": "Quelle est l'adresse électronique de {name} ?" - }, - "bike_cafe-name": { - "question": "Quel est le nom de ce Café vélo ?", - "render": "Ce Café vélo s'appelle {name}" - }, - "bike_cafe-opening_hours": { - "question": "Quand ce Café vélo est-t-il ouvert ?" - }, - "bike_cafe-phone": { - "question": "Quel est le numéro de téléphone de {name} ?" - }, - "bike_cafe-repair-service": { - "mappings": { - "0": { - "then": "Ce Café vélo répare les vélos" - }, - "1": { - "then": "Ce Café vélo ne répare pas les vélos" - } - }, - "question": "Est-ce que ce Café vélo répare les vélos ?" - }, - "bike_cafe-repair-tools": { - "mappings": { - "0": { - "then": "Ce Café vélo propose des outils pour réparer son vélo soi-même" - }, - "1": { - "then": "Ce Café vélo ne propose pas d'outils pour réparer son vélo soi-même" - } - }, - "question": "Est-ce qu'il y a des outils pour réparer soi-même son vélo ?" - }, - "bike_cafe-website": { - "question": "Quel est le site web de {name} ?" - } - }, - "title": { - "mappings": { - "0": { - "then": "Café Vélo {name}" + "title": { + "mappings": { + "0": { + "then": "Bollard" + }, + "1": { + "then": "Barrière cyclable" + } + }, + "render": "Barrière" } - }, - "render": "Café Vélo" - } - }, - "bike_cleaning": { - "name": "Service de nettoyage de vélo", - "presets": { - "0": { - "title": "Service de nettoyage de vélo" - } }, - "title": { - "mappings": { - "0": { - "then": "Service de nettoyage de vélo {name}" + "bench": { + "name": "Bancs", + "presets": { + "0": { + "title": "banc" + } + }, + "tagRenderings": { + "bench-backrest": { + "mappings": { + "0": { + "then": "Dossier : Oui" + }, + "1": { + "then": "Dossier : Non" + } + }, + "question": "Ce banc dispose-t-il d'un dossier ?" + }, + "bench-colour": { + "mappings": { + "0": { + "then": "Couleur : marron" + }, + "1": { + "then": "Couleur : verte" + }, + "2": { + "then": "Couleur : gris" + }, + "3": { + "then": "Couleur : blanc" + }, + "4": { + "then": "Couleur : rouge" + }, + "5": { + "then": "Couleur : noire" + }, + "6": { + "then": "Couleur : bleu" + }, + "7": { + "then": "Couleur : jaune" + } + }, + "question": "Quelle est la couleur de ce banc ?", + "render": "Couleur : {colour}" + }, + "bench-direction": { + "question": "Dans quelle direction regardez-vous quand vous êtes assis sur le banc ?", + "render": "Assis sur le banc, on regarde vers {direction}°." + }, + "bench-material": { + "mappings": { + "0": { + "then": "Matériau : bois" + }, + "1": { + "then": "Matériau : métal" + }, + "2": { + "then": "Matériau : pierre" + }, + "3": { + "then": "Matériau : béton" + }, + "4": { + "then": "Matériau : plastique" + }, + "5": { + "then": "Matériau : acier" + } + }, + "question": "De quel matériau ce banc est-il fait ?", + "render": "Matériau : {material}" + }, + "bench-seats": { + "question": "De combien de places dispose ce banc ?", + "render": "{seats} places" + }, + "bench-survey:date": { + "question": "Quand ce banc a-t-il été contrôlé pour la dernière fois ?", + "render": "Ce banc a été contrôlé pour la dernière fois le {survey:date}" + } + }, + "title": { + "render": "Banc" } - }, - "render": "Service de nettoyage de vélo" - } - }, - "bike_parking": { - "name": "Parking à vélo", - "presets": { - "0": { - "title": "Parking à vélo" - } }, - "tagRenderings": { - "Access": { - "mappings": { - "0": { - "then": "Accessible publiquement" - }, - "1": { - "then": "Accès destiné principalement aux visiteurs d'un lieu" - }, - "2": { - "then": "Accès limité aux membres d'une école, entreprise ou organisation" - } + "bench_at_pt": { + "name": "Bancs des arrêts de transport en commun", + "tagRenderings": { + "bench_at_pt-bench_type": { + "mappings": { + "0": { + "then": "Il y a un banc normal pour s'asseoir ici" + }, + "1": { + "then": "Banc assis debout" + }, + "2": { + "then": "Il n'y a pas de banc ici" + } + } + }, + "bench_at_pt-name": { + "render": "{name}" + } }, - "question": "Qui peut utiliser ce parking à vélo ?", - "render": "{access}" - }, - "Bicycle parking type": { - "mappings": { - "0": { - "then": "Arceaux " - }, - "1": { - "then": "Pinces-roues " - }, - "2": { - "then": "Support guidon " - }, - "3": { - "then": "Râtelier " - }, - "4": { - "then": "Superposé " - }, - "5": { - "then": "Abri " - }, - "6": { - "then": "Potelet " - }, - "7": { - "then": "Zone au sol qui est marquée pour le stationnement des vélos" - } - }, - "question": "Quel type de parking à vélos est-ce ?", - "render": "Ceci est un parking à vélo de type {bicycle_parking}" - }, - "Capacity": { - "question": "Combien de vélos entrent dans ce parking à vélos (y compris les éventuels vélos de transport) ?", - "render": "Place pour {capacity} vélos" - }, - "Cargo bike capacity?": { - "question": "Combien de vélos de transport entrent dans ce parking à vélos ?", - "render": "Ce parking a de la place pour {capacity:cargo_bike} vélos de transport" - }, - "Cargo bike spaces?": { - "mappings": { - "0": { - "then": "Ce parking a de la place pour les vélos cargo" - }, - "1": { - "then": "Ce parking a des emplacements (officiellement) destinés aux vélos cargo." - }, - "2": { - "then": "Il est interdit de garer des vélos cargo" - } - }, - "question": "Est-ce que ce parking à vélo a des emplacements pour des vélos cargo ?" - }, - "Is covered?": { - "mappings": { - "0": { - "then": "Ce parking est couvert (il a un toit)" - }, - "1": { - "then": "Ce parking n'est pas couvert" - } - }, - "question": "Ce parking est-il couvert ? Sélectionnez aussi \"couvert\" pour les parkings en intérieur." - }, - "Underground?": { - "mappings": { - "0": { - "then": "Parking souterrain" - }, - "1": { - "then": "Parking en surface" - }, - "2": { - "then": "Parking sur un toit" - }, - "3": { - "then": "Parking en surface" - }, - "4": { - "then": "Parking sur un toit" - } - }, - "question": "Quelle est la position relative de ce parking à vélo ?" - } - }, - "title": { - "render": "Parking à vélo" - } - }, - "bike_repair_station": { - "name": "Station velo (réparation, pompe à vélo)", - "presets": { - "0": { - "description": "Un dispositif pour gonfler vos pneus sur un emplacement fixe dans l'espace public.

Exemples de pompes à vélo

", - "title": "Pompe à vélo" - }, - "1": { - "description": "Un dispositif avec des outils pour réparer votre vélo combiné à une pompe a un emplacement fixe. Les outils sont souvent attachés par une chaîne pour empêcher le vol.

Exemple

", - "title": "Point de réparation vélo avec pompe" - }, - "2": { - "title": "Point de réparation vélo sans pompe" - } - }, - "tagRenderings": { - "Operational status": { - "mappings": { - "0": { - "then": "La pompe à vélo est cassée" - }, - "1": { - "then": "La pompe est opérationnelle" - } - }, - "question": "La pompe à vélo fonctionne-t-elle toujours ?" - }, - "bike_repair_station-available-services": { - "mappings": { - "0": { - "then": "Il y a seulement une pompe" - }, - "1": { - "then": "Il y a seulement des outils (tournevis, pinces...)" - }, - "2": { - "then": "Il y a des outils et une pompe" - } - }, - "question": "Quels services sont valables à cette station vélo ?" - }, - "bike_repair_station-bike-chain-tool": { - "mappings": { - "0": { - "then": "Il y a un outil pour réparer la chaine" - }, - "1": { - "then": "Il n'y a pas d'outil pour réparer la chaine" - } - }, - "question": "Est-ce que cette station vélo a un outil specifique pour réparer la chaîne du vélo ?" - }, - "bike_repair_station-bike-stand": { - "mappings": { - "0": { - "then": "Il y a un crochet ou une accroche" - }, - "1": { - "then": "Il n'y pas de crochet ou d'accroche" - } - }, - "question": "Est-ce que cette station vélo à un crochet pour suspendre son vélo ou une accroche pour l'élevé ?" - }, - "bike_repair_station-electrical_pump": { - "mappings": { - "0": { - "then": "Pompe manuelle" - }, - "1": { - "then": "Pompe électrique" - } - }, - "question": "Est-ce que cette pompe est électrique ?" - }, - "bike_repair_station-manometer": { - "mappings": { - "0": { - "then": "Il y a un manomètre" - }, - "1": { - "then": "Il n'y a pas de manomètre" - }, - "2": { - "then": "Il y a un manomètre mais il est cassé" - } - }, - "question": "Est-ce que la pompe à un manomètre integré ?" - }, - "bike_repair_station-opening_hours": { - "mappings": { - "0": { - "then": "Ouvert en permanence" - }, - "1": { - "then": "Ouvert en permanence" - } - }, - "question": "Quand ce point de réparation de vélo est-il ouvert ?" - }, - "bike_repair_station-operator": { - "question": "Qui maintient cette pompe à vélo ?", - "render": "Mantenue par {operator}" - }, - "bike_repair_station-valves": { - "mappings": { - "0": { - "then": "Sclaverand (aussi appelé Presta)" - }, - "1": { - "then": "Dunlop" - }, - "2": { - "then": "Schrader (les valves de voitures)" - } - }, - "question": "Quelles valves sont compatibles ?", - "render": "Cette pompe est compatible avec les valves suivantes : {valves}" - } - }, - "title": { - "mappings": { - "0": { - "then": "Point de réparation velo" - }, - "1": { - "then": "Point de réparation" - }, - "2": { - "then": "Pompe cassée" - }, - "3": { - "then": "Pompe de vélo {name}" - }, - "4": { - "then": "Pompe de vélo" + "title": { + "mappings": { + "0": { + "then": "Banc d'un arrêt de transport en commun" + }, + "1": { + "then": "Banc dans un abri" + } + }, + "render": "Banc" } - }, - "render": "Point station velo avec pompe" - } - }, - "bike_shop": { - "description": "Un magasin vendant spécifiquement des vélos ou des objets en lien", - "name": "Magasin ou réparateur de vélo", - "presets": { - "0": { - "title": "Magasin et réparateur de vélo" - } }, - "tagRenderings": { - "bike_repair_bike-pump-service": { - "mappings": { - "0": { - "then": "Ce magasin offre une pompe en acces libre" - }, - "1": { - "then": "Ce magasin n'offre pas de pompe en libre accès" - }, - "2": { - "then": "Il y a une pompe à vélo, c'est indiqué comme un point séparé " - } + "bicycle_library": { + "description": "Un lieu où des vélos peuvent être empruntés pour un temps plus long", + "name": "Vélothèque", + "presets": { + "0": { + "description": "Une vélothèque a une flotte de vélos qui peuvent être empruntés", + "title": "Vélothèque" + } }, - "question": "Est-ce que ce magasin offre une pompe en accès libre ?" - }, - "bike_repair_bike-wash": { - "mappings": { - "0": { - "then": "Ce magasin lave les vélos" - }, - "1": { - "then": "Ce magasin a une installation pour laver soi même des vélos" - }, - "2": { - "then": "Ce magasin ne fait pas le nettoyage de vélo" - } + "tagRenderings": { + "bicycle-library-target-group": { + "mappings": { + "0": { + "then": "Vélos pour enfants disponibles" + }, + "1": { + "then": "Vélos pour adultes disponibles" + }, + "2": { + "then": "Vélos pour personnes handicapées disponibles" + } + }, + "question": "Qui peut emprunter des vélos ici ?" + }, + "bicycle_library-charge": { + "mappings": { + "0": { + "then": "L'emprunt de vélo est gratuit" + }, + "1": { + "then": "Emprunter un vélo coûte 20 €/an et 20 € de garantie" + } + }, + "question": "Combien coûte l'emprunt d'un vélo ?", + "render": "Emprunter un vélo coûte {charge}" + }, + "bicycle_library-name": { + "question": "Quel est le nom de cette vélothèque ?", + "render": "Cette vélothèque s'appelle {name}" + } }, - "question": "Lave-t-on les vélos ici ?" - }, - "bike_repair_rents-bikes": { - "mappings": { - "0": { - "then": "Ce magasin loue des vélos" - }, - "1": { - "then": "Ce magasin ne loue pas de vélos" - } - }, - "question": "Est-ce ce magasin loue des vélos ?" - }, - "bike_repair_repairs-bikes": { - "mappings": { - "0": { - "then": "Ce magasin répare des vélos" - }, - "1": { - "then": "Ce magasin ne répare pas les vélos" - }, - "2": { - "then": "Ce magasin ne répare seulement les vélos achetés là-bas" - }, - "3": { - "then": "Ce magasin ne répare seulement des marques spécifiques" - } - }, - "question": "Est-ce que ce magasin répare des vélos ?" - }, - "bike_repair_second-hand-bikes": { - "mappings": { - "0": { - "then": "Ce magasin vend des vélos d'occasion" - }, - "1": { - "then": "Ce magasin ne vend pas de vélos d'occasion" - }, - "2": { - "then": "Ce magasin vend seulement des vélos d'occasion" - } - }, - "question": "Est-ce ce magasin vend des vélos d'occasion ?" - }, - "bike_repair_sells-bikes": { - "mappings": { - "0": { - "then": "Ce magasin vend des vélos" - }, - "1": { - "then": "Ce magasin ne vend pas de vélo" - } - }, - "question": "Est-ce que ce magasin vend des vélos ?" - }, - "bike_repair_tools-service": { - "mappings": { - "0": { - "then": "Ce magasin offre des outils pour réparer son vélo soi-même" - }, - "1": { - "then": "Ce magasin n'offre pas des outils pour réparer son vélo soi-même" - }, - "2": { - "then": "Des outils d'auto-réparation sont disponibles uniquement si vous avez acheté ou loué le vélo dans ce magasin" - } - }, - "question": "Est-ce qu'il y a des outils pour réparer son vélo dans ce magasin ?" - }, - "bike_shop-email": { - "question": "Quelle est l'adresse électronique de {name} ?" - }, - "bike_shop-is-bicycle_shop": { - "render": "Ce magasin est spécialisé dans la vente de {shop} et a des activités liées au vélo" - }, - "bike_shop-name": { - "question": "Quel est le nom du magasin de vélos ?", - "render": "Ce magasin s'appelle {name}" - }, - "bike_shop-phone": { - "question": "Quel est le numéro de téléphone de {name} ?" - }, - "bike_shop-website": { - "question": "Quel est le site web de {name} ?" - } - }, - "title": { - "mappings": { - "0": { - "then": "Magasin de sport {name}" - }, - "2": { - "then": "Location de vélo {name}" - }, - "3": { - "then": "Réparateur de vélo {name}" - }, - "4": { - "then": "Magasin de vélo {name}" - }, - "5": { - "then": "Magasin ou réparateur de vélo {name}" + "title": { + "render": "Vélothèque" } - }, - "render": "Magasin ou réparateur de vélo" - } - }, - "bike_themed_object": { - "name": "Objet cycliste", - "title": { - "mappings": { - "1": { - "then": "Piste cyclable" + }, + "bicycle_tube_vending_machine": { + "name": "Distributeur automatique de chambre à air de vélo", + "presets": { + "0": { + "title": "Distributeur automatique de chambre à air de vélo" + } + }, + "tagRenderings": { + "Still in use?": { + "mappings": { + "0": { + "then": "Le distributeur automatique fonctionne" + }, + "1": { + "then": "Le distributeur automatique est en panne" + }, + "2": { + "then": "Le distributeur automatique est fermé" + } + }, + "question": "Cette machine est-elle encore opérationelle ?", + "render": "L'état opérationnel est {operational_status}" + } + }, + "title": { + "render": "Distributeur automatique de chambre à air de vélo" } - }, - "render": "Objet cycliste" - } - }, - "defibrillator": { - "name": "Défibrillateurs", - "presets": { - "0": { - "title": "Défibrillateur" - } }, - "tagRenderings": { - "defibrillator-access": { - "mappings": { - "0": { - "then": "Librement accessible" - }, - "1": { - "then": "Librement accessible" - }, - "2": { - "then": "Réservé aux clients du lieu" - }, - "3": { - "then": "Non accessible au public (par exemple réservé au personnel, au propriétaire, ...)" - }, - "4": { - "then": "Pas accessible, peut-être uniquement à usage professionnel" - } + "bike_cafe": { + "name": "Café vélo", + "presets": { + "0": { + "title": "Café Vélo" + } }, - "question": "Ce défibrillateur est-il librement accessible ?", - "render": "{access} accessible" - }, - "defibrillator-defibrillator": { - "mappings": { - "0": { - "then": "Il n'y a pas d'information sur le type de dispositif" - }, - "1": { - "then": "C'est un défibrillateur manuel pour professionnel" - }, - "2": { - "then": "C'est un défibrillateur automatique manuel" - } + "tagRenderings": { + "bike_cafe-bike-pump": { + "mappings": { + "0": { + "then": "Ce Café vélo offre une pompe en libre accès" + }, + "1": { + "then": "Ce Café vélo n'offre pas de pompe en libre accès" + } + }, + "question": "Est-ce que ce Café vélo propose une pompe en libre accès ?" + }, + "bike_cafe-email": { + "question": "Quelle est l'adresse électronique de {name} ?" + }, + "bike_cafe-name": { + "question": "Quel est le nom de ce Café vélo ?", + "render": "Ce Café vélo s'appelle {name}" + }, + "bike_cafe-opening_hours": { + "question": "Quand ce Café vélo est-t-il ouvert ?" + }, + "bike_cafe-phone": { + "question": "Quel est le numéro de téléphone de {name} ?" + }, + "bike_cafe-repair-service": { + "mappings": { + "0": { + "then": "Ce Café vélo répare les vélos" + }, + "1": { + "then": "Ce Café vélo ne répare pas les vélos" + } + }, + "question": "Est-ce que ce Café vélo répare les vélos ?" + }, + "bike_cafe-repair-tools": { + "mappings": { + "0": { + "then": "Ce Café vélo propose des outils pour réparer son vélo soi-même" + }, + "1": { + "then": "Ce Café vélo ne propose pas d'outils pour réparer son vélo soi-même" + } + }, + "question": "Est-ce qu'il y a des outils pour réparer soi-même son vélo ?" + }, + "bike_cafe-website": { + "question": "Quel est le site web de {name} ?" + } }, - "question": "Est-ce un défibrillateur automatique normal ou un défibrillateur manuel à usage professionnel uniquement ?" - }, - "defibrillator-defibrillator:location": { - "question": "Veuillez indiquez plus précisément où se situe le défibrillateur (dans la langue local)", - "render": "Informations supplémentaires à propos de l'emplacement (dans la langue locale) :
{defibrillator:location}" - }, - "defibrillator-defibrillator:location:en": { - "question": "Veuillez indiquez plus précisément où se situe le défibrillateur (en englais)", - "render": "Informations supplémentaires à propos de l'emplacement (en anglais) :
{defibrillator:location:en}" - }, - "defibrillator-defibrillator:location:fr": { - "question": "Veuillez indiquez plus précisément où se situe le défibrillateur (en français)", - "render": "Informations supplémentaires à propos de l'emplacement (en Français) :
{defibrillator:location:fr}" - }, - "defibrillator-description": { - "question": "Y a-t-il des informations utiles pour les utilisateurs que vous n'avez pas pu décrire ci-dessus ? (laisser vide sinon)", - "render": "Informations supplémentaires : {description}" - }, - "defibrillator-email": { - "question": "Quelle est l'adresse électronique pour des questions à propos de ce défibrillateur ?", - "render": "Adresse électronique pour des questions à propos de ce défibrillateur : {email}" - }, - "defibrillator-fixme": { - "question": "Y a-t-il quelque chose qui ne va pas dans la manière dont ça a été cartographié, et que vous n'avez pas pu réparer ici ? (laisser une note pour les experts d'OpenStreetMap)", - "render": "Informations supplémentaires pour les experts d'OpenStreetMap : {fixme}" - }, - "defibrillator-indoors": { - "mappings": { - "0": { - "then": "Ce défibrillateur est en intérieur (dans un batiment)" - }, - "1": { - "then": "Ce défibrillateur est situé en extérieur" - } - }, - "question": "Ce défibrillateur est-il disposé en intérieur ?" - }, - "defibrillator-level": { - "mappings": { - "0": { - "then": "Ce défibrillateur est au rez-de-chaussée" - }, - "1": { - "then": "Ce défibrillateur est au premier étage" - } - }, - "question": "À quel étage est situé ce défibrillateur ?", - "render": "Ce défibrillateur est à l'étage {level}" - }, - "defibrillator-opening_hours": { - "mappings": { - "0": { - "then": "Ouvert 24/7 (jours feriés inclus)" - } - }, - "question": "À quels horaires ce défibrillateur est-il accessible ?", - "render": "{opening_hours_table(opening_hours)}" - }, - "defibrillator-phone": { - "question": "Quel est le numéro de téléphone pour questions sur le défibrillateur ?", - "render": "Numéro de téléphone pour questions sur le défibrillateur : {phone}" - }, - "defibrillator-ref": { - "question": "Quel est le numéro d'identification officiel de ce dispositif ? (si il est visible sur le dispositif)", - "render": "Numéro d'identification officiel de ce dispositif : {ref}" - }, - "defibrillator-survey:date": { - "mappings": { - "0": { - "then": "Vérifié aujourd'hui !" - } - }, - "question": "Quand le défibrillateur a-t-il été vérifié pour la dernière fois ?", - "render": "Ce défibrillateur a été vérifié pour la dernière fois le {survey:date}" - } - }, - "title": { - "render": "Défibrillateur" - } - }, - "direction": { - "description": "Cette couche visualise les directions", - "name": "Visualisation de la direction" - }, - "drinking_water": { - "name": "Eau potable", - "presets": { - "0": { - "title": "eau potable" - } - }, - "tagRenderings": { - "Bottle refill": { - "mappings": { - "0": { - "then": "Il est facile de remplir les bouteilles d'eau" - }, - "1": { - "then": "Les bouteilles d'eau peuvent ne pas passer" - } - }, - "question": "Est-il facile de remplir des bouteilles d'eau ?" - }, - "Still in use?": { - "mappings": { - "0": { - "then": "Cette fontaine fonctionne" - }, - "1": { - "then": "Cette fontaine est cassée" - }, - "2": { - "then": "Cette fontaine est fermée" - } - }, - "question": "Ce point d'eau potable est-il toujours opérationnel ?", - "render": "L'état opérationnel est {operational_status}" - }, - "render-closest-drinking-water": { - "render": "Une autre source d’eau potable est à {_closest_other_drinking_water_distance} mètres a>" - } - }, - "title": { - "render": "Eau potable" - } - }, - "food": { - "tagRenderings": { - "friture-oil": { - "mappings": { - "0": { - "then": "Huile végétale" - }, - "1": { - "then": "Graisse animale" - } - }, - "question": "Cette friteuse fonctionne-t-elle avec de la graisse animale ou végétale ?" - }, - "friture-take-your-container": { - "mappings": { - "0": { - "then": "Vous pouvez apporter vos contenants pour votre commande, limitant l’usage de matériaux à usage unique et les déchets" - }, - "1": { - "then": "Apporter ses propres contenants n’est pas permis" - }, - "2": { - "then": "Il est obligatoire d’apporter ses propres contenants" - } - }, - "question": "Est-il proposé d’utiliser ses propres contenants pour sa commande ?
" - }, - "friture-vegan": { - "mappings": { - "0": { - "then": "Des collations végétaliens sont disponibles" - }, - "1": { - "then": "Quelques snacks végétaliens seulement" - }, - "2": { - "then": "Pas d'en-cas végétaliens disponibles" - } - }, - "question": "Cette friterie est-elle équipée de snacks végétaliens ?" - }, - "friture-vegetarian": { - "mappings": { - "0": { - "then": "Des collations végétariens sont disponibles" - }, - "1": { - "then": "Quelques snacks végétariens seulement" - }, - "2": { - "then": "Pas d'en-cas végétariens disponibles" - } - }, - "question": "Cette friterie est-elle équipée de snacks végétariens ?" - } - } - }, - "ghost_bike": { - "name": "Vélos fantômes", - "presets": { - "0": { - "title": "Vélo fantôme" - } - }, - "tagRenderings": { - "ghost-bike-explanation": { - "render": "Un vélo fantôme est un monument commémoratif pour un cycliste décédé dans un accident de la route, sous la forme d'un vélo blanc placé en permanence près du lieu de l'accident." - }, - "ghost_bike-inscription": { - "question": "Quelle est l'inscription sur ce vélo fantôme ?", - "render": "{inscription}" - }, - "ghost_bike-name": { - "mappings": { - "0": { - "then": "Aucun nom n'est marqué sur le vélo" - } - }, - "question": "À qui est dédié ce vélo fantôme ?
Veuillez respecter la vie privée – ajoutez le nom seulement s'il est largement publié ou marqué sur le vélo. Choisissez de ne pas indiquer le nom de famille
", - "render": "En souvenir de {name}" - }, - "ghost_bike-source": { - "question": "Sur quelle page web peut-on trouver plus d'informations sur le Vélo fantôme ou l'accident ?", - "render": "
Plus d'informations sont disponibles" - }, - "ghost_bike-start_date": { - "question": "Quand ce vélo fantôme a-t-il été installée ?", - "render": "Placé le {start_date}" - } - }, - "title": { - "mappings": { - "0": { - "then": "Vélo fantôme en souvenir de {name}" + "title": { + "mappings": { + "0": { + "then": "Café Vélo {name}" + } + }, + "render": "Café Vélo" } - }, - "render": "Vélo fantôme" - } - }, - "information_board": { - "name": "Panneaux d'informations", - "presets": { - "0": { - "title": "panneau d'informations" - } }, - "title": { - "render": "Panneau d'informations" - } - }, - "map": { - "description": "Une carte, destinée aux touristes, installée en permanence dans l'espace public", - "name": "Cartes", - "presets": { - "0": { - "description": "Ajouter une carte manquante", - "title": "Carte" - } - }, - "tagRenderings": { - "map-attribution": { - "mappings": { - "0": { - "then": "L’attribution est clairement inscrite ainsi que la licence ODBL" - }, - "1": { - "then": "L’attribution est clairement inscrite mais la licence est absente" - }, - "2": { - "then": "OpenStreetMap n’est pas mentionné, un sticker OpenStreetMap a été collé" - }, - "3": { - "then": "Il n'y a aucune attribution" - }, - "4": { - "then": "Il n'y a aucune attribution" - } + "bike_cleaning": { + "name": "Service de nettoyage de vélo", + "presets": { + "0": { + "title": "Service de nettoyage de vélo" + } }, - "question": "L’attribution à OpenStreetMap est elle-présente ?" - }, - "map-map_source": { - "mappings": { - "0": { - "then": "Cette carte est basée sur OpenStreetMap" - } - }, - "question": "Sur quelles données cette carte est-elle basée ?", - "render": "Cette carte est basée sur {map_source}" - } - }, - "title": { - "render": "Carte" - } - }, - "nature_reserve": { - "tagRenderings": { - "Curator": { - "question": "Qui est en charge de la conservation de la réserve ?
À ne remplir seulement que si le nom est diffusé au public", - "render": "{curator} est en charge de la conservation de la réserve" - }, - "Dogs?": { - "mappings": { - "0": { - "then": "Les chiens doivent être tenus en laisse" - }, - "1": { - "then": "Chiens interdits" - }, - "2": { - "then": "Les chiens sont autorisés à se promener librement" - } - }, - "question": "Les chiens sont-ils autorisés dans cette réserve naturelle ?" - }, - "Email": { - "question": "À quelle adresse courriel peut-on envoyer des questions et des problèmes concernant cette réserve naturelle ?
Respecter la vie privée – renseignez une adresse électronique personnelle seulement si celle-ci est largement publiée", - "render": "{email}" - }, - "Surface area": { - "render": "Superficie : {_surface:ha} ha" - }, - "Website": { - "question": "Sur quelle page web peut-on trouver plus d'informations sur cette réserve naturelle ?" - }, - "phone": { - "question": "Quel numéro de téléphone peut-on appeler pour poser des questions et résoudre des problèmes concernant cette réserve naturelle ?
Respecter la vie privée – renseignez un numéro de téléphone personnel seulement si celui-ci est largement publié", - "render": "{phone}" - } - } - }, - "picnic_table": { - "description": "La couche montrant les tables de pique-nique", - "name": "Tables de pique-nique", - "presets": { - "0": { - "title": "table de pique-nique" - } - }, - "tagRenderings": { - "picnic_table-material": { - "mappings": { - "0": { - "then": "C’est une table en bois" - }, - "1": { - "then": "C’est une table en béton" - } - }, - "question": "En quel matériau est faite la table de pique-nique ?", - "render": "La table est faite en {material}" - } - }, - "title": { - "render": "Table de pique-nique" - } - }, - "playground": { - "description": "Aire de jeu", - "name": "Aire de jeu", - "presets": { - "0": { - "title": "Terrain de jeux" - } - }, - "tagRenderings": { - "Playground-wheelchair": { - "mappings": { - "0": { - "then": "Entièrement accessible aux personnes en fauteuil roulant" - }, - "1": { - "then": "Accessibilité limitée pour les personnes en fauteuil roulant" - }, - "2": { - "then": "Non accessible aux personnes en fauteuil roulant" - } - }, - "question": "Ce terrain de jeux est-il accessible aux personnes en fauteuil roulant ?" - }, - "playground-access": { - "mappings": { - "0": { - "then": "Accessible au public" - }, - "1": { - "then": "Accessible au public" - }, - "2": { - "then": "Réservée aux clients" - }, - "3": { - "then": "Réservée aux élèves de l’école" - }, - "4": { - "then": "Non accessible" - } - }, - "question": "L’aire de jeu est-elle accessible au public ?" - }, - "playground-email": { - "question": "Quelle est l'adresse électronique du responsable de l'aire de jeux ?", - "render": "{email}" - }, - "playground-lit": { - "mappings": { - "0": { - "then": "L’aire de jeu est éclairée de nuit" - }, - "1": { - "then": "L’aire de jeu n’est pas éclairée de nuit" - } - }, - "question": "Ce terrain de jeux est-il éclairé la nuit ?" - }, - "playground-max_age": { - "question": "Quel est l’âge maximum autorisé pour utiliser l’aire de jeu ?", - "render": "Accessible aux enfants de {max_age} au maximum" - }, - "playground-min_age": { - "question": "Quel est l'âge minimal requis pour accéder à ce terrain de jeux ?", - "render": "Accessible aux enfants de plus de {min_age} ans" - }, - "playground-opening_hours": { - "mappings": { - "0": { - "then": "Accessible du lever au coucher du soleil" - }, - "1": { - "then": "Toujours accessible" - }, - "2": { - "then": "Toujours accessible" - } - }, - "question": "Quand ce terrain de jeux est-il accessible ?" - }, - "playground-operator": { - "question": "Qui est en charge de l’exploitation de l’aire de jeu ?", - "render": "Exploité par {operator}" - }, - "playground-phone": { - "question": "Quel est le numéro de téléphone du responsable du terrain de jeux ?", - "render": "{phone}" - }, - "playground-surface": { - "mappings": { - "0": { - "then": "La surface est en gazon" - }, - "1": { - "then": "La surface est en sable" - }, - "2": { - "then": "La surface est en copeaux de bois" - }, - "3": { - "then": "La surface est en pavés" - }, - "4": { - "then": "La surface est en bitume" - }, - "5": { - "then": "La surface est en béton" - }, - "6": { - "then": "La surface n’a pas de revêtement" - }, - "7": { - "then": "La surface a un revêtement" - } - }, - "question": "De quelle matière est la surface de l’aire de jeu ?
Pour plusieurs matières, sélectionner la principale", - "render": "La surface est en {surface}" - } - }, - "title": { - "mappings": { - "0": { - "then": "Aire de jeu {name}" + "title": { + "mappings": { + "0": { + "then": "Service de nettoyage de vélo {name}" + } + }, + "render": "Service de nettoyage de vélo" } - }, - "render": "Aire de jeu" - } - }, - "public_bookcase": { - "description": "Une armoire ou une boite contenant des livres en libre accès", - "name": "Microbibliothèque", - "presets": { - "0": { - "title": "Microbibliothèque" - } }, - "tagRenderings": { - "bookcase-booktypes": { - "mappings": { - "0": { - "then": "Livres pour enfants" - }, - "1": { - "then": "Livres pour les adultes" - }, - "2": { - "then": "Livres pour enfants et adultes également" - } + "bike_parking": { + "name": "Parking à vélo", + "presets": { + "0": { + "title": "Parking à vélo" + } }, - "question": "Quel type de livres peut-on dans cette microbibliothèque ?" - }, - "bookcase-is-accessible": { - "mappings": { - "0": { - "then": "Accèssible au public" - }, - "1": { - "then": "Accèssible aux clients" - } + "tagRenderings": { + "Access": { + "mappings": { + "0": { + "then": "Accessible publiquement" + }, + "1": { + "then": "Accès destiné principalement aux visiteurs d'un lieu" + }, + "2": { + "then": "Accès limité aux membres d'une école, entreprise ou organisation" + } + }, + "question": "Qui peut utiliser ce parking à vélo ?", + "render": "{access}" + }, + "Bicycle parking type": { + "mappings": { + "0": { + "then": "Arceaux" + }, + "1": { + "then": "Pinces-roues" + }, + "2": { + "then": "Support guidon" + }, + "3": { + "then": "Râtelier" + }, + "4": { + "then": "Superposé" + }, + "5": { + "then": "Abri" + }, + "6": { + "then": "Potelet" + }, + "7": { + "then": "Zone au sol qui est marquée pour le stationnement des vélos" + } + }, + "question": "Quel type de parking à vélos est-ce ?", + "render": "Ceci est un parking à vélo de type {bicycle_parking}" + }, + "Capacity": { + "question": "Combien de vélos entrent dans ce parking à vélos (y compris les éventuels vélos de transport) ?", + "render": "Place pour {capacity} vélos" + }, + "Cargo bike capacity?": { + "question": "Combien de vélos de transport entrent dans ce parking à vélos ?", + "render": "Ce parking a de la place pour {capacity:cargo_bike} vélos de transport" + }, + "Cargo bike spaces?": { + "mappings": { + "0": { + "then": "Ce parking a de la place pour les vélos cargo" + }, + "1": { + "then": "Ce parking a des emplacements (officiellement) destinés aux vélos cargo." + }, + "2": { + "then": "Il est interdit de garer des vélos cargo" + } + }, + "question": "Est-ce que ce parking à vélo a des emplacements pour des vélos cargo ?" + }, + "Is covered?": { + "mappings": { + "0": { + "then": "Ce parking est couvert (il a un toit)" + }, + "1": { + "then": "Ce parking n'est pas couvert" + } + }, + "question": "Ce parking est-il couvert ? Sélectionnez aussi \"couvert\" pour les parkings en intérieur." + }, + "Underground?": { + "mappings": { + "0": { + "then": "Parking souterrain" + }, + "1": { + "then": "Parking en surface" + }, + "2": { + "then": "Parking sur un toit" + }, + "3": { + "then": "Parking en surface" + } + }, + "question": "Quelle est la position relative de ce parking à vélo ?" + } }, - "question": "Cette microbibliothèque est-elle librement accèssible ?" - }, - "bookcase-is-indoors": { - "mappings": { - "0": { - "then": "Cette microbibliothèque est en intérieur" - }, - "1": { - "then": "Cette microbibliothèque est en extérieur" - }, - "2": { - "then": "Cette microbibliothèque est en extérieur" - } - }, - "question": "Cette microbiliothèque est-elle en extérieur ?" - }, - "public_bookcase-brand": { - "mappings": { - "0": { - "then": "Fait partie du réseau Little Free Library" - }, - "1": { - "then": "Cette microbibliothèque ne fait pas partie d'un réseau/groupe" - } - }, - "question": "Cette microbibliothèque fait-elle partie d'un réseau/groupe ?", - "render": "Cette microbibliothèque fait partie du groupe {brand}" - }, - "public_bookcase-capacity": { - "question": "Combien de livres peuvent entrer dans cette microbibliothèque ?", - "render": "{capacity} livres peuvent entrer dans cette microbibliothèque" - }, - "public_bookcase-name": { - "mappings": { - "0": { - "then": "Cette microbibliothèque n'a pas de nom" - } - }, - "question": "Quel est le nom de cette microbibliothèque ?", - "render": "Le nom de cette microbibliothèque est {name}" - }, - "public_bookcase-operator": { - "question": "Qui entretien cette microbibliothèque ?", - "render": "Entretenue par {operator}" - }, - "public_bookcase-ref": { - "mappings": { - "0": { - "then": "Cette microbibliothèque ne fait pas partie d'un réseau/groupe" - } - }, - "question": "Quelle est le numéro de référence de cette microbibliothèque ?", - "render": "Cette microbibliothèque du réseau {brand} possède le numéro {ref}" - }, - "public_bookcase-start_date": { - "question": "Quand a été installée cette microbibliothèque ?", - "render": "Installée le {start_date}" - }, - "public_bookcase-website": { - "question": "Y a-t-il un site web avec plus d'informations sur cette microbibliothèque ?", - "render": "Plus d'infos sur le site web" - } - }, - "title": { - "mappings": { - "0": { - "then": "Microbibliothèque {name}" + "title": { + "render": "Parking à vélo" } - }, - "render": "Microbibliothèque" - } - }, - "shops": { - "description": "Un magasin", - "name": "Magasin", - "presets": { - "0": { - "description": "Ajouter un nouveau magasin", - "title": "Magasin" - } }, - "tagRenderings": { - "shops-email": { - "question": "Quelle est l'adresse électronique de ce magasin ?", - "render": "{email}" - }, - "shops-name": { - "question": "Qu'est-ce que le nom de ce magasin?" - }, - "shops-opening_hours": { - "question": "Quels sont les horaires d'ouverture de ce magasin ?", - "render": "{opening_hours_table(opening_hours)}" - }, - "shops-phone": { - "question": "Quel est le numéro de téléphone ?", - "render": "{phone}" - }, - "shops-shop": { - "mappings": { - "0": { - "then": "Épicerie/superette" - }, - "1": { - "then": "Supermarché" - }, - "2": { - "then": "Magasin de vêtements" - }, - "3": { - "then": "Coiffeur" - }, - "4": { - "then": "Boulangerie" - }, - "5": { - "then": "Garage de réparation automobile" - }, - "6": { - "then": "Concessionnaire" - } + "bike_repair_station": { + "name": "Station velo (réparation, pompe à vélo)", + "presets": { + "0": { + "description": "Un dispositif pour gonfler vos pneus sur un emplacement fixe dans l'espace public.", + "title": "pompe à vélo" + }, + "1": { + "description": "Un dispositif avec des outils pour réparer votre vélo combiné à une pompe a un emplacement fixe. Les outils sont souvent attachés par une chaîne pour empêcher le vol.", + "title": "point de réparation vélo avec pompe" + }, + "2": { + "title": "point de réparation vélo sans pompe" + } }, - "question": "Que vends ce magasin ?", - "render": "Ce magasin vends {shop}" - }, - "shops-website": { - "question": "Quel est le site internet de ce magasin ?", - "render": "{website}" - } - }, - "title": { - "mappings": { - "0": { - "then": "{name}" + "tagRenderings": { + "Operational status": { + "mappings": { + "0": { + "then": "La pompe à vélo est cassée" + }, + "1": { + "then": "La pompe est opérationnelle" + } + }, + "question": "La pompe à vélo fonctionne-t-elle toujours ?" + }, + "bike_repair_station-available-services": { + "mappings": { + "0": { + "then": "Il y a seulement une pompe" + }, + "1": { + "then": "Il y a seulement des outils (tournevis, pinces...)" + }, + "2": { + "then": "Il y a des outils et une pompe" + } + }, + "question": "Quels services sont valables à cette station vélo ?" + }, + "bike_repair_station-bike-chain-tool": { + "mappings": { + "0": { + "then": "Il y a un outil pour réparer la chaine" + }, + "1": { + "then": "Il n'y a pas d'outil pour réparer la chaine" + } + }, + "question": "Est-ce que cette station vélo a un outil specifique pour réparer la chaîne du vélo ?" + }, + "bike_repair_station-bike-stand": { + "mappings": { + "0": { + "then": "Il y a un crochet ou une accroche" + }, + "1": { + "then": "Il n'y pas de crochet ou d'accroche" + } + }, + "question": "Est-ce que cette station vélo à un crochet pour suspendre son vélo ou une accroche pour l'élevé ?" + }, + "bike_repair_station-electrical_pump": { + "mappings": { + "0": { + "then": "Pompe manuelle" + }, + "1": { + "then": "Pompe électrique" + } + }, + "question": "Est-ce que cette pompe est électrique ?" + }, + "bike_repair_station-email": { + "question": "Quelle est l'adresse email du service de maintenance ?" + }, + "bike_repair_station-manometer": { + "mappings": { + "0": { + "then": "Il y a un manomètre" + }, + "1": { + "then": "Il n'y a pas de manomètre" + }, + "2": { + "then": "Il y a un manomètre mais il est cassé" + } + }, + "question": "Est-ce que la pompe à un manomètre integré ?" + }, + "bike_repair_station-opening_hours": { + "mappings": { + "0": { + "then": "Ouvert en permanence" + } + }, + "question": "Quand ce point de réparation de vélo est-il ouvert ?" + }, + "bike_repair_station-operator": { + "question": "Qui maintient cette pompe à vélo ?", + "render": "Mantenue par {operator}" + }, + "bike_repair_station-phone": { + "question": "Quel est le numéro de téléphone du service de maintenance ?" + }, + "bike_repair_station-valves": { + "mappings": { + "0": { + "then": "Sclaverand (aussi appelé Presta)" + }, + "1": { + "then": "Dunlop" + }, + "2": { + "then": "Schrader (les valves de voitures)" + } + }, + "question": "Quelles valves sont compatibles ?", + "render": "Cette pompe est compatible avec les valves suivantes : {valves}" + } }, - "1": { - "then": "{shop}" + "title": { + "mappings": { + "0": { + "then": "Point de réparation velo" + }, + "1": { + "then": "Point de réparation" + }, + "2": { + "then": "Pompe cassée" + }, + "3": { + "then": "Pompe de vélo {name}" + }, + "4": { + "then": "Pompe de vélo" + } + }, + "render": "Point station velo avec pompe" } - }, - "render": "Magasin" - } - }, - "slow_roads": { - "tagRenderings": { - "slow_roads-surface": { - "mappings": { - "0": { - "then": "La surface est en herbe" - }, - "1": { - "then": "La surface est en terre" - }, - "2": { - "then": "La surface est non pavée" - }, - "3": { - "then": "La surface est en sable" - }, - "4": { - "then": "La surface est en pierres pavées" - }, - "5": { - "then": "La surface est en bitume" - }, - "6": { - "then": "La surface est en béton" - }, - "7": { - "then": "La surface est pavée" - } - }, - "render": "La surface en {surface}" - } - } - }, - "sport_pitch": { - "description": "Un terrain de sport", - "name": "Terrains de sport", - "presets": { - "0": { - "title": "Table de ping-pong" - }, - "1": { - "title": "Terrain de sport" - } }, - "tagRenderings": { - "sport-pitch-access": { - "mappings": { - "0": { - "then": "Accessible au public" - }, - "1": { - "then": "Accès limité (par exemple uniquement sur réservation, à certains horaires…)" - }, - "2": { - "then": "Accessible uniquement aux membres du club" - }, - "3": { - "then": "Privé - Pas accessible au public" - } + "bike_shop": { + "description": "Un magasin vendant spécifiquement des vélos ou des objets en lien", + "name": "Magasin ou réparateur de vélo", + "presets": { + "0": { + "title": "Magasin et réparateur de vélo" + } }, - "question": "Est-ce que ce terrain de sport est accessible au public ?" - }, - "sport-pitch-reservation": { - "mappings": { - "0": { - "then": "Il est obligatoire de réserver pour utiliser ce terrain de sport" - }, - "1": { - "then": "Il est recommendé de réserver pour utiliser ce terrain de sport" - }, - "2": { - "then": "Il est possible de réserver, mais ce n'est pas nécéssaire pour utiliser ce terrain de sport" - }, - "3": { - "then": "On ne peut pas réserver" - } + "tagRenderings": { + "bike_repair_bike-pump-service": { + "mappings": { + "0": { + "then": "Ce magasin offre une pompe en acces libre" + }, + "1": { + "then": "Ce magasin n'offre pas de pompe en libre accès" + }, + "2": { + "then": "Il y a une pompe à vélo, c'est indiqué comme un point séparé " + } + }, + "question": "Est-ce que ce magasin offre une pompe en accès libre ?" + }, + "bike_repair_bike-wash": { + "mappings": { + "0": { + "then": "Ce magasin lave les vélos" + }, + "1": { + "then": "Ce magasin a une installation pour laver soi même des vélos" + }, + "2": { + "then": "Ce magasin ne fait pas le nettoyage de vélo" + } + }, + "question": "Lave-t-on les vélos ici ?" + }, + "bike_repair_rents-bikes": { + "mappings": { + "0": { + "then": "Ce magasin loue des vélos" + }, + "1": { + "then": "Ce magasin ne loue pas de vélos" + } + }, + "question": "Est-ce ce magasin loue des vélos ?" + }, + "bike_repair_repairs-bikes": { + "mappings": { + "0": { + "then": "Ce magasin répare des vélos" + }, + "1": { + "then": "Ce magasin ne répare pas les vélos" + }, + "2": { + "then": "Ce magasin ne répare seulement les vélos achetés là-bas" + }, + "3": { + "then": "Ce magasin ne répare seulement des marques spécifiques" + } + }, + "question": "Est-ce que ce magasin répare des vélos ?" + }, + "bike_repair_second-hand-bikes": { + "mappings": { + "0": { + "then": "Ce magasin vend des vélos d'occasion" + }, + "1": { + "then": "Ce magasin ne vend pas de vélos d'occasion" + }, + "2": { + "then": "Ce magasin vend seulement des vélos d'occasion" + } + }, + "question": "Est-ce ce magasin vend des vélos d'occasion ?" + }, + "bike_repair_sells-bikes": { + "mappings": { + "0": { + "then": "Ce magasin vend des vélos" + }, + "1": { + "then": "Ce magasin ne vend pas de vélo" + } + }, + "question": "Est-ce que ce magasin vend des vélos ?" + }, + "bike_repair_tools-service": { + "mappings": { + "0": { + "then": "Ce magasin offre des outils pour réparer son vélo soi-même" + }, + "1": { + "then": "Ce magasin n'offre pas des outils pour réparer son vélo soi-même" + }, + "2": { + "then": "Des outils d'auto-réparation sont disponibles uniquement si vous avez acheté ou loué le vélo dans ce magasin" + } + }, + "question": "Est-ce qu'il y a des outils pour réparer son vélo dans ce magasin ?" + }, + "bike_shop-email": { + "question": "Quelle est l'adresse électronique de {name} ?" + }, + "bike_shop-is-bicycle_shop": { + "render": "Ce magasin est spécialisé dans la vente de {shop} et a des activités liées au vélo" + }, + "bike_shop-name": { + "question": "Quel est le nom du magasin de vélos ?", + "render": "Ce magasin s'appelle {name}" + }, + "bike_shop-phone": { + "question": "Quel est le numéro de téléphone de {name} ?" + }, + "bike_shop-website": { + "question": "Quel est le site web de {name} ?" + } }, - "question": "Doit-on réserver pour utiliser ce terrain de sport ?" - }, - "sport_pitch-email": { - "question": "Quelle est l'adresse courriel du gérant ?" - }, - "sport_pitch-opening_hours": { - "mappings": { - "1": { - "then": "Accessible en permanence" - } - }, - "question": "Quand ce terrain est-il accessible ?" - }, - "sport_pitch-phone": { - "question": "Quel est le numéro de téléphone du gérant ?" - }, - "sport_pitch-sport": { - "mappings": { - "0": { - "then": "Ici, on joue au basketball" - }, - "1": { - "then": "Ici, on joue au football" - }, - "2": { - "then": "C'est une table de ping-pong" - }, - "3": { - "then": "Ici, on joue au tennis" - }, - "4": { - "then": "Ici, on joue au korfball" - }, - "5": { - "then": "Ici, on joue au basketball" - } - }, - "question": "À quel sport peut-on jouer ici ?", - "render": "Ici on joue au {sport}" - }, - "sport_pitch-surface": { - "mappings": { - "0": { - "then": "La surface est de l'herbe" - }, - "1": { - "then": "La surface est du sable" - }, - "2": { - "then": "La surface est des pavés" - }, - "3": { - "then": "La surface est de l'asphalte" - }, - "4": { - "then": "La surface est du béton" - } - }, - "question": "De quelle surface est fait ce terrain de sport ?", - "render": "La surface est {surface}" - } - }, - "title": { - "render": "Terrain de sport" - } - }, - "surveillance_camera": { - "name": "Caméras de surveillance", - "tagRenderings": { - "Camera type: fixed; panning; dome": { - "mappings": { - "0": { - "then": "Une caméra fixe (non mobile)" - }, - "1": { - "then": "Une caméra dôme (qui peut tourner)" - }, - "2": { - "then": "Une caméra panoramique" - } - }, - "question": "Quel genre de caméra est-ce ?" - }, - "Level": { - "question": "À quel niveau se trouve cette caméra ?", - "render": "Situé au niveau {level}" - }, - "Operator": { - "question": "Qui exploite ce système de vidéosurveillance ?", - "render": "Exploité par {operator}" - }, - "Surveillance type: public, outdoor, indoor": { - "mappings": { - "0": { - "then": "Une zone publique est surveillée, telle qu'une rue, un pont, une place, un parc, une gare, un couloir ou un tunnel public…" - }, - "1": { - "then": "Une zone extérieure, mais privée, est surveillée (par exemple, un parking, une station-service, une cour, une entrée, une allée privée, etc.)" - }, - "2": { - "then": "Une zone intérieure privée est surveillée, par exemple un magasin, un parking souterrain privé…" - } - }, - "question": "Quel genre de surveillance est cette caméra" - }, - "Surveillance:zone": { - "mappings": { - "0": { - "then": "Surveille un parking" - }, - "1": { - "then": "Surveille la circulation" - }, - "2": { - "then": "Surveille une entrée" - }, - "3": { - "then": "Surveille un couloir" - }, - "4": { - "then": "Surveille un quai de transport public" - }, - "5": { - "then": "Surveille un magasin" - } - }, - "question": "Qu'est-ce qui est surveillé ici ?", - "render": " Surveille un(e) {surveillance:zone}" - }, - "camera:mount": { - "mappings": { - "0": { - "then": "Cette caméra est placée contre un mur" - }, - "1": { - "then": "Cette caméra est placée sur un poteau" - }, - "2": { - "then": "Cette caméra est placée au plafond" - } - }, - "question": "Comment cette caméra est-elle placée ?", - "render": "Méthode de montage : {camera:mount}" - }, - "camera_direction": { - "mappings": { - "0": { - "then": "Filme dans une direction {direction}" - } - }, - "question": "Dans quelle direction géographique cette caméra filme-t-elle ?", - "render": "Filme dans une direction {camera:direction}" - }, - "is_indoor": { - "mappings": { - "0": { - "then": "Cette caméra est située à l'intérieur" - }, - "1": { - "then": "Cette caméra est située à l'extérieur" - }, - "2": { - "then": "Cette caméra est probablement située à l'extérieur" - } - }, - "question": "L'espace public surveillé par cette caméra est-il un espace intérieur ou extérieur ?" - } - }, - "title": { - "render": "Caméra de surveillance" - } - }, - "toilet": { - "name": "Toilettes", - "presets": { - "0": { - "description": "Des toilettes", - "title": "toilettes" - }, - "1": { - "description": "Toilettes avec au moins un WC accessible aux personnes à mobilité réduite", - "title": "toilettes accessible aux personnes à mobilité réduite" - } - }, - "tagRenderings": { - "toilet-access": { - "mappings": { - "0": { - "then": "Accès publique" - }, - "1": { - "then": "Accès réservé aux clients" - }, - "2": { - "then": "Toilettes privées" - }, - "3": { - "then": "Accessible, mais vous devez demander la clé" - }, - "4": { - "then": "Accès publique" - } - }, - "question": "Ces toilettes sont-elles accessibles au public ?", - "render": "L'accès est {access}" - }, - "toilet-changing_table:location": { - "mappings": { - "0": { - "then": "La table à langer est dans les toilettes pour femmes. " - }, - "1": { - "then": "La table à langer est dans les toilettes pour hommes. " - }, - "2": { - "then": "La table à langer est dans les toilettes pour personnes à mobilité réduite. " - }, - "3": { - "then": "La table à langer est dans un espace dédié. " - } - }, - "question": "Où se situe la table à langer ?", - "render": "Emplacement de la table à langer : {changing_table:location}" - }, - "toilet-charge": { - "question": "Quel est le prix d'accès de ces toilettes ?", - "render": "Le prix est {charge}" - }, - "toilets-changing-table": { - "mappings": { - "0": { - "then": "Une table à langer est disponible" - }, - "1": { - "then": "Aucune table à langer" - } - }, - "question": "Ces toilettes disposent-elles d'une table à langer ?" - }, - "toilets-fee": { - "mappings": { - "0": { - "then": "Toilettes payantes" - }, - "1": { - "then": "Toilettes gratuites" - } - }, - "question": "Ces toilettes sont-elles payantes ?" - }, - "toilets-type": { - "mappings": { - "0": { - "then": "Il y a uniquement des sièges de toilettes" - }, - "1": { - "then": "Il y a uniquement des urinoirs" - }, - "2": { - "then": "Il y a uniquement des toilettes turques" - }, - "3": { - "then": "Il y a des sièges de toilettes et des urinoirs" - } - }, - "question": "De quel type sont ces toilettes ?" - }, - "toilets-wheelchair": { - "mappings": { - "0": { - "then": "Il y a des toilettes réservées pour les personnes à mobilité réduite" - }, - "1": { - "then": "Non accessible aux personnes à mobilité réduite" - } - }, - "question": "Y a-t-il des toilettes réservées aux personnes en fauteuil roulant ?" - } - }, - "title": { - "render": "Toilettes" - } - }, - "tree_node": { - "name": "Arbre", - "presets": { - "0": { - "description": "Un arbre d'une espèce avec de larges feuilles, comme le chêne ou le peuplier.", - "title": "Arbre feuillu" - }, - "1": { - "description": "Une espèce d’arbre avec des épines comme le pin ou l’épicéa.", - "title": "Arbre résineux" - }, - "2": { - "description": "Si vous n'êtes pas sûr(e) de savoir s'il s'agit d'un arbre à feuilles larges ou à aiguilles.", - "title": "Arbre" - } - }, - "tagRenderings": { - "tree-decidouous": { - "mappings": { - "0": { - "then": "Caduc : l’arbre perd son feuillage une partie de l’année." - }, - "1": { - "then": "À feuilles persistantes." - } - }, - "question": "L’arbre est-il à feuillage persistant ou caduc ?" - }, - "tree-denotation": { - "mappings": { - "0": { - "then": "L'arbre est remarquable en raison de sa taille ou de son emplacement proéminent. Il est utile pour la navigation." - }, - "1": { - "then": "Cet arbre est un monument naturel (ex : âge, espèce, etc…)" - }, - "2": { - "then": "Cet arbre est utilisé à but d’agriculture (ex : dans un verger)" - }, - "3": { - "then": "Cet arbre est dans un parc ou une aire similaire (ex : cimetière, cour d’école, …)." - }, - "4": { - "then": "Cet arbre est dans une cour résidentielle." - }, - "5": { - "then": "C'est un arbre le long d'une avenue." - }, - "6": { - "then": "L'arbre est une zone urbaine." - }, - "7": { - "then": "Cet arbre est en zone rurale." - } - }, - "question": "Quelle est l'importance de cet arbre ? Choisissez la première réponse qui s'applique." - }, - "tree-height": { - "mappings": { - "0": { - "then": "Hauteur : {height} m" - } - }, - "render": "Hauteur : {height}" - }, - "tree-heritage": { - "mappings": { - "0": { - "then": "\"\"/ Fait partie du patrimoine par Onroerend Erfgoed" - }, - "1": { - "then": "Enregistré comme patrimoine par la Direction du Patrimoine culturel Bruxelles" - }, - "2": { - "then": "Enregistré comme patrimoine par une autre organisation" - }, - "3": { - "then": "Non enregistré comme patrimoine" - }, - "4": { - "then": "Enregistré comme patrimoine par une autre organisation" - } - }, - "question": "Cet arbre est-il inscrit au patrimoine ?" - }, - "tree-leaf_type": { - "mappings": { - "0": { - "then": "\"\"/ Feuillu" - }, - "1": { - "then": "\"\"/ Résineux" - }, - "2": { - "then": "\"\"/ Sans feuilles (Permanent)" - } - }, - "question": "Cet arbre est-il un feuillu ou un résineux ?" - }, - "tree_node-name": { - "mappings": { - "0": { - "then": "L'arbre n'a pas de nom." - } - }, - "question": "L'arbre a-t-il un nom ?", - "render": "Nom : {name}" - }, - "tree_node-ref:OnroerendErfgoed": { - "question": "Quel est son identifiant donné par Onroerend Erfgoed ?", - "render": "\"\"/ Identifiant Onroerend Erfgoed : {ref:OnroerendErfgoed}" - }, - "tree_node-wikidata": { - "question": "Quel est l'identifiant Wikidata de cet arbre ?", - "render": "\"\"/ Wikidata : {wikidata}" - } - }, - "title": { - "mappings": { - "0": { - "then": "{name}" + "title": { + "mappings": { + "0": { + "then": "Magasin de sport {name}" + }, + "2": { + "then": "Location de vélo {name}" + }, + "3": { + "then": "Réparateur de vélo {name}" + }, + "4": { + "then": "Magasin de vélo {name}" + }, + "5": { + "then": "Magasin ou réparateur de vélo {name}" + } + }, + "render": "Magasin ou réparateur de vélo" } - }, - "render": "Arbre" - } - }, - "viewpoint": { - "description": "Un beau point de vue ou une belle vue. Idéal pour ajouter une image si aucune autre catégorie ne convient", - "name": "Point de vue", - "presets": { - "0": { - "title": "Point de vue" - } }, - "tagRenderings": { - "viewpoint-description": { - "question": "Voulez-vous ajouter une description ?" - } + "bike_themed_object": { + "name": "Objet cycliste", + "title": { + "mappings": { + "1": { + "then": "Piste cyclable" + } + }, + "render": "Objet cycliste" + } }, - "title": { - "render": "Point de vue" + "binocular": { + "presets": { + "0": { + "description": "Une longue-vue ou une paire de jumelles montée sur un poteau, disponible au public pour scruter les environs.\n" + } + } + }, + "birdhide": { + "filter": { + "0": { + "options": { + "0": { + "question": "Accessible aux fauteuils roulants" + } + } + } + } + }, + "cafe_pub": { + "filter": { + "0": { + "options": { + "0": { + "question": "Ouvert maintenant" + } + } + } + }, + "name": "Cafés et pubs", + "tagRenderings": { + "Name": { + "question": "Quel est le nom de ce pub ?", + "render": "Ce pub se nomme {name}" + } + } + }, + "charging_station": { + "filter": { + "0": { + "options": { + "0": { + "question": "Tout type de véhicule" + }, + "1": { + "question": "Station de charge pour vélos" + }, + "2": { + "question": "Station de charge pour automobiles" + } + } + } + }, + "tagRenderings": { + "Authentication": { + "mappings": { + "0": { + "then": "Authentification par carte de membre" + }, + "1": { + "then": "Authentification par une app" + }, + "2": { + "then": "Authentification par appel téléphonique est disponible" + }, + "3": { + "then": "Authentification par SMS est disponible" + }, + "4": { + "then": "Authentification par NFC est disponible" + }, + "6": { + "then": "Authentification par carte de débit est disponible" + }, + "7": { + "then": "Charger ici est (aussi) possible sans authentification" + } + }, + "question": "Quelle sorte d'authentification est disponible à cette station de charge ?" + } + } + }, + "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": { + "0": { + "title": "Défibrillateur" + } + }, + "tagRenderings": { + "defibrillator-access": { + "mappings": { + "0": { + "then": "Librement accessible" + }, + "1": { + "then": "Librement accessible" + }, + "2": { + "then": "Réservé aux clients du lieu" + }, + "3": { + "then": "Non accessible au public (par exemple réservé au personnel, au propriétaire, ...)" + }, + "4": { + "then": "Pas accessible, peut-être uniquement à usage professionnel" + } + }, + "question": "Ce défibrillateur est-il librement accessible ?", + "render": "{access} accessible" + }, + "defibrillator-defibrillator": { + "mappings": { + "0": { + "then": "Il n'y a pas d'information sur le type de dispositif" + }, + "1": { + "then": "C'est un défibrillateur manuel pour professionnel" + }, + "2": { + "then": "C'est un défibrillateur automatique manuel" + } + }, + "question": "Est-ce un défibrillateur automatique normal ou un défibrillateur manuel à usage professionnel uniquement ?" + }, + "defibrillator-defibrillator:location": { + "question": "Veuillez indiquez plus précisément où se situe le défibrillateur (dans la langue local)", + "render": "Informations supplémentaires à propos de l'emplacement (dans la langue locale) :
{defibrillator:location}" + }, + "defibrillator-defibrillator:location:en": { + "question": "Veuillez indiquez plus précisément où se situe le défibrillateur (en englais)", + "render": "Informations supplémentaires à propos de l'emplacement (en anglais) :
{defibrillator:location:en}" + }, + "defibrillator-defibrillator:location:fr": { + "question": "Veuillez indiquez plus précisément où se situe le défibrillateur (en français)", + "render": "Informations supplémentaires à propos de l'emplacement (en Français) :
{defibrillator:location:fr}" + }, + "defibrillator-description": { + "question": "Y a-t-il des informations utiles pour les utilisateurs que vous n'avez pas pu décrire ci-dessus ? (laisser vide sinon)", + "render": "Informations supplémentaires : {description}" + }, + "defibrillator-email": { + "question": "Quelle est l'adresse électronique pour des questions à propos de ce défibrillateur ?", + "render": "Adresse électronique pour des questions à propos de ce défibrillateur : {email}" + }, + "defibrillator-fixme": { + "question": "Y a-t-il quelque chose qui ne va pas dans la manière dont ça a été cartographié, et que vous n'avez pas pu réparer ici ? (laisser une note pour les experts d'OpenStreetMap)", + "render": "Informations supplémentaires pour les experts d'OpenStreetMap : {fixme}" + }, + "defibrillator-indoors": { + "mappings": { + "0": { + "then": "Ce défibrillateur est en intérieur (dans un batiment)" + }, + "1": { + "then": "Ce défibrillateur est situé en extérieur" + } + }, + "question": "Ce défibrillateur est-il disposé en intérieur ?" + }, + "defibrillator-level": { + "mappings": { + "0": { + "then": "Ce défibrillateur est au rez-de-chaussée" + }, + "1": { + "then": "Ce défibrillateur est au premier étage" + } + }, + "question": "À quel étage est situé ce défibrillateur ?", + "render": "Ce défibrillateur est à l'étage {level}" + }, + "defibrillator-opening_hours": { + "mappings": { + "0": { + "then": "Ouvert 24/7 (jours feriés inclus)" + } + }, + "question": "À quels horaires ce défibrillateur est-il accessible ?", + "render": "{opening_hours_table(opening_hours)}" + }, + "defibrillator-phone": { + "question": "Quel est le numéro de téléphone pour questions sur le défibrillateur ?", + "render": "Numéro de téléphone pour questions sur le défibrillateur : {phone}" + }, + "defibrillator-ref": { + "question": "Quel est le numéro d'identification officiel de ce dispositif ? (si il est visible sur le dispositif)", + "render": "Numéro d'identification officiel de ce dispositif : {ref}" + }, + "defibrillator-survey:date": { + "mappings": { + "0": { + "then": "Vérifié aujourd'hui !" + } + }, + "question": "Quand le défibrillateur a-t-il été vérifié pour la dernière fois ?", + "render": "Ce défibrillateur a été vérifié pour la dernière fois le {survey:date}" + } + }, + "title": { + "render": "Défibrillateur" + } + }, + "direction": { + "description": "Cette couche visualise les directions", + "name": "Visualisation de la direction" + }, + "drinking_water": { + "name": "Eau potable", + "presets": { + "0": { + "title": "eau potable" + } + }, + "tagRenderings": { + "Bottle refill": { + "mappings": { + "0": { + "then": "Il est facile de remplir les bouteilles d'eau" + }, + "1": { + "then": "Les bouteilles d'eau peuvent ne pas passer" + } + }, + "question": "Est-il facile de remplir des bouteilles d'eau ?" + }, + "Still in use?": { + "mappings": { + "0": { + "then": "Cette fontaine fonctionne" + }, + "1": { + "then": "Cette fontaine est cassée" + }, + "2": { + "then": "Cette fontaine est fermée" + } + }, + "question": "Ce point d'eau potable est-il toujours opérationnel ?", + "render": "L'état opérationnel est {operational_status}" + }, + "render-closest-drinking-water": { + "render": "Une autre source d’eau potable est à {_closest_other_drinking_water_distance} mètres a>" + } + }, + "title": { + "render": "Eau potable" + } + }, + "extinguisher": { + "description": "Couche des lances à incendie.", + "name": "Couche des extincteurs.", + "presets": { + "0": { + "description": "Un extincteur est un appareil portatif servant à éteindre un feu", + "title": "Extincteur" + } + }, + "tagRenderings": { + "extinguisher-location": { + "mappings": { + "0": { + "then": "Intérieur." + }, + "1": { + "then": "Extérieur." + } + }, + "question": "Où est-elle positionnée ?", + "render": "Emplacement : {location}" + } + }, + "title": { + "render": "Exctincteurs" + } + }, + "fire_station": { + "description": "Couche des stations de pompiers.", + "name": "Couche des stations de pompiers", + "presets": { + "0": { + "description": "Une caserne de pompiers est un lieu où les pompiers et leur équipements sont situés en dehors des missions.", + "title": "Caserne de pompiers" + } + }, + "tagRenderings": { + "station-agency": { + "mappings": { + "0": { + "then": "Brigade de Protection du Feu" + } + }, + "question": "Quel est l’exploitant de la station ?", + "render": "Cette station est opérée par {operator}." + }, + "station-name": { + "question": "Quel est le nom de la station ?", + "render": "Cette station s’appelle {name}." + }, + "station-operator": { + "mappings": { + "0": { + "then": "La station est opérée par le gouvernement." + }, + "1": { + "then": "La station est opérée par une organisation informelle." + }, + "2": { + "then": "La station est opérée par un groupe officiel de bénévoles." + }, + "3": { + "then": "La station est opérée par un groupe privé." + } + }, + "question": "Quel est le type d’exploitant ?", + "render": "L’exploitant est de type {operator:type}." + }, + "station-place": { + "question": "Dans quelle localité la station est-elle située ?", + "render": "La station fait partie de {addr:place}." + }, + "station-street": { + "question": " Quel est le nom de la rue dans lequel elle se situe ?", + "render": "La station fait partie de la {addr:street}." + } + }, + "title": { + "render": "Station de pompiers" + } + }, + "food": { + "tagRenderings": { + "friture-oil": { + "mappings": { + "0": { + "then": "Huile végétale" + }, + "1": { + "then": "Graisse animale" + } + }, + "question": "Cette friteuse fonctionne-t-elle avec de la graisse animale ou végétale ?" + }, + "friture-take-your-container": { + "mappings": { + "0": { + "then": "Vous pouvez apporter vos contenants pour votre commande, limitant l’usage de matériaux à usage unique et les déchets" + }, + "1": { + "then": "Apporter ses propres contenants n’est pas permis" + }, + "2": { + "then": "Il est obligatoire d’apporter ses propres contenants" + } + }, + "question": "Est-il proposé d’utiliser ses propres contenants pour sa commande ?
" + }, + "friture-vegan": { + "mappings": { + "0": { + "then": "Des collations végétaliens sont disponibles" + }, + "1": { + "then": "Quelques snacks végétaliens seulement" + }, + "2": { + "then": "Pas d'en-cas végétaliens disponibles" + } + }, + "question": "Cette friterie est-elle équipée de snacks végétaliens ?" + }, + "friture-vegetarian": { + "mappings": { + "0": { + "then": "Des collations végétariens sont disponibles" + }, + "1": { + "then": "Quelques snacks végétariens seulement" + }, + "2": { + "then": "Pas d'en-cas végétariens disponibles" + } + }, + "question": "Cette friterie est-elle équipée de snacks végétariens ?" + } + } + }, + "ghost_bike": { + "name": "Vélos fantômes", + "presets": { + "0": { + "title": "Vélo fantôme" + } + }, + "tagRenderings": { + "ghost-bike-explanation": { + "render": "Un vélo fantôme est un monument commémoratif pour un cycliste décédé dans un accident de la route, sous la forme d'un vélo blanc placé en permanence près du lieu de l'accident." + }, + "ghost_bike-inscription": { + "question": "Quelle est l'inscription sur ce vélo fantôme ?", + "render": "{inscription}" + }, + "ghost_bike-name": { + "mappings": { + "0": { + "then": "Aucun nom n'est marqué sur le vélo" + } + }, + "question": "À qui est dédié ce vélo fantôme ?
Veuillez respecter la vie privée – ajoutez le nom seulement s'il est largement publié ou marqué sur le vélo. Choisissez de ne pas indiquer le nom de famille
", + "render": "En souvenir de {name}" + }, + "ghost_bike-source": { + "question": "Sur quelle page web peut-on trouver plus d'informations sur le Vélo fantôme ou l'accident ?", + "render": "
Plus d'informations sont disponibles" + }, + "ghost_bike-start_date": { + "question": "Quand ce vélo fantôme a-t-il été installée ?", + "render": "Placé le {start_date}" + } + }, + "title": { + "mappings": { + "0": { + "then": "Vélo fantôme en souvenir de {name}" + } + }, + "render": "Vélo fantôme" + } + }, + "hydrant": { + "description": "Couche des bornes incendie.", + "name": "Carte des bornes incendie", + "presets": { + "0": { + "description": "Une borne incendie est un point où les pompiers peuvent s’alimenter en eau. Elle peut être enterrée.", + "title": "Borne incendie" + } + }, + "tagRenderings": { + "hydrant-color": { + "mappings": { + "0": { + "then": "La borne est de couleur inconnue." + }, + "1": { + "then": "La borne est jaune." + }, + "2": { + "then": "La borne est rouge." + } + }, + "question": "Quelle est la couleur de la borne ?", + "render": "La borne est {colour}" + }, + "hydrant-state": { + "mappings": { + "0": { + "then": "La borne est en état, ou partiellement en état, de fonctionner." + }, + "1": { + "then": "La borne est hors-service." + }, + "2": { + "then": "La borne a été retirée." + } + }, + "question": "Mettre à jour l’état de la borne." + }, + "hydrant-type": { + "mappings": { + "0": { + "then": "La borne est de type inconnu." + }, + "1": { + "then": "Pilier." + }, + "2": { + "then": "Tuyau." + }, + "3": { + "then": "Mural." + }, + "4": { + "then": "Enterré." + } + }, + "question": "De quel type de borne s’agit-il ?", + "render": " Type de borne : {fire_hydrant:type}" + } + }, + "title": { + "render": "Bornes incendie" + } + }, + "information_board": { + "name": "Panneaux d'informations", + "presets": { + "0": { + "title": "panneau d'informations" + } + }, + "title": { + "render": "Panneau d'informations" + } + }, + "map": { + "description": "Une carte, destinée aux touristes, installée en permanence dans l'espace public", + "name": "Cartes", + "presets": { + "0": { + "description": "Ajouter une carte manquante", + "title": "Carte" + } + }, + "tagRenderings": { + "map-attribution": { + "mappings": { + "0": { + "then": "L’attribution est clairement inscrite ainsi que la licence ODBL" + }, + "1": { + "then": "L’attribution est clairement inscrite mais la licence est absente" + }, + "2": { + "then": "OpenStreetMap n’est pas mentionné, un sticker OpenStreetMap a été collé" + }, + "3": { + "then": "Il n'y a aucune attribution" + }, + "4": { + "then": "Il n'y a aucune attribution" + } + }, + "question": "L’attribution à OpenStreetMap est elle-présente ?" + }, + "map-map_source": { + "mappings": { + "0": { + "then": "Cette carte est basée sur OpenStreetMap" + } + }, + "question": "Sur quelles données cette carte est-elle basée ?", + "render": "Cette carte est basée sur {map_source}" + } + }, + "title": { + "render": "Carte" + } + }, + "nature_reserve": { + "tagRenderings": { + "Curator": { + "question": "Qui est en charge de la conservation de la réserve ?
À ne remplir seulement que si le nom est diffusé au public", + "render": "{curator} est en charge de la conservation de la réserve" + }, + "Dogs?": { + "mappings": { + "0": { + "then": "Les chiens doivent être tenus en laisse" + }, + "1": { + "then": "Chiens interdits" + }, + "2": { + "then": "Les chiens sont autorisés à se promener librement" + } + }, + "question": "Les chiens sont-ils autorisés dans cette réserve naturelle ?" + }, + "Email": { + "question": "À quelle adresse courriel peut-on envoyer des questions et des problèmes concernant cette réserve naturelle ?
Respecter la vie privée – renseignez une adresse électronique personnelle seulement si celle-ci est largement publiée", + "render": "{email}" + }, + "Surface area": { + "render": "Superficie : {_surface:ha} ha" + }, + "phone": { + "question": "Quel numéro de téléphone peut-on appeler pour poser des questions et résoudre des problèmes concernant cette réserve naturelle ?
Respecter la vie privée – renseignez un numéro de téléphone personnel seulement si celui-ci est largement publié" + } + } + }, + "picnic_table": { + "description": "La couche montrant les tables de pique-nique", + "name": "Tables de pique-nique", + "presets": { + "0": { + "title": "table de pique-nique" + } + }, + "tagRenderings": { + "picnic_table-material": { + "mappings": { + "0": { + "then": "C’est une table en bois" + }, + "1": { + "then": "C’est une table en béton" + } + }, + "question": "En quel matériau est faite la table de pique-nique ?", + "render": "La table est faite en {material}" + } + }, + "title": { + "render": "Table de pique-nique" + } + }, + "playground": { + "description": "Aire de jeu", + "name": "Aire de jeu", + "presets": { + "0": { + "title": "terrain de jeux" + } + }, + "tagRenderings": { + "Playground-wheelchair": { + "mappings": { + "0": { + "then": "Entièrement accessible aux personnes en fauteuil roulant" + }, + "1": { + "then": "Accessibilité limitée pour les personnes en fauteuil roulant" + }, + "2": { + "then": "Non accessible aux personnes en fauteuil roulant" + } + }, + "question": "Ce terrain de jeux est-il accessible aux personnes en fauteuil roulant ?" + }, + "playground-access": { + "mappings": { + "0": { + "then": "Accessible au public" + }, + "1": { + "then": "Réservée aux clients" + }, + "2": { + "then": "Réservée aux élèves de l’école" + }, + "3": { + "then": "Non accessible" + } + }, + "question": "L’aire de jeu est-elle accessible au public ?" + }, + "playground-email": { + "question": "Quelle est l'adresse électronique du responsable de l'aire de jeux ?", + "render": "{email}" + }, + "playground-lit": { + "mappings": { + "0": { + "then": "L’aire de jeu est éclairée de nuit" + }, + "1": { + "then": "L’aire de jeu n’est pas éclairée de nuit" + } + }, + "question": "Ce terrain de jeux est-il éclairé la nuit ?" + }, + "playground-max_age": { + "question": "Quel est l’âge maximum autorisé pour utiliser l’aire de jeu ?", + "render": "Accessible aux enfants de {max_age} au maximum" + }, + "playground-min_age": { + "question": "Quel est l'âge minimal requis pour accéder à ce terrain de jeux ?", + "render": "Accessible aux enfants de plus de {min_age} ans" + }, + "playground-opening_hours": { + "mappings": { + "0": { + "then": "Accessible du lever au coucher du soleil" + }, + "1": { + "then": "Toujours accessible" + } + }, + "question": "Quand ce terrain de jeux est-il accessible ?" + }, + "playground-operator": { + "question": "Qui est en charge de l’exploitation de l’aire de jeu ?", + "render": "Exploité par {operator}" + }, + "playground-phone": { + "question": "Quel est le numéro de téléphone du responsable du terrain de jeux ?", + "render": "{phone}" + }, + "playground-surface": { + "mappings": { + "0": { + "then": "La surface est en gazon" + }, + "1": { + "then": "La surface est en sable" + }, + "2": { + "then": "La surface est en copeaux de bois" + }, + "3": { + "then": "La surface est en pavés" + }, + "4": { + "then": "La surface est en bitume" + }, + "5": { + "then": "La surface est en béton" + }, + "6": { + "then": "La surface n’a pas de revêtement" + }, + "7": { + "then": "La surface a un revêtement" + } + }, + "question": "De quelle matière est la surface de l’aire de jeu ?
Pour plusieurs matières, sélectionner la principale", + "render": "La surface est en {surface}" + } + }, + "title": { + "mappings": { + "0": { + "then": "Aire de jeu {name}" + } + }, + "render": "Aire de jeu" + } + }, + "public_bookcase": { + "description": "Une armoire ou une boite contenant des livres en libre accès", + "name": "Microbibliothèque", + "presets": { + "0": { + "title": "Microbibliothèque" + } + }, + "tagRenderings": { + "bookcase-booktypes": { + "mappings": { + "0": { + "then": "Livres pour enfants" + }, + "1": { + "then": "Livres pour les adultes" + }, + "2": { + "then": "Livres pour enfants et adultes également" + } + }, + "question": "Quel type de livres peut-on dans cette microbibliothèque ?" + }, + "bookcase-is-accessible": { + "mappings": { + "0": { + "then": "Accèssible au public" + }, + "1": { + "then": "Accèssible aux clients" + } + }, + "question": "Cette microbibliothèque est-elle librement accèssible ?" + }, + "bookcase-is-indoors": { + "mappings": { + "0": { + "then": "Cette microbibliothèque est en intérieur" + }, + "1": { + "then": "Cette microbibliothèque est en extérieur" + }, + "2": { + "then": "Cette microbibliothèque est en extérieur" + } + }, + "question": "Cette microbiliothèque est-elle en extérieur ?" + }, + "public_bookcase-brand": { + "mappings": { + "0": { + "then": "Fait partie du réseau Little Free Library" + }, + "1": { + "then": "Cette microbibliothèque ne fait pas partie d'un réseau/groupe" + } + }, + "question": "Cette microbibliothèque fait-elle partie d'un réseau/groupe ?", + "render": "Cette microbibliothèque fait partie du groupe {brand}" + }, + "public_bookcase-capacity": { + "question": "Combien de livres peuvent entrer dans cette microbibliothèque ?", + "render": "{capacity} livres peuvent entrer dans cette microbibliothèque" + }, + "public_bookcase-name": { + "mappings": { + "0": { + "then": "Cette microbibliothèque n'a pas de nom" + } + }, + "question": "Quel est le nom de cette microbibliothèque ?", + "render": "Le nom de cette microbibliothèque est {name}" + }, + "public_bookcase-operator": { + "question": "Qui entretien cette microbibliothèque ?", + "render": "Entretenue par {operator}" + }, + "public_bookcase-ref": { + "mappings": { + "0": { + "then": "Cette microbibliothèque ne fait pas partie d'un réseau/groupe" + } + }, + "question": "Quelle est le numéro de référence de cette microbibliothèque ?", + "render": "Cette microbibliothèque du réseau {brand} possède le numéro {ref}" + }, + "public_bookcase-start_date": { + "question": "Quand a été installée cette microbibliothèque ?", + "render": "Installée le {start_date}" + }, + "public_bookcase-website": { + "question": "Y a-t-il un site web avec plus d'informations sur cette microbibliothèque ?", + "render": "Plus d'infos sur le site web" + } + }, + "title": { + "mappings": { + "0": { + "then": "Microbibliothèque {name}" + } + }, + "render": "Microbibliothèque" + } + }, + "shops": { + "description": "Un magasin", + "name": "Magasin", + "presets": { + "0": { + "description": "Ajouter un nouveau magasin", + "title": "Magasin" + } + }, + "tagRenderings": { + "shops-email": { + "question": "Quelle est l'adresse électronique de ce magasin ?", + "render": "{email}" + }, + "shops-name": { + "question": "Qu'est-ce que le nom de ce magasin?" + }, + "shops-opening_hours": { + "question": "Quels sont les horaires d'ouverture de ce magasin ?", + "render": "{opening_hours_table(opening_hours)}" + }, + "shops-phone": { + "question": "Quel est le numéro de téléphone ?", + "render": "{phone}" + }, + "shops-shop": { + "mappings": { + "0": { + "then": "Épicerie/superette" + }, + "1": { + "then": "Supermarché" + }, + "2": { + "then": "Magasin de vêtements" + }, + "3": { + "then": "Coiffeur" + }, + "4": { + "then": "Boulangerie" + }, + "5": { + "then": "Garage de réparation automobile" + }, + "6": { + "then": "Concessionnaire" + } + }, + "question": "Que vends ce magasin ?", + "render": "Ce magasin vends {shop}" + }, + "shops-website": { + "question": "Quel est le site internet de ce magasin ?", + "render": "{website}" + } + }, + "title": { + "mappings": { + "0": { + "then": "{name}" + }, + "1": { + "then": "{shop}" + } + }, + "render": "Magasin" + } + }, + "slow_roads": { + "tagRenderings": { + "slow_roads-surface": { + "mappings": { + "0": { + "then": "La surface est en herbe" + }, + "1": { + "then": "La surface est en terre" + }, + "2": { + "then": "La surface est non pavée" + }, + "3": { + "then": "La surface est en sable" + }, + "4": { + "then": "La surface est en pierres pavées" + }, + "5": { + "then": "La surface est en bitume" + }, + "6": { + "then": "La surface est en béton" + }, + "7": { + "then": "La surface est pavée" + } + }, + "render": "La surface en {surface}" + } + } + }, + "sport_pitch": { + "description": "Un terrain de sport", + "name": "Terrains de sport", + "presets": { + "0": { + "title": "Table de ping-pong" + }, + "1": { + "title": "Terrain de sport" + } + }, + "tagRenderings": { + "sport-pitch-access": { + "mappings": { + "0": { + "then": "Accessible au public" + }, + "1": { + "then": "Accès limité (par exemple uniquement sur réservation, à certains horaires…)" + }, + "2": { + "then": "Accessible uniquement aux membres du club" + }, + "3": { + "then": "Privé - Pas accessible au public" + } + }, + "question": "Est-ce que ce terrain de sport est accessible au public ?" + }, + "sport-pitch-reservation": { + "mappings": { + "0": { + "then": "Il est obligatoire de réserver pour utiliser ce terrain de sport" + }, + "1": { + "then": "Il est recommendé de réserver pour utiliser ce terrain de sport" + }, + "2": { + "then": "Il est possible de réserver, mais ce n'est pas nécéssaire pour utiliser ce terrain de sport" + }, + "3": { + "then": "On ne peut pas réserver" + } + }, + "question": "Doit-on réserver pour utiliser ce terrain de sport ?" + }, + "sport_pitch-email": { + "question": "Quelle est l'adresse courriel du gérant ?" + }, + "sport_pitch-opening_hours": { + "mappings": { + "1": { + "then": "Accessible en permanence" + } + }, + "question": "Quand ce terrain est-il accessible ?" + }, + "sport_pitch-phone": { + "question": "Quel est le numéro de téléphone du gérant ?" + }, + "sport_pitch-sport": { + "mappings": { + "0": { + "then": "Ici, on joue au basketball" + }, + "1": { + "then": "Ici, on joue au football" + }, + "2": { + "then": "C'est une table de ping-pong" + }, + "3": { + "then": "Ici, on joue au tennis" + }, + "4": { + "then": "Ici, on joue au korfball" + }, + "5": { + "then": "Ici, on joue au basketball" + } + }, + "question": "À quel sport peut-on jouer ici ?", + "render": "Ici on joue au {sport}" + }, + "sport_pitch-surface": { + "mappings": { + "0": { + "then": "La surface est de l'herbe" + }, + "1": { + "then": "La surface est du sable" + }, + "2": { + "then": "La surface est des pavés" + }, + "3": { + "then": "La surface est de l'asphalte" + }, + "4": { + "then": "La surface est du béton" + } + }, + "question": "De quelle surface est fait ce terrain de sport ?", + "render": "La surface est {surface}" + } + }, + "title": { + "render": "Terrain de sport" + } + }, + "surveillance_camera": { + "name": "Caméras de surveillance", + "tagRenderings": { + "Camera type: fixed; panning; dome": { + "mappings": { + "0": { + "then": "Une caméra fixe (non mobile)" + }, + "1": { + "then": "Une caméra dôme (qui peut tourner)" + }, + "2": { + "then": "Une caméra panoramique" + } + }, + "question": "Quel genre de caméra est-ce ?" + }, + "Level": { + "question": "À quel niveau se trouve cette caméra ?", + "render": "Situé au niveau {level}" + }, + "Operator": { + "question": "Qui exploite ce système de vidéosurveillance ?", + "render": "Exploité par {operator}" + }, + "Surveillance type: public, outdoor, indoor": { + "mappings": { + "0": { + "then": "Une zone publique est surveillée, telle qu'une rue, un pont, une place, un parc, une gare, un couloir ou un tunnel public…" + }, + "1": { + "then": "Une zone extérieure, mais privée, est surveillée (par exemple, un parking, une station-service, une cour, une entrée, une allée privée, etc.)" + }, + "2": { + "then": "Une zone intérieure privée est surveillée, par exemple un magasin, un parking souterrain privé…" + } + }, + "question": "Quel genre de surveillance est cette caméra" + }, + "Surveillance:zone": { + "mappings": { + "0": { + "then": "Surveille un parking" + }, + "1": { + "then": "Surveille la circulation" + }, + "2": { + "then": "Surveille une entrée" + }, + "3": { + "then": "Surveille un couloir" + }, + "4": { + "then": "Surveille un quai de transport public" + }, + "5": { + "then": "Surveille un magasin" + } + }, + "question": "Qu'est-ce qui est surveillé ici ?", + "render": " Surveille un(e) {surveillance:zone}" + }, + "camera:mount": { + "mappings": { + "0": { + "then": "Cette caméra est placée contre un mur" + }, + "1": { + "then": "Cette caméra est placée sur un poteau" + }, + "2": { + "then": "Cette caméra est placée au plafond" + } + }, + "question": "Comment cette caméra est-elle placée ?", + "render": "Méthode de montage : {camera:mount}" + }, + "camera_direction": { + "mappings": { + "0": { + "then": "Filme dans une direction {direction}" + } + }, + "question": "Dans quelle direction géographique cette caméra filme-t-elle ?", + "render": "Filme dans une direction {camera:direction}" + }, + "is_indoor": { + "mappings": { + "0": { + "then": "Cette caméra est située à l'intérieur" + }, + "1": { + "then": "Cette caméra est située à l'extérieur" + }, + "2": { + "then": "Cette caméra est probablement située à l'extérieur" + } + }, + "question": "L'espace public surveillé par cette caméra est-il un espace intérieur ou extérieur ?" + } + }, + "title": { + "render": "Caméra de surveillance" + } + }, + "toilet": { + "name": "Toilettes", + "presets": { + "0": { + "title": "toilette publique" + }, + "1": { + "description": "Toilettes avec au moins un WC accessible aux personnes à mobilité réduite", + "title": "toilettes accessible aux personnes à mobilité réduite" + } + }, + "tagRenderings": { + "toilet-access": { + "mappings": { + "0": { + "then": "Accès publique" + }, + "1": { + "then": "Accès réservé aux clients" + }, + "2": { + "then": "Toilettes privées" + }, + "3": { + "then": "Accessible, mais vous devez demander la clé" + }, + "4": { + "then": "Accès publique" + } + }, + "question": "Ces toilettes sont-elles accessibles au public ?", + "render": "L'accès est {access}" + }, + "toilet-changing_table:location": { + "mappings": { + "0": { + "then": "La table à langer est dans les toilettes pour femmes. " + }, + "1": { + "then": "La table à langer est dans les toilettes pour hommes. " + }, + "2": { + "then": "La table à langer est dans les toilettes pour personnes à mobilité réduite. " + }, + "3": { + "then": "La table à langer est dans un espace dédié. " + } + }, + "question": "Où se situe la table à langer ?", + "render": "Emplacement de la table à langer : {changing_table:location}" + }, + "toilet-charge": { + "question": "Quel est le prix d'accès de ces toilettes ?", + "render": "Le prix est {charge}" + }, + "toilets-changing-table": { + "mappings": { + "0": { + "then": "Une table à langer est disponible" + }, + "1": { + "then": "Aucune table à langer" + } + }, + "question": "Ces toilettes disposent-elles d'une table à langer ?" + }, + "toilets-fee": { + "mappings": { + "0": { + "then": "Toilettes payantes" + }, + "1": { + "then": "Toilettes gratuites" + } + }, + "question": "Ces toilettes sont-elles payantes ?" + }, + "toilets-type": { + "mappings": { + "0": { + "then": "Il y a uniquement des sièges de toilettes" + }, + "1": { + "then": "Il y a uniquement des urinoirs" + }, + "2": { + "then": "Il y a uniquement des toilettes turques" + }, + "3": { + "then": "Il y a des sièges de toilettes et des urinoirs" + } + }, + "question": "De quel type sont ces toilettes ?" + }, + "toilets-wheelchair": { + "mappings": { + "0": { + "then": "Il y a des toilettes réservées pour les personnes à mobilité réduite" + }, + "1": { + "then": "Non accessible aux personnes à mobilité réduite" + } + }, + "question": "Y a-t-il des toilettes réservées aux personnes en fauteuil roulant ?" + } + }, + "title": { + "render": "Toilettes" + } + }, + "trail": { + "name": "Sentiers", + "title": { + "render": "Sentier" + } + }, + "tree_node": { + "name": "Arbre", + "presets": { + "0": { + "description": "Un arbre d'une espèce avec de larges feuilles, comme le chêne ou le peuplier.", + "title": "Arbre feuillu" + }, + "1": { + "description": "Une espèce d’arbre avec des épines comme le pin ou l’épicéa.", + "title": "Arbre résineux" + }, + "2": { + "description": "Si vous n'êtes pas sûr(e) de savoir s'il s'agit d'un arbre à feuilles larges ou à aiguilles.", + "title": "Arbre" + } + }, + "tagRenderings": { + "tree-decidouous": { + "mappings": { + "0": { + "then": "Caduc : l’arbre perd son feuillage une partie de l’année." + }, + "1": { + "then": "À feuilles persistantes." + } + }, + "question": "L’arbre est-il à feuillage persistant ou caduc ?" + }, + "tree-denotation": { + "mappings": { + "0": { + "then": "L'arbre est remarquable en raison de sa taille ou de son emplacement proéminent. Il est utile pour la navigation." + }, + "1": { + "then": "Cet arbre est un monument naturel (ex : âge, espèce, etc…)" + }, + "2": { + "then": "Cet arbre est utilisé à but d’agriculture (ex : dans un verger)" + }, + "3": { + "then": "Cet arbre est dans un parc ou une aire similaire (ex : cimetière, cour d’école, …)." + }, + "4": { + "then": "Cet arbre est dans une cour résidentielle." + }, + "5": { + "then": "C'est un arbre le long d'une avenue." + }, + "6": { + "then": "L'arbre est une zone urbaine." + }, + "7": { + "then": "Cet arbre est en zone rurale." + } + }, + "question": "Quelle est l'importance de cet arbre ? Choisissez la première réponse qui s'applique." + }, + "tree-height": { + "mappings": { + "0": { + "then": "Hauteur : {height} m" + } + }, + "render": "Hauteur : {height}" + }, + "tree-heritage": { + "mappings": { + "0": { + "then": "Fait partie du patrimoine par Onroerend Erfgoed" + }, + "1": { + "then": "Enregistré comme patrimoine par la Direction du Patrimoine culturel Bruxelles" + }, + "2": { + "then": "Enregistré comme patrimoine par une autre organisation" + }, + "3": { + "then": "Non enregistré comme patrimoine" + }, + "4": { + "then": "Enregistré comme patrimoine par une autre organisation" + } + }, + "question": "Cet arbre est-il inscrit au patrimoine ?" + }, + "tree-leaf_type": { + "mappings": { + "0": { + "then": "Feuillu" + }, + "1": { + "then": "Résineux" + }, + "2": { + "then": "Sans feuilles (Permanent)" + } + }, + "question": "Cet arbre est-il un feuillu ou un résineux ?" + }, + "tree_node-name": { + "mappings": { + "0": { + "then": "L'arbre n'a pas de nom." + } + }, + "question": "L'arbre a-t-il un nom ?", + "render": "Nom : {name}" + }, + "tree_node-ref:OnroerendErfgoed": { + "question": "Quel est son identifiant donné par Onroerend Erfgoed ?", + "render": "\"\"/ Identifiant Onroerend Erfgoed : {ref:OnroerendErfgoed}" + }, + "tree_node-wikidata": { + "question": "Quel est l'identifiant Wikidata de cet arbre ?", + "render": "\"\"/ Wikidata : {wikidata}" + } + }, + "title": { + "render": "Arbre" + } + }, + "viewpoint": { + "description": "Un beau point de vue ou une belle vue. Idéal pour ajouter une image si aucune autre catégorie ne convient", + "name": "Point de vue", + "presets": { + "0": { + "title": "Point de vue" + } + }, + "tagRenderings": { + "viewpoint-description": { + "question": "Voulez-vous ajouter une description ?" + } + }, + "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/gl.json b/langs/layers/gl.json index 8beb2543f4..be5f07945e 100644 --- a/langs/layers/gl.json +++ b/langs/layers/gl.json @@ -1,403 +1,408 @@ { - "artwork": { - "presets": { - "0": { - "title": "Obra de arte" - } - }, - "title": { - "mappings": { - "0": { - "then": "Obra de arte {name}" + "artwork": { + "presets": { + "0": { + "title": "Obra de arte" + } + }, + "title": { + "mappings": { + "0": { + "then": "Obra de arte {name}" + } + }, + "render": "Obra de arte" } - }, - "render": "Obra de arte" - } - }, - "bike_cafe": { - "name": "Café de ciclistas", - "presets": { - "0": { - "title": "Café de ciclistas" - } }, - "tagRenderings": { - "bike_cafe-bike-pump": { - "mappings": { - "0": { - "then": "Este café de ciclistas ofrece unha bomba de ar" - }, - "1": { - "then": "Este café de ciclistas non ofrece unha bomba de ar" - } + "bike_cafe": { + "name": "Café de ciclistas", + "presets": { + "0": { + "title": "Café de ciclistas" + } }, - "question": "Este café de ciclistas ofrece unha bomba de ar para que calquera persoa poida usala?" - }, - "bike_cafe-email": { - "question": "Cal é o enderezo de correo electrónico de {name}?" - }, - "bike_cafe-name": { - "question": "Cal é o nome deste café de ciclistas?", - "render": "Este café de ciclistas chámase {name}" - }, - "bike_cafe-phone": { - "question": "Cal é o número de teléfono de {name}?" - }, - "bike_cafe-repair-service": { - "mappings": { - "0": { - "then": "Este café de ciclistas arranxa bicicletas" - }, - "1": { - "then": "Este café de ciclistas non arranxa bicicletas" - } + "tagRenderings": { + "bike_cafe-bike-pump": { + "mappings": { + "0": { + "then": "Este café de ciclistas ofrece unha bomba de ar" + }, + "1": { + "then": "Este café de ciclistas non ofrece unha bomba de ar" + } + }, + "question": "Este café de ciclistas ofrece unha bomba de ar para que calquera persoa poida usala?" + }, + "bike_cafe-email": { + "question": "Cal é o enderezo de correo electrónico de {name}?" + }, + "bike_cafe-name": { + "question": "Cal é o nome deste café de ciclistas?", + "render": "Este café de ciclistas chámase {name}" + }, + "bike_cafe-phone": { + "question": "Cal é o número de teléfono de {name}?" + }, + "bike_cafe-repair-service": { + "mappings": { + "0": { + "then": "Este café de ciclistas arranxa bicicletas" + }, + "1": { + "then": "Este café de ciclistas non arranxa bicicletas" + } + }, + "question": "Este café de ciclistas arranxa bicicletas?" + }, + "bike_cafe-repair-tools": { + "mappings": { + "0": { + "then": "Hai ferramentas aquí para arranxar a túa propia bicicleta" + }, + "1": { + "then": "Non hai ferramentas aquí para arranxar a túa propia bicicleta" + } + }, + "question": "Hai ferramentas aquí para arranxar a túa propia bicicleta?" + }, + "bike_cafe-website": { + "question": "Cal é a páxina web de {name}?" + } }, - "question": "Este café de ciclistas arranxa bicicletas?" - }, - "bike_cafe-repair-tools": { - "mappings": { - "0": { - "then": "Hai ferramentas aquí para arranxar a túa propia bicicleta" - }, - "1": { - "then": "Non hai ferramentas aquí para arranxar a túa propia bicicleta" - } - }, - "question": "Hai ferramentas aquí para arranxar a túa propia bicicleta?" - }, - "bike_cafe-website": { - "question": "Cal é a páxina web de {name}?" - } - }, - "title": { - "mappings": { - "0": { - "then": "Café de ciclistas {name}" + "title": { + "mappings": { + "0": { + "then": "Café de ciclistas {name}" + } + }, + "render": "Café de ciclistas" } - }, - "render": "Café de ciclistas" - } - }, - "bike_parking": { - "name": "Aparcadoiro de bicicletas", - "presets": { - "0": { - "title": "Aparcadoiro de bicicletas" - } }, - "tagRenderings": { - "Bicycle parking type": { - "mappings": { - "0": { - "then": "De roda (Stands) " - }, - "1": { - "then": "Aros " - }, - "2": { - "then": "Cadeado para guiador " - }, - "3": { - "then": "Cremalleira " - }, - "4": { - "then": "Dobre cremalleira " - }, - "5": { - "then": "Abeiro " - } + "bike_parking": { + "name": "Aparcadoiro de bicicletas", + "presets": { + "0": { + "title": "Aparcadoiro de bicicletas" + } }, - "question": "Que tipo de aparcadoiro de bicicletas é?", - "render": "Este é un aparcadoiro de bicicletas do tipo: {bicycle_parking}" - }, - "Capacity": { - "question": "Cantas bicicletas caben neste aparcadoiro de bicicletas (incluídas as posíbeis bicicletas de carga)?", - "render": "Lugar para {capacity} bicicletas" - }, - "Cargo bike capacity?": { - "question": "Cantas bicicletas de carga caben neste aparcadoiro de bicicletas?", - "render": "Neste aparcadoiro caben {capacity:cargo_bike} bicicletas de carga" - }, - "Cargo bike spaces?": { - "mappings": { - "0": { - "then": "Este aparcadoiro ten espazo para bicicletas de carga." - }, - "1": { - "then": "Este aparcadoiro ten espazos designados (oficiais) para bicicletas de carga." - }, - "2": { - "then": "Non está permitido aparcar bicicletas de carga" - } + "tagRenderings": { + "Bicycle parking type": { + "mappings": { + "0": { + "then": "De roda (Stands)" + }, + "1": { + "then": "Aros" + }, + "2": { + "then": "Cadeado para guiador" + }, + "3": { + "then": "Cremalleira" + }, + "4": { + "then": "Dobre cremalleira" + }, + "5": { + "then": "Abeiro" + } + }, + "question": "Que tipo de aparcadoiro de bicicletas é?", + "render": "Este é un aparcadoiro de bicicletas do tipo: {bicycle_parking}" + }, + "Capacity": { + "question": "Cantas bicicletas caben neste aparcadoiro de bicicletas (incluídas as posíbeis bicicletas de carga)?", + "render": "Lugar para {capacity} bicicletas" + }, + "Cargo bike capacity?": { + "question": "Cantas bicicletas de carga caben neste aparcadoiro de bicicletas?", + "render": "Neste aparcadoiro caben {capacity:cargo_bike} bicicletas de carga" + }, + "Cargo bike spaces?": { + "mappings": { + "0": { + "then": "Este aparcadoiro ten espazo para bicicletas de carga." + }, + "1": { + "then": "Este aparcadoiro ten espazos designados (oficiais) para bicicletas de carga." + }, + "2": { + "then": "Non está permitido aparcar bicicletas de carga" + } + }, + "question": "Este aparcadoiro de bicicletas ten espazo para bicicletas de carga?" + }, + "Is covered?": { + "mappings": { + "0": { + "then": "Este aparcadoiro está cuberto (ten un teito)" + }, + "1": { + "then": "Este aparcadoiro non está cuberto" + } + }, + "question": "Este aparcadoiro está cuberto? Tamén escolle \"cuberto\" para aparcadoiros interiores." + } }, - "question": "Este aparcadoiro de bicicletas ten espazo para bicicletas de carga?" - }, - "Is covered?": { - "mappings": { - "0": { - "then": "Este aparcadoiro está cuberto (ten un teito)" - }, - "1": { - "then": "Este aparcadoiro non está cuberto" - } - }, - "question": "Este aparcadoiro está cuberto? Tamén escolle \"cuberto\" para aparcadoiros interiores." - } - }, - "title": { - "render": "Aparcadoiro de bicicletas" - } - }, - "bike_repair_station": { - "name": "Estación de bicicletas (arranxo, bomba de ar ou ambos)", - "presets": { - "0": { - "title": "Bomba de ar" - }, - "1": { - "title": "Estación de arranxo de bicicletas con bomba de ar" - }, - "2": { - "title": "Estación de arranxo de bicicletas sin bomba de ar" - } - }, - "tagRenderings": { - "Operational status": { - "mappings": { - "0": { - "then": "A bomba de ar está estragada" - }, - "1": { - "then": "A bomba de ar está operativa" - } - }, - "question": "Segue a funcionar a bomba de ar?" - }, - "bike_repair_station-available-services": { - "mappings": { - "0": { - "then": "Só hai unha bomba de ar presente" - }, - "1": { - "then": "Só hai ferramentas (desaparafusadores, alicates...) presentes" - }, - "2": { - "then": "Hai ferramentas e unha bomba de ar presentes" - } - }, - "question": "Que servizos están dispoñíbeis nesta estación de bicicletas?" - }, - "bike_repair_station-bike-chain-tool": { - "mappings": { - "0": { - "then": "Hai unha ferramenta para a cadea" - }, - "1": { - "then": "Non hai unha ferramenta para a cadea" - } - }, - "question": "Esta estación de arranxo de bicicletas ten unha ferramenta especial para arranxar a cadea da túa bicicleta?" - }, - "bike_repair_station-bike-stand": { - "mappings": { - "0": { - "then": "Hai un guindastre ou soporte" - }, - "1": { - "then": "Non hai un guindastre ou soporte" - } - }, - "question": "Esta estación de bicicletas ten un guindastre para pendurar a túa bicicleta ou un soporte para elevala?" - }, - "bike_repair_station-electrical_pump": { - "mappings": { - "0": { - "then": "Bomba de ar manual" - }, - "1": { - "then": "Bomba de ar eléctrica" - } - }, - "question": "Esta é unha bomba de ar eléctrica?" - }, - "bike_repair_station-manometer": { - "mappings": { - "0": { - "then": "Hai manómetro" - }, - "1": { - "then": "Non hai manómetro" - }, - "2": { - "then": "Hai manómetro pero está estragado" - } - }, - "question": "Ten a bomba de ar un indicador de presión ou un manómetro?" - }, - "bike_repair_station-valves": { - "mappings": { - "0": { - "then": "Sclaverand (tamén coñecido como Presta)" - }, - "1": { - "then": "Dunlop" - }, - "2": { - "then": "Schrader (para automóbiles)" - } - }, - "question": "Que válvulas son compatíbeis?", - "render": "Esta bomba de ar admite as seguintes válvulas: {valves}" - } - }, - "title": { - "mappings": { - "0": { - "then": "Estación de arranxo de bicicletas" - }, - "1": { - "then": "Estación de arranxo de bicicletas" - }, - "2": { - "then": "Bomba de ar estragada" - }, - "3": { - "then": "Bomba de ar {name}" - }, - "4": { - "then": "Bomba de ar" + "title": { + "render": "Aparcadoiro de bicicletas" } - }, - "render": "Estación de bicicletas (arranxo e bomba de ar)" - } - }, - "bike_shop": { - "name": "Tenda/arranxo de bicicletas", - "presets": { - "0": { - "title": "Tenda/arranxo de bicicletas" - } }, - "tagRenderings": { - "bike_repair_bike-pump-service": { - "mappings": { - "0": { - "then": "Esta tenda ofrece unha bomba de ar para uso de calquera persoa" - }, - "1": { - "then": "Esta tenda non ofrece unha bomba de ar para uso de calquera persoa" - } + "bike_repair_station": { + "name": "Estación de bicicletas (arranxo, bomba de ar ou ambos)", + "presets": { + "0": { + "title": "bomba de ar" + }, + "1": { + "title": "estación de arranxo de bicicletas con bomba de ar" + }, + "2": { + "title": "estación de arranxo de bicicletas sin bomba de ar" + } }, - "question": "Esta tenda ofrece unha bomba de ar para uso de calquera persoa?" - }, - "bike_repair_rents-bikes": { - "mappings": { - "0": { - "then": "Esta tenda aluga bicicletas" - }, - "1": { - "then": "Esta tenda non aluga bicicletas" - } + "tagRenderings": { + "Operational status": { + "mappings": { + "0": { + "then": "A bomba de ar está estragada" + }, + "1": { + "then": "A bomba de ar está operativa" + } + }, + "question": "Segue a funcionar a bomba de ar?" + }, + "bike_repair_station-available-services": { + "mappings": { + "0": { + "then": "Só hai unha bomba de ar presente" + }, + "1": { + "then": "Só hai ferramentas (desaparafusadores, alicates...) presentes" + }, + "2": { + "then": "Hai ferramentas e unha bomba de ar presentes" + } + }, + "question": "Que servizos están dispoñíbeis nesta estación de bicicletas?" + }, + "bike_repair_station-bike-chain-tool": { + "mappings": { + "0": { + "then": "Hai unha ferramenta para a cadea" + }, + "1": { + "then": "Non hai unha ferramenta para a cadea" + } + }, + "question": "Esta estación de arranxo de bicicletas ten unha ferramenta especial para arranxar a cadea da túa bicicleta?" + }, + "bike_repair_station-bike-stand": { + "mappings": { + "0": { + "then": "Hai un guindastre ou soporte" + }, + "1": { + "then": "Non hai un guindastre ou soporte" + } + }, + "question": "Esta estación de bicicletas ten un guindastre para pendurar a túa bicicleta ou un soporte para elevala?" + }, + "bike_repair_station-electrical_pump": { + "mappings": { + "0": { + "then": "Bomba de ar manual" + }, + "1": { + "then": "Bomba de ar eléctrica" + } + }, + "question": "Esta é unha bomba de ar eléctrica?" + }, + "bike_repair_station-manometer": { + "mappings": { + "0": { + "then": "Hai manómetro" + }, + "1": { + "then": "Non hai manómetro" + }, + "2": { + "then": "Hai manómetro pero está estragado" + } + }, + "question": "Ten a bomba de ar un indicador de presión ou un manómetro?" + }, + "bike_repair_station-valves": { + "mappings": { + "0": { + "then": "Sclaverand (tamén coñecido como Presta)" + }, + "1": { + "then": "Dunlop" + }, + "2": { + "then": "Schrader (para automóbiles)" + } + }, + "question": "Que válvulas son compatíbeis?", + "render": "Esta bomba de ar admite as seguintes válvulas: {valves}" + } }, - "question": "Esta tenda aluga bicicletas?" - }, - "bike_repair_repairs-bikes": { - "mappings": { - "0": { - "then": "Esta tenda arranxa bicicletas" - }, - "1": { - "then": "Esta tenda non arranxa bicicletas" - }, - "2": { - "then": "Esta tenda só arranxa bicicletas mercadas aquí" - }, - "3": { - "then": "Esta tenda só arranxa bicicletas dunha certa marca" - } - }, - "question": "Esta tenda arranxa bicicletas?" - }, - "bike_repair_second-hand-bikes": { - "mappings": { - "0": { - "then": "Esta tenda vende bicicletas de segunda man" - }, - "1": { - "then": "Esta tenda non vende bicicletas de segunda man" - }, - "2": { - "then": "Esta tenda só vende bicicletas de segunda man" - } - }, - "question": "Esta tenda vende bicicletas de segunda man?" - }, - "bike_repair_sells-bikes": { - "mappings": { - "0": { - "then": "Esta tenda vende bicicletas" - }, - "1": { - "then": "Esta tenda non vende bicicletas" - } - }, - "question": "Esta tenda vende bicicletas?" - }, - "bike_repair_tools-service": { - "mappings": { - "0": { - "then": "Hai ferramentas aquí para arranxar a túa propia bicicleta" - }, - "1": { - "then": "Non hai ferramentas aquí para arranxar a túa propia bicicleta" - } - }, - "question": "Hai ferramentas aquí para arranxar a túa propia bicicleta?" - }, - "bike_shop-email": { - "question": "Cal é o enderezo de correo electrónico de {name}?" - }, - "bike_shop-name": { - "question": "Cal é o nome desta tenda de bicicletas?", - "render": "Esta tenda de bicicletas chámase {name}" - }, - "bike_shop-phone": { - "question": "Cal é o número de teléfono de {name}?" - }, - "bike_shop-website": { - "question": "Cal é a páxina web de {name}?" - } - }, - "title": { - "mappings": { - "3": { - "then": "Arranxo de bicicletas {name}" - }, - "4": { - "then": "Tenda de bicicletas {name}" - }, - "5": { - "then": "Tenda/arranxo de bicicletas {name}" + "title": { + "mappings": { + "0": { + "then": "Estación de arranxo de bicicletas" + }, + "1": { + "then": "Estación de arranxo de bicicletas" + }, + "2": { + "then": "Bomba de ar estragada" + }, + "3": { + "then": "Bomba de ar {name}" + }, + "4": { + "then": "Bomba de ar" + } + }, + "render": "Estación de bicicletas (arranxo e bomba de ar)" } - }, - "render": "Tenda/arranxo de bicicletas" - } - }, - "drinking_water": { - "name": "Auga potábel", - "presets": { - "0": { - "title": "auga potábel" - } }, - "title": { - "render": "Auga potábel" + "bike_shop": { + "name": "Tenda/arranxo de bicicletas", + "presets": { + "0": { + "title": "Tenda/arranxo de bicicletas" + } + }, + "tagRenderings": { + "bike_repair_bike-pump-service": { + "mappings": { + "0": { + "then": "Esta tenda ofrece unha bomba de ar para uso de calquera persoa" + }, + "1": { + "then": "Esta tenda non ofrece unha bomba de ar para uso de calquera persoa" + } + }, + "question": "Esta tenda ofrece unha bomba de ar para uso de calquera persoa?" + }, + "bike_repair_rents-bikes": { + "mappings": { + "0": { + "then": "Esta tenda aluga bicicletas" + }, + "1": { + "then": "Esta tenda non aluga bicicletas" + } + }, + "question": "Esta tenda aluga bicicletas?" + }, + "bike_repair_repairs-bikes": { + "mappings": { + "0": { + "then": "Esta tenda arranxa bicicletas" + }, + "1": { + "then": "Esta tenda non arranxa bicicletas" + }, + "2": { + "then": "Esta tenda só arranxa bicicletas mercadas aquí" + }, + "3": { + "then": "Esta tenda só arranxa bicicletas dunha certa marca" + } + }, + "question": "Esta tenda arranxa bicicletas?" + }, + "bike_repair_second-hand-bikes": { + "mappings": { + "0": { + "then": "Esta tenda vende bicicletas de segunda man" + }, + "1": { + "then": "Esta tenda non vende bicicletas de segunda man" + }, + "2": { + "then": "Esta tenda só vende bicicletas de segunda man" + } + }, + "question": "Esta tenda vende bicicletas de segunda man?" + }, + "bike_repair_sells-bikes": { + "mappings": { + "0": { + "then": "Esta tenda vende bicicletas" + }, + "1": { + "then": "Esta tenda non vende bicicletas" + } + }, + "question": "Esta tenda vende bicicletas?" + }, + "bike_repair_tools-service": { + "mappings": { + "0": { + "then": "Hai ferramentas aquí para arranxar a túa propia bicicleta" + }, + "1": { + "then": "Non hai ferramentas aquí para arranxar a túa propia bicicleta" + } + }, + "question": "Hai ferramentas aquí para arranxar a túa propia bicicleta?" + }, + "bike_shop-email": { + "question": "Cal é o enderezo de correo electrónico de {name}?" + }, + "bike_shop-name": { + "question": "Cal é o nome desta tenda de bicicletas?", + "render": "Esta tenda de bicicletas chámase {name}" + }, + "bike_shop-phone": { + "question": "Cal é o número de teléfono de {name}?" + }, + "bike_shop-website": { + "question": "Cal é a páxina web de {name}?" + } + }, + "title": { + "mappings": { + "3": { + "then": "Arranxo de bicicletas {name}" + }, + "4": { + "then": "Tenda de bicicletas {name}" + }, + "5": { + "then": "Tenda/arranxo de bicicletas {name}" + } + }, + "render": "Tenda/arranxo de bicicletas" + } + }, + "drinking_water": { + "name": "Auga potábel", + "presets": { + "0": { + "title": "auga potábel" + } + }, + "title": { + "render": "Auga potábel" + } + }, + "ghost_bike": { + "name": "Bicicleta pantasma", + "presets": { + "0": { + "title": "Bicicleta pantasma" + } + }, + "title": { + "render": "Bicicleta pantasma" + } } - }, - "ghost_bike": { - "name": "Bicicleta pantasma", - "title": { - "render": "Bicicleta pantasma" - } - } } \ No newline at end of file diff --git a/langs/layers/hu.json b/langs/layers/hu.json index 3610384bae..05fe688fa5 100644 --- a/langs/layers/hu.json +++ b/langs/layers/hu.json @@ -1,231 +1,655 @@ { - "artwork": { - "presets": { - "0": { - "title": "Műalkotás" - } - }, - "title": { - "mappings": { - "0": { - "then": "Műalkotás {name}" + "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" } - }, - "render": "Műalkotás" - } - }, - "bench": { - "name": "Padok", - "tagRenderings": { - "bench-backrest": { - "mappings": { - "0": { - "then": "Háttámla: Igen" - }, - "1": { - "then": "Háttámla: Nem" - } - }, - "question": "Van háttámlája ennek a padnak?" - }, - "bench-colour": { - "mappings": { - "0": { - "then": "Szín: barna" - }, - "1": { - "then": "Szín: zöld" - }, - "2": { - "then": "Szín: szürke" - }, - "3": { - "then": "Szín: fehér" - }, - "4": { - "then": "Szín: piros" - }, - "5": { - "then": "Szín: fekete" - }, - "6": { - "then": "Szín: kék" - }, - "7": { - "then": "Szín: sárga" - } - }, - "question": "Milyen színű a pad?", - "render": "Szín: {colour}" - }, - "bench-direction": { - "question": "Milyen irányba néz a pad?", - "render": "A pad {direction}° felé néz." - }, - "bench-material": { - "mappings": { - "0": { - "then": "Anyag: fa" - }, - "1": { - "then": "Anyag: fém" - }, - "2": { - "then": "Anyag: kő" - }, - "3": { - "then": "Anyag: beton" - }, - "4": { - "then": "Anyag: műanyag" - }, - "5": { - "then": "Anyag: acél" - } - }, - "question": "Miből van a pad (ülő része)?", - "render": "Anyag: {material}" - }, - "bench-seats": { - "question": "Hány ülőhely van ezen a padon?", - "render": "{seats} ülőhely" - } }, - "title": { - "render": "Pad" - } - }, - "bench_at_pt": { - "name": "Padok megállókban", - "tagRenderings": { - "bench_at_pt-name": { - "render": "{name}" - } + "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" + } }, - "title": { - "mappings": { - "0": { - "then": "Pad megállóban" + "artwork": { + "description": "Különféle műalkotások", + "name": "Műalkotások", + "presets": { + "0": { + "title": "Műalkotás" + } }, - "1": { - "then": "Pad fedett helyen" + "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": { + "then": "Műalkotás {name}" + } + }, + "render": "Műalkotás" } - }, - "render": "Pad" - } - }, - "bicycle_library": { - "description": "Létesítmény, ahonnan kerékpár kölcsönözhető hosszabb időre", - "tagRenderings": { - "bicycle-library-target-group": { - "mappings": { - "0": { - "then": "" - } - }, - "question": "Ki kölcsönözhet itt kerékpárt?" - }, - "bicycle_library-charge": { - "mappings": { - "0": { - "then": "A kerékpárkölcsönzés ingyenes" - } - }, - "question": "Mennyibe kerül egy kerékpár kölcsönzése?", - "render": "Egy kerékpár kölcsönzése {charge}" - } - } - }, - "bicycle_tube_vending_machine": { - "tagRenderings": { - "Still in use?": { - "mappings": { - "0": { - "then": "Az automata működik" - }, - "1": { - "then": "Az automata elromlott" - }, - "2": { - "then": "Az automata zárva van" - } - } - } - } - }, - "bike_parking": { - "name": "Kerékpáros parkoló", - "presets": { - "0": { - "title": "Kerékpáros parkoló" - } }, - "tagRenderings": { - "Bicycle parking type": { - "mappings": { - "0": { - "then": "\"U\" " - }, - "1": { - "then": "Kengyeles " - }, - "4": { - "then": "Kétszintű " - }, - "5": { - "then": "Fészer " - } + "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" + } }, - "question": "Milyen típusú ez a kerékpáros parkoló?", - "render": "Ez egy {bicycle_parking} típusú kerékpáros parkoló" - }, - "Is covered?": { - "mappings": { - "0": { - "then": "A parkoló fedett" - }, - "1": { - "then": "A parkoló nem fedett" - } - }, - "question": "Fedett ez a parkoló? (Beltéri parkoló esetén is válaszd a \"fedett\" opciót.)" - }, - "Underground?": { - "mappings": { - "1": { - "then": "Felszíni parkoló" - }, - "2": { - "then": "Tetőparkoló" - }, - "3": { - "then": "Felszíni parkoló" - }, - "4": { - "then": "Tetőparkoló" - } + "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?" + } } - } }, - "title": { - "render": "Kerékpáros parkoló" - } - }, - "ghost_bike": { - "name": "Emlékkerékpár", - "title": { - "render": "Emlékkerékpár" - } - }, - "shops": { - "tagRenderings": { - "shops-shop": { - "mappings": { - "5": { - "then": "Autószerelő" - } + "bench": { + "name": "Padok", + "tagRenderings": { + "bench-backrest": { + "mappings": { + "0": { + "then": "Háttámla van" + }, + "1": { + "then": "Háttámla nincs" + } + }, + "question": "Van-e háttámlája ennek a padnak?" + }, + "bench-colour": { + "mappings": { + "0": { + "then": "Szín: barna" + }, + "1": { + "then": "Szín: zöld" + }, + "2": { + "then": "Szín: szürke" + }, + "3": { + "then": "Szín: fehér" + }, + "4": { + "then": "Szín: piros" + }, + "5": { + "then": "Szín: fekete" + }, + "6": { + "then": "Szín: kék" + }, + "7": { + "then": "Szín: sárga" + } + }, + "question": "Milyen színű ez a pad?", + "render": "Szín: {colour}" + }, + "bench-direction": { + "question": "Milyen irányba néz a pad?", + "render": "A pad {direction}° felé néz." + }, + "bench-material": { + "mappings": { + "0": { + "then": "Anyag: fa" + }, + "1": { + "then": "Anyag: fém" + }, + "2": { + "then": "Anyag: kő" + }, + "3": { + "then": "Anyag: beton" + }, + "4": { + "then": "Anyag: műanyag" + }, + "5": { + "then": "Anyag: acél" + } + }, + "question": "Miből van a pad (ülő része)?", + "render": "Anyag: {material}" + }, + "bench-seats": { + "question": "Hány ülőhely van ezen a padon?", + "render": "{seats} ülőhely" + } + }, + "title": { + "render": "Pad" + } + }, + "bench_at_pt": { + "name": "Padok megállókban", + "tagRenderings": { + "bench_at_pt-name": { + "render": "{name}" + } + }, + "title": { + "mappings": { + "0": { + "then": "Pad megállóban" + }, + "1": { + "then": "Pad fedett helyen" + } + }, + "render": "Pad" + } + }, + "bicycle_library": { + "description": "Létesítmény, ahonnan kerékpár kölcsönözhető hosszabb időre", + "tagRenderings": { + "bicycle-library-target-group": { + "mappings": { + "0": { + "then": "" + } + }, + "question": "Ki kölcsönözhet itt kerékpárt?" + }, + "bicycle_library-charge": { + "mappings": { + "0": { + "then": "A kerékpárkölcsönzés ingyenes" + } + }, + "question": "Mennyibe kerül egy kerékpár kölcsönzése?", + "render": "Egy kerékpár kölcsönzése {charge}" + } + } + }, + "bicycle_rental": { + "tagRenderings": { + "bicycle_rental_type": { + "mappings": { + "5": { + "then": "Ez egy leadási pont: ennek a kerékpárkölcsönzőnek a kijelölt kerékpártárolója" + } + } + } + } + }, + "bicycle_tube_vending_machine": { + "tagRenderings": { + "Still in use?": { + "mappings": { + "0": { + "then": "Ez az automata működik" + }, + "1": { + "then": "Ez az automata elromlott" + }, + "2": { + "then": "Ez az automata zárva van" + } + } + } + } + }, + "bike_parking": { + "name": "Kerékpártároló", + "presets": { + "0": { + "title": "Kerékpártároló" + } + }, + "tagRenderings": { + "Bicycle parking type": { + "mappings": { + "0": { + "then": "Korlát" + }, + "1": { + "then": "Kerékbefogó hurok" + }, + "4": { + "then": "Kétszintű" + }, + "5": { + "then": "Fészer" + } + }, + "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": "Ez a parkoló fedett" + }, + "1": { + "then": "Ez a parkoló nem fedett" + } + }, + "question": "Fedett-e ez a parkoló? Beltéri parkolónál is válaszd a „fedett” opciót." + }, + "Underground?": { + "mappings": { + "1": { + "then": "Felszíni parkoló" + }, + "2": { + "then": "Tetőparkoló" + }, + "3": { + "then": "Felszíni parkoló" + } + } + } + }, + "title": { + "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árok", + "presets": { + "0": { + "title": "Emlékkerékpár" + } + }, + "title": { + "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": { + "mappings": { + "5": { + "then": "Autószerelő" + } + } + } } - } } - } } \ No newline at end of file diff --git a/langs/layers/id.json b/langs/layers/id.json index 3ac8616f94..5c30356901 100644 --- a/langs/layers/id.json +++ b/langs/layers/id.json @@ -1,364 +1,381 @@ { - "artwork": { - "description": "Beragam karya seni", - "name": "Karya seni", - "presets": { - "0": { - "title": "Karya Seni" - } - }, - "tagRenderings": { - "artwork-artist_name": { - "question": "Seniman mana yang menciptakan ini?", - "render": "Dibuat oleh {artist_name}" - }, - "artwork-artwork_type": { - "mappings": { - "0": { - "then": "Arsitektur" - }, - "1": { - "then": "Mural" - }, - "2": { - "then": "Lukisan" - }, - "3": { - "then": "Patung" - }, - "6": { - "then": "Batu" - }, - "7": { - "then": "Instalasi" - }, - "8": { - "then": "Graffiti" - }, - "9": { - "then": "Relief" - }, - "10": { - "then": "Azulejo (ubin dekoratif Spanyol)" - } - }, - "question": "Apa jenis karya seni ini?", - "render": "Ini adalah {artwork_type}" - }, - "artwork-website": { - "question": "Adakah situs web mengenai informasi lebih lanjut tentang karya seni ini?", - "render": "Info lanjut tersedia di laman web ini" - }, - "artwork-wikidata": { - "question": "Entri Wikidata mana yang sesuai dengan karya seni ini?", - "render": "Sesuai dengan {wikidata}" - } - }, - "title": { - "mappings": { - "0": { - "then": "Karya Seni {name}" + "address": { + "description": "Alamat", + "name": "Alamat yang dikenal di OSM", + "tagRenderings": { + "fixme": { + "question": "Apa yang harus diperbaiki di sini? Tolong jelaskan" + }, + "housenumber": { + "mappings": { + "0": { + "then": "Bangunan ini tidak memiliki nomor rumah" + } + } + } } - }, - "render": "Karya Seni" - } - }, - "bench": { - "name": "Bangku", - "presets": { - "0": { - "title": "bangku" - } }, - "tagRenderings": { - "bench-backrest": { - "mappings": { - "0": { - "then": "Sandaran: Ya" - }, - "1": { - "then": "Sandaran: Tidak" - } + "artwork": { + "description": "Beragam karya seni", + "name": "Karya seni", + "presets": { + "0": { + "title": "Karya Seni" + } }, - "question": "Apakah bangku ini memiliki sandaran?" - }, - "bench-colour": { - "render": "Warna: {colour}" - }, - "bench-seats": { - "render": "{seats} kursi" - } - }, - "title": { - "render": "Bangku" - } - }, - "bench_at_pt": { - "tagRenderings": { - "bench_at_pt-name": { - "render": "{name}" - } - }, - "title": { - "render": "Bangku" - } - }, - "bike_parking": { - "tagRenderings": { - "Access": { - "render": "{access}" - } - } - }, - "bike_shop": { - "tagRenderings": { - "bike_shop-website": { - "question": "URL {name} apa?" - } - } - }, - "cycleways_and_roads": { - "tagRenderings": { - "Maxspeed (for road)": { - "mappings": { - "3": { - "then": "Kecepatan maksimum 70 km/jam" - }, - "4": { - "then": "Kecepatan maksimum 90 km/jam" - } + "tagRenderings": { + "artwork-artist_name": { + "question": "Seniman mana yang menciptakan ini?", + "render": "Dibuat oleh {artist_name}" + }, + "artwork-artwork_type": { + "mappings": { + "0": { + "then": "Arsitektur" + }, + "1": { + "then": "Mural" + }, + "2": { + "then": "Lukisan" + }, + "3": { + "then": "Patung" + }, + "6": { + "then": "Batu" + }, + "7": { + "then": "Instalasi" + }, + "8": { + "then": "Graffiti" + }, + "9": { + "then": "Relief" + }, + "10": { + "then": "Azulejo (ubin dekoratif Spanyol)" + } + }, + "question": "Apa jenis karya seni ini?", + "render": "Ini adalah {artwork_type}" + }, + "artwork-website": { + "question": "Adakah situs web mengenai informasi lebih lanjut tentang karya seni ini?", + "render": "Info lanjut tersedia di laman web ini" + }, + "artwork-wikidata": { + "question": "Entri Wikidata mana yang sesuai dengan karya seni ini?", + "render": "Sesuai dengan {wikidata}" + } }, - "question": "Berapa kecepatan maksimum di jalan ini?", - "render": "Kecepatan maksimum di jalan ini adalah {maxspeed} km/jam" - }, - "Surface of the road": { - "mappings": { - "1": { - "then": "Jalur sepeda ini diaspal" - }, - "2": { - "then": "Jalur sepeda ini terbuat dari aspal" - }, - "3": { - "then": "Jalur sepeda ini terbuat dari batu paving halus" - }, - "4": { - "then": "Jalur sepeda ini terbuat dari beton" - }, - "5": { - "then": "Jalur sepeda ini terbuat dari cobblestone (unhewn atau sett)" - }, - "6": { - "then": "Jalur sepeda ini terbuat dari batu bulat alami" - }, - "8": { - "then": "Jalur sepeda ini terbuat dari kayu" - }, - "9": { - "then": "Jalur sepeda ini terbuat dari kerikil" - }, - "10": { - "then": "Jalur sepeda ini terbuat dari kerikil halus" - }, - "11": { - "then": "Jalur sepeda ini terbuat dari batu kerikil" - }, - "12": { - "then": "Jalur sepeda ini terbuat dari tanah alami" - } - }, - "question": "Permukaan jalannya terbuat dari apa?", - "render": "Jalan ini terbuat dari {surface}" - }, - "Surface of the street": { - "mappings": { - "0": { - "then": "Dapat digunakan untuk roller tipis: rollerblade, skateboard" - }, - "1": { - "then": "Dapat digunakan untuk roda tipis: sepeda balap" - }, - "2": { - "then": "Dapat digunakan untuk roda normal: sepeda kota, kursi roda, skuter" - }, - "3": { - "then": "Dapat digunakan untuk roda yang kuat: sepeda trekking, mobil, becak" - }, - "5": { - "then": "Dapat digunakan untuk kendaraan off-road: kendaraan off-road berat" - }, - "6": { - "then": "Dapat digunakan untuk kendaraan off-road khusus: traktor, ATV" - } + "title": { + "mappings": { + "0": { + "then": "Karya Seni {name}" + } + }, + "render": "Karya Seni" } - }, - "cyclelan-segregation": { - "mappings": { - "0": { - "then": "Jalur sepeda ini dipisahkan oleh garis putus-putus" - }, - "1": { - "then": "Jalur sepeda ini dipisahkan oleh garis solid" - }, - "2": { - "then": "Jalur sepeda ini dipisahkan oleh jalur parkir" - }, - "3": { - "then": "Jalur sepeda ini dipisahkan oleh kerb" - } + }, + "bench": { + "name": "Bangku", + "presets": { + "0": { + "title": "bangku" + } }, - "question": "Bagaimana jalur sepeda ini terpisah dari jalan?" - }, - "cycleway-lane-track-traffic-signs": { - "mappings": { - "0": { - "then": "Jalur sepeda wajib " - }, - "1": { - "then": "Jalur sepeda wajib (dengan tanda tambahan)
" - }, - "2": { - "then": "Jalur pejalan kaki/sepeda terpisah " - }, - "3": { - "then": "Jalur pejalan kaki/sepeda tidak terpisah " - }, - "4": { - "then": "Tidak ada rambu lalu lintas" - } + "tagRenderings": { + "bench-backrest": { + "mappings": { + "0": { + "then": "Sandaran: Ya" + }, + "1": { + "then": "Sandaran: Tidak" + } + }, + "question": "Apakah bangku ini memiliki sandaran?" + }, + "bench-colour": { + "render": "Warna: {colour}" + }, + "bench-seats": { + "render": "{seats} kursi" + } }, - "question": "Rambu lalu lintas apa yang dimiliki jalur sepeda ini?" - }, - "cycleway-segregation": { - "mappings": { - "0": { - "then": "Jalur sepeda ini dipisahkan oleh garis putus-putus" - }, - "1": { - "then": "Jalur sepeda ini dipisahkan oleh garis solid" - }, - "2": { - "then": "Jalur sepeda ini dipisahkan oleh jalur parkir" - }, - "3": { - "then": "Jalur sepeda ini dipisahkan oleh kerb" - } + "title": { + "render": "Bangku" + } + }, + "bench_at_pt": { + "tagRenderings": { + "bench_at_pt-name": { + "render": "{name}" + } }, - "question": "Bagaimana jalur sepeda ini dipisahkan dari jalan?" - }, - "cycleway-traffic-signs": { - "mappings": { - "0": { - "then": "Jalur sepeda wajib " - } + "title": { + "render": "Bangku" } - } - } - }, - "defibrillator": { - "tagRenderings": { - "defibrillator-description": { - "render": "Informasi tambahan: {description}" - } - } - }, - "drinking_water": { - "name": "Air minum", - "presets": { - "0": { - "title": "air minum" - } }, - "title": { - "render": "Air minum" - } - }, - "ghost_bike": { - "tagRenderings": { - "ghost_bike-inscription": { - "render": "{inscription}" - }, - "ghost_bike-source": { - "render": "Informasi lanjut tersedia" - } - } - }, - "nature_reserve": { - "tagRenderings": { - "Email": { - "render": "{email}" - }, - "phone": { - "render": "{phone}" - } - } - }, - "playground": { - "tagRenderings": { - "playground-email": { - "render": "{email}" - }, - "playground-phone": { - "render": "{phone}" - } - } - }, - "shops": { - "tagRenderings": { - "shops-email": { - "render": "{email}" - }, - "shops-phone": { - "render": "{phone}" - }, - "shops-shop": { - "mappings": { - "5": { - "then": "Bengkel Mobil" - } + "bike_parking": { + "tagRenderings": { + "Access": { + "render": "{access}" + } } - }, - "shops-website": { - "render": "{website}" - } - } - }, - "tree_node": { - "presets": { - "2": { - "title": "Pohon" - } }, - "tagRenderings": { - "tree_node-name": { - "render": "Nama: {name}" - } - }, - "title": { - "mappings": { - "0": { - "then": "{name}" + "bike_shop": { + "tagRenderings": { + "bike_shop-website": { + "question": "URL {name} apa?" + } } - } - } - }, - "viewpoint": { - "name": "Sudut pandang", - "presets": { - "0": { - "title": "Sudut pandang" - } }, - "tagRenderings": { - "viewpoint-description": { - "question": "Apakah Anda ingin menambahkan deskripsi?" - } + "cycleways_and_roads": { + "tagRenderings": { + "Maxspeed (for road)": { + "mappings": { + "3": { + "then": "Kecepatan maksimum 70 km/jam" + }, + "4": { + "then": "Kecepatan maksimum 90 km/jam" + } + }, + "question": "Berapa kecepatan maksimum di jalan ini?", + "render": "Kecepatan maksimum di jalan ini adalah {maxspeed} km/jam" + }, + "Surface of the road": { + "mappings": { + "1": { + "then": "Jalur sepeda ini diaspal" + }, + "2": { + "then": "Jalur sepeda ini terbuat dari aspal" + }, + "3": { + "then": "Jalur sepeda ini terbuat dari batu paving halus" + }, + "4": { + "then": "Jalur sepeda ini terbuat dari beton" + }, + "5": { + "then": "Jalur sepeda ini terbuat dari cobblestone (unhewn atau sett)" + }, + "6": { + "then": "Jalur sepeda ini terbuat dari batu bulat alami" + }, + "8": { + "then": "Jalur sepeda ini terbuat dari kayu" + }, + "9": { + "then": "Jalur sepeda ini terbuat dari kerikil" + }, + "10": { + "then": "Jalur sepeda ini terbuat dari kerikil halus" + }, + "11": { + "then": "Jalur sepeda ini terbuat dari batu kerikil" + }, + "12": { + "then": "Jalur sepeda ini terbuat dari tanah alami" + } + }, + "question": "Permukaan jalannya terbuat dari apa?", + "render": "Jalan ini terbuat dari {surface}" + }, + "Surface of the street": { + "mappings": { + "0": { + "then": "Dapat digunakan untuk roller tipis: rollerblade, skateboard" + }, + "1": { + "then": "Dapat digunakan untuk roda tipis: sepeda balap" + }, + "2": { + "then": "Dapat digunakan untuk roda normal: sepeda kota, kursi roda, skuter" + }, + "3": { + "then": "Dapat digunakan untuk roda yang kuat: sepeda trekking, mobil, becak" + }, + "5": { + "then": "Dapat digunakan untuk kendaraan off-road: kendaraan off-road berat" + }, + "6": { + "then": "Dapat digunakan untuk kendaraan off-road khusus: traktor, ATV" + } + } + }, + "cyclelan-segregation": { + "mappings": { + "0": { + "then": "Jalur sepeda ini dipisahkan oleh garis putus-putus" + }, + "1": { + "then": "Jalur sepeda ini dipisahkan oleh garis solid" + }, + "2": { + "then": "Jalur sepeda ini dipisahkan oleh jalur parkir" + }, + "3": { + "then": "Jalur sepeda ini dipisahkan oleh kerb" + } + }, + "question": "Bagaimana jalur sepeda ini terpisah dari jalan?" + }, + "cycleway-lane-track-traffic-signs": { + "mappings": { + "0": { + "then": "Jalur sepeda wajib" + }, + "1": { + "then": "Jalur sepeda wajib (dengan tanda tambahan)
" + }, + "2": { + "then": "Jalur pejalan kaki/sepeda terpisah" + }, + "3": { + "then": "Jalur pejalan kaki/sepeda tidak terpisah" + }, + "4": { + "then": "Tidak ada rambu lalu lintas" + } + }, + "question": "Rambu lalu lintas apa yang dimiliki jalur sepeda ini?" + }, + "cycleway-segregation": { + "mappings": { + "0": { + "then": "Jalur sepeda ini dipisahkan oleh garis putus-putus" + }, + "1": { + "then": "Jalur sepeda ini dipisahkan oleh garis solid" + }, + "2": { + "then": "Jalur sepeda ini dipisahkan oleh jalur parkir" + }, + "3": { + "then": "Jalur sepeda ini dipisahkan oleh kerb" + } + }, + "question": "Bagaimana jalur sepeda ini dipisahkan dari jalan?" + }, + "cycleway-traffic-signs": { + "mappings": { + "0": { + "then": "Jalur sepeda wajib" + } + } + } + } }, - "title": { - "render": "Sudut pandang" + "defibrillator": { + "tagRenderings": { + "defibrillator-description": { + "render": "Informasi tambahan: {description}" + } + } + }, + "drinking_water": { + "name": "Air minum", + "presets": { + "0": { + "title": "air minum" + } + }, + "title": { + "render": "Air minum" + } + }, + "ghost_bike": { + "tagRenderings": { + "ghost_bike-inscription": { + "render": "{inscription}" + }, + "ghost_bike-source": { + "render": "Informasi lanjut tersedia" + } + } + }, + "hydrant": { + "tagRenderings": { + "hydrant-type": { + "mappings": { + "3": { + "then": "Jenis dinding." + } + } + } + } + }, + "nature_reserve": { + "tagRenderings": { + "Email": { + "render": "{email}" + } + } + }, + "playground": { + "tagRenderings": { + "playground-email": { + "render": "{email}" + }, + "playground-phone": { + "render": "{phone}" + } + } + }, + "shops": { + "tagRenderings": { + "shops-email": { + "render": "{email}" + }, + "shops-phone": { + "render": "{phone}" + }, + "shops-shop": { + "mappings": { + "5": { + "then": "Bengkel Mobil" + } + } + }, + "shops-website": { + "render": "{website}" + } + } + }, + "tree_node": { + "presets": { + "2": { + "title": "Pohon" + } + }, + "tagRenderings": { + "tree_node-name": { + "render": "Nama: {name}" + } + } + }, + "viewpoint": { + "name": "Sudut pandang", + "presets": { + "0": { + "title": "Sudut pandang" + } + }, + "tagRenderings": { + "viewpoint-description": { + "question": "Apakah Anda ingin menambahkan deskripsi?" + } + }, + "title": { + "render": "Sudut pandang" + } + }, + "watermill": { + "name": "Kincir Air" } - }, - "watermill": { - "name": "Kincir Air" - } } \ No newline at end of file diff --git a/langs/layers/it.json b/langs/layers/it.json index 2f034ce891..b17dc48715 100644 --- a/langs/layers/it.json +++ b/langs/layers/it.json @@ -1,1823 +1,1996 @@ { - "artwork": { - "description": "Diverse opere d’arte", - "name": "Opere d’arte", - "presets": { - "0": { - "title": "Opera d’arte" - } - }, - "tagRenderings": { - "artwork-artist_name": { - "question": "Quale artista ha creato quest’opera?", - "render": "Creato da {artist_name}" - }, - "artwork-artwork_type": { - "mappings": { - "0": { - "then": "Architettura" - }, - "1": { - "then": "Murale" - }, - "2": { - "then": "Dipinto" - }, - "3": { - "then": "Scultura" - }, - "4": { - "then": "Statua" - }, - "5": { - "then": "Busto" - }, - "6": { - "then": "Masso" - }, - "7": { - "then": "Istallazione" - }, - "8": { - "then": "Graffiti" - }, - "9": { - "then": "Rilievo" - }, - "10": { - "then": "Azulejo (ornamento decorativo piastrellato spagnolo)" - }, - "11": { - "then": "Mosaico di piastrelle" - } + "ambulancestation": { + "description": "La stazione delle ambulanze è un’area per lo stoccaggio delle ambulanze, dell’equipaggiamento medico, dei dispositivi di protezione individuale e di altre forniture medicali.", + "name": "Carta delle stazioni delle ambulanze", + "presets": { + "0": { + "description": "Aggiungi una stazione delle ambulanza alla mappa", + "title": "Stazione delle ambulanze" + } }, - "question": "Che tipo di opera d’arte è questo?", - "render": "Si tratta di un {artwork_type}" - }, - "artwork-website": { - "question": "Esiste un sito web con maggiori informazioni su quest’opera?", - "render": "Ulteriori informazioni su questo sito web" - }, - "artwork-wikidata": { - "question": "Quale elemento Wikidata corrisponde a quest’opera d’arte?", - "render": "Corrisponde a {wikidata}" - } - }, - "title": { - "mappings": { - "0": { - "then": "Opera {name}" + "tagRenderings": { + "ambulance-agency": { + "question": "Quale agenzia gestisce questa stazione?", + "render": "Questa stazione è gestita da {operator}." + }, + "ambulance-name": { + "question": "Qual è il nome di questa stazione delle ambulanze?", + "render": "Questa stazione è chiamata {name}." + }, + "ambulance-operator-type": { + "mappings": { + "0": { + "then": "La stazione è gestita dal governo." + }, + "1": { + "then": "La stazione è gestita dalla comunità o un’organizzazione non ufficiale." + }, + "2": { + "then": "La stazione è gestita da un gruppo ufficiale di volontari." + }, + "3": { + "then": "La stazione è gestita da un privato." + } + }, + "question": "Com’è classificato il gestore della stazione?", + "render": "L’operatore è un ente {operator:type}." + }, + "ambulance-place": { + "question": "Dove si trova la stazione? (ad es. quartiere, paese o città)", + "render": "La stazione si trova a {addr:place}." + }, + "ambulance-street": { + "question": " Come si chiama la strada in cui si trova questa stazione?", + "render": "Questa stazione si trova in {addr:street}." + } + }, + "title": { + "render": "Stazione delle ambulanze" } - }, - "render": "Opera d’arte" - } - }, - "bench": { - "name": "Panchine", - "presets": { - "0": { - "title": "panchina" - } }, - "tagRenderings": { - "bench-backrest": { - "mappings": { - "0": { - "then": "Schienale: Sì" - }, - "1": { - "then": "Schienale: No" - } + "artwork": { + "description": "Diverse opere d’arte", + "name": "Opere d’arte", + "presets": { + "0": { + "title": "Opera d’arte" + } }, - "question": "Questa panchina ha lo schienale?" - }, - "bench-colour": { - "mappings": { - "0": { - "then": "Colore: marrone" - }, - "1": { - "then": "Colore: verde" - }, - "2": { - "then": "Colore: grigio" - }, - "3": { - "then": "Colore: bianco" - }, - "4": { - "then": "Colore: rosso" - }, - "5": { - "then": "Colore: nero" - }, - "6": { - "then": "Colore: blu" - }, - "7": { - "then": "Colore: giallo" - } + "tagRenderings": { + "artwork-artist_name": { + "question": "Quale artista ha creato quest’opera?", + "render": "Creato da {artist_name}" + }, + "artwork-artwork_type": { + "mappings": { + "0": { + "then": "Architettura" + }, + "1": { + "then": "Murale" + }, + "2": { + "then": "Dipinto" + }, + "3": { + "then": "Scultura" + }, + "4": { + "then": "Statua" + }, + "5": { + "then": "Busto" + }, + "6": { + "then": "Masso" + }, + "7": { + "then": "Istallazione" + }, + "8": { + "then": "Graffiti" + }, + "9": { + "then": "Rilievo" + }, + "10": { + "then": "Azulejo (ornamento decorativo piastrellato spagnolo)" + }, + "11": { + "then": "Mosaico di piastrelle" + } + }, + "question": "Che tipo di opera d’arte è questo?", + "render": "Si tratta di un {artwork_type}" + }, + "artwork-website": { + "question": "Esiste un sito web con maggiori informazioni su quest’opera?", + "render": "Ulteriori informazioni su questo sito web" + }, + "artwork-wikidata": { + "question": "Quale elemento Wikidata corrisponde a quest’opera d’arte?", + "render": "Corrisponde a {wikidata}" + } }, - "question": "Di che colore è questa panchina?", - "render": "Colore: {colour}" - }, - "bench-direction": { - "question": "In che direzione si guarda quando si è seduti su questa panchina?", - "render": "Quando si è seduti su questa panchina, si guarda verso {direction}°." - }, - "bench-material": { - "mappings": { - "0": { - "then": "Materiale: legno" - }, - "1": { - "then": "Materiale: metallo" - }, - "2": { - "then": "Materiale: pietra" - }, - "3": { - "then": "Materiale: cemento" - }, - "4": { - "then": "Materiale: plastica" - }, - "5": { - "then": "Materiale: acciaio" - } - }, - "question": "Di che materiale è fatta questa panchina?", - "render": "Materiale: {material}" - }, - "bench-seats": { - "question": "Quanti posti ha questa panchina?", - "render": "{seats} posti" - }, - "bench-survey:date": { - "question": "Quando è stata verificata l’ultima volta questa panchina?", - "render": "Questa panchina è stata controllata l’ultima volta in data {survey:date}" - } - }, - "title": { - "render": "Panchina" - } - }, - "bench_at_pt": { - "name": "Panchine alle fermate del trasporto pubblico", - "tagRenderings": { - "bench_at_pt-bench_type": { - "mappings": { - "1": { - "then": "Panca in piedi" - } + "title": { + "mappings": { + "0": { + "then": "Opera {name}" + } + }, + "render": "Opera d’arte" } - }, - "bench_at_pt-name": { - "render": "{name}" - } }, - "title": { - "mappings": { - "0": { - "then": "Panchina alla fermata del trasporto pubblico" + "bench": { + "name": "Panchine", + "presets": { + "0": { + "title": "panchina" + } }, - "1": { - "then": "Panchina in un riparo" + "tagRenderings": { + "bench-backrest": { + "mappings": { + "0": { + "then": "Schienale: Sì" + }, + "1": { + "then": "Schienale: No" + } + }, + "question": "Questa panchina ha lo schienale?" + }, + "bench-colour": { + "mappings": { + "0": { + "then": "Colore: marrone" + }, + "1": { + "then": "Colore: verde" + }, + "2": { + "then": "Colore: grigio" + }, + "3": { + "then": "Colore: bianco" + }, + "4": { + "then": "Colore: rosso" + }, + "5": { + "then": "Colore: nero" + }, + "6": { + "then": "Colore: blu" + }, + "7": { + "then": "Colore: giallo" + } + }, + "question": "Di che colore è questa panchina?", + "render": "Colore: {colour}" + }, + "bench-direction": { + "question": "In che direzione si guarda quando si è seduti su questa panchina?", + "render": "Quando si è seduti su questa panchina, si guarda verso {direction}°." + }, + "bench-material": { + "mappings": { + "0": { + "then": "Materiale: legno" + }, + "1": { + "then": "Materiale: metallo" + }, + "2": { + "then": "Materiale: pietra" + }, + "3": { + "then": "Materiale: cemento" + }, + "4": { + "then": "Materiale: plastica" + }, + "5": { + "then": "Materiale: acciaio" + } + }, + "question": "Di che materiale è fatta questa panchina?", + "render": "Materiale: {material}" + }, + "bench-seats": { + "question": "Quanti posti ha questa panchina?", + "render": "{seats} posti" + }, + "bench-survey:date": { + "question": "Quando è stata verificata l’ultima volta questa panchina?", + "render": "Questa panchina è stata controllata l’ultima volta in data {survey:date}" + } + }, + "title": { + "render": "Panchina" } - }, - "render": "Panchina" - } - }, - "bicycle_library": { - "description": "Una struttura dove le biciclette possono essere prestate per periodi di tempo più lunghi", - "name": "Bici in prestito", - "presets": { - "0": { - "description": "Una ciclo-teca o «bici in prestito» ha una collezione di bici che possno essere prestate", - "title": "Bici in prestito" - } }, - "tagRenderings": { - "bicycle-library-target-group": { - "mappings": { - "0": { - "then": "Sono disponibili biciclette per bambini" - }, - "1": { - "then": "Sono disponibili biciclette per adulti" - }, - "2": { - "then": "Sono disponibili biciclette per disabili" - } + "bench_at_pt": { + "name": "Panchine alle fermate del trasporto pubblico", + "tagRenderings": { + "bench_at_pt-bench_type": { + "mappings": { + "1": { + "then": "Panca in piedi" + } + } + }, + "bench_at_pt-name": { + "render": "{name}" + } }, - "question": "Chi può prendere in prestito le biciclette qua?" - }, - "bicycle_library-charge": { - "mappings": { - "0": { - "then": "Il prestito di una bicicletta è gratuito" - }, - "1": { - "then": "Il prestito di una bicicletta costa 20 €/anno più 20 € di garanzia" - } - }, - "question": "Quanto costa il prestito di una bicicletta?", - "render": "Il prestito di una bicicletta costa {charge}" - }, - "bicycle_library-name": { - "question": "Qual è il nome di questo “bici in prestito”?", - "render": "Il “bici in prestito” è chiamato {name}" - } - }, - "title": { - "render": "Bici in prestito" - } - }, - "bicycle_tube_vending_machine": { - "name": "Distributore automatico di camere d’aria per bici", - "presets": { - "0": { - "title": "Distributore automatico di camere d’aria per bici" - } - }, - "tagRenderings": { - "Still in use?": { - "mappings": { - "0": { - "then": "Il distributore automatico funziona" - }, - "1": { - "then": "Il distributore automatico è guasto" - }, - "2": { - "then": "Il distributore automatico è spento" - } - }, - "question": "Questo distributore automatico funziona ancora?", - "render": "Lo stato operativo è {operational_status}" - } - }, - "title": { - "render": "Distributore automatico di camere d’aria per bici" - } - }, - "bike_cafe": { - "name": "Caffè in bici", - "presets": { - "0": { - "title": "Caffè in bici" - } - }, - "tagRenderings": { - "bike_cafe-bike-pump": { - "mappings": { - "0": { - "then": "Questo caffè in bici offre una pompa per bici liberamente utilizzabile" - }, - "1": { - "then": "Questo caffè in bici non offre una pompa per bici liberamente utilizzabile" - } - }, - "question": "Questo caffè in bici offre una pompa per bici che chiunque può utilizzare?" - }, - "bike_cafe-email": { - "question": "Qual è l’indirizzo email di {name}?" - }, - "bike_cafe-name": { - "question": "Qual è il nome di questo caffè in bici?", - "render": "Questo caffè in bici è chiamato {name}" - }, - "bike_cafe-opening_hours": { - "question": "Quando è aperto questo caffè in bici?" - }, - "bike_cafe-phone": { - "question": "Qual è il numero di telefono di {name}?" - }, - "bike_cafe-repair-service": { - "mappings": { - "0": { - "then": "Questo caffè in bici ripara le bici" - }, - "1": { - "then": "Questo caffè in bici non ripara le bici" - } - }, - "question": "Questo caffè in bici ripara le bici?" - }, - "bike_cafe-repair-tools": { - "mappings": { - "0": { - "then": "Questo caffè in bici fornisce degli attrezzi per la riparazione fai-da-te" - }, - "1": { - "then": "Questo caffè in bici non fornisce degli attrezzi per la riparazione fai-da-te" - } - }, - "question": "Ci sono degli strumenti per riparare la propria bicicletta?" - }, - "bike_cafe-website": { - "question": "Qual è il sito web di {name}?" - } - }, - "title": { - "mappings": { - "0": { - "then": "Caffè in bici {name}" + "title": { + "mappings": { + "0": { + "then": "Panchina alla fermata del trasporto pubblico" + }, + "1": { + "then": "Panchina in un riparo" + } + }, + "render": "Panchina" } - }, - "render": "Caffè in bici" - } - }, - "bike_cleaning": { - "name": "Servizio lavaggio bici", - "presets": { - "0": { - "title": "Servizio lavaggio bici" - } }, - "title": { - "mappings": { - "0": { - "then": "Servizio lavaggio bici {name}" + "bicycle_library": { + "description": "Una struttura dove le biciclette possono essere prestate per periodi di tempo più lunghi", + "name": "Bici in prestito", + "presets": { + "0": { + "description": "Una ciclo-teca o «bici in prestito» ha una collezione di bici che possno essere prestate", + "title": "Bici in prestito" + } + }, + "tagRenderings": { + "bicycle-library-target-group": { + "mappings": { + "0": { + "then": "Sono disponibili biciclette per bambini" + }, + "1": { + "then": "Sono disponibili biciclette per adulti" + }, + "2": { + "then": "Sono disponibili biciclette per disabili" + } + }, + "question": "Chi può prendere in prestito le biciclette qua?" + }, + "bicycle_library-charge": { + "mappings": { + "0": { + "then": "Il prestito di una bicicletta è gratuito" + }, + "1": { + "then": "Il prestito di una bicicletta costa 20 €/anno più 20 € di garanzia" + } + }, + "question": "Quanto costa il prestito di una bicicletta?", + "render": "Il prestito di una bicicletta costa {charge}" + }, + "bicycle_library-name": { + "question": "Qual è il nome di questo “bici in prestito”?", + "render": "Il “bici in prestito” è chiamato {name}" + } + }, + "title": { + "render": "Bici in prestito" } - }, - "render": "Servizio lavaggio bici" - } - }, - "bike_parking": { - "name": "Parcheggio bici", - "presets": { - "0": { - "title": "Parcheggio bici" - } }, - "tagRenderings": { - "Access": { - "mappings": { - "0": { - "then": "Accessibile pubblicamente" - }, - "1": { - "then": "Accesso destinato principalmente ai visitatori di un’attività" - }, - "2": { - "then": "Accesso limitato ai membri di una scuola, una compagnia o un’organizzazione" - } + "bicycle_tube_vending_machine": { + "name": "Distributore automatico di camere d’aria per bici", + "presets": { + "0": { + "title": "Distributore automatico di camere d’aria per bici" + } }, - "question": "Chi può usare questo parcheggio bici?", - "render": "{access}" - }, - "Bicycle parking type": { - "mappings": { - "0": { - "then": "Archetti " - }, - "1": { - "then": "Scolapiatti " - }, - "2": { - "then": "Blocca manubrio " - }, - "3": { - "then": "Rastrelliera " - }, - "4": { - "then": "A due piani " - }, - "5": { - "then": "Rimessa " - }, - "6": { - "then": "Colonnina " - }, - "7": { - "then": "Una zona del pavimento che è marcata per il parcheggio delle bici" - } + "tagRenderings": { + "Still in use?": { + "mappings": { + "0": { + "then": "Il distributore automatico funziona" + }, + "1": { + "then": "Il distributore automatico è guasto" + }, + "2": { + "then": "Il distributore automatico è spento" + } + }, + "question": "Questo distributore automatico funziona ancora?", + "render": "Lo stato operativo è {operational_status}" + } }, - "question": "Di che tipo di parcheggio bici si tratta?", - "render": "È un parcheggio bici del tipo: {bicycle_parking}" - }, - "Capacity": { - "question": "Quante biciclette entrano in questo parcheggio per bici (incluse le eventuali bici da trasporto)?", - "render": "Posti per {capacity} bici" - }, - "Cargo bike capacity?": { - "question": "Quante bici da trasporto entrano in questo parcheggio per bici?", - "render": "Questo parcheggio può contenere {capacity:cargo_bike} bici da trasporto" - }, - "Cargo bike spaces?": { - "mappings": { - "0": { - "then": "Questo parcheggio ha posto per bici da trasporto" - }, - "1": { - "then": "Questo parcheggio ha posti destinati (ufficialmente) alle bici da trasporto." - }, - "2": { - "then": "Il parcheggio delle bici da trasporto è proibito" - } - }, - "question": "Questo parcheggio dispone di posti specifici per le bici da trasporto?" - }, - "Is covered?": { - "mappings": { - "0": { - "then": "È un parcheggio coperto (ha un tetto)" - }, - "1": { - "then": "Non è un parcheggio coperto" - } - }, - "question": "È un parcheggio coperto? Indicare “coperto” per parcheggi all’interno." - }, - "Underground?": { - "mappings": { - "0": { - "then": "Parcheggio sotterraneo" - }, - "1": { - "then": "Parcheggio in superficie" - }, - "2": { - "then": "Parcheggio sul tetto" - }, - "3": { - "then": "Parcheggio in superficie" - }, - "4": { - "then": "Parcheggio sul tetto" - } - }, - "question": "Qual è la posizione relativa di questo parcheggio bici?" - } - }, - "title": { - "render": "Parcheggio bici" - } - }, - "bike_repair_station": { - "name": "Stazioni bici (riparazione, gonfiaggio o entrambi)", - "presets": { - "0": { - "description": "Un dispositivo per gonfiare le proprie gomme in un luogo fisso pubblicamente accessibile.

Esempi di pompe per biciclette

", - "title": "Pompa per bici" - }, - "1": { - "description": "Un dispositivo con attrezzi per riparare la tua bici e una pompa in un luogo fisso. Gli attrezzi sono spesso attaccati ad una catena per prevenire il furto.

Esempio

", - "title": "Stazione di riparazione bici e pompa" - }, - "2": { - "title": "Stazione di riparazione bici senza pompa" - } - }, - "tagRenderings": { - "Operational status": { - "mappings": { - "0": { - "then": "La pompa per bici è guasta" - }, - "1": { - "then": "La pompa per bici funziona" - } - }, - "question": "La pompa per bici è sempre funzionante?" - }, - "bike_repair_station-available-services": { - "mappings": { - "0": { - "then": "C’è solamente una pompa presente" - }, - "1": { - "then": "Ci sono solo degli attrezzi (cacciaviti, pinze…) presenti" - }, - "2": { - "then": "Ci sono sia attrezzi che pompa presenti" - } - }, - "question": "Quali servizi sono disponibili in questa stazione per bici?" - }, - "bike_repair_station-bike-chain-tool": { - "mappings": { - "0": { - "then": "È presente un utensile per riparare la catena" - }, - "1": { - "then": "Non è presente un utensile per riparare la catena" - } - }, - "question": "Questa stazione di riparazione bici ha un attrezzo speciale per riparare la catena della bici?" - }, - "bike_repair_station-bike-stand": { - "mappings": { - "0": { - "then": "C’è un gancio o un supporto" - }, - "1": { - "then": "Non c’è né un gancio né un supporto" - } - }, - "question": "Questa stazione bici ha un gancio per tenere sospesa la bici o un supporto per alzarla?" - }, - "bike_repair_station-electrical_pump": { - "mappings": { - "0": { - "then": "Pompa manuale" - }, - "1": { - "then": "Pompa elettrica" - } - }, - "question": "Questa pompa per bici è elettrica?" - }, - "bike_repair_station-manometer": { - "mappings": { - "0": { - "then": "C’è un manometro" - }, - "1": { - "then": "Non c’è un manometro" - }, - "2": { - "then": "C’è un manometro ma è rotto" - } - }, - "question": "Questa pompa ha l’indicatore della pressione o il manometro?" - }, - "bike_repair_station-opening_hours": { - "mappings": { - "0": { - "then": "Sempre aperto" - }, - "1": { - "then": "Sempre aperto" - } - }, - "question": "Quando è aperto questo punto riparazione bici?" - }, - "bike_repair_station-operator": { - "question": "Chi gestisce questa pompa per bici?", - "render": "Manutenuta da {operator}" - }, - "bike_repair_station-valves": { - "mappings": { - "0": { - "then": "Sclaverand (detta anche Presta)" - }, - "1": { - "then": "Dunlop" - }, - "2": { - "then": "Schrader (valvola delle auto)" - } - }, - "question": "Quali valvole sono supportate?", - "render": "Questa pompa è compatibile con le seguenti valvole: {valves}" - } - }, - "title": { - "mappings": { - "0": { - "then": "Stazione riparazione bici" - }, - "1": { - "then": "Stazione riparazione bici" - }, - "2": { - "then": "Pompa rotta" - }, - "3": { - "then": "Pompa per bici {name}" - }, - "4": { - "then": "Pompa per bici" + "title": { + "render": "Distributore automatico di camere d’aria per bici" } - }, - "render": "Stazione bici (gonfiaggio & riparazione)" - } - }, - "bike_shop": { - "description": "Un negozio che vende specificatamente biciclette o articoli similari", - "name": "Venditore/riparatore bici", - "presets": { - "0": { - "title": "Negozio/riparatore di bici" - } }, - "tagRenderings": { - "bike_repair_bike-pump-service": { - "mappings": { - "0": { - "then": "Questo negozio offre l’uso pubblico di una pompa per bici" - }, - "1": { - "then": "Questo negozio non offre l’uso pubblico di una pompa per bici" - }, - "2": { - "then": "C’è una pompa per bici, è mostrata come punto separato " - } + "bike_cafe": { + "name": "Caffè in bici", + "presets": { + "0": { + "title": "Caffè in bici" + } }, - "question": "Questo negozio offre l’uso a chiunque di una pompa per bici?" - }, - "bike_repair_bike-wash": { - "mappings": { - "0": { - "then": "Questo negozio lava le biciclette" - }, - "1": { - "then": "Questo negozio ha una struttura dove è possibile pulire la propria bici" - }, - "2": { - "then": "Questo negozio non offre la pulizia della bicicletta" - } + "tagRenderings": { + "bike_cafe-bike-pump": { + "mappings": { + "0": { + "then": "Questo caffè in bici offre una pompa per bici liberamente utilizzabile" + }, + "1": { + "then": "Questo caffè in bici non offre una pompa per bici liberamente utilizzabile" + } + }, + "question": "Questo caffè in bici offre una pompa per bici che chiunque può utilizzare?" + }, + "bike_cafe-email": { + "question": "Qual è l’indirizzo email di {name}?" + }, + "bike_cafe-name": { + "question": "Qual è il nome di questo caffè in bici?", + "render": "Questo caffè in bici è chiamato {name}" + }, + "bike_cafe-opening_hours": { + "question": "Quando è aperto questo caffè in bici?" + }, + "bike_cafe-phone": { + "question": "Qual è il numero di telefono di {name}?" + }, + "bike_cafe-repair-service": { + "mappings": { + "0": { + "then": "Questo caffè in bici ripara le bici" + }, + "1": { + "then": "Questo caffè in bici non ripara le bici" + } + }, + "question": "Questo caffè in bici ripara le bici?" + }, + "bike_cafe-repair-tools": { + "mappings": { + "0": { + "then": "Questo caffè in bici fornisce degli attrezzi per la riparazione fai-da-te" + }, + "1": { + "then": "Questo caffè in bici non fornisce degli attrezzi per la riparazione fai-da-te" + } + }, + "question": "Ci sono degli strumenti per riparare la propria bicicletta?" + }, + "bike_cafe-website": { + "question": "Qual è il sito web di {name}?" + } }, - "question": "Vengono lavate le bici qua?" - }, - "bike_repair_rents-bikes": { - "mappings": { - "0": { - "then": "Questo negozio noleggia le bici" - }, - "1": { - "then": "Questo negozio non noleggia le bici" - } - }, - "question": "Questo negozio noleggia le bici?" - }, - "bike_repair_repairs-bikes": { - "mappings": { - "0": { - "then": "Questo negozio ripara bici" - }, - "1": { - "then": "Questo negozio non ripara bici" - }, - "2": { - "then": "Questo negozio ripara solo le bici che sono state acquistate qua" - }, - "3": { - "then": "Questo negozio ripara solo le biciclette di una certa marca" - } - }, - "question": "Questo negozio ripara bici?" - }, - "bike_repair_second-hand-bikes": { - "mappings": { - "0": { - "then": "Questo negozio vende bici usate" - }, - "1": { - "then": "Questo negozio non vende bici usate" - }, - "2": { - "then": "Questo negozio vende solamente bici usate" - } - }, - "question": "Questo negozio vende bici usate?" - }, - "bike_repair_sells-bikes": { - "mappings": { - "0": { - "then": "Questo negozio vende bici" - }, - "1": { - "then": "Questo negozio non vende bici" - } - }, - "question": "Questo negozio vende bici?" - }, - "bike_repair_tools-service": { - "mappings": { - "0": { - "then": "Questo negozio offre degli attrezzi per la riparazione fai-da-te" - }, - "1": { - "then": "Questo negozio non offre degli attrezzi per la riparazione fai-da-te" - }, - "2": { - "then": "Gli attrezzi per la riparazione fai-da-te sono disponibili solamente se hai acquistato/noleggiato la bici nel negozio" - } - }, - "question": "Sono presenti degli attrezzi per riparare la propria bici?" - }, - "bike_shop-email": { - "question": "Qual è l’indirizzo email di {name}?" - }, - "bike_shop-is-bicycle_shop": { - "render": "Questo negozio è specializzato nella vendita di {shop} ed effettua attività relative alle biciclette" - }, - "bike_shop-name": { - "question": "Qual è il nome di questo negozio di biciclette?", - "render": "Questo negozio di biciclette è chiamato {name}" - }, - "bike_shop-phone": { - "question": "Qual è il numero di telefono di {name}?" - }, - "bike_shop-website": { - "question": "Qual è il sito web di {name}?" - } - }, - "title": { - "mappings": { - "0": { - "then": "Negozio di articoli sportivi {name}" - }, - "2": { - "then": "Noleggio di biciclette {name}" - }, - "3": { - "then": "Riparazione biciclette {name" - }, - "4": { - "then": "Negozio di biciclette {name}" - }, - "5": { - "then": "Venditore/riparatore bici {name}" + "title": { + "mappings": { + "0": { + "then": "Caffè in bici {name}" + } + }, + "render": "Caffè in bici" } - }, - "render": "Venditore/riparatore bici" - } - }, - "bike_themed_object": { - "name": "Oggetto relativo alle bici", - "title": { - "mappings": { - "1": { - "then": "Pista ciclabile" + }, + "bike_cleaning": { + "name": "Servizio lavaggio bici", + "presets": { + "0": { + "title": "Servizio lavaggio bici" + } + }, + "title": { + "mappings": { + "0": { + "then": "Servizio lavaggio bici {name}" + } + }, + "render": "Servizio lavaggio bici" } - }, - "render": "Oggetto relativo alle bici" - } - }, - "defibrillator": { - "name": "Defibrillatori", - "presets": { - "0": { - "title": "Defibrillatore" - } }, - "tagRenderings": { - "defibrillator-access": { - "mappings": { - "0": { - "then": "Pubblicamente accessibile" - }, - "1": { - "then": "Pubblicamente accessibile" - }, - "2": { - "then": "Accessibile solo ai clienti" - }, - "3": { - "then": "Non accessibile al pubblico (ad esempio riservato al personale, ai proprietari, etc.)" - }, - "4": { - "then": "Non accessibile, potrebbe essere solo per uso professionale" - } + "bike_parking": { + "name": "Parcheggio bici", + "presets": { + "0": { + "title": "Parcheggio bici" + } }, - "question": "Questo defibrillatore è liberamente accessibile?", - "render": "Accesso è {access}" - }, - "defibrillator-defibrillator": { - "mappings": { - "0": { - "then": "Non vi sono informazioni riguardanti il tipo di questo dispositivo" - }, - "1": { - "then": "Questo è un defibrillatore manuale per professionisti" - }, - "2": { - "then": "È un normale defibrillatore automatico" - } + "tagRenderings": { + "Access": { + "mappings": { + "0": { + "then": "Accessibile pubblicamente" + }, + "1": { + "then": "Accesso destinato principalmente ai visitatori di un’attività" + }, + "2": { + "then": "Accesso limitato ai membri di una scuola, una compagnia o un’organizzazione" + } + }, + "question": "Chi può usare questo parcheggio bici?", + "render": "{access}" + }, + "Bicycle parking type": { + "mappings": { + "0": { + "then": "Archetti" + }, + "1": { + "then": "Scolapiatti" + }, + "2": { + "then": "Blocca manubrio" + }, + "3": { + "then": "Rastrelliera" + }, + "4": { + "then": "A due piani" + }, + "5": { + "then": "Rimessa" + }, + "6": { + "then": "Colonnina" + }, + "7": { + "then": "Una zona del pavimento che è marcata per il parcheggio delle bici" + } + }, + "question": "Di che tipo di parcheggio bici si tratta?", + "render": "È un parcheggio bici del tipo: {bicycle_parking}" + }, + "Capacity": { + "question": "Quante biciclette entrano in questo parcheggio per bici (incluse le eventuali bici da trasporto)?", + "render": "Posti per {capacity} bici" + }, + "Cargo bike capacity?": { + "question": "Quante bici da trasporto entrano in questo parcheggio per bici?", + "render": "Questo parcheggio può contenere {capacity:cargo_bike} bici da trasporto" + }, + "Cargo bike spaces?": { + "mappings": { + "0": { + "then": "Questo parcheggio ha posto per bici da trasporto" + }, + "1": { + "then": "Questo parcheggio ha posti destinati (ufficialmente) alle bici da trasporto." + }, + "2": { + "then": "Il parcheggio delle bici da trasporto è proibito" + } + }, + "question": "Questo parcheggio dispone di posti specifici per le bici da trasporto?" + }, + "Is covered?": { + "mappings": { + "0": { + "then": "È un parcheggio coperto (ha un tetto)" + }, + "1": { + "then": "Non è un parcheggio coperto" + } + }, + "question": "È un parcheggio coperto? Indicare “coperto” per parcheggi all’interno." + }, + "Underground?": { + "mappings": { + "0": { + "then": "Parcheggio sotterraneo" + }, + "1": { + "then": "Parcheggio in superficie" + }, + "2": { + "then": "Parcheggio sul tetto" + }, + "3": { + "then": "Parcheggio in superficie" + } + }, + "question": "Qual è la posizione relativa di questo parcheggio bici?" + } }, - "question": "Si tratta di un normale defibrillatore automatico o un defibrillatore manuale riservato ai professionisti?" - }, - "defibrillator-defibrillator:location": { - "question": "Indica più precisamente dove si trova il defibrillatore (in lingua locale)", - "render": "Informazioni supplementari circa la posizione (in lingua locale):
{defibrillator:location}" - }, - "defibrillator-defibrillator:location:en": { - "question": "Indica più precisamente dove si trova il defibrillatore (in inglese)", - "render": "Informazioni supplementari circa la posizione (in inglese):
{defibrillator:location:en}" - }, - "defibrillator-defibrillator:location:fr": { - "question": "Indica più precisamente dove si trova il defibrillatore (in francese)", - "render": "Informazioni supplementari circa la posizione (in francese):
{defibrillator:location:fr}" - }, - "defibrillator-description": { - "question": "Vi sono altre informazioni utili agli utenti che non è stato possibile aggiungere prima? (lasciare vuoto in caso negativo)", - "render": "Informazioni supplementari: {description}" - }, - "defibrillator-email": { - "question": "Qual è l’indirizzo email per le domande riguardanti questo defibrillatore?", - "render": "Indirizzo email per le domande su questo defibrillatore:{email}" - }, - "defibrillator-fixme": { - "question": "C’è qualcosa di sbagliato riguardante come è stato mappato, che non si è potuto correggere qua? (lascia una nota agli esperti di OpenStreetMap)", - "render": "Informazioni supplementari per gli esperti di OpenStreetMap: {fixme}" - }, - "defibrillator-indoors": { - "mappings": { - "0": { - "then": "Questo defibrillatore si trova all’interno" - }, - "1": { - "then": "Questo defibrillatore si trova all’esterno" - } - }, - "question": "Questo defibrillatore si trova all’interno?" - }, - "defibrillator-level": { - "mappings": { - "0": { - "then": "Questo defibrillatore è al pian terreno" - }, - "1": { - "then": "Questo defibrillatore è al primo piano" - } - }, - "question": "A che piano si trova questo defibrillatore?", - "render": "Questo defibrillatore è al piano {level}" - }, - "defibrillator-opening_hours": { - "mappings": { - "0": { - "then": "Aperto 24/7 (festivi inclusi)" - } - }, - "question": "In quali orari è disponibile questo defibrillatore?", - "render": "{opening_hours_table(opening_hours)}" - }, - "defibrillator-phone": { - "question": "Qual è il numero di telefono per le domande riguardanti questo defibrillatore?", - "render": "Numero di telefono per le domande su questo defibrillatore:{phone}" - }, - "defibrillator-ref": { - "question": "Qual è il numero identificativo ufficiale di questo dispositivo? (se visibile sul dispositivo)", - "render": "Numero identificativo ufficiale di questo dispositivo:{ref}" - }, - "defibrillator-survey:date": { - "mappings": { - "0": { - "then": "Verificato oggi!" - } - }, - "question": "Quando è stato verificato per l’ultima volta questo defibrillatore?", - "render": "Questo defibrillatore è stato verificato per l‘ultima volta in data {survey:date}" - } - }, - "title": { - "render": "Defibrillatore" - } - }, - "direction": { - "description": "Questo livello visualizza le direzioni", - "name": "Visualizzazione della direzione" - }, - "drinking_water": { - "name": "Acqua potabile", - "presets": { - "0": { - "title": "acqua potabile" - } - }, - "tagRenderings": { - "Bottle refill": { - "mappings": { - "0": { - "then": "È facile riempire d’acqua le bottiglie" - }, - "1": { - "then": "Le bottiglie d’acqua potrebbero non entrare" - } - }, - "question": "Quanto è facile riempire d’acqua le bottiglie?" - }, - "Still in use?": { - "mappings": { - "0": { - "then": "La fontanella funziona" - }, - "1": { - "then": "La fontanella è guasta" - }, - "2": { - "then": "La fontanella è chiusa" - } - }, - "question": "Questo punto di acqua potabile è sempre funzionante?", - "render": "Lo stato operativo è {operational_status}" - }, - "render-closest-drinking-water": { - "render": "C’è un’altra fontanella a {_closest_other_drinking_water_distance} metri" - } - }, - "title": { - "render": "Acqua potabile" - } - }, - "ghost_bike": { - "name": "Bici fantasma", - "presets": { - "0": { - "title": "Bici fantasma" - } - }, - "tagRenderings": { - "ghost-bike-explanation": { - "render": "Una bici fantasma è il memoriale di un ciclista che è morto in un incidente stradale e che ha la forma di una bicicletta bianca piazzata in maniera stabile vicino al luogo dell’incidente." - }, - "ghost_bike-inscription": { - "question": "Che cosa è scritto sulla bici fantasma?", - "render": "{inscription}" - }, - "ghost_bike-name": { - "mappings": { - "0": { - "then": "Nessun nome scritto sulla bici" - } - }, - "question": "A chi è dedicata questa bici fantasma?
Rispetta la privacy (compila solo il nome se questo è stato ampiamente pubblicato o se è scritto sulla bici). Decidi se è il caso di non inserire il cognome.
", - "render": "In ricordo di {name}" - }, - "ghost_bike-source": { - "question": "In quale pagina web si possono trovare informazioni sulla bici fantasma o l’incidente?", - "render": "Sono disponibili ulteriori informazioni" - }, - "ghost_bike-start_date": { - "question": "Quando è stata installata questa bici fantasma?", - "render": "Piazzata in data {start_date}" - } - }, - "title": { - "mappings": { - "0": { - "then": "Bici fantasma in ricordo di {name}" + "title": { + "render": "Parcheggio bici" } - }, - "render": "Bici fantasma" - } - }, - "information_board": { - "name": "Pannelli informativi", - "presets": { - "0": { - "title": "pannello informativo" - } }, - "title": { - "render": "Pannello informativo" - } - }, - "map": { - "description": "Una mappa, destinata ai turisti e che è sistemata in maniera permanente in uno spazio pubblico", - "name": "Mappe", - "presets": { - "0": { - "description": "Aggiungi una mappa mancante", - "title": "Mappa" - } - }, - "tagRenderings": { - "map-attribution": { - "mappings": { - "0": { - "then": "L’attribuzione a OpenStreetMap è chiaramente specificata, inclusa la licenza ODBL" - }, - "1": { - "then": "L’attribuzione a OpenStreetMap è chiaramente specificata ma la licenza non compare" - }, - "2": { - "then": "Non era presente alcun cenno a OpenStreetMap ma qualcuno vi ha attaccato un adesivo di OpenStreetMap" - }, - "3": { - "then": "Non c’è alcuna attribuzione" - }, - "4": { - "then": "Non c’è alcuna attribuzione" - } + "bike_repair_station": { + "name": "Stazioni bici (riparazione, gonfiaggio o entrambi)", + "presets": { + "0": { + "description": "Un dispositivo per gonfiare le proprie gomme in un luogo fisso pubblicamente accessibile.", + "title": "pompa per bici" + }, + "1": { + "description": "Un dispositivo con attrezzi per riparare la tua bici e una pompa in un luogo fisso. Gli attrezzi sono spesso attaccati ad una catena per prevenire il furto.", + "title": "stazione di riparazione bici e pompa" + }, + "2": { + "title": "stazione di riparazione bici senza pompa" + } }, - "question": "L’attribuzione a OpenStreetMap è presente?" - }, - "map-map_source": { - "mappings": { - "0": { - "then": "Questa mappa si basa su OpenStreetMap" - } + "tagRenderings": { + "Operational status": { + "mappings": { + "0": { + "then": "La pompa per bici è guasta" + }, + "1": { + "then": "La pompa per bici funziona" + } + }, + "question": "La pompa per bici è sempre funzionante?" + }, + "bike_repair_station-available-services": { + "mappings": { + "0": { + "then": "C’è solamente una pompa presente" + }, + "1": { + "then": "Ci sono solo degli attrezzi (cacciaviti, pinze…) presenti" + }, + "2": { + "then": "Ci sono sia attrezzi che pompa presenti" + } + }, + "question": "Quali servizi sono disponibili in questa stazione per bici?" + }, + "bike_repair_station-bike-chain-tool": { + "mappings": { + "0": { + "then": "È presente un utensile per riparare la catena" + }, + "1": { + "then": "Non è presente un utensile per riparare la catena" + } + }, + "question": "Questa stazione di riparazione bici ha un attrezzo speciale per riparare la catena della bici?" + }, + "bike_repair_station-bike-stand": { + "mappings": { + "0": { + "then": "C’è un gancio o un supporto" + }, + "1": { + "then": "Non c’è né un gancio né un supporto" + } + }, + "question": "Questa stazione bici ha un gancio per tenere sospesa la bici o un supporto per alzarla?" + }, + "bike_repair_station-electrical_pump": { + "mappings": { + "0": { + "then": "Pompa manuale" + }, + "1": { + "then": "Pompa elettrica" + } + }, + "question": "Questa pompa per bici è elettrica?" + }, + "bike_repair_station-manometer": { + "mappings": { + "0": { + "then": "C’è un manometro" + }, + "1": { + "then": "Non c’è un manometro" + }, + "2": { + "then": "C’è un manometro ma è rotto" + } + }, + "question": "Questa pompa ha l’indicatore della pressione o il manometro?" + }, + "bike_repair_station-opening_hours": { + "mappings": { + "0": { + "then": "Sempre aperto" + } + }, + "question": "Quando è aperto questo punto riparazione bici?" + }, + "bike_repair_station-operator": { + "question": "Chi gestisce questa pompa per bici?", + "render": "Manutenuta da {operator}" + }, + "bike_repair_station-valves": { + "mappings": { + "0": { + "then": "Sclaverand (detta anche Presta)" + }, + "1": { + "then": "Dunlop" + }, + "2": { + "then": "Schrader (valvola delle auto)" + } + }, + "question": "Quali valvole sono supportate?", + "render": "Questa pompa è compatibile con le seguenti valvole: {valves}" + } }, - "question": "Su quali dati si basa questa mappa?", - "render": "Questa mappa si basa su {map_source}" - } - }, - "title": { - "render": "Mappa" - } - }, - "nature_reserve": { - "tagRenderings": { - "Curator": { - "question": "Chi è il curatore di questa riserva naturale?
Rispetta la privacy (scrivi il nome solo se questo è noto pubblicamente)", - "render": "{curator} è il curatore di questa riserva naturale" - }, - "Dogs?": { - "mappings": { - "0": { - "then": "I cani devono essere tenuti al guinzaglio" - }, - "1": { - "then": "I cani non sono ammessi" - }, - "2": { - "then": "I cani sono liberi di girare liberi" - } - }, - "question": "I cani sono ammessi in questa riserva naturale?" - }, - "Email": { - "question": "Qual è l’indirizzo email a cui scrivere per fare domande o segnalare problemi su questa riserva naturale?
Rispetta la privacy (compila l’indirizzo email personale solo se è stato reso pubblico)", - "render": "{email}" - }, - "Surface area": { - "render": "Area: {_surface:ha} ha" - }, - "Website": { - "question": "In quale pagina web si possono trovare altre informazioni riguardanti questa riserva naturale?" - }, - "phone": { - "question": "Quale numero di telefono comporre per fare domande o segnalare problemi riguardanti questa riserva naturale?br/>Rispetta la privacy (inserisci il numero di telefono privato solo se questo è noto pubblicamente)", - "render": "{phone}" - } - } - }, - "picnic_table": { - "description": "Il livello che mostra i tavoli da picnic", - "name": "Tavoli da picnic", - "presets": { - "0": { - "title": "tavolo da picnic" - } - }, - "tagRenderings": { - "picnic_table-material": { - "mappings": { - "0": { - "then": "È un tavolo da picnic in legno" - }, - "1": { - "then": "È un tavolo da picnic in cemento" - } - }, - "question": "Di che materiale è fatto questo tavolo da picnic?", - "render": "Questo tavolo da picnic è fatto di {material}" - } - }, - "title": { - "render": "Tavolo da picnic" - } - }, - "playground": { - "description": "Parchi giochi", - "name": "Campi da gioco", - "presets": { - "0": { - "title": "Campetto" - } - }, - "tagRenderings": { - "Playground-wheelchair": { - "mappings": { - "0": { - "then": "Completamente accessibile in sedia a rotelle" - }, - "1": { - "then": "Accesso limitato in sedia a rotelle" - }, - "2": { - "then": "Non accessibile in sedia a rotelle" - } - }, - "question": "Il campetto è accessibile a persone in sedia a rotelle?" - }, - "playground-access": { - "mappings": { - "0": { - "then": "Accessibile pubblicamente" - }, - "1": { - "then": "Accessibile pubblicamente" - }, - "2": { - "then": "Accessibile solamente ai clienti dell’attività che lo gestisce" - }, - "3": { - "then": "Accessibile solamente agli studenti della scuola" - }, - "4": { - "then": "Non accessibile" - } - }, - "question": "Questo parco giochi è pubblicamente accessibile?" - }, - "playground-email": { - "question": "Qual è l’indirizzo email del gestore di questo parco giochi?", - "render": "{email}" - }, - "playground-lit": { - "mappings": { - "0": { - "then": "Questo parco giochi è illuminato di notte" - }, - "1": { - "then": "Questo parco giochi non è illuminato di notte" - } - }, - "question": "È illuminato di notte questo parco giochi?" - }, - "playground-max_age": { - "question": "Qual è l’età massima per accedere a questo parco giochi?", - "render": "Accessibile ai bambini di età inferiore a {max_age}" - }, - "playground-min_age": { - "question": "Qual è l’età minima per accedere a questo parco giochi?", - "render": "Accessibile ai bambini di almeno {min_age} anni" - }, - "playground-opening_hours": { - "mappings": { - "0": { - "then": "Si può accedere dall'alba al tramonto" - }, - "1": { - "then": "Si può sempre accedere" - }, - "2": { - "then": "Si può sempre accedere" - } - }, - "question": "Quando si può accedere a questo campetto?" - }, - "playground-operator": { - "question": "Chi è il responsabile di questo parco giochi?", - "render": "Gestito da {operator}" - }, - "playground-phone": { - "question": "Qual è il numero di telefono del gestore del campetto?", - "render": "{phone}" - }, - "playground-surface": { - "mappings": { - "0": { - "then": "La superficie è prato" - }, - "1": { - "then": "La superficie è sabbia" - }, - "2": { - "then": "La superficie consiste di trucioli di legno" - }, - "3": { - "then": "La superficie è mattonelle regolari" - }, - "4": { - "then": "La superficie è asfalto" - }, - "5": { - "then": "La superficie è cemento" - }, - "6": { - "then": "La superficie è non pavimentato" - }, - "7": { - "then": "La superficie è pavimentato" - } - }, - "question": "Qual è la superficie di questo parco giochi?
Se ve ne è più di una, seleziona quella predominante", - "render": "La superficie è {surface}" - } - }, - "title": { - "mappings": { - "0": { - "then": "Parco giochi {name}" + "title": { + "mappings": { + "0": { + "then": "Stazione riparazione bici" + }, + "1": { + "then": "Stazione riparazione bici" + }, + "2": { + "then": "Pompa rotta" + }, + "3": { + "then": "Pompa per bici {name}" + }, + "4": { + "then": "Pompa per bici" + } + }, + "render": "Stazione bici (gonfiaggio & riparazione)" } - }, - "render": "Parco giochi" - } - }, - "public_bookcase": { - "description": "Una vetrinetta ai bordi della strada contenente libri, aperta al pubblico", - "name": "Microbiblioteche", - "presets": { - "0": { - "title": "Microbiblioteca" - } }, - "tagRenderings": { - "bookcase-booktypes": { - "mappings": { - "0": { - "then": "Principalmente libri per l'infanzia" - }, - "1": { - "then": "Principalmente libri per persone in età adulta" - }, - "2": { - "then": "Sia libri per l'infanzia, sia per l'età adulta" - } + "bike_shop": { + "description": "Un negozio che vende specificatamente biciclette o articoli similari", + "name": "Venditore/riparatore bici", + "presets": { + "0": { + "title": "Negozio/riparatore di bici" + } }, - "question": "Che tipo di libri si possono trovare in questa microbiblioteca?" - }, - "bookcase-is-accessible": { - "mappings": { - "0": { - "then": "È ad accesso libero" - }, - "1": { - "then": "L'accesso è riservato ai clienti" - } + "tagRenderings": { + "bike_repair_bike-pump-service": { + "mappings": { + "0": { + "then": "Questo negozio offre l’uso pubblico di una pompa per bici" + }, + "1": { + "then": "Questo negozio non offre l’uso pubblico di una pompa per bici" + }, + "2": { + "then": "C’è una pompa per bici, è mostrata come punto separato " + } + }, + "question": "Questo negozio offre l’uso a chiunque di una pompa per bici?" + }, + "bike_repair_bike-wash": { + "mappings": { + "0": { + "then": "Questo negozio lava le biciclette" + }, + "1": { + "then": "Questo negozio ha una struttura dove è possibile pulire la propria bici" + }, + "2": { + "then": "Questo negozio non offre la pulizia della bicicletta" + } + }, + "question": "Vengono lavate le bici qua?" + }, + "bike_repair_rents-bikes": { + "mappings": { + "0": { + "then": "Questo negozio noleggia le bici" + }, + "1": { + "then": "Questo negozio non noleggia le bici" + } + }, + "question": "Questo negozio noleggia le bici?" + }, + "bike_repair_repairs-bikes": { + "mappings": { + "0": { + "then": "Questo negozio ripara bici" + }, + "1": { + "then": "Questo negozio non ripara bici" + }, + "2": { + "then": "Questo negozio ripara solo le bici che sono state acquistate qua" + }, + "3": { + "then": "Questo negozio ripara solo le biciclette di una certa marca" + } + }, + "question": "Questo negozio ripara bici?" + }, + "bike_repair_second-hand-bikes": { + "mappings": { + "0": { + "then": "Questo negozio vende bici usate" + }, + "1": { + "then": "Questo negozio non vende bici usate" + }, + "2": { + "then": "Questo negozio vende solamente bici usate" + } + }, + "question": "Questo negozio vende bici usate?" + }, + "bike_repair_sells-bikes": { + "mappings": { + "0": { + "then": "Questo negozio vende bici" + }, + "1": { + "then": "Questo negozio non vende bici" + } + }, + "question": "Questo negozio vende bici?" + }, + "bike_repair_tools-service": { + "mappings": { + "0": { + "then": "Questo negozio offre degli attrezzi per la riparazione fai-da-te" + }, + "1": { + "then": "Questo negozio non offre degli attrezzi per la riparazione fai-da-te" + }, + "2": { + "then": "Gli attrezzi per la riparazione fai-da-te sono disponibili solamente se hai acquistato/noleggiato la bici nel negozio" + } + }, + "question": "Sono presenti degli attrezzi per riparare la propria bici?" + }, + "bike_shop-email": { + "question": "Qual è l’indirizzo email di {name}?" + }, + "bike_shop-is-bicycle_shop": { + "render": "Questo negozio è specializzato nella vendita di {shop} ed effettua attività relative alle biciclette" + }, + "bike_shop-name": { + "question": "Qual è il nome di questo negozio di biciclette?", + "render": "Questo negozio di biciclette è chiamato {name}" + }, + "bike_shop-phone": { + "question": "Qual è il numero di telefono di {name}?" + }, + "bike_shop-website": { + "question": "Qual è il sito web di {name}?" + } }, - "question": "Questa microbiblioteca è ad accesso libero?" - }, - "bookcase-is-indoors": { - "mappings": { - "0": { - "then": "Questa microbiblioteca si trova al chiuso" - }, - "1": { - "then": "Questa microbiblioteca si trova all'aperto" - }, - "2": { - "then": "Questa microbiblioteca si trova all'aperto" - } - }, - "question": "Questa microbiblioteca si trova all'aperto?" - }, - "public_bookcase-brand": { - "mappings": { - "0": { - "then": "Fa parte della rete 'Little Free Library'" - }, - "1": { - "then": "Questa microbiblioteca non fa parte di una rete" - } - }, - "question": "Questa microbiblioteca fa parte di una rete?", - "render": "Questa microbiblioteca fa parte di {brand}" - }, - "public_bookcase-capacity": { - "question": "Quanti libri può contenere questa microbiblioteca?", - "render": "Questa microbiblioteca può contenere fino a {capacity} libri" - }, - "public_bookcase-name": { - "mappings": { - "0": { - "then": "Questa microbiblioteca non ha un nome proprio" - } - }, - "question": "Come si chiama questa microbiblioteca pubblica?", - "render": "Questa microbiblioteca si chiama {name}" - }, - "public_bookcase-operator": { - "question": "Chi mantiene questa microbiblioteca?", - "render": "È gestita da {operator}" - }, - "public_bookcase-ref": { - "mappings": { - "0": { - "then": "Questa microbiblioteca non fa parte di una rete" - } - }, - "question": "Qual è il numero identificativo di questa microbiblioteca?", - "render": "Il numero identificativo di questa microbiblioteca nella rete {brand} è {ref}" - }, - "public_bookcase-start_date": { - "question": "Quando è stata inaugurata questa microbiblioteca?", - "render": "È stata inaugurata il {start_date}" - }, - "public_bookcase-website": { - "question": "C'è un sito web con maggiori informazioni su questa microbiblioteca?", - "render": "Maggiori informazioni sul sito web" - } - }, - "title": { - "mappings": { - "0": { - "then": "Microbiblioteca pubblica {name}" + "title": { + "mappings": { + "0": { + "then": "Negozio di articoli sportivi {name}" + }, + "2": { + "then": "Noleggio di biciclette {name}" + }, + "3": { + "then": "Riparazione biciclette {name}" + }, + "4": { + "then": "Negozio di biciclette {name}" + }, + "5": { + "then": "Venditore/riparatore bici {name}" + } + }, + "render": "Venditore/riparatore bici" } - }, - "render": "Microbiblioteca" - } - }, - "shops": { - "tagRenderings": { - "shops-shop": { - "mappings": { - "5": { - "then": "Autofficina" - } + }, + "bike_themed_object": { + "name": "Oggetto relativo alle bici", + "title": { + "mappings": { + "1": { + "then": "Pista ciclabile" + } + }, + "render": "Oggetto relativo alle bici" } - } - } - }, - "slow_roads": { - "tagRenderings": { - "slow_roads-surface": { - "mappings": { - "0": { - "then": "La superficie è erba" - }, - "1": { - "then": "La superficie è terreno" - }, - "2": { - "then": "La superficie è non pavimentata" - }, - "3": { - "then": "La superficie è sabbia" - }, - "4": { - "then": "La superficie è pietre irregolari" - }, - "5": { - "then": "La superficie è asfalto" - }, - "6": { - "then": "La superficie è calcestruzzo" - }, - "7": { - "then": "La superficie è pavimentata" - } - }, - "render": "La superficie è {surface}" - } - } - }, - "sport_pitch": { - "description": "Un campo sportivo", - "name": "Campi sportivi", - "presets": { - "0": { - "title": "Tavolo da tennistavolo" - }, - "1": { - "title": "Campo sportivo" - } }, - "tagRenderings": { - "sport-pitch-access": { - "mappings": { - "0": { - "then": "Aperto al pubblico" - }, - "1": { - "then": "Accesso limitato (p.es. solo con prenotazione, in certi orari, ...)" - }, - "2": { - "then": "Accesso limitato ai membri dell'associazione" - }, - "3": { - "then": "Privato - non aperto al pubblico" - } + "defibrillator": { + "name": "Defibrillatori", + "presets": { + "0": { + "title": "Defibrillatore" + } }, - "question": "Questo campo sportivo è aperto al pubblico?" - }, - "sport-pitch-reservation": { - "mappings": { - "0": { - "then": "La prenotazione è obbligatoria per usare questo campo sportivo" - }, - "1": { - "then": "La prenotazione è consigliata per usare questo campo sportivo" - }, - "2": { - "then": "La prenotazione è consentita, ma non è obbligatoria per usare questo campo sportivo" - }, - "3": { - "then": "Non è possibile prenotare" - } + "tagRenderings": { + "defibrillator-access": { + "mappings": { + "0": { + "then": "Pubblicamente accessibile" + }, + "1": { + "then": "Pubblicamente accessibile" + }, + "2": { + "then": "Accessibile solo ai clienti" + }, + "3": { + "then": "Non accessibile al pubblico (ad esempio riservato al personale, ai proprietari, etc.)" + }, + "4": { + "then": "Non accessibile, potrebbe essere solo per uso professionale" + } + }, + "question": "Questo defibrillatore è liberamente accessibile?", + "render": "Accesso è {access}" + }, + "defibrillator-defibrillator": { + "mappings": { + "0": { + "then": "Non vi sono informazioni riguardanti il tipo di questo dispositivo" + }, + "1": { + "then": "Questo è un defibrillatore manuale per professionisti" + }, + "2": { + "then": "È un normale defibrillatore automatico" + } + }, + "question": "Si tratta di un normale defibrillatore automatico o un defibrillatore manuale riservato ai professionisti?" + }, + "defibrillator-defibrillator:location": { + "question": "Indica più precisamente dove si trova il defibrillatore (in lingua locale)", + "render": "Informazioni supplementari circa la posizione (in lingua locale):
{defibrillator:location}" + }, + "defibrillator-defibrillator:location:en": { + "question": "Indica più precisamente dove si trova il defibrillatore (in inglese)", + "render": "Informazioni supplementari circa la posizione (in inglese):
{defibrillator:location:en}" + }, + "defibrillator-defibrillator:location:fr": { + "question": "Indica più precisamente dove si trova il defibrillatore (in francese)", + "render": "Informazioni supplementari circa la posizione (in francese):
{defibrillator:location:fr}" + }, + "defibrillator-description": { + "question": "Vi sono altre informazioni utili agli utenti che non è stato possibile aggiungere prima? (lasciare vuoto in caso negativo)", + "render": "Informazioni supplementari: {description}" + }, + "defibrillator-email": { + "question": "Qual è l’indirizzo email per le domande riguardanti questo defibrillatore?", + "render": "Indirizzo email per le domande su questo defibrillatore:{email}" + }, + "defibrillator-fixme": { + "question": "C’è qualcosa di sbagliato riguardante come è stato mappato, che non si è potuto correggere qua? (lascia una nota agli esperti di OpenStreetMap)", + "render": "Informazioni supplementari per gli esperti di OpenStreetMap: {fixme}" + }, + "defibrillator-indoors": { + "mappings": { + "0": { + "then": "Questo defibrillatore si trova all’interno" + }, + "1": { + "then": "Questo defibrillatore si trova all’esterno" + } + }, + "question": "Questo defibrillatore si trova all’interno?" + }, + "defibrillator-level": { + "mappings": { + "0": { + "then": "Questo defibrillatore è al pian terreno" + }, + "1": { + "then": "Questo defibrillatore è al primo piano" + } + }, + "question": "A che piano si trova questo defibrillatore?", + "render": "Questo defibrillatore è al piano {level}" + }, + "defibrillator-opening_hours": { + "mappings": { + "0": { + "then": "Aperto 24/7 (festivi inclusi)" + } + }, + "question": "In quali orari è disponibile questo defibrillatore?", + "render": "{opening_hours_table(opening_hours)}" + }, + "defibrillator-phone": { + "question": "Qual è il numero di telefono per le domande riguardanti questo defibrillatore?", + "render": "Numero di telefono per le domande su questo defibrillatore:{phone}" + }, + "defibrillator-ref": { + "question": "Qual è il numero identificativo ufficiale di questo dispositivo? (se visibile sul dispositivo)", + "render": "Numero identificativo ufficiale di questo dispositivo:{ref}" + }, + "defibrillator-survey:date": { + "mappings": { + "0": { + "then": "Verificato oggi!" + } + }, + "question": "Quando è stato verificato per l’ultima volta questo defibrillatore?", + "render": "Questo defibrillatore è stato verificato per l‘ultima volta in data {survey:date}" + } }, - "question": "È necessario prenotarsi per usare questo campo sportivo?" - }, - "sport_pitch-email": { - "question": "Qual è l'indirizzo email del gestore?" - }, - "sport_pitch-opening_hours": { - "mappings": { - "1": { - "then": "Sempre aperto" - } - }, - "question": "Quando è aperto questo campo sportivo?" - }, - "sport_pitch-phone": { - "question": "Qual è il numero di telefono del gestore?" - }, - "sport_pitch-sport": { - "mappings": { - "0": { - "then": "Qui si gioca a basket" - }, - "1": { - "then": "Qui si gioca a calcio" - }, - "2": { - "then": "Questo è un tavolo da ping pong" - }, - "3": { - "then": "Qui si gioca a tennis" - }, - "4": { - "then": "Qui si gioca a korfball" - }, - "5": { - "then": "Qui si gioca a basket" - } - }, - "question": "Quale sport si gioca qui?", - "render": "Qui si gioca a {sport}" - }, - "sport_pitch-surface": { - "mappings": { - "0": { - "then": "La superficie è erba" - }, - "1": { - "then": "La superficie è sabbia" - }, - "2": { - "then": "La superficie è pietre irregolari" - }, - "3": { - "then": "La superficie è asfalto" - }, - "4": { - "then": "La superficie è calcestruzzo" - } - }, - "question": "Qual è la superficie di questo campo sportivo?", - "render": "La superficie è {surface}" - } - }, - "title": { - "render": "Campo sportivo" - } - }, - "surveillance_camera": { - "name": "Videocamere di sorveglianza", - "tagRenderings": { - "Camera type: fixed; panning; dome": { - "mappings": { - "0": { - "then": "Una videocamera fissa (non semovente)" - }, - "1": { - "then": "Una videocamera a cupola (che può ruotare)" - }, - "2": { - "then": "Una videocamera panoramica" - } - }, - "question": "Di che tipo di videocamera si tratta?" - }, - "Level": { - "question": "A che piano si trova questa videocamera?", - "render": "Si trova al piano {level}" - }, - "Operator": { - "question": "Chi gestisce questa videocamera a circuito chiuso?", - "render": "È gestita da {operator}" - }, - "Surveillance type: public, outdoor, indoor": { - "mappings": { - "0": { - "then": "Sorveglia un'area pubblica, come una strada, un ponte, una piazza, un parco, una stazione, un passaggio o un sottopasso pubblico, ..." - }, - "1": { - "then": "Sorveglia un'area esterna di proprietà privata (un parcheggio, una stazione di servizio, un cortile, un ingresso, un vialetto privato, ...)" - }, - "2": { - "then": "Sorveglia un ambiente interno di proprietà privata, per esempio un negozio, un parcheggio sotterraneo privato, ..." - } - }, - "question": "Che cosa sorveglia questa videocamera" - }, - "Surveillance:zone": { - "mappings": { - "0": { - "then": "Sorveglia un parcheggio" - }, - "1": { - "then": "Sorveglia il traffico" - }, - "2": { - "then": "Sorveglia un ingresso" - }, - "3": { - "then": "Sorveglia un corridoio" - }, - "4": { - "then": "Sorveglia una pensilina del trasporto pubblico" - }, - "5": { - "then": "Sorveglia un negozio" - } - }, - "question": "Che cosa è sorvegliato qui?", - "render": " Sorveglia una {surveillance:zone}" - }, - "camera:mount": { - "mappings": { - "0": { - "then": "Questa telecamera è posizionata contro un muro" - }, - "1": { - "then": "Questa telecamera è posizionata su un palo" - }, - "2": { - "then": "Questa telecamera è posizionata sul soffitto" - } - }, - "question": "Com'è posizionata questa telecamera?", - "render": "Metodo di montaggio: {camera:mount}" - }, - "camera_direction": { - "mappings": { - "0": { - "then": "Punta in direzione {direction}" - } - }, - "question": "In quale direzione geografica punta questa videocamera?", - "render": "Punta in direzione {camera:direction}" - }, - "is_indoor": { - "mappings": { - "0": { - "then": "Questa videocamera si trova al chiuso" - }, - "1": { - "then": "Questa videocamera si trova all'aperto" - }, - "2": { - "then": "Questa videocamera si trova probabilmente all'esterno" - } - }, - "question": "Lo spazio pubblico sorvegliato da questa videocamera è all'aperto o al chiuso?" - } - }, - "title": { - "render": "Videocamera di sorveglianza" - } - }, - "toilet": { - "name": "Servizi igienici", - "presets": { - "0": { - "description": "Servizi igienici aperti al pubblico", - "title": "servizi igienici" - }, - "1": { - "description": "Servizi igienici che hanno almeno una toilette accessibile a persone in sedia a rotelle", - "title": "servizi igienici accessibili per persone in sedia a rotelle" - } - }, - "tagRenderings": { - "toilet-access": { - "mappings": { - "0": { - "then": "Accesso pubblico" - }, - "1": { - "then": "Accesso riservato ai clienti e alle clienti" - }, - "2": { - "then": "Non accessibile" - }, - "3": { - "then": "Accessibile, ma occorre chiedere una chiave per accedere" - }, - "4": { - "then": "Accesso pubblico" - } - }, - "question": "Questi servizi igienici sono aperti al pubblico?", - "render": "L'accesso è {access}" - }, - "toilet-changing_table:location": { - "mappings": { - "0": { - "then": "Il fasciatoio è nei servizi igienici femminili. " - }, - "1": { - "then": "Il fasciatoio è nei servizi igienici maschili. " - }, - "2": { - "then": "Il fasciatoio è nei servizi igienici per persone in sedia a rotelle. " - }, - "3": { - "then": "Il fasciatoio è in una stanza dedicata. " - } - }, - "question": "Dove si trova il fasciatoio?", - "render": "Il fasciatoio si trova presso {changing_table:location}" - }, - "toilet-charge": { - "question": "Quanto costa l'accesso a questi servizi igienici?", - "render": "La tariffa è {charge}" - }, - "toilets-changing-table": { - "mappings": { - "0": { - "then": "È disponibile un fasciatoio" - }, - "1": { - "then": "Non è disponibile un fasciatoio" - } - }, - "question": "È disponibile un fasciatoio (per cambiare i pannolini)?" - }, - "toilets-fee": { - "mappings": { - "0": { - "then": "Questi servizi igienici sono a pagamento" - }, - "1": { - "then": "Gratis" - } - }, - "question": "Questi servizi igienici sono gratuiti?" - }, - "toilets-type": { - "mappings": { - "0": { - "then": "Ci sono solo WC con sedile" - }, - "1": { - "then": "Ci sono solo urinali" - }, - "2": { - "then": "Ci sono solo turche" - }, - "3": { - "then": "Ci sono sia sedili, sia urinali" - } - }, - "question": "Di che tipo di servizi igienici si tratta?" - }, - "toilets-wheelchair": { - "mappings": { - "0": { - "then": "C'è un WC riservato alle persone in sedia a rotelle" - }, - "1": { - "then": "Non accessibile in sedia a rotelle" - } - }, - "question": "C'è un WC riservato alle persone in sedia a rotelle" - } - }, - "title": { - "render": "Servizi igienici" - } - }, - "tree_node": { - "name": "Albero", - "presets": { - "0": { - "description": "Un albero di una specie con foglie larghe come la quercia o il pioppo.", - "title": "Albero latifoglia" - }, - "1": { - "description": "Un albero di una specie con aghi come il pino o l’abete.", - "title": "Albero aghifoglia" - }, - "2": { - "description": "Qualora non si sia sicuri se si tratta di un albero latifoglia o aghifoglia.", - "title": "Albero" - } - }, - "tagRenderings": { - "tree-decidouous": { - "mappings": { - "0": { - "then": "Caduco: l’albero perde le sue foglie per un periodo dell’anno." - }, - "1": { - "then": "Sempreverde." - } - }, - "question": "È un sempreverde o caduco?" - }, - "tree-denotation": { - "mappings": { - "0": { - "then": "È un albero notevole per le sue dimensioni o per la posizione prominente. È utile alla navigazione." - }, - "1": { - "then": "L’albero è un monumento naturale, ad esempio perché specialmente antico o appartenente a specie importanti." - }, - "2": { - "then": "L’albero è usato per scopi agricoli, ad esempio in un frutteto." - }, - "3": { - "then": "L’albero è in un parco o qualcosa di simile (cimitero, aree didattiche, etc.)." - }, - "4": { - "then": "L’albero è un giardino residenziale." - }, - "5": { - "then": "Fa parte di un viale alberato." - }, - "6": { - "then": "L’albero si trova in un’area urbana." - }, - "7": { - "then": "L’albero si trova fuori dall’area urbana." - } - }, - "question": "Quanto significativo è questo albero? Scegli la prima risposta che corrisponde." - }, - "tree-height": { - "mappings": { - "0": { - "then": "Altezza: {height} m" - } - }, - "render": "Altezza: {height}" - }, - "tree-heritage": { - "mappings": { - "0": { - "then": "\"\"/Registrato come patrimonio da Onroerend Erfgoed Flanders" - }, - "1": { - "then": "Registrato come patrimonio da Direction du Patrimoine culturel di Bruxelles" - }, - "2": { - "then": "Registrato come patrimonio da un’organizzazione differente" - }, - "3": { - "then": "Non è registrato come patrimonio" - }, - "4": { - "then": "Registrato come patrimonio da un’organizzazione differente" - } - }, - "question": "Quest’albero è registrato come patrimonio?" - }, - "tree-leaf_type": { - "mappings": { - "0": { - "then": "\"\"/ Latifoglia" - }, - "1": { - "then": "\"\"/ Aghifoglia" - }, - "2": { - "then": "\"\"/ Privo di foglie (permanente)" - } - }, - "question": "Si tratta di un albero latifoglia o aghifoglia?" - }, - "tree_node-name": { - "mappings": { - "0": { - "then": "L’albero non ha un nome." - } - }, - "question": "L’albero ha un nome?", - "render": "Nome: {name}" - }, - "tree_node-ref:OnroerendErfgoed": { - "question": "Qual è l’ID rilasciato da Onroerend Erfgoed Flanders?", - "render": "\"\"/ Onroerend Erfgoed ID: {ref:OnroerendErfgoed}" - }, - "tree_node-wikidata": { - "question": "Qual è l’ID Wikidata per questo albero?", - "render": "\"\"/ Wikidata: {wikidata}" - } - }, - "title": { - "mappings": { - "0": { - "then": "{name}" + "title": { + "render": "Defibrillatore" } - }, - "render": "Albero" - } - }, - "viewpoint": { - "description": "Un punto panoramico che offre una bella vista. L'ideale è aggiungere un'immagine, se nessun'altra categoria è appropriata", - "name": "Punto panoramico", - "presets": { - "0": { - "title": "Punto panoramico" - } }, - "tagRenderings": { - "viewpoint-description": { - "question": "Vuoi aggiungere una descrizione?" - } + "direction": { + "description": "Questo livello visualizza le direzioni", + "name": "Visualizzazione della direzione" }, - "title": { - "render": "Punto panoramico" + "drinking_water": { + "name": "Acqua potabile", + "presets": { + "0": { + "title": "acqua potabile" + } + }, + "tagRenderings": { + "Bottle refill": { + "mappings": { + "0": { + "then": "È facile riempire d’acqua le bottiglie" + }, + "1": { + "then": "Le bottiglie d’acqua potrebbero non entrare" + } + }, + "question": "Quanto è facile riempire d’acqua le bottiglie?" + }, + "Still in use?": { + "mappings": { + "0": { + "then": "La fontanella funziona" + }, + "1": { + "then": "La fontanella è guasta" + }, + "2": { + "then": "La fontanella è chiusa" + } + }, + "question": "Questo punto di acqua potabile è sempre funzionante?", + "render": "Lo stato operativo è {operational_status}" + }, + "render-closest-drinking-water": { + "render": "C’è un’altra fontanella a {_closest_other_drinking_water_distance} metri" + } + }, + "title": { + "render": "Acqua potabile" + } + }, + "extinguisher": { + "description": "Livello della mappa che mostra gli idranti antincendio.", + "name": "Cartina degli estintori.", + "presets": { + "0": { + "description": "Un estintore è un dispositivo portatile di piccole dimensioni usato per spegnere un incendio", + "title": "Estintore" + } + }, + "tagRenderings": { + "extinguisher-location": { + "mappings": { + "0": { + "then": "Si trova all’interno." + }, + "1": { + "then": "Si trova all’esterno." + } + }, + "question": "Dove è posizionato?", + "render": "Posizione: {location}" + } + }, + "title": { + "render": "Estintori" + } + }, + "fire_station": { + "description": "Livello che mostra le caserme dei vigili del fuoco.", + "name": "Mappa delle caserme dei vigili del fuoco", + "presets": { + "0": { + "description": "Una caserma dei pompieri è un luogo dove si trovano i mezzi antincendio e i pompieri tra una missione e l’altra.", + "title": "Caserma dei vigili del fuoco" + } + }, + "tagRenderings": { + "station-agency": { + "mappings": { + "0": { + "then": "Servizio antincendio governativo" + } + }, + "question": "Quale agenzia gestisce questa stazione?", + "render": "Questa stazione è gestita da {operator}." + }, + "station-name": { + "question": "Come si chiama questa caserma dei vigili del fuoco?", + "render": "Questa caserma si chiama {name}." + }, + "station-operator": { + "mappings": { + "0": { + "then": "Questa stazione è gestita dal governo." + }, + "1": { + "then": "Questa stazione è gestita dalla comunità oppure un’associazione informale." + }, + "2": { + "then": "Questa stazione è gestita da un gruppo di volontari ufficiale." + }, + "3": { + "then": "Questa stazione è gestita da privati." + } + }, + "question": "Com’è classificato il gestore di questa stazione?", + "render": "Il gestore è un ente {operator:type}." + }, + "station-place": { + "question": "In che località si trova la stazione? (ad es. quartiere, paese o città)", + "render": "La stazione si trova a {addr:place}." + }, + "station-street": { + "question": " Qual è il nome della via in cui si trova la caserma?", + "render": "La stazione si trova in una strada chiamata {addr:street}." + } + }, + "title": { + "render": "Caserma dei vigili del fuoco" + } + }, + "ghost_bike": { + "name": "Bici fantasma", + "presets": { + "0": { + "title": "Bici fantasma" + } + }, + "tagRenderings": { + "ghost-bike-explanation": { + "render": "Una bici fantasma è il memoriale di un ciclista che è morto in un incidente stradale e che ha la forma di una bicicletta bianca piazzata in maniera stabile vicino al luogo dell’incidente." + }, + "ghost_bike-inscription": { + "question": "Che cosa è scritto sulla bici fantasma?", + "render": "{inscription}" + }, + "ghost_bike-name": { + "mappings": { + "0": { + "then": "Nessun nome scritto sulla bici" + } + }, + "question": "A chi è dedicata questa bici fantasma?
Rispetta la privacy (compila solo il nome se questo è stato ampiamente pubblicato o se è scritto sulla bici). Decidi se è il caso di non inserire il cognome.
", + "render": "In ricordo di {name}" + }, + "ghost_bike-source": { + "question": "In quale pagina web si possono trovare informazioni sulla bici fantasma o l’incidente?", + "render": "Sono disponibili ulteriori informazioni" + }, + "ghost_bike-start_date": { + "question": "Quando è stata installata questa bici fantasma?", + "render": "Piazzata in data {start_date}" + } + }, + "title": { + "mappings": { + "0": { + "then": "Bici fantasma in ricordo di {name}" + } + }, + "render": "Bici fantasma" + } + }, + "hydrant": { + "description": "Livello della mappa che mostra gli idranti antincendio.", + "name": "Mappa degli idranti", + "presets": { + "0": { + "description": "Un idrante è un punto di collegamento dove i pompieri possono estrarre acqua. Potrebbe trovarsi sottoterra.", + "title": "Idrante antincendio" + } + }, + "tagRenderings": { + "hydrant-color": { + "mappings": { + "0": { + "then": "Il colore dell’idrante è sconosciuto." + }, + "1": { + "then": "Il colore dell’idrante è giallo." + }, + "2": { + "then": "L'idrante è rosso." + } + }, + "question": "Qual è il colore dell’idrante?", + "render": "Il colore dell’idrante è {colour}" + }, + "hydrant-state": { + "mappings": { + "0": { + "then": "L’idrante è (parzialmente o completamente) funzionante." + }, + "1": { + "then": "L’idrante è fuori servizio." + }, + "2": { + "then": "L’idrante è stato rimosso." + } + }, + "question": "Aggiorna lo stato di funzionamento dell’idrante." + }, + "hydrant-type": { + "mappings": { + "0": { + "then": "Il tipo di idrante è sconosciuto." + }, + "1": { + "then": "Soprasuolo." + }, + "2": { + "then": "Tubo." + }, + "3": { + "then": "A muro." + }, + "4": { + "then": "Sottosuolo." + } + }, + "question": "Di che tipo è questo idrante?", + "render": " Tipo di idrante: {fire_hydrant:type}" + } + }, + "title": { + "render": "Idrante" + } + }, + "information_board": { + "name": "Pannelli informativi", + "presets": { + "0": { + "title": "pannello informativo" + } + }, + "title": { + "render": "Pannello informativo" + } + }, + "map": { + "description": "Una mappa, destinata ai turisti e che è sistemata in maniera permanente in uno spazio pubblico", + "name": "Mappe", + "presets": { + "0": { + "description": "Aggiungi una mappa mancante", + "title": "Mappa" + } + }, + "tagRenderings": { + "map-attribution": { + "mappings": { + "0": { + "then": "L’attribuzione a OpenStreetMap è chiaramente specificata, inclusa la licenza ODBL" + }, + "1": { + "then": "L’attribuzione a OpenStreetMap è chiaramente specificata ma la licenza non compare" + }, + "2": { + "then": "Non era presente alcun cenno a OpenStreetMap ma qualcuno vi ha attaccato un adesivo di OpenStreetMap" + }, + "3": { + "then": "Non c’è alcuna attribuzione" + }, + "4": { + "then": "Non c’è alcuna attribuzione" + } + }, + "question": "L’attribuzione a OpenStreetMap è presente?" + }, + "map-map_source": { + "mappings": { + "0": { + "then": "Questa mappa si basa su OpenStreetMap" + } + }, + "question": "Su quali dati si basa questa mappa?", + "render": "Questa mappa si basa su {map_source}" + } + }, + "title": { + "render": "Mappa" + } + }, + "nature_reserve": { + "tagRenderings": { + "Curator": { + "question": "Chi è il curatore di questa riserva naturale?
Rispetta la privacy (scrivi il nome solo se questo è noto pubblicamente)", + "render": "{curator} è il curatore di questa riserva naturale" + }, + "Dogs?": { + "mappings": { + "0": { + "then": "I cani devono essere tenuti al guinzaglio" + }, + "1": { + "then": "I cani non sono ammessi" + }, + "2": { + "then": "I cani sono liberi di girare liberi" + } + }, + "question": "I cani sono ammessi in questa riserva naturale?" + }, + "Email": { + "question": "Qual è l’indirizzo email a cui scrivere per fare domande o segnalare problemi su questa riserva naturale?
Rispetta la privacy (compila l’indirizzo email personale solo se è stato reso pubblico)", + "render": "{email}" + }, + "Surface area": { + "render": "Area: {_surface:ha} ha" + }, + "phone": { + "question": "Quale numero di telefono comporre per fare domande o segnalare problemi riguardanti questa riserva naturale?br/>Rispetta la privacy (inserisci il numero di telefono privato solo se questo è noto pubblicamente)" + } + } + }, + "picnic_table": { + "description": "Il livello che mostra i tavoli da picnic", + "name": "Tavoli da picnic", + "presets": { + "0": { + "title": "tavolo da picnic" + } + }, + "tagRenderings": { + "picnic_table-material": { + "mappings": { + "0": { + "then": "È un tavolo da picnic in legno" + }, + "1": { + "then": "È un tavolo da picnic in cemento" + } + }, + "question": "Di che materiale è fatto questo tavolo da picnic?", + "render": "Questo tavolo da picnic è fatto di {material}" + } + }, + "title": { + "render": "Tavolo da picnic" + } + }, + "playground": { + "description": "Parchi giochi", + "name": "Campi da gioco", + "presets": { + "0": { + "title": "campetto" + } + }, + "tagRenderings": { + "Playground-wheelchair": { + "mappings": { + "0": { + "then": "Completamente accessibile in sedia a rotelle" + }, + "1": { + "then": "Accesso limitato in sedia a rotelle" + }, + "2": { + "then": "Non accessibile in sedia a rotelle" + } + }, + "question": "Il campetto è accessibile a persone in sedia a rotelle?" + }, + "playground-access": { + "mappings": { + "0": { + "then": "Accessibile pubblicamente" + }, + "1": { + "then": "Accessibile solamente ai clienti dell’attività che lo gestisce" + }, + "2": { + "then": "Accessibile solamente agli studenti della scuola" + }, + "3": { + "then": "Non accessibile" + } + }, + "question": "Questo parco giochi è pubblicamente accessibile?" + }, + "playground-email": { + "question": "Qual è l’indirizzo email del gestore di questo parco giochi?", + "render": "{email}" + }, + "playground-lit": { + "mappings": { + "0": { + "then": "Questo parco giochi è illuminato di notte" + }, + "1": { + "then": "Questo parco giochi non è illuminato di notte" + } + }, + "question": "È illuminato di notte questo parco giochi?" + }, + "playground-max_age": { + "question": "Qual è l’età massima per accedere a questo parco giochi?", + "render": "Accessibile ai bambini di età inferiore a {max_age}" + }, + "playground-min_age": { + "question": "Qual è l’età minima per accedere a questo parco giochi?", + "render": "Accessibile ai bambini di almeno {min_age} anni" + }, + "playground-opening_hours": { + "mappings": { + "0": { + "then": "Si può accedere dall'alba al tramonto" + }, + "1": { + "then": "Si può sempre accedere" + } + }, + "question": "Quando si può accedere a questo campetto?" + }, + "playground-operator": { + "question": "Chi è il responsabile di questo parco giochi?", + "render": "Gestito da {operator}" + }, + "playground-phone": { + "question": "Qual è il numero di telefono del gestore del campetto?", + "render": "{phone}" + }, + "playground-surface": { + "mappings": { + "0": { + "then": "La superficie è prato" + }, + "1": { + "then": "La superficie è sabbia" + }, + "2": { + "then": "La superficie consiste di trucioli di legno" + }, + "3": { + "then": "La superficie è mattonelle regolari" + }, + "4": { + "then": "La superficie è asfalto" + }, + "5": { + "then": "La superficie è cemento" + }, + "6": { + "then": "La superficie è non pavimentato" + }, + "7": { + "then": "La superficie è pavimentato" + } + }, + "question": "Qual è la superficie di questo parco giochi?
Se ve ne è più di una, seleziona quella predominante", + "render": "La superficie è {surface}" + } + }, + "title": { + "mappings": { + "0": { + "then": "Parco giochi {name}" + } + }, + "render": "Parco giochi" + } + }, + "public_bookcase": { + "description": "Una vetrinetta ai bordi della strada contenente libri, aperta al pubblico", + "name": "Microbiblioteche", + "presets": { + "0": { + "title": "Microbiblioteca" + } + }, + "tagRenderings": { + "bookcase-booktypes": { + "mappings": { + "0": { + "then": "Principalmente libri per l'infanzia" + }, + "1": { + "then": "Principalmente libri per persone in età adulta" + }, + "2": { + "then": "Sia libri per l'infanzia, sia per l'età adulta" + } + }, + "question": "Che tipo di libri si possono trovare in questa microbiblioteca?" + }, + "bookcase-is-accessible": { + "mappings": { + "0": { + "then": "È ad accesso libero" + }, + "1": { + "then": "L'accesso è riservato ai clienti" + } + }, + "question": "Questa microbiblioteca è ad accesso libero?" + }, + "bookcase-is-indoors": { + "mappings": { + "0": { + "then": "Questa microbiblioteca si trova al chiuso" + }, + "1": { + "then": "Questa microbiblioteca si trova all'aperto" + }, + "2": { + "then": "Questa microbiblioteca si trova all'aperto" + } + }, + "question": "Questa microbiblioteca si trova all'aperto?" + }, + "public_bookcase-brand": { + "mappings": { + "0": { + "then": "Fa parte della rete 'Little Free Library'" + }, + "1": { + "then": "Questa microbiblioteca non fa parte di una rete" + } + }, + "question": "Questa microbiblioteca fa parte di una rete?", + "render": "Questa microbiblioteca fa parte di {brand}" + }, + "public_bookcase-capacity": { + "question": "Quanti libri può contenere questa microbiblioteca?", + "render": "Questa microbiblioteca può contenere fino a {capacity} libri" + }, + "public_bookcase-name": { + "mappings": { + "0": { + "then": "Questa microbiblioteca non ha un nome proprio" + } + }, + "question": "Come si chiama questa microbiblioteca pubblica?", + "render": "Questa microbiblioteca si chiama {name}" + }, + "public_bookcase-operator": { + "question": "Chi mantiene questa microbiblioteca?", + "render": "È gestita da {operator}" + }, + "public_bookcase-ref": { + "mappings": { + "0": { + "then": "Questa microbiblioteca non fa parte di una rete" + } + }, + "question": "Qual è il numero identificativo di questa microbiblioteca?", + "render": "Il numero identificativo di questa microbiblioteca nella rete {brand} è {ref}" + }, + "public_bookcase-start_date": { + "question": "Quando è stata inaugurata questa microbiblioteca?", + "render": "È stata inaugurata il {start_date}" + }, + "public_bookcase-website": { + "question": "C'è un sito web con maggiori informazioni su questa microbiblioteca?", + "render": "Maggiori informazioni sul sito web" + } + }, + "title": { + "mappings": { + "0": { + "then": "Microbiblioteca pubblica {name}" + } + }, + "render": "Microbiblioteca" + } + }, + "shops": { + "tagRenderings": { + "shops-shop": { + "mappings": { + "5": { + "then": "Autofficina" + } + } + } + } + }, + "slow_roads": { + "tagRenderings": { + "slow_roads-surface": { + "mappings": { + "0": { + "then": "La superficie è erba" + }, + "1": { + "then": "La superficie è terreno" + }, + "2": { + "then": "La superficie è non pavimentata" + }, + "3": { + "then": "La superficie è sabbia" + }, + "4": { + "then": "La superficie è pietre irregolari" + }, + "5": { + "then": "La superficie è asfalto" + }, + "6": { + "then": "La superficie è calcestruzzo" + }, + "7": { + "then": "La superficie è pavimentata" + } + }, + "render": "La superficie è {surface}" + } + } + }, + "sport_pitch": { + "description": "Un campo sportivo", + "name": "Campi sportivi", + "presets": { + "0": { + "title": "Tavolo da tennistavolo" + }, + "1": { + "title": "Campo sportivo" + } + }, + "tagRenderings": { + "sport-pitch-access": { + "mappings": { + "0": { + "then": "Aperto al pubblico" + }, + "1": { + "then": "Accesso limitato (p.es. solo con prenotazione, in certi orari, ...)" + }, + "2": { + "then": "Accesso limitato ai membri dell'associazione" + }, + "3": { + "then": "Privato - non aperto al pubblico" + } + }, + "question": "Questo campo sportivo è aperto al pubblico?" + }, + "sport-pitch-reservation": { + "mappings": { + "0": { + "then": "La prenotazione è obbligatoria per usare questo campo sportivo" + }, + "1": { + "then": "La prenotazione è consigliata per usare questo campo sportivo" + }, + "2": { + "then": "La prenotazione è consentita, ma non è obbligatoria per usare questo campo sportivo" + }, + "3": { + "then": "Non è possibile prenotare" + } + }, + "question": "È necessario prenotarsi per usare questo campo sportivo?" + }, + "sport_pitch-email": { + "question": "Qual è l'indirizzo email del gestore?" + }, + "sport_pitch-opening_hours": { + "mappings": { + "1": { + "then": "Sempre aperto" + } + }, + "question": "Quando è aperto questo campo sportivo?" + }, + "sport_pitch-phone": { + "question": "Qual è il numero di telefono del gestore?" + }, + "sport_pitch-sport": { + "mappings": { + "0": { + "then": "Qui si gioca a basket" + }, + "1": { + "then": "Qui si gioca a calcio" + }, + "2": { + "then": "Questo è un tavolo da ping pong" + }, + "3": { + "then": "Qui si gioca a tennis" + }, + "4": { + "then": "Qui si gioca a korfball" + }, + "5": { + "then": "Qui si gioca a basket" + } + }, + "question": "Quale sport si gioca qui?", + "render": "Qui si gioca a {sport}" + }, + "sport_pitch-surface": { + "mappings": { + "0": { + "then": "La superficie è erba" + }, + "1": { + "then": "La superficie è sabbia" + }, + "2": { + "then": "La superficie è pietre irregolari" + }, + "3": { + "then": "La superficie è asfalto" + }, + "4": { + "then": "La superficie è calcestruzzo" + } + }, + "question": "Qual è la superficie di questo campo sportivo?", + "render": "La superficie è {surface}" + } + }, + "title": { + "render": "Campo sportivo" + } + }, + "surveillance_camera": { + "name": "Videocamere di sorveglianza", + "tagRenderings": { + "Camera type: fixed; panning; dome": { + "mappings": { + "0": { + "then": "Una videocamera fissa (non semovente)" + }, + "1": { + "then": "Una videocamera a cupola (che può ruotare)" + }, + "2": { + "then": "Una videocamera panoramica" + } + }, + "question": "Di che tipo di videocamera si tratta?" + }, + "Level": { + "question": "A che piano si trova questa videocamera?", + "render": "Si trova al piano {level}" + }, + "Operator": { + "question": "Chi gestisce questa videocamera a circuito chiuso?", + "render": "È gestita da {operator}" + }, + "Surveillance type: public, outdoor, indoor": { + "mappings": { + "0": { + "then": "Sorveglia un'area pubblica, come una strada, un ponte, una piazza, un parco, una stazione, un passaggio o un sottopasso pubblico, ..." + }, + "1": { + "then": "Sorveglia un'area esterna di proprietà privata (un parcheggio, una stazione di servizio, un cortile, un ingresso, un vialetto privato, ...)" + }, + "2": { + "then": "Sorveglia un ambiente interno di proprietà privata, per esempio un negozio, un parcheggio sotterraneo privato, ..." + } + }, + "question": "Che cosa sorveglia questa videocamera" + }, + "Surveillance:zone": { + "mappings": { + "0": { + "then": "Sorveglia un parcheggio" + }, + "1": { + "then": "Sorveglia il traffico" + }, + "2": { + "then": "Sorveglia un ingresso" + }, + "3": { + "then": "Sorveglia un corridoio" + }, + "4": { + "then": "Sorveglia una pensilina del trasporto pubblico" + }, + "5": { + "then": "Sorveglia un negozio" + } + }, + "question": "Che cosa è sorvegliato qui?", + "render": " Sorveglia una {surveillance:zone}" + }, + "camera:mount": { + "mappings": { + "0": { + "then": "Questa telecamera è posizionata contro un muro" + }, + "1": { + "then": "Questa telecamera è posizionata su un palo" + }, + "2": { + "then": "Questa telecamera è posizionata sul soffitto" + } + }, + "question": "Com'è posizionata questa telecamera?", + "render": "Metodo di montaggio: {camera:mount}" + }, + "camera_direction": { + "mappings": { + "0": { + "then": "Punta in direzione {direction}" + } + }, + "question": "In quale direzione geografica punta questa videocamera?", + "render": "Punta in direzione {camera:direction}" + }, + "is_indoor": { + "mappings": { + "0": { + "then": "Questa videocamera si trova al chiuso" + }, + "1": { + "then": "Questa videocamera si trova all'aperto" + }, + "2": { + "then": "Questa videocamera si trova probabilmente all'esterno" + } + }, + "question": "Lo spazio pubblico sorvegliato da questa videocamera è all'aperto o al chiuso?" + } + }, + "title": { + "render": "Videocamera di sorveglianza" + } + }, + "toilet": { + "name": "Servizi igienici", + "presets": { + "0": { + "title": "servizi igienici aperti al pubblico" + }, + "1": { + "description": "Servizi igienici che hanno almeno una toilette accessibile a persone in sedia a rotelle", + "title": "servizi igienici accessibili per persone in sedia a rotelle" + } + }, + "tagRenderings": { + "toilet-access": { + "mappings": { + "0": { + "then": "Accesso pubblico" + }, + "1": { + "then": "Accesso riservato ai clienti e alle clienti" + }, + "2": { + "then": "Non accessibile" + }, + "3": { + "then": "Accessibile, ma occorre chiedere una chiave per accedere" + }, + "4": { + "then": "Accesso pubblico" + } + }, + "question": "Questi servizi igienici sono aperti al pubblico?", + "render": "L'accesso è {access}" + }, + "toilet-changing_table:location": { + "mappings": { + "0": { + "then": "Il fasciatoio è nei servizi igienici femminili. " + }, + "1": { + "then": "Il fasciatoio è nei servizi igienici maschili. " + }, + "2": { + "then": "Il fasciatoio è nei servizi igienici per persone in sedia a rotelle. " + }, + "3": { + "then": "Il fasciatoio è in una stanza dedicata. " + } + }, + "question": "Dove si trova il fasciatoio?", + "render": "Il fasciatoio si trova presso {changing_table:location}" + }, + "toilet-charge": { + "question": "Quanto costa l'accesso a questi servizi igienici?", + "render": "La tariffa è {charge}" + }, + "toilets-changing-table": { + "mappings": { + "0": { + "then": "È disponibile un fasciatoio" + }, + "1": { + "then": "Non è disponibile un fasciatoio" + } + }, + "question": "È disponibile un fasciatoio (per cambiare i pannolini)?" + }, + "toilets-fee": { + "mappings": { + "0": { + "then": "Questi servizi igienici sono a pagamento" + }, + "1": { + "then": "Gratis" + } + }, + "question": "Questi servizi igienici sono gratuiti?" + }, + "toilets-type": { + "mappings": { + "0": { + "then": "Ci sono solo WC con sedile" + }, + "1": { + "then": "Ci sono solo urinali" + }, + "2": { + "then": "Ci sono solo turche" + }, + "3": { + "then": "Ci sono sia sedili, sia urinali" + } + }, + "question": "Di che tipo di servizi igienici si tratta?" + }, + "toilets-wheelchair": { + "mappings": { + "0": { + "then": "C'è un WC riservato alle persone in sedia a rotelle" + }, + "1": { + "then": "Non accessibile in sedia a rotelle" + } + }, + "question": "C'è un WC riservato alle persone in sedia a rotelle" + } + }, + "title": { + "render": "Servizi igienici" + } + }, + "tree_node": { + "name": "Albero", + "presets": { + "0": { + "description": "Un albero di una specie con foglie larghe come la quercia o il pioppo.", + "title": "Albero latifoglia" + }, + "1": { + "description": "Un albero di una specie con aghi come il pino o l’abete.", + "title": "Albero aghifoglia" + }, + "2": { + "description": "Qualora non si sia sicuri se si tratta di un albero latifoglia o aghifoglia.", + "title": "Albero" + } + }, + "tagRenderings": { + "tree-decidouous": { + "mappings": { + "0": { + "then": "Caduco: l’albero perde le sue foglie per un periodo dell’anno." + }, + "1": { + "then": "Sempreverde." + } + }, + "question": "È un sempreverde o caduco?" + }, + "tree-denotation": { + "mappings": { + "0": { + "then": "È un albero notevole per le sue dimensioni o per la posizione prominente. È utile alla navigazione." + }, + "1": { + "then": "L’albero è un monumento naturale, ad esempio perché specialmente antico o appartenente a specie importanti." + }, + "2": { + "then": "L’albero è usato per scopi agricoli, ad esempio in un frutteto." + }, + "3": { + "then": "L’albero è in un parco o qualcosa di simile (cimitero, aree didattiche, etc.)." + }, + "4": { + "then": "L’albero è un giardino residenziale." + }, + "5": { + "then": "Fa parte di un viale alberato." + }, + "6": { + "then": "L’albero si trova in un’area urbana." + }, + "7": { + "then": "L’albero si trova fuori dall’area urbana." + } + }, + "question": "Quanto significativo è questo albero? Scegli la prima risposta che corrisponde." + }, + "tree-height": { + "mappings": { + "0": { + "then": "Altezza: {height} m" + } + }, + "render": "Altezza: {height}" + }, + "tree-heritage": { + "mappings": { + "0": { + "then": "Registrato come patrimonio da Onroerend Erfgoed Flanders" + }, + "1": { + "then": "Registrato come patrimonio da Direction du Patrimoine culturel di Bruxelles" + }, + "2": { + "then": "Registrato come patrimonio da un’organizzazione differente" + }, + "3": { + "then": "Non è registrato come patrimonio" + }, + "4": { + "then": "Registrato come patrimonio da un’organizzazione differente" + } + }, + "question": "Quest’albero è registrato come patrimonio?" + }, + "tree-leaf_type": { + "mappings": { + "0": { + "then": "Latifoglia" + }, + "1": { + "then": "Aghifoglia" + }, + "2": { + "then": "Privo di foglie (permanente)" + } + }, + "question": "Si tratta di un albero latifoglia o aghifoglia?" + }, + "tree_node-name": { + "mappings": { + "0": { + "then": "L’albero non ha un nome." + } + }, + "question": "L’albero ha un nome?", + "render": "Nome: {name}" + }, + "tree_node-ref:OnroerendErfgoed": { + "question": "Qual è l’ID rilasciato da Onroerend Erfgoed Flanders?", + "render": "\"\"/ Onroerend Erfgoed ID: {ref:OnroerendErfgoed}" + }, + "tree_node-wikidata": { + "question": "Qual è l’ID Wikidata per questo albero?", + "render": "\"\"/ Wikidata: {wikidata}" + } + }, + "title": { + "render": "Albero" + } + }, + "viewpoint": { + "description": "Un punto panoramico che offre una bella vista. L'ideale è aggiungere un'immagine, se nessun'altra categoria è appropriata", + "name": "Punto panoramico", + "presets": { + "0": { + "title": "Punto panoramico" + } + }, + "tagRenderings": { + "viewpoint-description": { + "question": "Vuoi aggiungere una descrizione?" + } + }, + "title": { + "render": "Punto panoramico" + } } - } } \ No newline at end of file diff --git a/langs/layers/ja.json b/langs/layers/ja.json index 5e70da46e0..a81b396563 100644 --- a/langs/layers/ja.json +++ b/langs/layers/ja.json @@ -1,168 +1,368 @@ { - "artwork": { - "description": "多様な作品", - "name": "美術品", - "presets": { - "0": { - "title": "アートワーク" - } - }, - "tagRenderings": { - "artwork-artist_name": { - "question": "どのアーティストが作ったんですか?", - "render": "作成者:{artist_name}" - }, - "artwork-artwork_type": { - "mappings": { - "0": { - "then": "建物" - }, - "1": { - "then": "壁画" - }, - "2": { - "then": "絵画" - }, - "3": { - "then": "彫刻" - }, - "4": { - "then": "彫像" - }, - "5": { - "then": "胸像" - }, - "6": { - "then": "石" - }, - "7": { - "then": "インスタレーション" - }, - "8": { - "then": "落書き" - }, - "9": { - "then": "レリーフ" - }, - "10": { - "then": "Azulejo (スペインの装飾タイル)" - }, - "11": { - "then": "タイルワーク" - } + "ambulancestation": { + "description": "救急ステーションは、救急車、医療機器、個人用保護具、およびその他の医療用品を保管する場所です。", + "name": "救急ステーションの地図", + "presets": { + "0": { + "description": "救急ステーション(消防署)をマップに追加する", + "title": "救急ステーション(消防署)" + } }, - "question": "この作品の種類は何ですか?", - "render": "これは{artwork_type}です" - }, - "artwork-website": { - "question": "この作品についての詳しい情報はどのウェブサイトにありますか?", - "render": "Webサイトに詳細情報がある" - }, - "artwork-wikidata": { - "question": "このアートワークに関するWikidataのエントリーはどれですか?", - "render": "{wikidata}に関連する" - } - }, - "title": { - "mappings": { - "0": { - "then": "アートワーク {name}" + "tagRenderings": { + "ambulance-agency": { + "question": "このステーションを運営しているのはどこですか?", + "render": "このステーションは{operator}によって運営されています。" + }, + "ambulance-name": { + "question": "この救急ステーションの名前は何ですか?", + "render": "このステーションの名前は{name}です。" + }, + "ambulance-operator-type": { + "mappings": { + "0": { + "then": "ステーションは自治体が運営する。" + }, + "1": { + "then": "任意団体やコミュニティが運営しているステーションである。" + }, + "2": { + "then": "公益団体が運営しているステーションである。" + }, + "3": { + "then": "個人が運営しているステーションである。" + } + }, + "question": "ステーションの運営の分類は?", + "render": "運営者は、{operator:type} です。" + }, + "ambulance-place": { + "question": "このステーションの住所は?(例: 地区、村、または町の名称)", + "render": "このステーションは{addr:place}にあります。" + }, + "ambulance-street": { + "question": " 救急ステーションの所在地はどこですか?", + "render": "{addr:street} 沿いにあります。" + } + }, + "title": { + "render": "救急ステーション" } - }, - "render": "アートワーク" - } - }, - "food": { - "tagRenderings": { - "friture-take-your-container": { - "mappings": { - "0": { - "then": "自分の容器を持ってきて、注文を受け取ることができ、使い捨ての梱包材を節約して、無駄を省くことができます" - }, - "1": { - "then": "独自の容器を持参することはできません" - }, - "2": { - "then": "自身の容器が注文に必要。" - } - }, - "question": "お客様が持参容器(調理用の鍋や小さな鍋など)をもってきた場合は、注文の梱包に使用されますか?
" - } - } - }, - "ghost_bike": { - "name": "ゴーストバイク", - "title": { - "render": "ゴーストバイク" - } - }, - "shops": { - "description": "ショップ", - "name": "店", - "presets": { - "0": { - "description": "新しい店を追加する", - "title": "店" - } }, - "tagRenderings": { - "shops-email": { - "question": "このお店のメールアドレスは何ですか?", - "render": "{email}" - }, - "shops-name": { - "question": "このお店の名前は何ですか?" - }, - "shops-opening_hours": { - "question": "この店の営業時間は何時から何時までですか?", - "render": "{opening_hours_table(opening_hours)}" - }, - "shops-phone": { - "question": "電話番号は何番ですか?", - "render": "{phone}" - }, - "shops-shop": { - "mappings": { - "0": { - "then": "コンビニエンスストア" - }, - "1": { - "then": "スーパーマーケット" - }, - "2": { - "then": "衣料品店" - }, - "3": { - "then": "理容師" - }, - "4": { - "then": "ベーカリー" - }, - "5": { - "then": "自動車修理(ガレージ)" - }, - "6": { - "then": "自動車ディーラー" - } + "artwork": { + "description": "多様な作品", + "name": "美術品", + "presets": { + "0": { + "title": "アートワーク" + } }, - "question": "このお店では何を売っていますか?", - "render": "こちらのお店では{shop}を販売しております" - }, - "shops-website": { - "question": "このお店のホームページは何ですか?", - "render": "{website}" - } - }, - "title": { - "mappings": { - "0": { - "then": "{name}" + "tagRenderings": { + "artwork-artist_name": { + "question": "どのアーティストが作ったんですか?", + "render": "作成者:{artist_name}" + }, + "artwork-artwork_type": { + "mappings": { + "0": { + "then": "建物" + }, + "1": { + "then": "壁画" + }, + "2": { + "then": "絵画" + }, + "3": { + "then": "彫刻" + }, + "4": { + "then": "彫像" + }, + "5": { + "then": "胸像" + }, + "6": { + "then": "石" + }, + "7": { + "then": "インスタレーション" + }, + "8": { + "then": "落書き" + }, + "9": { + "then": "レリーフ" + }, + "10": { + "then": "Azulejo (スペインの装飾タイル)" + }, + "11": { + "then": "タイルワーク" + } + }, + "question": "この作品の種類は何ですか?", + "render": "これは{artwork_type}です" + }, + "artwork-website": { + "question": "この作品についての詳しい情報はどのウェブサイトにありますか?", + "render": "Webサイトに詳細情報がある" + }, + "artwork-wikidata": { + "question": "このアートワークに関するWikidataのエントリーはどれですか?", + "render": "{wikidata}に関連する" + } }, - "1": { - "then": "{shop}" + "title": { + "mappings": { + "0": { + "then": "アートワーク {name}" + } + }, + "render": "アートワーク" + } + }, + "extinguisher": { + "description": "消火栓を表示するマップレイヤ。", + "name": "消火器の地図です。", + "presets": { + "0": { + "description": "消火器は、火災を止めるために使用される小型で携帯可能な装置である", + "title": "消火器" + } + }, + "tagRenderings": { + "extinguisher-location": { + "mappings": { + "0": { + "then": "屋内にある。" + }, + "1": { + "then": "屋外にある。" + } + }, + "question": "どこにあるんですか?", + "render": "場所:{location}" + } + }, + "title": { + "render": "消火器" + } + }, + "fire_station": { + "description": "消防署を表示するためのマップレイヤ。", + "name": "消防署の地図", + "presets": { + "0": { + "description": "消防署は、運転していないときに消防車や消防士がいる場所です。", + "title": "消防署" + } + }, + "tagRenderings": { + "station-agency": { + "mappings": { + "0": { + "then": "消防局(消防庁)" + } + }, + "question": "このステーションを運営しているのはどこですか?", + "render": "このステーションは{operator}によって運営されています。" + }, + "station-name": { + "question": "この消防署の名前は何ですか?", + "render": "このステーションの名前は{name}です。" + }, + "station-operator": { + "mappings": { + "0": { + "then": "ステーションは自治体が運営する。" + }, + "1": { + "then": "任意団体やコミュニティが運営しているステーションである。" + }, + "2": { + "then": "公益団体が運営しているステーションである。" + }, + "3": { + "then": "個人が運営しているステーションである。" + } + }, + "question": "ステーションの運営の分類は?", + "render": "運営者は、{operator:type} です。" + }, + "station-place": { + "question": "このステーションの住所は?(例: 地区、村、または町の名称)", + "render": "このステーションは{addr:place}にあります。" + }, + "station-street": { + "question": " 救急ステーションの所在地はどこですか?", + "render": "{addr:street} 沿いにあります。" + } + }, + "title": { + "render": "消防署" + } + }, + "food": { + "tagRenderings": { + "friture-take-your-container": { + "mappings": { + "0": { + "then": "自分の容器を持ってきて、注文を受け取ることができ、使い捨ての梱包材を節約して、無駄を省くことができます" + }, + "1": { + "then": "独自の容器を持参することはできません" + }, + "2": { + "then": "自身の容器が注文に必要。" + } + }, + "question": "お客様が持参容器(調理用の鍋や小さな鍋など)をもってきた場合は、注文の梱包に使用されますか?
" + } + } + }, + "ghost_bike": { + "name": "ゴーストバイク", + "presets": { + "0": { + "title": "ゴーストバイク" + } + }, + "title": { + "render": "ゴーストバイク" + } + }, + "hydrant": { + "description": "消火栓を表示するマップレイヤ。", + "name": "消火栓の地図", + "presets": { + "0": { + "description": "消火栓は消防士が水を汲み上げることができる接続点です。地下にあるかもしれません。", + "title": "消火栓" + } + }, + "tagRenderings": { + "hydrant-color": { + "mappings": { + "0": { + "then": "消火栓の色は不明です。" + }, + "1": { + "then": "消火栓の色は黄色です。" + }, + "2": { + "then": "消火栓の色は赤です。" + } + }, + "question": "消火栓の色は何色ですか?", + "render": "消火栓の色は{colour}です" + }, + "hydrant-state": { + "mappings": { + "0": { + "then": "消火栓は(完全にまたは部分的に)機能しています。" + }, + "1": { + "then": "消火栓は使用できません。" + }, + "2": { + "then": "消火栓が撤去されました。" + } + }, + "question": "消火栓のライフサイクルステータスを更新します。" + }, + "hydrant-type": { + "mappings": { + "0": { + "then": "消火栓の種類は不明です。" + }, + "1": { + "then": "ピラー型。" + }, + "2": { + "then": "パイプ型。" + }, + "3": { + "then": "壁型。" + }, + "4": { + "then": "地下式。" + } + }, + "question": "どんな消火栓なんですか?", + "render": " 消火栓のタイプ:{fire_hydrant:type}" + } + }, + "title": { + "render": "消火栓" + } + }, + "shops": { + "description": "ショップ", + "name": "店", + "presets": { + "0": { + "description": "新しい店を追加する", + "title": "店" + } + }, + "tagRenderings": { + "shops-email": { + "question": "このお店のメールアドレスは何ですか?", + "render": "{email}" + }, + "shops-name": { + "question": "このお店の名前は何ですか?" + }, + "shops-opening_hours": { + "question": "この店の営業時間は何時から何時までですか?", + "render": "{opening_hours_table(opening_hours)}" + }, + "shops-phone": { + "question": "電話番号は何番ですか?", + "render": "{phone}" + }, + "shops-shop": { + "mappings": { + "0": { + "then": "コンビニエンスストア" + }, + "1": { + "then": "スーパーマーケット" + }, + "2": { + "then": "衣料品店" + }, + "3": { + "then": "理容師" + }, + "4": { + "then": "ベーカリー" + }, + "5": { + "then": "自動車修理(ガレージ)" + }, + "6": { + "then": "自動車ディーラー" + } + }, + "question": "このお店では何を売っていますか?", + "render": "こちらのお店では{shop}を販売しております" + }, + "shops-website": { + "question": "このお店のホームページは何ですか?", + "render": "{website}" + } + }, + "title": { + "mappings": { + "0": { + "then": "{name}" + }, + "1": { + "then": "{shop}" + } + }, + "render": "店" } - }, - "render": "店" } - } } \ No newline at end of file diff --git a/langs/layers/nan.json b/langs/layers/nan.json index 0967ef424b..9e26dfeeb6 100644 --- a/langs/layers/nan.json +++ b/langs/layers/nan.json @@ -1 +1 @@ -{} +{} \ No newline at end of file diff --git a/langs/layers/nb_NO.json b/langs/layers/nb_NO.json index d9d7e41239..3f8508b367 100644 --- a/langs/layers/nb_NO.json +++ b/langs/layers/nb_NO.json @@ -1,194 +1,252 @@ { - "artwork": { - "name": "Kunstverk", - "presets": { - "0": { - "title": "Kunstverk" - } - }, - "tagRenderings": { - "artwork-artist_name": { - "question": "Hvilken artist lagde dette?", - "render": "Laget av {artist_name}" - }, - "artwork-artwork_type": { - "mappings": { - "0": { - "then": "Arkitektur" - }, - "1": { - "then": "Veggmaleri" - }, - "2": { - "then": "Maleri" - }, - "3": { - "then": "Skulptur" - }, - "4": { - "then": "Statue" - }, - "5": { - "then": "Byste" - }, - "6": { - "then": "Stein" - }, - "7": { - "then": "Installasjon" - }, - "8": { - "then": "Graffiti" - }, - "9": { - "then": "Relieff" - }, - "10": { - "then": "Azulejo (Spansk dekorativt flisverk)" - }, - "11": { - "then": "Flisarbeid" - } + "artwork": { + "name": "Kunstverk", + "presets": { + "0": { + "title": "Kunstverk" + } }, - "question": "Hvilken type kunstverk er dette?", - "render": "Dette er et kunstverk av typen {artwork_type}" - }, - "artwork-website": { - "question": "Finnes det en nettside med mer info om dette kunstverket?", - "render": "Mer info er å finne på denne nettsiden" - }, - "artwork-wikidata": { - "question": "Hvilken Wikipedia-oppføring samsvarer med dette kunstverket?", - "render": "Samsvarer med {wikidata}" - } - }, - "title": { - "mappings": { - "0": { - "then": "Kunstverk {name}" + "tagRenderings": { + "artwork-artist_name": { + "question": "Hvilken artist lagde dette?", + "render": "Laget av {artist_name}" + }, + "artwork-artwork_type": { + "mappings": { + "0": { + "then": "Arkitektur" + }, + "1": { + "then": "Veggmaleri" + }, + "2": { + "then": "Maleri" + }, + "3": { + "then": "Skulptur" + }, + "4": { + "then": "Statue" + }, + "5": { + "then": "Byste" + }, + "6": { + "then": "Stein" + }, + "7": { + "then": "Installasjon" + }, + "8": { + "then": "Graffiti" + }, + "9": { + "then": "Relieff" + }, + "10": { + "then": "Azulejo (Spansk dekorativt flisverk)" + }, + "11": { + "then": "Flisarbeid" + } + }, + "question": "Hvilken type kunstverk er dette?", + "render": "Dette er et kunstverk av typen {artwork_type}" + }, + "artwork-website": { + "question": "Finnes det en nettside med mer info om dette kunstverket?", + "render": "Mer info er å finne på denne nettsiden" + }, + "artwork-wikidata": { + "question": "Hvilken Wikipedia-oppføring samsvarer med dette kunstverket?", + "render": "Samsvarer med {wikidata}" + } + }, + "title": { + "mappings": { + "0": { + "then": "Kunstverk {name}" + } + }, + "render": "Kunstverk" } - }, - "render": "Kunstverk" - } - }, - "bench": { - "name": "Benker", - "presets": { - "0": { - "title": "benk" - } }, - "tagRenderings": { - "bench-backrest": { - "mappings": { - "0": { - "then": "Rygglene: Ja" - }, - "1": { - "then": "Rygglene: Nei" - } + "bench": { + "name": "Benker", + "presets": { + "0": { + "title": "benk" + } }, - "question": "Har denne beken et rygglene?" - }, - "bench-colour": { - "mappings": { - "0": { - "then": "Farge: brun" - }, - "1": { - "then": "Farge: grønn" - }, - "2": { - "then": "Farge: grå" - }, - "3": { - "then": "Farge: hvit" - }, - "4": { - "then": "Farge: rød" - }, - "5": { - "then": "Farge: svart" - }, - "6": { - "then": "Farge: blå" - }, - "7": { - "then": "Farge: gul" - } + "tagRenderings": { + "bench-backrest": { + "mappings": { + "0": { + "then": "Rygglene: Ja" + }, + "1": { + "then": "Rygglene: Nei" + } + }, + "question": "Har denne beken et rygglene?" + }, + "bench-colour": { + "mappings": { + "0": { + "then": "Farge: brun" + }, + "1": { + "then": "Farge: grønn" + }, + "2": { + "then": "Farge: grå" + }, + "3": { + "then": "Farge: hvit" + }, + "4": { + "then": "Farge: rød" + }, + "5": { + "then": "Farge: svart" + }, + "6": { + "then": "Farge: blå" + }, + "7": { + "then": "Farge: gul" + } + }, + "render": "Farge: {colour}" + }, + "bench-material": { + "mappings": { + "0": { + "then": "Materiale: tre" + }, + "1": { + "then": "Materiale: metall" + }, + "2": { + "then": "Materiale: stein" + }, + "3": { + "then": "Materiale: betong" + }, + "4": { + "then": "Materiale: plastikk" + }, + "5": { + "then": "Materiale: stål" + } + }, + "render": "Materiale: {material}" + }, + "bench-seats": { + "question": "Hvor mange sitteplasser har denne benken?", + "render": "{seats} seter" + } }, - "render": "Farge: {colour}" - }, - "bench-material": { - "mappings": { - "0": { - "then": "Materiale: tre" - }, - "1": { - "then": "Materiale: metall" - }, - "2": { - "then": "Materiale: stein" - }, - "3": { - "then": "Materiale: betong" - }, - "4": { - "then": "Materiale: plastikk" - }, - "5": { - "then": "Materiale: stål" - } - }, - "render": "Materiale: {material}" - }, - "bench-seats": { - "question": "Hvor mange sitteplasser har denne benken?", - "render": "{seats} seter" - } - }, - "title": { - "render": "Benk" - } - }, - "bench_at_pt": { - "name": "Benker", - "title": { - "render": "Benk" - } - }, - "bicycle_library": { - "tagRenderings": { - "bicycle_library-charge": { - "mappings": { - "0": { - "then": "Det er gratis å leie en sykkel" - } - }, - "question": "Hvor mye koster det å leie en sykkel?", - "render": "Sykkelleie koster {charge}" - }, - "bicycle_library-name": { - "question": "Hva heter dette sykkelbiblioteket?", - "render": "Dette sykkelbiblioteket heter {name}" - } - } - }, - "ghost_bike": { - "name": "Spøkelsessykler", - "title": { - "render": "Spøkelsessykler" - } - }, - "shops": { - "tagRenderings": { - "shops-shop": { - "mappings": { - "5": { - "then": "Bilverksted" - } + "title": { + "render": "Benk" + } + }, + "bench_at_pt": { + "name": "Benker", + "title": { + "render": "Benk" + } + }, + "bicycle_library": { + "tagRenderings": { + "bicycle_library-charge": { + "mappings": { + "0": { + "then": "Det er gratis å leie en sykkel" + } + }, + "question": "Hvor mye koster det å leie en sykkel?", + "render": "Sykkelleie koster {charge}" + }, + "bicycle_library-name": { + "question": "Hva heter dette sykkelbiblioteket?", + "render": "Dette sykkelbiblioteket heter {name}" + } + } + }, + "extinguisher": { + "description": "Kartlag for å vise brannslokkere.", + "name": "Kart over brannhydranter", + "presets": { + "0": { + "title": "Brannslukker" + } + }, + "title": { + "render": "Brannslokkere" + } + }, + "fire_station": { + "name": "Kart over brannstasjoner", + "presets": { + "0": { + "title": "Brannstasjon" + } + }, + "tagRenderings": { + "station-name": { + "render": "Denne stasjonen heter {name}." + }, + "station-operator": { + "mappings": { + "0": { + "then": "Stasjonen drives av myndighetene." + } + } + } + }, + "title": { + "render": "Brannstasjon" + } + }, + "ghost_bike": { + "name": "Spøkelsessykler", + "presets": { + "0": { + "title": "Spøkelsessykler" + } + }, + "title": { + "render": "Spøkelsessykler" + } + }, + "hydrant": { + "description": "Kartlag for å vise brannhydranter.", + "name": "Kart over brannhydranter", + "presets": { + "0": { + "title": "Brannhydrant" + } + }, + "tagRenderings": { + "hydrant-color": { + "question": "Hvilken farge har brannhydranten?", + "render": "Brannhydranter er {colour}" + } + }, + "title": { + "render": "Brannhydrant" + } + }, + "shops": { + "tagRenderings": { + "shops-shop": { + "mappings": { + "5": { + "then": "Bilverksted" + } + } + } } - } } - } } \ No newline at end of file diff --git a/langs/layers/nl.json b/langs/layers/nl.json index 14f425ddf4..58d377dd0c 100644 --- a/langs/layers/nl.json +++ b/langs/layers/nl.json @@ -1,4581 +1,5197 @@ { - "artwork": { - "description": "Verschillende soorten kunstwerken", - "name": "Kunstwerken", - "presets": { - "0": { - "title": "Kunstwerk" - } - }, - "tagRenderings": { - "artwork-artist_name": { - "question": "Welke kunstenaar creëerde dit kunstwerk?", - "render": "Gecreëerd door {artist_name}" - }, - "artwork-artwork_type": { - "mappings": { - "0": { - "then": "Architectuur" - }, - "1": { - "then": "Muurschildering" - }, - "2": { - "then": "Schilderij" - }, - "3": { - "then": "Beeldhouwwerk" - }, - "4": { - "then": "Standbeeld" - }, - "5": { - "then": "Buste" - }, - "6": { - "then": "Steen" - }, - "7": { - "then": "Installatie" - }, - "8": { - "then": "Graffiti" - }, - "9": { - "then": "Reliëf" - }, - "10": { - "then": "Azulejo (Spaanse siertegels)" - }, - "11": { - "then": "Tegelwerk" - } + "address": { + "description": "Adressen", + "name": "Bekende adressen in OSM", + "tagRenderings": { + "fixme": { + "question": "Wat moet hier gecorrigeerd worden? Leg het uit" + }, + "housenumber": { + "mappings": { + "0": { + "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}" + } }, - "question": "Wat voor soort kunstwerk is dit?", - "render": "Dit is een {artwork_type}" - }, - "artwork-website": { - "question": "Is er een website met meer informatie over dit kunstwerk?", - "render": "Meer informatie op deze website" - }, - "artwork-wikidata": { - "question": "Welk Wikidata-item beschrijft dit kunstwerk?", - "render": "Komt overeen met {wikidata}" - } - }, - "title": { - "mappings": { - "0": { - "then": "Kunstwerk {name}" + "title": { + "render": "Bekend adres" } - }, - "render": "Kunstwerk" - } - }, - "barrier": { - "description": "Hindernissen tijdens het fietsen, zoals paaltjes en fietshekjes", - "name": "Barrières", - "presets": { - "0": { - "description": "Een paaltje in de weg", - "title": "Paaltje" - }, - "1": { - "description": "Fietshekjes, voor het afremmen van fietsers", - "title": "Fietshekjes" - } }, - "tagRenderings": { - "Bollard type": { - "mappings": { - "0": { - "then": "Verwijderbare paal" - }, - "1": { - "then": "Vaste paal" - }, - "2": { - "then": "Paal die platgevouwen kan worden" - }, - "3": { - "then": "Flexibele paal, meestal plastic" - }, - "4": { - "then": "Verzonken poller" - } - }, - "question": "Wat voor soort paal is dit?" - }, - "Cycle barrier type": { - "mappings": { - "0": { - "then": "Enkelvoudig, slechts twee hekjes met ruimte ertussen " - }, - "1": { - "then": "Dubbel, twee hekjes achter elkaar " - }, - "2": { - "then": "Drievoudig, drie hekjes achter elkaar " - }, - "3": { - "then": "Knijppoort, ruimte is smaller aan de top, dan aan de bodem " - } - }, - "question": "Wat voor fietshekjes zijn dit?" - }, - "MaxWidth": { - "question": "Hoe breed is de ruimte naast de barrière?", - "render": "Maximumbreedte: {maxwidth:physical} m" - }, - "Overlap (cyclebarrier)": { - "question": "Hoeveel overlappen de barrières?" - }, - "Space between barrier (cyclebarrier)": { - "question": "Hoeveel ruimte is er tussen de barrières (langs de lengte van de weg)?", - "render": "Ruimte tussen barrières (langs de lengte van de weg): {width:separation} m" - }, - "Width of opening (cyclebarrier)": { - "question": "Hoe breed is de smalste opening naast de barrières?", - "render": "Breedte van de opening: {width:opening} m" - }, - "bicycle=yes/no": { - "mappings": { - "0": { - "then": "Een fietser kan hier langs." - }, - "1": { - "then": "Een fietser kan hier niet langs." - } - }, - "question": "Kan een fietser langs deze barrière?" - } - }, - "title": { - "mappings": { - "0": { - "then": "Paaltje" - }, - "1": { - "then": "Fietshekjes" - } - }, - "render": "Barrière" - } - }, - "bench": { - "name": "Zitbanken", - "presets": { - "0": { - "title": "zitbank" - } - }, - "tagRenderings": { - "bench-backrest": { - "mappings": { - "0": { - "then": "Heeft een rugleuning" - }, - "1": { - "then": "Rugleuning ontbreekt" - } - }, - "question": "Heeft deze zitbank een rugleuning?" - }, - "bench-colour": { - "mappings": { - "0": { - "then": "De kleur is bruin" - }, - "1": { - "then": "De kleur is groen" - }, - "2": { - "then": "De kleur is grijs" - }, - "3": { - "then": "De kleur is wit" - }, - "4": { - "then": "De kleur is rood" - }, - "5": { - "then": "De kleur is zwart" - }, - "6": { - "then": "De kleur is blauw" - }, - "7": { - "then": "De kleur is geel" - } - }, - "question": "Welke kleur heeft deze zitbank?", - "render": "Kleur: {colour}" - }, - "bench-direction": { - "question": "In welke richting kijk je wanneer je op deze zitbank zit?", - "render": "Wanneer je op deze bank zit, dan kijk je in {direction}°." - }, - "bench-material": { - "mappings": { - "0": { - "then": "Gemaakt uit hout" - }, - "1": { - "then": "Gemaakt uit metaal" - }, - "2": { - "then": "Gemaakt uit steen" - }, - "3": { - "then": "Gemaakt uit beton" - }, - "4": { - "then": "Gemaakt uit plastiek" - }, - "5": { - "then": "Gemaakt uit staal" - } - }, - "question": "Uit welk materiaal is het zitgedeelte van deze zitbank gemaakt?", - "render": "Gemaakt van {material}" - }, - "bench-seats": { - "question": "Hoeveel zitplaatsen heeft deze bank?", - "render": "{seats} zitplaatsen" - }, - "bench-survey:date": { - "question": "Wanneer is deze laatste bank laatst gesurveyed?", - "render": "Deze bank is laatst gesurveyd op {survey:date}" - } - }, - "title": { - "render": "Zitbank" - } - }, - "bench_at_pt": { - "name": "Zitbanken aan bushaltes", - "tagRenderings": { - "bench_at_pt-bench_type": { - "mappings": { - "1": { - "then": "Leunbank" - } - }, - "question": "Wat voor soort bank is dit?" - }, - "bench_at_pt-name": { - "render": "{name}" - } - }, - "title": { - "mappings": { - "0": { - "then": "Zitbank aan een bushalte" - }, - "1": { - "then": "Zitbank in een schuilhokje" - } - }, - "render": "Zitbank" - } - }, - "bicycle_library": { - "description": "Een plaats waar men voor langere tijd een fiets kan lenen", - "name": "Fietsbibliotheek", - "presets": { - "0": { - "description": "Een fietsbieb heeft een collectie fietsen die leden mogen lenen", - "title": "Bicycle library" - } - }, - "tagRenderings": { - "bicycle-library-target-group": { - "mappings": { - "0": { - "then": "Aanbod voor kinderen" - }, - "1": { - "then": "Aanbod voor volwassenen" - }, - "2": { - "then": "Aanbod voor personen met een handicap" - } - }, - "question": "Voor wie worden hier fietsen aangeboden?" - }, - "bicycle_library-charge": { - "mappings": { - "0": { - "then": "Een fiets huren is gratis" - }, - "1": { - "then": "Een fiets huren kost €20/jaar en €20 waarborg" - } - }, - "question": "Hoeveel kost het huren van een fiets?", - "render": "Een fiets huren kost {charge}" - }, - "bicycle_library-name": { - "question": "Wat is de naam van deze fietsbieb?", - "render": "Deze fietsbieb heet {name}" - } - }, - "title": { - "render": "Fietsbibliotheek" - } - }, - "bicycle_tube_vending_machine": { - "name": "Fietsbanden-verkoopsautomaat", - "presets": { - "0": { - "title": "Fietsbanden-verkoopsautomaat" - } - }, - "tagRenderings": { - "Still in use?": { - "mappings": { - "0": { - "then": "Deze verkoopsautomaat werkt" - }, - "1": { - "then": "Deze verkoopsautomaat is kapot" - }, - "2": { - "then": "Deze verkoopsautomaat is uitgeschakeld" - } - }, - "question": "Is deze verkoopsautomaat nog steeds werkende?", - "render": "Deze verkoopsautomaat is {operational_status}" - } - }, - "title": { - "render": "Fietsbanden-verkoopsautomaat" - } - }, - "bike_cafe": { - "name": "Fietscafé", - "presets": { - "0": { - "title": "Fietscafé" - } - }, - "tagRenderings": { - "bike_cafe-bike-pump": { - "mappings": { - "0": { - "then": "Dit fietscafé biedt een fietspomp aan voor eender wie" - }, - "1": { - "then": "Dit fietscafé biedt geen fietspomp aan voor iedereen" - } - }, - "question": "Biedt dit fietscafé een fietspomp aan voor iedereen?" - }, - "bike_cafe-email": { - "question": "Wat is het email-adres van {name}?" - }, - "bike_cafe-name": { - "question": "Wat is de naam van dit fietscafé?", - "render": "Dit fietscafé heet {name}" - }, - "bike_cafe-opening_hours": { - "question": "Wanneer is dit fietscafé geopend?" - }, - "bike_cafe-phone": { - "question": "Wat is het telefoonnummer van {name}?" - }, - "bike_cafe-repair-service": { - "mappings": { - "0": { - "then": "Dit fietscafé herstelt fietsen" - }, - "1": { - "then": "Dit fietscafé herstelt geen fietsen" - } - }, - "question": "Herstelt dit fietscafé fietsen?" - }, - "bike_cafe-repair-tools": { - "mappings": { - "0": { - "then": "Dit fietscafé biedt gereedschap aan om je fiets zelf te herstellen" - }, - "1": { - "then": "Dit fietscafé biedt geen gereedschap aan om je fiets zelf te herstellen" - } - }, - "question": "Biedt dit fietscafé gereedschap aan om je fiets zelf te herstellen?" - }, - "bike_cafe-website": { - "question": "Wat is de website van {name}?" - } - }, - "title": { - "mappings": { - "0": { - "then": "Fietscafé {name}" - } - }, - "render": "Fietscafé" - } - }, - "bike_cleaning": { - "name": "Fietsschoonmaakpunt", - "presets": { - "0": { - "title": "Fietsschoonmaakpunt" - } - }, - "title": { - "mappings": { - "0": { - "then": "Fietsschoonmaakpunt {name}" - } - }, - "render": "Fietsschoonmaakpunt" - } - }, - "bike_parking": { - "name": "Fietsparking", - "presets": { - "0": { - "title": "Fietsparking" - } - }, - "tagRenderings": { - "Access": { - "mappings": { - "0": { - "then": "Publiek toegankelijke fietsenstalling" - }, - "1": { - "then": "Klanten van de zaak of winkel" - }, - "2": { - "then": "Private fietsenstalling van een school, een bedrijf, ..." - } - }, - "question": "Wie mag er deze fietsenstalling gebruiken?", - "render": "{access}" - }, - "Bicycle parking type": { - "mappings": { - "0": { - "then": "Nietjes " - }, - "1": { - "then": "Wielrek/lussen " - }, - "2": { - "then": "Stuurhouder " - }, - "3": { - "then": "Rek " - }, - "4": { - "then": "Dubbel (twee verdiepingen) " - }, - "5": { - "then": "Schuur " - }, - "6": { - "then": "Paal met ring " - }, - "7": { - "then": "Een oppervlakte die gemarkeerd is om fietsen te parkeren" - } - }, - "question": "Van welk type is deze fietsparking?", - "render": "Dit is een fietsparking van het type: {bicycle_parking}" - }, - "Capacity": { - "question": "Hoeveel fietsen kunnen in deze fietsparking (inclusief potentiëel bakfietsen)?", - "render": "Plaats voor {capacity} fietsen" - }, - "Cargo bike capacity?": { - "question": "Voor hoeveel bakfietsen heeft deze fietsparking plaats?", - "render": "Deze parking heeft plaats voor {capacity:cargo_bike} fietsen" - }, - "Cargo bike spaces?": { - "mappings": { - "0": { - "then": "Deze parking heeft plaats voor bakfietsen" - }, - "1": { - "then": "Er zijn speciale plaatsen voorzien voor bakfietsen" - }, - "2": { - "then": "Je mag hier geen bakfietsen parkeren" - } - }, - "question": "Heeft deze fietsparking plaats voor bakfietsen?" - }, - "Is covered?": { - "mappings": { - "0": { - "then": "Deze parking is overdekt (er is een afdak)" - }, - "1": { - "then": "Deze parking is niet overdekt" - } - }, - "question": "Is deze parking overdekt? Selecteer ook \"overdekt\" voor fietsparkings binnen een gebouw." - }, - "Underground?": { - "mappings": { - "0": { - "then": "Ondergrondse parking" - }, - "1": { - "then": "Parking op de begane grond" - }, - "2": { - "then": "Dakparking" - }, - "3": { - "then": "Parking op de begane grond" - }, - "4": { - "then": "Dakparking" - } - }, - "question": "Wat is de relatieve locatie van deze parking??" - } - }, - "title": { - "render": "Fietsparking" - } - }, - "bike_repair_station": { - "name": "Fietspunten (herstel, pomp of allebei)", - "presets": { - "0": { - "description": "Een apparaat waar je je fietsbanden kan oppompen, beschikbaar in de publieke ruimte. De fietspomp in je kelder telt dus niet.

Voorbeelden

Examples of bicycle pumps

", - "title": "Fietspomp" - }, - "1": { - "description": "Een apparaat met zowel gereedschap om je fiets te herstellen, met een pomp. Deze zijn op een vastgemaakt op een plaats in de publieke ruimte, bv. aan een paal.

Voorbeeld

", - "title": "Herstelpunt en pomp" - }, - "2": { - "title": "Herstelpunt zonder pomp" - } - }, - "tagRenderings": { - "Email maintainer": { - "render": "Rapporteer deze fietspomp als kapot" - }, - "Operational status": { - "mappings": { - "0": { - "then": "De fietspomp is kapot" - }, - "1": { - "then": "De fietspomp werkt nog" - } - }, - "question": "Werkt de fietspomp nog?" - }, - "bike_repair_station-available-services": { - "mappings": { - "0": { - "then": "Er is enkel een pomp aanwezig" - }, - "1": { - "then": "Er is enkel gereedschap aanwezig (schroevendraaier, tang...)" - }, - "2": { - "then": "Er is zowel een pomp als gereedschap aanwezig" - } - }, - "question": "Welke functies biedt dit fietspunt?" - }, - "bike_repair_station-bike-chain-tool": { - "mappings": { - "0": { - "then": "Er is een reparatieset voor je ketting" - }, - "1": { - "then": "Er is geen reparatieset voor je ketting" - } - }, - "question": "Heeft dit herstelpunt een speciale reparatieset voor je ketting?" - }, - "bike_repair_station-bike-stand": { - "mappings": { - "0": { - "then": "Er is een haak of standaard" - }, - "1": { - "then": "Er is geen haak of standaard" - } - }, - "question": "Heeft dit herstelpunt een haak of standaard om je fiets op te hangen/zetten?" - }, - "bike_repair_station-electrical_pump": { - "mappings": { - "0": { - "then": "Manuele pomp" - }, - "1": { - "then": "Electrische pomp" - } - }, - "question": "Is dit een electrische fietspomp?" - }, - "bike_repair_station-email": { - "question": "Wat is het email-adres van de beheerder?" - }, - "bike_repair_station-manometer": { - "mappings": { - "0": { - "then": "Er is een luchtdrukmeter" - }, - "1": { - "then": "Er is geen luchtdrukmeter" - }, - "2": { - "then": "Er is een luchtdrukmeter maar die is momenteel defect" - } - }, - "question": "Heeft deze pomp een luchtdrukmeter?" - }, - "bike_repair_station-opening_hours": { - "mappings": { - "0": { - "then": "Dag en nacht open" - }, - "1": { - "then": "Dag en nacht open" - } - }, - "question": "Wanneer is dit fietsherstelpunt open?" - }, - "bike_repair_station-operator": { - "question": "Wie beheert deze fietspomp?", - "render": "Beheer door {operator}" - }, - "bike_repair_station-phone": { - "question": "Wat is het telefoonnummer van de beheerder?" - }, - "bike_repair_station-valves": { - "mappings": { - "0": { - "then": "Sclaverand (ook gekend als Presta)" - }, - "1": { - "then": "Dunlop" - }, - "2": { - "then": "Schrader (auto's)" - } - }, - "question": "Welke ventielen werken er met de pomp?", - "render": "Deze pomp werkt met de volgende ventielen: {valves}" - } - }, - "title": { - "mappings": { - "0": { - "then": "Herstelpunt" - }, - "1": { - "then": "Herstelpunt" - }, - "2": { - "then": "Kapotte fietspomp" - }, - "3": { - "then": "Fietspomp {name}" - }, - "4": { - "then": "Fietspomp" - } - }, - "render": "Herstelpunt met pomp" - } - }, - "bike_shop": { - "description": "Een winkel die hoofdzakelijk fietsen en fietstoebehoren verkoopt", - "name": "Fietszaak", - "presets": { - "0": { - "title": "Fietszaak" - } - }, - "tagRenderings": { - "bike_repair_bike-pump-service": { - "mappings": { - "0": { - "then": "Deze winkel biedt een fietspomp aan voor iedereen" - }, - "1": { - "then": "Deze winkel biedt geen fietspomp aan voor eender wie" - }, - "2": { - "then": "Er is een fietspomp, deze is apart aangeduid" - } - }, - "question": "Biedt deze winkel een fietspomp aan voor iedereen?" - }, - "bike_repair_bike-wash": { - "mappings": { - "0": { - "then": "Deze winkel biedt fietsschoonmaak aan" - }, - "1": { - "then": "Deze winkel biedt een installatie aan om zelf je fiets schoon te maken" - }, - "2": { - "then": "Deze winkel biedt geen fietsschoonmaak aan" - } - }, - "question": "Biedt deze winkel een fietsschoonmaak aan?" - }, - "bike_repair_rents-bikes": { - "mappings": { - "0": { - "then": "Deze winkel verhuurt fietsen" - }, - "1": { - "then": "Deze winkel verhuurt geen fietsen" - } - }, - "question": "Verhuurt deze winkel fietsen?" - }, - "bike_repair_repairs-bikes": { - "mappings": { - "0": { - "then": "Deze winkel herstelt fietsen" - }, - "1": { - "then": "Deze winkel herstelt geen fietsen" - }, - "2": { - "then": "Deze winkel herstelt enkel fietsen die hier werden gekocht" - }, - "3": { - "then": "Deze winkel herstelt enkel fietsen van een bepaald merk" - } - }, - "question": "Herstelt deze winkel fietsen?" - }, - "bike_repair_second-hand-bikes": { - "mappings": { - "0": { - "then": "Deze winkel verkoopt tweedehands fietsen" - }, - "1": { - "then": "Deze winkel verkoopt geen tweedehands fietsen" - }, - "2": { - "then": "Deze winkel verkoopt enkel tweedehands fietsen" - } - }, - "question": "Verkoopt deze winkel tweedehands fietsen?" - }, - "bike_repair_sells-bikes": { - "mappings": { - "0": { - "then": "Deze winkel verkoopt fietsen" - }, - "1": { - "then": "Deze winkel verkoopt geen fietsen" - } - }, - "question": "Verkoopt deze fietszaak fietsen?" - }, - "bike_repair_tools-service": { - "mappings": { - "0": { - "then": "Deze winkel biedt gereedschap aan om je fiets zelf te herstellen" - }, - "1": { - "then": "Deze winkel biedt geen gereedschap aan om je fiets zelf te herstellen" - }, - "2": { - "then": "Het gereedschap aan om je fiets zelf te herstellen is enkel voor als je de fiets er kocht of huurt" - } - }, - "question": "Biedt deze winkel gereedschap aan om je fiets zelf te herstellen?" - }, - "bike_shop-email": { - "question": "Wat is het email-adres van {name}?" - }, - "bike_shop-is-bicycle_shop": { - "render": "Deze winkel verkoopt {shop} en heeft fiets-gerelateerde activiteiten." - }, - "bike_shop-name": { - "question": "Wat is de naam van deze fietszaak?", - "render": "Deze fietszaak heet {name}" - }, - "bike_shop-phone": { - "question": "Wat is het telefoonnummer van {name}?" - }, - "bike_shop-website": { - "question": "Wat is de website van {name}?" - } - }, - "title": { - "mappings": { - "0": { - "then": "Sportwinkel {name}" - }, - "2": { - "then": "Fietsverhuur {name}" - }, - "3": { - "then": "Fietsenmaker {name}" - }, - "4": { - "then": "Fietswinkel {name}" - }, - "5": { - "then": "Fietszaak {name}" - } - }, - "render": "Fietszaak" - } - }, - "bike_themed_object": { - "name": "Fietsgerelateerd object", - "title": { - "mappings": { - "1": { - "then": "Wielerpiste" - } - }, - "render": "Fietsgerelateerd object" - } - }, - "binocular": { - "description": "Verrekijkers", - "name": "Verrekijkers", - "presets": { - "0": { - "description": "Een telescoop of verrekijker die op een vaste plaats gemonteerd staat waar iedereen door mag kijken. ", - "title": "verrekijker" - } - }, - "tagRenderings": { - "binocular-charge": { - "mappings": { - "0": { - "then": "Gratis te gebruiken" - } - }, - "question": "Hoeveel moet men betalen om deze verrekijker te gebruiken?", - "render": "Deze verrekijker gebruiken kost {charge}" - }, - "binocular-direction": { - "question": "Welke richting kijkt men uit als men door deze verrekijker kijkt?", - "render": "Kijkt richting {direction}°" - } - }, - "title": { - "render": "Verrekijker" - } - }, - "birdhide": { - "description": "Een vogelkijkhut", - "filter": { - "0": { - "options": { - "0": { - "question": "Rolstoeltoegankelijk" - } - } - }, - "1": { - "options": { - "0": { - "question": "Enkel overdekte kijkhutten" - } - } - } - }, - "mapRendering": { - "0": { - "icon": { - "render": "./assets/layers/birdhide/birdhide.svg" - } - } - }, - "name": "Vogelkijkhutten", - "presets": { - "0": { - "description": "Een overdekte hut waarbinnen er warm en droog naar vogels gekeken kan worden", - "title": "vogelkijkhut" - }, - "1": { - "description": "Een vogelkijkwand waarachter men kan staan om vogels te kijken", - "title": "vogelkijkwand" - } - }, - "size": { - "render": "40,40,center" - }, - "stroke": { - "render": "3" - }, - "tagRenderings": { - "bird-hide-shelter-or-wall": { - "mappings": { - "0": { - "then": "Vogelkijkwand" - }, - "1": { - "then": "Vogelkijkhut" - }, - "2": { - "then": "Vogelkijktoren" - }, - "3": { - "then": "Vogelkijkhut" - } - }, - "question": "Is dit een kijkwand of kijkhut?" - }, - "bird-hide-wheelchair": { - "mappings": { - "0": { - "then": "Er zijn speciale voorzieningen voor rolstoelen" - }, - "1": { - "then": "Een rolstoel raakt er vlot" - }, - "2": { - "then": "Je kan er raken met een rolstoel, maar het is niet makkelijk" - }, - "3": { - "then": "Niet rolstoeltoegankelijk" - } - }, - "question": "Is deze vogelkijkplaats rolstoeltoegankelijk?" - }, - "birdhide-operator": { - "mappings": { - "0": { - "then": "Beheer door Natuurpunt" - }, - "1": { - "then": "Beheer door het Agentschap Natuur en Bos " - } - }, - "question": "Wie beheert deze vogelkijkplaats?", - "render": "Beheer door {operator}" - } - }, - "title": { - "mappings": { - "0": { - "then": "{name}" - }, - "1": { - "then": "Vogelkijkhut {name}" - }, - "2": { - "then": "Vogelkijkwand {name}" - } - }, - "render": "Vogelkijkplaats" - } - }, - "cafe_pub": { - "filter": { - "0": { - "options": { - "0": { - "question": "Nu geopened" - } - } - } - }, - "name": "Cafés", - "presets": { - "0": { - "description": "Dit is een bruin café of een kroeg waar voornamelijk bier wordt gedronken. De inrichting is typisch gezellig met veel houtwerk ", - "title": "bruin cafe of kroeg" - }, - "1": { - "description": "Dit is een bar waar men ter plaatse alcoholische drank nuttigt. De inrichting is typisch modern en commercieel, soms met lichtinstallatie en feestmuziek", - "title": "bar" - }, - "2": { - "description": "Dit is een cafe - een plaats waar men rustig kan zitten om een thee, koffie of alcoholische drank te nuttigen.", - "title": "cafe" - } - }, - "tagRenderings": { - "Classification": { - "mappings": { - "0": { - "then": "Dit is een bruin café of een kroeg waar voornamelijk bier wordt gedronken. De inrichting is typisch gezellig met veel houtwerk " - }, - "1": { - "then": "Dit is een bar waar men ter plaatse alcoholische drank nuttigt. De inrichting is typisch modern en commercieel, soms met lichtinstallatie en feestmuziek" - }, - "2": { - "then": "Dit is een cafe - een plaats waar men rustig kan zitten om een thee, koffie of alcoholische drank te nuttigen." - }, - "3": { - "then": "Dit is een restaurant waar men een maaltijd geserveerd krijgt" - }, - "4": { - "then": "Een open ruimte waar bier geserveerd wordt. Typisch in Duitsland" - } - }, - "question": "Welk soort café is dit?" - }, - "Name": { - "question": "Wat is de naam van dit café?", - "render": "De naam van dit café is {name}" - } - }, - "title": { - "mappings": { - "0": { - "then": "{name}" - } - }, - "render": "Café" - } - }, - "charging_station": { - "description": "Oplaadpunten", - "filter": { - "0": { - "options": { - "0": { - "question": "Alle voertuigen" - }, - "1": { - "question": "Oplaadpunten voor fietsen" - }, - "2": { - "question": "Oplaadpunten voor auto's" - } - } - }, - "1": { - "options": { - "0": { - "question": "Enkel werkende oplaadpunten" - } - } - }, - "2": { - "options": { - "0": { - "question": "Alle types" - }, - "1": { - "question": "Heeft een
Schuko stekker zonder aardingspin (CEE7/4 type F)
" - }, - "2": { - "question": "Heeft een
Europese stekker met aardingspin (CEE7/4 type E)
" - }, - "3": { - "question": "Heeft een
Chademo
" - }, - "4": { - "question": "Heeft een
Type 1 met kabel (J1772)
" - }, - "5": { - "question": "Heeft een
Type 1 zonder kabel (J1772)
" - }, - "6": { - "question": "Heeft een
Type 1 CCS (ook gekend als Type 1 Combo)
" - }, - "7": { - "question": "Heeft een
Tesla Supercharger
" - }, - "8": { - "question": "Heeft een
Type 2 (mennekes)
" - }, - "9": { - "question": "Heeft een
Type 2 CCS (mennekes)
" - }, - "10": { - "question": "Heeft een
Type 2 met kabel (J1772)
" - }, - "11": { - "question": "Heeft een
Tesla Supercharger CCS (een type2 CCS met Tesla-logo)
" - }, - "12": { - "question": "Heeft een
Tesla Supercharger (destination)
" - }, - "13": { - "question": "Heeft een
Tesla supercharger (destination (Een Type 2 met kabel en Tesla-logo)
" - }, - "14": { - "question": "Heeft een
USB om GSMs en kleine electronica op te laden
" - }, - "15": { - "question": "Heeft een
Bosch Active Connect met 3 pinnen aan een kabel
" - }, - "16": { - "question": "Heeft een
Bosch Active Connect met 5 pinnen aan een kabel
" - } - } - } - }, - "name": "Oplaadpunten", - "presets": { - "0": { - "title": "laadpunt met gewone stekker(s) (bedoeld om electrische fietsen op te laden)" - }, - "1": { - "title": "oplaadpunt voor elektrische fietsen" - }, - "2": { - "title": "oplaadstation voor elektrische auto's" - }, - "3": { - "title": "oplaadstation" - } - }, - "tagRenderings": { - "Auth phone": { - "question": "Wat is het telefoonnummer dat men moet bellen of SMS'en om zich aan te melden?", - "render": "Aanmelden door te bellen of te SMS'en naar {authentication:phone_call:number}" - }, - "Authentication": { - "mappings": { - "0": { - "then": "Aanmelden met een lidkaart is mogelijk" - }, - "1": { - "then": "Aanmelden via een applicatie is mogelijk" - }, - "2": { - "then": "Aanmelden door te bellen naar een telefoonnummer is mogelijk" - }, - "3": { - "then": "Aanmelden via SMS is mogelijk" - }, - "4": { - "then": "Aanmelden via NFC is mogelijk" - }, - "5": { - "then": "Aanmelden met Money Card is mogelijk" - }, - "6": { - "then": "Aanmelden met een betaalkaart is mogelijk" - }, - "7": { - "then": "Hier opladen is (ook) mogelijk zonder aan te melden" - } - }, - "question": "Hoe kan men zich aanmelden aan dit oplaadstation?" - }, - "Available_charging_stations (generated)": { - "mappings": { - "0": { - "then": "
Schuko stekker zonder aardingspin (CEE7/4 type F)
" - }, - "1": { - "then": "
Schuko stekker zonder aardingspin (CEE7/4 type F)
" - }, - "2": { - "then": "
Europese stekker met aardingspin (CEE7/4 type E)
" - }, - "3": { - "then": "
Europese stekker met aardingspin (CEE7/4 type E)
" - }, - "4": { - "then": "
Chademo
" - }, - "5": { - "then": "
Chademo
" - }, - "6": { - "then": "
Type 1 met kabel (J1772)
" - }, - "7": { - "then": "
Type 1 met kabel (J1772)
" - }, - "8": { - "then": "
Type 1 zonder kabel (J1772)
" - }, - "9": { - "then": "
Type 1 zonder kabel (J1772)
" - }, - "10": { - "then": "
Type 1 CCS (ook gekend als Type 1 Combo)
" - }, - "11": { - "then": "
Type 1 CCS (ook gekend als Type 1 Combo)
" - }, - "12": { - "then": "
Tesla Supercharger
" - }, - "13": { - "then": "
Tesla Supercharger
" - }, - "14": { - "then": "
Type 2 (mennekes)
" - }, - "15": { - "then": "
Type 2 (mennekes)
" - }, - "16": { - "then": "
Type 2 CCS (mennekes)
" - }, - "17": { - "then": "
Type 2 CCS (mennekes)
" - }, - "18": { - "then": "
Type 2 met kabel (J1772)
" - }, - "19": { - "then": "
Type 2 met kabel (J1772)
" - }, - "20": { - "then": "
Tesla Supercharger CCS (een type2 CCS met Tesla-logo)
" - }, - "21": { - "then": "
Tesla Supercharger CCS (een type2 CCS met Tesla-logo)
" - }, - "22": { - "then": "
Tesla Supercharger (destination)
" - }, - "23": { - "then": "
Tesla Supercharger (destination)
" - }, - "24": { - "then": "
Tesla supercharger (destination (Een Type 2 met kabel en Tesla-logo)
" - }, - "25": { - "then": "
Tesla supercharger (destination (Een Type 2 met kabel en Tesla-logo)
" - }, - "26": { - "then": "
USB om GSMs en kleine electronica op te laden
" - }, - "27": { - "then": "
USB om GSMs en kleine electronica op te laden
" - }, - "28": { - "then": "
Bosch Active Connect met 3 pinnen aan een kabel
" - }, - "29": { - "then": "
Bosch Active Connect met 3 pinnen aan een kabel
" - }, - "30": { - "then": "
Bosch Active Connect met 5 pinnen aan een kabel
" - }, - "31": { - "then": "
Bosch Active Connect met 5 pinnen aan een kabel
" - } - }, - "question": "Welke aansluitingen zijn hier beschikbaar?" - }, - "Network": { - "mappings": { - "0": { - "then": "Maakt geen deel uit van een groter netwerk" - }, - "1": { - "then": "Maakt geen deel uit van een groter netwerk" - } - }, - "question": "Is dit oplaadpunt deel van een groter netwerk?", - "render": "Maakt deel uit van het {network}-netwerk" - }, - "OH": { - "mappings": { - "0": { - "then": "24/7 open - ook tijdens vakanties" - } - }, - "question": "Wanneer is dit oplaadpunt beschikbaar??" - }, - "Operational status": { - "mappings": { - "0": { - "then": "Dit oplaadpunt werkt" - }, - "1": { - "then": "Dit oplaadpunt is kapot" - }, - "2": { - "then": "Hier zal binnenkort een oplaadpunt gebouwd worden" - }, - "3": { - "then": "Hier wordt op dit moment een oplaadpunt gebouwd" - }, - "4": { - "then": "Dit oplaadpunt is niet meer in gebruik maar is wel nog aanwezig" - } - }, - "question": "Is dit oplaadpunt operationeel?" - }, - "Operator": { - "mappings": { - "0": { - "then": "Eigenlijk is {operator} het netwerk waarvan het deel uitmaakt" - } - }, - "question": "Wie beheert dit oplaadpunt?", - "render": "Wordt beheerd door {operator}" - }, - "Parking:fee": { - "mappings": { - "0": { - "then": "Geen extra parkeerkost tijdens het opladen" - }, - "1": { - "then": "Tijdens het opladen moet er parkeergeld betaald worden" - } - }, - "question": "Moet men parkeergeld betalen tijdens het opladen?" - }, - "Type": { - "mappings": { - "0": { - "then": "Fietsen kunnen hier opgeladen worden" - }, - "1": { - "then": "Elektrische auto's kunnen hier opgeladen worden" - }, - "2": { - "then": "Electrische scooters (snorfiets of bromfiets) kunnen hier opgeladen worden" - }, - "3": { - "then": "Vrachtwagens kunnen hier opgeladen worden" - }, - "4": { - "then": "Bussen kunnen hier opgeladen worden" - } - }, - "question": "Welke voertuigen kunnen hier opgeladen worden?" - }, - "access": { - "mappings": { - "0": { - "then": "Toegankelijk voor iedereen (mogelijks met aanmelden en/of te betalen)" - }, - "1": { - "then": "Toegankelijk voor iedereen (mogelijks met aanmelden en/of te betalen)" - }, - "2": { - "then": "Enkel klanten van de bijhorende plaats mogen dit oplaadpunt gebruiken
Bv. op de parking van een hotel en enkel toegankelijk voor klanten van dit hotel" - }, - "3": { - "then": "Niet toegankelijk voor het publiek
Bv. enkel toegankelijk voor de eigenaar, medewerkers ,... " - } - }, - "question": "Wie mag er dit oplaadpunt gebruiken?", - "render": "Toegang voor {access}" - }, - "capacity": { - "question": "Hoeveel voertuigen kunnen hier opgeladen worden?", - "render": "{capacity} voertuigen kunnen hier op hetzelfde moment opgeladen worden" - }, - "charge": { - "question": "Hoeveel moet men betalen om dit oplaadpunt te gebruiken?", - "render": "Dit oplaadpunt gebruiken kost {charge}" - }, - "current-0": { - "mappings": { - "0": { - "then": "
Schuko stekker zonder aardingspin (CEE7/4 type F)
levert een stroom van maximaal 16 A" - } - }, - "question": "Welke stroom levert de stekker van type
Schuko stekker zonder aardingspin (CEE7/4 type F)
?", - "render": "
Schuko stekker zonder aardingspin (CEE7/4 type F)
levert een stroom van maximaal {socket:schuko:current}A" - }, - "current-1": { - "mappings": { - "0": { - "then": "
Europese stekker met aardingspin (CEE7/4 type E)
levert een stroom van maximaal 16 A" - } - }, - "question": "Welke stroom levert de stekker van type
Europese stekker met aardingspin (CEE7/4 type E)
?", - "render": "
Europese stekker met aardingspin (CEE7/4 type E)
levert een stroom van maximaal {socket:typee:current}A" - }, - "current-10": { - "mappings": { - "0": { - "then": "
Tesla Supercharger CCS (een type2 CCS met Tesla-logo)
levert een stroom van maximaal 125 A" - }, - "1": { - "then": "
Tesla Supercharger CCS (een type2 CCS met Tesla-logo)
levert een stroom van maximaal 350 A" - } - }, - "question": "Welke stroom levert de stekker van type
Tesla Supercharger CCS (een type2 CCS met Tesla-logo)
?", - "render": "
Tesla Supercharger CCS (een type2 CCS met Tesla-logo)
levert een stroom van maximaal {socket:tesla_supercharger_ccs:current}A" - }, - "current-11": { - "mappings": { - "0": { - "then": "
Tesla Supercharger (destination)
levert een stroom van maximaal 125 A" - }, - "1": { - "then": "
Tesla Supercharger (destination)
levert een stroom van maximaal 350 A" - } - }, - "question": "Welke stroom levert de stekker van type
Tesla Supercharger (destination)
?", - "render": "
Tesla Supercharger (destination)
levert een stroom van maximaal {socket:tesla_destination:current}A" - }, - "current-12": { - "mappings": { - "0": { - "then": "
Tesla supercharger (destination (Een Type 2 met kabel en Tesla-logo)
levert een stroom van maximaal 16 A" - }, - "1": { - "then": "
Tesla supercharger (destination (Een Type 2 met kabel en Tesla-logo)
levert een stroom van maximaal 32 A" - } - }, - "question": "Welke stroom levert de stekker van type
Tesla supercharger (destination (Een Type 2 met kabel en Tesla-logo)
?", - "render": "
Tesla supercharger (destination (Een Type 2 met kabel en Tesla-logo)
levert een stroom van maximaal {socket:tesla_destination:current}A" - }, - "current-13": { - "mappings": { - "0": { - "then": "
USB om GSMs en kleine electronica op te laden
levert een stroom van maximaal 1 A" - }, - "1": { - "then": "
USB om GSMs en kleine electronica op te laden
levert een stroom van maximaal 2 A" - } - }, - "question": "Welke stroom levert de stekker van type
USB om GSMs en kleine electronica op te laden
?", - "render": "
USB om GSMs en kleine electronica op te laden
levert een stroom van maximaal {socket:USB-A:current}A" - }, - "current-14": { - "question": "Welke stroom levert de stekker van type
Bosch Active Connect met 3 pinnen aan een kabel
?", - "render": "
Bosch Active Connect met 3 pinnen aan een kabel
levert een stroom van maximaal {socket:bosch_3pin:current}A" - }, - "current-15": { - "question": "Welke stroom levert de stekker van type
Bosch Active Connect met 5 pinnen aan een kabel
?", - "render": "
Bosch Active Connect met 5 pinnen aan een kabel
levert een stroom van maximaal {socket:bosch_5pin:current}A" - }, - "current-2": { - "mappings": { - "0": { - "then": "
Chademo
levert een stroom van maximaal 120 A" - } - }, - "question": "Welke stroom levert de stekker van type
Chademo
?", - "render": "
Chademo
levert een stroom van maximaal {socket:chademo:current}A" - }, - "current-3": { - "mappings": { - "0": { - "then": "
Type 1 met kabel (J1772)
levert een stroom van maximaal 32 A" - } - }, - "question": "Welke stroom levert de stekker van type
Type 1 met kabel (J1772)
?", - "render": "
Type 1 met kabel (J1772)
levert een stroom van maximaal {socket:type1_cable:current}A" - }, - "current-4": { - "mappings": { - "0": { - "then": "
Type 1 zonder kabel (J1772)
levert een stroom van maximaal 32 A" - } - }, - "question": "Welke stroom levert de stekker van type
Type 1 zonder kabel (J1772)
?", - "render": "
Type 1 zonder kabel (J1772)
levert een stroom van maximaal {socket:type1:current}A" - }, - "current-5": { - "mappings": { - "0": { - "then": "
Type 1 CCS (ook gekend als Type 1 Combo)
levert een stroom van maximaal 50 A" - }, - "1": { - "then": "
Type 1 CCS (ook gekend als Type 1 Combo)
levert een stroom van maximaal 125 A" - } - }, - "question": "Welke stroom levert de stekker van type
Type 1 CCS (ook gekend als Type 1 Combo)
?", - "render": "
Type 1 CCS (ook gekend als Type 1 Combo)
levert een stroom van maximaal {socket:type1_combo:current}A" - }, - "current-6": { - "mappings": { - "0": { - "then": "
Tesla Supercharger
levert een stroom van maximaal 125 A" - }, - "1": { - "then": "
Tesla Supercharger
levert een stroom van maximaal 350 A" - } - }, - "question": "Welke stroom levert de stekker van type
Tesla Supercharger
?", - "render": "
Tesla Supercharger
levert een stroom van maximaal {socket:tesla_supercharger:current}A" - }, - "current-7": { - "mappings": { - "0": { - "then": "
Type 2 (mennekes)
levert een stroom van maximaal 16 A" - }, - "1": { - "then": "
Type 2 (mennekes)
levert een stroom van maximaal 32 A" - } - }, - "question": "Welke stroom levert de stekker van type
Type 2 (mennekes)
?", - "render": "
Type 2 (mennekes)
levert een stroom van maximaal {socket:type2:current}A" - }, - "current-8": { - "mappings": { - "0": { - "then": "
Type 2 CCS (mennekes)
levert een stroom van maximaal 125 A" - }, - "1": { - "then": "
Type 2 CCS (mennekes)
levert een stroom van maximaal 350 A" - } - }, - "question": "Welke stroom levert de stekker van type
Type 2 CCS (mennekes)
?", - "render": "
Type 2 CCS (mennekes)
levert een stroom van maximaal {socket:type2_combo:current}A" - }, - "current-9": { - "mappings": { - "0": { - "then": "
Type 2 met kabel (J1772)
levert een stroom van maximaal 16 A" - }, - "1": { - "then": "
Type 2 met kabel (J1772)
levert een stroom van maximaal 32 A" - } - }, - "question": "Welke stroom levert de stekker van type
Type 2 met kabel (J1772)
?", - "render": "
Type 2 met kabel (J1772)
levert een stroom van maximaal {socket:type2_cable:current}A" - }, - "email": { - "question": "Wat is het email-adres van de operator?", - "render": "Bij problemen, email naar {email}" - }, - "fee": { - "mappings": { - "0": { - "then": "Gratis te gebruiken" - }, - "1": { - "then": "Gratis te gebruiken (zonder aan te melden)" - }, - "2": { - "then": "Gratis te gebruiken, maar aanmelden met een applicatie is verplicht" - }, - "3": { - "then": "Betalend te gebruiken, maar gratis voor klanten van het bijhorende hotel/café/ziekenhuis/..." - }, - "4": { - "then": "Betalend" - } - }, - "question": "Moet men betalen om dit oplaadpunt te gebruiken?" - }, - "maxstay": { - "mappings": { - "0": { - "then": "Geen maximum parkeertijd" - } - }, - "question": "Hoelang mag een voertuig hier blijven staan?", - "render": "De maximale parkeertijd hier is {canonical(maxstay)}" - }, - "payment-options": { - "override": { - "mappings+": { + "ambulancestation": { + "description": "Een ambulancestation is een plaats waar ambulances, medisch materiaal, persoonlijk beschermingsmateriaal en aanverwanten worden bewaard.", + "name": "Kaart van ambulancestations", + "presets": { "0": { - "then": "Betalen via een app van het netwerk" + "description": "Voeg een ambulancestation toe aan de kaart", + "title": "Ambulancestation" + } + }, + "tagRenderings": { + "ambulance-agency": { + "question": "Welke organisatie beheert dit station?", + "render": "Dit station wordt beheerd door {operator}." + }, + "ambulance-name": { + "question": "Hoe heet dit ambulancestation?", + "render": "Dit station heet {name}." + }, + "ambulance-operator-type": { + "mappings": { + "0": { + "then": "Dit station wordt beheerd door de overheid." + }, + "1": { + "then": "Dit station wordt beheerd door een informele of community organisatie." + }, + "2": { + "then": "Dit station wordt beheerd door een formele groep vrijwilligers." + }, + "3": { + "then": "Dit station wordt beheerd door een privé-organisatie." + } + }, + "question": "Wat voor een organisatie is de beheerder van dit station?", + "render": "De beheerder is van het type {operator:type}." + }, + "ambulance-place": { + "question": "Waar ligt het station? (v.b. naam van de buurt, dorp of stad)", + "render": "Dit station ligt in {addr:place}." + }, + "ambulance-street": { + "question": " In welke straat ligt dit station?", + "render": "Straat waar dit station ligt: {addr:street}" + } + }, + "title": { + "render": "Ambulancestation" + } + }, + "artwork": { + "description": "Verschillende soorten kunstwerken", + "name": "Kunstwerken", + "presets": { + "0": { + "title": "Kunstwerk" + } + }, + "tagRenderings": { + "artwork-artist_name": { + "question": "Welke kunstenaar creëerde dit kunstwerk?", + "render": "Gecreëerd door {artist_name}" + }, + "artwork-artwork_type": { + "mappings": { + "0": { + "then": "Architectuur" + }, + "1": { + "then": "Muurschildering" + }, + "2": { + "then": "Schilderij" + }, + "3": { + "then": "Beeldhouwwerk" + }, + "4": { + "then": "Standbeeld" + }, + "5": { + "then": "Buste" + }, + "6": { + "then": "Steen" + }, + "7": { + "then": "Installatie" + }, + "8": { + "then": "Graffiti" + }, + "9": { + "then": "Reliëf" + }, + "10": { + "then": "Azulejo (Spaanse siertegels)" + }, + "11": { + "then": "Tegelwerk" + } + }, + "question": "Wat voor soort kunstwerk is dit?", + "render": "Dit is een {artwork_type}" + }, + "artwork-website": { + "question": "Is er een website met meer informatie over dit kunstwerk?", + "render": "Meer informatie op deze website" + }, + "artwork-wikidata": { + "question": "Welk Wikidata-item beschrijft dit kunstwerk?", + "render": "Komt overeen met {wikidata}" + } + }, + "title": { + "mappings": { + "0": { + "then": "Kunstwerk {name}" + } + }, + "render": "Kunstwerk" + } + }, + "barrier": { + "description": "Hindernissen tijdens het fietsen, zoals paaltjes en fietshekjes", + "name": "Barrières", + "presets": { + "0": { + "description": "Een paaltje in de weg", + "title": "Paaltje" }, "1": { - "then": "Betalen via een lidkaart van het netwerk" + "description": "Fietshekjes, voor het afremmen van fietsers", + "title": "Fietshekjes" } - } + }, + "tagRenderings": { + "Bollard type": { + "mappings": { + "0": { + "then": "Verwijderbare paal" + }, + "1": { + "then": "Vaste paal" + }, + "2": { + "then": "Paal die platgevouwen kan worden" + }, + "3": { + "then": "Flexibele paal, meestal plastic" + }, + "4": { + "then": "Verzonken poller" + } + }, + "question": "Wat voor soort paal is dit?" + }, + "Cycle barrier type": { + "mappings": { + "0": { + "then": "Enkelvoudig, slechts twee hekjes met ruimte ertussen" + }, + "1": { + "then": "Dubbel, twee hekjes achter elkaar" + }, + "2": { + "then": "Drievoudig, drie hekjes achter elkaar" + }, + "3": { + "then": "Knijppoort, ruimte is smaller aan de top, dan aan de bodem" + } + }, + "question": "Wat voor fietshekjes zijn dit?" + }, + "MaxWidth": { + "question": "Hoe breed is de ruimte naast de barrière?", + "render": "Maximumbreedte: {maxwidth:physical} m" + }, + "Overlap (cyclebarrier)": { + "question": "Hoeveel overlappen de barrières?", + "render": "Overlap: {overlap} m" + }, + "Space between barrier (cyclebarrier)": { + "question": "Hoeveel ruimte is er tussen de barrières (langs de lengte van de weg)?", + "render": "Ruimte tussen barrières (langs de lengte van de weg): {width:separation} m" + }, + "Width of opening (cyclebarrier)": { + "question": "Hoe breed is de smalste opening naast de barrières?", + "render": "Breedte van de opening: {width:opening} m" + }, + "barrier_type": { + "mappings": { + "0": { + "then": "Dit is een enkel paaltje in de weg" + }, + "1": { + "then": "Dit zijn fietshekjes die fietsers afremmen" + } + } + }, + "bicycle=yes/no": { + "mappings": { + "0": { + "then": "Een fietser kan hier langs." + }, + "1": { + "then": "Een fietser kan hier niet langs." + } + }, + "question": "Kan een fietser langs deze barrière?" + } + }, + "title": { + "mappings": { + "0": { + "then": "Paaltje" + }, + "1": { + "then": "Fietshekjes" + } + }, + "render": "Barrière" } - }, - "phone": { - "question": "Wat is het telefoonnummer van de beheerder van dit oplaadpunt?", - "render": "Bij problemen, bel naar {phone}" - }, - "plugs-0": { - "question": "Hoeveel stekkers van type
Schuko stekker zonder aardingspin (CEE7/4 type F)
heeft dit oplaadpunt?", - "render": "Hier zijn {socket:schuko} stekkers van het type
Schuko stekker zonder aardingspin (CEE7/4 type F)
" - }, - "plugs-1": { - "question": "Hoeveel stekkers van type
Europese stekker met aardingspin (CEE7/4 type E)
heeft dit oplaadpunt?", - "render": "Hier zijn {socket:typee} stekkers van het type
Europese stekker met aardingspin (CEE7/4 type E)
" - }, - "plugs-10": { - "question": "Hoeveel stekkers van type
Tesla Supercharger CCS (een type2 CCS met Tesla-logo)
heeft dit oplaadpunt?", - "render": "Hier zijn {socket:tesla_supercharger_ccs} stekkers van het type
Tesla Supercharger CCS (een type2 CCS met Tesla-logo)
" - }, - "plugs-11": { - "question": "Hoeveel stekkers van type
Tesla Supercharger (destination)
heeft dit oplaadpunt?", - "render": "Hier zijn {socket:tesla_destination} stekkers van het type
Tesla Supercharger (destination)
" - }, - "plugs-12": { - "question": "Hoeveel stekkers van type
Tesla supercharger (destination (Een Type 2 met kabel en Tesla-logo)
heeft dit oplaadpunt?", - "render": "Hier zijn {socket:tesla_destination} stekkers van het type
Tesla supercharger (destination (Een Type 2 met kabel en Tesla-logo)
" - }, - "plugs-13": { - "question": "Hoeveel stekkers van type
USB om GSMs en kleine electronica op te laden
heeft dit oplaadpunt?", - "render": "Hier zijn {socket:USB-A} stekkers van het type
USB om GSMs en kleine electronica op te laden
" - }, - "plugs-14": { - "question": "Hoeveel stekkers van type
Bosch Active Connect met 3 pinnen aan een kabel
heeft dit oplaadpunt?", - "render": "Hier zijn {socket:bosch_3pin} stekkers van het type
Bosch Active Connect met 3 pinnen aan een kabel
" - }, - "plugs-15": { - "question": "Hoeveel stekkers van type
Bosch Active Connect met 5 pinnen aan een kabel
heeft dit oplaadpunt?", - "render": "Hier zijn {socket:bosch_5pin} stekkers van het type
Bosch Active Connect met 5 pinnen aan een kabel
" - }, - "plugs-2": { - "question": "Hoeveel stekkers van type
Chademo
heeft dit oplaadpunt?", - "render": "Hier zijn {socket:chademo} stekkers van het type
Chademo
" - }, - "plugs-3": { - "question": "Hoeveel stekkers van type
Type 1 met kabel (J1772)
heeft dit oplaadpunt?", - "render": "Hier zijn {socket:type1_cable} stekkers van het type
Type 1 met kabel (J1772)
" - }, - "plugs-4": { - "question": "Hoeveel stekkers van type
Type 1 zonder kabel (J1772)
heeft dit oplaadpunt?", - "render": "Hier zijn {socket:type1} stekkers van het type
Type 1 zonder kabel (J1772)
" - }, - "plugs-5": { - "question": "Hoeveel stekkers van type
Type 1 CCS (ook gekend als Type 1 Combo)
heeft dit oplaadpunt?", - "render": "Hier zijn {socket:type1_combo} stekkers van het type
Type 1 CCS (ook gekend als Type 1 Combo)
" - }, - "plugs-6": { - "question": "Hoeveel stekkers van type
Tesla Supercharger
heeft dit oplaadpunt?", - "render": "Hier zijn {socket:tesla_supercharger} stekkers van het type
Tesla Supercharger
" - }, - "plugs-7": { - "question": "Hoeveel stekkers van type
Type 2 (mennekes)
heeft dit oplaadpunt?", - "render": "Hier zijn {socket:type2} stekkers van het type
Type 2 (mennekes)
" - }, - "plugs-8": { - "question": "Hoeveel stekkers van type
Type 2 CCS (mennekes)
heeft dit oplaadpunt?", - "render": "Hier zijn {socket:type2_combo} stekkers van het type
Type 2 CCS (mennekes)
" - }, - "plugs-9": { - "question": "Hoeveel stekkers van type
Type 2 met kabel (J1772)
heeft dit oplaadpunt?", - "render": "Hier zijn {socket:type2_cable} stekkers van het type
Type 2 met kabel (J1772)
" - }, - "power-output-0": { - "mappings": { - "0": { - "then": "
Schuko stekker zonder aardingspin (CEE7/4 type F)
levert een vermogen van maximaal 3.6 kw" - } - }, - "question": "Welk vermogen levert een enkele stekker van type
Schuko stekker zonder aardingspin (CEE7/4 type F)
?", - "render": "
Schuko stekker zonder aardingspin (CEE7/4 type F)
levert een vermogen van maximaal {socket:schuko:output}" - }, - "power-output-1": { - "mappings": { - "0": { - "then": "
Europese stekker met aardingspin (CEE7/4 type E)
levert een vermogen van maximaal 3 kw" - }, - "1": { - "then": "
Europese stekker met aardingspin (CEE7/4 type E)
levert een vermogen van maximaal 22 kw" - } - }, - "question": "Welk vermogen levert een enkele stekker van type
Europese stekker met aardingspin (CEE7/4 type E)
?", - "render": "
Europese stekker met aardingspin (CEE7/4 type E)
levert een vermogen van maximaal {socket:typee:output}" - }, - "power-output-10": { - "mappings": { - "0": { - "then": "
Tesla Supercharger CCS (een type2 CCS met Tesla-logo)
levert een vermogen van maximaal 50 kw" - } - }, - "question": "Welk vermogen levert een enkele stekker van type
Tesla Supercharger CCS (een type2 CCS met Tesla-logo)
?", - "render": "
Tesla Supercharger CCS (een type2 CCS met Tesla-logo)
levert een vermogen van maximaal {socket:tesla_supercharger_ccs:output}" - }, - "power-output-11": { - "mappings": { - "0": { - "then": "
Tesla Supercharger (destination)
levert een vermogen van maximaal 120 kw" - }, - "1": { - "then": "
Tesla Supercharger (destination)
levert een vermogen van maximaal 150 kw" - }, - "2": { - "then": "
Tesla Supercharger (destination)
levert een vermogen van maximaal 250 kw" - } - }, - "question": "Welk vermogen levert een enkele stekker van type
Tesla Supercharger (destination)
?", - "render": "
Tesla Supercharger (destination)
levert een vermogen van maximaal {socket:tesla_destination:output}" - }, - "power-output-12": { - "mappings": { - "0": { - "then": "
Tesla supercharger (destination (Een Type 2 met kabel en Tesla-logo)
levert een vermogen van maximaal 11 kw" - }, - "1": { - "then": "
Tesla supercharger (destination (Een Type 2 met kabel en Tesla-logo)
levert een vermogen van maximaal 22 kw" - } - }, - "question": "Welk vermogen levert een enkele stekker van type
Tesla supercharger (destination (Een Type 2 met kabel en Tesla-logo)
?", - "render": "
Tesla supercharger (destination (Een Type 2 met kabel en Tesla-logo)
levert een vermogen van maximaal {socket:tesla_destination:output}" - }, - "power-output-13": { - "mappings": { - "0": { - "then": "
USB om GSMs en kleine electronica op te laden
levert een vermogen van maximaal 5w" - }, - "1": { - "then": "
USB om GSMs en kleine electronica op te laden
levert een vermogen van maximaal 10w" - } - }, - "question": "Welk vermogen levert een enkele stekker van type
USB om GSMs en kleine electronica op te laden
?", - "render": "
USB om GSMs en kleine electronica op te laden
levert een vermogen van maximaal {socket:USB-A:output}" - }, - "power-output-14": { - "question": "Welk vermogen levert een enkele stekker van type
Bosch Active Connect met 3 pinnen aan een kabel
?", - "render": "
Bosch Active Connect met 3 pinnen aan een kabel
levert een vermogen van maximaal {socket:bosch_3pin:output}" - }, - "power-output-15": { - "question": "Welk vermogen levert een enkele stekker van type
Bosch Active Connect met 5 pinnen aan een kabel
?", - "render": "
Bosch Active Connect met 5 pinnen aan een kabel
levert een vermogen van maximaal {socket:bosch_5pin:output}" - }, - "power-output-2": { - "mappings": { - "0": { - "then": "
Chademo
levert een vermogen van maximaal 50 kw" - } - }, - "question": "Welk vermogen levert een enkele stekker van type
Chademo
?", - "render": "
Chademo
levert een vermogen van maximaal {socket:chademo:output}" - }, - "power-output-3": { - "mappings": { - "0": { - "then": "
Type 1 met kabel (J1772)
levert een vermogen van maximaal 3.7 kw" - }, - "1": { - "then": "
Type 1 met kabel (J1772)
levert een vermogen van maximaal 7 kw" - } - }, - "question": "Welk vermogen levert een enkele stekker van type
Type 1 met kabel (J1772)
?", - "render": "
Type 1 met kabel (J1772)
levert een vermogen van maximaal {socket:type1_cable:output}" - }, - "power-output-4": { - "mappings": { - "0": { - "then": "
Type 1 zonder kabel (J1772)
levert een vermogen van maximaal 3.7 kw" - }, - "1": { - "then": "
Type 1 zonder kabel (J1772)
levert een vermogen van maximaal 6.6 kw" - }, - "2": { - "then": "
Type 1 zonder kabel (J1772)
levert een vermogen van maximaal 7 kw" - }, - "3": { - "then": "
Type 1 zonder kabel (J1772)
levert een vermogen van maximaal 7.2 kw" - } - }, - "question": "Welk vermogen levert een enkele stekker van type
Type 1 zonder kabel (J1772)
?", - "render": "
Type 1 zonder kabel (J1772)
levert een vermogen van maximaal {socket:type1:output}" - }, - "power-output-5": { - "mappings": { - "0": { - "then": "
Type 1 CCS (ook gekend als Type 1 Combo)
levert een vermogen van maximaal 50 kw" - }, - "1": { - "then": "
Type 1 CCS (ook gekend als Type 1 Combo)
levert een vermogen van maximaal 62.5 kw" - }, - "2": { - "then": "
Type 1 CCS (ook gekend als Type 1 Combo)
levert een vermogen van maximaal 150 kw" - }, - "3": { - "then": "
Type 1 CCS (ook gekend als Type 1 Combo)
levert een vermogen van maximaal 350 kw" - } - }, - "question": "Welk vermogen levert een enkele stekker van type
Type 1 CCS (ook gekend als Type 1 Combo)
?", - "render": "
Type 1 CCS (ook gekend als Type 1 Combo)
levert een vermogen van maximaal {socket:type1_combo:output}" - }, - "power-output-6": { - "mappings": { - "0": { - "then": "
Tesla Supercharger
levert een vermogen van maximaal 120 kw" - }, - "1": { - "then": "
Tesla Supercharger
levert een vermogen van maximaal 150 kw" - }, - "2": { - "then": "
Tesla Supercharger
levert een vermogen van maximaal 250 kw" - } - }, - "question": "Welk vermogen levert een enkele stekker van type
Tesla Supercharger
?", - "render": "
Tesla Supercharger
levert een vermogen van maximaal {socket:tesla_supercharger:output}" - }, - "power-output-7": { - "mappings": { - "0": { - "then": "
Type 2 (mennekes)
levert een vermogen van maximaal 11 kw" - }, - "1": { - "then": "
Type 2 (mennekes)
levert een vermogen van maximaal 22 kw" - } - }, - "question": "Welk vermogen levert een enkele stekker van type
Type 2 (mennekes)
?", - "render": "
Type 2 (mennekes)
levert een vermogen van maximaal {socket:type2:output}" - }, - "power-output-8": { - "mappings": { - "0": { - "then": "
Type 2 CCS (mennekes)
levert een vermogen van maximaal 50 kw" - } - }, - "question": "Welk vermogen levert een enkele stekker van type
Type 2 CCS (mennekes)
?", - "render": "
Type 2 CCS (mennekes)
levert een vermogen van maximaal {socket:type2_combo:output}" - }, - "power-output-9": { - "mappings": { - "0": { - "then": "
Type 2 met kabel (J1772)
levert een vermogen van maximaal 11 kw" - }, - "1": { - "then": "
Type 2 met kabel (J1772)
levert een vermogen van maximaal 22 kw" - } - }, - "question": "Welk vermogen levert een enkele stekker van type
Type 2 met kabel (J1772)
?", - "render": "
Type 2 met kabel (J1772)
levert een vermogen van maximaal {socket:type2_cable:output}" - }, - "questions": { - "render": "

Technische vragen

De vragen hieronder zijn erg technisch - sla deze over indien je hier geen tijd voor hebt
{questions}" - }, - "ref": { - "question": "Wat is het referentienummer van dit oplaadstation?", - "render": "Het referentienummer van dit oplaadpunt is {ref}" - }, - "voltage-0": { - "mappings": { - "0": { - "then": "
Schuko stekker zonder aardingspin (CEE7/4 type F)
heeft een spanning van 230 volt" - } - }, - "question": "Welke spanning levert de stekker van type
Schuko stekker zonder aardingspin (CEE7/4 type F)
", - "render": "
Schuko stekker zonder aardingspin (CEE7/4 type F)
heeft een spanning van {socket:schuko:voltage} volt" - }, - "voltage-1": { - "mappings": { - "0": { - "then": "
Europese stekker met aardingspin (CEE7/4 type E)
heeft een spanning van 230 volt" - } - }, - "question": "Welke spanning levert de stekker van type
Europese stekker met aardingspin (CEE7/4 type E)
", - "render": "
Europese stekker met aardingspin (CEE7/4 type E)
heeft een spanning van {socket:typee:voltage} volt" - }, - "voltage-10": { - "mappings": { - "0": { - "then": "
Tesla Supercharger CCS (een type2 CCS met Tesla-logo)
heeft een spanning van 500 volt" - }, - "1": { - "then": "
Tesla Supercharger CCS (een type2 CCS met Tesla-logo)
heeft een spanning van 920 volt" - } - }, - "question": "Welke spanning levert de stekker van type
Tesla Supercharger CCS (een type2 CCS met Tesla-logo)
", - "render": "
Tesla Supercharger CCS (een type2 CCS met Tesla-logo)
heeft een spanning van {socket:tesla_supercharger_ccs:voltage} volt" - }, - "voltage-11": { - "mappings": { - "0": { - "then": "
Tesla Supercharger (destination)
heeft een spanning van 480 volt" - } - }, - "question": "Welke spanning levert de stekker van type
Tesla Supercharger (destination)
", - "render": "
Tesla Supercharger (destination)
heeft een spanning van {socket:tesla_destination:voltage} volt" - }, - "voltage-12": { - "mappings": { - "0": { - "then": "
Tesla supercharger (destination (Een Type 2 met kabel en Tesla-logo)
heeft een spanning van 230 volt" - }, - "1": { - "then": "
Tesla supercharger (destination (Een Type 2 met kabel en Tesla-logo)
heeft een spanning van 400 volt" - } - }, - "question": "Welke spanning levert de stekker van type
Tesla supercharger (destination (Een Type 2 met kabel en Tesla-logo)
", - "render": "
Tesla supercharger (destination (Een Type 2 met kabel en Tesla-logo)
heeft een spanning van {socket:tesla_destination:voltage} volt" - }, - "voltage-13": { - "mappings": { - "0": { - "then": "
USB om GSMs en kleine electronica op te laden
heeft een spanning van 5 volt" - } - }, - "question": "Welke spanning levert de stekker van type
USB om GSMs en kleine electronica op te laden
", - "render": "
USB om GSMs en kleine electronica op te laden
heeft een spanning van {socket:USB-A:voltage} volt" - }, - "voltage-14": { - "question": "Welke spanning levert de stekker van type
Bosch Active Connect met 3 pinnen aan een kabel
", - "render": "
Bosch Active Connect met 3 pinnen aan een kabel
heeft een spanning van {socket:bosch_3pin:voltage} volt" - }, - "voltage-15": { - "question": "Welke spanning levert de stekker van type
Bosch Active Connect met 5 pinnen aan een kabel
", - "render": "
Bosch Active Connect met 5 pinnen aan een kabel
heeft een spanning van {socket:bosch_5pin:voltage} volt" - }, - "voltage-2": { - "mappings": { - "0": { - "then": "
Chademo
heeft een spanning van 500 volt" - } - }, - "question": "Welke spanning levert de stekker van type
Chademo
", - "render": "
Chademo
heeft een spanning van {socket:chademo:voltage} volt" - }, - "voltage-3": { - "mappings": { - "0": { - "then": "
Type 1 met kabel (J1772)
heeft een spanning van 200 volt" - }, - "1": { - "then": "
Type 1 met kabel (J1772)
heeft een spanning van 240 volt" - } - }, - "question": "Welke spanning levert de stekker van type
Type 1 met kabel (J1772)
", - "render": "
Type 1 met kabel (J1772)
heeft een spanning van {socket:type1_cable:voltage} volt" - }, - "voltage-4": { - "mappings": { - "0": { - "then": "
Type 1 zonder kabel (J1772)
heeft een spanning van 200 volt" - }, - "1": { - "then": "
Type 1 zonder kabel (J1772)
heeft een spanning van 240 volt" - } - }, - "question": "Welke spanning levert de stekker van type
Type 1 zonder kabel (J1772)
", - "render": "
Type 1 zonder kabel (J1772)
heeft een spanning van {socket:type1:voltage} volt" - }, - "voltage-5": { - "mappings": { - "0": { - "then": "
Type 1 CCS (ook gekend als Type 1 Combo)
heeft een spanning van 400 volt" - }, - "1": { - "then": "
Type 1 CCS (ook gekend als Type 1 Combo)
heeft een spanning van 1000 volt" - } - }, - "question": "Welke spanning levert de stekker van type
Type 1 CCS (ook gekend als Type 1 Combo)
", - "render": "
Type 1 CCS (ook gekend als Type 1 Combo)
heeft een spanning van {socket:type1_combo:voltage} volt" - }, - "voltage-6": { - "mappings": { - "0": { - "then": "
Tesla Supercharger
heeft een spanning van 480 volt" - } - }, - "question": "Welke spanning levert de stekker van type
Tesla Supercharger
", - "render": "
Tesla Supercharger
heeft een spanning van {socket:tesla_supercharger:voltage} volt" - }, - "voltage-7": { - "mappings": { - "0": { - "then": "
Type 2 (mennekes)
heeft een spanning van 230 volt" - }, - "1": { - "then": "
Type 2 (mennekes)
heeft een spanning van 400 volt" - } - }, - "question": "Welke spanning levert de stekker van type
Type 2 (mennekes)
", - "render": "
Type 2 (mennekes)
heeft een spanning van {socket:type2:voltage} volt" - }, - "voltage-8": { - "mappings": { - "0": { - "then": "
Type 2 CCS (mennekes)
heeft een spanning van 500 volt" - }, - "1": { - "then": "
Type 2 CCS (mennekes)
heeft een spanning van 920 volt" - } - }, - "question": "Welke spanning levert de stekker van type
Type 2 CCS (mennekes)
", - "render": "
Type 2 CCS (mennekes)
heeft een spanning van {socket:type2_combo:voltage} volt" - }, - "voltage-9": { - "mappings": { - "0": { - "then": "
Type 2 met kabel (J1772)
heeft een spanning van 230 volt" - }, - "1": { - "then": "
Type 2 met kabel (J1772)
heeft een spanning van 400 volt" - } - }, - "question": "Welke spanning levert de stekker van type
Type 2 met kabel (J1772)
", - "render": "
Type 2 met kabel (J1772)
heeft een spanning van {socket:type2_cable:voltage} volt" - }, - "website": { - "question": "Wat is de website waar men meer info kan vinden over dit oplaadpunt?", - "render": "Meer informatie op {website}" - } }, - "title": { - "render": "Oplaadpunten" - }, - "units": { - "0": { - "applicableUnits": { - "0": { - "human": " minuten", - "humanSingular": " minuut" - }, - "1": { - "human": " uren", - "humanSingular": " uur" - }, - "2": { - "human": " day", - "humanSingular": " dag" - } - } - }, - "1": { - "applicableUnits": { - "0": { - "human": "volt" - } - } - }, - "2": { - "applicableUnits": { - "0": { - "human": "A" - } - } - }, - "3": { - "applicableUnits": { - "0": { - "human": "kilowatt" - }, - "1": { - "human": "megawatt" - } - } - } - } - }, - "crossings": { - "description": "Oversteekplaatsen voor voetgangers en fietsers", - "name": "Oversteekplaatsen", - "presets": { - "0": { - "description": "Oversteekplaats voor voetgangers en/of fietsers", - "title": "Oversteekplaats" - }, - "1": { - "description": "Verkeerslicht op een weg", - "title": "Verkeerslicht" - } - }, - "tagRenderings": { - "crossing-bicycle-allowed": { - "mappings": { - "0": { - "then": "Een fietser kan deze oversteekplaats gebruiken" - }, - "1": { - "then": "Een fietser kan deze oversteekplaats niet gebruiken" - } - }, - "question": "Is deze oversteekplaats ook voor fietsers" - }, - "crossing-button": { - "mappings": { - "0": { - "then": "Dit verkeerslicht heeft een knop voor groen licht" - }, - "1": { - "then": "Dit verkeerlicht heeft geen knop voor groen licht" - } - }, - "question": "Heeft dit verkeerslicht een knop voor groen licht?" - }, - "crossing-continue-through-red": { - "mappings": { - "0": { - "then": "Een fietser mag wel rechtdoor gaan als het licht rood is " - }, - "1": { - "then": "Een fietser mag wel rechtdoor gaan als het licht rood is" - }, - "2": { - "then": "Een fietser mag niet rechtdoor gaan als het licht rood is" - } - }, - "question": "Mag een fietser rechtdoor gaan als het licht rood is?" - }, - "crossing-has-island": { - "mappings": { - "0": { - "then": "Deze oversteekplaats heeft een verkeerseiland in het midden" - }, - "1": { - "then": "Deze oversteekplaats heeft geen verkeerseiland in het midden" - } - }, - "question": "Heeft deze oversteekplaats een verkeerseiland in het midden?" - }, - "crossing-is-zebra": { - "mappings": { - "0": { - "then": "Dit is een zebrapad" - }, - "1": { - "then": "Dit is geen zebrapad" - } - }, - "question": "Is dit een zebrapad?" - }, - "crossing-right-turn-through-red": { - "mappings": { - "0": { - "then": "Een fietser mag wel rechtsaf slaan als het licht rood is " - }, - "1": { - "then": "Een fietser mag wel rechtsaf slaan als het licht rood is" - }, - "2": { - "then": "Een fietser mag niet rechtsaf slaan als het licht rood is" - } - }, - "question": "Mag een fietser rechtsaf slaan als het licht rood is?" - }, - "crossing-tactile": { - "mappings": { - "0": { - "then": "Deze oversteekplaats heeft een geleidelijn" - }, - "1": { - "then": "Deze oversteekplaats heeft geen geleidelijn" - }, - "2": { - "then": "Deze oversteekplaats heeft een geleidelijn, die incorrect is." - } - }, - "question": "Heeft deze oversteekplaats een geleidelijn?" - }, - "crossing-type": { - "mappings": { - "0": { - "then": "Oversteekplaats, zonder verkeerslichten" - }, - "1": { - "then": "Oversteekplaats met verkeerslichten" - }, - "2": { - "then": "Zebrapad" - } - }, - "question": "Wat voor oversteekplaats is dit?" - } - }, - "title": { - "mappings": { - "0": { - "then": "Verkeerslicht" - }, - "1": { - "then": "Oversteektplaats met verkeerslichten" - } - }, - "render": "Oversteekplaats" - } - }, - "cycleways_and_roads": { - "name": "Fietspaden, straten en wegen", - "tagRenderings": { - "Cycleway type for a road": { - "mappings": { - "0": { - "then": "Er is een fietssuggestiestrook" - }, - "1": { - "then": "Er is een fietspad aangrenzend aan de weg (gescheiden met verf)" - }, - "2": { - "then": "Er is een fietspad (los van de weg), maar geen fietspad afzonderlijk getekend naast deze weg." - }, - "3": { - "then": "Er is een apart getekend fietspad." - }, - "4": { - "then": "Er is geen fietspad aanwezig" - }, - "5": { - "then": "Er is geen fietspad aanwezig" - } - }, - "question": "Wat voor fietspad is hier?" - }, - "Cycleway:smoothness": { - "mappings": { - "0": { - "then": "Geschikt voor fijne rollers: rollerblade, skateboard" - }, - "1": { - "then": "Geschikt voor fijne wielen: racefiets" - }, - "2": { - "then": "Geschikt voor normale wielen: stadsfiets, rolstoel, scooter" - }, - "3": { - "then": "Geschikt voor brede wielen: trekfiets, auto, rickshaw" - }, - "4": { - "then": "Geschikt voor voertuigen met hoge banden: lichte terreinwagen" - }, - "5": { - "then": "Geschikt voor terreinwagens: zware terreinwagen" - }, - "6": { - "then": "Geschikt voor gespecialiseerde terreinwagens: tractor, alleterreinwagen" - }, - "7": { - "then": "Niet geschikt voor voertuigen met wielen" - } - }, - "question": "Wat is de kwaliteit van dit fietspad?" - }, - "Cycleway:surface": { - "mappings": { - "0": { - "then": "Dit fietspad is onverhard" - }, - "1": { - "then": "Dit fietspad is geplaveid" - }, - "2": { - "then": "Dit fietspad is gemaakt van asfalt" - }, - "3": { - "then": "Dit fietspad is gemaakt van straatstenen" - }, - "4": { - "then": "Dit fietspad is gemaakt van beton" - }, - "5": { - "then": "Dit fietspad is gemaakt van kasseien (natuurlijk of verwerkt)" - }, - "6": { - "then": "Dit fietspad is gemaakt van ruwe, natuurlijke kasseien" - }, - "7": { - "then": "Dit fietspad is gemaakt van vlakke, rechthoekige kasseien" - }, - "8": { - "then": "Dit fietspad is gemaakt van hout" - }, - "9": { - "then": "Dit fietspad is gemaakt van grind" - }, - "10": { - "then": "Dit fietspad is gemaakt van fijn grind" - }, - "11": { - "then": "Dit fietspad is gemaakt van kiezelsteentjes" - }, - "12": { - "then": "Dit fietspad is gemaakt van aarde" - } - }, - "question": "Waaruit is het oppervlak van het fietspad van gemaakt?", - "render": "Dit fietspad is gemaakt van {cycleway:surface}" - }, - "Is this a cyclestreet? (For a road)": { - "mappings": { - "0": { - "then": "Dit is een fietsstraat, en dus een 30km/h zone" - }, - "1": { - "then": "Dit is een fietsstraat" - }, - "2": { - "then": "Dit is geen fietsstraat" - } - }, - "question": "Is dit een fietsstraat?" - }, - "Maxspeed (for road)": { - "mappings": { - "0": { - "then": "De maximumsnelheid is 20 km/u" - }, - "1": { - "then": "De maximumsnelheid is 30 km/u" - }, - "2": { - "then": "De maximumsnelheid is 50 km/u" - }, - "3": { - "then": "De maximumsnelheid is 70 km/u" - }, - "4": { - "then": "De maximumsnelheid is 90 km/u" - } - }, - "question": "Wat is de maximumsnelheid in deze straat?", - "render": "De maximumsnelheid op deze weg is {maxspeed} km/u" - }, - "Surface of the road": { - "mappings": { - "0": { - "then": "Dit fietspad is onverhard" - }, - "1": { - "then": "Dit fietspad is geplaveid" - }, - "2": { - "then": "Dit fietspad is gemaakt van asfalt" - }, - "3": { - "then": "Dit fietspad is gemaakt van straatstenen" - }, - "4": { - "then": "Dit fietspad is gemaakt van beton" - }, - "5": { - "then": "Dit fietspad is gemaakt van kasseien (natuurlijk of verwerkt)" - }, - "6": { - "then": "Dit fietspad is gemaakt van ruwe, natuurlijke kasseien" - }, - "7": { - "then": "Dit fietspad is gemaakt van vlakke, rechthoekige kasseien" - }, - "8": { - "then": "Dit fietspad is gemaakt van hout" - }, - "9": { - "then": "Dit fietspad is gemaakt van grind" - }, - "10": { - "then": "Dit fietspad is gemaakt van fijn grind" - }, - "11": { - "then": "Dit fietspad is gemaakt van kiezelsteentjes" - }, - "12": { - "then": "Dit fietspad is gemaakt van aarde" - } - }, - "question": "Waaruit is het oppervlak van de straat gemaakt?", - "render": "Deze weg is gemaakt van {surface}" - }, - "Surface of the street": { - "question": "Wat is de kwaliteit van deze straat?" - }, - "cyclelan-segregation": { - "mappings": { - "0": { - "then": "Dit fietspad is gescheiden van de weg met een onderbroken streep" - }, - "1": { - "then": "Dit fietspad is gescheiden van de weg met een doorgetrokken streep" - }, - "2": { - "then": "Dit fietspad is gescheiden van de weg met parkeervakken" - }, - "3": { - "then": "Dit fietspad is gescheiden van de weg met een stoeprand" - } - }, - "question": "Hoe is dit fietspad gescheiden van de weg?" - }, - "cycleway-lane-track-traffic-signs": { - "mappings": { - "0": { - "then": "Verplicht fietspad " - }, - "1": { - "then": "Verplicht fietspad (met onderbord)
" - }, - "2": { - "then": "Afgescheiden voet-/fietspad " - }, - "3": { - "then": "Gedeeld voet-/fietspad " - }, - "4": { - "then": "Geen verkeersbord aanwezig" - } - }, - "question": "Welk verkeersbord heeft dit fietspad?" - }, - "cycleway-segregation": { - "mappings": { - "0": { - "then": "Dit fietspad is gescheiden van de weg met een onderbroken streep" - }, - "1": { - "then": "Dit fietspad is gescheiden van de weg met een doorgetrokken streep" - }, - "2": { - "then": "Dit fietspad is gescheiden van de weg met parkeervakken" - }, - "3": { - "then": "Dit fietspad is gescheiden van de weg met een stoeprand" - } - }, - "question": "Hoe is dit fietspad gescheiden van de weg?" - }, - "cycleway-traffic-signs": { - "mappings": { - "0": { - "then": "Verplicht fietspad " - }, - "1": { - "then": "Verplicht fietspad (met onderbord)
" - }, - "2": { - "then": "Afgescheiden voet-/fietspad " - }, - "3": { - "then": "Gedeeld voet-/fietspad " - }, - "4": { - "then": "Geen verkeersbord aanwezig" - } - }, - "question": "Welk verkeersbord heeft dit fietspad?" - }, - "cycleway-traffic-signs-D7-supplementary": { - "mappings": { - "0": { - "then": "" - }, - "1": { - "then": "" - }, - "2": { - "then": "" - }, - "3": { - "then": "" - }, - "4": { - "then": "" - }, - "5": { - "then": "" - }, - "6": { - "then": "Geen onderbord aanwezig" - } - }, - "question": "Heeft het verkeersbord D7 () een onderbord?" - }, - "cycleway-traffic-signs-supplementary": { - "mappings": { - "0": { - "then": "" - }, - "1": { - "then": "" - }, - "2": { - "then": "" - }, - "3": { - "then": "" - }, - "4": { - "then": "" - }, - "5": { - "then": "" - }, - "6": { - "then": "Geen onderbord aanwezig" - } - }, - "question": "Heeft het verkeersbord D7 () een onderbord?" - }, - "cycleways_and_roads-cycleway:buffer": { - "question": "Hoe breed is de ruimte tussen het fietspad en de weg?", - "render": "De schrikafstand van dit fietspad is {cycleway:buffer} m" - }, - "is lit?": { - "mappings": { - "0": { - "then": "Deze weg is verlicht" - }, - "1": { - "then": "Deze weg is niet verlicht" - }, - "2": { - "then": "Deze weg is 's nachts verlicht" - }, - "3": { - "then": "Deze weg is 24/7 verlicht" - } - }, - "question": "Is deze weg verlicht?" - }, - "width:carriageway": { - "question": "Hoe breed is de rijbaan in deze straat (in meters)?
Dit is
Meet dit van stoepsteen tot stoepsteen, dus inclusief een parallelle parkeerstrook", - "render": "De breedte van deze rijbaan in deze straat is {width:carriageway}m" - } - }, - "title": { - "mappings": { - "0": { - "then": "Fietsweg" - }, - "1": { - "then": "Fietssuggestiestrook" - }, - "2": { - "then": "Fietsstrook" - }, - "3": { - "then": "Fietsweg naast de weg" - }, - "4": { - "then": "Fietsstraat" - } - }, - "render": "Fietspaden" - } - }, - "defibrillator": { - "name": "Defibrillatoren", - "presets": { - "0": { - "title": "Defibrillator" - } - }, - "tagRenderings": { - "defibrillator-access": { - "mappings": { - "0": { - "then": "Publiek toegankelijk" - }, - "1": { - "then": "Publiek toegankelijk" - }, - "2": { - "then": "Enkel toegankelijk voor klanten" - }, - "3": { - "then": "Niet toegankelijk voor het publiek (bv. enkel voor personeel, de eigenaar, ...)" - }, - "4": { - "then": "Niet toegankelijk, mogelijk enkel voor professionals" - } - }, - "question": "Is deze defibrillator vrij toegankelijk?", - "render": "Toegankelijkheid is {access}" - }, - "defibrillator-defibrillator": { - "mappings": { - "0": { - "then": "Er is geen info over het soort toestel" - }, - "1": { - "then": "Dit is een manueel toestel enkel voor professionals" - }, - "2": { - "then": "Dit is een gewone automatische defibrillator" - } - }, - "question": "Is dit een gewone automatische defibrillator of een manueel toestel enkel voor professionals?" - }, - "defibrillator-defibrillator:location": { - "question": "Gelieve meer informatie te geven over de exacte locatie van de defibrillator (in de plaatselijke taal)", - "render": "Meer informatie over de locatie (lokale taal):
{defibrillator:location}" - }, - "defibrillator-defibrillator:location:en": { - "question": "Gelieve meer informatie te geven over de exacte locatie van de defibrillator (in het Engels)", - "render": "Meer informatie over de locatie (in het Engels):
{defibrillator:location:en}" - }, - "defibrillator-defibrillator:location:fr": { - "question": "Gelieve meer informatie te geven over de exacte locatie van de defibrillator (in het Frans)", - "render": "Meer informatie over de locatie (in het Frans):
{defibrillator:location:fr}" - }, - "defibrillator-description": { - "question": "Is er nog iets bijzonder aan deze defibrillator dat je nog niet hebt kunnen meegeven? (laat leeg indien niet)", - "render": "Aanvullende info: {description}" - }, - "defibrillator-email": { - "question": "Wat is het email-adres voor vragen over deze defibrillator", - "render": "Email voor vragen over deze defibrillator: {email}" - }, - "defibrillator-fixme": { - "question": "Is er iets mis met de informatie over deze defibrillator dat je hier niet opgelost kreeg? (laat hier een berichtje achter voor OpenStreetMap experts)", - "render": "Extra informatie voor OpenStreetMap experts: {fixme}" - }, - "defibrillator-indoors": { - "mappings": { - "0": { - "then": "Deze defibrillator bevindt zich in een gebouw" - }, - "1": { - "then": "Deze defibrillator hangt buiten" - } - }, - "question": "Hangt deze defibrillator binnen of buiten?" - }, - "defibrillator-level": { - "mappings": { - "0": { - "then": "Deze defibrillator bevindt zich gelijkvloers" - }, - "1": { - "then": "Deze defibrillator is op de eerste verdieping" - } - }, - "question": "Op welke verdieping bevindt deze defibrillator zich?", - "render": "De defibrillator bevindt zicht op verdieping {level}" - }, - "defibrillator-opening_hours": { - "mappings": { - "0": { - "then": "24/7 open (inclusief feestdagen)" - } - }, - "question": "Wanneer is deze defibrillator beschikbaar?", - "render": "{opening_hours_table(opening_hours)}" - }, - "defibrillator-phone": { - "question": "Wat is het telefoonnummer voor vragen over deze defibrillator", - "render": "Telefoonnummer voor vragen over deze defibrillator: {phone}" - }, - "defibrillator-ref": { - "question": "Wat is het officieel identificatienummer van het toestel? (indien zichtbaar op toestel)", - "render": "Officieel identificatienummer van het toestel: {ref}" - }, - "defibrillator-survey:date": { - "mappings": { - "0": { - "then": "Vandaag nagekeken!" - } - }, - "question": "Wanneer is deze defibrillator het laatst gecontroleerd in OpenStreetMap?", - "render": "Deze defibrillator is nagekeken in OSM op {survey:date}" - } - }, - "title": { - "render": "Defibrillator" - } - }, - "direction": { - "description": "Deze laag toont de oriëntatie van een object", - "name": "Richtingsvisualisatie" - }, - "drinking_water": { - "name": "Drinkbaar water", - "presets": { - "0": { - "title": "drinkbaar water" - } - }, - "tagRenderings": { - "Bottle refill": { - "mappings": { - "0": { - "then": "Een drinkbus bijvullen gaat makkelijk" - }, - "1": { - "then": "Een drinkbus past moeilijk" - } - }, - "question": "Hoe gemakkelijk is het om drinkbussen bij te vullen?" - }, - "Still in use?": { - "mappings": { - "0": { - "then": "Deze drinkwaterfontein werkt" - }, - "1": { - "then": "Deze drinkwaterfontein is kapot" - }, - "2": { - "then": "Deze drinkwaterfontein is afgesloten" - } - }, - "question": "Is deze drinkwaterkraan nog steeds werkende?", - "render": "Deze waterkraan-status is {operational_status}" - }, - "render-closest-drinking-water": { - "render": "Er bevindt zich een ander drinkwaterpunt op {_closest_other_drinking_water_distance} meter" - } - }, - "title": { - "render": "Drinkbaar water" - } - }, - "etymology": { - "description": "Alle lagen met een gelinkt etymology", - "name": "Heeft etymology info", - "tagRenderings": { - "simple etymology": { - "mappings": { - "0": { - "then": "De oorsprong van deze naam is onbekend in de literatuur" - } - }, - "question": "Naar wat is dit object vernoemd?
Dit staat mogelijks vermeld op het straatnaambordje", - "render": "Vernoemd naar {name:etymology}" - }, - "street-name-sign-image": { - "render": "{image_carousel(image:streetsign)}
{image_upload(image:streetsign, Voeg afbeelding van straatnaambordje toe)}" - }, - "wikipedia-etymology": { - "question": "Wat is het Wikidata-item van hetgeen dit object is naar vernoemd?", - "render": "

Wikipedia artikel van de naamgever

{wikipedia(name:etymology:wikidata):max-height:20rem}" - }, - "zoeken op inventaris onroerend erfgoed": { - "render": "Zoeken op inventaris onroerend erfgoed" - } - } - }, - "food": { - "filter": { - "0": { - "options": { - "0": { - "question": "Nu geopened" - } - } - }, - "1": { - "options": { - "0": { - "question": "Heeft een vegetarisch menu" - } - } - }, - "2": { - "options": { - "0": { - "question": "Heeft een veganistisch menu" - } - } - }, - "3": { - "options": { - "0": { - "question": "Heeft een halal menu" - } - } - } - }, - "name": "Eetgelegenheden", - "presets": { - "0": { - "description": "Een eetgegelegenheid waar je aan tafel wordt bediend", - "title": "restaurant" - }, - "1": { - "description": "Een zaak waar je snel bediend wordt, vaak met de focus op afhalen. Zitgelegenheid is eerder beperkt (of zelfs afwezig)", - "title": "fastfood-zaak" - }, - "2": { - "description": "Een fastfood-zaak waar je frieten koopt", - "title": "frituur" - } - }, - "tagRenderings": { - "Cuisine": { - "mappings": { - "0": { - "then": "Dit is een pizzeria" - }, - "1": { - "then": "Dit is een frituur" - }, - "2": { - "then": "Dit is een pastazaak" - }, - "3": { - "then": "Dit is een kebabzaak" - }, - "4": { - "then": "Dit is een broodjeszaak" - }, - "5": { - "then": "Dit is een hamburgerrestaurant" - }, - "6": { - "then": "Dit is een sushirestaurant" - }, - "7": { - "then": "Dit is een koffiezaak" - }, - "8": { - "then": "Dit is een Italiaans restaurant (dat meer dan enkel pasta of pizza verkoopt)" - }, - "9": { - "then": "Dit is een Frans restaurant" - }, - "10": { - "then": "Dit is een Chinees restaurant" - }, - "11": { - "then": "Dit is een Grieks restaurant" - }, - "12": { - "then": "Dit is een Indisch restaurant" - }, - "13": { - "then": "Dit is een Turks restaurant (dat meer dan enkel kebab verkoopt)" - }, - "14": { - "then": "Dit is een Thaïs restaurant" - } - }, - "question": "Welk soort gerechten worden hier geserveerd?", - "render": "Deze plaats serveert vooral {cuisine}" - }, - "Fastfood vs restaurant": { - "mappings": { - "0": { - "then": "Dit is een fastfood-zaak. De focus ligt op snelle bediening, zitplaatsen zijn vaak beperkt en functioneel" - }, - "1": { - "then": "Dit is een restaurant. De focus ligt op een aangename ervaring waar je aan tafel wordt bediend" - } - }, - "question": "Wat voor soort zaak is dit?" - }, - "Name": { - "question": "Wat is de naam van deze eetgelegenheid?", - "render": "De naam van deze eetgelegeheid is {name}" - }, - "Takeaway": { - "mappings": { - "0": { - "then": "Hier is enkel afhaal mogelijk" - }, - "1": { - "then": "Eten kan hier afgehaald worden" - }, - "2": { - "then": "Hier is geen afhaalmogelijkheid" - } - }, - "question": "Biedt deze zaak een afhaalmogelijkheid aan?" - }, - "Vegan (no friture)": { - "mappings": { - "0": { - "then": "Geen veganistische opties beschikbaar" - }, - "1": { - "then": "Beperkte veganistische opties zijn beschikbaar" - }, - "2": { - "then": "Veganistische opties zijn beschikbaar" - }, - "3": { - "then": "Enkel veganistische opties zijn beschikbaar" - } - }, - "question": "Heeft deze eetgelegenheid een veganistische optie?" - }, - "Vegetarian (no friture)": { - "mappings": { - "0": { - "then": "Geen vegetarische opties beschikbaar" - }, - "1": { - "then": "Beperkte vegetarische opties zijn beschikbaar" - }, - "2": { - "then": "Vegetarische opties zijn beschikbaar" - }, - "3": { - "then": "Enkel vegetarische opties zijn beschikbaar" - } - }, - "question": "Heeft deze eetgelegenheid een vegetarische optie?" - }, - "friture-oil": { - "mappings": { - "0": { - "then": "Plantaardige olie" - }, - "1": { - "then": "Dierlijk vet" - } - }, - "question": "Bakt deze frituur met dierlijk vet of met plantaardige olie?" - }, - "friture-take-your-container": { - "mappings": { - "0": { - "then": "Je mag je eigen containers meenemen om je bestelling in mee te nemen en zo minder afval te maken" - }, - "1": { - "then": "Je mag geen eigen containers meenemen om je bestelling in mee te nemen" - }, - "2": { - "then": "Je moet je eigen containers meenemen om je bestelling in mee te nemen." - } - }, - "question": "Als je je eigen container (bv. kookpot of kleine potjes voor saus) meeneemt, gebruikt de frituur deze dan om je bestelling in te doen?" - }, - "friture-vegan": { - "mappings": { - "0": { - "then": "Er zijn veganistische snacks aanwezig" - }, - "1": { - "then": "Slechts enkele veganistische snacks" - }, - "2": { - "then": "Geen veganistische snacks beschikbaar" - } - }, - "question": "Heeft deze frituur veganistische snacks?" - }, - "friture-vegetarian": { - "mappings": { - "0": { - "then": "Er zijn vegetarische snacks aanwezig" - }, - "1": { - "then": "Slechts enkele vegetarische snacks" - }, - "2": { - "then": "Geen vegetarische snacks beschikbaar" - } - }, - "question": "Heeft deze frituur vegetarische snacks?" - }, - "halal (no friture)": { - "mappings": { - "0": { - "then": "Er zijn geen halal opties aanwezig" - }, - "1": { - "then": "Er zijn een beperkt aantal halal opties" - }, - "2": { - "then": "Halal menu verkrijgbaar" - }, - "3": { - "then": "Enkel halal opties zijn beschikbaar" - } - }, - "question": "Heeft dit restaurant halal opties?" - } - }, - "title": { - "mappings": { - "0": { - "then": "Restaurant {name}" - }, - "1": { - "then": "Fastfood-zaak {name}" - } - }, - "render": "Eetgelegenheid" - } - }, - "ghost_bike": { - "name": "Witte Fietsen", - "presets": { - "0": { - "title": "Witte fiets" - } - }, - "tagRenderings": { - "ghost-bike-explanation": { - "render": "Een Witte Fiets (of Spookfiets) is een aandenken aan een fietser die bij een verkeersongeval om het leven kwam. Het gaat over een witgeschilderde fiets die geplaatst werd in de buurt van het ongeval." - }, - "ghost_bike-inscription": { - "question": "Wat is het opschrift op deze witte fiets?", - "render": "{inscription}" - }, - "ghost_bike-name": { - "mappings": { - "0": { - "then": "De naam is niet aangeduid op de fiets" - } - }, - "question": "Aan wie is deze witte fiets een eerbetoon?
Respecteer privacy - voeg enkel een naam toe indien die op de fiets staat of gepubliceerd is. Eventueel voeg je enkel de voornaam toe.
", - "render": "Ter nagedachtenis van {name}" - }, - "ghost_bike-source": { - "question": "Op welke website kan men meer informatie vinden over de Witte fiets of over het ongeval?", - "render": "Meer informatie" - }, - "ghost_bike-start_date": { - "question": "Wanneer werd deze witte fiets geplaatst?", - "render": "Geplaatst op {start_date}" - } - }, - "title": { - "mappings": { - "0": { - "then": "Witte fiets ter nagedachtenis van {name}" - } - }, - "render": "Witte Fiets" - } - }, - "grass_in_parks": { - "name": "Toegankelijke grasvelden in parken", - "title": { - "mappings": { - "0": { - "then": "{name}" - } - }, - "render": "Speelweide in een park" - } - }, - "information_board": { - "name": "Informatieborden", - "presets": { - "0": { - "title": "informatiebord" - } - }, - "title": { - "render": "Informatiebord" - } - }, - "map": { - "description": "Een permantent geinstalleerde kaart", - "name": "Kaarten", - "presets": { - "0": { - "description": "Voeg een ontbrekende kaart toe", - "title": "Kaart" - } - }, - "tagRenderings": { - "map-attribution": { - "mappings": { - "0": { - "then": "De OpenStreetMap-attributie is duidelijk aangegeven, zelf met vermelding van \"ODBL\" " - }, - "1": { - "then": "OpenStreetMap is duidelijk aangegeven, maar de licentievermelding ontbreekt" - }, - "2": { - "then": "OpenStreetMap was oorspronkelijk niet aangeduid, maar iemand plaatste er een sticker" - }, - "3": { - "then": "Er is geen attributie" - }, - "4": { - "then": "Er is geen attributie" - } - }, - "question": "Is de attributie voor OpenStreetMap aanwezig?" - }, - "map-map_source": { - "mappings": { - "0": { - "then": "Deze kaart is gebaseerd op OpenStreetMap" - } - }, - "question": "Op welke data is deze kaart gebaseerd?", - "render": "Deze kaart is gebaseerd op {map_source}" - } - }, - "title": { - "render": "Kaart" - } - }, - "nature_reserve": { - "description": "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.", - "filter": { - "0": { - "options": { - "0": { - "question": "Vrij te bezoeken" - } - } - }, - "1": { - "options": { - "0": { - "question": "Alle natuurgebieden" - }, - "1": { - "question": "Honden mogen vrij rondlopen" - }, - "2": { - "question": "Honden welkom aan de leiband" - } - } - } - }, - "name": "Natuurgebied", - "presets": { - "0": { - "description": "Voeg een ontbrekend, erkend natuurreservaat toe, bv. een gebied dat beheerd wordt door het ANB of natuurpunt", - "title": "natuurreservaat" - } - }, - "tagRenderings": { - "Access tag": { - "mappings": { - "0": { - "then": "Vrij toegankelijk" - }, - "1": { - "then": "Niet toegankelijk" - }, - "2": { - "then": "Niet toegankelijk, want privégebied" - }, - "3": { - "then": "Toegankelijk, ondanks dat het privegebied is" - }, - "4": { - "then": "Enkel toegankelijk met een gids of tijdens een activiteit" - }, - "5": { - "then": "Toegankelijk mits betaling" - } - }, - "question": "Is dit gebied toegankelijk?", - "render": "De toegankelijkheid van dit gebied is: {access:description}" - }, - "Curator": { - "question": "Wie is de conservator van dit gebied?
Respecteer privacy - geef deze naam enkel als die duidelijk is gepubliceerd", - "render": "{curator} is de beheerder van dit gebied" - }, - "Dogs?": { - "mappings": { - "0": { - "then": "Honden moeten aan de leiband" - }, - "1": { - "then": "Honden zijn niet toegestaan" - }, - "2": { - "then": "Honden zijn welkom en mogen vrij rondlopen" - } - }, - "question": "Zijn honden toegelaten in dit gebied?" - }, - "Editable description": { - "render": "Extra info: {description:0}" - }, - "Email": { - "question": "Waar kan men naartoe emailen voor vragen en meldingen van dit natuurgebied?
Respecteer privacy - geef enkel persoonlijke emailadressen als deze elders zijn gepubliceerd", - "render": "{email}" - }, - "Name tag": { - "mappings": { - "0": { - "then": "Dit gebied heeft geen naam" - } - }, - "question": "Wat is de naam van dit gebied?", - "render": "Dit gebied heet {name}" - }, - "Name:nl-tag": { - "question": "Wat is de Nederlandstalige naam van dit gebied?", - "render": "Dit gebied heet {name:nl}" - }, - "Non-editable description": { - "render": "Extra info: {description}" - }, - "Operator tag": { - "mappings": { - "0": { - "then": "Dit gebied wordt beheerd door Natuurpunt" - }, - "1": { - "then": "Dit gebied wordt beheerd door {operator}" - }, - "2": { - "then": "Dit gebied wordt beheerd door het Agentschap Natuur en Bos" - } - }, - "question": "Wie beheert dit gebied?", - "render": "Beheer door {operator}" - }, - "Surface area": { - "render": "Totale oppervlakte: {_surface:ha}Ha" - }, - "Website": { - "question": "Op welke webpagina kan men meer informatie vinden over dit natuurgebied?" - }, - "phone": { - "question": "Waar kan men naartoe bellen voor vragen en meldingen van dit natuurgebied?
Respecteer privacy - geef enkel persoonlijke telefoonnummers als deze elders zijn gepubliceerd", - "render": "{phone}" - } - }, - "title": { - "mappings": { - "0": { - "then": "{name:nl}" - }, - "1": { - "then": "{name}" - } - }, - "render": "Natuurgebied" - } - }, - "observation_tower": { - "description": "Torens om van het uitzicht te genieten", - "name": "Uitkijktorens", - "presets": { - "0": { - "description": "Een publiek toegankelijke uitkijktoren", - "title": "Uitkijktoren" - } - }, - "tagRenderings": { - "Fee": { - "mappings": { - "0": { - "then": "Gratis te bezoeken" - } - }, - "question": "Hoeveel moet men betalen om deze toren te bezoeken?", - "render": "Deze toren bezoeken kost {charge}" - }, - "Height": { - "question": "Hoe hoog is deze toren?", - "render": "Deze toren is {height} hoog" - }, - "Operator": { - "question": "Wie onderhoudt deze toren?", - "render": "Wordt onderhouden door {operator}" - }, - "name": { - "mappings": { - "0": { - "then": "Deze toren heeft geen specifieke naam" - } - }, - "question": "Heeft deze toren een naam?", - "render": "Deze toren heet {name}" - } - }, - "title": { - "mappings": { - "0": { - "then": "{name}" - } - }, - "render": "Uitkijktoren" - }, - "units": { - "0": { - "applicableUnits": { - "0": { - "human": " meter" - } - } - } - } - }, - "parking": { - "description": "Deze laag toont autoparkings", - "name": "Parking", - "presets": { - "0": { - "title": "parking voor auto's" - } - }, - "title": { - "render": "Parking voor auto's" - } - }, - "picnic_table": { - "description": "Deze laag toont picnictafels", - "name": "Picnictafels", - "presets": { - "0": { - "title": "picnic-tafel" - } - }, - "tagRenderings": { - "picnic_table-material": { - "mappings": { - "0": { - "then": "Deze picnictafel is gemaakt uit hout" - }, - "1": { - "then": "Deze picnictafel is gemaakt uit beton" - } - }, - "question": "Van welk materiaal is deze picnictafel gemaakt?", - "render": "Deze picnictafel is gemaakt van {material}" - } - }, - "title": { - "render": "Picnictafel" - } - }, - "play_forest": { - "description": "Een speelbos is een vrij toegankelijke zone in een bos", - "name": "Speelbossen", - "title": { - "mappings": { - "0": { - "then": "{name}" - }, - "1": { - "then": "Speelbos {name}" - } - }, - "render": "Speelbos" - } - }, - "playground": { - "description": "Speeltuinen", - "name": "Speeltuinen", - "presets": { - "0": { - "title": "Speeltuin" - } - }, - "tagRenderings": { - "Playground-wheelchair": { - "mappings": { - "0": { - "then": "Geheel toegankelijk voor rolstoelgebruikers" - }, - "1": { - "then": "Beperkt toegankelijk voor rolstoelgebruikers" - }, - "2": { - "then": "Niet toegankelijk voor rolstoelgebruikers" - } - }, - "question": "Is deze speeltuin toegankelijk voor rolstoelgebruikers?" - }, - "playground-access": { - "mappings": { - "0": { - "then": "Vrij toegankelijk voor het publiek" - }, - "1": { - "then": "Vrij toegankelijk voor het publiek" - }, - "2": { - "then": "Enkel toegankelijk voor klanten van de bijhorende zaak" - }, - "3": { - "then": "Vrij toegankelijk voor scholieren van de school" - }, - "4": { - "then": "Niet vrij toegankelijk" - } - }, - "question": "Is deze speeltuin vrij toegankelijk voor het publiek?" - }, - "playground-email": { - "question": "Wie kan men emailen indien er problemen zijn met de speeltuin?", - "render": "De bevoegde dienst kan bereikt worden via {email}" - }, - "playground-lit": { - "mappings": { - "0": { - "then": "Deze speeltuin is 's nachts verlicht" - }, - "1": { - "then": "Deze speeltuin is 's nachts niet verlicht" - } - }, - "question": "Is deze speeltuin 's nachts verlicht?" - }, - "playground-max_age": { - "question": "Wat is de maximaal toegestane leeftijd voor deze speeltuin?", - "render": "Toegankelijk tot {max_age}" - }, - "playground-min_age": { - "question": "Wat is de minimale leeftijd om op deze speeltuin te mogen?", - "render": "Toegankelijk vanaf {min_age} jaar oud" - }, - "playground-opening_hours": { - "mappings": { - "0": { - "then": "Van zonsopgang tot zonsondergang" - }, - "1": { - "then": "Dag en nacht toegankelijk" - }, - "2": { - "then": "Dag en nacht toegankelijk" - } - }, - "question": "Op welke uren is deze speeltuin toegankelijk?" - }, - "playground-operator": { - "question": "Wie beheert deze speeltuin?", - "render": "Beheer door {operator}" - }, - "playground-phone": { - "question": "Wie kan men bellen indien er problemen zijn met de speeltuin?", - "render": "De bevoegde dienst kan getelefoneerd worden via {phone}" - }, - "playground-surface": { - "mappings": { - "0": { - "then": "De ondergrond is gras" - }, - "1": { - "then": "De ondergrond is zand" - }, - "2": { - "then": "De ondergrond bestaat uit houtsnippers" - }, - "3": { - "then": "De ondergrond bestaat uit stoeptegels" - }, - "4": { - "then": "De ondergrond is asfalt" - }, - "5": { - "then": "De ondergrond is beton" - }, - "6": { - "then": "De ondergrond is onverhard" - }, - "7": { - "then": "De ondergrond is verhard" - } - }, - "question": "Wat is de ondergrond van deze speeltuin?
Indien er verschillende ondergronden zijn, neem de meest voorkomende", - "render": "De ondergrond is {surface}" - } - }, - "title": { - "mappings": { - "0": { - "then": "Speeltuin {name}" - } - }, - "render": "Speeltuin" - } - }, - "public_bookcase": { - "description": "Een straatkastje met boeken voor iedereen", - "filter": { - "2": { - "options": { - "0": { - "question": "Binnen of buiten" - } - } - } - }, - "name": "Boekenruilkastjes", - "presets": { - "0": { - "title": "Boekenruilkast" - } - }, - "tagRenderings": { - "bookcase-booktypes": { - "mappings": { - "0": { - "then": "Voornamelijk kinderboeken" - }, - "1": { - "then": "Voornamelijk boeken voor volwassenen" - }, - "2": { - "then": "Boeken voor zowel kinderen als volwassenen" - } - }, - "question": "Voor welke doelgroep zijn de meeste boeken in dit boekenruilkastje?" - }, - "bookcase-is-accessible": { - "mappings": { - "0": { - "then": "Publiek toegankelijk" - }, - "1": { - "then": "Enkel toegankelijk voor klanten" - } - }, - "question": "Is dit boekenruilkastje publiek toegankelijk?" - }, - "bookcase-is-indoors": { - "mappings": { - "0": { - "then": "Dit boekenruilkastje staat binnen" - }, - "1": { - "then": "Dit boekenruilkastje staat buiten" - }, - "2": { - "then": "Dit boekenruilkastje staat buiten" - } - }, - "question": "Staat dit boekenruilkastje binnen of buiten?" - }, - "public_bookcase-brand": { - "mappings": { - "0": { - "then": "Deel van het netwerk 'Little Free Library'" - }, - "1": { - "then": "Dit boekenruilkastje maakt geen deel uit van een netwerk" - } - }, - "question": "Is dit boekenruilkastje deel van een netwerk?", - "render": "Dit boekenruilkastje is deel van het netwerk {brand}" - }, - "public_bookcase-capacity": { - "question": "Hoeveel boeken passen er in dit boekenruilkastje?", - "render": "Er passen {capacity} boeken" - }, - "public_bookcase-name": { - "mappings": { - "0": { - "then": "Dit boekenruilkastje heeft geen naam" - } - }, - "question": "Wat is de naam van dit boekenuilkastje?", - "render": "De naam van dit boekenruilkastje is {name}" - }, - "public_bookcase-operator": { - "question": "Wie is verantwoordelijk voor dit boekenruilkastje?", - "render": "Onderhouden door {operator}" - }, - "public_bookcase-ref": { - "mappings": { - "0": { - "then": "Dit boekenruilkastje maakt geen deel uit van een netwerk" - } - }, - "question": "Wat is het referentienummer van dit boekenruilkastje?", - "render": "Het referentienummer binnen {brand} is {ref}" - }, - "public_bookcase-start_date": { - "question": "Op welke dag werd dit boekenruilkastje geinstalleerd?", - "render": "Geplaatst op {start_date}" - }, - "public_bookcase-website": { - "question": "Is er een website over dit boekenruilkastje?", - "render": "Meer info op de website" - } - }, - "title": { - "mappings": { - "0": { - "then": "Boekenruilkast {name}" - } - }, - "render": "Boekenruilkast" - } - }, - "shops": { - "description": "Een winkel", - "name": "Winkel", - "presets": { - "0": { - "description": "Voeg een nieuwe winkel toe", - "title": "Winkel" - } - }, - "tagRenderings": { - "shops-email": { - "question": "Wat is het e-mailadres van deze winkel?", - "render": "{email}" - }, - "shops-name": { - "question": "Wat is de naam van deze winkel?" - }, - "shops-opening_hours": { - "question": "Wat zijn de openingsuren van deze winkel?", - "render": "{opening_hours_table(opening_hours)}" - }, - "shops-phone": { - "question": "Wat is het telefoonnummer?", - "render": "{phone}" - }, - "shops-shop": { - "mappings": { - "0": { - "then": "Gemakswinkel" - }, - "1": { - "then": "Supermarkt" - }, - "2": { - "then": "Kledingwinkel" - }, - "3": { - "then": "Kapper" - }, - "4": { - "then": "Bakkerij" - }, - "5": { - "then": "Autogarage" - }, - "6": { - "then": "Autodealer" - } - } - }, - "shops-website": { - "question": "Wat is de website van deze winkel?" - } - }, - "title": { - "render": "Winkel" - } - }, - "slow_roads": { - "name": "Paadjes, trage wegen en autoluwe straten", - "tagRenderings": { - "explanation": { - "mappings": { - "1": { - "then": "Dit is een brede, autovrije straat" - }, - "2": { - "then": "Dit is een voetpaadje" - }, - "3": { - "then": "Dit is een wegeltje of bospad" - }, - "4": { - "then": "Dit is een ruiterswegel" - }, - "5": { - "then": "Dit is een tractorspoor of weg om landbouwgrond te bereikken" - } - } - }, - "slow_roads-surface": { - "mappings": { - "0": { - "then": "De ondergrond is gras" - }, - "1": { - "then": "De ondergrond is aarde" - }, - "2": { - "then": "De ondergrond is onverhard" - }, - "3": { - "then": "De ondergrond is zand" - }, - "4": { - "then": "De ondergrond bestaat uit stoeptegels" - }, - "5": { - "then": "De ondergrond is asfalt" - }, - "6": { - "then": "De ondergrond is beton" - }, - "7": { - "then": "De ondergrond is verhard" - } - }, - "question": "Wat is de wegverharding van dit pad?", - "render": "De ondergrond is {surface}" - } - }, - "title": { - "mappings": { - "0": { - "then": "{name}" - }, - "1": { - "then": "Voetpad" - }, - "2": { - "then": "Fietspad" - }, - "3": { - "then": "Voetgangersstraat" - }, - "4": { - "then": "Woonerf" - } - }, - "render": "Trage weg" - } - }, - "sport_pitch": { - "description": "Een sportterrein", - "name": "Sportterrein", - "presets": { - "0": { - "title": "Ping-pong tafel" - }, - "1": { - "title": "Sportterrein" - } - }, - "tagRenderings": { - "sport-pitch-access": { - "mappings": { - "0": { - "then": "Publiek toegankelijk" - }, - "1": { - "then": "Beperkt toegankelijk (enkel na reservatie, tijdens bepaalde uren, ...)" - }, - "2": { - "then": "Enkel toegankelijk voor leden van de bijhorende sportclub" - }, - "3": { - "then": "Privaat en niet toegankelijk" - } - }, - "question": "Is dit sportterrein publiek toegankelijk?" - }, - "sport-pitch-reservation": { - "mappings": { - "0": { - "then": "Reserveren is verplicht om gebruik te maken van dit sportterrein" - }, - "1": { - "then": "Reserveren is sterk aangeraden om gebruik te maken van dit sportterrein" - }, - "2": { - "then": "Reserveren is mogelijk, maar geen voorwaarde" - }, - "3": { - "then": "Reserveren is niet mogelijk" - } - }, - "question": "Moet men reserveren om gebruik te maken van dit sportveld?" - }, - "sport_pitch-email": { - "question": "Wat is het email-adres van de bevoegde dienst of uitbater?" - }, - "sport_pitch-opening_hours": { - "mappings": { - "1": { - "then": "24/7 toegankelijk" - } - }, - "question": "Wanneer is dit sportveld toegankelijk?" - }, - "sport_pitch-phone": { - "question": "Wat is het telefoonnummer van de bevoegde dienst of uitbater?" - }, - "sport_pitch-sport": { - "mappings": { - "0": { - "then": "Hier kan men basketbal spelen" - }, - "1": { - "then": "Hier kan men voetbal spelen" - }, - "2": { - "then": "Dit is een pingpongtafel" - }, - "3": { - "then": "Hier kan men tennis spelen" - }, - "4": { - "then": "Hier kan men korfbal spelen" - }, - "5": { - "then": "Hier kan men basketbal beoefenen" - } - }, - "question": "Welke sporten kan men hier beoefenen?", - "render": "Hier kan men {sport} beoefenen" - }, - "sport_pitch-surface": { - "mappings": { - "0": { - "then": "De ondergrond is gras" - }, - "1": { - "then": "De ondergrond is zand" - }, - "2": { - "then": "De ondergrond bestaat uit stoeptegels" - }, - "3": { - "then": "De ondergrond is asfalt" - }, - "4": { - "then": "De ondergrond is beton" - } - }, - "question": "Wat is de ondergrond van dit sportveld?", - "render": "De ondergrond is {surface}" - } - }, - "title": { - "render": "Sportterrein" - } - }, - "street_lamps": { - "name": "Straatlantaarns", - "presets": { - "0": { - "title": "straatlantaarn" - } - }, - "tagRenderings": { - "colour": { - "mappings": { - "0": { - "then": "Deze lantaarn geeft wit licht" - }, - "1": { - "then": "Deze lantaarn geeft groen licht" - }, - "2": { - "then": "Deze lantaarn geeft oranje licht" - } - }, - "question": "Wat voor kleur licht geeft deze lantaarn?", - "render": "Deze lantaarn geeft {light:colour} licht" - }, - "count": { - "mappings": { - "0": { - "then": "Deze lantaarn heeft 1 lamp" - }, - "1": { - "then": "Deze lantaarn heeft 2 lampen" - } - }, - "question": "Hoeveel lampen heeft deze lantaarn?", - "render": "Deze lantaarn heeft {light:count} lampen" - }, - "direction": { - "question": "Waar is deze lamp heengericht?", - "render": "Deze lantaarn is gericht naar {light:direction}" - }, - "lamp_mount": { - "mappings": { - "0": { - "then": "Deze lantaarn zit boven op een rechte paal" - }, - "1": { - "then": "Deze lantaarn zit aan het eind van een gebogen paal" - } - }, - "question": "Hoe zit deze lantaarn aan de paal?" - }, - "lit": { - "mappings": { - "0": { - "then": "Deze lantaarn is 's nachts verlicht" - }, - "1": { - "then": "Deze lantaarn is 24/7 verlicht" - }, - "2": { - "then": "Deze lantaarn is verlicht op basis van beweging" - }, - "3": { - "then": "Deze lantaarn is verlicht op verzoek (bijv. met een drukknop)" - } - }, - "question": "Wanneer is deze lantaarn verlicht?" - }, - "method": { - "mappings": { - "0": { - "then": "Deze lantaarn is elektrisch verlicht" - }, - "1": { - "then": "Deze lantaarn gebruikt LEDs" - }, - "2": { - "then": "Deze lantaarn gebruikt gloeilampen" - }, - "3": { - "then": "Deze lantaarn gebruikt halogeen verlichting" - }, - "4": { - "then": "Deze lantaarn gebruikt gasontladingslampen (onbekend type)" - }, - "5": { - "then": "Deze lantaarn gebruikt een kwiklamp (enigszins blauwachtig)" - }, - "6": { - "then": "Deze lantaarn gebruikt metaalhalidelampen" - }, - "7": { - "then": "Deze lantaarn gebruikt fluorescentieverlichting (TL en spaarlamp)" - }, - "8": { - "then": "Deze lantaarn gebruikt natriumlampen (onbekend type)" - }, - "9": { - "then": "Deze lantaarn gebruikt lagedruknatriumlampen (monochroom oranje)" - }, - "10": { - "then": "Deze lantaarn gebruikt hogedruknatriumlampen (oranje met wit)" - }, - "11": { - "then": "Deze lantaarn wordt verlicht met gas" - } - }, - "question": "Wat voor verlichting gebruikt deze lantaarn?" - }, - "ref": { - "question": "Wat is het nummer van deze straatlantaarn?", - "render": "Deze straatlantaarn heeft het nummer {ref}" - }, - "support": { - "mappings": { - "0": { - "then": "Deze lantaarn hangt aan kabels" - }, - "1": { - "then": "Deze lantaarn hangt aan een plafond" - }, - "2": { - "then": "Deze lantaarn zit in de grond" - }, - "3": { - "then": "Deze lantaarn zit op een korte paal (meestal < 1.5m)" - }, - "4": { - "then": "Deze lantaarn zit op een paal" - }, - "5": { - "then": "Deze lantaarn hangt direct aan de muur" - }, - "6": { - "then": "Deze lantaarn hangt aan de muur met een metalen balk" - } - }, - "question": "Hoe is deze straatlantaarn gemonteerd?" - } - }, - "title": { - "mappings": { - "0": { - "then": "Straatlantaarn {ref}" - } - }, - "render": "Straatlantaarn" - } - }, - "surveillance_camera": { - "name": "Bewakingscamera's", - "tagRenderings": { - "Camera type: fixed; panning; dome": { - "mappings": { - "0": { - "then": "Een vaste camera" - }, - "1": { - "then": "Een dome (bolvormige camera die kan draaien)" - }, - "2": { - "then": "Een camera die (met een motor) van links naar rechts kan draaien" - } - }, - "question": "Wat voor soort camera is dit?" - }, - "Level": { - "question": "Op welke verdieping bevindt deze camera zich?", - "render": "Bevindt zich op verdieping {level}" - }, - "Operator": { - "question": "Wie beheert deze bewakingscamera?", - "render": "Beheer door {operator}" - }, - "Surveillance type: public, outdoor, indoor": { - "mappings": { - "0": { - "then": "Bewaking van de publieke ruilmte, dus een straat, een brug, een park, een plein, een stationsgebouw, een publiek toegankelijke gang of tunnel..." - }, - "1": { - "then": "Een buitenruimte met privaat karakter (zoals een privé-oprit, een parking, tankstation, ...)" - }, - "2": { - "then": "Een private binnenruimte wordt bewaakt, bv. een winkel, een parkeergarage, ..." - } - }, - "question": "Wat soort bewaking wordt hier uitgevoerd?" - }, - "Surveillance:zone": { - "mappings": { - "0": { - "then": "Bewaakt een parking" - }, - "1": { - "then": "Bewaakt het verkeer" - }, - "2": { - "then": "Bewaakt een ingang" - }, - "3": { - "then": "Bewaakt een gang" - }, - "4": { - "then": "Bewaakt een perron of bushalte" - }, - "5": { - "then": "Bewaakt een winkel" - } - }, - "question": "Wat wordt hier precies bewaakt?", - "render": "Bewaakt een {surveillance:zone}" - }, - "camera:mount": { - "mappings": { - "0": { - "then": "Deze camera hangt aan een muur" - }, - "1": { - "then": "Deze camera staat op een paal" - }, - "2": { - "then": "Deze camera hangt aan het plafond" - } - }, - "question": "Hoe is deze camera geplaatst?", - "render": "Montage: {camera:mount}" - }, - "camera_direction": { - "mappings": { - "0": { - "then": "Filmt in kompasrichting {direction}" - } - }, - "question": "In welke geografische richting filmt deze camera?", - "render": "Filmt in kompasrichting {camera:direction}" - }, - "is_indoor": { - "mappings": { - "0": { - "then": "Deze camera bevindt zich binnen" - }, - "1": { - "then": "Deze camera bevindt zich buiten" - }, - "2": { - "then": "Deze camera bevindt zich waarschijnlijk buiten" - } - }, - "question": "Bevindt de bewaakte publieke ruimte camera zich binnen of buiten?" - } - }, - "title": { - "render": "Bewakingscamera" - } - }, - "toilet": { - "filter": { - "0": { - "options": { - "0": { - "question": "Rolstoel toegankelijk" - } - } - }, - "1": { - "options": { - "0": { - "question": "Heeft een luiertafel" - } - } - }, - "2": { - "options": { - "0": { - "question": "Gratis toegankelijk" - } - } - }, - "3": { - "options": { - "0": { - "question": "Nu geopened" - } - } - } - }, - "name": "Toiletten", - "presets": { - "0": { - "description": "Een publieke toilet", - "title": "toilet" - }, - "1": { - "description": "Deze toiletten hebben op zijn minst één rolstoeltoegankelijke WC", - "title": "een rolstoeltoegankelijke toilet" - } - }, - "tagRenderings": { - "Opening-hours": { - "mappings": { - "0": { - "then": "Altijd open" - } - }, - "question": "Wanneer zijn deze toiletten open?" - }, - "toilet-access": { - "mappings": { - "0": { - "then": "Publiek toegankelijk" - }, - "1": { - "then": "Enkel toegang voor klanten" - }, - "2": { - "then": "Niet toegankelijk" - }, - "3": { - "then": "Toegankelijk na het vragen van de sleutel" - }, - "4": { - "then": "Publiek toegankelijk" - } - }, - "question": "Zijn deze toiletten publiek toegankelijk?", - "render": "Toegankelijkheid is {access}" - }, - "toilet-changing_table:location": { - "mappings": { - "0": { - "then": "De luiertafel bevindt zich in de vrouwentoiletten " - }, - "1": { - "then": "De luiertafel bevindt zich in de herentoiletten " - }, - "2": { - "then": "De luiertafel bevindt zich in de rolstoeltoegankelijke toilet " - }, - "3": { - "then": "De luiertafel bevindt zich in een daartoe voorziene kamer " - } - }, - "question": "Waar bevindt de luiertafel zich?", - "render": "De luiertafel bevindt zich in {changing_table:location}" - }, - "toilet-charge": { - "question": "Hoeveel moet men betalen om deze toiletten te gebruiken?", - "render": "De toiletten gebruiken kost {charge}" - }, - "toilet-handwashing": { - "mappings": { - "0": { - "then": "Deze toiletten hebben een lavabo waar men de handen kan wassen" - }, - "1": { - "then": "Deze toiletten hebben geen lavabo waar men de handen kan wassen" - } - }, - "question": "Hebben deze toiletten een lavabo om de handen te wassen?" - }, - "toilet-has-paper": { - "mappings": { - "0": { - "then": "Deze toilet is voorzien van toiletpapier" - }, - "1": { - "then": "Je moet je eigen toiletpapier meebrengen naar deze toilet" - } - }, - "question": "Moet je je eigen toiletpapier meenemen naar deze toilet?" - }, - "toilets-changing-table": { - "mappings": { - "0": { - "then": "Er is een luiertafel" - }, - "1": { - "then": "Geen luiertafel" - } - }, - "question": "Is er een luiertafel beschikbaar?" - }, - "toilets-fee": { - "mappings": { - "0": { - "then": "Men moet betalen om deze toiletten te gebruiken" - }, - "1": { - "then": "Gratis te gebruiken" - } - }, - "question": "Zijn deze toiletten gratis te gebruiken?" - }, - "toilets-type": { - "mappings": { - "0": { - "then": "Er zijn enkel WC's om op te zitten" - }, - "1": { - "then": "Er zijn enkel urinoirs" - }, - "2": { - "then": "Er zijn enkel hurktoiletten" - }, - "3": { - "then": "Er zijn zowel urinoirs als zittoiletten" - } - }, - "question": "Welke toiletten zijn dit?" - }, - "toilets-wheelchair": { - "mappings": { - "0": { - "then": "Er is een toilet voor rolstoelgebruikers" - }, - "1": { - "then": "Niet toegankelijk voor rolstoelgebruikers" - } - }, - "question": "Is er een rolstoeltoegankelijke toilet voorzien?" - } - }, - "title": { - "render": "Toilet" - } - }, - "trail": { - "description": "Aangeduide wandeltochten", - "name": "Wandeltochten", - "tagRenderings": { - "Color": { - "mappings": { - "0": { - "then": "Blauwe wandeling" - }, - "1": { - "then": "Rode wandeling" - }, - "2": { - "then": "Groene wandeling" - }, - "3": { - "then": "Gele wandeling" - } - }, - "question": "Welke kleur heeft deze wandeling?", - "render": "Deze wandeling heeft kleur {colour}" - }, - "Name": { - "question": "Wat is de naam van deze wandeling?", - "render": "Deze wandeling heet {name}" - }, - "Operator tag": { - "mappings": { - "0": { - "then": "Dit gebied wordt beheerd door Natuurpunt" - }, - "1": { - "then": "Dit gebied wordt beheerd door {operator}" - } - }, - "question": "Wie beheert deze wandeltocht?", - "render": "Beheer door {operator}" - }, - "Wheelchair access": { - "mappings": { - "0": { - "then": "deze wandeltocht is toegankelijk met de rolstoel" - }, - "1": { - "then": "deze wandeltocht is niet toegankelijk met de rolstoel" - } - }, - "question": "Is deze wandeling toegankelijk met de rolstoel?" - }, - "pushchair access": { - "mappings": { - "0": { - "then": "deze wandeltocht is toegankelijk met de buggy" - }, - "1": { - "then": "deze wandeltocht is niet toegankelijk met de buggy" - } - }, - "question": "Is deze wandeltocht toegankelijk met de buggy?" - }, - "trail-length": { - "render": "Deze wandeling is {_length:km} kilometer lang" - } - }, - "title": { - "render": "Wandeltocht" - } - }, - "tree_node": { - "name": "Boom", - "presets": { - "0": { - "description": "Een boom van een soort die blaadjes heeft, bijvoorbeeld eik of populier.", - "title": "Loofboom" - }, - "1": { - "description": "Een boom van een soort met naalden, bijvoorbeeld den of spar.", - "title": "Naaldboom" - }, - "2": { - "description": "Wanneer je niet zeker bent of het nu een loof- of naaldboom is.", - "title": "Boom" - } - }, - "tagRenderings": { - "tree-decidouous": { - "mappings": { - "0": { - "then": "Bladverliezend: de boom is een periode van het jaar kaal." - }, - "1": { - "then": "Groenblijvend." - } - }, - "question": "Is deze boom groenblijvend of bladverliezend?" - }, - "tree-denotation": { - "mappings": { - "0": { - "then": "De boom valt op door zijn grootte of prominente locatie. Hij is nuttig voor navigatie." - }, - "1": { - "then": "De boom is een natuurlijk monument, bijvoorbeeld doordat hij bijzonder oud of van een waardevolle soort is." - }, - "2": { - "then": "De boom wordt voor landbouwdoeleinden gebruikt, bijvoorbeeld in een boomgaard." - }, - "3": { - "then": "De boom staat in een park of dergelijke (begraafplaats, schoolterrein, …)." - }, - "4": { - "then": "De boom staat in de tuin bij een woning/flatgebouw." - }, - "5": { - "then": "Dit is een laanboom." - }, - "6": { - "then": "De boom staat in een woonkern." - }, - "7": { - "then": "De boom staat buiten een woonkern." - } - }, - "question": "Hoe significant is deze boom? Kies het eerste antwoord dat van toepassing is." - }, - "tree-height": { - "mappings": { - "0": { - "then": "Hoogte: {height} m" - } - }, - "render": "Hoogte: {height}" - }, - "tree-heritage": { - "mappings": { - "0": { - "then": "\"\"/ Erkend als houtig erfgoed door Onroerend Erfgoed Vlaanderen" - }, - "1": { - "then": "Erkend als natuurlijk erfgoed door Directie Cultureel Erfgoed Brussel" - }, - "2": { - "then": "Erkend als erfgoed door een andere organisatie" - }, - "3": { - "then": "Niet erkend als erfgoed" - }, - "4": { - "then": "Erkend als erfgoed door een andere organisatie" - } - }, - "question": "Is deze boom erkend als erfgoed?" - }, - "tree-leaf_type": { - "mappings": { - "0": { - "then": "\"\"/ Loofboom" - }, - "1": { - "then": "\"\"/ Naaldboom" - }, - "2": { - "then": "\"\"/ Permanent bladloos" - } - }, - "question": "Is dit een naald- of loofboom?" - }, - "tree_node-name": { - "mappings": { - "0": { - "then": "De boom heeft geen naam." - } - }, - "question": "Heeft de boom een naam?", - "render": "Naam: {name}" - }, - "tree_node-ref:OnroerendErfgoed": { - "question": "Wat is het ID uitgegeven door Onroerend Erfgoed Vlaanderen?", - "render": "\"\"/ Onroerend Erfgoed-ID: {ref:OnroerendErfgoed}" - }, - "tree_node-wikidata": { - "question": "Wat is het Wikidata-ID van deze boom?", - "render": "\"\"/ Wikidata: {wikidata}" - } - }, - "title": { - "mappings": { - "0": { - "then": "{name}" - } - }, - "render": "Boom" - } - }, - "viewpoint": { - "description": "Een mooi uitzicht - ideaal om een foto toe te voegen wanneer iets niet in een andere categorie past", - "name": "Uitzicht", - "presets": { - "0": { - "title": "Uitzicht" - } - }, - "tagRenderings": { - "viewpoint-description": { - "question": "Zijn er bijzonderheden die je wilt toevoegen?" - } - }, - "title": { - "render": "Uitzicht" - } - }, - "village_green": { - "name": "Speelweide", - "title": { - "mappings": { - "0": { - "then": "{name}" - } - }, - "render": "Speelweide" - } - }, - "visitor_information_centre": { - "description": "Een bezoekerscentrum biedt informatie over een specifieke attractie of bezienswaardigheid waar het is gevestigd.", - "name": "Bezoekerscentrum", - "title": { - "mappings": { - "0": { - "then": "{name:nl}" - }, - "1": { - "then": "{name}" - } - }, - "render": "{name}" - } - }, - "waste_basket": { - "description": "Dit is een publieke vuilnisbak waar je je afval kan weggooien.", - "mapRendering": { - "0": { - "iconSize": { - "mappings": { + "bench": { + "description": "Deze laag toont zitbanken en enkele vragen over deze zitbanken", + "name": "Zitbanken", + "presets": { "0": { - "then": "Vuilnisbak" + "title": "zitbank" } - } + }, + "tagRenderings": { + "bench-backrest": { + "mappings": { + "0": { + "then": "Heeft een rugleuning" + }, + "1": { + "then": "Rugleuning ontbreekt" + } + }, + "question": "Heeft deze zitbank een rugleuning?" + }, + "bench-colour": { + "mappings": { + "0": { + "then": "De kleur is bruin" + }, + "1": { + "then": "De kleur is groen" + }, + "2": { + "then": "De kleur is grijs" + }, + "3": { + "then": "De kleur is wit" + }, + "4": { + "then": "De kleur is rood" + }, + "5": { + "then": "De kleur is zwart" + }, + "6": { + "then": "De kleur is blauw" + }, + "7": { + "then": "De kleur is geel" + } + }, + "question": "Welke kleur heeft deze zitbank?", + "render": "Kleur: {colour}" + }, + "bench-direction": { + "question": "In welke richting kijk je wanneer je op deze zitbank zit?", + "render": "Wanneer je op deze bank zit, dan kijk je in {direction}°." + }, + "bench-material": { + "mappings": { + "0": { + "then": "Gemaakt uit hout" + }, + "1": { + "then": "Gemaakt uit metaal" + }, + "2": { + "then": "Gemaakt uit steen" + }, + "3": { + "then": "Gemaakt uit beton" + }, + "4": { + "then": "Gemaakt uit plastiek" + }, + "5": { + "then": "Gemaakt uit staal" + } + }, + "question": "Uit welk materiaal is het zitgedeelte van deze zitbank gemaakt?", + "render": "Gemaakt van {material}" + }, + "bench-seats": { + "question": "Hoeveel zitplaatsen heeft deze bank?", + "render": "{seats} zitplaatsen" + }, + "bench-survey:date": { + "question": "Wanneer is deze laatste bank laatst gesurveyed?", + "render": "Deze bank is laatst gesurveyd op {survey:date}" + } + }, + "title": { + "render": "Zitbank" } - } }, - "name": "Vuilnisbak", - "presets": { - "0": { - "title": "Vuilnisbak" - } - }, - "tagRenderings": { - "dispensing_dog_bags": { - "mappings": { - "0": { - "then": "Deze vuilnisbak heeft een verdeler voor hondenpoepzakjes" - }, - "1": { - "then": "Deze vuilnisbak heeft geenverdeler voor hondenpoepzakjes" - }, - "2": { - "then": "Deze vuilnisbaak heeft waarschijnlijk geen verdeler voor hondenpoepzakjes" - } + "bench_at_pt": { + "description": "Een laag die stopplaatsen van openbaar vervoer toont waar er een zitbank is", + "name": "Zitbanken aan bushaltes", + "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?" + }, + "bench_at_pt-name": { + "render": "{name}" + } }, - "question": "Heeft deze vuilnisbak een verdeler voor hondenpoepzakjes?" - }, - "waste-basket-waste-types": { - "mappings": { - "0": { - "then": "Een vuilnisbak voor zwerfvuil" - }, - "1": { - "then": "Een vuilnisbak voor zwerfvuil" - }, - "2": { - "then": "Een vuilnisbak specifiek voor hondenuitwerpselen" - }, - "3": { - "then": "Een vuilnisbak voor sigarettenpeuken" - }, - "4": { - "then": "Een vuilnisbak voor (vervallen) medicatie en drugs" - }, - "5": { - "then": "Een vuilnisbak voor injectienaalden en andere scherpe voorwerpen" - } - }, - "question": "Wat voor soort vuilnisbak is dit?" - } - }, - "title": { - "render": "Vuilnisbak" - } - }, - "watermill": { - "description": "Watermolens", - "name": "Watermolens", - "tagRenderings": { - "Access tag": { - "mappings": { - "0": { - "then": "Vrij toegankelijk" - }, - "1": { - "then": "Niet toegankelijk" - }, - "2": { - "then": "Niet toegankelijk, want privégebied" - }, - "3": { - "then": "Toegankelijk, ondanks dat het privegebied is" - }, - "4": { - "then": "Enkel toegankelijk met een gids of tijdens een activiteit" - }, - "5": { - "then": "Toegankelijk mits betaling" - } - }, - "question": "Is dit gebied toegankelijk?", - "render": "De toegankelijkheid van dit gebied is: {access:description}" - }, - "Operator tag": { - "mappings": { - "0": { - "then": "Dit gebied wordt beheerd door Natuurpunt" - }, - "1": { - "then": "Dit gebied wordt beheerd door {operator}" - } - }, - "question": "Wie beheert dit pad?", - "render": "Beheer door {operator}" - } - }, - "title": { - "mappings": { - "0": { - "then": "{name:nl}" - }, - "1": { - "then": "{name}" + "title": { + "mappings": { + "0": { + "then": "Zitbank aan een bushalte" + }, + "1": { + "then": "Zitbank in een schuilhokje" + } + }, + "render": "Zitbank" + } + }, + "bicycle_library": { + "description": "Een plaats waar men voor langere tijd een fiets kan lenen", + "name": "Fietsbibliotheek", + "presets": { + "0": { + "description": "Een fietsbieb heeft een collectie fietsen die leden mogen lenen", + "title": "Bicycle library" + } + }, + "tagRenderings": { + "bicycle-library-target-group": { + "mappings": { + "0": { + "then": "Aanbod voor kinderen" + }, + "1": { + "then": "Aanbod voor volwassenen" + }, + "2": { + "then": "Aanbod voor personen met een handicap" + } + }, + "question": "Voor wie worden hier fietsen aangeboden?" + }, + "bicycle_library-charge": { + "mappings": { + "0": { + "then": "Een fiets huren is gratis" + }, + "1": { + "then": "Een fiets huren kost €20/jaar en €20 waarborg" + } + }, + "question": "Hoeveel kost het huren van een fiets?", + "render": "Een fiets huren kost {charge}" + }, + "bicycle_library-name": { + "question": "Wat is de naam van deze fietsbieb?", + "render": "Deze fietsbieb heet {name}" + } + }, + "title": { + "render": "Fietsbibliotheek" + } + }, + "bicycle_rental": { + "description": "Fietsverhuustations", + "name": "Fietsverhuur", + "presets": { + "0": { + "description": "Een bemande winkel die focust op fietsverhuur", + "title": "fietsverhuurzaak" + }, + "1": { + "title": "fietsverhuur" + } + }, + "tagRenderings": { + "8": { + "renderings": { + "0": { + "question": "Hoeveel type_plural kunnen hier uitgeleend worden?", + "render": "{capacity:bicycle_type} type_plural kunnen hier uitgeleend worden" + } + }, + "rewrite": { + "into": { + "0": { + "1": "Stadsfietsen" + }, + "1": { + "1": "elektrische fietsen" + }, + "2": { + "1": "Kinderfietsen" + }, + "3": { + "1": "BMX-fietsen" + }, + "4": { + "1": "mountainbike" + }, + "5": { + "1": "Fietstassen" + } + } + } + }, + "bicycle-types": { + "mappings": { + "0": { + "then": "Gewone stadsfietsen kunnen hier gehuurd worden" + }, + "1": { + "then": "Elektrische fietsen kunnen hier gehuurd worden" + }, + "2": { + "then": "BMX-fietsen kunnen hier gehuurd worden" + }, + "3": { + "then": "Mountainbikes kunnen hier gehuurd worden" + }, + "4": { + "then": "Kinderfietsen kunnen hier gehuurd worden" + } + }, + "question": "Wat voor soort fietsen en fietstoebehren worden hier verhuurd?", + "render": "{rental} wordt hier uitgeleend" + }, + "bicycle_rental_type": { + "mappings": { + "0": { + "then": "Dit is een zaak die focust op fietsverhuur" + }, + "1": { + "then": "Dit is een zaak die verschillende voorwerpen en/of voertuigen verhuurt, waaronder ook fietsen; al zijn fietsen niet de hoofdfocus" + }, + "2": { + "then": "Dit is een fietsenmaker of fietswinkel die ook fietsen veruurt" + }, + "3": { + "then": "Dit is een docking station waar de fietsen mechanisch in een grotere structuur worden vastgemaakt" + }, + "4": { + "then": "Hier is een machine die fietssleutels verdeelt en terugneemt, eventueel na aanmelden of betaling. De fietsen staan in de buurt geparkeerd" + }, + "5": { + "then": "Dit is een afzetpunt: een parking met duidelijke signalisatie waar (enkel) fietsen van deze fietsverhuur gezet worden" + } + }, + "question": "Wat voor fietsverhuur is dit?" + } + }, + "title": { + "mappings": { + "0": { + "then": "{name}" + } + }, + "render": "Fietsverhuur" + } + }, + "bicycle_tube_vending_machine": { + "description": "Een laag met verkoopsautomaten met binnenbanden voor fietsen (dit kan een automaat zijn met énkel fietsbanden, of een gewone automaat met fietsbanden en andere fietsaccessoires zoals lichten, handschoenen, sloten,...)", + "name": "Fietsbanden-verkoopsautomaat", + "presets": { + "0": { + "title": "Fietsbanden-verkoopsautomaat" + } + }, + "tagRenderings": { + "Still in use?": { + "mappings": { + "0": { + "then": "Deze verkoopsautomaat werkt" + }, + "1": { + "then": "Deze verkoopsautomaat is kapot" + }, + "2": { + "then": "Deze verkoopsautomaat is uitgeschakeld" + } + }, + "question": "Is deze verkoopsautomaat nog steeds werkende?", + "render": "Deze verkoopsautomaat is {operational_status}" + } + }, + "title": { + "render": "Fietsbanden-verkoopsautomaat" + } + }, + "bike_cafe": { + "description": "Een fietscafé is een café dat gericht is op fietsers, bijvoorbeeld omdat het een fietspomp heeft, fietsgerelateerde decoratie heeft enzovoorts.", + "name": "Fietscafé", + "presets": { + "0": { + "title": "Fietscafé" + } + }, + "tagRenderings": { + "bike_cafe-bike-pump": { + "mappings": { + "0": { + "then": "Dit fietscafé biedt een fietspomp aan voor eender wie" + }, + "1": { + "then": "Dit fietscafé biedt geen fietspomp aan voor iedereen" + } + }, + "question": "Biedt dit fietscafé een fietspomp aan voor iedereen?" + }, + "bike_cafe-email": { + "question": "Wat is het email-adres van {name}?" + }, + "bike_cafe-name": { + "question": "Wat is de naam van dit fietscafé?", + "render": "Dit fietscafé heet {name}" + }, + "bike_cafe-opening_hours": { + "question": "Wanneer is dit fietscafé geopend?" + }, + "bike_cafe-phone": { + "question": "Wat is het telefoonnummer van {name}?" + }, + "bike_cafe-repair-service": { + "mappings": { + "0": { + "then": "Dit fietscafé herstelt fietsen" + }, + "1": { + "then": "Dit fietscafé herstelt geen fietsen" + } + }, + "question": "Herstelt dit fietscafé fietsen?" + }, + "bike_cafe-repair-tools": { + "mappings": { + "0": { + "then": "Dit fietscafé biedt gereedschap aan om je fiets zelf te herstellen" + }, + "1": { + "then": "Dit fietscafé biedt geen gereedschap aan om je fiets zelf te herstellen" + } + }, + "question": "Biedt dit fietscafé gereedschap aan om je fiets zelf te herstellen?" + }, + "bike_cafe-website": { + "question": "Wat is de website van {name}?" + } + }, + "title": { + "mappings": { + "0": { + "then": "Fietscafé {name}" + } + }, + "render": "Fietscafé" + } + }, + "bike_cleaning": { + "description": "Een laag die plaatsen toont waar je je fiets kunt wassen", + "name": "Fietsschoonmaakpunt", + "presets": { + "0": { + "title": "Fietsschoonmaakpunt" + } + }, + "tagRenderings": { + "bike_cleaning-charge": { + "mappings": { + "0": { + "then": "Gratis fietsschoonmaakpunt" + }, + "1": { + "then": "Gratis te gebruiken" + }, + "2": { + "then": "Je moet betalen voor het fietsschoonmaakpunt" + } + }, + "question": "Hoeveel kost het gebruik van het fietsschoonmaakpunt?", + "render": "Het gebruik van het fietsschoonmaakpunt kost {charge}" + }, + "bike_cleaning-service:bicycle:cleaning:charge": { + "mappings": { + "0": { + "then": "Het fietsschoonmaakpunt is gratis" + }, + "1": { + "then": "Gratis te gebruiken" + }, + "2": { + "then": "Het fietsschoonmaakpunt is betalend, maar de prijs is onbekend" + } + }, + "question": "Hoeveel kost het gebruik van het fietsschoonmaakpunt?", + "render": "Het gebruik van het fietsschoonmaakpunt kost {service:bicycle:cleaning:charge}" + } + }, + "title": { + "mappings": { + "0": { + "then": "Fietsschoonmaakpunt {name}" + } + }, + "render": "Fietsschoonmaakpunt" + } + }, + "bike_parking": { + "description": "Een laag die toont waar je je fiets kunt parkeren", + "name": "Fietsparking", + "presets": { + "0": { + "title": "Fietsparking" + } + }, + "tagRenderings": { + "Access": { + "mappings": { + "0": { + "then": "Publiek toegankelijke fietsenstalling" + }, + "1": { + "then": "Klanten van de zaak of winkel" + }, + "2": { + "then": "Private fietsenstalling van een school, een bedrijf, ..." + } + }, + "question": "Wie mag er deze fietsenstalling gebruiken?", + "render": "{access}" + }, + "Bicycle parking type": { + "mappings": { + "0": { + "then": "Nietjes" + }, + "1": { + "then": "Wielrek/lussen" + }, + "2": { + "then": "Stuurhouder" + }, + "3": { + "then": "Rek" + }, + "4": { + "then": "Dubbel (twee verdiepingen)" + }, + "5": { + "then": "Schuur" + }, + "6": { + "then": "Paal met ring" + }, + "7": { + "then": "Een oppervlakte die gemarkeerd is om fietsen te parkeren" + } + }, + "question": "Van welk type is deze fietsparking?", + "render": "Dit is een fietsparking van het type: {bicycle_parking}" + }, + "Capacity": { + "question": "Hoeveel fietsen kunnen in deze fietsparking (inclusief potentiëel bakfietsen)?", + "render": "Plaats voor {capacity} fietsen" + }, + "Cargo bike capacity?": { + "question": "Voor hoeveel bakfietsen heeft deze fietsparking plaats?", + "render": "Deze parking heeft plaats voor {capacity:cargo_bike} bakfietsen" + }, + "Cargo bike spaces?": { + "mappings": { + "0": { + "then": "Deze parking heeft plaats voor bakfietsen" + }, + "1": { + "then": "Er zijn speciale plaatsen voorzien voor bakfietsen." + }, + "2": { + "then": "Je mag hier geen bakfietsen parkeren" + } + }, + "question": "Heeft deze fietsparking plaats voor bakfietsen?" + }, + "Is covered?": { + "mappings": { + "0": { + "then": "Deze parking is overdekt (er is een afdak)" + }, + "1": { + "then": "Deze parking is niet overdekt" + } + }, + "question": "Is deze parking overdekt? Selecteer ook \"overdekt\" voor fietsparkings binnen een gebouw." + }, + "Underground?": { + "mappings": { + "0": { + "then": "Ondergrondse parking" + }, + "1": { + "then": "Parking op de begane grond" + }, + "2": { + "then": "Dakparking" + }, + "3": { + "then": "Parking op de begane grond" + } + }, + "question": "Wat is de relatieve locatie van deze parking??" + } + }, + "title": { + "render": "Fietsparking" + } + }, + "bike_repair_station": { + "description": "Deze laag toont fietspompen en herstelpunten voor fietsen", + "name": "Fietspomp and fietsherstel", + "presets": { + "0": { + "description": "Een fietspomp in de publieke ruimte zonder extra gereedschap. De fietspomp in je kelder telt dus niet.", + "title": "fietspomp" + }, + "1": { + "description": "Een fietspomp en gereedschap om je fiets te herstellen in de publieke ruimte. Deze zijn op een vastgemaakt, bijvoorbeeld aan een paal.", + "title": "herstelpunt en pomp" + }, + "2": { + "description": "Gereedschap om je fiets te herstellen in de publieke ruimte (zonder pomp). Deze zijn op een vastgemaakt, bijvoorbeeld aan een paal.", + "title": "herstelpunt zonder pomp" + } + }, + "tagRenderings": { + "Email maintainer": { + "render": "Rapporteer deze fietspomp als kapot" + }, + "Operational status": { + "mappings": { + "0": { + "then": "De fietspomp is kapot" + }, + "1": { + "then": "De fietspomp werkt nog" + } + }, + "question": "Werkt de fietspomp nog?" + }, + "access": { + "mappings": { + "0": { + "then": "Publiek toegankelijk" + }, + "1": { + "then": "Publiek toegankelijk" + }, + "2": { + "then": "Enkel voor klanten van de bijhorende zaak" + }, + "3": { + "then": "Niet publiek toegankelijk" + }, + "4": { + "then": "Niet publiek toegankelijk" + } + }, + "question": "Wie kan dit herstelpunt gebruiken?" + }, + "bike_repair_station-available-services": { + "mappings": { + "0": { + "then": "Er is enkel een pomp aanwezig" + }, + "1": { + "then": "Er is enkel gereedschap aanwezig (schroevendraaier, tang...)" + }, + "2": { + "then": "Er is zowel een pomp als gereedschap aanwezig" + } + }, + "question": "Welke functies biedt locatie?" + }, + "bike_repair_station-bike-chain-tool": { + "mappings": { + "0": { + "then": "Er is een reparatieset voor je ketting" + }, + "1": { + "then": "Er is geen reparatieset voor je ketting" + } + }, + "question": "Heeft dit herstelpunt een speciale reparatieset voor je ketting?" + }, + "bike_repair_station-bike-stand": { + "mappings": { + "0": { + "then": "Er is een haak of standaard" + }, + "1": { + "then": "Er is geen haak of standaard" + } + }, + "question": "Heeft dit herstelpunt een haak of standaard om je fiets op te hangen/zetten?" + }, + "bike_repair_station-electrical_pump": { + "mappings": { + "0": { + "then": "Manuele pomp" + }, + "1": { + "then": "Elektrische pomp" + } + }, + "question": "Is dit een elektrische fietspomp?" + }, + "bike_repair_station-email": { + "question": "Wat is het email-adres van de beheerder?" + }, + "bike_repair_station-manometer": { + "mappings": { + "0": { + "then": "Er is een luchtdrukmeter" + }, + "1": { + "then": "Er is geen luchtdrukmeter" + }, + "2": { + "then": "Er is een luchtdrukmeter maar die is momenteel defect" + } + }, + "question": "Heeft deze pomp een luchtdrukmeter?" + }, + "bike_repair_station-opening_hours": { + "mappings": { + "0": { + "then": "Dag en nacht open" + } + }, + "question": "Wanneer is dit fietsherstelpunt open?" + }, + "bike_repair_station-operator": { + "question": "Wie beheert deze fietspomp?", + "render": "Beheer door {operator}" + }, + "bike_repair_station-phone": { + "question": "Wat is het telefoonnummer van de beheerder?" + }, + "bike_repair_station-valves": { + "mappings": { + "0": { + "then": "Sclaverand (ook gekend als Presta)" + }, + "1": { + "then": "Dunlop" + }, + "2": { + "then": "Schrader (auto's)" + } + }, + "question": "Welke ventielen werken er met de pomp?", + "render": "Deze pomp werkt met de volgende ventielen: {valves}" + } + }, + "title": { + "mappings": { + "0": { + "then": "Herstelpunt" + }, + "1": { + "then": "Herstelpunt" + }, + "2": { + "then": "Kapotte fietspomp" + }, + "3": { + "then": "Fietspomp {name}" + }, + "4": { + "then": "Fietspomp" + } + }, + "render": "Herstelpunt met pomp" + } + }, + "bike_shop": { + "description": "Een winkel die hoofdzakelijk fietsen en fietstoebehoren verkoopt", + "name": "Fietszaak", + "presets": { + "0": { + "title": "Fietszaak" + } + }, + "tagRenderings": { + "bike_repair_bike-pump-service": { + "mappings": { + "0": { + "then": "Deze winkel biedt een fietspomp aan voor iedereen" + }, + "1": { + "then": "Deze winkel biedt geen fietspomp aan voor eender wie" + }, + "2": { + "then": "Er is een fietspomp, deze is apart aangeduid" + } + }, + "question": "Biedt deze winkel een fietspomp aan voor iedereen?" + }, + "bike_repair_bike-wash": { + "mappings": { + "0": { + "then": "Deze winkel biedt fietsschoonmaak aan" + }, + "1": { + "then": "Deze winkel biedt een installatie aan om zelf je fiets schoon te maken" + }, + "2": { + "then": "Deze winkel biedt geen fietsschoonmaak aan" + } + }, + "question": "Biedt deze winkel een fietsschoonmaak aan?" + }, + "bike_repair_rents-bikes": { + "mappings": { + "0": { + "then": "Deze winkel verhuurt fietsen" + }, + "1": { + "then": "Deze winkel verhuurt geen fietsen" + } + }, + "question": "Verhuurt deze winkel fietsen?" + }, + "bike_repair_repairs-bikes": { + "mappings": { + "0": { + "then": "Deze winkel herstelt fietsen" + }, + "1": { + "then": "Deze winkel herstelt geen fietsen" + }, + "2": { + "then": "Deze winkel herstelt enkel fietsen die hier werden gekocht" + }, + "3": { + "then": "Deze winkel herstelt enkel fietsen van een bepaald merk" + } + }, + "question": "Herstelt deze winkel fietsen?" + }, + "bike_repair_second-hand-bikes": { + "mappings": { + "0": { + "then": "Deze winkel verkoopt tweedehands fietsen" + }, + "1": { + "then": "Deze winkel verkoopt geen tweedehands fietsen" + }, + "2": { + "then": "Deze winkel verkoopt enkel tweedehands fietsen" + } + }, + "question": "Verkoopt deze winkel tweedehands fietsen?" + }, + "bike_repair_sells-bikes": { + "mappings": { + "0": { + "then": "Deze winkel verkoopt fietsen" + }, + "1": { + "then": "Deze winkel verkoopt geen fietsen" + } + }, + "question": "Verkoopt deze fietszaak fietsen?" + }, + "bike_repair_tools-service": { + "mappings": { + "0": { + "then": "Deze winkel biedt gereedschap aan om je fiets zelf te herstellen" + }, + "1": { + "then": "Deze winkel biedt geen gereedschap aan om je fiets zelf te herstellen" + }, + "2": { + "then": "Het gereedschap aan om je fiets zelf te herstellen is enkel voor als je de fiets er kocht of huurt" + } + }, + "question": "Biedt deze winkel gereedschap aan om je fiets zelf te herstellen?" + }, + "bike_shop-email": { + "question": "Wat is het email-adres van {name}?" + }, + "bike_shop-is-bicycle_shop": { + "render": "Deze winkel verkoopt {shop} en heeft fiets-gerelateerde activiteiten." + }, + "bike_shop-name": { + "question": "Wat is de naam van deze fietszaak?", + "render": "Deze fietszaak heet {name}" + }, + "bike_shop-phone": { + "question": "Wat is het telefoonnummer van {name}?" + }, + "bike_shop-website": { + "question": "Wat is de website van {name}?" + } + }, + "title": { + "mappings": { + "0": { + "then": "Sportwinkel {name}" + }, + "2": { + "then": "Fietsverhuur {name}" + }, + "3": { + "then": "Fietsenmaker {name}" + }, + "4": { + "then": "Fietswinkel {name}" + }, + "5": { + "then": "Fietszaak {name}" + } + }, + "render": "Fietszaak" + } + }, + "bike_themed_object": { + "description": "Een laag met fietsgerelateerde diensten, die in geen enkele andere laag konden ondergebracht worden", + "name": "Fietsgerelateerd object", + "title": { + "mappings": { + "1": { + "then": "Wielerpiste" + } + }, + "render": "Fietsgerelateerd object" + } + }, + "binocular": { + "description": "Verrekijkers", + "name": "Verrekijkers", + "presets": { + "0": { + "description": "Een telescoop of verrekijker die op een vaste plaats gemonteerd staat waar iedereen door mag kijken. ", + "title": "verrekijker" + } + }, + "tagRenderings": { + "binocular-charge": { + "mappings": { + "0": { + "then": "Gratis te gebruiken" + } + }, + "question": "Hoeveel moet men betalen om deze verrekijker te gebruiken?", + "render": "Deze verrekijker gebruiken kost {charge}" + }, + "binocular-direction": { + "question": "Welke richting kijkt men uit als men door deze verrekijker kijkt?", + "render": "Kijkt richting {direction}°" + } + }, + "title": { + "render": "Verrekijker" + } + }, + "birdhide": { + "description": "Een vogelkijkhut", + "filter": { + "0": { + "options": { + "0": { + "question": "Rolstoeltoegankelijk" + } + } + }, + "1": { + "options": { + "0": { + "question": "Enkel overdekte kijkhutten" + } + } + } + }, + "name": "Vogelkijkhutten", + "presets": { + "0": { + "description": "Een overdekte hut waarbinnen er warm en droog naar vogels gekeken kan worden", + "title": "vogelkijkhut" + }, + "1": { + "description": "Een vogelkijkwand waarachter men kan staan om vogels te kijken", + "title": "vogelkijkwand" + } + }, + "size": { + "render": "40,40,center" + }, + "stroke": { + "render": "3" + }, + "tagRenderings": { + "bird-hide-shelter-or-wall": { + "mappings": { + "0": { + "then": "Vogelkijkwand" + }, + "1": { + "then": "Vogelkijkhut" + }, + "2": { + "then": "Vogelkijktoren" + }, + "3": { + "then": "Vogelkijkhut" + } + }, + "question": "Is dit een kijkwand of kijkhut?" + }, + "bird-hide-wheelchair": { + "mappings": { + "0": { + "then": "Er zijn speciale voorzieningen voor rolstoelen" + }, + "1": { + "then": "Een rolstoel raakt er vlot" + }, + "2": { + "then": "Je kan er raken met een rolstoel, maar het is niet makkelijk" + }, + "3": { + "then": "Niet rolstoeltoegankelijk" + } + }, + "question": "Is deze vogelkijkplaats rolstoeltoegankelijk?" + }, + "birdhide-operator": { + "mappings": { + "0": { + "then": "Beheer door Natuurpunt" + }, + "1": { + "then": "Beheer door het Agentschap Natuur en Bos " + } + }, + "question": "Wie beheert deze vogelkijkplaats?", + "render": "Beheer door {operator}" + } + }, + "title": { + "mappings": { + "0": { + "then": "{name}" + }, + "1": { + "then": "Vogelkijkhut {name}" + }, + "2": { + "then": "Vogelkijkwand {name}" + } + }, + "render": "Vogelkijkplaats" + } + }, + "cafe_pub": { + "description": "Een laag die kroegen en koffiehuizen toont waar je iets kunt drinken. De laag zal je enkele vragen stellen", + "filter": { + "0": { + "options": { + "0": { + "question": "Nu geopened" + } + } + } + }, + "name": "Cafés", + "presets": { + "0": { + "description": "Dit is een bruin café of een kroeg waar voornamelijk bier wordt gedronken. De inrichting is typisch gezellig met veel houtwerk ", + "title": "bruin cafe of kroeg" + }, + "1": { + "description": "Dit is een bar waar men ter plaatse alcoholische drank nuttigt. De inrichting is typisch modern en commercieel, soms met lichtinstallatie en feestmuziek", + "title": "bar" + }, + "2": { + "description": "Dit is een cafe - een plaats waar men rustig kan zitten om een thee, koffie of alcoholische drank te nuttigen.", + "title": "cafe" + } + }, + "tagRenderings": { + "Classification": { + "mappings": { + "0": { + "then": "Dit is een bruin café of een kroeg waar voornamelijk bier wordt gedronken. De inrichting is typisch gezellig met veel houtwerk " + }, + "1": { + "then": "Dit is een bar waar men ter plaatse alcoholische drank nuttigt. De inrichting is typisch modern en commercieel, soms met lichtinstallatie en feestmuziek" + }, + "2": { + "then": "Dit is een cafe - een plaats waar men rustig kan zitten om een thee, koffie of alcoholische drank te nuttigen." + }, + "3": { + "then": "Dit is een restaurant waar men een maaltijd geserveerd krijgt" + }, + "4": { + "then": "Een open ruimte waar bier geserveerd wordt. Typisch in Duitsland" + } + }, + "question": "Welk soort café is dit?" + }, + "Name": { + "question": "Wat is de naam van dit café?", + "render": "De naam van dit café is {name}" + } + }, + "title": { + "mappings": { + "0": { + "then": "{name}" + } + }, + "render": "Café" + } + }, + "charging_station": { + "description": "Oplaadpunten", + "filter": { + "0": { + "options": { + "0": { + "question": "Alle voertuigen" + }, + "1": { + "question": "Oplaadpunten voor fietsen" + }, + "2": { + "question": "Oplaadpunten voor auto's" + } + } + }, + "1": { + "options": { + "0": { + "question": "Enkel werkende oplaadpunten" + } + } + }, + "2": { + "options": { + "0": { + "question": "Alle types" + }, + "1": { + "question": "Heeft een
Schuko stekker zonder aardingspin (CEE7/4 type F)
" + }, + "2": { + "question": "Heeft een
Europese stekker met aardingspin (CEE7/4 type E)
" + }, + "3": { + "question": "Heeft een
Chademo
" + }, + "4": { + "question": "Heeft een
Type 1 met kabel (J1772)
" + }, + "5": { + "question": "Heeft een
Type 1 zonder kabel (J1772)
" + }, + "6": { + "question": "Heeft een
Type 1 CCS (ook gekend als Type 1 Combo)
" + }, + "7": { + "question": "Heeft een
Tesla Supercharger
" + }, + "8": { + "question": "Heeft een
Type 2 (mennekes)
" + }, + "9": { + "question": "Heeft een
Type 2 CCS (mennekes)
" + }, + "10": { + "question": "Heeft een
Type 2 met kabel (J1772)
" + }, + "11": { + "question": "Heeft een
Tesla Supercharger CCS (een type2 CCS met Tesla-logo)
" + }, + "12": { + "question": "Heeft een
Tesla Supercharger (destination)
" + }, + "13": { + "question": "Heeft een
Tesla supercharger (destination) (Een Type 2 met kabel en Tesla-logo)
" + }, + "14": { + "question": "Heeft een
USB om GSMs en kleine electronica op te laden
" + }, + "15": { + "question": "Heeft een
Bosch Active Connect met 3 pinnen aan een kabel
" + }, + "16": { + "question": "Heeft een
Bosch Active Connect met 5 pinnen aan een kabel
" + } + } + } + }, + "name": "Oplaadpunten", + "presets": { + "0": { + "title": "oplaadpunt voor elektrische fietsen" + }, + "1": { + "title": "oplaadstation voor elektrische auto's" + } + }, + "tagRenderings": { + "Auth phone": { + "question": "Wat is het telefoonnummer dat men moet bellen of SMS'en om zich aan te melden?", + "render": "Aanmelden door te bellen of te SMS'en naar {authentication:phone_call:number}" + }, + "Authentication": { + "mappings": { + "0": { + "then": "Aanmelden met een lidkaart is mogelijk" + }, + "1": { + "then": "Aanmelden via een applicatie is mogelijk" + }, + "2": { + "then": "Aanmelden door te bellen naar een telefoonnummer is mogelijk" + }, + "3": { + "then": "Aanmelden via SMS is mogelijk" + }, + "4": { + "then": "Aanmelden via NFC is mogelijk" + }, + "5": { + "then": "Aanmelden met Money Card is mogelijk" + }, + "6": { + "then": "Aanmelden met een betaalkaart is mogelijk" + }, + "7": { + "then": "Hier opladen is (ook) mogelijk zonder aan te melden" + } + }, + "question": "Hoe kan men zich aanmelden aan dit oplaadstation?" + }, + "Available_charging_stations (generated)": { + "mappings": { + "0": { + "then": "Schuko stekker zonder aardingspin (CEE7/4 type F)" + }, + "1": { + "then": "Schuko stekker zonder aardingspin (CEE7/4 type F)" + }, + "2": { + "then": "Europese stekker met aardingspin (CEE7/4 type E)" + }, + "3": { + "then": "Europese stekker met aardingspin (CEE7/4 type E)" + }, + "4": { + "then": "Chademo" + }, + "5": { + "then": "Chademo" + }, + "6": { + "then": "Type 1 met kabel (J1772)" + }, + "7": { + "then": "Type 1 met kabel (J1772)" + }, + "8": { + "then": "Type 1 zonder kabel (J1772)" + }, + "9": { + "then": "Type 1 zonder kabel (J1772)" + }, + "10": { + "then": "Type 1 CCS (ook gekend als Type 1 Combo)" + }, + "11": { + "then": "Type 1 CCS (ook gekend als Type 1 Combo)" + }, + "12": { + "then": "Tesla Supercharger" + }, + "13": { + "then": "Tesla Supercharger" + }, + "14": { + "then": "Type 2 (mennekes)" + }, + "15": { + "then": "Type 2 (mennekes)" + }, + "16": { + "then": "Type 2 CCS (mennekes)" + }, + "17": { + "then": "Type 2 CCS (mennekes)" + }, + "18": { + "then": "Type 2 met kabel (J1772)" + }, + "19": { + "then": "Type 2 met kabel (J1772)" + }, + "20": { + "then": "Tesla Supercharger CCS (een type2 CCS met Tesla-logo)" + }, + "21": { + "then": "Tesla Supercharger CCS (een type2 CCS met Tesla-logo)" + }, + "22": { + "then": "Tesla Supercharger (destination)" + }, + "23": { + "then": "Tesla Supercharger (destination)" + }, + "24": { + "then": "Tesla supercharger (destination (Een Type 2 met kabel en Tesla-logo)" + }, + "25": { + "then": "Tesla supercharger (destination (Een Type 2 met kabel en Tesla-logo)" + }, + "26": { + "then": "USB om GSMs en kleine electronica op te laden" + }, + "27": { + "then": "USB om GSMs en kleine electronica op te laden" + }, + "28": { + "then": "Bosch Active Connect met 3 pinnen aan een kabel" + }, + "29": { + "then": "Bosch Active Connect met 3 pinnen aan een kabel" + }, + "30": { + "then": "Bosch Active Connect met 5 pinnen aan een kabel" + }, + "31": { + "then": "Bosch Active Connect met 5 pinnen aan een kabel" + } + }, + "question": "Welke laadaansluitingen zijn hier beschikbaar?" + }, + "Network": { + "mappings": { + "0": { + "then": "Maakt geen deel uit van een groter netwerk, een lokale zaak of organisatie beheert dit oplaadpunt" + }, + "1": { + "then": "Maakt geen deel uit van een groter netwerk" + } + }, + "question": "Is dit oplaadpunt deel van een groter netwerk?", + "render": "Maakt deel uit van het {network}-netwerk" + }, + "OH": { + "mappings": { + "0": { + "then": "24/7 open - ook tijdens vakanties" + } + }, + "question": "Wanneer is dit oplaadpunt beschikbaar??" + }, + "Operational status": { + "mappings": { + "0": { + "then": "Dit oplaadpunt werkt" + }, + "1": { + "then": "Dit oplaadpunt is kapot" + }, + "2": { + "then": "Hier zal binnenkort een oplaadpunt gebouwd worden" + }, + "3": { + "then": "Hier wordt op dit moment een oplaadpunt gebouwd" + }, + "4": { + "then": "Dit oplaadpunt is niet meer in gebruik maar is wel nog aanwezig" + } + }, + "question": "Is dit oplaadpunt operationeel?" + }, + "Operator": { + "mappings": { + "0": { + "then": "Eigenlijk is {operator} het netwerk waarvan het deel uitmaakt" + } + }, + "question": "Wie beheert dit oplaadpunt?", + "render": "Wordt beheerd door {operator}" + }, + "Parking:fee": { + "mappings": { + "0": { + "then": "Geen extra parkeerkost tijdens het opladen" + }, + "1": { + "then": "Tijdens het opladen moet er parkeergeld betaald worden" + } + }, + "question": "Moet men parkeergeld betalen tijdens het opladen?" + }, + "Type": { + "mappings": { + "0": { + "then": "Elektrische fietsen kunnen hier opgeladen worden" + }, + "1": { + "then": "Elektrische auto's kunnen hier opgeladen worden" + }, + "2": { + "then": "Elektrische scooters (snorfiets of bromfiets) kunnen hier opgeladen worden" + }, + "3": { + "then": "Vrachtwagens kunnen hier opgeladen worden" + }, + "4": { + "then": "Bussen kunnen hier opgeladen worden" + } + }, + "question": "Welke voertuigen kunnen hier opgeladen worden?" + }, + "access": { + "mappings": { + "0": { + "then": "Toegankelijk voor iedereen (mogelijks met aanmelden en/of te betalen)" + }, + "1": { + "then": "Toegankelijk voor iedereen (mogelijks met aanmelden en/of te betalen)" + }, + "2": { + "then": "Enkel klanten van de bijhorende plaats mogen dit oplaadpunt gebruiken
Bv. op de parking van een hotel en enkel toegankelijk voor klanten van dit hotel" + }, + "3": { + "then": "Niet toegankelijk voor het publiek
Bv. enkel toegankelijk voor de eigenaar, medewerkers ,... " + } + }, + "question": "Wie mag er dit oplaadpunt gebruiken?", + "render": "Toegang voor {access}" + }, + "capacity": { + "question": "Hoeveel voertuigen kunnen hier opgeladen worden?", + "render": "{capacity} voertuigen kunnen hier op hetzelfde moment opgeladen worden" + }, + "charge": { + "question": "Hoeveel moet men betalen om dit oplaadpunt te gebruiken?", + "render": "Dit oplaadpunt gebruiken kost {charge}" + }, + "current-0": { + "mappings": { + "0": { + "then": "Schuko stekker zonder aardingspin (CEE7/4 type F) levert een stroom van maximaal 16 A" + } + }, + "question": "Welke stroom levert de stekker van type
Schuko stekker zonder aardingspin (CEE7/4 type F)
?", + "render": "
Schuko stekker zonder aardingspin (CEE7/4 type F)
levert een stroom van maximaal {socket:schuko:current}A" + }, + "current-1": { + "mappings": { + "0": { + "then": "Europese stekker met aardingspin (CEE7/4 type E) levert een stroom van maximaal 16 A" + } + }, + "question": "Welke stroom levert de stekker van type
Europese stekker met aardingspin (CEE7/4 type E)
?", + "render": "
Europese stekker met aardingspin (CEE7/4 type E)
levert een stroom van maximaal {socket:typee:current}A" + }, + "current-10": { + "mappings": { + "0": { + "then": "Tesla Supercharger CCS (een type2 CCS met Tesla-logo) levert een stroom van maximaal 125 A" + }, + "1": { + "then": "Tesla Supercharger CCS (een type2 CCS met Tesla-logo) levert een stroom van maximaal 350 A" + } + }, + "question": "Welke stroom levert de stekker van type
Tesla Supercharger CCS (een type2 CCS met Tesla-logo)
?", + "render": "
Tesla Supercharger CCS (een type2 CCS met Tesla-logo)
levert een stroom van maximaal {socket:tesla_supercharger_ccs:current}A" + }, + "current-11": { + "mappings": { + "0": { + "then": "Tesla Supercharger (destination) levert een stroom van maximaal 125 A" + }, + "1": { + "then": "Tesla Supercharger (destination) levert een stroom van maximaal 350 A" + } + }, + "question": "Welke stroom levert de stekker van type
Tesla Supercharger (destination)
?", + "render": "
Tesla Supercharger (destination)
levert een stroom van maximaal {socket:tesla_destination:current}A" + }, + "current-12": { + "mappings": { + "0": { + "then": "Tesla supercharger (destination (Een Type 2 met kabel en Tesla-logo) levert een stroom van maximaal 16 A" + }, + "1": { + "then": "Tesla supercharger (destination (Een Type 2 met kabel en Tesla-logo) levert een stroom van maximaal 32 A" + } + }, + "question": "Welke stroom levert de stekker van type
Tesla supercharger (destination) (Een Type 2 met kabel en Tesla-logo)
?", + "render": "
Tesla supercharger (destination) (Een Type 2 met kabel en Tesla-logo)
levert een stroom van maximaal {socket:tesla_destination:current}A" + }, + "current-13": { + "mappings": { + "0": { + "then": "USB om GSMs en kleine electronica op te laden levert een stroom van maximaal 1 A" + }, + "1": { + "then": "USB om GSMs en kleine electronica op te laden levert een stroom van maximaal 2 A" + } + }, + "question": "Welke stroom levert de stekker van type
USB om GSMs en kleine electronica op te laden
?", + "render": "
USB om GSMs en kleine electronica op te laden
levert een stroom van maximaal {socket:USB-A:current}A" + }, + "current-14": { + "question": "Welke stroom levert de stekker van type
Bosch Active Connect met 3 pinnen aan een kabel
?", + "render": "
Bosch Active Connect met 3 pinnen aan een kabel
levert een stroom van maximaal {socket:bosch_3pin:current}A" + }, + "current-15": { + "question": "Welke stroom levert de stekker van type
Bosch Active Connect met 5 pinnen aan een kabel
?", + "render": "
Bosch Active Connect met 5 pinnen aan een kabel
levert een stroom van maximaal {socket:bosch_5pin:current}A" + }, + "current-2": { + "mappings": { + "0": { + "then": "Chademo levert een stroom van maximaal 120 A" + } + }, + "question": "Welke stroom levert de stekker van type
Chademo
?", + "render": "
Chademo
levert een stroom van maximaal {socket:chademo:current}A" + }, + "current-3": { + "mappings": { + "0": { + "then": "Type 1 met kabel (J1772) levert een stroom van maximaal 32 A" + } + }, + "question": "Welke stroom levert de stekker van type
Type 1 met kabel (J1772)
?", + "render": "
Type 1 met kabel (J1772)
levert een stroom van maximaal {socket:type1_cable:current}A" + }, + "current-4": { + "mappings": { + "0": { + "then": "Type 1 zonder kabel (J1772) levert een stroom van maximaal 32 A" + } + }, + "question": "Welke stroom levert de stekker van type
Type 1 zonder kabel (J1772)
?", + "render": "
Type 1 zonder kabel (J1772)
levert een stroom van maximaal {socket:type1:current}A" + }, + "current-5": { + "mappings": { + "0": { + "then": "Type 1 CCS (ook gekend als Type 1 Combo) levert een stroom van maximaal 50 A" + }, + "1": { + "then": "Type 1 CCS (ook gekend als Type 1 Combo) levert een stroom van maximaal 125 A" + } + }, + "question": "Welke stroom levert de stekker van type
Type 1 CCS (ook gekend als Type 1 Combo)
?", + "render": "
Type 1 CCS (ook gekend als Type 1 Combo)
levert een stroom van maximaal {socket:type1_combo:current}A" + }, + "current-6": { + "mappings": { + "0": { + "then": "Tesla Supercharger levert een stroom van maximaal 125 A" + }, + "1": { + "then": "Tesla Supercharger levert een stroom van maximaal 350 A" + } + }, + "question": "Welke stroom levert de stekker van type
Tesla Supercharger
?", + "render": "
Tesla Supercharger
levert een stroom van maximaal {socket:tesla_supercharger:current}A" + }, + "current-7": { + "mappings": { + "0": { + "then": "Type 2 (mennekes) levert een stroom van maximaal 16 A" + }, + "1": { + "then": "Type 2 (mennekes) levert een stroom van maximaal 32 A" + } + }, + "question": "Welke stroom levert de stekker van type
Type 2 (mennekes)
?", + "render": "
Type 2 (mennekes)
levert een stroom van maximaal {socket:type2:current}A" + }, + "current-8": { + "mappings": { + "0": { + "then": "Type 2 CCS (mennekes) levert een stroom van maximaal 125 A" + }, + "1": { + "then": "Type 2 CCS (mennekes) levert een stroom van maximaal 350 A" + } + }, + "question": "Welke stroom levert de stekker van type
Type 2 CCS (mennekes)
?", + "render": "
Type 2 CCS (mennekes)
levert een stroom van maximaal {socket:type2_combo:current}A" + }, + "current-9": { + "mappings": { + "0": { + "then": "Type 2 met kabel (J1772) levert een stroom van maximaal 16 A" + }, + "1": { + "then": "Type 2 met kabel (J1772) levert een stroom van maximaal 32 A" + } + }, + "question": "Welke stroom levert de stekker van type
Type 2 met kabel (J1772)
?", + "render": "
Type 2 met kabel (J1772)
levert een stroom van maximaal {socket:type2_cable:current}A" + }, + "email": { + "question": "Wat is het email-adres van de operator?", + "render": "Bij problemen, email naar {email}" + }, + "fee": { + "mappings": { + "0": { + "then": "Gratis te gebruiken" + }, + "1": { + "then": "Gratis te gebruiken (zonder aan te melden)" + }, + "2": { + "then": "Gratis te gebruiken, maar aanmelden met een applicatie is verplicht" + }, + "3": { + "then": "Betalend te gebruiken, maar gratis voor klanten van het bijhorende hotel/café/ziekenhuis/..." + }, + "4": { + "then": "Betalend" + } + }, + "question": "Moet men betalen om dit oplaadpunt te gebruiken?" + }, + "maxstay": { + "mappings": { + "0": { + "then": "Geen maximum parkeertijd" + } + }, + "question": "Hoelang mag een voertuig hier blijven staan?", + "render": "De maximale parkeertijd hier is {canonical(maxstay)}" + }, + "phone": { + "question": "Wat is het telefoonnummer van de beheerder van dit oplaadpunt?", + "render": "Bij problemen, bel naar {phone}" + }, + "plugs-0": { + "question": "Hoeveel stekkers van type
Schuko stekker zonder aardingspin (CEE7/4 type F)
heeft dit oplaadpunt?", + "render": "Hier zijn {socket:schuko} stekkers van het type
Schuko stekker zonder aardingspin (CEE7/4 type F)
" + }, + "plugs-1": { + "question": "Hoeveel stekkers van type
Europese stekker met aardingspin (CEE7/4 type E)
heeft dit oplaadpunt?", + "render": "Hier zijn {socket:typee} stekkers van het type
Europese stekker met aardingspin (CEE7/4 type E)
" + }, + "plugs-10": { + "question": "Hoeveel stekkers van type
Tesla Supercharger CCS (een type2 CCS met Tesla-logo)
heeft dit oplaadpunt?", + "render": "Hier zijn {socket:tesla_supercharger_ccs} stekkers van het type
Tesla Supercharger CCS (een type2 CCS met Tesla-logo)
" + }, + "plugs-11": { + "question": "Hoeveel stekkers van type
Tesla Supercharger (destination)
heeft dit oplaadpunt?", + "render": "Hier zijn {socket:tesla_destination} stekkers van het type
Tesla Supercharger (destination)
" + }, + "plugs-12": { + "question": "Hoeveel stekkers van type
Tesla supercharger (destination) (Een Type 2 met kabel en Tesla-logo)
heeft dit oplaadpunt?", + "render": "Hier zijn {socket:tesla_destination} stekkers van het type
Tesla supercharger (destination (Een Type 2 met kabel en Tesla-logo)
" + }, + "plugs-13": { + "question": "Hoeveel stekkers van type
USB om GSMs en kleine electronica op te laden
heeft dit oplaadpunt?", + "render": "Hier zijn {socket:USB-A} stekkers van het type
USB om GSMs en kleine electronica op te laden
" + }, + "plugs-14": { + "question": "Hoeveel stekkers van type
Bosch Active Connect met 3 pinnen aan een kabel
heeft dit oplaadpunt?", + "render": "Hier zijn {socket:bosch_3pin} stekkers van het type
Bosch Active Connect met 3 pinnen aan een kabel
" + }, + "plugs-15": { + "question": "Hoeveel stekkers van type
Bosch Active Connect met 5 pinnen aan een kabel
heeft dit oplaadpunt?", + "render": "Hier zijn {socket:bosch_5pin} stekkers van het type
Bosch Active Connect met 5 pinnen aan een kabel
" + }, + "plugs-2": { + "question": "Hoeveel stekkers van type
Chademo
heeft dit oplaadpunt?", + "render": "Hier zijn {socket:chademo} stekkers van het type
Chademo
" + }, + "plugs-3": { + "question": "Hoeveel stekkers van type
Type 1 met kabel (J1772)
heeft dit oplaadpunt?", + "render": "Hier zijn {socket:type1_cable} stekkers van het type
Type 1 met kabel (J1772)
" + }, + "plugs-4": { + "question": "Hoeveel stekkers van type
Type 1 zonder kabel (J1772)
heeft dit oplaadpunt?", + "render": "Hier zijn {socket:type1} stekkers van het type
Type 1 zonder kabel (J1772)
" + }, + "plugs-5": { + "question": "Hoeveel stekkers van type
Type 1 CCS (ook gekend als Type 1 Combo)
heeft dit oplaadpunt?", + "render": "Hier zijn {socket:type1_combo} stekkers van het type
Type 1 CCS (ook gekend als Type 1 Combo)
" + }, + "plugs-6": { + "question": "Hoeveel stekkers van type
Tesla Supercharger
heeft dit oplaadpunt?", + "render": "Hier zijn {socket:tesla_supercharger} stekkers van het type
Tesla Supercharger
" + }, + "plugs-7": { + "question": "Hoeveel stekkers van type
Type 2 (mennekes)
heeft dit oplaadpunt?", + "render": "Hier zijn {socket:type2} stekkers van het type
Type 2 (mennekes)
" + }, + "plugs-8": { + "question": "Hoeveel stekkers van type
Type 2 CCS (mennekes)
heeft dit oplaadpunt?", + "render": "Hier zijn {socket:type2_combo} stekkers van het type
Type 2 CCS (mennekes)
" + }, + "plugs-9": { + "question": "Hoeveel stekkers van type
Type 2 met kabel (J1772)
heeft dit oplaadpunt?", + "render": "Hier zijn {socket:type2_cable} stekkers van het type
Type 2 met kabel (J1772)
" + }, + "power-output-0": { + "mappings": { + "0": { + "then": "Schuko stekker zonder aardingspin (CEE7/4 type F) levert een vermogen van maximaal 3.6 kw A" + } + }, + "question": "Welk vermogen levert een enkele stekker van type
Schuko stekker zonder aardingspin (CEE7/4 type F)
?", + "render": "
Schuko stekker zonder aardingspin (CEE7/4 type F)
levert een vermogen van maximaal {socket:schuko:output}" + }, + "power-output-1": { + "mappings": { + "0": { + "then": "Europese stekker met aardingspin (CEE7/4 type E) levert een vermogen van maximaal 3 kw A" + }, + "1": { + "then": "Europese stekker met aardingspin (CEE7/4 type E) levert een vermogen van maximaal 22 kw A" + } + }, + "question": "Welk vermogen levert een enkele stekker van type
Europese stekker met aardingspin (CEE7/4 type E)
?", + "render": "
Europese stekker met aardingspin (CEE7/4 type E)
levert een vermogen van maximaal {socket:typee:output}" + }, + "power-output-10": { + "mappings": { + "0": { + "then": "Tesla Supercharger CCS (een type2 CCS met Tesla-logo) levert een vermogen van maximaal 50 kw A" + } + }, + "question": "Welk vermogen levert een enkele stekker van type
Tesla Supercharger CCS (een type2 CCS met Tesla-logo)
?", + "render": "
Tesla Supercharger CCS (een type2 CCS met Tesla-logo)
levert een vermogen van maximaal {socket:tesla_supercharger_ccs:output}" + }, + "power-output-11": { + "mappings": { + "0": { + "then": "Tesla Supercharger (destination) levert een vermogen van maximaal 120 kw A" + }, + "1": { + "then": "Tesla Supercharger (destination) levert een vermogen van maximaal 150 kw A" + }, + "2": { + "then": "Tesla Supercharger (destination) levert een vermogen van maximaal 250 kw A" + } + }, + "question": "Welk vermogen levert een enkele stekker van type
Tesla Supercharger (destination)
?", + "render": "
Tesla Supercharger (destination)
levert een vermogen van maximaal {socket:tesla_destination:output}" + }, + "power-output-12": { + "mappings": { + "0": { + "then": "Tesla supercharger (destination (Een Type 2 met kabel en Tesla-logo) levert een vermogen van maximaal 11 kw A" + }, + "1": { + "then": "Tesla supercharger (destination (Een Type 2 met kabel en Tesla-logo) levert een vermogen van maximaal 22 kw A" + } + }, + "question": "Welk vermogen levert een enkele stekker van type
Tesla supercharger (destination (Een Type 2 met kabel en Tesla-logo)
?", + "render": "
Tesla supercharger (destination (Een Type 2 met kabel en Tesla-logo)
levert een vermogen van maximaal {socket:tesla_destination:output}" + }, + "power-output-13": { + "mappings": { + "0": { + "then": "USB om GSMs en kleine electronica op te laden levert een vermogen van maximaal 5w A" + }, + "1": { + "then": "USB om GSMs en kleine electronica op te laden levert een vermogen van maximaal 10w A" + } + }, + "question": "Welk vermogen levert een enkele stekker van type
USB om GSMs en kleine electronica op te laden
?", + "render": "
USB om GSMs en kleine electronica op te laden
levert een vermogen van maximaal {socket:USB-A:output}" + }, + "power-output-14": { + "question": "Welk vermogen levert een enkele stekker van type
Bosch Active Connect met 3 pinnen aan een kabel
?", + "render": "
Bosch Active Connect met 3 pinnen aan een kabel
levert een vermogen van maximaal {socket:bosch_3pin:output}" + }, + "power-output-15": { + "question": "Welk vermogen levert een enkele stekker van type
Bosch Active Connect met 5 pinnen aan een kabel
?", + "render": "
Bosch Active Connect met 5 pinnen aan een kabel
levert een vermogen van maximaal {socket:bosch_5pin:output}" + }, + "power-output-2": { + "mappings": { + "0": { + "then": "Chademo levert een vermogen van maximaal 50 kw A" + } + }, + "question": "Welk vermogen levert een enkele stekker van type
Chademo
?", + "render": "
Chademo
levert een vermogen van maximaal {socket:chademo:output}" + }, + "power-output-3": { + "mappings": { + "0": { + "then": "Type 1 met kabel (J1772) levert een vermogen van maximaal 3.7 kw A" + }, + "1": { + "then": "Type 1 met kabel (J1772) levert een vermogen van maximaal 7 kw A" + } + }, + "question": "Welk vermogen levert een enkele stekker van type
Type 1 met kabel (J1772)
?", + "render": "
Type 1 met kabel (J1772)
levert een vermogen van maximaal {socket:type1_cable:output}" + }, + "power-output-4": { + "mappings": { + "0": { + "then": "Type 1 zonder kabel (J1772) levert een vermogen van maximaal 3.7 kw A" + }, + "1": { + "then": "Type 1 zonder kabel (J1772) levert een vermogen van maximaal 6.6 kw A" + }, + "2": { + "then": "Type 1 zonder kabel (J1772) levert een vermogen van maximaal 7 kw A" + }, + "3": { + "then": "Type 1 zonder kabel (J1772) levert een vermogen van maximaal 7.2 kw A" + } + }, + "question": "Welk vermogen levert een enkele stekker van type
Type 1 zonder kabel (J1772)
?", + "render": "
Type 1 zonder kabel (J1772)
levert een vermogen van maximaal {socket:type1:output}" + }, + "power-output-5": { + "mappings": { + "0": { + "then": "Type 1 CCS (ook gekend als Type 1 Combo) levert een vermogen van maximaal 50 kw A" + }, + "1": { + "then": "Type 1 CCS (ook gekend als Type 1 Combo) levert een vermogen van maximaal 62.5 kw A" + }, + "2": { + "then": "Type 1 CCS (ook gekend als Type 1 Combo) levert een vermogen van maximaal 150 kw A" + }, + "3": { + "then": "Type 1 CCS (ook gekend als Type 1 Combo) levert een vermogen van maximaal 350 kw A" + } + }, + "question": "Welk vermogen levert een enkele stekker van type
Type 1 CCS (ook gekend als Type 1 Combo)
?", + "render": "
Type 1 CCS (ook gekend als Type 1 Combo)
levert een vermogen van maximaal {socket:type1_combo:output}" + }, + "power-output-6": { + "mappings": { + "0": { + "then": "Tesla Supercharger levert een vermogen van maximaal 120 kw A" + }, + "1": { + "then": "Tesla Supercharger levert een vermogen van maximaal 150 kw A" + }, + "2": { + "then": "Tesla Supercharger levert een vermogen van maximaal 250 kw A" + } + }, + "question": "Welk vermogen levert een enkele stekker van type
Tesla Supercharger
?", + "render": "
Tesla Supercharger
levert een vermogen van maximaal {socket:tesla_supercharger:output}" + }, + "power-output-7": { + "mappings": { + "0": { + "then": "Type 2 (mennekes) levert een vermogen van maximaal 11 kw A" + }, + "1": { + "then": "Type 2 (mennekes) levert een vermogen van maximaal 22 kw A" + } + }, + "question": "Welk vermogen levert een enkele stekker van type
Type 2 (mennekes)
?", + "render": "
Type 2 (mennekes)
levert een vermogen van maximaal {socket:type2:output}" + }, + "power-output-8": { + "mappings": { + "0": { + "then": "Type 2 CCS (mennekes) levert een vermogen van maximaal 50 kw A" + } + }, + "question": "Welk vermogen levert een enkele stekker van type
Type 2 CCS (mennekes)
?", + "render": "
Type 2 CCS (mennekes)
levert een vermogen van maximaal {socket:type2_combo:output}" + }, + "power-output-9": { + "mappings": { + "0": { + "then": "Type 2 met kabel (J1772) levert een vermogen van maximaal 11 kw A" + }, + "1": { + "then": "Type 2 met kabel (J1772) levert een vermogen van maximaal 22 kw A" + } + }, + "question": "Welk vermogen levert een enkele stekker van type
Type 2 met kabel (J1772)
?", + "render": "
Type 2 met kabel (J1772)
levert een vermogen van maximaal {socket:type2_cable:output}" + }, + "questions": { + "render": "

Technische vragen

De vragen hieronder zijn erg technisch - sla deze over indien je hier geen tijd voor hebt
{questions}" + }, + "ref": { + "question": "Wat is het referentienummer van dit oplaadstation?", + "render": "Het referentienummer van dit oplaadpunt is {ref}" + }, + "voltage-0": { + "mappings": { + "0": { + "then": "Schuko stekker zonder aardingspin (CEE7/4 type F) heeft een spanning van 230 volt" + } + }, + "question": "Welke spanning levert de stekker van type
Schuko stekker zonder aardingspin (CEE7/4 type F)
", + "render": "
Schuko stekker zonder aardingspin (CEE7/4 type F)
heeft een spanning van {socket:schuko:voltage} volt" + }, + "voltage-1": { + "mappings": { + "0": { + "then": "Europese stekker met aardingspin (CEE7/4 type E) heeft een spanning van 230 volt" + } + }, + "question": "Welke spanning levert de stekker van type
Europese stekker met aardingspin (CEE7/4 type E)
", + "render": "
Europese stekker met aardingspin (CEE7/4 type E)
heeft een spanning van {socket:typee:voltage} volt" + }, + "voltage-10": { + "mappings": { + "0": { + "then": "Tesla Supercharger CCS (een type2 CCS met Tesla-logo) heeft een spanning van 500 volt" + }, + "1": { + "then": "Tesla Supercharger CCS (een type2 CCS met Tesla-logo) heeft een spanning van 920 volt" + } + }, + "question": "Welke spanning levert de stekker van type
Tesla Supercharger CCS (een type2 CCS met Tesla-logo)
", + "render": "
Tesla Supercharger CCS (een type2 CCS met Tesla-logo)
heeft een spanning van {socket:tesla_supercharger_ccs:voltage} volt" + }, + "voltage-11": { + "mappings": { + "0": { + "then": "Tesla Supercharger (destination) heeft een spanning van 480 volt" + } + }, + "question": "Welke spanning levert de stekker van type
Tesla Supercharger (destination)
", + "render": "
Tesla Supercharger (destination)
heeft een spanning van {socket:tesla_destination:voltage} volt" + }, + "voltage-12": { + "mappings": { + "0": { + "then": "Tesla supercharger (destination (Een Type 2 met kabel en Tesla-logo) heeft een spanning van 230 volt" + }, + "1": { + "then": "Tesla supercharger (destination (Een Type 2 met kabel en Tesla-logo) heeft een spanning van 400 volt" + } + }, + "question": "Welke spanning levert de stekker van type
Tesla supercharger (destination (Een Type 2 met kabel en Tesla-logo)
", + "render": "
Tesla supercharger (destination (Een Type 2 met kabel en Tesla-logo)
heeft een spanning van {socket:tesla_destination:voltage} volt" + }, + "voltage-13": { + "mappings": { + "0": { + "then": "USB om GSMs en kleine electronica op te laden heeft een spanning van 5 volt" + } + }, + "question": "Welke spanning levert de stekker van type
USB om GSMs en kleine electronica op te laden
", + "render": "
USB om GSMs en kleine electronica op te laden
heeft een spanning van {socket:USB-A:voltage} volt" + }, + "voltage-14": { + "question": "Welke spanning levert de stekker van type
Bosch Active Connect met 3 pinnen aan een kabel
", + "render": "
Bosch Active Connect met 3 pinnen aan een kabel
heeft een spanning van {socket:bosch_3pin:voltage} volt" + }, + "voltage-15": { + "question": "Welke spanning levert de stekker van type
Bosch Active Connect met 5 pinnen aan een kabel
", + "render": "
Bosch Active Connect met 5 pinnen aan een kabel
heeft een spanning van {socket:bosch_5pin:voltage} volt" + }, + "voltage-2": { + "mappings": { + "0": { + "then": "Chademo heeft een spanning van 500 volt" + } + }, + "question": "Welke spanning levert de stekker van type
Chademo
", + "render": "
Chademo
heeft een spanning van {socket:chademo:voltage} volt" + }, + "voltage-3": { + "mappings": { + "0": { + "then": "Type 1 met kabel (J1772) heeft een spanning van 200 volt" + }, + "1": { + "then": "Type 1 met kabel (J1772) heeft een spanning van 240 volt" + } + }, + "question": "Welke spanning levert de stekker van type
Type 1 met kabel (J1772)
", + "render": "
Type 1 met kabel (J1772)
heeft een spanning van {socket:type1_cable:voltage} volt" + }, + "voltage-4": { + "mappings": { + "0": { + "then": "Type 1 zonder kabel (J1772) heeft een spanning van 200 volt" + }, + "1": { + "then": "Type 1 zonder kabel (J1772) heeft een spanning van 240 volt" + } + }, + "question": "Welke spanning levert de stekker van type
Type 1 zonder kabel (J1772)
", + "render": "
Type 1 zonder kabel (J1772)
heeft een spanning van {socket:type1:voltage} volt" + }, + "voltage-5": { + "mappings": { + "0": { + "then": "Type 1 CCS (ook gekend als Type 1 Combo) heeft een spanning van 400 volt" + }, + "1": { + "then": "Type 1 CCS (ook gekend als Type 1 Combo) heeft een spanning van 1000 volt" + } + }, + "question": "Welke spanning levert de stekker van type
Type 1 CCS (ook gekend als Type 1 Combo)
", + "render": "
Type 1 CCS (ook gekend als Type 1 Combo)
heeft een spanning van {socket:type1_combo:voltage} volt" + }, + "voltage-6": { + "mappings": { + "0": { + "then": "Tesla Supercharger heeft een spanning van 480 volt" + } + }, + "question": "Welke spanning levert de stekker van type
Tesla Supercharger
", + "render": "
Tesla Supercharger
heeft een spanning van {socket:tesla_supercharger:voltage} volt" + }, + "voltage-7": { + "mappings": { + "0": { + "then": "Type 2 (mennekes) heeft een spanning van 230 volt" + }, + "1": { + "then": "Type 2 (mennekes) heeft een spanning van 400 volt" + } + }, + "question": "Welke spanning levert de stekker van type
Type 2 (mennekes)
", + "render": "
Type 2 (mennekes)
heeft een spanning van {socket:type2:voltage} volt" + }, + "voltage-8": { + "mappings": { + "0": { + "then": "Type 2 CCS (mennekes) heeft een spanning van 500 volt" + }, + "1": { + "then": "Type 2 CCS (mennekes) heeft een spanning van 920 volt" + } + }, + "question": "Welke spanning levert de stekker van type
Type 2 CCS (mennekes)
", + "render": "
Type 2 CCS (mennekes)
heeft een spanning van {socket:type2_combo:voltage} volt" + }, + "voltage-9": { + "mappings": { + "0": { + "then": "Type 2 met kabel (J1772) heeft een spanning van 230 volt" + }, + "1": { + "then": "Type 2 met kabel (J1772) heeft een spanning van 400 volt" + } + }, + "question": "Welke spanning levert de stekker van type
Type 2 met kabel (J1772)
", + "render": "
Type 2 met kabel (J1772)
heeft een spanning van {socket:type2_cable:voltage} volt" + }, + "website": { + "question": "Wat is de website waar men meer info kan vinden over dit oplaadpunt?", + "render": "Meer informatie op {website}" + } + }, + "title": { + "mappings": { + "0": { + "then": "Oplaadpunt voor elektrische fietsen" + }, + "1": { + "then": "Oplaadpunt voor elektrische auto's" + } + }, + "render": "Oplaadpunt" + }, + "units": { + "0": { + "applicableUnits": { + "0": { + "human": " minuten", + "humanSingular": " minuut" + }, + "1": { + "human": " uren", + "humanSingular": " uur" + }, + "2": { + "human": " day", + "humanSingular": " dag" + } + } + }, + "1": { + "applicableUnits": { + "0": { + "human": "volt" + } + } + }, + "2": { + "applicableUnits": { + "0": { + "human": "A" + } + } + }, + "3": { + "applicableUnits": { + "0": { + "human": "kilowatt" + }, + "1": { + "human": "megawatt" + } + } + } + } + }, + "crab_address": { + "tagRenderings": { + "render_crab": { + "render": "Volgens het CRAB ligt hier {STRAATNM} {HUISNR} (label: {HNRLABEL})" + } + } + }, + "crossings": { + "description": "Oversteekplaatsen voor voetgangers en fietsers", + "name": "Oversteekplaatsen", + "presets": { + "0": { + "description": "Oversteekplaats voor voetgangers en/of fietsers", + "title": "Oversteekplaats" + }, + "1": { + "description": "Verkeerslicht op een weg", + "title": "Verkeerslicht" + } + }, + "tagRenderings": { + "crossing-bicycle-allowed": { + "mappings": { + "0": { + "then": "Een fietser kan deze oversteekplaats gebruiken" + }, + "1": { + "then": "Een fietser kan deze oversteekplaats niet gebruiken" + } + }, + "question": "Is deze oversteekplaats ook voor fietsers" + }, + "crossing-button": { + "mappings": { + "0": { + "then": "Dit verkeerslicht heeft een knop voor groen licht" + }, + "1": { + "then": "Dit verkeerlicht heeft geen knop voor groen licht" + } + }, + "question": "Heeft dit verkeerslicht een knop voor groen licht?" + }, + "crossing-continue-through-red": { + "mappings": { + "0": { + "then": "Een fietser mag wel rechtdoor gaan als het licht rood is" + }, + "1": { + "then": "Een fietser mag wel rechtdoor gaan als het licht rood is" + }, + "2": { + "then": "Een fietser mag niet rechtdoor gaan als het licht rood is" + } + }, + "question": "Mag een fietser rechtdoor gaan als het licht rood is?" + }, + "crossing-has-island": { + "mappings": { + "0": { + "then": "Deze oversteekplaats heeft een verkeerseiland in het midden" + }, + "1": { + "then": "Deze oversteekplaats heeft geen verkeerseiland in het midden" + } + }, + "question": "Heeft deze oversteekplaats een verkeerseiland in het midden?" + }, + "crossing-is-zebra": { + "mappings": { + "0": { + "then": "Dit is een zebrapad" + }, + "1": { + "then": "Dit is geen zebrapad" + } + }, + "question": "Is dit een zebrapad?" + }, + "crossing-right-turn-through-red": { + "mappings": { + "0": { + "then": "Een fietser mag wel rechtsaf slaan als het licht rood is" + }, + "1": { + "then": "Een fietser mag wel rechtsaf slaan als het licht rood is" + }, + "2": { + "then": "Een fietser mag niet rechtsaf slaan als het licht rood is" + } + }, + "question": "Mag een fietser rechtsaf slaan als het licht rood is?" + }, + "crossing-tactile": { + "mappings": { + "0": { + "then": "Deze oversteekplaats heeft een geleidelijn" + }, + "1": { + "then": "Deze oversteekplaats heeft geen geleidelijn" + }, + "2": { + "then": "Deze oversteekplaats heeft een geleidelijn, die incorrect is." + } + }, + "question": "Heeft deze oversteekplaats een geleidelijn?" + }, + "crossing-type": { + "mappings": { + "0": { + "then": "Oversteekplaats, zonder verkeerslichten" + }, + "1": { + "then": "Oversteekplaats met verkeerslichten" + }, + "2": { + "then": "Zebrapad" + }, + "3": { + "then": "Oversteekplaats zonder kruispuntmarkeringen" + } + }, + "question": "Wat voor oversteekplaats is dit?" + } + }, + "title": { + "mappings": { + "0": { + "then": "Verkeerslicht" + }, + "1": { + "then": "Oversteektplaats met verkeerslichten" + } + }, + "render": "Oversteekplaats" + } + }, + "cycleways_and_roads": { + "description": "Alle infrastructuur waar je over kunt fietsen, met vragen over die infrastructuur", + "name": "Fietspaden, straten en wegen", + "tagRenderings": { + "Cycleway type for a road": { + "mappings": { + "0": { + "then": "Er is een fietssuggestiestrook" + }, + "1": { + "then": "Er is een fietspad aangrenzend aan de weg (gescheiden met verf)" + }, + "2": { + "then": "Er is een fietspad (los van de weg), maar geen fietspad afzonderlijk getekend naast deze weg." + }, + "3": { + "then": "Er is een apart getekend fietspad." + }, + "4": { + "then": "Er is geen fietspad aanwezig" + }, + "5": { + "then": "Er is geen fietspad aanwezig" + } + }, + "question": "Wat voor fietspad is hier?" + }, + "Cycleway:smoothness": { + "mappings": { + "0": { + "then": "Geschikt voor fijne rollers: rollerblade, skateboard" + }, + "1": { + "then": "Geschikt voor fijne wielen: racefiets" + }, + "2": { + "then": "Geschikt voor normale wielen: stadsfiets, rolstoel, scooter" + }, + "3": { + "then": "Geschikt voor brede wielen: trekfiets, auto, rickshaw" + }, + "4": { + "then": "Geschikt voor voertuigen met hoge banden: lichte terreinwagen" + }, + "5": { + "then": "Geschikt voor terreinwagens: zware terreinwagen" + }, + "6": { + "then": "Geschikt voor gespecialiseerde terreinwagens: tractor, alleterreinwagen" + }, + "7": { + "then": "Niet geschikt voor voertuigen met wielen" + } + }, + "question": "Wat is de kwaliteit van dit fietspad?" + }, + "Cycleway:surface": { + "mappings": { + "0": { + "then": "Dit fietspad is onverhard" + }, + "1": { + "then": "Dit fietspad is geplaveid" + }, + "2": { + "then": "Dit fietspad is gemaakt van asfalt" + }, + "3": { + "then": "Dit fietspad is gemaakt van straatstenen" + }, + "4": { + "then": "Dit fietspad is gemaakt van beton" + }, + "5": { + "then": "Dit fietspad is gemaakt van kasseien (natuurlijk of verwerkt)" + }, + "6": { + "then": "Dit fietspad is gemaakt van ruwe, natuurlijke kasseien" + }, + "7": { + "then": "Dit fietspad is gemaakt van vlakke, rechthoekige kasseien" + }, + "8": { + "then": "Dit fietspad is gemaakt van hout" + }, + "9": { + "then": "Dit fietspad is gemaakt van grind" + }, + "10": { + "then": "Dit fietspad is gemaakt van fijn grind" + }, + "11": { + "then": "Dit fietspad is gemaakt van kiezelsteentjes" + }, + "12": { + "then": "Dit fietspad is gemaakt van aarde" + } + }, + "question": "Waaruit is het oppervlak van het fietspad van gemaakt?", + "render": "Dit fietspad is gemaakt van {cycleway:surface}" + }, + "Is this a cyclestreet? (For a road)": { + "mappings": { + "0": { + "then": "Dit is een fietsstraat, en dus een 30km/h zone" + }, + "1": { + "then": "Dit is een fietsstraat" + }, + "2": { + "then": "Dit is geen fietsstraat" + } + }, + "question": "Is dit een fietsstraat?" + }, + "Maxspeed (for road)": { + "mappings": { + "0": { + "then": "De maximumsnelheid is 20 km/u" + }, + "1": { + "then": "De maximumsnelheid is 30 km/u" + }, + "2": { + "then": "De maximumsnelheid is 50 km/u" + }, + "3": { + "then": "De maximumsnelheid is 70 km/u" + }, + "4": { + "then": "De maximumsnelheid is 90 km/u" + } + }, + "question": "Wat is de maximumsnelheid in deze straat?", + "render": "De maximumsnelheid op deze weg is {maxspeed} km/u" + }, + "Surface of the road": { + "mappings": { + "0": { + "then": "Dit fietspad is onverhard" + }, + "1": { + "then": "Dit fietspad is geplaveid" + }, + "2": { + "then": "Dit fietspad is gemaakt van asfalt" + }, + "3": { + "then": "Dit fietspad is gemaakt van straatstenen" + }, + "4": { + "then": "Dit fietspad is gemaakt van beton" + }, + "5": { + "then": "Dit fietspad is gemaakt van kasseien (natuurlijk of verwerkt)" + }, + "6": { + "then": "Dit fietspad is gemaakt van ruwe, natuurlijke kasseien" + }, + "7": { + "then": "Dit fietspad is gemaakt van vlakke, rechthoekige kasseien" + }, + "8": { + "then": "Dit fietspad is gemaakt van hout" + }, + "9": { + "then": "Dit fietspad is gemaakt van grind" + }, + "10": { + "then": "Dit fietspad is gemaakt van fijn grind" + }, + "11": { + "then": "Dit fietspad is gemaakt van kiezelsteentjes" + }, + "12": { + "then": "Dit fietspad is gemaakt van aarde" + } + }, + "question": "Waaruit is het oppervlak van de straat gemaakt?", + "render": "Deze weg is gemaakt van {surface}" + }, + "Surface of the street": { + "mappings": { + "0": { + "then": "Bruikbaar voor kleine, harde wielen: rollerblade, skateboard" + }, + "1": { + "then": "Bruikbaar voor smalle wielen: racefiets" + }, + "2": { + "then": "Bruikbaar voor normale wielen: stadsfiets, rolwagen, step" + }, + "3": { + "then": "Bruikbaar voor robuuste wielen: trekking fiets, auto, rickshaw" + }, + "4": { + "then": "Bruikbaar voor terreinvoertuigen: 4x4 personenwagens" + }, + "5": { + "then": "Bruikbaar voor terreinvoertuigen: zware 4x4 voertuigen" + }, + "6": { + "then": "Bruikbaar voor uitzonderlijke terreinvoertuigen: tractor, ATV" + }, + "7": { + "then": "Onmogelijk om met een voertuig met wielen te passeren" + } + }, + "question": "Wat is de kwaliteit van deze straat?" + }, + "cyclelan-segregation": { + "mappings": { + "0": { + "then": "Dit fietspad is gescheiden van de weg met een onderbroken streep" + }, + "1": { + "then": "Dit fietspad is gescheiden van de weg met een doorgetrokken streep" + }, + "2": { + "then": "Dit fietspad is gescheiden van de weg met parkeervakken" + }, + "3": { + "then": "Dit fietspad is gescheiden van de weg met een stoeprand" + } + }, + "question": "Hoe is dit fietspad gescheiden van de weg?" + }, + "cycleway-lane-track-traffic-signs": { + "mappings": { + "0": { + "then": "Verplicht fietspad" + }, + "1": { + "then": "Verplicht fietspad (met onderbord)
" + }, + "2": { + "then": "Afgescheiden voet-/fietspad" + }, + "3": { + "then": "Gedeeld voet-/fietspad" + }, + "4": { + "then": "Geen verkeersbord aanwezig" + } + }, + "question": "Welk verkeersbord heeft dit fietspad?" + }, + "cycleway-segregation": { + "mappings": { + "0": { + "then": "Dit fietspad is gescheiden van de weg met een onderbroken streep" + }, + "1": { + "then": "Dit fietspad is gescheiden van de weg met een doorgetrokken streep" + }, + "2": { + "then": "Dit fietspad is gescheiden van de weg met parkeervakken" + }, + "3": { + "then": "Dit fietspad is gescheiden van de weg met een stoeprand" + } + }, + "question": "Hoe is dit fietspad gescheiden van de weg?" + }, + "cycleway-traffic-signs": { + "mappings": { + "0": { + "then": "Verplicht fietspad" + }, + "1": { + "then": "Verplicht fietspad (met onderbord)
" + }, + "2": { + "then": "Afgescheiden voet-/fietspad" + }, + "3": { + "then": "Gedeeld voet-/fietspad" + }, + "4": { + "then": "Geen verkeersbord aanwezig" + } + }, + "question": "Welk verkeersbord heeft dit fietspad?" + }, + "cycleway-traffic-signs-supplementary": { + "mappings": { + "0": { + "then": "Bromfiets Klass B verplicht op het fietspad" + }, + "1": { + "then": "Speedpedelec (Bromfiets klasse P) verplicht op het fietspad" + }, + "2": { + "then": "Bromfiets klasse B en speedpedelec (Klasse P) verplicht op het fietspad" + }, + "3": { + "then": "Bromfiets klasse B verboden" + }, + "4": { + "then": "Speedpedelec (bromfiets klasse P) verboden" + }, + "5": { + "then": "Bromfiets klasse B en speedpedelec (klasse P) verboden" + }, + "6": { + "then": "Geen onderbord aanwezig" + } + }, + "question": "Heeft het verkeersbord D7 () een onderbord?" + }, + "cycleways_and_roads-cycleway:buffer": { + "question": "Hoe breed is de ruimte tussen het fietspad en de weg?", + "render": "De schrikafstand van dit fietspad is {cycleway:buffer} m" + }, + "is lit?": { + "mappings": { + "0": { + "then": "Deze weg is verlicht" + }, + "1": { + "then": "Deze weg is niet verlicht" + }, + "2": { + "then": "Deze weg is 's nachts verlicht" + }, + "3": { + "then": "Deze weg is 24/7 verlicht" + } + }, + "question": "Is deze weg verlicht?" + }, + "width:carriageway": { + "question": "Hoe breed is de rijbaan in deze straat (in meters)?
Dit is
Meet dit van stoepsteen tot stoepsteen, dus inclusief een parallelle parkeerstrook", + "render": "De breedte van deze rijbaan in deze straat is {width:carriageway}m" + } + }, + "title": { + "mappings": { + "0": { + "then": "Fietsweg" + }, + "1": { + "then": "Fietssuggestiestrook" + }, + "2": { + "then": "Fietsstrook" + }, + "3": { + "then": "Fietsweg naast de weg" + }, + "4": { + "then": "Fietsstraat" + } + }, + "render": "Fietspaden" + } + }, + "defibrillator": { + "description": "Een laag die defibrillatoren toont die je kan gebruiken bij noodgevallen. Dit omvat zowel publiek beschikbare toestellen als defibrillatoren waarvoor het toestel enkel door personeel aangeboden kan worden", + "name": "Defibrillatoren", + "presets": { + "0": { + "title": "Defibrillator" + }, + "1": { + "title": "defibrillator die aan een muur hangt" + } + }, + "tagRenderings": { + "defibrillator-access": { + "mappings": { + "0": { + "then": "Publiek toegankelijk" + }, + "1": { + "then": "Publiek toegankelijk" + }, + "2": { + "then": "Enkel toegankelijk voor klanten" + }, + "3": { + "then": "Niet toegankelijk voor het publiek (bv. enkel voor personeel, de eigenaar, ...)" + }, + "4": { + "then": "Niet toegankelijk, mogelijk enkel voor professionals" + } + }, + "question": "Is deze defibrillator vrij toegankelijk?", + "render": "Toegankelijkheid is {access}" + }, + "defibrillator-defibrillator": { + "mappings": { + "0": { + "then": "Er is geen info over het soort toestel" + }, + "1": { + "then": "Dit is een manueel toestel enkel voor professionals" + }, + "2": { + "then": "Dit is een gewone automatische defibrillator" + }, + "3": { + "then": "Dit is een speciaal type defibrillator: {defibrillator}" + } + }, + "question": "Is dit een gewone automatische defibrillator of een manueel toestel enkel voor professionals?" + }, + "defibrillator-defibrillator:location": { + "question": "Gelieve meer informatie te geven over de exacte locatie van de defibrillator (in de plaatselijke taal)", + "render": "Meer informatie over de locatie (lokale taal):
{defibrillator:location}" + }, + "defibrillator-defibrillator:location:en": { + "question": "Gelieve meer informatie te geven over de exacte locatie van de defibrillator (in het Engels)", + "render": "Meer informatie over de locatie (in het Engels):
{defibrillator:location:en}" + }, + "defibrillator-defibrillator:location:fr": { + "question": "Gelieve meer informatie te geven over de exacte locatie van de defibrillator (in het Frans)", + "render": "Meer informatie over de locatie (in het Frans):
{defibrillator:location:fr}" + }, + "defibrillator-description": { + "question": "Is er nog iets bijzonder aan deze defibrillator dat je nog niet hebt kunnen meegeven? (laat leeg indien niet)", + "render": "Aanvullende info: {description}" + }, + "defibrillator-email": { + "question": "Wat is het email-adres voor vragen over deze defibrillator", + "render": "Email voor vragen over deze defibrillator: {email}" + }, + "defibrillator-fixme": { + "question": "Is er iets mis met de informatie over deze defibrillator dat je hier niet opgelost kreeg? (laat hier een berichtje achter voor OpenStreetMap experts)", + "render": "Extra informatie voor OpenStreetMap experts: {fixme}" + }, + "defibrillator-indoors": { + "mappings": { + "0": { + "then": "Deze defibrillator bevindt zich in een gebouw" + }, + "1": { + "then": "Deze defibrillator hangt buiten" + } + }, + "question": "Hangt deze defibrillator binnen of buiten?" + }, + "defibrillator-level": { + "mappings": { + "0": { + "then": "Deze defibrillator bevindt zich gelijkvloers" + }, + "1": { + "then": "Deze defibrillator is op de eerste verdieping" + } + }, + "question": "Op welke verdieping bevindt deze defibrillator zich?", + "render": "De defibrillator bevindt zicht op verdieping {level}" + }, + "defibrillator-opening_hours": { + "mappings": { + "0": { + "then": "24/7 open (inclusief feestdagen)" + } + }, + "question": "Wanneer is deze defibrillator beschikbaar?", + "render": "{opening_hours_table(opening_hours)}" + }, + "defibrillator-phone": { + "question": "Wat is het telefoonnummer voor vragen over deze defibrillator", + "render": "Telefoonnummer voor vragen over deze defibrillator: {phone}" + }, + "defibrillator-ref": { + "question": "Wat is het officieel identificatienummer van het toestel? (indien zichtbaar op toestel)", + "render": "Officieel identificatienummer van het toestel: {ref}" + }, + "defibrillator-survey:date": { + "mappings": { + "0": { + "then": "Vandaag nagekeken!" + } + }, + "question": "Wanneer is deze defibrillator het laatst gecontroleerd in OpenStreetMap?", + "render": "Deze defibrillator is nagekeken in OSM op {survey:date}" + } + }, + "title": { + "render": "Defibrillator" + } + }, + "direction": { + "description": "Deze laag toont de oriëntatie van een object", + "name": "Richtingsvisualisatie" + }, + "drinking_water": { + "description": "Deze laag toont drinkwaterpunten", + "name": "Drinkbaar water", + "presets": { + "0": { + "title": "drinkbaar water" + } + }, + "tagRenderings": { + "Bottle refill": { + "mappings": { + "0": { + "then": "Een drinkbus bijvullen gaat makkelijk" + }, + "1": { + "then": "Een drinkbus past moeilijk" + } + }, + "question": "Hoe gemakkelijk is het om drinkbussen bij te vullen?" + }, + "Still in use?": { + "mappings": { + "0": { + "then": "Deze drinkwaterfontein werkt" + }, + "1": { + "then": "Deze drinkwaterfontein is kapot" + }, + "2": { + "then": "Deze drinkwaterfontein is afgesloten" + } + }, + "question": "Is deze drinkwaterkraan nog steeds werkende?", + "render": "Deze waterkraan-status is {operational_status}" + }, + "render-closest-drinking-water": { + "render": "Er bevindt zich een ander drinkwaterpunt op {_closest_other_drinking_water_distance} meter" + } + }, + "title": { + "render": "Drinkbaar water" + } + }, + "entrance": { + "description": "Een laag met ingangen (van gebouwen etc.) waarmee je details kunt aanvullen die belangrijk zijn voor bijvoorbeeld rolstoelgebruikers (en fietsers, leveranciers, ...)", + "name": "Toegang", + "tagRenderings": { + "Door_type": { + "mappings": { + "0": { + "then": "Het type deur is onbekend" + }, + "1": { + "then": "Een gewone deur die aan scharnieren ophangt en openzwaait" + }, + "2": { + "then": "Een tourniquet-deur (draaideur) die in een cylinder rond een centrale as draait" + }, + "3": { + "then": "Een schuifdeur or roldeur die bij het openen en sluiten zijwaarts beweegt" + }, + "4": { + "then": "Een poort die langs boven dichtrolt, typisch voor garages" + }, + "5": { + "then": "Er is een toegang zonder een deur" + } + }, + "question": "Om wat voor deur gaat het?
Of de deur al of niet automatisch werkt, vragen we hierna " + }, + "Entrance type": { + "mappings": { + "0": { + "then": "Het specifieke type ingang is onbekend" + }, + "1": { + "then": "Dit is een binnendeur, die een kamer of een gang volledig binnen hetzelfde gebouw afsluit" + }, + "2": { + "then": "Dit is de hoofdingang" + }, + "3": { + "then": "Dit is een secundaire ingang" + }, + "4": { + "then": "Dit is een dienstingang - normaal gezien enkel gebruikt door werknemers, leveranciers, ..." + }, + "5": { + "then": "Dit is enkel een uitgang, je kan hier niet naar binnen" + }, + "6": { + "then": "Dit is een ingang waar je enkel naar binnen kunt (niet naar buiten)" + }, + "7": { + "then": "Dit is een nooduitgang" + }, + "8": { + "then": "Dit is de ingang van een private woning" + } + }, + "question": "Wat voor ingang is dit?" + }, + "automatic_door": { + "mappings": { + "0": { + "then": "Dit is een automatische deur" + }, + "1": { + "then": "Deze deur is niet automatisch" + }, + "2": { + "then": "De deur gaat automatisch open wanneer er beweging wordt gedetecteerd" + }, + "3": { + "then": "De deur gaat automatisch open wanneer een sensor in de vloer wordt geactiveerd" + }, + "4": { + "then": "De deur gaat open wanneer een knop wordt ingedrukt" + }, + "5": { + "then": "De deur draait continue automatisch, maar heeft een knop om te vertragen, bijvoorbeeld voor rolstoelgebruikers" + }, + "6": { + "then": "De deur draait continue automatisch" + }, + "7": { + "then": "De deur wordt geopend door personeel als je dat vraagt door op een knop te duwen" + }, + "8": { + "then": "De deur wordt geopend door personeel wanneer je het vraagt" + } + } + }, + "width": { + "question": "Wat is de breedte van deze deur/toegang?" + } + } + }, + "etymology": { + "description": "Alle lagen met een gelinkt etymology", + "name": "Heeft etymology info", + "tagRenderings": { + "simple etymology": { + "mappings": { + "0": { + "then": "De oorsprong van deze naam is onbekend in de literatuur" + } + }, + "question": "Naar wat is dit object vernoemd?
Dit staat mogelijks vermeld op het straatnaambordje", + "render": "Vernoemd naar {name:etymology}" + }, + "street-name-sign-image": { + "render": "{image_carousel(image:streetsign)}
{image_upload(image:streetsign, Voeg afbeelding van straatnaambordje toe)}" + }, + "wikipedia-etymology": { + "question": "Wat is het Wikidata-item van hetgeen dit object is naar vernoemd?", + "render": "

Wikipedia artikel van de naamgever

{wikipedia(name:etymology:wikidata):max-height:20rem}" + }, + "zoeken op inventaris onroerend erfgoed": { + "render": "Zoeken op inventaris onroerend erfgoed" + } + } + }, + "food": { + "filter": { + "0": { + "options": { + "0": { + "question": "Nu geopened" + } + } + }, + "1": { + "options": { + "0": { + "question": "Heeft een vegetarisch menu" + } + } + }, + "2": { + "options": { + "0": { + "question": "Heeft een veganistisch menu" + } + } + }, + "3": { + "options": { + "0": { + "question": "Heeft een halal menu" + } + } + } + }, + "name": "Eetgelegenheden", + "presets": { + "0": { + "description": "Een eetgegelegenheid waar je aan tafel wordt bediend", + "title": "restaurant" + }, + "1": { + "description": "Een zaak waar je snel bediend wordt, vaak met de focus op afhalen. Zitgelegenheid is eerder beperkt (of zelfs afwezig)", + "title": "fastfood-zaak" + }, + "2": { + "description": "Een fastfood-zaak waar je frieten koopt", + "title": "frituur" + } + }, + "tagRenderings": { + "Cuisine": { + "mappings": { + "0": { + "then": "Dit is een pizzeria" + }, + "1": { + "then": "Dit is een frituur" + }, + "2": { + "then": "Dit is een pastazaak" + }, + "3": { + "then": "Dit is een kebabzaak" + }, + "4": { + "then": "Dit is een broodjeszaak" + }, + "5": { + "then": "Dit is een hamburgerrestaurant" + }, + "6": { + "then": "Dit is een sushirestaurant" + }, + "7": { + "then": "Dit is een koffiezaak" + }, + "8": { + "then": "Dit is een Italiaans restaurant (dat meer dan enkel pasta of pizza verkoopt)" + }, + "9": { + "then": "Dit is een Frans restaurant" + }, + "10": { + "then": "Dit is een Chinees restaurant" + }, + "11": { + "then": "Dit is een Grieks restaurant" + }, + "12": { + "then": "Dit is een Indisch restaurant" + }, + "13": { + "then": "Dit is een Turks restaurant (dat meer dan enkel kebab verkoopt)" + }, + "14": { + "then": "Dit is een Thaïs restaurant" + } + }, + "question": "Welk soort gerechten worden hier geserveerd?", + "render": "Deze plaats serveert vooral {cuisine}" + }, + "Fastfood vs restaurant": { + "mappings": { + "0": { + "then": "Dit is een fastfood-zaak. De focus ligt op snelle bediening, zitplaatsen zijn vaak beperkt en functioneel" + }, + "1": { + "then": "Dit is een restaurant. De focus ligt op een aangename ervaring waar je aan tafel wordt bediend" + } + }, + "question": "Wat voor soort zaak is dit?" + }, + "Name": { + "question": "Wat is de naam van deze eetgelegenheid?", + "render": "De naam van deze eetgelegeheid is {name}" + }, + "Takeaway": { + "mappings": { + "0": { + "then": "Hier is enkel afhaal mogelijk" + }, + "1": { + "then": "Eten kan hier afgehaald worden" + }, + "2": { + "then": "Hier is geen afhaalmogelijkheid" + } + }, + "question": "Biedt deze zaak een afhaalmogelijkheid aan?" + }, + "Vegan (no friture)": { + "mappings": { + "0": { + "then": "Geen veganistische opties beschikbaar" + }, + "1": { + "then": "Beperkte veganistische opties zijn beschikbaar" + }, + "2": { + "then": "Veganistische opties zijn beschikbaar" + }, + "3": { + "then": "Enkel veganistische opties zijn beschikbaar" + } + }, + "question": "Heeft deze eetgelegenheid een veganistische optie?" + }, + "Vegetarian (no friture)": { + "mappings": { + "0": { + "then": "Geen vegetarische opties beschikbaar" + }, + "1": { + "then": "Beperkte vegetarische opties zijn beschikbaar" + }, + "2": { + "then": "Vegetarische opties zijn beschikbaar" + }, + "3": { + "then": "Enkel vegetarische opties zijn beschikbaar" + } + }, + "question": "Heeft deze eetgelegenheid een vegetarische optie?" + }, + "friture-oil": { + "mappings": { + "0": { + "then": "Bakt in plantaardige olie" + }, + "1": { + "then": "Dierlijk vet" + } + }, + "question": "Bakt deze frituur met dierlijk vet of met plantaardige olie?" + }, + "friture-take-your-container": { + "mappings": { + "0": { + "then": "Je mag je eigen containers meenemen om je bestelling in mee te nemen en zo minder afval te maken" + }, + "1": { + "then": "Je mag geen eigen containers meenemen om je bestelling in mee te nemen" + }, + "2": { + "then": "Je moet je eigen containers meenemen om je bestelling in mee te nemen." + } + }, + "question": "Als je je eigen container (bv. kookpot of kleine potjes voor saus) meeneemt, gebruikt de frituur deze dan om je bestelling in te doen?" + }, + "friture-vegan": { + "mappings": { + "0": { + "then": "Er zijn veganistische snacks aanwezig" + }, + "1": { + "then": "Slechts enkele veganistische snacks" + }, + "2": { + "then": "Geen veganistische snacks beschikbaar" + } + }, + "question": "Heeft deze frituur veganistische snacks?" + }, + "friture-vegetarian": { + "mappings": { + "0": { + "then": "Er zijn vegetarische snacks aanwezig" + }, + "1": { + "then": "Slechts enkele vegetarische snacks" + }, + "2": { + "then": "Geen vegetarische snacks beschikbaar" + } + }, + "question": "Heeft deze frituur vegetarische snacks?" + }, + "halal (no friture)": { + "mappings": { + "0": { + "then": "Er zijn geen halal opties aanwezig" + }, + "1": { + "then": "Er zijn een beperkt aantal halal opties" + }, + "2": { + "then": "Halal menu verkrijgbaar" + }, + "3": { + "then": "Enkel halal opties zijn beschikbaar" + } + }, + "question": "Heeft dit restaurant halal opties?" + } + }, + "title": { + "mappings": { + "0": { + "then": "Restaurant {name}" + }, + "1": { + "then": "Fastfood-zaak {name}" + }, + "2": { + "then": "Fastfood-zaak" + } + }, + "render": "Eetgelegenheid" + } + }, + "ghost_bike": { + "name": "Witte Fietsen", + "presets": { + "0": { + "title": "Witte fiets" + } + }, + "tagRenderings": { + "ghost-bike-explanation": { + "render": "Een Witte Fiets (of Spookfiets) is een aandenken aan een fietser die bij een verkeersongeval om het leven kwam. Het gaat over een witgeschilderde fiets die geplaatst werd in de buurt van het ongeval." + }, + "ghost_bike-inscription": { + "question": "Wat is het opschrift op deze witte fiets?", + "render": "{inscription}" + }, + "ghost_bike-name": { + "mappings": { + "0": { + "then": "De naam is niet aangeduid op de fiets" + } + }, + "question": "Aan wie is deze witte fiets een eerbetoon?
Respecteer privacy - voeg enkel een naam toe indien die op de fiets staat of gepubliceerd is. Eventueel voeg je enkel de voornaam toe.
", + "render": "Ter nagedachtenis van {name}" + }, + "ghost_bike-source": { + "question": "Op welke website kan men meer informatie vinden over de Witte fiets of over het ongeval?", + "render": "Meer informatie" + }, + "ghost_bike-start_date": { + "question": "Wanneer werd deze witte fiets geplaatst?", + "render": "Geplaatst op {start_date}" + } + }, + "title": { + "mappings": { + "0": { + "then": "Witte fiets ter nagedachtenis van {name}" + } + }, + "render": "Witte Fiets" + } + }, + "gps_track": { + "name": "Jouw afgelegde route", + "tagRenderings": { + "Privacy notice": { + "render": "Dit is waar je was sinds je deze website hebt geopened. Dit is enkel zichtbaar voor jou en niemand anders, je locatie wordt niet verstuurd" + } + } + }, + "grass_in_parks": { + "name": "Toegankelijke grasvelden in parken", + "title": { + "mappings": { + "0": { + "then": "{name}" + } + }, + "render": "Speelweide in een park" + } + }, + "information_board": { + "description": "Deze laag toont informatieborden in de publieke ruimte die uitleg geven over een bezienswaardigheid (bv. uitleg over het landschap, een ruine, een kaart van de omgeving, ...)", + "name": "Informatieborden", + "presets": { + "0": { + "title": "informatiebord" + } + }, + "title": { + "render": "Informatiebord" + } + }, + "map": { + "description": "Een permantent geinstalleerde kaart", + "name": "Kaarten", + "presets": { + "0": { + "description": "Voeg een ontbrekende kaart toe", + "title": "Kaart" + } + }, + "tagRenderings": { + "map-attribution": { + "mappings": { + "0": { + "then": "De OpenStreetMap-attributie is duidelijk aangegeven, zelf met vermelding van \"ODBL\" " + }, + "1": { + "then": "OpenStreetMap is duidelijk aangegeven, maar de licentievermelding ontbreekt" + }, + "2": { + "then": "OpenStreetMap was oorspronkelijk niet aangeduid, maar iemand plaatste er een sticker" + }, + "3": { + "then": "Er is geen attributie" + }, + "4": { + "then": "Er is geen attributie" + } + }, + "question": "Is de attributie voor OpenStreetMap aanwezig?" + }, + "map-map_source": { + "mappings": { + "0": { + "then": "Deze kaart is gebaseerd op OpenStreetMap" + } + }, + "question": "Op welke data is deze kaart gebaseerd?", + "render": "Deze kaart is gebaseerd op {map_source}" + } + }, + "title": { + "render": "Kaart" + } + }, + "nature_reserve": { + "description": "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.", + "filter": { + "0": { + "options": { + "0": { + "question": "Vrij te bezoeken" + } + } + }, + "1": { + "options": { + "0": { + "question": "Alle natuurgebieden" + }, + "1": { + "question": "Honden mogen vrij rondlopen" + }, + "2": { + "question": "Honden welkom aan de leiband" + } + } + } + }, + "name": "Natuurgebied", + "presets": { + "0": { + "description": "Voeg een ontbrekend, erkend natuurreservaat toe, bv. een gebied dat beheerd wordt door het ANB of natuurpunt", + "title": "natuurreservaat" + } + }, + "tagRenderings": { + "Access tag": { + "mappings": { + "0": { + "then": "Vrij toegankelijk" + }, + "1": { + "then": "Niet toegankelijk" + }, + "2": { + "then": "Niet toegankelijk, want privégebied" + }, + "3": { + "then": "Toegankelijk, ondanks dat het privegebied is" + }, + "4": { + "then": "Enkel toegankelijk met een gids of tijdens een activiteit" + }, + "5": { + "then": "Toegankelijk mits betaling" + } + }, + "question": "Is dit gebied toegankelijk?", + "render": "De toegankelijkheid van dit gebied is: {access:description}" + }, + "Curator": { + "question": "Wie is de conservator van dit gebied?
Respecteer privacy - geef deze naam enkel als die duidelijk is gepubliceerd", + "render": "{curator} is de beheerder van dit gebied" + }, + "Dogs?": { + "mappings": { + "0": { + "then": "Honden moeten aan de leiband" + }, + "1": { + "then": "Honden zijn niet toegestaan" + }, + "2": { + "then": "Honden zijn welkom en mogen vrij rondlopen" + } + }, + "question": "Zijn honden toegelaten in dit gebied?" + }, + "Editable description": { + "question": "Is er extra info die je kwijt wil?", + "render": "Extra info: {description:0}" + }, + "Email": { + "question": "Waar kan men naartoe emailen voor vragen en meldingen van dit natuurgebied?
Respecteer privacy - geef enkel persoonlijke emailadressen als deze elders zijn gepubliceerd", + "render": "{email}" + }, + "Name tag": { + "mappings": { + "0": { + "then": "Dit gebied heeft geen naam" + } + }, + "question": "Wat is de naam van dit gebied?", + "render": "Dit gebied heet {name}" + }, + "Non-editable description": { + "render": "Extra info: {description}" + }, + "Operator tag": { + "mappings": { + "0": { + "then": "Dit gebied wordt beheerd door Natuurpunt" + }, + "1": { + "then": "Dit gebied wordt beheerd door {operator}" + }, + "2": { + "then": "Dit gebied wordt beheerd door het Agentschap Natuur en Bos" + } + }, + "question": "Wie beheert dit gebied?", + "render": "Beheer door {operator}" + }, + "Surface area": { + "render": "Totale oppervlakte: {_surface:ha}Ha" + }, + "phone": { + "question": "Waar kan men naartoe bellen voor vragen en meldingen van dit natuurgebied?
Respecteer privacy - geef enkel persoonlijke telefoonnummers als deze elders zijn gepubliceerd" + } + }, + "title": { + "mappings": { + "0": { + "then": "{name}" + } + }, + "render": "Natuurgebied" + } + }, + "observation_tower": { + "description": "Torens om van het uitzicht te genieten", + "name": "Uitkijktorens", + "tagRenderings": { + "Fee": { + "mappings": { + "0": { + "then": "Gratis te bezoeken" + } + }, + "question": "Hoeveel moet men betalen om deze toren te bezoeken?", + "render": "Deze toren bezoeken kost {charge}" + }, + "Height": { + "question": "Hoe hoog is deze toren?", + "render": "Deze toren is {height} hoog" + }, + "Operator": { + "question": "Wie onderhoudt deze toren?", + "render": "Wordt onderhouden door {operator}" + }, + "access": { + "mappings": { + "0": { + "then": "Deze toren is publiek toegankelijk" + }, + "1": { + "then": "Deze toren can enkel bezocht worden met een gids" + } + }, + "question": "Is deze toren publiek toegankelijk?" + }, + "elevator": { + "mappings": { + "0": { + "then": "Deze toren heeft een lift die bezoekers naar de top van de toren brengt" + }, + "1": { + "then": "Deze toren heeft geen lift" + } + }, + "question": "Heeft deze toren een lift?" + }, + "name": { + "mappings": { + "0": { + "then": "Deze toren heeft geen specifieke naam" + } + }, + "question": "Heeft deze toren een naam?", + "render": "Deze toren heet {name}" + }, + "step_count": { + "question": "Hoeveel treden moet men beklimmen op de top van de toren te bereiken?", + "render": "Deze toren heeft {step_count} traptredes" + } + }, + "title": { + "mappings": { + "0": { + "then": "{name}" + } + }, + "render": "Uitkijktoren" + }, + "units": { + "0": { + "applicableUnits": { + "0": { + "human": " meter" + } + } + } + } + }, + "parking": { + "description": "Deze laag toont autoparkings", + "name": "Parking", + "presets": { + "0": { + "title": "parking voor auto's" + } + }, + "title": { + "render": "Parking voor auto's" + } + }, + "picnic_table": { + "description": "Deze laag toont picknicktafels", + "name": "Picknicktafels", + "presets": { + "0": { + "title": "picnic-tafel" + } + }, + "tagRenderings": { + "picnic_table-material": { + "mappings": { + "0": { + "then": "Deze picknicktafel is gemaakt uit hout" + }, + "1": { + "then": "Deze picknicktafel is gemaakt uit beton" + } + }, + "question": "Van welk materiaal is deze picknicktafel gemaakt?", + "render": "Deze picknicktafel is gemaakt van {material}" + } + }, + "title": { + "render": "Picknicktafel" + } + }, + "play_forest": { + "description": "Een speelbos is een vrij toegankelijke zone in een bos", + "name": "Speelbossen", + "title": { + "mappings": { + "0": { + "then": "{name}" + }, + "1": { + "then": "Speelbos {name}" + } + }, + "render": "Speelbos" + } + }, + "playground": { + "description": "Speeltuinen", + "name": "Speeltuinen", + "presets": { + "0": { + "title": "speeltuin" + } + }, + "tagRenderings": { + "Playground-wheelchair": { + "mappings": { + "0": { + "then": "Geheel toegankelijk voor rolstoelgebruikers" + }, + "1": { + "then": "Beperkt toegankelijk voor rolstoelgebruikers" + }, + "2": { + "then": "Niet toegankelijk voor rolstoelgebruikers" + } + }, + "question": "Is deze speeltuin toegankelijk voor rolstoelgebruikers?" + }, + "playground-access": { + "mappings": { + "0": { + "then": "Vrij toegankelijk voor het publiek" + }, + "1": { + "then": "Enkel toegankelijk voor klanten van de bijhorende zaak" + }, + "2": { + "then": "Enkel toegankelijk voor scholieren van de bijhorende school" + }, + "3": { + "then": "Niet vrij toegankelijk" + } + }, + "question": "Is deze speeltuin vrij toegankelijk voor het publiek?" + }, + "playground-email": { + "question": "Wie kan men emailen indien er problemen zijn met de speeltuin?", + "render": "De bevoegde dienst kan bereikt worden via {email}" + }, + "playground-lit": { + "mappings": { + "0": { + "then": "Deze speeltuin is 's nachts verlicht" + }, + "1": { + "then": "Deze speeltuin is 's nachts niet verlicht" + } + }, + "question": "Is deze speeltuin 's nachts verlicht?" + }, + "playground-max_age": { + "question": "Wat is de maximaal toegestane leeftijd voor deze speeltuin?", + "render": "Toegankelijk tot {max_age}" + }, + "playground-min_age": { + "question": "Wat is de minimale leeftijd om op deze speeltuin te mogen?", + "render": "Toegankelijk vanaf {min_age} jaar oud" + }, + "playground-opening_hours": { + "mappings": { + "0": { + "then": "Van zonsopgang tot zonsondergang" + }, + "1": { + "then": "Dag en nacht toegankelijk" + } + }, + "question": "Op welke uren is deze speeltuin toegankelijk?" + }, + "playground-operator": { + "question": "Wie beheert deze speeltuin?", + "render": "Beheer door {operator}" + }, + "playground-phone": { + "question": "Wie kan men bellen indien er problemen zijn met de speeltuin?", + "render": "De bevoegde dienst kan getelefoneerd worden via {phone}" + }, + "playground-surface": { + "mappings": { + "0": { + "then": "De ondergrond is gras" + }, + "1": { + "then": "De ondergrond is zand" + }, + "2": { + "then": "De ondergrond bestaat uit houtsnippers" + }, + "3": { + "then": "De ondergrond bestaat uit stoeptegels" + }, + "4": { + "then": "De ondergrond is asfalt" + }, + "5": { + "then": "De ondergrond is beton" + }, + "6": { + "then": "De ondergrond is onverhard" + }, + "7": { + "then": "De ondergrond is verhard" + } + }, + "question": "Wat is de ondergrond van deze speeltuin?
Indien er verschillende ondergronden zijn, neem de meest voorkomende", + "render": "De ondergrond is {surface}" + } + }, + "title": { + "mappings": { + "0": { + "then": "Speeltuin {name}" + } + }, + "render": "Speeltuin" + } + }, + "public_bookcase": { + "description": "Een straatkastje met boeken voor iedereen", + "filter": { + "2": { + "options": { + "0": { + "question": "Binnen of buiten" + } + } + } + }, + "name": "Boekenruilkastjes", + "presets": { + "0": { + "title": "Boekenruilkast" + } + }, + "tagRenderings": { + "bookcase-booktypes": { + "mappings": { + "0": { + "then": "Voornamelijk kinderboeken" + }, + "1": { + "then": "Voornamelijk boeken voor volwassenen" + }, + "2": { + "then": "Boeken voor zowel kinderen als volwassenen" + } + }, + "question": "Voor welke doelgroep zijn de meeste boeken in dit boekenruilkastje?" + }, + "bookcase-is-accessible": { + "mappings": { + "0": { + "then": "Publiek toegankelijk" + }, + "1": { + "then": "Enkel toegankelijk voor klanten" + } + }, + "question": "Is dit boekenruilkastje publiek toegankelijk?" + }, + "bookcase-is-indoors": { + "mappings": { + "0": { + "then": "Dit boekenruilkastje staat binnen" + }, + "1": { + "then": "Dit boekenruilkastje staat buiten" + }, + "2": { + "then": "Dit boekenruilkastje staat buiten" + } + }, + "question": "Staat dit boekenruilkastje binnen of buiten?" + }, + "public_bookcase-brand": { + "mappings": { + "0": { + "then": "Deel van het netwerk 'Little Free Library'" + }, + "1": { + "then": "Dit boekenruilkastje maakt geen deel uit van een netwerk" + } + }, + "question": "Is dit boekenruilkastje deel van een netwerk?", + "render": "Dit boekenruilkastje is deel van het netwerk {brand}" + }, + "public_bookcase-capacity": { + "question": "Hoeveel boeken passen er in dit boekenruilkastje?", + "render": "Er passen {capacity} boeken" + }, + "public_bookcase-name": { + "mappings": { + "0": { + "then": "Dit boekenruilkastje heeft geen naam" + } + }, + "question": "Wat is de naam van dit boekenruilkastje?", + "render": "De naam van dit boekenruilkastje is {name}" + }, + "public_bookcase-operator": { + "question": "Wie is verantwoordelijk voor dit boekenruilkastje?", + "render": "Onderhouden door {operator}" + }, + "public_bookcase-ref": { + "mappings": { + "0": { + "then": "Dit boekenruilkastje maakt geen deel uit van een netwerk" + } + }, + "question": "Wat is het referentienummer van dit boekenruilkastje?", + "render": "Het referentienummer binnen {brand} is {ref}" + }, + "public_bookcase-start_date": { + "question": "Op welke dag werd dit boekenruilkastje geinstalleerd?", + "render": "Geplaatst op {start_date}" + }, + "public_bookcase-website": { + "question": "Is er een website over dit boekenruilkastje?", + "render": "Meer info op de website" + } + }, + "title": { + "mappings": { + "0": { + "then": "Boekenruilkast {name}" + } + }, + "render": "Boekenruilkast" + } + }, + "recycling": { + "description": "Een laag met recyclagingcontainers en -centrums", + "filter": { + "0": { + "options": { + "0": { + "question": "Op dit moment open" + } + } + }, + "1": { + "options": { + "0": { + "question": "Alle recyclingtypes" + }, + "1": { + "question": "Recycling van batterijen" + }, + "2": { + "question": "Recycling van drankpakken" + }, + "3": { + "question": "Recycling van blikken" + }, + "4": { + "question": "Recycling van kleding" + }, + "5": { + "question": "Recycling van frituurvet" + }, + "6": { + "question": "Recycling van motorolie" + }, + "7": { + "question": "Recycling van groen afval" + }, + "8": { + "question": "Recycling van glazen flessen" + }, + "9": { + "question": "Recycling van glas" + }, + "10": { + "question": "Recycling van kranten" + }, + "11": { + "question": "Recycling van papier" + }, + "12": { + "question": "Recycling van plastic flessen" + }, + "13": { + "question": "Recycling van plastic verpakking" + }, + "14": { + "question": "Recycling van plastic" + }, + "15": { + "question": "Recycling van oud metaal" + }, + "16": { + "question": "Recycling van kleine elektrische apparaten" + }, + "17": { + "question": "Recycling van restafval" + } + } + } + }, + "name": "Recycling", + "presets": { + "0": { + "title": "recycling container" + }, + "1": { + "title": "recycling centre" + } + }, + "tagRenderings": { + "container-location": { + "mappings": { + "0": { + "then": "Dit is een ondergrondse container" + }, + "1": { + "then": "Deze container bevindt zich binnen" + }, + "2": { + "then": "Deze container is buiten" + } + }, + "question": "Waar bevindt deze container zich?" + }, + "opening_hours": { + "mappings": { + "0": { + "then": "24/7" + } + }, + "question": "Wat zijn de openingstijden van deze recyclingfaciliteit?" + }, + "operator": { + "question": "Wat is de beheerder van deze recyclingfaciliteit?", + "render": "Deze recyclingfaciliteit wordt beheerd door {operator}" + }, + "recycling-accepts": { + "mappings": { + "0": { + "then": "Batterijen kunnen hier gerecycled worden" + }, + "1": { + "then": "Drankpakken kunnen hier gerecycled worden" + }, + "2": { + "then": "Blikken kunnen hier gerecycled worden" + }, + "3": { + "then": "Kleren kunnen hier gerecycled worden" + }, + "4": { + "then": "Frituurvet kan hier gerecycled worden" + }, + "5": { + "then": "Motorolie kan hier gerecycled worden" + }, + "6": { + "then": "Groen afval kan hier gerecycled worden" + }, + "7": { + "then": "Organisch afval kan hier gerecycled worden" + }, + "8": { + "then": "Glazen flessen kunnen hier gerecycled worden" + }, + "9": { + "then": "Glas kan hier gerecycled worden" + }, + "10": { + "then": "Kranten kunnen hier gerecycled worden" + }, + "11": { + "then": "Papier kan hier gerecycled worden" + }, + "12": { + "then": "Plastic flessen kunnen hier gerecycled worden" + }, + "13": { + "then": "Plastic verpakking kan hier gerecycled worden" + }, + "14": { + "then": "Plastic kan hier gerecycled worden" + }, + "15": { + "then": "Oud metaal kan hier gerecycled worden" + }, + "16": { + "then": "Schoenen kunnen hier gerecycled worden" + }, + "17": { + "then": "Kleine elektrische apparaten kunnen hier gerecycled worden" + }, + "18": { + "then": "Kleine elektrische apparaten kunnen hier gerecycled worden" + }, + "19": { + "then": "Restafval kan hier gerecycled worden" + } + }, + "question": "Wat kan hier gerecycled worden?" + }, + "recycling-centre-name": { + "mappings": { + "0": { + "then": "Dit recyclagecentrum heeft geen specifieke naam" + } + }, + "question": "Wat is de naam van dit recyclagecentrum?", + "render": "Dit recyclagecentrum heet {name}" + }, + "recycling-type": { + "mappings": { + "0": { + "then": "Dit is een recyclingcontainer" + }, + "1": { + "then": "Dit is een recyclingcentrum" + }, + "2": { + "then": "Afvalcontainer voor restafval" + } + }, + "question": "Wat voor soort recycling is dit?" + } + }, + "title": { + "mappings": { + "0": { + "then": "Recyclingcentrum" + }, + "1": { + "then": "Recyclingcontainer" + }, + "2": { + "then": "Recyclingcontainer" + } + }, + "render": "Recyclingfaciliteit" + } + }, + "shops": { + "description": "Een winkel", + "name": "Winkel", + "presets": { + "0": { + "description": "Voeg een nieuwe winkel toe", + "title": "Winkel" + } + }, + "tagRenderings": { + "shops-email": { + "question": "Wat is het e-mailadres van deze winkel?", + "render": "{email}" + }, + "shops-name": { + "question": "Wat is de naam van deze winkel?" + }, + "shops-opening_hours": { + "question": "Wat zijn de openingsuren van deze winkel?", + "render": "{opening_hours_table(opening_hours)}" + }, + "shops-phone": { + "question": "Wat is het telefoonnummer?", + "render": "{phone}" + }, + "shops-shop": { + "mappings": { + "0": { + "then": "Gemakswinkel" + }, + "1": { + "then": "Supermarkt" + }, + "2": { + "then": "Kledingwinkel" + }, + "3": { + "then": "Kapper" + }, + "4": { + "then": "Bakkerij" + }, + "5": { + "then": "Autogarage" + }, + "6": { + "then": "Autodealer" + } + } + }, + "shops-website": { + "question": "Wat is de website van deze winkel?" + } + }, + "title": { + "render": "Winkel" + } + }, + "slow_roads": { + "name": "Paadjes, trage wegen en autoluwe straten", + "tagRenderings": { + "explanation": { + "mappings": { + "1": { + "then": "Dit is een brede, autovrije straat" + }, + "2": { + "then": "Dit is een voetpaadje" + }, + "3": { + "then": "Dit is een wegeltje of bospad" + }, + "4": { + "then": "Dit is een ruiterswegel" + }, + "5": { + "then": "Dit is een tractorspoor of weg om landbouwgrond te bereikken" + } + } + }, + "slow_roads-surface": { + "mappings": { + "0": { + "then": "De ondergrond is gras" + }, + "1": { + "then": "De ondergrond is aarde" + }, + "2": { + "then": "De ondergrond is onverhard" + }, + "3": { + "then": "De ondergrond is zand" + }, + "4": { + "then": "De ondergrond bestaat uit stoeptegels" + }, + "5": { + "then": "De ondergrond is asfalt" + }, + "6": { + "then": "De ondergrond is beton" + }, + "7": { + "then": "De ondergrond is verhard" + } + }, + "question": "Wat is de wegverharding van dit pad?", + "render": "De ondergrond is {surface}" + } + }, + "title": { + "mappings": { + "0": { + "then": "{name}" + }, + "1": { + "then": "Voetpad" + }, + "2": { + "then": "Fietspad" + }, + "3": { + "then": "Voetgangersstraat" + }, + "4": { + "then": "Woonerf" + } + }, + "render": "Trage weg" + } + }, + "sport_pitch": { + "description": "Een sportterrein", + "name": "Sportterrein", + "presets": { + "0": { + "title": "Ping-pong tafel" + }, + "1": { + "title": "Sportterrein" + } + }, + "tagRenderings": { + "sport-pitch-access": { + "mappings": { + "0": { + "then": "Publiek toegankelijk" + }, + "1": { + "then": "Beperkt toegankelijk (enkel na reservatie, tijdens bepaalde uren, ...)" + }, + "2": { + "then": "Enkel toegankelijk voor leden van de bijhorende sportclub" + }, + "3": { + "then": "Privaat en niet toegankelijk" + } + }, + "question": "Is dit sportterrein publiek toegankelijk?" + }, + "sport-pitch-reservation": { + "mappings": { + "0": { + "then": "Reserveren is verplicht om gebruik te maken van dit sportterrein" + }, + "1": { + "then": "Reserveren is sterk aangeraden om gebruik te maken van dit sportterrein" + }, + "2": { + "then": "Reserveren is mogelijk, maar geen voorwaarde" + }, + "3": { + "then": "Reserveren is niet mogelijk" + } + }, + "question": "Moet men reserveren om gebruik te maken van dit sportveld?" + }, + "sport_pitch-email": { + "question": "Wat is het email-adres van de bevoegde dienst of uitbater?" + }, + "sport_pitch-opening_hours": { + "mappings": { + "1": { + "then": "24/7 toegankelijk" + } + }, + "question": "Wanneer is dit sportveld toegankelijk?" + }, + "sport_pitch-phone": { + "question": "Wat is het telefoonnummer van de bevoegde dienst of uitbater?" + }, + "sport_pitch-sport": { + "mappings": { + "0": { + "then": "Hier kan men basketbal spelen" + }, + "1": { + "then": "Hier kan men voetbal spelen" + }, + "2": { + "then": "Dit is een pingpongtafel" + }, + "3": { + "then": "Hier kan men tennis spelen" + }, + "4": { + "then": "Hier kan men korfbal spelen" + }, + "5": { + "then": "Hier kan men basketbal beoefenen" + } + }, + "question": "Welke sporten kan men hier beoefenen?", + "render": "Hier kan men {sport} beoefenen" + }, + "sport_pitch-surface": { + "mappings": { + "0": { + "then": "De ondergrond is gras" + }, + "1": { + "then": "De ondergrond is zand" + }, + "2": { + "then": "De ondergrond bestaat uit stoeptegels" + }, + "3": { + "then": "De ondergrond is asfalt" + }, + "4": { + "then": "De ondergrond is beton" + } + }, + "question": "Wat is de ondergrond van dit sportveld?", + "render": "De ondergrond is {surface}" + } + }, + "title": { + "render": "Sportterrein" + } + }, + "street_lamps": { + "name": "Straatlantaarns", + "presets": { + "0": { + "title": "straatlantaarn" + } + }, + "tagRenderings": { + "colour": { + "mappings": { + "0": { + "then": "Deze lantaarn geeft wit licht" + }, + "1": { + "then": "Deze lantaarn geeft groen licht" + }, + "2": { + "then": "Deze lantaarn geeft oranje licht" + } + }, + "question": "Wat voor kleur licht geeft deze lantaarn?", + "render": "Deze lantaarn geeft {light:colour} licht" + }, + "count": { + "mappings": { + "0": { + "then": "Deze lantaarn heeft 1 lamp" + }, + "1": { + "then": "Deze lantaarn heeft 2 lampen" + } + }, + "question": "Hoeveel lampen heeft deze lantaarn?", + "render": "Deze lantaarn heeft {light:count} lampen" + }, + "direction": { + "question": "Waar is deze lamp heengericht?", + "render": "Deze lantaarn is gericht naar {light:direction}" + }, + "lamp_mount": { + "mappings": { + "0": { + "then": "Deze lantaarn zit boven op een rechte paal" + }, + "1": { + "then": "Deze lantaarn zit aan het eind van een gebogen paal" + } + }, + "question": "Hoe zit deze lantaarn aan de paal?" + }, + "lit": { + "mappings": { + "0": { + "then": "Deze lantaarn is 's nachts verlicht" + }, + "1": { + "then": "Deze lantaarn is 24/7 verlicht" + }, + "2": { + "then": "Deze lantaarn is verlicht op basis van beweging" + }, + "3": { + "then": "Deze lantaarn is verlicht op verzoek (bijv. met een drukknop)" + } + }, + "question": "Wanneer is deze lantaarn verlicht?" + }, + "method": { + "mappings": { + "0": { + "then": "Deze lantaarn is elektrisch verlicht" + }, + "1": { + "then": "Deze lantaarn gebruikt LEDs" + }, + "2": { + "then": "Deze lantaarn gebruikt gloeilampen" + }, + "3": { + "then": "Deze lantaarn gebruikt halogeen verlichting" + }, + "4": { + "then": "Deze lantaarn gebruikt gasontladingslampen (onbekend type)" + }, + "5": { + "then": "Deze lantaarn gebruikt een kwiklamp (enigszins blauwachtig)" + }, + "6": { + "then": "Deze lantaarn gebruikt metaalhalidelampen" + }, + "7": { + "then": "Deze lantaarn gebruikt fluorescentieverlichting (TL en spaarlamp)" + }, + "8": { + "then": "Deze lantaarn gebruikt natriumlampen (onbekend type)" + }, + "9": { + "then": "Deze lantaarn gebruikt lagedruknatriumlampen (monochroom oranje)" + }, + "10": { + "then": "Deze lantaarn gebruikt hogedruknatriumlampen (oranje met wit)" + }, + "11": { + "then": "Deze lantaarn wordt verlicht met gas" + } + }, + "question": "Wat voor verlichting gebruikt deze lantaarn?" + }, + "ref": { + "question": "Wat is het nummer van deze straatlantaarn?", + "render": "Deze straatlantaarn heeft het nummer {ref}" + }, + "support": { + "mappings": { + "0": { + "then": "Deze lantaarn hangt aan kabels" + }, + "1": { + "then": "Deze lantaarn hangt aan een plafond" + }, + "2": { + "then": "Deze lantaarn zit in de grond" + }, + "3": { + "then": "Deze lantaarn zit op een korte paal (meestal < 1.5m)" + }, + "4": { + "then": "Deze lantaarn zit op een paal" + }, + "5": { + "then": "Deze lantaarn hangt direct aan de muur" + }, + "6": { + "then": "Deze lantaarn hangt aan de muur met een metalen balk" + } + }, + "question": "Hoe is deze straatlantaarn gemonteerd?" + } + }, + "title": { + "mappings": { + "0": { + "then": "Straatlantaarn {ref}" + } + }, + "render": "Straatlantaarn" + } + }, + "surveillance_camera": { + "name": "Bewakingscamera's", + "tagRenderings": { + "Camera type: fixed; panning; dome": { + "mappings": { + "0": { + "then": "Een vaste camera" + }, + "1": { + "then": "Een dome (bolvormige camera die kan draaien)" + }, + "2": { + "then": "Een camera die (met een motor) van links naar rechts kan draaien" + } + }, + "question": "Wat voor soort camera is dit?" + }, + "Level": { + "question": "Op welke verdieping bevindt deze camera zich?", + "render": "Bevindt zich op verdieping {level}" + }, + "Operator": { + "question": "Wie beheert deze bewakingscamera?", + "render": "Beheer door {operator}" + }, + "Surveillance type: public, outdoor, indoor": { + "mappings": { + "0": { + "then": "Bewaking van de publieke ruilmte, dus een straat, een brug, een park, een plein, een stationsgebouw, een publiek toegankelijke gang of tunnel..." + }, + "1": { + "then": "Een buitenruimte met privaat karakter (zoals een privé-oprit, een parking, tankstation, ...)" + }, + "2": { + "then": "Een private binnenruimte wordt bewaakt, bv. een winkel, een parkeergarage, ..." + } + }, + "question": "Wat soort bewaking wordt hier uitgevoerd?" + }, + "Surveillance:zone": { + "mappings": { + "0": { + "then": "Bewaakt een parking" + }, + "1": { + "then": "Bewaakt het verkeer" + }, + "2": { + "then": "Bewaakt een ingang" + }, + "3": { + "then": "Bewaakt een gang" + }, + "4": { + "then": "Bewaakt een perron of bushalte" + }, + "5": { + "then": "Bewaakt een winkel" + } + }, + "question": "Wat wordt hier precies bewaakt?", + "render": "Bewaakt een {surveillance:zone}" + }, + "camera:mount": { + "mappings": { + "0": { + "then": "Deze camera hangt aan een muur" + }, + "1": { + "then": "Deze camera staat op een paal" + }, + "2": { + "then": "Deze camera hangt aan het plafond" + } + }, + "question": "Hoe is deze camera geplaatst?", + "render": "Montage: {camera:mount}" + }, + "camera_direction": { + "mappings": { + "0": { + "then": "Filmt in kompasrichting {direction}" + } + }, + "question": "In welke geografische richting filmt deze camera?", + "render": "Filmt in kompasrichting {camera:direction}" + }, + "is_indoor": { + "mappings": { + "0": { + "then": "Deze camera bevindt zich binnen" + }, + "1": { + "then": "Deze camera bevindt zich buiten" + }, + "2": { + "then": "Deze camera bevindt zich waarschijnlijk buiten" + } + }, + "question": "Bevindt de bewaakte publieke ruimte camera zich binnen of buiten?" + } + }, + "title": { + "render": "Bewakingscamera" + } + }, + "toilet": { + "description": "Een laag die publieke toiletten toont", + "filter": { + "0": { + "options": { + "0": { + "question": "Rolstoel toegankelijk" + } + } + }, + "1": { + "options": { + "0": { + "question": "Heeft een luiertafel" + } + } + }, + "2": { + "options": { + "0": { + "question": "Gratis toegankelijk" + } + } + }, + "3": { + "options": { + "0": { + "question": "Nu geopened" + } + } + } + }, + "name": "Toiletten", + "presets": { + "0": { + "title": "publiek toilet" + }, + "1": { + "description": "Deze toiletten hebben op zijn minst één rolstoeltoegankelijke WC", + "title": "rolstoeltoegankelijke, publiek toilet" + } + }, + "tagRenderings": { + "Opening-hours": { + "mappings": { + "0": { + "then": "Altijd open" + } + }, + "question": "Wanneer zijn deze toiletten open?" + }, + "toilet-access": { + "mappings": { + "0": { + "then": "Publiek toegankelijk" + }, + "1": { + "then": "Enkel toegang voor klanten" + }, + "2": { + "then": "Niet toegankelijk" + }, + "3": { + "then": "Toegankelijk na het vragen van de sleutel" + }, + "4": { + "then": "Publiek toegankelijk" + } + }, + "question": "Zijn deze toiletten publiek toegankelijk?", + "render": "Toegankelijkheid is {access}" + }, + "toilet-changing_table:location": { + "mappings": { + "0": { + "then": "De luiertafel bevindt zich in de vrouwentoiletten " + }, + "1": { + "then": "De luiertafel bevindt zich in de herentoiletten " + }, + "2": { + "then": "De luiertafel bevindt zich in de rolstoeltoegankelijke toilet " + }, + "3": { + "then": "De luiertafel bevindt zich in een daartoe voorziene kamer " + } + }, + "question": "Waar bevindt de luiertafel zich?", + "render": "De luiertafel bevindt zich in {changing_table:location}" + }, + "toilet-charge": { + "question": "Hoeveel moet men betalen om deze toiletten te gebruiken?", + "render": "De toiletten gebruiken kost {charge}" + }, + "toilet-handwashing": { + "mappings": { + "0": { + "then": "Deze toiletten hebben een lavabo waar men de handen kan wassen" + }, + "1": { + "then": "Deze toiletten hebben geen lavabo waar men de handen kan wassen" + } + }, + "question": "Hebben deze toiletten een lavabo om de handen te wassen?" + }, + "toilet-has-paper": { + "mappings": { + "0": { + "then": "Deze toilet is voorzien van toiletpapier" + }, + "1": { + "then": "Je moet je eigen toiletpapier meebrengen naar deze toilet" + } + }, + "question": "Moet je je eigen toiletpapier meenemen naar deze toilet?" + }, + "toilets-changing-table": { + "mappings": { + "0": { + "then": "Er is een luiertafel" + }, + "1": { + "then": "Geen luiertafel" + } + }, + "question": "Is er een luiertafel beschikbaar?" + }, + "toilets-fee": { + "mappings": { + "0": { + "then": "Men moet betalen om deze toiletten te gebruiken" + }, + "1": { + "then": "Gratis te gebruiken" + } + }, + "question": "Zijn deze toiletten gratis te gebruiken?" + }, + "toilets-type": { + "mappings": { + "0": { + "then": "Er zijn enkel WC's om op te zitten" + }, + "1": { + "then": "Er zijn enkel urinoirs" + }, + "2": { + "then": "Er zijn enkel hurktoiletten" + }, + "3": { + "then": "Er zijn zowel urinoirs als zittoiletten" + } + }, + "question": "Welke toiletten zijn dit?" + }, + "toilets-wheelchair": { + "mappings": { + "0": { + "then": "Er is een toilet voor rolstoelgebruikers" + }, + "1": { + "then": "Niet toegankelijk voor rolstoelgebruikers" + } + }, + "question": "Is er een rolstoeltoegankelijke toilet voorzien?" + } + }, + "title": { + "render": "Toilet" + } + }, + "trail": { + "description": "Aangeduide wandeltochten", + "name": "Wandeltochten", + "tagRenderings": { + "Color": { + "mappings": { + "0": { + "then": "Blauwe wandeling" + }, + "1": { + "then": "Rode wandeling" + }, + "2": { + "then": "Groene wandeling" + }, + "3": { + "then": "Gele wandeling" + } + }, + "question": "Welke kleur heeft deze wandeling?", + "render": "Deze wandeling heeft kleur {colour}" + }, + "Name": { + "question": "Wat is de naam van deze wandeling?", + "render": "Deze wandeling heet {name}" + }, + "Operator tag": { + "mappings": { + "0": { + "then": "Dit gebied wordt beheerd door Natuurpunt" + }, + "1": { + "then": "Dit gebied wordt beheerd door {operator}" + } + }, + "question": "Wie beheert deze wandeltocht?", + "render": "Beheer door {operator}" + }, + "Wheelchair access": { + "mappings": { + "0": { + "then": "deze wandeltocht is toegankelijk met de rolstoel" + }, + "1": { + "then": "deze wandeltocht is niet toegankelijk met de rolstoel" + } + }, + "question": "Is deze wandeling toegankelijk met de rolstoel?" + }, + "pushchair access": { + "mappings": { + "0": { + "then": "deze wandeltocht is toegankelijk met de buggy" + }, + "1": { + "then": "deze wandeltocht is niet toegankelijk met de buggy" + } + }, + "question": "Is deze wandeltocht toegankelijk met de buggy?" + }, + "trail-length": { + "render": "Deze wandeling is {_length:km} kilometer lang" + } + }, + "title": { + "render": "Wandeltocht" + } + }, + "tree_node": { + "name": "Boom", + "presets": { + "0": { + "description": "Een boom van een soort die blaadjes heeft, bijvoorbeeld eik of populier.", + "title": "Loofboom" + }, + "1": { + "description": "Een boom van een soort met naalden, bijvoorbeeld den of spar.", + "title": "Naaldboom" + }, + "2": { + "description": "Wanneer je niet zeker bent of het nu een loof- of naaldboom is.", + "title": "Boom" + } + }, + "tagRenderings": { + "tree-decidouous": { + "mappings": { + "0": { + "then": "Bladverliezend: de boom is een periode van het jaar kaal." + }, + "1": { + "then": "Groenblijvend." + } + }, + "question": "Is deze boom groenblijvend of bladverliezend?" + }, + "tree-denotation": { + "mappings": { + "0": { + "then": "De boom valt op door zijn grootte of prominente locatie. Hij is nuttig voor navigatie." + }, + "1": { + "then": "De boom is een natuurlijk monument, bijvoorbeeld doordat hij bijzonder oud of van een waardevolle soort is." + }, + "2": { + "then": "De boom wordt voor landbouwdoeleinden gebruikt, bijvoorbeeld in een boomgaard." + }, + "3": { + "then": "De boom staat in een park of dergelijke (begraafplaats, schoolterrein, …)." + }, + "4": { + "then": "De boom staat in de tuin bij een woning/flatgebouw." + }, + "5": { + "then": "Dit is een laanboom." + }, + "6": { + "then": "De boom staat in een woonkern." + }, + "7": { + "then": "De boom staat buiten een woonkern." + } + }, + "question": "Hoe significant is deze boom? Kies het eerste antwoord dat van toepassing is." + }, + "tree-height": { + "mappings": { + "0": { + "then": "Hoogte: {height} m" + } + }, + "render": "Hoogte: {height}" + }, + "tree-heritage": { + "mappings": { + "0": { + "then": "Erkend als houtig erfgoed door Onroerend Erfgoed Vlaanderen" + }, + "1": { + "then": "Erkend als natuurlijk erfgoed door Directie Cultureel Erfgoed Brussel" + }, + "2": { + "then": "Erkend als erfgoed door een andere organisatie" + }, + "3": { + "then": "Niet erkend als erfgoed" + }, + "4": { + "then": "Erkend als erfgoed door een andere organisatie" + } + }, + "question": "Is deze boom erkend als erfgoed?" + }, + "tree-leaf_type": { + "mappings": { + "0": { + "then": "Loofboom" + }, + "1": { + "then": "Naaldboom" + }, + "2": { + "then": "Permanent bladloos" + } + }, + "question": "Is dit een naald- of loofboom?" + }, + "tree_node-name": { + "mappings": { + "0": { + "then": "De boom heeft geen naam." + } + }, + "question": "Heeft de boom een naam?", + "render": "Naam: {name}" + }, + "tree_node-ref:OnroerendErfgoed": { + "question": "Wat is het ID uitgegeven door Onroerend Erfgoed Vlaanderen?", + "render": "\"\"/ Onroerend Erfgoed-ID: {ref:OnroerendErfgoed}" + }, + "tree_node-wikidata": { + "question": "Wat is het Wikidata-ID van deze boom?", + "render": "\"\"/ Wikidata: {wikidata}" + } + }, + "title": { + "render": "Boom" + } + }, + "viewpoint": { + "description": "Een mooi uitzicht - ideaal om een foto toe te voegen wanneer iets niet in een andere categorie past", + "name": "Uitzicht", + "presets": { + "0": { + "title": "Uitzicht" + } + }, + "tagRenderings": { + "viewpoint-description": { + "question": "Zijn er bijzonderheden die je wilt toevoegen?" + } + }, + "title": { + "render": "Uitzicht" + } + }, + "village_green": { + "name": "Speelweide", + "title": { + "mappings": { + "0": { + "then": "{name}" + } + }, + "render": "Speelweide" + } + }, + "visitor_information_centre": { + "description": "Een bezoekerscentrum biedt informatie over een specifieke attractie of bezienswaardigheid waar het is gevestigd.", + "name": "Bezoekerscentrum", + "title": { + "mappings": { + "0": { + "then": "{name:nl}" + }, + "1": { + "then": "{name}" + } + }, + "render": "{name}" + } + }, + "waste_basket": { + "description": "Dit is een publieke vuilnisbak waar je je afval kan weggooien.", + "filter": { + "0": { + "options": { + "0": { + "question": "Alle soorten" + }, + "1": { + "question": "Vuilnisbak voor sigarettenpeuken" + }, + "2": { + "question": "Vuilnisbak voor (vervallen) medicatie en drugs" + }, + "3": { + "question": "Vuilnisbak voor hondenuitwerpselen" + }, + "4": { + "question": "Vuilnisbak voor zwerfvuil" + }, + "5": { + "question": "Vuilnisbak voor injectienaalden en andere scherpe voorwerpen" + }, + "6": { + "question": "Vuilnisbak voor plastic" + } + } + }, + "1": { + "options": { + "0": { + "question": "Vuilnisbak met verdeler voor hondenpoepzakjes" + } + } + } + }, + "mapRendering": { + "0": { + "iconSize": { + "mappings": { + "0": { + "then": "Vuilnisbak" + } + } + } + } + }, + "name": "Vuilnisbak", + "presets": { + "0": { + "title": "Vuilnisbak" + } + }, + "tagRenderings": { + "dispensing_dog_bags": { + "mappings": { + "0": { + "then": "Deze vuilnisbak heeft een verdeler voor hondenpoepzakjes" + }, + "1": { + "then": "Deze vuilnisbak heeft geen verdeler voor hondenpoepzakjes" + }, + "2": { + "then": "Deze vuilnisbak heeft waarschijnlijk geen verdeler voor hondenpoepzakjes" + } + }, + "question": "Heeft deze vuilnisbak een verdeler voor hondenpoepzakjes?" + }, + "waste-basket-waste-types": { + "mappings": { + "0": { + "then": "Een vuilnisbak voor zwerfvuil" + }, + "1": { + "then": "Een vuilnisbak voor zwerfvuil" + }, + "2": { + "then": "Een vuilnisbak specifiek voor hondenuitwerpselen" + }, + "3": { + "then": "Een vuilnisbak voor sigarettenpeuken" + }, + "4": { + "then": "Een vuilnisbak voor (vervallen) medicatie en drugs" + }, + "5": { + "then": "Een vuilnisbak voor injectienaalden en andere scherpe voorwerpen" + }, + "6": { + "then": "Een vuilnisbak voor plastic" + } + }, + "question": "Wat voor soort vuilnisbak is dit?" + } + }, + "title": { + "render": "Vuilnisbak" + } + }, + "waste_disposal": { + "tagRenderings": { + "disposal-location": { + "mappings": { + "0": { + "then": "Dit is een ondergrondse container" + }, + "1": { + "then": "Deze container bevindt zich binnen" + }, + "2": { + "then": "Deze container is buiten" + } + }, + "question": "Waar bevindt deze container zich?" + } + } + }, + "watermill": { + "description": "Watermolens", + "name": "Watermolens", + "tagRenderings": { + "Access tag": { + "mappings": { + "0": { + "then": "Vrij toegankelijk" + }, + "1": { + "then": "Niet toegankelijk" + }, + "2": { + "then": "Niet toegankelijk, want privégebied" + }, + "3": { + "then": "Toegankelijk, ondanks dat het privegebied is" + }, + "4": { + "then": "Enkel toegankelijk met een gids of tijdens een activiteit" + }, + "5": { + "then": "Toegankelijk mits betaling" + } + }, + "question": "Is dit gebied toegankelijk?", + "render": "De toegankelijkheid van dit gebied is: {access:description}" + }, + "Operator tag": { + "mappings": { + "0": { + "then": "Dit gebied wordt beheerd door Natuurpunt" + }, + "1": { + "then": "Dit gebied wordt beheerd door {operator}" + } + }, + "question": "Wie beheert dit pad?", + "render": "Beheer door {operator}" + } + }, + "title": { + "mappings": { + "0": { + "then": "{name:nl}" + }, + "1": { + "then": "{name}" + } + }, + "render": "Watermolens" } - }, - "render": "Watermolens" } - } } \ No newline at end of file diff --git a/langs/layers/pl.json b/langs/layers/pl.json index 9674e16c39..d91bb5b5cc 100644 --- a/langs/layers/pl.json +++ b/langs/layers/pl.json @@ -1,216 +1,298 @@ { - "artwork": { - "presets": { - "0": { - "title": "Dzieło sztuki" - } - }, - "title": { - "mappings": { - "0": { - "then": "Dzieło sztuki {name}" + "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" } - }, - "render": "Dzieło sztuki" - } - }, - "bench": { - "name": "Ławki", - "presets": { - "0": { - "title": "Ławka" - } }, - "tagRenderings": { - "bench-backrest": { - "mappings": { - "0": { - "then": "Oparcie: Tak" - }, - "1": { - "then": "Oparcie: Nie" - } + "artwork": { + "name": "Dzieła sztuki", + "presets": { + "0": { + "title": "Dzieło sztuki" + } }, - "question": "Czy ta ławka ma oparcie?" - }, - "bench-colour": { - "mappings": { - "0": { - "then": "Kolor: brązowy" - }, - "1": { - "then": "Kolor: zielony" - }, - "2": { - "then": "Kolor: szary" - }, - "3": { - "then": "Kolor: biały" - }, - "4": { - "then": "Kolor: czerwony" - }, - "5": { - "then": "Kolor: czarny" - }, - "6": { - "then": "Kolor: niebieski" - }, - "7": { - "then": "Kolor: żółty" - } + "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" + } }, - "question": "Jaki kolor ma ta ławka?", - "render": "Kolor: {colour}" - }, - "bench-direction": { - "question": "W jakim kierunku patrzysz siedząc na ławce?", - "render": "Siedząc na ławce, patrzy się w kierunku {direction}°." - }, - "bench-material": { - "mappings": { - "0": { - "then": "Materiał: drewno" - }, - "1": { - "then": "Materiał: metal" - }, - "2": { - "then": "Materiał: kamień" - }, - "3": { - "then": "Materiał: beton" - }, - "4": { - "then": "Materiał: plastik" - }, - "5": { - "then": "Materiał: stal" - } - }, - "question": "Z czego wykonana jest ławka (siedzisko)?", - "render": "Materiał: {material}" - }, - "bench-seats": { - "question": "Ile siedzeń ma ta ławka?", - "render": "{seats} siedzeń" - }, - "bench-survey:date": { - "question": "Kiedy ostatnio badano tę ławkę?", - "render": "Ławka ta była ostatnio badana w dniu {survey:date}" - } - }, - "title": { - "render": "Ławka" - } - }, - "bench_at_pt": { - "name": "Ławki na przystankach komunikacji miejskiej", - "tagRenderings": { - "bench_at_pt-name": { - "render": "{name}" - } - }, - "title": { - "mappings": { - "0": { - "then": "Ławka na przystanku komunikacji miejskiej" + "title": { + "mappings": { + "0": { + "then": "Dzieło sztuki {name}" + } + }, + "render": "Dzieło sztuki" } - }, - "render": "Ławka" - } - }, - "bicycle_library": { - "description": "Obiekt, w którym rowery można wypożyczyć na dłuższy okres" - }, - "bike_parking": { - "name": "Parking dla rowerów", - "presets": { - "0": { - "title": "Parking dla rowerów" - } }, - "tagRenderings": { - "Bicycle parking type": { - "question": "Jaki jest typ tego parkingu dla rowerów?", - "render": "Jest to parking rowerowy typu: {bicycle_parking}" - }, - "Underground?": { - "question": "Jaka jest względna lokalizacja tego parkingu rowerowego?" - } - }, - "title": { - "render": "Parking dla rowerów" - } - }, - "bike_repair_station": { - "presets": { - "0": { - "description": "Urządzenie do pompowania opon w stałym miejscu w przestrzeni publicznej.

Przykłady pompek rowerowych

", - "title": "Pompka do roweru" - }, - "1": { - "title": "Stacja naprawy rowerów i pompka" - } - }, - "tagRenderings": { - "Operational status": { - "mappings": { - "0": { - "then": "Pompka rowerowa jest zepsuta" - }, - "1": { - "then": "Pompka rowerowa jest sprawna" - } + "bench": { + "name": "Ławki", + "presets": { + "0": { + "title": "Ławka" + } }, - "question": "Czy pompka rowerowa jest nadal sprawna?" - }, - "bike_repair_station-electrical_pump": { - "mappings": { - "0": { - "then": "Pompa ręczna" - }, - "1": { - "then": "Pompka elektryczna" - } + "tagRenderings": { + "bench-backrest": { + "mappings": { + "0": { + "then": "Oparcie: Tak" + }, + "1": { + "then": "Oparcie: Nie" + } + }, + "question": "Czy ta ławka ma oparcie?" + }, + "bench-colour": { + "mappings": { + "0": { + "then": "Kolor: brązowy" + }, + "1": { + "then": "Kolor: zielony" + }, + "2": { + "then": "Kolor: szary" + }, + "3": { + "then": "Kolor: biały" + }, + "4": { + "then": "Kolor: czerwony" + }, + "5": { + "then": "Kolor: czarny" + }, + "6": { + "then": "Kolor: niebieski" + }, + "7": { + "then": "Kolor: żółty" + } + }, + "question": "Jaki kolor ma ta ławka?", + "render": "Kolor: {colour}" + }, + "bench-direction": { + "question": "W jakim kierunku patrzysz siedząc na ławce?", + "render": "Siedząc na ławce, patrzy się w kierunku {direction}°." + }, + "bench-material": { + "mappings": { + "0": { + "then": "Materiał: drewno" + }, + "1": { + "then": "Materiał: metal" + }, + "2": { + "then": "Materiał: kamień" + }, + "3": { + "then": "Materiał: beton" + }, + "4": { + "then": "Materiał: plastik" + }, + "5": { + "then": "Materiał: stal" + } + }, + "question": "Z czego wykonana jest ławka (siedzisko)?", + "render": "Materiał: {material}" + }, + "bench-seats": { + "question": "Ile siedzeń ma ta ławka?", + "render": "{seats} siedzeń" + }, + "bench-survey:date": { + "question": "Kiedy ostatnio badano tę ławkę?", + "render": "Ławka ta była ostatnio badana w dniu {survey:date}" + } }, - "question": "Czy jest to elektryczna pompka do roweru?" - }, - "bike_repair_station-manometer": { - "mappings": { - "0": { - "then": "Jest manometr" - }, - "1": { - "then": "Nie ma manometru" - }, - "2": { - "then": "Jest manometr, ale jest uszkodzony" - } - }, - "question": "Czy pompka posiada wskaźnik ciśnienia lub manometr?" - }, - "bike_repair_station-valves": { - "question": "Jakie zawory są obsługiwane?", - "render": "Ta pompka obsługuje następujące zawory: {valves}" - } - } - }, - "ghost_bike": { - "name": "Duch roweru", - "title": { - "render": "Duch roweru" - } - }, - "shops": { - "tagRenderings": { - "shops-shop": { - "mappings": { - "5": { - "then": "Warsztat samochodowy" - } + "title": { + "render": "Ławka" + } + }, + "bench_at_pt": { + "name": "Ławki na przystankach komunikacji miejskiej", + "tagRenderings": { + "bench_at_pt-name": { + "render": "{name}" + } + }, + "title": { + "mappings": { + "0": { + "then": "Ławka na przystanku komunikacji miejskiej" + } + }, + "render": "Ławka" + } + }, + "bicycle_library": { + "description": "Obiekt, w którym rowery można wypożyczyć na dłuższy okres" + }, + "bike_parking": { + "name": "Parking dla rowerów", + "presets": { + "0": { + "title": "Parking dla rowerów" + } + }, + "tagRenderings": { + "Bicycle parking type": { + "question": "Jaki jest typ tego parkingu dla rowerów?", + "render": "Jest to parking rowerowy typu: {bicycle_parking}" + }, + "Underground?": { + "question": "Jaka jest względna lokalizacja tego parkingu rowerowego?" + } + }, + "title": { + "render": "Parking dla rowerów" + } + }, + "bike_repair_station": { + "presets": { + "0": { + "description": "Urządzenie do pompowania opon w stałym miejscu w przestrzeni publicznej.", + "title": "pompka do roweru" + }, + "1": { + "title": "stacja naprawy rowerów i pompka" + } + }, + "tagRenderings": { + "Operational status": { + "mappings": { + "0": { + "then": "Pompka rowerowa jest zepsuta" + }, + "1": { + "then": "Pompka rowerowa jest sprawna" + } + }, + "question": "Czy pompka rowerowa jest nadal sprawna?" + }, + "bike_repair_station-electrical_pump": { + "mappings": { + "0": { + "then": "Pompa ręczna" + }, + "1": { + "then": "Pompka elektryczna" + } + }, + "question": "Czy jest to elektryczna pompka do roweru?" + }, + "bike_repair_station-manometer": { + "mappings": { + "0": { + "then": "Jest manometr" + }, + "1": { + "then": "Nie ma manometru" + }, + "2": { + "then": "Jest manometr, ale jest uszkodzony" + } + }, + "question": "Czy pompka posiada wskaźnik ciśnienia lub manometr?" + }, + "bike_repair_station-valves": { + "question": "Jakie zawory są obsługiwane?", + "render": "Ta pompka obsługuje następujące zawory: {valves}" + } + } + }, + "ghost_bike": { + "name": "Duch roweru", + "presets": { + "0": { + "title": "Duch roweru" + } + }, + "title": { + "render": "Duch roweru" + } + }, + "shops": { + "tagRenderings": { + "shops-shop": { + "mappings": { + "5": { + "then": "Warsztat samochodowy" + } + } + } } - } } - } } \ No newline at end of file diff --git a/langs/layers/pt.json b/langs/layers/pt.json index be98e00146..e917b77e6f 100644 --- a/langs/layers/pt.json +++ b/langs/layers/pt.json @@ -1,542 +1,599 @@ { - "artwork": { - "presets": { - "0": { - "title": "Obra de arte" - } - }, - "title": { - "mappings": { - "0": { - "then": "Obra de arte {name}" + "artwork": { + "description": "Diversas obras de arte", + "name": "Obras de arte", + "presets": { + "0": { + "title": "Obra de arte" + } + }, + "tagRenderings": { + "artwork-artist_name": { + "question": "Que artista criou isto?", + "render": "Criado por {artist_name}" + }, + "artwork-artwork_type": { + "mappings": { + "0": { + "then": "Arquitetura" + }, + "1": { + "then": "Mural" + }, + "2": { + "then": "Pintura" + }, + "3": { + "then": "Escultura" + }, + "4": { + "then": "Estátua" + }, + "5": { + "then": "Busto" + }, + "6": { + "then": "Pedra" + }, + "7": { + "then": "Instalação" + }, + "8": { + "then": "Graffiti" + }, + "9": { + "then": "Relevo" + }, + "10": { + "then": "Azulejo (azulejo decorativo espanhol e português)" + }, + "11": { + "then": "Ladrilhos" + } + }, + "question": "Qual é o tipo desta obra de arte?", + "render": "Isto é um(a) {artwork_type}" + }, + "artwork-website": { + "question": "Existe um site com mais informações sobre esta obra de arte?", + "render": "Mais informações neste site" + }, + "artwork-wikidata": { + "question": "Que entrada no Wikidata corresponde a esta obra de arte?", + "render": "Corresponde a {wikidata}" + } + }, + "title": { + "mappings": { + "0": { + "then": "Obra de arte {name}" + } + }, + "render": "Obra de arte" } - }, - "render": "Obra de arte" - } - }, - "bench": { - "name": "Bancos", - "presets": { - "0": { - "title": "banco" - } }, - "tagRenderings": { - "bench-backrest": { - "mappings": { - "0": { - "then": "Encosto: Sim" - }, - "1": { - "then": "Encosto: Não" - } + "bench": { + "name": "Bancos", + "presets": { + "0": { + "title": "banco" + } }, - "question": "Este assento tem um escosto?" - }, - "bench-colour": { - "mappings": { - "0": { - "then": "Cor: castanho" - }, - "1": { - "then": "Cor: verde" - }, - "2": { - "then": "Cor: cinzento" - }, - "3": { - "then": "Cor: branco" - }, - "4": { - "then": "Cor: vermelho" - }, - "5": { - "then": "Cor: preto" - }, - "6": { - "then": "Cor: azul" - }, - "7": { - "then": "Cor: amarelo" - } + "tagRenderings": { + "bench-backrest": { + "mappings": { + "0": { + "then": "Encosto: Sim" + }, + "1": { + "then": "Encosto: Não" + } + }, + "question": "Este assento tem um escosto?" + }, + "bench-colour": { + "mappings": { + "0": { + "then": "Cor: castanho" + }, + "1": { + "then": "Cor: verde" + }, + "2": { + "then": "Cor: cinzento" + }, + "3": { + "then": "Cor: branco" + }, + "4": { + "then": "Cor: vermelho" + }, + "5": { + "then": "Cor: preto" + }, + "6": { + "then": "Cor: azul" + }, + "7": { + "then": "Cor: amarelo" + } + }, + "question": "Qual a cor dessa bancada?", + "render": "Cor: {colour}" + }, + "bench-direction": { + "question": "Em que direção olha quando está sentado no banco?", + "render": "Ao sentar-se no banco, olha-se para {direction} °." + }, + "bench-material": { + "mappings": { + "0": { + "then": "Material: madeira" + }, + "1": { + "then": "Material: metal" + }, + "2": { + "then": "Material: pedra" + }, + "3": { + "then": "Material: concreto" + }, + "4": { + "then": "Material: plástico" + }, + "5": { + "then": "Material: aço" + } + }, + "question": "De que é feito o banco (assento)?", + "render": "Material: {material}" + }, + "bench-seats": { + "question": "Quantos assentos este banco tem?", + "render": "{seats} assentos" + }, + "bench-survey:date": { + "question": "Quando esta bancada foi pesquisada pela última vez?", + "render": "Esta bancada foi pesquisada pela última vez em {survey:date}" + } }, - "question": "Qual a cor dessa bancada?", - "render": "Cor: {colour}" - }, - "bench-direction": { - "question": "Em que direção olha quando está sentado no banco?", - "render": "Ao sentar-se no banco, olha-se para {direction} °." - }, - "bench-material": { - "mappings": { - "0": { - "then": "Material: madeira" - }, - "1": { - "then": "Material: metal" - }, - "2": { - "then": "Material: pedra" - }, - "3": { - "then": "Material: concreto" - }, - "4": { - "then": "Material: plástico" - }, - "5": { - "then": "Material: aço" - } - }, - "question": "De que é feito o banco (assento)?", - "render": "Material: {material}" - }, - "bench-seats": { - "question": "Quantos assentos este banco tem?", - "render": "{seats} assentos" - }, - "bench-survey:date": { - "question": "Quando esta bancada foi pesquisada pela última vez?", - "render": "Esta bancada foi pesquisada pela última vez em {survey:date}" - } - }, - "title": { - "render": "Banco" - } - }, - "bench_at_pt": { - "name": "Bancos em pontos de transporte público", - "tagRenderings": { - "bench_at_pt-name": { - "render": "{name}" - } - }, - "title": { - "mappings": { - "0": { - "then": "Banco em ponto de transporte público" - }, - "1": { - "then": "Banco em abrigo" + "title": { + "render": "Banco" } - }, - "render": "Banco" - } - }, - "bicycle_library": { - "description": "Uma instalação onde as bicicletas podem ser emprestadas por períodos mais longos", - "name": "Biblioteca de bicicleta", - "presets": { - "0": { - "title": "Biblioteca de bicicletas" - } }, - "tagRenderings": { - "bicycle-library-target-group": { - "mappings": { - "0": { - "then": "Bicicletas para crianças disponíveis" - }, - "1": { - "then": "Bicicletas para adulto disponíveis" - }, - "2": { - "then": "Bicicletas para deficientes físicos disponíveis" - } + "bench_at_pt": { + "name": "Bancos em pontos de transporte público", + "tagRenderings": { + "bench_at_pt-name": { + "render": "{name}" + } }, - "question": "Quem pode emprestar bicicletas aqui?" - }, - "bicycle_library-charge": { - "mappings": { - "0": { - "then": "Emprestar uma bicicleta é grátis" - }, - "1": { - "then": "Emprestar uma bicicleta custa €20/ano e €20 de garantia" - } - }, - "question": "Quanto custa um empréstimo de bicicleta?", - "render": "Custos de empréstimo de bicicleta {charge}" - }, - "bicycle_library-name": { - "question": "Qual o nome desta biblioteca de bicicleta?", - "render": "Esta biblioteca de bicicleta é chamada de {name}" - } - }, - "title": { - "render": "Biblioteca de bicicleta" - } - }, - "bicycle_tube_vending_machine": { - "name": "Máquina de venda automática de tubos de bicicleta", - "presets": { - "0": { - "title": "Máquina de venda automática de tubos de bicicleta" - } - }, - "tagRenderings": { - "Still in use?": { - "mappings": { - "0": { - "then": "Esta máquina de venda automática funciona" - }, - "1": { - "then": "Esta máquina de venda automática está quebrada" - }, - "2": { - "then": "Esta máquina de venda automática está fechada" - } - }, - "question": "Esta máquina de venda automática ainda está operacional?", - "render": "O estado operacional é: {operational_status}" - } - }, - "title": { - "render": "Máquina de venda automática de tubos de bicicleta" - } - }, - "bike_cafe": { - "name": "Café de bicicletas", - "presets": { - "0": { - "title": "Café de bicicleta" - } - }, - "tagRenderings": { - "bike_cafe-email": { - "question": "Qual o endereço de email de {name}?" - }, - "bike_cafe-name": { - "question": "Qual o nome deste café de bicicleta?", - "render": "Este café de bicicleta se chama {name}" - }, - "bike_cafe-opening_hours": { - "question": "Quando este café de bicicleta abre?" - }, - "bike_cafe-phone": { - "question": "Qual é o número de telefone de {name}?" - }, - "bike_cafe-repair-service": { - "mappings": { - "0": { - "then": "Este café de bicicleta conserta bicicletas" - }, - "1": { - "then": "Este café de bicicleta não conserta bicicletas" - } - }, - "question": "Este café de bicicleta conserta bicicletas?" - }, - "bike_cafe-repair-tools": { - "mappings": { - "0": { - "then": "Este café de bicicleta oferece ferramentas de reparo faça você mesmo" - }, - "1": { - "then": "Este café de bicicleta não oferece ferramentas de reparo faça você mesmo" - } - }, - "question": "Há ferramentas aqui para consertar a sua própria bicicleta?" - }, - "bike_cafe-website": { - "question": "Qual o website de {name}?" - } - }, - "title": { - "mappings": { - "0": { - "then": "Café de bicicleta {name}" + "title": { + "mappings": { + "0": { + "then": "Banco em ponto de transporte público" + }, + "1": { + "then": "Banco em abrigo" + } + }, + "render": "Banco" } - }, - "render": "Café de bicicleta" - } - }, - "bike_cleaning": { - "name": "Serviço de limpeza de bicicletas", - "presets": { - "0": { - "title": "Serviço de limpeza de bicicletas" - } }, - "title": { - "mappings": { - "0": { - "then": "Serviço de limpeza de bicicletas {name}" + "bicycle_library": { + "description": "Uma instalação onde as bicicletas podem ser emprestadas por períodos mais longos", + "name": "Biblioteca de bicicleta", + "presets": { + "0": { + "title": "Biblioteca de bicicletas" + } + }, + "tagRenderings": { + "bicycle-library-target-group": { + "mappings": { + "0": { + "then": "Bicicletas para crianças disponíveis" + }, + "1": { + "then": "Bicicletas para adulto disponíveis" + }, + "2": { + "then": "Bicicletas para deficientes físicos disponíveis" + } + }, + "question": "Quem pode emprestar bicicletas aqui?" + }, + "bicycle_library-charge": { + "mappings": { + "0": { + "then": "Emprestar uma bicicleta é grátis" + }, + "1": { + "then": "Emprestar uma bicicleta custa €20/ano e €20 de garantia" + } + }, + "question": "Quanto custa um empréstimo de bicicleta?", + "render": "Custos de empréstimo de bicicleta {charge}" + }, + "bicycle_library-name": { + "question": "Qual o nome desta biblioteca de bicicleta?", + "render": "Esta biblioteca de bicicleta é chamada de {name}" + } + }, + "title": { + "render": "Biblioteca de bicicleta" } - }, - "render": "Serviço de limpeza de bicicletas" - } - }, - "bike_parking": { - "name": "Estacionamento de bicicletas", - "presets": { - "0": { - "title": "Estacionamento de bicicletas" - } }, - "tagRenderings": { - "Access": { - "mappings": { - "0": { - "then": "Acessível ao público" - }, - "1": { - "then": "Acesso é principalmente para visitantes de uma empresa" - }, - "2": { - "then": "Acesso é limitado aos membros de uma escola, companhia ou organização" - } + "bicycle_tube_vending_machine": { + "name": "Máquina de venda automática de tubos de bicicleta", + "presets": { + "0": { + "title": "Máquina de venda automática de tubos de bicicleta" + } }, - "question": "Quem pode usar este estacionamento de bicicletas?", - "render": "{access}" - }, - "Bicycle parking type": { - "question": "Qual o tipo deste estacionamento de bicicletas?", - "render": "Este é um estacionamento de bicicletas do tipo: {bicycle_parking}" - }, - "Capacity": { - "render": "Lugar para {capacity} bicicletas" - }, - "Cargo bike capacity?": { - "question": "Quantas bicicletas de carga cabem neste estacionamento de bicicletas?", - "render": "Neste estacionamento cabem {capacity:cargo_bike} bicicletas de carga" - }, - "Cargo bike spaces?": { - "mappings": { - "0": { - "then": "Este estacionamento tem vagas para bicicletas de carga" - }, - "1": { - "then": "Este estacionamento tem vagas (oficiais) projetadas para bicicletas de carga." - }, - "2": { - "then": "Não tem permissão para estacionar bicicletas de carga" - } + "tagRenderings": { + "Still in use?": { + "mappings": { + "0": { + "then": "Esta máquina de venda automática funciona" + }, + "1": { + "then": "Esta máquina de venda automática está quebrada" + }, + "2": { + "then": "Esta máquina de venda automática está fechada" + } + }, + "question": "Esta máquina de venda automática ainda está operacional?", + "render": "O estado operacional é: {operational_status}" + } }, - "question": "O estacionamento de bicicletas tem vagas para bicicletas de carga?" - }, - "Is covered?": { - "mappings": { - "0": { - "then": "Este estacionamento é coberto (tem um telhado)" - }, - "1": { - "then": "Este estacionamento não é coberto" - } - }, - "question": "Este estacionamento é coberto? Também selecione \"coberto\" para estacionamentos internos." - }, - "Underground?": { - "mappings": { - "0": { - "then": "Estacionamento subterrâneo" - }, - "1": { - "then": "Estacionamento de superfície" - }, - "2": { - "then": "Estacionamento no telhado" - }, - "3": { - "then": "Estacionamento ao nível da superfície" - }, - "4": { - "then": "Estacionamento no telhado" - } - }, - "question": "Qual a localização relativa deste estacionamento de bicicletas?" - } + "title": { + "render": "Máquina de venda automática de tubos de bicicleta" + } }, - "title": { - "render": "Estacionamento de bicicletas" - } - }, - "bike_repair_station": { - "presets": { - "0": { - "description": "Um aparelho para encher os seus pneus num local fixa no espaço público

Exemplos de bombas de bicicletas

" - } + "bike_cafe": { + "name": "Café de bicicletas", + "presets": { + "0": { + "title": "Café de bicicleta" + } + }, + "tagRenderings": { + "bike_cafe-email": { + "question": "Qual o endereço de email de {name}?" + }, + "bike_cafe-name": { + "question": "Qual o nome deste café de bicicleta?", + "render": "Este café de bicicleta se chama {name}" + }, + "bike_cafe-opening_hours": { + "question": "Quando este café de bicicleta abre?" + }, + "bike_cafe-phone": { + "question": "Qual é o número de telefone de {name}?" + }, + "bike_cafe-repair-service": { + "mappings": { + "0": { + "then": "Este café de bicicleta conserta bicicletas" + }, + "1": { + "then": "Este café de bicicleta não conserta bicicletas" + } + }, + "question": "Este café de bicicleta conserta bicicletas?" + }, + "bike_cafe-repair-tools": { + "mappings": { + "0": { + "then": "Este café de bicicleta oferece ferramentas de reparo faça você mesmo" + }, + "1": { + "then": "Este café de bicicleta não oferece ferramentas de reparo faça você mesmo" + } + }, + "question": "Há ferramentas aqui para consertar a sua própria bicicleta?" + }, + "bike_cafe-website": { + "question": "Qual o website de {name}?" + } + }, + "title": { + "mappings": { + "0": { + "then": "Café de bicicleta {name}" + } + }, + "render": "Café de bicicleta" + } }, - "tagRenderings": { - "bike_repair_station-available-services": { - "mappings": { - "0": { - "then": "Há somente uma bomba presente" - }, - "1": { - "then": "Há somente ferramentas (chaves de fenda, alicates...) presentes" - }, - "2": { - "then": "Há tanto ferramentas e uma bomba presente" - } + "bike_cleaning": { + "name": "Serviço de limpeza de bicicletas", + "presets": { + "0": { + "title": "Serviço de limpeza de bicicletas" + } }, - "question": "Quais serviços estão disponíveis nesta estação de bicicletas?" - }, - "bike_repair_station-bike-chain-tool": { - "mappings": { - "0": { - "then": "Há uma ferramenta de corrente" - }, - "1": { - "then": "Não há uma ferramenta de corrente" - } + "title": { + "mappings": { + "0": { + "then": "Serviço de limpeza de bicicletas {name}" + } + }, + "render": "Serviço de limpeza de bicicletas" } - }, - "bike_repair_station-bike-stand": { - "mappings": { - "0": { - "then": "Há um gancho ou um suporte" - }, - "1": { - "then": "Não há um gancho ou um suporte" - } - } - }, - "bike_repair_station-electrical_pump": { - "mappings": { - "0": { - "then": "Bomba manual" - }, - "1": { - "then": "Bomba elétrica" - } - } - }, - "bike_repair_station-manometer": { - "mappings": { - "0": { - "then": "Há um manômetro" - }, - "1": { - "then": "Não há um manômetro" - }, - "2": { - "then": "Há um manômetro mas está quebrado" - } - } - }, - "bike_repair_station-opening_hours": { - "mappings": { - "0": { - "then": "Sempre aberto" - }, - "1": { - "then": "Sempre aberto" - } - } - }, - "bike_repair_station-operator": { - "question": "Quem faz a manutenção desta bomba de ciclo?", - "render": "Mantida por {operator}" - } }, - "title": { - "mappings": { - "0": { - "then": "Estação de reparo de bicicletas" + "bike_parking": { + "name": "Estacionamento de bicicletas", + "presets": { + "0": { + "title": "Estacionamento de bicicletas" + } }, - "1": { - "then": "Estação de reparo de bicicletas" + "tagRenderings": { + "Access": { + "mappings": { + "0": { + "then": "Acessível ao público" + }, + "1": { + "then": "Acesso é principalmente para visitantes de uma empresa" + }, + "2": { + "then": "Acesso é limitado aos membros de uma escola, companhia ou organização" + } + }, + "question": "Quem pode usar este estacionamento de bicicletas?", + "render": "{access}" + }, + "Bicycle parking type": { + "question": "Qual o tipo deste estacionamento de bicicletas?", + "render": "Este é um estacionamento de bicicletas do tipo: {bicycle_parking}" + }, + "Capacity": { + "render": "Lugar para {capacity} bicicletas" + }, + "Cargo bike capacity?": { + "question": "Quantas bicicletas de carga cabem neste estacionamento de bicicletas?", + "render": "Neste estacionamento cabem {capacity:cargo_bike} bicicletas de carga" + }, + "Cargo bike spaces?": { + "mappings": { + "0": { + "then": "Este estacionamento tem vagas para bicicletas de carga" + }, + "1": { + "then": "Este estacionamento tem vagas (oficiais) projetadas para bicicletas de carga." + }, + "2": { + "then": "Não tem permissão para estacionar bicicletas de carga" + } + }, + "question": "O estacionamento de bicicletas tem vagas para bicicletas de carga?" + }, + "Is covered?": { + "mappings": { + "0": { + "then": "Este estacionamento é coberto (tem um telhado)" + }, + "1": { + "then": "Este estacionamento não é coberto" + } + }, + "question": "Este estacionamento é coberto? Também selecione \"coberto\" para estacionamentos internos." + }, + "Underground?": { + "mappings": { + "0": { + "then": "Estacionamento subterrâneo" + }, + "1": { + "then": "Estacionamento de superfície" + }, + "2": { + "then": "Estacionamento no telhado" + }, + "3": { + "then": "Estacionamento ao nível da superfície" + } + }, + "question": "Qual a localização relativa deste estacionamento de bicicletas?" + } + }, + "title": { + "render": "Estacionamento de bicicletas" } - } - } - }, - "bike_shop": { - "description": "Uma loja que vende especificamente bicicletas ou itens relacionados", - "name": "Reparo/loja de bicicletas", - "tagRenderings": { - "bike_repair_rents-bikes": { - "mappings": { - "0": { - "then": "Esta loja aluga bicicletas" - }, - "1": { - "then": "Esta loja não aluga bicicletas" - } - }, - "question": "Esta loja aluga bicicletas?" - }, - "bike_repair_repairs-bikes": { - "mappings": { - "0": { - "then": "Esta loja conserta bicicletas" - }, - "1": { - "then": "Esta loja não conserta bicicletas" - }, - "2": { - "then": "Esta loja conserta bicicletas compradas aqui" - }, - "3": { - "then": "Esta loja conserta bicicletas de uma certa marca" - } - }, - "question": "Esta loja conserta bicicletas?" - }, - "bike_repair_sells-bikes": { - "mappings": { - "0": { - "then": "Esta loja vende bicicletas" - }, - "1": { - "then": "Esta loja não vende bicicletas" - } - }, - "question": "Esta loja vende bicicletas?" - }, - "bike_shop-email": { - "question": "Qual o endereço de email de {name}?" - }, - "bike_shop-is-bicycle_shop": { - "render": "Esta loja é especializada em vender {shop} e faz atividades relacionadas à bicicletas" - }, - "bike_shop-name": { - "question": "Qual o nome desta loja de bicicletas?", - "render": "Esta loja de bicicletas se chama {name}" - }, - "bike_shop-phone": { - "question": "Qual é o número de telefone de {name}?" - }, - "bike_shop-website": { - "question": "Qual o website de {name}?" - } }, - "title": { - "mappings": { - "0": { - "then": "Loja de equipamentos desportivos {name}" + "bike_repair_station": { + "presets": { + "0": { + "description": "Um aparelho para encher os seus pneus num local fixa no espaço público" + } }, - "2": { - "then": "Aluguel de bicicletas {name}" + "tagRenderings": { + "bike_repair_station-available-services": { + "mappings": { + "0": { + "then": "Há somente uma bomba presente" + }, + "1": { + "then": "Há somente ferramentas (chaves de fenda, alicates...) presentes" + }, + "2": { + "then": "Há tanto ferramentas e uma bomba presente" + } + }, + "question": "Quais serviços estão disponíveis nesta estação de bicicletas?" + }, + "bike_repair_station-bike-chain-tool": { + "mappings": { + "0": { + "then": "Há uma ferramenta de corrente" + }, + "1": { + "then": "Não há uma ferramenta de corrente" + } + } + }, + "bike_repair_station-bike-stand": { + "mappings": { + "0": { + "then": "Há um gancho ou um suporte" + }, + "1": { + "then": "Não há um gancho ou um suporte" + } + } + }, + "bike_repair_station-electrical_pump": { + "mappings": { + "0": { + "then": "Bomba manual" + }, + "1": { + "then": "Bomba elétrica" + } + } + }, + "bike_repair_station-manometer": { + "mappings": { + "0": { + "then": "Há um manômetro" + }, + "1": { + "then": "Não há um manômetro" + }, + "2": { + "then": "Há um manômetro mas está quebrado" + } + } + }, + "bike_repair_station-opening_hours": { + "mappings": { + "0": { + "then": "Sempre aberto" + } + } + }, + "bike_repair_station-operator": { + "question": "Quem faz a manutenção desta bomba de ciclo?", + "render": "Mantida por {operator}" + } }, - "3": { - "then": "Reparo de bicicletas {name}" - }, - "4": { - "then": "Loja de bicicletas {name}" - }, - "5": { - "then": "Loja/reparo de bicicletas {name}" + "title": { + "mappings": { + "0": { + "then": "Estação de reparo de bicicletas" + }, + "1": { + "then": "Estação de reparo de bicicletas" + } + } } - }, - "render": "Reparo/loja de bicicletas" - } - }, - "ghost_bike": { - "name": "Bicicleta fantasma", - "title": { - "render": "Bicicleta fantasma" - } - }, - "shops": { - "tagRenderings": { - "shops-shop": { - "mappings": { - "5": { - "then": "Oficina de automóveis" - } + }, + "bike_shop": { + "description": "Uma loja que vende especificamente bicicletas ou itens relacionados", + "name": "Reparo/loja de bicicletas", + "tagRenderings": { + "bike_repair_rents-bikes": { + "mappings": { + "0": { + "then": "Esta loja aluga bicicletas" + }, + "1": { + "then": "Esta loja não aluga bicicletas" + } + }, + "question": "Esta loja aluga bicicletas?" + }, + "bike_repair_repairs-bikes": { + "mappings": { + "0": { + "then": "Esta loja conserta bicicletas" + }, + "1": { + "then": "Esta loja não conserta bicicletas" + }, + "2": { + "then": "Esta loja conserta bicicletas compradas aqui" + }, + "3": { + "then": "Esta loja conserta bicicletas de uma certa marca" + } + }, + "question": "Esta loja conserta bicicletas?" + }, + "bike_repair_sells-bikes": { + "mappings": { + "0": { + "then": "Esta loja vende bicicletas" + }, + "1": { + "then": "Esta loja não vende bicicletas" + } + }, + "question": "Esta loja vende bicicletas?" + }, + "bike_shop-email": { + "question": "Qual o endereço de email de {name}?" + }, + "bike_shop-is-bicycle_shop": { + "render": "Esta loja é especializada em vender {shop} e faz atividades relacionadas à bicicletas" + }, + "bike_shop-name": { + "question": "Qual o nome desta loja de bicicletas?", + "render": "Esta loja de bicicletas se chama {name}" + }, + "bike_shop-phone": { + "question": "Qual é o número de telefone de {name}?" + }, + "bike_shop-website": { + "question": "Qual o website de {name}?" + } + }, + "title": { + "mappings": { + "0": { + "then": "Loja de equipamentos desportivos {name}" + }, + "2": { + "then": "Aluguel de bicicletas {name}" + }, + "3": { + "then": "Reparo de bicicletas {name}" + }, + "4": { + "then": "Loja de bicicletas {name}" + }, + "5": { + "then": "Loja/reparo de bicicletas {name}" + } + }, + "render": "Reparo/loja de bicicletas" + } + }, + "ghost_bike": { + "name": "Bicicleta fantasma", + "presets": { + "0": { + "title": "Bicicleta fantasma" + } + }, + "title": { + "render": "Bicicleta fantasma" + } + }, + "shops": { + "tagRenderings": { + "shops-shop": { + "mappings": { + "5": { + "then": "Oficina de automóveis" + } + } + } } - } } - } } \ No newline at end of file diff --git a/langs/layers/pt_BR.json b/langs/layers/pt_BR.json index a0f45d6f80..0a642d9a77 100644 --- a/langs/layers/pt_BR.json +++ b/langs/layers/pt_BR.json @@ -1,554 +1,553 @@ { - "artwork": { - "presets": { - "0": { - "title": "Obra de arte" - } - }, - "title": { - "mappings": { - "0": { - "then": "Obra de arte {name}" + "artwork": { + "presets": { + "0": { + "title": "Obra de arte" + } + }, + "title": { + "mappings": { + "0": { + "then": "Obra de arte {name}" + } + }, + "render": "Obra de arte" } - }, - "render": "Obra de arte" - } - }, - "bench": { - "name": "Bancos", - "presets": { - "0": { - "title": "banco" - } }, - "tagRenderings": { - "bench-backrest": { - "mappings": { - "0": { - "then": "Encosto: Sim" - }, - "1": { - "then": "Encosto: Não" - } + "bench": { + "name": "Bancos", + "presets": { + "0": { + "title": "banco" + } }, - "question": "Este assento tem um escosto?" - }, - "bench-colour": { - "mappings": { - "0": { - "then": "Cor: marrom" - }, - "1": { - "then": "Cor: verde" - }, - "2": { - "then": "Cor: cinza" - }, - "3": { - "then": "Cor: branco" - }, - "4": { - "then": "Cor: vermelho" - }, - "5": { - "then": "Cor: preto" - }, - "6": { - "then": "Cor: azul" - }, - "7": { - "then": "Cor: amarelo" - } + "tagRenderings": { + "bench-backrest": { + "mappings": { + "0": { + "then": "Encosto: Sim" + }, + "1": { + "then": "Encosto: Não" + } + }, + "question": "Este assento tem um escosto?" + }, + "bench-colour": { + "mappings": { + "0": { + "then": "Cor: marrom" + }, + "1": { + "then": "Cor: verde" + }, + "2": { + "then": "Cor: cinza" + }, + "3": { + "then": "Cor: branco" + }, + "4": { + "then": "Cor: vermelho" + }, + "5": { + "then": "Cor: preto" + }, + "6": { + "then": "Cor: azul" + }, + "7": { + "then": "Cor: amarelo" + } + }, + "question": "Qual a cor dessa bancada?", + "render": "Cor: {colour}" + }, + "bench-direction": { + "question": "Em que direção você olha quando está sentado no banco?", + "render": "Ao sentar-se no banco, olha-se para {direction} °." + }, + "bench-material": { + "mappings": { + "0": { + "then": "Material: madeira" + }, + "1": { + "then": "Material: metal" + }, + "2": { + "then": "Material: pedra" + }, + "3": { + "then": "Material: concreto" + }, + "4": { + "then": "Material: plástico" + }, + "5": { + "then": "Material: aço" + } + }, + "question": "De que é feito o banco (assento)?", + "render": "Material: {material}" + }, + "bench-seats": { + "question": "Quantos assentos este banco tem?", + "render": "{seats} assentos" + }, + "bench-survey:date": { + "question": "Quando esta bancada foi pesquisada pela última vez?", + "render": "Esta bancada foi pesquisada pela última vez em {survey:date}" + } }, - "question": "Qual a cor dessa bancada?", - "render": "Cor: {colour}" - }, - "bench-direction": { - "question": "Em que direção você olha quando está sentado no banco?", - "render": "Ao sentar-se no banco, olha-se para {direction} °." - }, - "bench-material": { - "mappings": { - "0": { - "then": "Material: madeira" - }, - "1": { - "then": "Material: metal" - }, - "2": { - "then": "Material: pedra" - }, - "3": { - "then": "Material: concreto" - }, - "4": { - "then": "Material: plástico" - }, - "5": { - "then": "Material: aço" - } - }, - "question": "De que é feito o banco (assento)?", - "render": "Material: {material}" - }, - "bench-seats": { - "question": "Quantos assentos este banco tem?", - "render": "{seats} assentos" - }, - "bench-survey:date": { - "question": "Quando esta bancada foi pesquisada pela última vez?", - "render": "Esta bancada foi pesquisada pela última vez em {survey:date}" - } - }, - "title": { - "render": "Banco" - } - }, - "bench_at_pt": { - "name": "Bancos em pontos de transporte público", - "tagRenderings": { - "bench_at_pt-name": { - "render": "{name}" - } - }, - "title": { - "mappings": { - "0": { - "then": "Banco em ponto de transporte público" - }, - "1": { - "then": "Banco em abrigo" + "title": { + "render": "Banco" } - }, - "render": "Banco" - } - }, - "bicycle_library": { - "description": "Uma instalação onde as bicicletas podem ser emprestadas por períodos mais longos", - "name": "Biblioteca de bicicleta", - "presets": { - "0": { - "title": "Biblioteca de bicicletas" - } }, - "tagRenderings": { - "bicycle-library-target-group": { - "mappings": { - "0": { - "then": "Bicicletas para crianças disponíveis" - }, - "1": { - "then": "Bicicletas para adulto disponíveis" - }, - "2": { - "then": "Bicicletas para deficientes físicos disponíveis" - } + "bench_at_pt": { + "name": "Bancos em pontos de transporte público", + "tagRenderings": { + "bench_at_pt-name": { + "render": "{name}" + } }, - "question": "Quem pode emprestar bicicletas aqui?" - }, - "bicycle_library-charge": { - "mappings": { - "0": { - "then": "Emprestar uma bicicleta é grátis" - }, - "1": { - "then": "Emprestar uma bicicleta custa €20/ano e €20 de garantia" - } - }, - "question": "Quanto custa um empréstimo de bicicleta?", - "render": "Custos de empréstimo de bicicleta {charge}" - }, - "bicycle_library-name": { - "question": "Qual o nome desta biblioteca de bicicleta?", - "render": "Esta biblioteca de bicicleta é chamada de {name}" - } - }, - "title": { - "render": "Biblioteca de bicicleta" - } - }, - "bicycle_tube_vending_machine": { - "name": "Máquina de venda automática de tubos de bicicleta", - "presets": { - "0": { - "title": "Máquina de venda automática de tubos de bicicleta" - } - }, - "tagRenderings": { - "Still in use?": { - "mappings": { - "0": { - "then": "Esta máquina de venda automática funciona" - }, - "1": { - "then": "Esta máquina de venda automática está quebrada" - }, - "2": { - "then": "Esta máquina de venda automática está fechada" - } - }, - "question": "Esta máquina de venda automática ainda está operacional?", - "render": "O estado operacional é: {operational_status}" - } - }, - "title": { - "render": "Máquina de venda automática de tubos de bicicleta" - } - }, - "bike_cafe": { - "name": "Café de bicicletas", - "presets": { - "0": { - "title": "Café de bicicleta" - } - }, - "tagRenderings": { - "bike_cafe-email": { - "question": "Qual o endereço de email de {name}?" - }, - "bike_cafe-name": { - "question": "Qual o nome deste café de bicicleta?", - "render": "Este café de bicicleta se chama {name}" - }, - "bike_cafe-opening_hours": { - "question": "Quando este café de bicicleta abre?" - }, - "bike_cafe-phone": { - "question": "Qual o número de telefone de {name}?" - }, - "bike_cafe-repair-service": { - "mappings": { - "0": { - "then": "Este café de bicicleta conserta bicicletas" - }, - "1": { - "then": "Este café de bicicleta não conserta bicicletas" - } - }, - "question": "Este café de bicicleta conserta bicicletas?" - }, - "bike_cafe-repair-tools": { - "mappings": { - "0": { - "then": "Este café de bicicleta oferece ferramentas de reparo faça você mesmo" - }, - "1": { - "then": "Este café de bicicleta não oferece ferramentas de reparo faça você mesmo" - } - }, - "question": "Há ferramentas aqui para consertar sua bicicleta?" - }, - "bike_cafe-website": { - "question": "Qual o website de {name}?" - } - }, - "title": { - "mappings": { - "0": { - "then": "Café de bicicleta {name}" + "title": { + "mappings": { + "0": { + "then": "Banco em ponto de transporte público" + }, + "1": { + "then": "Banco em abrigo" + } + }, + "render": "Banco" } - }, - "render": "Café de bicicleta" - } - }, - "bike_cleaning": { - "name": "Serviço de limpeza de bicicletas", - "presets": { - "0": { - "title": "Serviço de limpeza de bicicletas" - } }, - "title": { - "mappings": { - "0": { - "then": "Serviço de limpeza de bicicletas {name}" + "bicycle_library": { + "description": "Uma instalação onde as bicicletas podem ser emprestadas por períodos mais longos", + "name": "Biblioteca de bicicleta", + "presets": { + "0": { + "title": "Biblioteca de bicicletas" + } + }, + "tagRenderings": { + "bicycle-library-target-group": { + "mappings": { + "0": { + "then": "Bicicletas para crianças disponíveis" + }, + "1": { + "then": "Bicicletas para adulto disponíveis" + }, + "2": { + "then": "Bicicletas para deficientes físicos disponíveis" + } + }, + "question": "Quem pode emprestar bicicletas aqui?" + }, + "bicycle_library-charge": { + "mappings": { + "0": { + "then": "Emprestar uma bicicleta é grátis" + }, + "1": { + "then": "Emprestar uma bicicleta custa €20/ano e €20 de garantia" + } + }, + "question": "Quanto custa um empréstimo de bicicleta?", + "render": "Custos de empréstimo de bicicleta {charge}" + }, + "bicycle_library-name": { + "question": "Qual o nome desta biblioteca de bicicleta?", + "render": "Esta biblioteca de bicicleta é chamada de {name}" + } + }, + "title": { + "render": "Biblioteca de bicicleta" } - }, - "render": "Serviço de limpeza de bicicletas" - } - }, - "bike_parking": { - "name": "Estacionamento de bicicletas", - "presets": { - "0": { - "title": "Estacionamento de bicicletas" - } }, - "tagRenderings": { - "Access": { - "mappings": { - "0": { - "then": "Acessível ao público" - }, - "1": { - "then": "Acesso é principalmente para visitantes de uma empresa" - }, - "2": { - "then": "Acesso é limitado aos membros de uma escola, companhia ou organização" - } + "bicycle_tube_vending_machine": { + "name": "Máquina de venda automática de tubos de bicicleta", + "presets": { + "0": { + "title": "Máquina de venda automática de tubos de bicicleta" + } }, - "question": "Quem pode usar este estacionamento de bicicletas?", - "render": "{access}" - }, - "Bicycle parking type": { - "question": "Qual o tipo deste estacionamento de bicicletas?", - "render": "Este é um estacionamento de bicicletas do tipo: {bicycle_parking}" - }, - "Capacity": { - "render": "Lugar para {capacity} bicicletas" - }, - "Cargo bike capacity?": { - "question": "Quantas bicicletas de carga cabem neste estacionamento de bicicletas?", - "render": "Neste estacionamento cabem {capacity:cargo_bike} bicicletas de carga" - }, - "Cargo bike spaces?": { - "mappings": { - "0": { - "then": "Este estacionamento tem vagas para bicicletas de carga" - }, - "1": { - "then": "Este estacionamento tem vagas (oficiais) projetadas para bicicletas de carga." - }, - "2": { - "then": "Você não tem permissão para estacionar bicicletas de carga" - } + "tagRenderings": { + "Still in use?": { + "mappings": { + "0": { + "then": "Esta máquina de venda automática funciona" + }, + "1": { + "then": "Esta máquina de venda automática está quebrada" + }, + "2": { + "then": "Esta máquina de venda automática está fechada" + } + }, + "question": "Esta máquina de venda automática ainda está operacional?", + "render": "O estado operacional é: {operational_status}" + } }, - "question": "O estacionamento de bicicletas tem vagas para bicicletas de carga?" - }, - "Is covered?": { - "mappings": { - "0": { - "then": "Este estacionamento é coberto (tem um telhado)" - }, - "1": { - "then": "Este estacionamento não é coberto" - } - }, - "question": "Este estacionamento é coberto? Também selecione \"coberto\" para estacionamentos internos." - }, - "Underground?": { - "mappings": { - "0": { - "then": "Estacionamento subterrâneo" - }, - "1": { - "then": "Estacionamento de superfície" - }, - "2": { - "then": "Estacionamento no telhado" - }, - "3": { - "then": "Estacionamento ao nível da superfície" - }, - "4": { - "then": "Estacionamento no telhado" - } - }, - "question": "Qual a localização relativa deste estacionamento de bicicletas?" - } + "title": { + "render": "Máquina de venda automática de tubos de bicicleta" + } }, - "title": { - "render": "Estacionamento de bicicletas" - } - }, - "bike_repair_station": { - "name": "Estações de bicicletas (reparo, bomba ou ambos)", - "presets": { - "0": { - "description": "Um dispositivo para encher seus pneus em um local fixa no espaço público

Exemplos de bombas de bicicletas

", - "title": "Bomba de bicicleta" - } + "bike_cafe": { + "name": "Café de bicicletas", + "presets": { + "0": { + "title": "Café de bicicleta" + } + }, + "tagRenderings": { + "bike_cafe-email": { + "question": "Qual o endereço de email de {name}?" + }, + "bike_cafe-name": { + "question": "Qual o nome deste café de bicicleta?", + "render": "Este café de bicicleta se chama {name}" + }, + "bike_cafe-opening_hours": { + "question": "Quando este café de bicicleta abre?" + }, + "bike_cafe-phone": { + "question": "Qual o número de telefone de {name}?" + }, + "bike_cafe-repair-service": { + "mappings": { + "0": { + "then": "Este café de bicicleta conserta bicicletas" + }, + "1": { + "then": "Este café de bicicleta não conserta bicicletas" + } + }, + "question": "Este café de bicicleta conserta bicicletas?" + }, + "bike_cafe-repair-tools": { + "mappings": { + "0": { + "then": "Este café de bicicleta oferece ferramentas de reparo faça você mesmo" + }, + "1": { + "then": "Este café de bicicleta não oferece ferramentas de reparo faça você mesmo" + } + }, + "question": "Há ferramentas aqui para consertar sua bicicleta?" + }, + "bike_cafe-website": { + "question": "Qual o website de {name}?" + } + }, + "title": { + "mappings": { + "0": { + "then": "Café de bicicleta {name}" + } + }, + "render": "Café de bicicleta" + } }, - "tagRenderings": { - "bike_repair_station-available-services": { - "mappings": { - "0": { - "then": "Há somente uma bomba presente" - }, - "1": { - "then": "Há somente ferramentas (chaves de fenda, alicates...) presentes" - }, - "2": { - "then": "Há tanto ferramentas e uma bomba presente" - } + "bike_cleaning": { + "name": "Serviço de limpeza de bicicletas", + "presets": { + "0": { + "title": "Serviço de limpeza de bicicletas" + } }, - "question": "Quais serviços estão disponíveis nesta estação de bicicletas?" - }, - "bike_repair_station-bike-chain-tool": { - "mappings": { - "0": { - "then": "Há uma ferramenta de corrente" - }, - "1": { - "then": "Não há uma ferramenta de corrente" - } + "title": { + "mappings": { + "0": { + "then": "Serviço de limpeza de bicicletas {name}" + } + }, + "render": "Serviço de limpeza de bicicletas" } - }, - "bike_repair_station-bike-stand": { - "mappings": { - "0": { - "then": "Há um gancho ou um suporte" - }, - "1": { - "then": "Não há um gancho ou um suporte" - } - } - }, - "bike_repair_station-electrical_pump": { - "mappings": { - "0": { - "then": "Bomba manual" - }, - "1": { - "then": "Bomba elétrica" - } - } - }, - "bike_repair_station-manometer": { - "mappings": { - "0": { - "then": "Há um manômetro" - }, - "1": { - "then": "Não há um manômetro" - }, - "2": { - "then": "Há um manômetro mas está quebrado" - } - } - }, - "bike_repair_station-opening_hours": { - "mappings": { - "0": { - "then": "Sempre aberto" - }, - "1": { - "then": "Sempre aberto" - } - } - }, - "bike_repair_station-operator": { - "question": "Quem faz a manutenção desta bomba de ciclo?", - "render": "Mantida por {operator}" - } }, - "title": { - "mappings": { - "0": { - "then": "Estação de reparo de bicicletas" + "bike_parking": { + "name": "Estacionamento de bicicletas", + "presets": { + "0": { + "title": "Estacionamento de bicicletas" + } }, - "1": { - "then": "Estação de reparo de bicicletas" + "tagRenderings": { + "Access": { + "mappings": { + "0": { + "then": "Acessível ao público" + }, + "1": { + "then": "Acesso é principalmente para visitantes de uma empresa" + }, + "2": { + "then": "Acesso é limitado aos membros de uma escola, companhia ou organização" + } + }, + "question": "Quem pode usar este estacionamento de bicicletas?", + "render": "{access}" + }, + "Bicycle parking type": { + "question": "Qual o tipo deste estacionamento de bicicletas?", + "render": "Este é um estacionamento de bicicletas do tipo: {bicycle_parking}" + }, + "Capacity": { + "render": "Lugar para {capacity} bicicletas" + }, + "Cargo bike capacity?": { + "question": "Quantas bicicletas de carga cabem neste estacionamento de bicicletas?", + "render": "Neste estacionamento cabem {capacity:cargo_bike} bicicletas de carga" + }, + "Cargo bike spaces?": { + "mappings": { + "0": { + "then": "Este estacionamento tem vagas para bicicletas de carga" + }, + "1": { + "then": "Este estacionamento tem vagas (oficiais) projetadas para bicicletas de carga." + }, + "2": { + "then": "Você não tem permissão para estacionar bicicletas de carga" + } + }, + "question": "O estacionamento de bicicletas tem vagas para bicicletas de carga?" + }, + "Is covered?": { + "mappings": { + "0": { + "then": "Este estacionamento é coberto (tem um telhado)" + }, + "1": { + "then": "Este estacionamento não é coberto" + } + }, + "question": "Este estacionamento é coberto? Também selecione \"coberto\" para estacionamentos internos." + }, + "Underground?": { + "mappings": { + "0": { + "then": "Estacionamento subterrâneo" + }, + "1": { + "then": "Estacionamento de superfície" + }, + "2": { + "then": "Estacionamento no telhado" + }, + "3": { + "then": "Estacionamento ao nível da superfície" + } + }, + "question": "Qual a localização relativa deste estacionamento de bicicletas?" + } }, - "2": { - "then": "Bomba quebrada" - }, - "3": { - "then": "Bomba de bicicleta {name}" - }, - "4": { - "then": "Bomba de bicicleta" + "title": { + "render": "Estacionamento de bicicletas" } - }, - "render": "Estação de bicicletas (bomba e reparo)" - } - }, - "bike_shop": { - "description": "Uma loja que vende especificamente bicicletas ou itens relacionados", - "name": "Reparo/loja de bicicletas", - "tagRenderings": { - "bike_repair_rents-bikes": { - "mappings": { - "0": { - "then": "Esta loja aluga bicicletas" - }, - "1": { - "then": "Esta loja não aluga bicicletas" - } - }, - "question": "Esta loja aluga bicicletas?" - }, - "bike_repair_repairs-bikes": { - "mappings": { - "0": { - "then": "Esta loja conserta bicicletas" - }, - "1": { - "then": "Esta loja não conserta bicicletas" - }, - "2": { - "then": "Esta loja conserta bicicletas compradas aqui" - }, - "3": { - "then": "Esta loja conserta bicicletas de uma certa marca" - } - }, - "question": "Esta loja conserta bicicletas?" - }, - "bike_repair_sells-bikes": { - "mappings": { - "0": { - "then": "Esta loja vende bicicletas" - }, - "1": { - "then": "Esta loja não vende bicicletas" - } - }, - "question": "Esta loja vende bicicletas?" - }, - "bike_shop-email": { - "question": "Qual o endereço de email de {name}?" - }, - "bike_shop-is-bicycle_shop": { - "render": "Esta loja é especializada em vender {shop} e faz atividades relacionadas à bicicletas" - }, - "bike_shop-name": { - "question": "Qual o nome desta loja de bicicletas?", - "render": "Esta loja de bicicletas se chama {name}" - }, - "bike_shop-phone": { - "question": "Qual o número de telefone de {name}?" - }, - "bike_shop-website": { - "question": "Qual o website de {name}?" - } }, - "title": { - "mappings": { - "0": { - "then": "Loja de equipamentos esportivos {name}" + "bike_repair_station": { + "name": "Estações de bicicletas (reparo, bomba ou ambos)", + "presets": { + "0": { + "description": "Um dispositivo para encher seus pneus em um local fixa no espaço público", + "title": "bomba de bicicleta" + } }, - "2": { - "then": "Aluguel de bicicletas {name}" + "tagRenderings": { + "bike_repair_station-available-services": { + "mappings": { + "0": { + "then": "Há somente uma bomba presente" + }, + "1": { + "then": "Há somente ferramentas (chaves de fenda, alicates...) presentes" + }, + "2": { + "then": "Há tanto ferramentas e uma bomba presente" + } + }, + "question": "Quais serviços estão disponíveis nesta estação de bicicletas?" + }, + "bike_repair_station-bike-chain-tool": { + "mappings": { + "0": { + "then": "Há uma ferramenta de corrente" + }, + "1": { + "then": "Não há uma ferramenta de corrente" + } + } + }, + "bike_repair_station-bike-stand": { + "mappings": { + "0": { + "then": "Há um gancho ou um suporte" + }, + "1": { + "then": "Não há um gancho ou um suporte" + } + } + }, + "bike_repair_station-electrical_pump": { + "mappings": { + "0": { + "then": "Bomba manual" + }, + "1": { + "then": "Bomba elétrica" + } + } + }, + "bike_repair_station-manometer": { + "mappings": { + "0": { + "then": "Há um manômetro" + }, + "1": { + "then": "Não há um manômetro" + }, + "2": { + "then": "Há um manômetro mas está quebrado" + } + } + }, + "bike_repair_station-opening_hours": { + "mappings": { + "0": { + "then": "Sempre aberto" + } + } + }, + "bike_repair_station-operator": { + "question": "Quem faz a manutenção desta bomba de ciclo?", + "render": "Mantida por {operator}" + } }, - "3": { - "then": "Reparo de bicicletas {name}" - }, - "4": { - "then": "Loja de bicicletas {name}" - }, - "5": { - "then": "Loja/reparo de bicicletas {name}" + "title": { + "mappings": { + "0": { + "then": "Estação de reparo de bicicletas" + }, + "1": { + "then": "Estação de reparo de bicicletas" + }, + "2": { + "then": "Bomba quebrada" + }, + "3": { + "then": "Bomba de bicicleta {name}" + }, + "4": { + "then": "Bomba de bicicleta" + } + }, + "render": "Estação de bicicletas (bomba e reparo)" } - }, - "render": "Reparo/loja de bicicletas" - } - }, - "ghost_bike": { - "name": "Bicicleta fantasma", - "title": { - "render": "Bicicleta fantasma" - } - }, - "shops": { - "tagRenderings": { - "shops-shop": { - "mappings": { - "5": { - "then": "Oficina Mecânica" - } + }, + "bike_shop": { + "description": "Uma loja que vende especificamente bicicletas ou itens relacionados", + "name": "Reparo/loja de bicicletas", + "tagRenderings": { + "bike_repair_rents-bikes": { + "mappings": { + "0": { + "then": "Esta loja aluga bicicletas" + }, + "1": { + "then": "Esta loja não aluga bicicletas" + } + }, + "question": "Esta loja aluga bicicletas?" + }, + "bike_repair_repairs-bikes": { + "mappings": { + "0": { + "then": "Esta loja conserta bicicletas" + }, + "1": { + "then": "Esta loja não conserta bicicletas" + }, + "2": { + "then": "Esta loja conserta bicicletas compradas aqui" + }, + "3": { + "then": "Esta loja conserta bicicletas de uma certa marca" + } + }, + "question": "Esta loja conserta bicicletas?" + }, + "bike_repair_sells-bikes": { + "mappings": { + "0": { + "then": "Esta loja vende bicicletas" + }, + "1": { + "then": "Esta loja não vende bicicletas" + } + }, + "question": "Esta loja vende bicicletas?" + }, + "bike_shop-email": { + "question": "Qual o endereço de email de {name}?" + }, + "bike_shop-is-bicycle_shop": { + "render": "Esta loja é especializada em vender {shop} e faz atividades relacionadas à bicicletas" + }, + "bike_shop-name": { + "question": "Qual o nome desta loja de bicicletas?", + "render": "Esta loja de bicicletas se chama {name}" + }, + "bike_shop-phone": { + "question": "Qual o número de telefone de {name}?" + }, + "bike_shop-website": { + "question": "Qual o website de {name}?" + } + }, + "title": { + "mappings": { + "0": { + "then": "Loja de equipamentos esportivos {name}" + }, + "2": { + "then": "Aluguel de bicicletas {name}" + }, + "3": { + "then": "Reparo de bicicletas {name}" + }, + "4": { + "then": "Loja de bicicletas {name}" + }, + "5": { + "then": "Loja/reparo de bicicletas {name}" + } + }, + "render": "Reparo/loja de bicicletas" + } + }, + "ghost_bike": { + "name": "Bicicleta fantasma", + "presets": { + "0": { + "title": "Bicicleta fantasma" + } + }, + "title": { + "render": "Bicicleta fantasma" + } + }, + "shops": { + "tagRenderings": { + "shops-shop": { + "mappings": { + "5": { + "then": "Oficina Mecânica" + } + } + } } - } } - } } \ No newline at end of file diff --git a/langs/layers/ru.json b/langs/layers/ru.json index 447b79dca7..610d194804 100644 --- a/langs/layers/ru.json +++ b/langs/layers/ru.json @@ -1,1409 +1,1596 @@ { - "artwork": { - "description": "Разнообразные произведения искусства", - "name": "Произведения искусства", - "presets": { - "0": { - "title": "Художественная работа" - } - }, - "tagRenderings": { - "artwork-artist_name": { - "question": "Какой художник создал это?", - "render": "Создано {artist_name}" - }, - "artwork-artwork_type": { - "mappings": { - "0": { - "then": "Архитектура" - }, - "1": { - "then": "Фреска" - }, - "2": { - "then": "Живопись" - }, - "3": { - "then": "Скульптура" - }, - "4": { - "then": "Статуя" - }, - "5": { - "then": "Бюст" - }, - "6": { - "then": "Камень" - }, - "7": { - "then": "Инсталляция" - }, - "8": { - "then": "Граффити" - }, - "9": { - "then": "Рельеф" - }, - "10": { - "then": "Азуле́жу (испанская роспись глазурованной керамической плитки)" - }, - "11": { - "then": "Плитка (мозаика)" - } - }, - "question": "К какому типу относится эта работа?", - "render": "Это {artwork_type}" - }, - "artwork-website": { - "question": "Есть ли сайт с более подробной информацией об этой работе?", - "render": "Больше информации на этом сайте" - }, - "artwork-wikidata": { - "question": "Какая запись в Wikidata соответсвует этой работе?", - "render": "Запись об этой работе в wikidata: {wikidata}" - } - }, - "title": { - "mappings": { - "0": { - "then": "Художественная работа {name}" - } - }, - "render": "Художественная работа" - } - }, - "barrier": { - "name": "Препятствия", - "presets": { - "0": { - "title": "Прикол" - } - }, - "title": { - "mappings": { - "0": { - "then": "Прикол" - } - }, - "render": "Препятствие" - } - }, - "bench": { - "name": "Скамейки", - "presets": { - "0": { - "title": "cкамейка" - } - }, - "tagRenderings": { - "bench-backrest": { - "mappings": { - "0": { - "then": "Со спинкой" - }, - "1": { - "then": "Без спинки" - } - }, - "question": "Есть ли у этой скамейки спинка?" - }, - "bench-colour": { - "mappings": { - "0": { - "then": "Цвет: коричневый" - }, - "1": { - "then": "Цвет: зеленый" - }, - "2": { - "then": "Цвет: серый" - }, - "3": { - "then": "Цвет: белый" - }, - "4": { - "then": "Цвет: красный" - }, - "5": { - "then": "Цвет: чёрный" - }, - "6": { - "then": "Цвет: синий" - }, - "7": { - "then": "Цвет: желтый" - } - }, - "question": "Какого цвета скамейка?", - "render": "Цвет: {colour}" - }, - "bench-direction": { - "question": "В каком направлении вы смотрите, когда сидите на скамейке?", - "render": "Сидя на скамейке, вы смотрите в сторону {direction}°." - }, - "bench-material": { - "mappings": { - "0": { - "then": "Материал: дерево" - }, - "1": { - "then": "Материал: металл" - }, - "2": { - "then": "Материал: камень" - }, - "3": { - "then": "Материал: бетон" - }, - "4": { - "then": "Материал: пластик" - }, - "5": { - "then": "Материал: сталь" - } - }, - "question": "Из какого материала сделана скамейка?", - "render": "Материал: {material}" - }, - "bench-seats": { - "question": "Сколько мест на этой скамейке?", - "render": "{seats} мест" - }, - "bench-survey:date": { - "question": "Когда последний раз обследовали эту скамейку?", - "render": "Последний раз обследование этой скамейки проводилось {survey:date}" - } - }, - "title": { - "render": "Скамейка" - } - }, - "bench_at_pt": { - "name": "Скамейки на остановках общественного транспорта", - "tagRenderings": { - "bench_at_pt-bench_type": { - "mappings": { - "1": { - "then": "Встаньте на скамейке" - } - } - }, - "bench_at_pt-name": { - "render": "{name}" - } - }, - "title": { - "mappings": { - "0": { - "then": "Скамейка на остановке общественного транспорта" - }, - "1": { - "then": "Скамейка в укрытии" - } - }, - "render": "Скамейка" - } - }, - "bicycle_library": { - "description": "Учреждение, где велосипед может быть арендован на более длительный срок", - "name": "Велосипедная библиотека", - "presets": { - "0": { - "description": "В велосипедной библиотеке есть велосипеды для аренды", - "title": "Велосипедная библиотека" - } - }, - "tagRenderings": { - "bicycle-library-target-group": { - "mappings": { - "0": { - "then": "Доступны детские велосипеды" - }, - "1": { - "then": "Доступны велосипеды для взрослых" - }, - "2": { - "then": "Доступны велосипеды для людей с ограниченными возможностями" - } - }, - "question": "Кто здесь может арендовать велосипед?" - }, - "bicycle_library-charge": { - "mappings": { - "0": { - "then": "Прокат велосипедов бесплатен" - }, - "1": { - "then": "Прокат велосипеда стоит €20/год и €20 залог" - } - }, - "question": "Сколько стоит прокат велосипеда?", - "render": "Стоимость аренды велосипеда {charge}" - }, - "bicycle_library-name": { - "question": "Как называется эта велосипедная библиотека?", - "render": "Эта велосипедная библиотека называется {name}" - } - }, - "title": { - "render": "Велосипедная библиотека" - } - }, - "bicycle_tube_vending_machine": { - "name": "Торговый автомат для велосипедистов", - "presets": { - "0": { - "title": "Торговый автомат для велосипедистов" - } - }, - "tagRenderings": { - "Still in use?": { - "mappings": { - "0": { - "then": "Этот торговый автомат работает" - }, - "1": { - "then": "Этот торговый автомат сломан" - }, - "2": { - "then": "Этот торговый автомат закрыт" - } - }, - "question": "Этот торговый автомат все еще работает?", - "render": "Рабочий статус: {operational_status}" - } - }, - "title": { - "render": "Торговый автомат для велосипедистов" - } - }, - "bike_cafe": { - "name": "Велосипедное кафе", - "presets": { - "0": { - "title": "Велосипедное кафе" - } - }, - "tagRenderings": { - "bike_cafe-bike-pump": { - "mappings": { - "0": { - "then": "В этом велосипедном кафе есть велосипедный насос для всеобщего использования" - }, - "1": { - "then": "В этом велосипедном кафе нет велосипедного насоса для всеобщего использования" - } - }, - "question": "Есть ли в этом велосипедном кафе велосипедный насос для всеобщего использования?" - }, - "bike_cafe-email": { - "question": "Какой адрес электронной почты у {name}?" - }, - "bike_cafe-name": { - "question": "Как называется это байк-кафе?", - "render": "Это велосипедное кафе называется {name}" - }, - "bike_cafe-opening_hours": { - "question": "Каков режим работы этого велосипедного кафе?" - }, - "bike_cafe-phone": { - "question": "Какой номер телефона у {name}?" - }, - "bike_cafe-repair-service": { - "mappings": { - "0": { - "then": "В этом велосипедном кафе есть услуги ремонта велосипедов" - }, - "1": { - "then": "В этом велосипедном кафе нет услуг ремонта велосипедов" - } - }, - "question": "Есть ли услуги ремонта велосипедов в этом велосипедном кафе?" - }, - "bike_cafe-repair-tools": { - "mappings": { - "0": { - "then": "В этом велосипедном кафе есть инструменты для починки своего велосипеда" - }, - "1": { - "then": "В этом велосипедном кафе нет инструментов для починки своего велосипеда" - } - }, - "question": "Есть ли здесь инструменты для починки вашего велосипеда?" - }, - "bike_cafe-website": { - "question": "Какой сайт у {name}?" - } - }, - "title": { - "mappings": { - "0": { - "then": "Велосипедное кафе {name}" - } - }, - "render": "Велосипедное кафе" - } - }, - "bike_parking": { - "name": "Велопарковка", - "presets": { - "0": { - "title": "Велопарковка" - } - }, - "tagRenderings": { - "Access": { - "question": "Кто может пользоваться этой велопарковкой?", - "render": "{access}" - }, - "Bicycle parking type": { - "mappings": { - "3": { - "then": "Стойка " - }, - "4": { - "then": "Двухуровневая " - }, - "5": { - "then": "Навес " - } - }, - "question": "К какому типу относится эта велопарковка?", - "render": "Это велопарковка типа {bicycle_parking}" - }, - "Capacity": { - "render": "Место для {capacity} велосипеда(ов)" - }, - "Is covered?": { - "mappings": { - "0": { - "then": "Это крытая парковка (есть крыша/навес)" - }, - "1": { - "then": "Это открытая парковка" - } - } - }, - "Underground?": { - "mappings": { - "0": { - "then": "Подземная парковка" - }, - "1": { - "then": "Подземная парковка" - }, - "2": { - "then": "Парковка на крыше" - }, - "4": { - "then": "Парковка на крыше" - } - } - } - }, - "title": { - "render": "Велопарковка" - } - }, - "bike_repair_station": { - "presets": { - "0": { - "title": "Велосипедный насос" - } - }, - "tagRenderings": { - "Operational status": { - "mappings": { - "0": { - "then": "Велосипедный насос сломан" - }, - "1": { - "then": "Велосипедный насос работает" - } - }, - "question": "Велосипедный насос все еще работает?" - }, - "bike_repair_station-electrical_pump": { - "mappings": { - "0": { - "then": "Ручной насос" - }, - "1": { - "then": "Электрический насос" - } - }, - "question": "Это электрический велосипедный насос?" - }, - "bike_repair_station-manometer": { - "mappings": { - "0": { - "then": "Есть манометр" - }, - "1": { - "then": "Нет манометра" - }, - "2": { - "then": "Есть манометр, но он сломан" - } - } - }, - "bike_repair_station-opening_hours": { - "mappings": { - "0": { - "then": "Всегда открыто" - } - }, - "question": "Когда работает эта точка обслуживания велосипедов?" - }, - "bike_repair_station-valves": { - "mappings": { - "0": { - "then": "Клапан Presta (также известный как французский клапан)" - }, - "1": { - "then": "Клапан Dunlop" - } - }, - "render": "Этот насос поддерживает следующие клапаны: {valves}" - } - }, - "title": { - "mappings": { - "2": { - "then": "Сломанный насос" - }, - "3": { - "then": "Велосипедный насос {name}" - }, - "4": { - "then": "Велосипедный насос" - } - } - } - }, - "bike_shop": { - "description": "Магазин, специализирующийся на продаже велосипедов или сопутствующих товаров", - "name": "Обслуживание велосипедов/магазин", - "presets": { - "0": { - "title": "Обслуживание велосипедов/магазин" - } - }, - "tagRenderings": { - "bike_repair_bike-pump-service": { - "mappings": { - "0": { - "then": "В этом магазине есть велосипедный насос для всеобщего пользования" - }, - "1": { - "then": "В этом магазине нет велосипедного насоса для всеобщего пользования" - } - }, - "question": "Предлагается ли в этом магазине велосипедный насос для всеобщего пользования?" - }, - "bike_repair_bike-wash": { - "mappings": { - "0": { - "then": "В этом магазине оказываются услуги мойки/чистки велосипедов" - }, - "2": { - "then": "В этом магазине нет услуг мойки/чистки велосипедов" - } - }, - "question": "Здесь моют велосипеды?" - }, - "bike_repair_rents-bikes": { - "mappings": { - "0": { - "then": "Этот магазин сдает велосипеды в аренду" - }, - "1": { - "then": "Этот магазин не сдает велосипеды напрокат" - } - }, - "question": "Этот магазин сдает велосипеды в аренду?" - }, - "bike_repair_repairs-bikes": { - "mappings": { - "0": { - "then": "Этот магазин ремонтирует велосипеды" - }, - "1": { - "then": "Этот магазин не ремонтирует велосипеды" - }, - "2": { - "then": "Этот магазин ремонтирует только велосипеды, купленные здесь" - }, - "3": { - "then": "В этом магазине обслуживают велосипеды определённого бренда" - } - }, - "question": "В этом магазине ремонтируют велосипеды?" - }, - "bike_repair_second-hand-bikes": { - "mappings": { - "0": { - "then": "В этом магазине продаются подержанные велосипеды" - }, - "1": { - "then": "В этом магазине не продаются подержанные велосипеды" - }, - "2": { - "then": "В этом магазине продаются только подержанные велосипеды" - } - }, - "question": "В этом магазине продаются подержанные велосипеды?" - }, - "bike_repair_sells-bikes": { - "mappings": { - "0": { - "then": "В этом магазине продаются велосипеды" - }, - "1": { - "then": "В этом магазине не продают велосипеды" - } - }, - "question": "Продаются ли велосипеды в этом магазине?" - }, - "bike_repair_tools-service": { - "mappings": { - "2": { - "then": "Инструменты для починки доступны только при покупке/аренде велосипеда в магазине" - } - }, - "question": "Есть ли здесь инструменты для починки собственного велосипеда?" - }, - "bike_shop-email": { - "question": "Какой адрес электронной почты у {name}?" - }, - "bike_shop-name": { - "question": "Как называется магазин велосипедов?", - "render": "Этот магазин велосипедов называется {name}" - }, - "bike_shop-phone": { - "question": "Какой номер телефона у {name}?" - }, - "bike_shop-website": { - "question": "Какой сайт у {name}?" - } - }, - "title": { - "mappings": { - "0": { - "then": "Магазин спортивного инвентаря {name}" - }, - "2": { - "then": "Прокат велосипедов {name}" - }, - "3": { - "then": "Ремонт велосипедов {name}" - }, - "4": { - "then": "Магазин велосипедов {name}" - } - }, - "render": "Обслуживание велосипедов/магазин" - } - }, - "binocular": { - "description": "Бинокли", - "name": "Бинокль", - "presets": { - "0": { - "title": "бинокль" - } - }, - "title": { - "render": "Бинокль" - } - }, - "cafe_pub": { - "presets": { - "0": { - "title": "паб" - }, - "1": { - "title": "бар" - }, - "2": { - "title": "кафе" - } - }, - "title": { - "mappings": { - "0": { - "then": "{name}" - } - } - } - }, - "crossings": { - "presets": { - "1": { - "title": "Светофор" - } - }, - "title": { - "mappings": { - "0": { - "then": "Светофор" - } - } - } - }, - "cycleways_and_roads": { - "title": { - "mappings": { - "0": { - "then": "Велосипедная дорожка" - } - }, - "render": "Велосипедные дорожки" - } - }, - "defibrillator": { - "name": "Дефибрилляторы", - "presets": { - "0": { - "title": "Дефибриллятор" - } - }, - "tagRenderings": { - "defibrillator-access": { - "mappings": { - "0": { - "then": "Общедоступный" - }, - "1": { - "then": "Общедоступный" - }, - "2": { - "then": "Доступно только для клиентов" - } - } - }, - "defibrillator-defibrillator": { - "mappings": { - "2": { - "then": "Это обычный автоматический дефибриллятор" - } - } - }, - "defibrillator-description": { - "render": "Дополнительная информация: {description}" - }, - "defibrillator-fixme": { - "render": "Дополнительная информация для экспертов OpenStreetMap: {fixme}" - }, - "defibrillator-opening_hours": { - "question": "В какое время доступен этот дефибриллятор?", - "render": "{opening_hours_table(opening_hours)}" - }, - "defibrillator-survey:date": { - "mappings": { - "0": { - "then": "Проверено сегодня!" - } - } - } - }, - "title": { - "render": "Дефибриллятор" - } - }, - "direction": { - "name": "Визуализация направления" - }, - "drinking_water": { - "name": "Питьевая вода", - "presets": { - "0": { - "title": "питьевая вода" - } - }, - "title": { - "render": "Питьевая вода" - } - }, - "food": { - "presets": { - "0": { - "title": "ресторан" - }, - "1": { - "title": "быстрое питание" - } - }, - "tagRenderings": { - "friture-take-your-container": { - "mappings": { - "1": { - "then": "Приносить свою тару не разрешено" - } - } - } - } - }, - "ghost_bike": { - "name": "Велосипед Ghost", - "tagRenderings": { - "ghost_bike-inscription": { - "render": "{inscription}" - }, - "ghost_bike-name": { - "render": "В знак памяти о {name}" - }, - "ghost_bike-source": { - "render": "Доступна более подробная информация" - }, - "ghost_bike-start_date": { - "render": "Установлен {start_date}" - } - }, - "title": { - "render": "Велосипед Ghost" - } - }, - "information_board": { - "name": "Информационные щиты", - "presets": { - "0": { - "title": "информационный щит" - } - }, - "title": { - "render": "Информационный щит" - } - }, - "map": { - "name": "Карты", - "presets": { - "0": { - "title": "Карта" - } - }, - "tagRenderings": { - "map-map_source": { - "mappings": { - "0": { - "then": "Эта карта основана на OpenStreetMap" - } - }, - "render": "Эта карта основана на {map_source}" - } - }, - "title": { - "render": "Карта" - } - }, - "nature_reserve": { - "tagRenderings": { - "Email": { - "render": "{email}" - }, - "phone": { - "render": "{phone}" - } - } - }, - "observation_tower": { - "name": "Смотровые башни", - "presets": { - "0": { - "title": "смотровая башня" - } - }, - "title": { - "mappings": { - "0": { - "then": "{name}" - } - }, - "render": "Смотровая башня" - }, - "units": { - "0": { - "applicableUnits": { - "0": { - "human": " метр" - } - } - } - } - }, - "picnic_table": { - "description": "Слой, отображающий столы для пикника", - "name": "Столы для пикника", - "presets": { - "0": { - "title": "стол для пикника" - } - }, - "tagRenderings": { - "picnic_table-material": { - "mappings": { - "0": { - "then": "Это деревянный стол для пикника" - }, - "1": { - "then": "Это бетонный стол для пикника" - } - }, - "question": "Из чего изготовлен этот стол для пикника?", - "render": "Этот стол для пикника сделан из {material}" - } - }, - "title": { - "render": "Стол для пикника" - } - }, - "playground": { - "description": "Детские площадки", - "name": "Детские площадки", - "presets": { - "0": { - "title": "Детская площадка" - } - }, - "tagRenderings": { - "Playground-wheelchair": { - "mappings": { - "0": { - "then": "Полностью доступна пользователям кресел-колясок" - }, - "1": { - "then": "Частично доступна пользователям кресел-колясок" - }, - "2": { - "then": "Недоступна пользователям кресел-колясок" - } - }, - "question": "Доступна ли детская площадка пользователям кресел-колясок?" - }, - "playground-access": { - "mappings": { - "4": { - "then": "Недоступно" - } - } - }, - "playground-email": { - "render": "{email}" - }, - "playground-lit": { - "mappings": { - "0": { - "then": "Эта детская площадка освещается ночью" - }, - "1": { - "then": "Эта детская площадка не освещается ночью" - } - }, - "question": "Эта игровая площадка освещается ночью?" - }, - "playground-max_age": { - "render": "Доступно детям до {max_age}" - }, - "playground-min_age": { - "question": "С какого возраста доступна эта детская площадка?", - "render": "Доступно для детей старше {min_age} лет" - }, - "playground-opening_hours": { - "mappings": { - "0": { - "then": "Открыто от рассвета до заката" - }, - "1": { - "then": "Всегда доступен" - }, - "2": { - "then": "Всегда доступен" - } - }, - "question": "Когда открыта эта игровая площадка?" - }, - "playground-phone": { - "render": "{phone}" - }, - "playground-surface": { - "mappings": { - "0": { - "then": "Поверхность - трава" - }, - "1": { - "then": "Поверхность - песок" - }, - "2": { - "then": "Покрытие из щепы" - }, - "3": { - "then": "Поверхность - брусчатка" - }, - "4": { - "then": "Поверхность - асфальт" - }, - "5": { - "then": "Поверхность - бетон" - } - }, - "render": "Поверхность - {surface}" - } - }, - "title": { - "mappings": { - "0": { - "then": "Детская площадка {name}" - } - }, - "render": "Детская площадка" - } - }, - "public_bookcase": { - "description": "Уличный шкаф с книгами, доступными для всех", - "name": "Книжные шкафы", - "presets": { - "0": { - "title": "Книжный шкаф" - } - }, - "tagRenderings": { - "bookcase-booktypes": { - "mappings": { - "0": { - "then": "В основном детские книги" - }, - "1": { - "then": "В основном книги для взрослых" - }, - "2": { - "then": "Книги и для детей, и для взрослых" - } - }, - "question": "Какие книги можно найти в этом общественном книжном шкафу?" - }, - "bookcase-is-accessible": { - "mappings": { - "0": { - "then": "Свободный доступ" - } - }, - "question": "Имеется ли свободный доступ к этому общественному книжному шкафу?" - }, - "public_bookcase-capacity": { - "question": "Сколько книг помещается в этом общественном книжном шкафу?", - "render": "{capacity} книг помещается в этот книжный шкаф" - }, - "public_bookcase-name": { - "mappings": { - "0": { - "then": "У этого книжного шкафа нет названия" - } - }, - "question": "Как называется этот общественный книжный шкаф?", - "render": "Название книжного шкафа — {name}" - }, - "public_bookcase-start_date": { - "question": "Когда был установлен этот общественный книжный шкаф?", - "render": "Установлен {start_date}" - }, - "public_bookcase-website": { - "question": "Есть ли веб-сайт с более подробной информацией об этом общественном книжном шкафе?", - "render": "Более подробная информация на сайте" - } - }, - "title": { - "mappings": { - "0": { - "then": "Общественный книжный шкаф {name}" - } - }, - "render": "Книжный шкаф" - } - }, - "shops": { - "description": "Магазин", - "name": "Магазин", - "presets": { - "0": { - "description": "Добавить новый магазин", - "title": "Магазин" - } - }, - "tagRenderings": { - "shops-email": { - "question": "Каков адрес электронной почты этого магазина?", - "render": "{email}" - }, - "shops-name": { - "question": "Как называется этот магазин?" - }, - "shops-opening_hours": { - "question": "Каковы часы работы этого магазина?", - "render": "{opening_hours_table(opening_hours)}" - }, - "shops-phone": { - "question": "Какой телефон?", - "render": "{phone}" - }, - "shops-shop": { - "mappings": { - "1": { - "then": "Супермаркет" - }, - "2": { - "then": "Магазин одежды" - }, - "3": { - "then": "Парикмахерская" - }, - "5": { - "then": "Автомастерская" - }, - "6": { - "then": "Автосалон" - } - }, - "question": "Что продаётся в этом магазине?" - }, - "shops-website": { - "question": "Какой веб-сайт у этого магазина?", - "render": "{website}" - } - }, - "title": { - "mappings": { - "0": { - "then": "{name}" - }, - "1": { - "then": "{shop}" - } - }, - "render": "Магазин" - } - }, - "slow_roads": { - "tagRenderings": { - "slow_roads-surface": { - "mappings": { - "0": { - "then": "Поверхность - трава" - }, - "1": { - "then": "Поверхность - земля" - }, - "3": { - "then": "Поверхность - песок" - }, - "4": { - "then": "Поверхность - брусчатка" - }, - "5": { - "then": "Поверхность - асфальт" - }, - "6": { - "then": "Поверхность - бетон" - } - }, - "render": "Поверхность - {surface}" - } - } - }, - "sport_pitch": { - "description": "Спортивная площадка", - "name": "Спортивные площадки", - "presets": { - "0": { - "title": "Стол для настольного тенниса" - }, - "1": { - "title": "Спортивная площадка" - } - }, - "tagRenderings": { - "sport-pitch-access": { - "mappings": { - "0": { - "then": "Свободный доступ" - }, - "1": { - "then": "Ограниченный доступ (напр., только по записи, в определённые часы, ...)" - }, - "2": { - "then": "Доступ только членам клуба" - } - }, - "question": "Есть ли свободный доступ к этой спортивной площадке?" - }, - "sport-pitch-reservation": { - "mappings": { - "1": { - "then": "Желательна предварительная запись для доступа на эту спортивную площадку" - }, - "2": { - "then": "Предварительная запись для доступа на эту спортивную площадку возможна, но не обязательна" - }, - "3": { - "then": "Невозможна предварительная запись" - } - }, - "question": "Нужна ли предварительная запись для доступа на эту спортивную площадку?" - }, - "sport_pitch-opening_hours": { - "mappings": { - "1": { - "then": "Всегда доступен" - } - }, - "question": "В какое время доступна эта площадка?" - }, - "sport_pitch-sport": { - "mappings": { - "0": { - "then": "Здесь можно играть в баскетбол" - }, - "1": { - "then": "Здесь можно играть в футбол" - }, - "2": { - "then": "Это стол для пинг-понга" - }, - "3": { - "then": "Здесь можно играть в теннис" - }, - "4": { - "then": "Здесь можно играть в корфбол" - }, - "5": { - "then": "Здесь можно играть в баскетбол" - } - } - }, - "sport_pitch-surface": { - "mappings": { - "0": { - "then": "Поверхность - трава" - }, - "1": { - "then": "Поверхность - песок" - }, - "2": { - "then": "Поверхность - брусчатка" - }, - "3": { - "then": "Поверхность - асфальт" - }, - "4": { - "then": "Поверхность - бетон" - } - }, - "question": "Какое покрытие на этой спортивной площадке?", - "render": "Поверхность - {surface}" - } - }, - "title": { - "render": "Спортивная площадка" - } - }, - "surveillance_camera": { - "name": "Камеры наблюдения", - "tagRenderings": { - "Camera type: fixed; panning; dome": { - "mappings": { - "1": { - "then": "Камера с поворотным механизмом" - }, - "2": { - "then": "Панорамная камера" - } - }, - "question": "Какая это камера?" - }, - "camera:mount": { - "question": "Как расположена эта камера?" - }, - "is_indoor": { - "mappings": { - "1": { - "then": "Эта камера расположена снаружи" - }, - "2": { - "then": "Возможно, эта камера расположена снаружи" - } - } - } - }, - "title": { - "render": "Камера наблюдения" - } - }, - "toilet": { - "name": "Туалеты", - "presets": { - "0": { - "description": "Туалет или комната отдыха со свободным доступом", - "title": "tуалет" - }, - "1": { - "title": "tуалет с доступом для пользователей кресел-колясок" - } - }, - "tagRenderings": { - "toilet-access": { - "mappings": { - "0": { - "then": "Свободный доступ" - }, - "2": { - "then": "Недоступно" - }, - "4": { - "then": "Свободный доступ" - } - }, - "question": "Есть ли свободный доступ к этим туалетам?" - }, - "toilet-charge": { - "question": "Сколько стоит посещение туалета?", - "render": "Стоимость {charge}" - }, - "toilets-fee": { - "mappings": { - "0": { - "then": "Это платные туалеты" - } - } - }, - "toilets-type": { - "question": "Какие это туалеты?" - }, - "toilets-wheelchair": { - "mappings": { - "1": { - "then": "Недоступно пользователям кресел-колясок" - } - } - } - }, - "title": { - "render": "Туалет" - } - }, - "trail": { - "name": "Тропы", - "title": { - "render": "Тропа" - } - }, - "tree_node": { - "name": "Дерево", - "presets": { - "0": { - "title": "Лиственное дерево" - }, - "1": { - "description": "Дерево с хвоей (иглами), например, сосна или ель.", - "title": "Хвойное дерево" - }, - "2": { - "description": "Если вы не уверены в том, лиственное это дерево или хвойное.", - "title": "Дерево" - } - }, - "tagRenderings": { - "tree-decidouous": { - "mappings": { - "0": { - "then": "Листопадное: у дерева опадают листья в определённое время года." - }, - "1": { - "then": "Вечнозелёное." - } - }, - "question": "Это дерево вечнозелёное или листопадное?" - }, - "tree-height": { - "mappings": { - "0": { - "then": "Высота: {height} м" - } - }, - "render": "Высота: {height}" - }, - "tree_node-name": { - "mappings": { - "0": { - "then": "У этого дерева нет названия." - } - }, - "question": "Есть ли у этого дерева название?", - "render": "Название: {name}" - }, - "tree_node-ref:OnroerendErfgoed": { - "render": "\"\"/ Onroerend Erfgoed ID: {ref:OnroerendErfgoed}" - }, - "tree_node-wikidata": { - "render": "\"\"/ Wikidata: {wikidata}" - } - }, - "title": { - "mappings": { - "0": { - "then": "{name}" - } - }, - "render": "Дерево" - } - }, - "viewpoint": { - "name": "Смотровая площадка", - "presets": { - "0": { - "title": "Смотровая площадка" - } - }, - "tagRenderings": { - "viewpoint-description": { - "question": "Вы хотите добавить описание?" - } - }, - "title": { - "render": "Смотровая площадка" - } - }, - "visitor_information_centre": { - "title": { - "mappings": { - "1": { - "then": "{name}" - } - }, - "render": "{name}" - } - }, - "waste_basket": { - "mapRendering": { - "0": { - "iconSize": { - "mappings": { - "0": { - "then": "Контейнер для мусора" + "address": { + "description": "Адреса", + "name": "Известные адреса в OSM", + "tagRenderings": { + "housenumber": { + "mappings": { + "0": { + "then": "У этого здания нет номера" + } + }, + "question": "Какой номер у этого дома?", + "render": "Номер дома {addr:housenumber}" + }, + "street": { + "question": "Какая эта улица?" } - } + }, + "title": { + "render": "Известный адрес" } - } }, - "name": "Контейнер для мусора", - "presets": { - "0": { - "title": "Контейнер для мусора" - } + "ambulancestation": { + "description": "Станция скорой помощи это полигон для хранения транспорта, медицинского оборудования, средств индивидуальной защиты и других медицинских принадлежностей.", + "name": "Карта станций скорой помощи", + "presets": { + "0": { + "description": "Добавить станцию скорой помощи на карту", + "title": "Станция скорой помощи" + } + }, + "tagRenderings": { + "ambulance-agency": { + "question": "Какая организация управляет этой станцией?", + "render": "Эта станция управляется {operator}." + }, + "ambulance-name": { + "question": "Как называется эта станция скорой помощи?", + "render": "Эта станция называется {name}." + }, + "ambulance-operator-type": { + "mappings": { + "0": { + "then": "Станция управляется правительством." + }, + "1": { + "then": "Станция управляется волонтёрами или частной организацией." + } + } + }, + "ambulance-place": { + "question": "Где расположена станция? (напр., название населённого пункта)" + }, + "ambulance-street": { + "question": " По какому адресу расположена эта станция?", + "render": "Эта станция расположена вдоль шоссе {addr:street}." + } + }, + "title": { + "render": "Станция скорой помощи" + } }, - "title": { - "render": "Контейнер для мусора" + "artwork": { + "description": "Разнообразные произведения искусства", + "name": "Произведения искусства", + "presets": { + "0": { + "title": "Художественная работа" + } + }, + "tagRenderings": { + "artwork-artist_name": { + "question": "Какой художник создал это?", + "render": "Создано {artist_name}" + }, + "artwork-artwork_type": { + "mappings": { + "0": { + "then": "Архитектура" + }, + "1": { + "then": "Фреска" + }, + "2": { + "then": "Живопись" + }, + "3": { + "then": "Скульптура" + }, + "4": { + "then": "Статуя" + }, + "5": { + "then": "Бюст" + }, + "6": { + "then": "Камень" + }, + "7": { + "then": "Инсталляция" + }, + "8": { + "then": "Граффити" + }, + "9": { + "then": "Рельеф" + }, + "10": { + "then": "Азуле́жу (испанская роспись глазурованной керамической плитки)" + }, + "11": { + "then": "Плитка (мозаика)" + } + }, + "question": "К какому типу относится эта работа?", + "render": "Это {artwork_type}" + }, + "artwork-website": { + "question": "Есть ли сайт с более подробной информацией об этой работе?", + "render": "Больше информации на этом сайте" + }, + "artwork-wikidata": { + "question": "Какая запись в Wikidata соответсвует этой работе?", + "render": "Запись об этой работе в wikidata: {wikidata}" + } + }, + "title": { + "mappings": { + "0": { + "then": "Художественная работа {name}" + } + }, + "render": "Художественная работа" + } + }, + "barrier": { + "name": "Препятствия", + "presets": { + "0": { + "title": "Прикол" + } + }, + "title": { + "mappings": { + "0": { + "then": "Прикол" + } + }, + "render": "Препятствие" + } + }, + "bench": { + "name": "Скамейки", + "presets": { + "0": { + "title": "cкамейка" + } + }, + "tagRenderings": { + "bench-backrest": { + "mappings": { + "0": { + "then": "Со спинкой" + }, + "1": { + "then": "Без спинки" + } + }, + "question": "Есть ли у этой скамейки спинка?" + }, + "bench-colour": { + "mappings": { + "0": { + "then": "Цвет: коричневый" + }, + "1": { + "then": "Цвет: зеленый" + }, + "2": { + "then": "Цвет: серый" + }, + "3": { + "then": "Цвет: белый" + }, + "4": { + "then": "Цвет: красный" + }, + "5": { + "then": "Цвет: чёрный" + }, + "6": { + "then": "Цвет: синий" + }, + "7": { + "then": "Цвет: желтый" + } + }, + "question": "Какого цвета скамейка?", + "render": "Цвет: {colour}" + }, + "bench-direction": { + "question": "В каком направлении вы смотрите, когда сидите на скамейке?", + "render": "Сидя на скамейке, вы смотрите в сторону {direction}°." + }, + "bench-material": { + "mappings": { + "0": { + "then": "Материал: дерево" + }, + "1": { + "then": "Материал: металл" + }, + "2": { + "then": "Материал: камень" + }, + "3": { + "then": "Материал: бетон" + }, + "4": { + "then": "Материал: пластик" + }, + "5": { + "then": "Материал: сталь" + } + }, + "question": "Из какого материала сделана скамейка?", + "render": "Материал: {material}" + }, + "bench-seats": { + "question": "Сколько мест на этой скамейке?", + "render": "{seats} мест" + }, + "bench-survey:date": { + "question": "Когда последний раз обследовали эту скамейку?", + "render": "Последний раз обследование этой скамейки проводилось {survey:date}" + } + }, + "title": { + "render": "Скамейка" + } + }, + "bench_at_pt": { + "name": "Скамейки на остановках общественного транспорта", + "tagRenderings": { + "bench_at_pt-bench_type": { + "mappings": { + "1": { + "then": "Встаньте на скамейке" + } + } + }, + "bench_at_pt-name": { + "render": "{name}" + } + }, + "title": { + "mappings": { + "0": { + "then": "Скамейка на остановке общественного транспорта" + }, + "1": { + "then": "Скамейка в укрытии" + } + }, + "render": "Скамейка" + } + }, + "bicycle_library": { + "description": "Учреждение, где велосипед может быть арендован на более длительный срок", + "name": "Велосипедная библиотека", + "presets": { + "0": { + "description": "В велосипедной библиотеке есть велосипеды для аренды", + "title": "Велосипедная библиотека" + } + }, + "tagRenderings": { + "bicycle-library-target-group": { + "mappings": { + "0": { + "then": "Доступны детские велосипеды" + }, + "1": { + "then": "Доступны велосипеды для взрослых" + }, + "2": { + "then": "Доступны велосипеды для людей с ограниченными возможностями" + } + }, + "question": "Кто здесь может арендовать велосипед?" + }, + "bicycle_library-charge": { + "mappings": { + "0": { + "then": "Прокат велосипедов бесплатен" + }, + "1": { + "then": "Прокат велосипеда стоит €20/год и €20 залог" + } + }, + "question": "Сколько стоит прокат велосипеда?", + "render": "Стоимость аренды велосипеда {charge}" + }, + "bicycle_library-name": { + "question": "Как называется эта велосипедная библиотека?", + "render": "Эта велосипедная библиотека называется {name}" + } + }, + "title": { + "render": "Велосипедная библиотека" + } + }, + "bicycle_tube_vending_machine": { + "name": "Торговый автомат для велосипедистов", + "presets": { + "0": { + "title": "Торговый автомат для велосипедистов" + } + }, + "tagRenderings": { + "Still in use?": { + "mappings": { + "0": { + "then": "Этот торговый автомат работает" + }, + "1": { + "then": "Этот торговый автомат сломан" + }, + "2": { + "then": "Этот торговый автомат закрыт" + } + }, + "question": "Этот торговый автомат все еще работает?", + "render": "Рабочий статус: {operational_status}" + } + }, + "title": { + "render": "Торговый автомат для велосипедистов" + } + }, + "bike_cafe": { + "name": "Велосипедное кафе", + "presets": { + "0": { + "title": "Велосипедное кафе" + } + }, + "tagRenderings": { + "bike_cafe-bike-pump": { + "mappings": { + "0": { + "then": "В этом велосипедном кафе есть велосипедный насос для всеобщего использования" + }, + "1": { + "then": "В этом велосипедном кафе нет велосипедного насоса для всеобщего использования" + } + }, + "question": "Есть ли в этом велосипедном кафе велосипедный насос для всеобщего использования?" + }, + "bike_cafe-email": { + "question": "Какой адрес электронной почты у {name}?" + }, + "bike_cafe-name": { + "question": "Как называется это байк-кафе?", + "render": "Это велосипедное кафе называется {name}" + }, + "bike_cafe-opening_hours": { + "question": "Каков режим работы этого велосипедного кафе?" + }, + "bike_cafe-phone": { + "question": "Какой номер телефона у {name}?" + }, + "bike_cafe-repair-service": { + "mappings": { + "0": { + "then": "В этом велосипедном кафе есть услуги ремонта велосипедов" + }, + "1": { + "then": "В этом велосипедном кафе нет услуг ремонта велосипедов" + } + }, + "question": "Есть ли услуги ремонта велосипедов в этом велосипедном кафе?" + }, + "bike_cafe-repair-tools": { + "mappings": { + "0": { + "then": "В этом велосипедном кафе есть инструменты для починки своего велосипеда" + }, + "1": { + "then": "В этом велосипедном кафе нет инструментов для починки своего велосипеда" + } + }, + "question": "Есть ли здесь инструменты для починки вашего велосипеда?" + }, + "bike_cafe-website": { + "question": "Какой сайт у {name}?" + } + }, + "title": { + "mappings": { + "0": { + "then": "Велосипедное кафе {name}" + } + }, + "render": "Велосипедное кафе" + } + }, + "bike_parking": { + "name": "Велопарковка", + "presets": { + "0": { + "title": "Велопарковка" + } + }, + "tagRenderings": { + "Access": { + "question": "Кто может пользоваться этой велопарковкой?", + "render": "{access}" + }, + "Bicycle parking type": { + "mappings": { + "3": { + "then": "Стойка" + }, + "4": { + "then": "Двухуровневая" + }, + "5": { + "then": "Навес" + } + }, + "question": "К какому типу относится эта велопарковка?", + "render": "Это велопарковка типа {bicycle_parking}" + }, + "Capacity": { + "render": "Место для {capacity} велосипеда(ов)" + }, + "Is covered?": { + "mappings": { + "0": { + "then": "Это крытая парковка (есть крыша/навес)" + }, + "1": { + "then": "Это открытая парковка" + } + } + }, + "Underground?": { + "mappings": { + "0": { + "then": "Подземная парковка" + }, + "1": { + "then": "Подземная парковка" + }, + "2": { + "then": "Парковка на крыше" + } + } + } + }, + "title": { + "render": "Велопарковка" + } + }, + "bike_repair_station": { + "presets": { + "0": { + "title": "bелосипедный насос" + } + }, + "tagRenderings": { + "Operational status": { + "mappings": { + "0": { + "then": "Велосипедный насос сломан" + }, + "1": { + "then": "Велосипедный насос работает" + } + }, + "question": "Велосипедный насос все еще работает?" + }, + "bike_repair_station-electrical_pump": { + "mappings": { + "0": { + "then": "Ручной насос" + }, + "1": { + "then": "Электрический насос" + } + }, + "question": "Это электрический велосипедный насос?" + }, + "bike_repair_station-manometer": { + "mappings": { + "0": { + "then": "Есть манометр" + }, + "1": { + "then": "Нет манометра" + }, + "2": { + "then": "Есть манометр, но он сломан" + } + } + }, + "bike_repair_station-opening_hours": { + "mappings": { + "0": { + "then": "Всегда открыто" + } + }, + "question": "Когда работает эта точка обслуживания велосипедов?" + }, + "bike_repair_station-valves": { + "mappings": { + "0": { + "then": "Клапан Presta (также известный как французский клапан)" + }, + "1": { + "then": "Клапан Dunlop" + } + }, + "render": "Этот насос поддерживает следующие клапаны: {valves}" + } + }, + "title": { + "mappings": { + "2": { + "then": "Сломанный насос" + }, + "3": { + "then": "Велосипедный насос {name}" + }, + "4": { + "then": "Велосипедный насос" + } + } + } + }, + "bike_shop": { + "description": "Магазин, специализирующийся на продаже велосипедов или сопутствующих товаров", + "name": "Обслуживание велосипедов/магазин", + "presets": { + "0": { + "title": "Обслуживание велосипедов/магазин" + } + }, + "tagRenderings": { + "bike_repair_bike-pump-service": { + "mappings": { + "0": { + "then": "В этом магазине есть велосипедный насос для всеобщего пользования" + }, + "1": { + "then": "В этом магазине нет велосипедного насоса для всеобщего пользования" + } + }, + "question": "Предлагается ли в этом магазине велосипедный насос для всеобщего пользования?" + }, + "bike_repair_bike-wash": { + "mappings": { + "0": { + "then": "В этом магазине оказываются услуги мойки/чистки велосипедов" + }, + "2": { + "then": "В этом магазине нет услуг мойки/чистки велосипедов" + } + }, + "question": "Здесь моют велосипеды?" + }, + "bike_repair_rents-bikes": { + "mappings": { + "0": { + "then": "Этот магазин сдает велосипеды в аренду" + }, + "1": { + "then": "Этот магазин не сдает велосипеды напрокат" + } + }, + "question": "Этот магазин сдает велосипеды в аренду?" + }, + "bike_repair_repairs-bikes": { + "mappings": { + "0": { + "then": "Этот магазин ремонтирует велосипеды" + }, + "1": { + "then": "Этот магазин не ремонтирует велосипеды" + }, + "2": { + "then": "Этот магазин ремонтирует только велосипеды, купленные здесь" + }, + "3": { + "then": "В этом магазине обслуживают велосипеды определённого бренда" + } + }, + "question": "В этом магазине ремонтируют велосипеды?" + }, + "bike_repair_second-hand-bikes": { + "mappings": { + "0": { + "then": "В этом магазине продаются подержанные велосипеды" + }, + "1": { + "then": "В этом магазине не продаются подержанные велосипеды" + }, + "2": { + "then": "В этом магазине продаются только подержанные велосипеды" + } + }, + "question": "В этом магазине продаются подержанные велосипеды?" + }, + "bike_repair_sells-bikes": { + "mappings": { + "0": { + "then": "В этом магазине продаются велосипеды" + }, + "1": { + "then": "В этом магазине не продают велосипеды" + } + }, + "question": "Продаются ли велосипеды в этом магазине?" + }, + "bike_repair_tools-service": { + "mappings": { + "2": { + "then": "Инструменты для починки доступны только при покупке/аренде велосипеда в магазине" + } + }, + "question": "Есть ли здесь инструменты для починки собственного велосипеда?" + }, + "bike_shop-email": { + "question": "Какой адрес электронной почты у {name}?" + }, + "bike_shop-name": { + "question": "Как называется магазин велосипедов?", + "render": "Этот магазин велосипедов называется {name}" + }, + "bike_shop-phone": { + "question": "Какой номер телефона у {name}?" + }, + "bike_shop-website": { + "question": "Какой сайт у {name}?" + } + }, + "title": { + "mappings": { + "0": { + "then": "Магазин спортивного инвентаря {name}" + }, + "2": { + "then": "Прокат велосипедов {name}" + }, + "3": { + "then": "Ремонт велосипедов {name}" + }, + "4": { + "then": "Магазин велосипедов {name}" + } + }, + "render": "Обслуживание велосипедов/магазин" + } + }, + "binocular": { + "description": "Бинокли", + "name": "Бинокль", + "presets": { + "0": { + "title": "бинокль" + } + }, + "title": { + "render": "Бинокль" + } + }, + "cafe_pub": { + "presets": { + "0": { + "title": "паб" + }, + "1": { + "title": "бар" + }, + "2": { + "title": "кафе" + } + }, + "title": { + "mappings": { + "0": { + "then": "{name}" + } + } + } + }, + "charging_station": { + "units": { + "0": { + "applicableUnits": { + "0": { + "human": " минут", + "humanSingular": " минута" + }, + "1": { + "human": " часов", + "humanSingular": " час" + }, + "2": { + "human": " дней", + "humanSingular": " день" + } + } + }, + "1": { + "applicableUnits": { + "0": { + "human": "Вольт" + } + } + }, + "3": { + "applicableUnits": { + "0": { + "human": "киловатт" + }, + "1": { + "human": "мегаватт" + } + } + } + } + }, + "crossings": { + "presets": { + "1": { + "title": "Светофор" + } + }, + "title": { + "mappings": { + "0": { + "then": "Светофор" + } + } + } + }, + "cycleways_and_roads": { + "title": { + "mappings": { + "0": { + "then": "Велосипедная дорожка" + } + }, + "render": "Велосипедные дорожки" + } + }, + "defibrillator": { + "name": "Дефибрилляторы", + "presets": { + "0": { + "title": "Дефибриллятор" + } + }, + "tagRenderings": { + "defibrillator-access": { + "mappings": { + "0": { + "then": "Общедоступный" + }, + "1": { + "then": "Общедоступный" + }, + "2": { + "then": "Доступно только для клиентов" + } + } + }, + "defibrillator-defibrillator": { + "mappings": { + "2": { + "then": "Это обычный автоматический дефибриллятор" + } + } + }, + "defibrillator-description": { + "render": "Дополнительная информация: {description}" + }, + "defibrillator-fixme": { + "render": "Дополнительная информация для экспертов OpenStreetMap: {fixme}" + }, + "defibrillator-opening_hours": { + "question": "В какое время доступен этот дефибриллятор?", + "render": "{opening_hours_table(opening_hours)}" + }, + "defibrillator-survey:date": { + "mappings": { + "0": { + "then": "Проверено сегодня!" + } + } + } + }, + "title": { + "render": "Дефибриллятор" + } + }, + "direction": { + "name": "Визуализация направления" + }, + "drinking_water": { + "name": "Питьевая вода", + "presets": { + "0": { + "title": "питьевая вода" + } + }, + "title": { + "render": "Питьевая вода" + } + }, + "extinguisher": { + "description": "Слой карты, отображающий огнетушители.", + "name": "Карта огнетушителей.", + "presets": { + "0": { + "description": "Огнетушитель - небольшое переносное устройство для тушения огня", + "title": "Огнетушитель" + } + }, + "tagRenderings": { + "extinguisher-location": { + "mappings": { + "0": { + "then": "Внутри." + }, + "1": { + "then": "Снаружи." + } + }, + "question": "Где это расположено?", + "render": "Местоположение: {location}" + } + }, + "title": { + "render": "Огнетушители" + } + }, + "fire_station": { + "description": "Слой карты, отображающий пожарные части.", + "name": "Карта пожарных частей", + "presets": { + "0": { + "title": "Пожарная часть" + } + }, + "tagRenderings": { + "station-name": { + "question": "Как называется эта пожарная часть?", + "render": "Эта часть называется {name}." + }, + "station-place": { + "question": "Где расположена часть? (напр., название населённого пункта)", + "render": "Эта часть расположена в {addr:place}." + }, + "station-street": { + "question": " По какому адресу расположена эта часть?", + "render": "Часть расположена вдоль шоссе {addr:street}." + } + }, + "title": { + "render": "Пожарная часть" + } + }, + "food": { + "presets": { + "0": { + "title": "ресторан" + }, + "1": { + "title": "быстрое питание" + } + }, + "tagRenderings": { + "friture-take-your-container": { + "mappings": { + "1": { + "then": "Приносить свою тару не разрешено" + } + } + } + } + }, + "ghost_bike": { + "name": "Велосипед ghost", + "presets": { + "0": { + "title": "Велосипед ghost" + } + }, + "tagRenderings": { + "ghost_bike-inscription": { + "render": "{inscription}" + }, + "ghost_bike-name": { + "render": "В знак памяти о {name}" + }, + "ghost_bike-source": { + "render": "Доступна более подробная информация" + }, + "ghost_bike-start_date": { + "render": "Установлен {start_date}" + } + }, + "title": { + "render": "Велосипед Ghost" + } + }, + "hydrant": { + "description": "Слой карты, отображающий пожарные гидранты.", + "name": "Карта пожарных гидрантов", + "presets": { + "0": { + "title": "Пожарный гидрант" + } + }, + "tagRenderings": { + "hydrant-color": { + "mappings": { + "0": { + "then": "Цвет гидранта не определён." + }, + "1": { + "then": "Гидрант жёлтого цвета." + }, + "2": { + "then": "Гидрант красного цвета." + } + }, + "question": "Какого цвета гидрант?", + "render": "Цвет гидранта {colour}" + }, + "hydrant-state": { + "mappings": { + "0": { + "then": "Гидрант (полностью или частично) в рабочем состоянии" + }, + "2": { + "then": "Гидрант демонтирован" + } + } + }, + "hydrant-type": { + "mappings": { + "0": { + "then": "Тип гидранта не определён." + }, + "3": { + "then": "Тип стены." + } + }, + "question": "К какому типу относится этот гидрант?", + "render": " Тип гидранта: {fire_hydrant:type}" + } + }, + "title": { + "render": "Гидрант" + } + }, + "information_board": { + "name": "Информационные щиты", + "presets": { + "0": { + "title": "информационный щит" + } + }, + "title": { + "render": "Информационный щит" + } + }, + "map": { + "name": "Карты", + "presets": { + "0": { + "title": "Карта" + } + }, + "tagRenderings": { + "map-map_source": { + "mappings": { + "0": { + "then": "Эта карта основана на OpenStreetMap" + } + }, + "render": "Эта карта основана на {map_source}" + } + }, + "title": { + "render": "Карта" + } + }, + "nature_reserve": { + "tagRenderings": { + "Email": { + "render": "{email}" + } + } + }, + "observation_tower": { + "name": "Смотровые башни", + "title": { + "mappings": { + "0": { + "then": "{name}" + } + }, + "render": "Смотровая башня" + }, + "units": { + "0": { + "applicableUnits": { + "0": { + "human": " метр" + } + } + } + } + }, + "picnic_table": { + "description": "Слой, отображающий столы для пикника", + "name": "Столы для пикника", + "presets": { + "0": { + "title": "стол для пикника" + } + }, + "tagRenderings": { + "picnic_table-material": { + "mappings": { + "0": { + "then": "Это деревянный стол для пикника" + }, + "1": { + "then": "Это бетонный стол для пикника" + } + }, + "question": "Из чего изготовлен этот стол для пикника?", + "render": "Этот стол для пикника сделан из {material}" + } + }, + "title": { + "render": "Стол для пикника" + } + }, + "playground": { + "description": "Детские площадки", + "name": "Детские площадки", + "presets": { + "0": { + "title": "Детская площадка" + } + }, + "tagRenderings": { + "Playground-wheelchair": { + "mappings": { + "0": { + "then": "Полностью доступна пользователям кресел-колясок" + }, + "1": { + "then": "Частично доступна пользователям кресел-колясок" + }, + "2": { + "then": "Недоступна пользователям кресел-колясок" + } + }, + "question": "Доступна ли детская площадка пользователям кресел-колясок?" + }, + "playground-access": { + "mappings": { + "3": { + "then": "Недоступно" + } + } + }, + "playground-email": { + "render": "{email}" + }, + "playground-lit": { + "mappings": { + "0": { + "then": "Эта детская площадка освещается ночью" + }, + "1": { + "then": "Эта детская площадка не освещается ночью" + } + }, + "question": "Эта игровая площадка освещается ночью?" + }, + "playground-max_age": { + "render": "Доступно детям до {max_age}" + }, + "playground-min_age": { + "question": "С какого возраста доступна эта детская площадка?", + "render": "Доступно для детей старше {min_age} лет" + }, + "playground-opening_hours": { + "mappings": { + "0": { + "then": "Открыто от рассвета до заката" + }, + "1": { + "then": "Всегда доступен" + } + }, + "question": "Когда открыта эта игровая площадка?" + }, + "playground-phone": { + "render": "{phone}" + }, + "playground-surface": { + "mappings": { + "0": { + "then": "Поверхность - трава" + }, + "1": { + "then": "Поверхность - песок" + }, + "2": { + "then": "Покрытие из щепы" + }, + "3": { + "then": "Поверхность - брусчатка" + }, + "4": { + "then": "Поверхность - асфальт" + }, + "5": { + "then": "Поверхность - бетон" + } + }, + "render": "Поверхность - {surface}" + } + }, + "title": { + "mappings": { + "0": { + "then": "Детская площадка {name}" + } + }, + "render": "Детская площадка" + } + }, + "public_bookcase": { + "description": "Уличный шкаф с книгами, доступными для всех", + "name": "Книжные шкафы", + "presets": { + "0": { + "title": "Книжный шкаф" + } + }, + "tagRenderings": { + "bookcase-booktypes": { + "mappings": { + "0": { + "then": "В основном детские книги" + }, + "1": { + "then": "В основном книги для взрослых" + }, + "2": { + "then": "Книги и для детей, и для взрослых" + } + }, + "question": "Какие книги можно найти в этом общественном книжном шкафу?" + }, + "bookcase-is-accessible": { + "mappings": { + "0": { + "then": "Свободный доступ" + } + }, + "question": "Имеется ли свободный доступ к этому общественному книжному шкафу?" + }, + "public_bookcase-capacity": { + "question": "Сколько книг помещается в этом общественном книжном шкафу?", + "render": "{capacity} книг помещается в этот книжный шкаф" + }, + "public_bookcase-name": { + "mappings": { + "0": { + "then": "У этого книжного шкафа нет названия" + } + }, + "question": "Как называется этот общественный книжный шкаф?", + "render": "Название книжного шкафа — {name}" + }, + "public_bookcase-start_date": { + "question": "Когда был установлен этот общественный книжный шкаф?", + "render": "Установлен {start_date}" + }, + "public_bookcase-website": { + "question": "Есть ли веб-сайт с более подробной информацией об этом общественном книжном шкафе?", + "render": "Более подробная информация на сайте" + } + }, + "title": { + "mappings": { + "0": { + "then": "Общественный книжный шкаф {name}" + } + }, + "render": "Книжный шкаф" + } + }, + "shops": { + "description": "Магазин", + "name": "Магазин", + "presets": { + "0": { + "description": "Добавить новый магазин", + "title": "Магазин" + } + }, + "tagRenderings": { + "shops-email": { + "question": "Каков адрес электронной почты этого магазина?", + "render": "{email}" + }, + "shops-name": { + "question": "Как называется этот магазин?" + }, + "shops-opening_hours": { + "question": "Каковы часы работы этого магазина?", + "render": "{opening_hours_table(opening_hours)}" + }, + "shops-phone": { + "question": "Какой телефон?", + "render": "{phone}" + }, + "shops-shop": { + "mappings": { + "1": { + "then": "Супермаркет" + }, + "2": { + "then": "Магазин одежды" + }, + "3": { + "then": "Парикмахерская" + }, + "5": { + "then": "Автомастерская" + }, + "6": { + "then": "Автосалон" + } + }, + "question": "Что продаётся в этом магазине?" + }, + "shops-website": { + "question": "Какой веб-сайт у этого магазина?", + "render": "{website}" + } + }, + "title": { + "mappings": { + "0": { + "then": "{name}" + }, + "1": { + "then": "{shop}" + } + }, + "render": "Магазин" + } + }, + "slow_roads": { + "tagRenderings": { + "slow_roads-surface": { + "mappings": { + "0": { + "then": "Поверхность - трава" + }, + "1": { + "then": "Поверхность - земля" + }, + "3": { + "then": "Поверхность - песок" + }, + "4": { + "then": "Поверхность - брусчатка" + }, + "5": { + "then": "Поверхность - асфальт" + }, + "6": { + "then": "Поверхность - бетон" + } + }, + "render": "Поверхность - {surface}" + } + } + }, + "sport_pitch": { + "description": "Спортивная площадка", + "name": "Спортивные площадки", + "presets": { + "0": { + "title": "Стол для настольного тенниса" + }, + "1": { + "title": "Спортивная площадка" + } + }, + "tagRenderings": { + "sport-pitch-access": { + "mappings": { + "0": { + "then": "Свободный доступ" + }, + "1": { + "then": "Ограниченный доступ (напр., только по записи, в определённые часы, ...)" + }, + "2": { + "then": "Доступ только членам клуба" + } + }, + "question": "Есть ли свободный доступ к этой спортивной площадке?" + }, + "sport-pitch-reservation": { + "mappings": { + "1": { + "then": "Желательна предварительная запись для доступа на эту спортивную площадку" + }, + "2": { + "then": "Предварительная запись для доступа на эту спортивную площадку возможна, но не обязательна" + }, + "3": { + "then": "Невозможна предварительная запись" + } + }, + "question": "Нужна ли предварительная запись для доступа на эту спортивную площадку?" + }, + "sport_pitch-opening_hours": { + "mappings": { + "1": { + "then": "Всегда доступен" + } + }, + "question": "В какое время доступна эта площадка?" + }, + "sport_pitch-sport": { + "mappings": { + "0": { + "then": "Здесь можно играть в баскетбол" + }, + "1": { + "then": "Здесь можно играть в футбол" + }, + "2": { + "then": "Это стол для пинг-понга" + }, + "3": { + "then": "Здесь можно играть в теннис" + }, + "4": { + "then": "Здесь можно играть в корфбол" + }, + "5": { + "then": "Здесь можно играть в баскетбол" + } + } + }, + "sport_pitch-surface": { + "mappings": { + "0": { + "then": "Поверхность - трава" + }, + "1": { + "then": "Поверхность - песок" + }, + "2": { + "then": "Поверхность - брусчатка" + }, + "3": { + "then": "Поверхность - асфальт" + }, + "4": { + "then": "Поверхность - бетон" + } + }, + "question": "Какое покрытие на этой спортивной площадке?", + "render": "Поверхность - {surface}" + } + }, + "title": { + "render": "Спортивная площадка" + } + }, + "surveillance_camera": { + "name": "Камеры наблюдения", + "tagRenderings": { + "Camera type: fixed; panning; dome": { + "mappings": { + "1": { + "then": "Камера с поворотным механизмом" + }, + "2": { + "then": "Панорамная камера" + } + }, + "question": "Какая это камера?" + }, + "camera:mount": { + "question": "Как расположена эта камера?" + }, + "is_indoor": { + "mappings": { + "1": { + "then": "Эта камера расположена снаружи" + }, + "2": { + "then": "Возможно, эта камера расположена снаружи" + } + } + } + }, + "title": { + "render": "Камера наблюдения" + } + }, + "toilet": { + "name": "Туалеты", + "presets": { + "0": { + "title": "общественный туалет " + }, + "1": { + "title": "tуалет с доступом для пользователей кресел-колясок" + } + }, + "tagRenderings": { + "toilet-access": { + "mappings": { + "0": { + "then": "Свободный доступ" + }, + "2": { + "then": "Недоступно" + }, + "4": { + "then": "Свободный доступ" + } + }, + "question": "Есть ли свободный доступ к этим туалетам?" + }, + "toilet-charge": { + "question": "Сколько стоит посещение туалета?", + "render": "Стоимость {charge}" + }, + "toilets-fee": { + "mappings": { + "0": { + "then": "Это платные туалеты" + } + } + }, + "toilets-type": { + "question": "Какие это туалеты?" + }, + "toilets-wheelchair": { + "mappings": { + "1": { + "then": "Недоступно пользователям кресел-колясок" + } + } + } + }, + "title": { + "render": "Туалет" + } + }, + "trail": { + "name": "Тропы", + "title": { + "render": "Тропа" + } + }, + "tree_node": { + "name": "Дерево", + "presets": { + "0": { + "title": "Лиственное дерево" + }, + "1": { + "description": "Дерево с хвоей (иглами), например, сосна или ель.", + "title": "Хвойное дерево" + }, + "2": { + "description": "Если вы не уверены в том, лиственное это дерево или хвойное.", + "title": "Дерево" + } + }, + "tagRenderings": { + "tree-decidouous": { + "mappings": { + "0": { + "then": "Листопадное: у дерева опадают листья в определённое время года." + }, + "1": { + "then": "Вечнозелёное." + } + }, + "question": "Это дерево вечнозелёное или листопадное?" + }, + "tree-height": { + "mappings": { + "0": { + "then": "Высота: {height} м" + } + }, + "render": "Высота: {height}" + }, + "tree_node-name": { + "mappings": { + "0": { + "then": "У этого дерева нет названия." + } + }, + "question": "Есть ли у этого дерева название?", + "render": "Название: {name}" + }, + "tree_node-ref:OnroerendErfgoed": { + "render": "\"\"/ Onroerend Erfgoed ID: {ref:OnroerendErfgoed}" + }, + "tree_node-wikidata": { + "render": "\"\"/ Wikidata: {wikidata}" + } + }, + "title": { + "render": "Дерево" + } + }, + "viewpoint": { + "name": "Смотровая площадка", + "presets": { + "0": { + "title": "Смотровая площадка" + } + }, + "tagRenderings": { + "viewpoint-description": { + "question": "Вы хотите добавить описание?" + } + }, + "title": { + "render": "Смотровая площадка" + } + }, + "visitor_information_centre": { + "title": { + "mappings": { + "1": { + "then": "{name}" + } + }, + "render": "{name}" + } + }, + "waste_basket": { + "mapRendering": { + "0": { + "iconSize": { + "mappings": { + "0": { + "then": "Контейнер для мусора" + } + } + } + } + }, + "name": "Контейнер для мусора", + "presets": { + "0": { + "title": "Контейнер для мусора" + } + }, + "title": { + "render": "Контейнер для мусора" + } + }, + "watermill": { + "name": "Водяная мельница" } - }, - "watermill": { - "name": "Водяная мельница" - } } \ No newline at end of file diff --git a/langs/layers/sv.json b/langs/layers/sv.json index fd555286ac..607c2e040f 100644 --- a/langs/layers/sv.json +++ b/langs/layers/sv.json @@ -1,34 +1,39 @@ { - "artwork": { - "presets": { - "0": { - "title": "Konstverk" - } + "artwork": { + "presets": { + "0": { + "title": "Konstverk" + } + }, + "title": { + "mappings": { + "0": { + "then": "Konstverk {name}" + } + }, + "render": "Konstverk" + } }, - "title": { - "mappings": { - "0": { - "then": "Konstverk {name}" + "ghost_bike": { + "name": "Spökcykel", + "presets": { + "0": { + "title": "Spökcykel" + } + }, + "title": { + "render": "Spökcykel" } - }, - "render": "Konstverk" - } - }, - "ghost_bike": { - "name": "Spökcykel", - "title": { - "render": "Spökcykel" - } - }, - "shops": { - "tagRenderings": { - "shops-shop": { - "mappings": { - "5": { - "then": "Bilverkstad" - } + }, + "shops": { + "tagRenderings": { + "shops-shop": { + "mappings": { + "5": { + "then": "Bilverkstad" + } + } + } } - } } - } } \ No newline at end of file diff --git a/langs/layers/zh_Hans.json b/langs/layers/zh_Hans.json index c6a570228a..03119678cb 100644 --- a/langs/layers/zh_Hans.json +++ b/langs/layers/zh_Hans.json @@ -1,208 +1,242 @@ { - "bench": { - "name": "长椅", - "presets": { - "0": { - "title": "长椅" - } - }, - "tagRenderings": { - "bench-backrest": { - "mappings": { - "0": { - "then": "靠背:有" - }, - "1": { - "then": "靠背:无" - } + "address": { + "description": "地址", + "name": "OSM中已知的地址", + "tagRenderings": { + "fixme": { + "question": "这里应被如何修复?请做出解释" + }, + "housenumber": { + "mappings": { + "0": { + "then": "这个建筑物没有门牌号" + } + }, + "question": "这个屋子的门牌号是多少?", + "render": "门牌号是{addr:housenumber}" + }, + "street": { + "question": "这个地址位于哪条街道?", + "render": "这个地址位于{addr:street}街" + } }, - "question": "这个长椅有靠背吗?" - }, - "bench-colour": { - "mappings": { - "0": { - "then": "颜色:棕" - }, - "1": { - "then": "颜色:绿" - }, - "2": { - "then": "颜色:灰" - }, - "3": { - "then": "颜色:白" - }, - "4": { - "then": "颜色:红" - }, - "5": { - "then": "颜色:黑" - }, - "6": { - "then": "颜色:蓝" - }, - "7": { - "then": "颜色:黄" - } - }, - "question": "这个长椅是什么颜色的?", - "render": "颜色: {colour}" - }, - "bench-direction": { - "question": "坐在长椅上的时候你目视的方向是哪边?", - "render": "坐在长椅上的时候目视方向为 {direction}°方位。" - }, - "bench-material": { - "mappings": { - "0": { - "then": "材质:木" - }, - "1": { - "then": "材质:金属" - }, - "2": { - "then": "材质:石头" - }, - "3": { - "then": "材质:混凝土" - }, - "4": { - "then": "材质:塑料" - }, - "5": { - "then": "材质:不锈钢" - } - }, - "question": "这个长椅(或座椅)是用什么材料做的?", - "render": "材质: {material}" - }, - "bench-seats": { - "question": "这个长椅有几个座位?" - }, - "bench-survey:date": { - "question": "上次对这个长椅实地调查是什么时候?", - "render": "这个长椅于 {survey:date}最后一次实地调查" - } - }, - "title": { - "render": "长椅" - } - }, - "bench_at_pt": { - "name": "在公交站点的长椅", - "tagRenderings": { - "bench_at_pt-bench_type": { - "mappings": { - "1": { - "then": "站立长凳" - } + "title": { + "render": "已知的地址" } - }, - "bench_at_pt-name": { - "render": "{name}" - } }, - "title": { - "mappings": { - "0": { - "then": "在公交站点的长椅" - }, - "1": { - "then": "在庇护所的长椅" + "ambulancestation": { + "name": "救护车站地图", + "presets": { + "0": { + "description": "向地图中添加一个救护车站", + "title": "救护车站" + } } - }, - "render": "长椅" - } - }, - "bicycle_library": { - "tagRenderings": { - "bicycle-library-target-group": { - "question": "谁可以从这里借自行车?" - } - } - }, - "bicycle_tube_vending_machine": { - "tagRenderings": { - "Still in use?": { - "mappings": { - "0": { - "then": "这个借还机正常工作" - }, - "1": { - "then": "这个借还机已经损坏" - }, - "2": { - "then": "这个借还机被关闭了" - } - } - } - } - }, - "bike_cafe": { - "name": "自行车咖啡", - "presets": { - "0": { - "title": "自行车咖啡" - } }, - "tagRenderings": { - "bike_cafe-bike-pump": { - "mappings": { - "0": { - "then": "这家自行车咖啡为每个人提供打气筒" - }, - "1": { - "then": "这家自行车咖啡不为每个人提供打气筒" - } + "bench": { + "name": "长椅", + "presets": { + "0": { + "title": "长椅" + } }, - "question": "这家自行车咖啡为每个使用者提供打气筒吗?" - }, - "bike_cafe-email": { - "question": "{name}的电子邮箱是什么?" - }, - "bike_cafe-name": { - "question": "这个自行车咖啡的名字是什么?", - "render": "这家自行车咖啡叫做 {name}" - }, - "bike_cafe-opening_hours": { - "question": "这家自行车咖啡什么时候开门营业?" - }, - "bike_cafe-phone": { - "question": "{name}的电话号码是什么?" - }, - "bike_cafe-repair-service": { - "mappings": { - "0": { - "then": "这家自行车咖啡可以修车" - }, - "1": { - "then": "这家自行车咖啡不能修车" - } + "tagRenderings": { + "bench-backrest": { + "mappings": { + "0": { + "then": "靠背:有" + }, + "1": { + "then": "靠背:无" + } + }, + "question": "这个长椅有靠背吗?" + }, + "bench-colour": { + "mappings": { + "0": { + "then": "颜色:棕" + }, + "1": { + "then": "颜色:绿" + }, + "2": { + "then": "颜色:灰" + }, + "3": { + "then": "颜色:白" + }, + "4": { + "then": "颜色:红" + }, + "5": { + "then": "颜色:黑" + }, + "6": { + "then": "颜色:蓝" + }, + "7": { + "then": "颜色:黄" + } + }, + "question": "这个长椅是什么颜色的?", + "render": "颜色: {colour}" + }, + "bench-direction": { + "question": "坐在长椅上的时候你目视的方向是哪边?", + "render": "坐在长椅上的时候目视方向为 {direction}°方位。" + }, + "bench-material": { + "mappings": { + "0": { + "then": "材质:木" + }, + "1": { + "then": "材质:金属" + }, + "2": { + "then": "材质:石头" + }, + "3": { + "then": "材质:混凝土" + }, + "4": { + "then": "材质:塑料" + }, + "5": { + "then": "材质:不锈钢" + } + }, + "question": "这个长椅(或座椅)是用什么材料做的?", + "render": "材质: {material}" + }, + "bench-seats": { + "question": "这个长椅有几个座位?" + }, + "bench-survey:date": { + "question": "上次对这个长椅实地调查是什么时候?", + "render": "这个长椅于 {survey:date}最后一次实地调查" + } }, - "question": "这家自行车咖啡t提供修车服务吗?" - }, - "bike_cafe-repair-tools": { - "mappings": { - "0": { - "then": "这家自行车咖啡为DIY修理者提供工具" - }, - "1": { - "then": "这家自行车咖啡不为DIY修理者提供工具" - } - }, - "question": "这里有供你修车用的工具吗?" - }, - "bike_cafe-website": { - "question": "{name}的网站是什么?" - } - }, - "title": { - "mappings": { - "0": { - "then": "自行车咖啡 {name}" + "title": { + "render": "长椅" + } + }, + "bench_at_pt": { + "name": "在公交站点的长椅", + "tagRenderings": { + "bench_at_pt-bench_type": { + "mappings": { + "1": { + "then": "站立长凳" + } + } + }, + "bench_at_pt-name": { + "render": "{name}" + } + }, + "title": { + "mappings": { + "0": { + "then": "在公交站点的长椅" + }, + "1": { + "then": "在庇护所的长椅" + } + }, + "render": "长椅" + } + }, + "bicycle_library": { + "tagRenderings": { + "bicycle-library-target-group": { + "question": "谁可以从这里借自行车?" + } + } + }, + "bicycle_tube_vending_machine": { + "tagRenderings": { + "Still in use?": { + "mappings": { + "0": { + "then": "这个借还机正常工作" + }, + "1": { + "then": "这个借还机已经损坏" + }, + "2": { + "then": "这个借还机被关闭了" + } + } + } + } + }, + "bike_cafe": { + "name": "自行车咖啡", + "presets": { + "0": { + "title": "自行车咖啡" + } + }, + "tagRenderings": { + "bike_cafe-bike-pump": { + "mappings": { + "0": { + "then": "这家自行车咖啡为每个人提供打气筒" + }, + "1": { + "then": "这家自行车咖啡不为每个人提供打气筒" + } + }, + "question": "这家自行车咖啡为每个使用者提供打气筒吗?" + }, + "bike_cafe-email": { + "question": "{name}的电子邮箱是什么?" + }, + "bike_cafe-name": { + "question": "这个自行车咖啡的名字是什么?", + "render": "这家自行车咖啡叫做 {name}" + }, + "bike_cafe-opening_hours": { + "question": "这家自行车咖啡什么时候开门营业?" + }, + "bike_cafe-phone": { + "question": "{name}的电话号码是什么?" + }, + "bike_cafe-repair-service": { + "mappings": { + "0": { + "then": "这家自行车咖啡可以修车" + }, + "1": { + "then": "这家自行车咖啡不能修车" + } + }, + "question": "这家自行车咖啡t提供修车服务吗?" + }, + "bike_cafe-repair-tools": { + "mappings": { + "0": { + "then": "这家自行车咖啡为DIY修理者提供工具" + }, + "1": { + "then": "这家自行车咖啡不为DIY修理者提供工具" + } + }, + "question": "这里有供你修车用的工具吗?" + }, + "bike_cafe-website": { + "question": "{name}的网站是什么?" + } + }, + "title": { + "mappings": { + "0": { + "then": "自行车咖啡 {name}" + } + }, + "render": "自行车咖啡" } - }, - "render": "自行车咖啡" } - } } \ No newline at end of file diff --git a/langs/layers/zh_Hant.json b/langs/layers/zh_Hant.json index 92fdbfe65e..f1e931d5d6 100644 --- a/langs/layers/zh_Hant.json +++ b/langs/layers/zh_Hant.json @@ -1,457 +1,478 @@ { - "artwork": { - "description": "不同類型的藝術品", - "name": "藝術品", - "presets": { - "0": { - "title": "藝術品" - } - }, - "tagRenderings": { - "artwork-artist_name": { - "question": "創造這個的藝術家是誰?", - "render": "{artist_name} 創作" - }, - "artwork-artwork_type": { - "mappings": { - "0": { - "then": "建築物" - }, - "1": { - "then": "壁畫" - }, - "2": { - "then": "繪畫" - }, - "3": { - "then": "雕塑" - }, - "4": { - "then": "雕像" - }, - "5": { - "then": "半身像" - }, - "6": { - "then": "石頭" - }, - "7": { - "then": "安裝" - }, - "8": { - "then": "塗鴨" - }, - "9": { - "then": "寬慰" - }, - "10": { - "then": "Azulejo (西班牙雕塑作品名稱)" - }, - "11": { - "then": "瓷磚" - } - }, - "question": "這是什麼類型的藝術品?", - "render": "這是 {artwork_type}" - }, - "artwork-website": { - "question": "在那個網站能夠找到更多藝術品的資訊?", - "render": "這個網站有更多資訊" - }, - "artwork-wikidata": { - "question": "這個藝術品有那個對應的 Wikidata 項目?", - "render": "與 {wikidata}對應" - } - }, - "title": { - "mappings": { - "0": { - "then": "藝術品{name}" + "address": { + "description": "地址", + "name": "OSM 上已知的地址", + "tagRenderings": { + "fixme": { + "question": "這裡需要修什麼?請直接解釋" + } } - }, - "render": "藝術品" - } - }, - "bench": { - "name": "長椅", - "presets": { - "0": { - "title": "長椅" - } }, - "tagRenderings": { - "bench-backrest": { - "mappings": { - "0": { - "then": "靠背:有" - }, - "1": { - "then": "靠背:無" - } + "artwork": { + "description": "不同類型的藝術品", + "name": "藝術品", + "presets": { + "0": { + "title": "藝術品" + } }, - "question": "這個長椅是否有靠背?" - }, - "bench-colour": { - "mappings": { - "0": { - "then": "顏色:棕色" - }, - "1": { - "then": "顏色:綠色" - }, - "2": { - "then": "顏色:灰色" - }, - "3": { - "then": "顏色:白色" - }, - "4": { - "then": "顏色:紅色" - }, - "5": { - "then": "顏色:黑色" - }, - "6": { - "then": "顏色:藍色" - }, - "7": { - "then": "顏色:黃色" - } + "tagRenderings": { + "artwork-artist_name": { + "question": "創造這個的藝術家是誰?", + "render": "{artist_name} 創作" + }, + "artwork-artwork_type": { + "mappings": { + "0": { + "then": "建築物" + }, + "1": { + "then": "壁畫" + }, + "2": { + "then": "繪畫" + }, + "3": { + "then": "雕塑" + }, + "4": { + "then": "雕像" + }, + "5": { + "then": "半身像" + }, + "6": { + "then": "石頭" + }, + "7": { + "then": "安裝" + }, + "8": { + "then": "塗鴨" + }, + "9": { + "then": "寬慰" + }, + "10": { + "then": "Azulejo (西班牙雕塑作品名稱)" + }, + "11": { + "then": "瓷磚" + } + }, + "question": "這是什麼類型的藝術品?", + "render": "這是 {artwork_type}" + }, + "artwork-website": { + "question": "在那個網站能夠找到更多藝術品的資訊?", + "render": "這個網站有更多資訊" + }, + "artwork-wikidata": { + "question": "這個藝術品有那個對應的 Wikidata 項目?", + "render": "與 {wikidata}對應" + } }, - "question": "這個長椅是什麼顏色的?", - "render": "顏色:{colour}" - }, - "bench-direction": { - "question": "坐在長椅時是面對那個方向?", - "render": "當坐在長椅時,那個人朝向 {direction}°。" - }, - "bench-material": { - "mappings": { - "0": { - "then": "材質:木頭" - }, - "1": { - "then": "材質:金屬" - }, - "2": { - "then": "材質:石頭" - }, - "3": { - "then": "材質:水泥" - }, - "4": { - "then": "材質:塑膠" - }, - "5": { - "then": "材質:鋼鐵" - } - }, - "question": "這個長椅 (座位) 是什麼做的?", - "render": "材質:{material}" - }, - "bench-seats": { - "question": "這個長椅有幾個位子?", - "render": "{seats} 座位數" - }, - "bench-survey:date": { - "question": "上一次探察長椅是什麼時候?", - "render": "這個長椅最後是在 {survey:date} 探查的" - } - }, - "title": { - "render": "長椅" - } - }, - "bench_at_pt": { - "name": "大眾運輸站點的長椅", - "tagRenderings": { - "bench_at_pt-bench_type": { - "mappings": { - "1": { - "then": "站立長椅" - } + "title": { + "mappings": { + "0": { + "then": "藝術品{name}" + } + }, + "render": "藝術品" } - }, - "bench_at_pt-name": { - "render": "{name}" - } }, - "title": { - "mappings": { - "0": { - "then": "大眾運輸站點的長椅" + "bench": { + "name": "長椅", + "presets": { + "0": { + "title": "長椅" + } }, - "1": { - "then": "涼亭內的長椅" + "tagRenderings": { + "bench-backrest": { + "mappings": { + "0": { + "then": "靠背:有" + }, + "1": { + "then": "靠背:無" + } + }, + "question": "這個長椅是否有靠背?" + }, + "bench-colour": { + "mappings": { + "0": { + "then": "顏色:棕色" + }, + "1": { + "then": "顏色:綠色" + }, + "2": { + "then": "顏色:灰色" + }, + "3": { + "then": "顏色:白色" + }, + "4": { + "then": "顏色:紅色" + }, + "5": { + "then": "顏色:黑色" + }, + "6": { + "then": "顏色:藍色" + }, + "7": { + "then": "顏色:黃色" + } + }, + "question": "這個長椅是什麼顏色的?", + "render": "顏色:{colour}" + }, + "bench-direction": { + "question": "坐在長椅時是面對那個方向?", + "render": "當坐在長椅時,那個人朝向 {direction}°。" + }, + "bench-material": { + "mappings": { + "0": { + "then": "材質:木頭" + }, + "1": { + "then": "材質:金屬" + }, + "2": { + "then": "材質:石頭" + }, + "3": { + "then": "材質:水泥" + }, + "4": { + "then": "材質:塑膠" + }, + "5": { + "then": "材質:鋼鐵" + } + }, + "question": "這個長椅 (座位) 是什麼做的?", + "render": "材質:{material}" + }, + "bench-seats": { + "question": "這個長椅有幾個位子?", + "render": "{seats} 座位數" + }, + "bench-survey:date": { + "question": "上一次探察長椅是什麼時候?", + "render": "這個長椅最後是在 {survey:date} 探查的" + } + }, + "title": { + "render": "長椅" } - }, - "render": "長椅" - } - }, - "bicycle_library": { - "description": "能夠長期租用單車的設施", - "name": "單車圖書館", - "presets": { - "0": { - "description": "單車圖書館有一大批單車供人租借", - "title": "自行車圖書館 ( Fietsbibliotheek)" - } }, - "tagRenderings": { - "bicycle-library-target-group": { - "mappings": { - "0": { - "then": "提供兒童單車" - }, - "1": { - "then": "有提供成人單車" - }, - "2": { - "then": "有提供行動不便人士的單車" - } + "bench_at_pt": { + "name": "大眾運輸站點的長椅", + "tagRenderings": { + "bench_at_pt-bench_type": { + "mappings": { + "1": { + "then": "站立長椅" + } + } + }, + "bench_at_pt-name": { + "render": "{name}" + } }, - "question": "誰可以在這裡租單車?" - }, - "bicycle_library-charge": { - "mappings": { - "0": { - "then": "租借單車免費" - }, - "1": { - "then": "租借單車價錢 €20/year 與 €20 保證金" - } - }, - "question": "租用單車的費用多少?", - "render": "租借單車需要 {charge}" - }, - "bicycle_library-name": { - "question": "這個單車圖書館的名稱是?", - "render": "這個單車圖書館叫做 {name}" - } - }, - "title": { - "render": "單車圖書館" - } - }, - "bicycle_tube_vending_machine": { - "name": "自行車內胎自動售貨機", - "presets": { - "0": { - "title": "自行車內胎自動售貨機" - } - }, - "tagRenderings": { - "Still in use?": { - "mappings": { - "0": { - "then": "這個自動販賣機仍運作" - }, - "1": { - "then": "這個自動販賣機沒有運作了" - }, - "2": { - "then": "這個自動販賣機已經關閉了" - } - }, - "question": "這個自動販賣機仍有運作嗎?", - "render": "運作狀態是 {operational_status}" - } - }, - "title": { - "render": "自行車內胎自動售貨機" - } - }, - "bike_cafe": { - "name": "單車咖啡廳", - "presets": { - "0": { - "title": "單車咖啡廳" - } - }, - "tagRenderings": { - "bike_cafe-bike-pump": { - "mappings": { - "0": { - "then": "這個單車咖啡廳有提供給任何人都能使用的單車打氣甬" - }, - "1": { - "then": "這個單車咖啡廳並沒有為所有人提供單車打氣甬" - } - }, - "question": "這個單車咖啡廳有提供給任何人都能使用的單車打氣甬嗎?" - }, - "bike_cafe-email": { - "question": "{name} 的電子郵件地址是?" - }, - "bike_cafe-name": { - "question": "這個單車咖啡廳的名稱是?", - "render": "這個單車咖啡廳叫做 {name}" - }, - "bike_cafe-opening_hours": { - "question": "何時這個單車咖啡廳營運?" - }, - "bike_cafe-phone": { - "question": "{name} 的電話號碼是?" - }, - "bike_cafe-repair-service": { - "mappings": { - "0": { - "then": "這個單車咖啡廳修理單車" - }, - "1": { - "then": "這個單車咖啡廳並不修理單車" - } - }, - "question": "這個單車咖啡廳是否能修理單車?" - }, - "bike_cafe-repair-tools": { - "mappings": { - "0": { - "then": "這個單車咖啡廳提供工具讓你修理" - }, - "1": { - "then": "這個單車咖啡廳並沒有提供工具讓你修理" - } - }, - "question": "這裡是否有工具修理你的單車嗎?" - }, - "bike_cafe-website": { - "question": "{name} 的網站是?" - } - }, - "title": { - "mappings": { - "0": { - "then": "單車咖啡廳{name}" + "title": { + "mappings": { + "0": { + "then": "大眾運輸站點的長椅" + }, + "1": { + "then": "涼亭內的長椅" + } + }, + "render": "長椅" } - }, - "render": "單車咖啡廳" - } - }, - "bike_cleaning": { - "name": "單車清理服務", - "presets": { - "0": { - "title": "單車清理服務" - } }, - "title": { - "mappings": { - "0": { - "then": "單車清理服務 {name}" + "bicycle_library": { + "description": "能夠長期租用單車的設施", + "name": "單車圖書館", + "presets": { + "0": { + "description": "單車圖書館有一大批單車供人租借", + "title": "自行車圖書館 ( Fietsbibliotheek)" + } + }, + "tagRenderings": { + "bicycle-library-target-group": { + "mappings": { + "0": { + "then": "提供兒童單車" + }, + "1": { + "then": "有提供成人單車" + }, + "2": { + "then": "有提供行動不便人士的單車" + } + }, + "question": "誰可以在這裡租單車?" + }, + "bicycle_library-charge": { + "mappings": { + "0": { + "then": "租借單車免費" + }, + "1": { + "then": "租借單車價錢 €20/year 與 €20 保證金" + } + }, + "question": "租用單車的費用多少?", + "render": "租借單車需要 {charge}" + }, + "bicycle_library-name": { + "question": "這個單車圖書館的名稱是?", + "render": "這個單車圖書館叫做 {name}" + } + }, + "title": { + "render": "單車圖書館" } - }, - "render": "單車清理服務" - } - }, - "bike_parking": { - "name": "單車停車場", - "presets": { - "0": { - "title": "單車停車場" - } }, - "tagRenderings": { - "Access": { - "mappings": { - "0": { - "then": "公開可用" - }, - "1": { - "then": "通行性主要是為了企業的顧客" - }, - "2": { - "then": "通行性僅限學校、公司或組織的成員" - } + "bicycle_tube_vending_machine": { + "name": "自行車內胎自動售貨機", + "presets": { + "0": { + "title": "自行車內胎自動售貨機" + } }, - "question": "誰可以使用這個單車停車場?", - "render": "{access}" - }, - "Bicycle parking type": { - "mappings": { - "0": { - "then": "單車架 " - }, - "1": { - "then": "車輪架/圓圈 " - }, - "2": { - "then": "車把架 " - }, - "3": { - "then": "車架" - }, - "4": { - "then": "兩層" - }, - "5": { - "then": "車棚 " - }, - "6": { - "then": "柱子 " - }, - "7": { - "then": "樓層當中標示為單車停車場的區域" - } + "tagRenderings": { + "Still in use?": { + "mappings": { + "0": { + "then": "這個自動販賣機仍運作" + }, + "1": { + "then": "這個自動販賣機沒有運作了" + }, + "2": { + "then": "這個自動販賣機已經關閉了" + } + }, + "question": "這個自動販賣機仍有運作嗎?", + "render": "運作狀態是 {operational_status}" + } }, - "question": "這是那種類型的單車停車場?", - "render": "這個單車停車場的類型是:{bicycle_parking}" - }, - "Capacity": { - "question": "這個單車停車場能放幾台單車 (包括裝箱單車)?", - "render": "{capacity} 單車的地方" - }, - "Cargo bike spaces?": { - "mappings": { - "0": { - "then": "這個停車場有地方可以放裝箱單車" - }, - "1": { - "then": "這停車場有設計 (官方) 空間給裝箱的單車。" - } - }, - "question": "這個單車停車場有地方放裝箱的單車嗎?" - }, - "Is covered?": { - "mappings": { - "0": { - "then": "這個停車場有遮蔽 (有屋頂)" - }, - "1": { - "then": "這個停車場沒有遮蔽" - } - }, - "question": "這個停車場是否有車棚?如果是室內停車場也請選擇\"遮蔽\"。" - }, - "Underground?": { - "mappings": { - "0": { - "then": "地下停車場" - }, - "1": { - "then": "地面停車場" - }, - "2": { - "then": "屋頂停車場" - }, - "3": { - "then": "地面層停車場" - }, - "4": { - "then": "屋頂停車場" - } - }, - "question": "這個單車停車場的相對位置是?" - } + "title": { + "render": "自行車內胎自動售貨機" + } }, - "title": { - "render": "單車停車場" + "bike_cafe": { + "name": "單車咖啡廳", + "presets": { + "0": { + "title": "單車咖啡廳" + } + }, + "tagRenderings": { + "bike_cafe-bike-pump": { + "mappings": { + "0": { + "then": "這個單車咖啡廳有提供給任何人都能使用的單車打氣甬" + }, + "1": { + "then": "這個單車咖啡廳並沒有為所有人提供單車打氣甬" + } + }, + "question": "這個單車咖啡廳有提供給任何人都能使用的單車打氣甬嗎?" + }, + "bike_cafe-email": { + "question": "{name} 的電子郵件地址是?" + }, + "bike_cafe-name": { + "question": "這個單車咖啡廳的名稱是?", + "render": "這個單車咖啡廳叫做 {name}" + }, + "bike_cafe-opening_hours": { + "question": "何時這個單車咖啡廳營運?" + }, + "bike_cafe-phone": { + "question": "{name} 的電話號碼是?" + }, + "bike_cafe-repair-service": { + "mappings": { + "0": { + "then": "這個單車咖啡廳修理單車" + }, + "1": { + "then": "這個單車咖啡廳並不修理單車" + } + }, + "question": "這個單車咖啡廳是否能修理單車?" + }, + "bike_cafe-repair-tools": { + "mappings": { + "0": { + "then": "這個單車咖啡廳提供工具讓你修理" + }, + "1": { + "then": "這個單車咖啡廳並沒有提供工具讓你修理" + } + }, + "question": "這裡是否有工具修理你的單車嗎?" + }, + "bike_cafe-website": { + "question": "{name} 的網站是?" + } + }, + "title": { + "mappings": { + "0": { + "then": "單車咖啡廳{name}" + } + }, + "render": "單車咖啡廳" + } + }, + "bike_cleaning": { + "name": "單車清理服務", + "presets": { + "0": { + "title": "單車清理服務" + } + }, + "title": { + "mappings": { + "0": { + "then": "單車清理服務 {name}" + } + }, + "render": "單車清理服務" + } + }, + "bike_parking": { + "name": "單車停車場", + "presets": { + "0": { + "title": "單車停車場" + } + }, + "tagRenderings": { + "Access": { + "mappings": { + "0": { + "then": "公開可用" + }, + "1": { + "then": "通行性主要是為了企業的顧客" + }, + "2": { + "then": "通行性僅限學校、公司或組織的成員" + } + }, + "question": "誰可以使用這個單車停車場?", + "render": "{access}" + }, + "Bicycle parking type": { + "mappings": { + "0": { + "then": "單車架" + }, + "1": { + "then": "車輪架/圓圈" + }, + "2": { + "then": "車把架" + }, + "3": { + "then": "車架" + }, + "4": { + "then": "兩層" + }, + "5": { + "then": "車棚" + }, + "6": { + "then": "柱子" + }, + "7": { + "then": "樓層當中標示為單車停車場的區域" + } + }, + "question": "這是那種類型的單車停車場?", + "render": "這個單車停車場的類型是:{bicycle_parking}" + }, + "Capacity": { + "question": "這個單車停車場能放幾台單車 (包括裝箱單車)?", + "render": "{capacity} 單車的地方" + }, + "Cargo bike spaces?": { + "mappings": { + "0": { + "then": "這個停車場有地方可以放裝箱單車" + }, + "1": { + "then": "這停車場有設計 (官方) 空間給裝箱的單車。" + } + }, + "question": "這個單車停車場有地方放裝箱的單車嗎?" + }, + "Is covered?": { + "mappings": { + "0": { + "then": "這個停車場有遮蔽 (有屋頂)" + }, + "1": { + "then": "這個停車場沒有遮蔽" + } + }, + "question": "這個停車場是否有車棚?如果是室內停車場也請選擇\"遮蔽\"。" + }, + "Underground?": { + "mappings": { + "0": { + "then": "地下停車場" + }, + "1": { + "then": "地面停車場" + }, + "2": { + "then": "屋頂停車場" + }, + "3": { + "then": "地面層停車場" + } + }, + "question": "這個單車停車場的相對位置是?" + } + }, + "title": { + "render": "單車停車場" + } + }, + "cafe_pub": { + "name": "咖啡廳與酒吧" + }, + "extinguisher": { + "description": "顯示消防栓的地圖圖層。" + }, + "ghost_bike": { + "name": "幽靈單車", + "presets": { + "0": { + "title": "幽靈單車" + } + }, + "title": { + "render": "幽靈單車" + } + }, + "hydrant": { + "description": "顯示消防栓的地圖圖層。", + "name": "消防栓地圖" } - }, - "ghost_bike": { - "name": "幽靈單車", - "title": { - "render": "幽靈單車" - } - } } \ No newline at end of file diff --git a/langs/layers/zh_Hanå¨s.json b/langs/layers/zh_Hanå¨s.json index 272d0dfd9d..0efb218224 100644 --- a/langs/layers/zh_Hanå¨s.json +++ b/langs/layers/zh_Hanå¨s.json @@ -1,9 +1,9 @@ { - "bench": { - "tagRenderings": { - "bench-material": { - "render": "材质: {material}" - } + "bench": { + "tagRenderings": { + "bench-material": { + "render": "材质: {material}" + } + } } - } } \ No newline at end of file diff --git a/langs/nb_NO.json b/langs/nb_NO.json index df74de38d4..92ff2f2583 100644 --- a/langs/nb_NO.json +++ b/langs/nb_NO.json @@ -1,276 +1,276 @@ { - "general": { - "skip": "Hopp over dette spørsmålet", - "cancel": "Avbryt", - "save": "Lagre", - "search": { - "searching": "Søker …", - "search": "Søk etter et sted", - "nothing": "Resultatløst …", - "error": "Noe gikk galt ." + "centerMessage": { + "loadingData": "Laster inn data …", + "ready": "Ferdig", + "retrying": "Kunne ikke laste inn data. Prøver igjen om {count} sekunder …", + "zoomIn": "Forstørr for å vise eller redigere data" }, - "welcomeBack": "Du er innlogget. Velkommen tilbake.", - "pdf": { - "versionInfo": "v{version}. Generert {date}", - "attr": "Kartdata © OpenStreetMap-bidragsytere, gjenbrukbart med ODbL-lisens", - "generatedWith": "Generert av MapComplete.osm.be", - "attrBackground": "Bakgrunnslag: {background}" + "delete": { + "cancel": "Avbryt", + "cannotBeDeleted": "Denne funksjonen kan ikke slettes", + "delete": "Slett", + "explanations": { + "hardDelete": "Dette punktet vil bli slettet i OpenStreetMap. Det kan gjenopprettes av en dreven bidragsyter.", + "selectReason": "Velg hvorfor denne funksjonen skal slettes", + "softDelete": "Denne funksjonen vil bli oppdatert og skjult fra programmet. {reason}" + }, + "isDeleted": "Denne funksjonen har blitt slettet", + "isntAPoint": "Kun punkter kan slettes, valgt funksjon er en vei, et område, eller en relasjon.", + "loading": "Inspiserer egenskaper for å sjekke om denne funksjonen kan slettes.", + "loginToDelete": "Du må være innlogget for å slette et punkt", + "notEnoughExperience": "Dette punktet ble opprettet av noen andre.", + "onlyEditedByLoggedInUser": "Dette punktet har kun blitt redigert av deg. Du kan trygt slette det.", + "partOfOthers": "Dette punktet er en del av en vei eller relasjon, og kan derfor ikke slettes direkte.", + "readMessages": "Du har uleste meldinger. Les dette før sletting av et punkt, fordi noen kan ha tilbakemeldinger å komme med.", + "reasons": { + "disused": "Denne funksjonen er ute av bruk eller fjernet", + "duplicate": "Dette punktet er et duplikat av en annen funksjon", + "notFound": "Fant ikke funksjonen", + "test": "Dette var et testpunkt, funksjonen var aldri operativ" + }, + "safeDelete": "Dette punktet kan trygt slettes.", + "useSomethingElse": "Bruk en annen OpenStreetMap-redigerer til å slette det istedenfor.", + "whyDelete": "Hvorfor bør dette punktet slettes?" }, - "loginToStart": "Logg inn for å besvare dette spørsmålet", - "osmLinkTooltip": "Vis dette objektet på OpenStreetMap for historikk og flere redigeringsvalg", - "add": { - "presetInfo": "Det nye interessepunktet vil få {tags}", - "zoomInFurther": "Forstørr mer for å legge til et punkt.", - "title": "Legg til et nytt punkt?", - "intro": "Du klikket et sted der ingen data er kjent enda.
", - "addNewMapLabel": "Legg til nytt element", - "confirmIntro": "

Legg til {title} her?

Punktet du oppretter her vil være synlig for alle. Kun legg til ting på kartet hvis de virkelig finnes. Mange programmer bruker denne dataen.", - "layerNotEnabled": "Laget {layer} er ikke påslått. Skru på dette laget for å legge til et punkt.", - "confirmButton": "Legg til en {category} her.
Din endring er synlig for alle
", - "openLayerControl": "Åpne lagkontrollboksen", - "hasBeenImported": "Dette punktet har allerede blitt importert", - "stillLoading": "Dataen lastes fremdeles inn. Vent litt før du legger til et nytt punkt.", - "warnVisibleForEveryone": "Din endring vil være synlig for alle", - "zoomInMore": "Forstørr mer for å importere denne funksjonen", - "disableFilters": "Skru av alle filtre", - "disableFiltersExplanation": "Det kan hende noen funksjoner er skjult av et filter", - "addNew": "Legg til en ny {category} her", - "pleaseLogin": "Logg inn for å legge til et nytt punkt" + "favourite": { + "reload": "Last inn dataen igjen" }, - "noNameCategory": "{category} uten navn", - "morescreen": { - "requestATheme": "Hvis du ønsker et brukerdefinert tema kan du forespørre det i feilsporeren", - "intro": "

Flere temakart?

Liker du å samle inn geodata?
Det er flere tilgjengelige temaer.", - "createYourOwnTheme": "Opprett ditt eget MapComplete-tema fra grunnen av", - "hiddenExplanation": "Disse temaene er kun tilgjengelige hvis du kjenner lenken. Du har oppdaget {hidden_discovered} av {total_hidden} hidden tema.", - "previouslyHiddenTitle": "Tidligere besøkte skjulte tema", - "streetcomplete": "Et annet lignende program er StreetComplete." + "general": { + "add": { + "addNew": "Legg til en ny {category} her", + "addNewMapLabel": "Legg til nytt element", + "confirmButton": "Legg til en {category} her.
Din endring er synlig for alle
", + "confirmIntro": "

Legg til {title} her?

Punktet du oppretter her vil være synlig for alle. Kun legg til ting på kartet hvis de virkelig finnes. Mange programmer bruker denne dataen.", + "disableFilters": "Skru av alle filtre", + "disableFiltersExplanation": "Det kan hende noen funksjoner er skjult av et filter", + "hasBeenImported": "Dette punktet har allerede blitt importert", + "intro": "Du klikket et sted der ingen data er kjent enda.
", + "layerNotEnabled": "Laget {layer} er ikke påslått. Skru på dette laget for å legge til et punkt.", + "openLayerControl": "Åpne lagkontrollboksen", + "pleaseLogin": "Logg inn for å legge til et nytt punkt", + "presetInfo": "Det nye interessepunktet vil få {tags}", + "stillLoading": "Dataen lastes fremdeles inn. Vent litt før du legger til et nytt punkt.", + "title": "Legg til et nytt punkt?", + "warnVisibleForEveryone": "Din endring vil være synlig for alle", + "zoomInFurther": "Forstørr mer for å legge til et punkt.", + "zoomInMore": "Forstørr mer for å importere denne funksjonen" + }, + "attribution": { + "attributionContent": "

All data er fra OpenStreetMap, fritt gjenbrukbart med Open DataBase-lisens.

", + "attributionTitle": "Tilskrivelsesmerknad", + "codeContributionsBy": "MapComplete har blitt bygd av {contributors} og {hiddenCount} bidragsytere til", + "iconAttribution": { + "title": "Brukte ikoner" + }, + "mapContributionsBy": "Den dataen som er synlig nå har redigeringer gjort av {contributors}", + "mapContributionsByAndHidden": "Data som vises nå har redigeringer gjort av {contributors} og {hiddenCount} andre bidragsytere", + "themeBy": "Tema vedlikeholdt av {author}" + }, + "backgroundMap": "Bakgrunnskart", + "cancel": "Avbryt", + "customThemeIntro": "

Egendefinerte tema

Dette er tidligere besøkte brukergenererte tema.", + "download": { + "downloadAsPdf": "Last ned PDF av nåværende kart", + "downloadAsPdfHelper": "Ideelt for utskrift av nåværende kart", + "downloadCSV": "Last ned synlig data som CSV", + "downloadCSVHelper": "Kompatibelt med LibreOffice Calc, Excel, …", + "downloadGeoJsonHelper": "Kompatibelt med QGIS, ArcGIS, ESRI, …", + "downloadGeojson": "Last ned synlig data som GeoJSON", + "exporting": "Eksporterer …", + "includeMetaData": "Inkluder metadata (siste bidragsytere, utregnede verdier, …)", + "licenseInfo": "

Opphavsrettsmerknad

Tilbudt data er tilgjengelig med ODbL-lisens. Gjenbruk er gratis for alle formål, men
  • tilskrivelsen© OpenStreetMap-bidragsytere kreves
  • Enhver endring må publiseres under samme lisens
Les hele opphavsrettsmerknaden for detaljer.", + "noDataLoaded": "Ingen data innlastet enda. Nedlasting vil være tilgjengelig snart.", + "title": "Last ned synlig data" + }, + "fewChangesBefore": "Besvar et par spørsmål for eksisterende punkter før du legger til et nytt.", + "getStartedLogin": "Logg inn med OpenStreetMap for å begynne", + "getStartedNewAccount": " eller opprett en ny konto", + "goToInbox": "Åpne innboks", + "histogram": { + "error_loading": "Kunne ikke laste inn histogrammet" + }, + "layerSelection": { + "title": "Velg lag", + "zoomInToSeeThisLayer": "Forstørr kartet hvis du vil se dette kartet" + }, + "loading": "Laster inn …", + "loginOnlyNeededToEdit": "hvis du ønsker å redigere kartet", + "loginToStart": "Logg inn for å besvare dette spørsmålet", + "morescreen": { + "createYourOwnTheme": "Opprett ditt eget MapComplete-tema fra grunnen av", + "hiddenExplanation": "Disse temaene er kun tilgjengelige hvis du kjenner lenken. Du har oppdaget {hidden_discovered} av {total_hidden} hidden tema.", + "intro": "

Flere temakart?

Liker du å samle inn geodata?
Det er flere tilgjengelige temaer.", + "previouslyHiddenTitle": "Tidligere besøkte skjulte tema", + "requestATheme": "Hvis du ønsker et brukerdefinert tema kan du forespørre det i feilsporeren", + "streetcomplete": "Et annet lignende program er StreetComplete." + }, + "noNameCategory": "{category} uten navn", + "noTagsSelected": "Ingen etiketter valgt", + "number": "tall", + "oneSkippedQuestion": "Et spørsmål ble hoppet over", + "openTheMap": "Åpne kartet", + "opening_hours": { + "closed_permanently": "Stengt på ubestemt tid", + "closed_until": "Stengt til {date}", + "error_loading": "Feil: Kunne ikke visualisere disse åpningstidene.", + "loadingCountry": "Bestemmer land …", + "not_all_rules_parsed": "Åpningstidene for dette stedet er kompliserte. Følgende regler ble sett bort fra i inndataelementet:", + "openTill": "til", + "open_24_7": "Døgnåpent", + "open_during_ph": "På offentlige helligdager og ferier er dette stedet", + "opensAt": "fra", + "ph_closed": "stengt", + "ph_not_known": " ", + "ph_open": "åpen", + "ph_open_as_usual": "åpen som vanlig" + }, + "osmLinkTooltip": "Vis dette objektet på OpenStreetMap for historikk og flere redigeringsvalg", + "pdf": { + "attr": "Kartdata © OpenStreetMap-bidragsytere, gjenbrukbart med ODbL-lisens", + "attrBackground": "Bakgrunnslag: {background}", + "generatedWith": "Generert av MapComplete.osm.be", + "versionInfo": "v{version}. Generert {date}" + }, + "pickLanguage": "Velg språk: ", + "questions": { + "emailIs": "E-postadressen til {category} er {email}", + "emailOf": "Hva er e-postadressen til {category}?", + "phoneNumberIs": "Telefonnummeret til denne {category} er {phone}", + "phoneNumberOf": "Hva er telefonnummeret til {category}?", + "websiteIs": "Nettside: {website}", + "websiteOf": "Hva er nettsiden til {category}?" + }, + "readYourMessages": "Les alle OpenStreetMap-meldingene dine før du legger til et nytt punkt.", + "returnToTheMap": "Gå tilbake til kartet", + "save": "Lagre", + "search": { + "error": "Noe gikk galt .", + "nothing": "Resultatløst …", + "search": "Søk etter et sted", + "searching": "Søker …" + }, + "sharescreen": { + "addToHomeScreen": "

Legg til på hjemmeskjermen din

Du kan enkelt legge til denne nettsiden på din smarttelefon-hjemmeskjerm for å få det hele integrert. Klikk på «Legg til på hjemmeskjerm»-knappen i nettadressefeltet for å gjøre dette.", + "copiedToClipboard": "Lenke kopiert til utklippstavle", + "editThisTheme": "Rediger dette temaet", + "embedIntro": "

Bygg inn på nettsiden din

Legg til dette kartet på nettsiden din.
Du oppfordres til å gjøre dette, og trenger ikke å spørre om tillatelse.
Det er fritt, og vil alltid være det. Desto flere som bruker dette, desto mer verdifullt blir det.", + "fsGeolocation": "Skru på «Geolokaliser meg»-knappen (kun for mobil)", + "fsIncludeCurrentBackgroundMap": "Inkluder nåværende bakgrunnsvalg {name}", + "fsIncludeCurrentLayers": "Inkluder nåværende lagvalg", + "fsIncludeCurrentLocation": "Inkluder nåværende posisjon", + "fsLayerControlToggle": "Start med lagkontrollen utvidet", + "fsLayers": "Skru på lagkontrollen", + "fsSearch": "Skru på søkefeltet", + "fsUserbadge": "Skru på innloggingsknappen", + "fsWelcomeMessage": "Vis velkomst-oppsprettsmeldinger og tilknyttede faner", + "intro": "

Del dette kartet

Del dette kartet ved å kopiere lenken nedenfor og sende den til venner og familie:", + "thanksForSharing": "Takk for at du bidrar." + }, + "skip": "Hopp over dette spørsmålet", + "skippedQuestions": "Noen spørsmål ble hoppet over", + "testing": "Testing. ingen endringer vil bli lagret.", + "weekdays": { + "abbreviations": { + "friday": "Fre", + "monday": "Man", + "saturday": "Lør", + "sunday": "Søn", + "thursday": "Tor", + "tuesday": "Tir", + "wednesday": "Ons" + }, + "friday": "Fredag", + "monday": "Mandag", + "saturday": "Lørdag", + "sunday": "Søndag", + "thursday": "Torsdag", + "tuesday": "Tirsdag", + "wednesday": "Onsdag" + }, + "welcomeBack": "Du er innlogget. Velkommen tilbake.", + "wikipedia": { + "createNewWikidata": "Opprett et nytt Wikipedia-element", + "doSearch": "Søk ovenfor for å se resultater", + "failed": "Innlasting av Wikipedia-artikkel mislyktes", + "loading": "Laster inn Wikipedia …", + "noResults": "Fant ikke noe for {search}", + "noWikipediaPage": "Dette Wikipedia-elementet har ingen tilknyttet Wikipedia-side enda.", + "searchWikidata": "Søk på Wikipedia", + "wikipediaboxTitle": "Wikipedia" + } }, - "questions": { - "emailIs": "E-postadressen til {category} er {email}", - "websiteIs": "Nettside: {website}", - "emailOf": "Hva er e-postadressen til {category}?", - "phoneNumberOf": "Hva er telefonnummeret til {category}?", - "websiteOf": "Hva er nettsiden til {category}?", - "phoneNumberIs": "Telefonnummeret til denne {category} er {phone}" + "image": { + "addPicture": "Legg til bilde", + "ccb": "med CC-BY-lisens", + "ccbs": "med CC-BY-SA-lisens", + "doDelete": "Fjern bilde", + "dontDelete": "Avbryt", + "isDeleted": "Slettet", + "pleaseLogin": "Logg inn for å legge til et bilde", + "toBig": "Bildet ditt på {actual_size} er for stort. Det kan maksimalt være {max_size}.", + "uploadDone": "Bildet ditt ble lagt til. Takk for at du hjelper til.", + "uploadFailed": "Kunne ikke laste opp bildet ditt. Er du tilkoblet Internett og tillater tredjeparts-API-er? Brave-nettleseren eller uMatrix-programtillegget kan blokkere dem.", + "uploadMultipleDone": "{count} bilder har blitt lagt til. Takk for at du hjelper til.", + "uploadingMultiple": "Laster opp {count} bilder …", + "uploadingPicture": "Laster opp bildet ditt …", + "willBePublished": "Ditt bilde vil bli publisert: " }, - "sharescreen": { - "thanksForSharing": "Takk for at du bidrar.", - "copiedToClipboard": "Lenke kopiert til utklippstavle", - "intro": "

Del dette kartet

Del dette kartet ved å kopiere lenken nedenfor og sende den til venner og familie:", - "fsUserbadge": "Skru på innloggingsknappen", - "fsSearch": "Skru på søkefeltet", - "fsWelcomeMessage": "Vis velkomst-oppsprettsmeldinger og tilknyttede faner", - "editThisTheme": "Rediger dette temaet", - "fsGeolocation": "Skru på «Geolokaliser meg»-knappen (kun for mobil)", - "fsIncludeCurrentBackgroundMap": "Inkluder nåværende bakgrunnsvalg {name}", - "fsLayerControlToggle": "Start med lagkontrollen utvidet", - "addToHomeScreen": "

Legg til på hjemmeskjermen din

Du kan enkelt legge til denne nettsiden på din smarttelefon-hjemmeskjerm for å få det hele integrert. Klikk på «Legg til på hjemmeskjerm»-knappen i nettadressefeltet for å gjøre dette.", - "fsLayers": "Skru på lagkontrollen", - "fsIncludeCurrentLayers": "Inkluder nåværende lagvalg", - "fsIncludeCurrentLocation": "Inkluder nåværende posisjon", - "embedIntro": "

Bygg inn på nettsiden din

Legg til dette kartet på nettsiden din.
Du oppfordres til å gjøre dette, og trenger ikke å spørre om tillatelse.
Det er fritt, og vil alltid være det. Desto flere som bruker dette, desto mer verdifullt blir det." + "index": { + "featuredThemeTitle": "Framhevet denne uken", + "intro": "MapComplete er en OpenStreetMap-viser og redigerer, som viser deg info om funksjoner for et gitt tema og tillater oppdatering av det.", + "pickTheme": "Begynn ved å velge et av temaene nedenfor.", + "title": "Velkommen til MapComplete" }, - "attribution": { - "mapContributionsBy": "Den dataen som er synlig nå har redigeringer gjort av {contributors}", - "attributionContent": "

All data er fra OpenStreetMap, fritt gjenbrukbart med Open DataBase-lisens.

", - "codeContributionsBy": "MapComplete har blitt bygd av {contributors} og {hiddenCount} bidragsytere til", - "mapContributionsByAndHidden": "Data som vises nå har redigeringer gjort av {contributors} og {hiddenCount} andre bidragsytere", - "iconAttribution": { - "title": "Brukte ikoner" - }, - "themeBy": "Tema vedlikeholdt av {author}", - "attributionTitle": "Tilskrivelsesmerknad" + "move": { + "cancel": "Avbryt flytting", + "cannotBeMoved": "Denne funksjonen kan ikke flyttes.", + "confirmMove": "Flytt hit", + "inviteToMove": { + "generic": "Flytt dette punktet", + "reasonInaccurate": "Forbedre nøyaktigheten for dette punktet", + "reasonRelocation": "Flytt dette objektet til et annet sted fordi det har blitt flyttet" + }, + "inviteToMoveAgain": "Flytt dette punktet igjen", + "isRelation": "Denne funksjonen er en relasjon og kan ikke flyttes", + "isWay": "Denne funksjonen er en vei. Bruk en annen OpenStreetMap-redigerer for å flytte den.", + "loginToMove": "Du må være innlogget for å flytte et punkt", + "moveTitle": "Flytt dette punktet", + "partOfAWay": "Denne funksjonen er en del av en annen vei. Bruk en annen redigerer for å flytte den.", + "partOfRelation": "Denne funksjonen er en del av en relasjon. Bruk en annen redigerer for å flytte den.", + "pointIsMoved": "Punktet har blitt flyttet", + "reasons": { + "reasonInaccurate": "Posisjonen til dette objektet er unøyaktig og bør flyttes noen meter", + "reasonRelocation": "Objektet har blitt flyttet til et helt annet sted" + }, + "selectReason": "Hvorfor flytter du dette objektet?", + "whyMove": "Hvorfor vil du flytte dette punktet?", + "zoomInFurther": "Forstørr mer for å bekrefte denne flyttingen" }, - "backgroundMap": "Bakgrunnskart", - "loginOnlyNeededToEdit": "hvis du ønsker å redigere kartet", - "readYourMessages": "Les alle OpenStreetMap-meldingene dine før du legger til et nytt punkt.", - "noTagsSelected": "Ingen etiketter valgt", - "customThemeIntro": "

Egendefinerte tema

Dette er tidligere besøkte brukergenererte tema.", - "layerSelection": { - "zoomInToSeeThisLayer": "Forstørr kartet hvis du vil se dette kartet", - "title": "Velg lag" + "multi_apply": { + "autoApply": "Ved endring av attributteene {attr_names}, legges de automatisk til for {count} andre objekter også" }, - "download": { - "downloadCSV": "Last ned synlig data som CSV", - "downloadAsPdfHelper": "Ideelt for utskrift av nåværende kart", - "noDataLoaded": "Ingen data innlastet enda. Nedlasting vil være tilgjengelig snart.", - "downloadAsPdf": "Last ned PDF av nåværende kart", - "downloadCSVHelper": "Kompatibelt med LibreOffice Calc, Excel, …", - "title": "Last ned synlig data", - "downloadGeojson": "Last ned synlig data som GeoJSON", - "licenseInfo": "

Opphavsrettsmerknad

Tilbudt data er tilgjengelig med ODbL-lisens. Gjenbruk er gratis for alle formål, men
  • tilskrivelsen© OpenStreetMap-bidragsytere kreves
  • Enhver endring må publiseres under samme lisens
Les hele opphavsrettsmerknaden for detaljer.", - "exporting": "Eksporterer …", - "includeMetaData": "Inkluder metadata (siste bidragsytere, utregnede verdier, …)", - "downloadGeoJsonHelper": "Kompatibelt med QGIS, ArcGIS, ESRI, …" + "reviews": { + "affiliated_reviewer_warning": "(Tilknyttet vurdering)", + "attribution": "Vurderinger er muliggjort av Mangrove Reviews og er tilgjengelige som CC-BY 4.0.", + "i_am_affiliated": "Jeg har en tilknytning til dette objektet
Sjekk om du er eier, skaper, ansatt, …", + "name_required": "Et navn kreves for å vise og opprette vurderinger", + "no_rating": "Ingen vurdering gitt", + "no_reviews_yet": "Ingen vurderinger enda. Vær først til å skrive en og hjelp åpen data og bevegelsen.", + "plz_login": "Logg inn for å legge igjen en vurdering", + "posting_as": "Anmelder som", + "saved": "Vurdering lagret. Takk for at du deler din mening.", + "saving_review": "Lagrer …", + "title": "{count} vurderinger", + "title_singular": "Én vurdering", + "tos": "Hvis du lager en vurdering, samtykker du til tjenestevilkårene til Mangrove.reviews", + "write_a_comment": "Legg igjen en vurdering …" }, - "weekdays": { - "friday": "Fredag", - "saturday": "Lørdag", - "sunday": "Søndag", - "wednesday": "Onsdag", - "abbreviations": { - "thursday": "Tor", - "sunday": "Søn", - "monday": "Man", - "wednesday": "Ons", - "tuesday": "Tir", - "saturday": "Lør", - "friday": "Fre" - }, - "thursday": "Torsdag", - "monday": "Mandag", - "tuesday": "Tirsdag" - }, - "opening_hours": { - "openTill": "til", - "closed_until": "Stengt til {date}", - "open_24_7": "Døgnåpent", - "closed_permanently": "Stengt på ubestemt tid", - "ph_open_as_usual": "åpen som vanlig", - "loadingCountry": "Bestemmer land …", - "error_loading": "Feil: Kunne ikke visualisere disse åpningstidene.", - "open_during_ph": "På offentlige helligdager og ferier er dette stedet", - "not_all_rules_parsed": "Åpningstidene for dette stedet er kompliserte. Følgende regler ble sett bort fra i inndataelementet:", - "ph_not_known": " ", - "ph_closed": "stengt", - "opensAt": "fra", - "ph_open": "åpen" - }, - "histogram": { - "error_loading": "Kunne ikke laste inn histogrammet" - }, - "loading": "Laster inn …", - "openTheMap": "Åpne kartet", - "testing": "Testing. ingen endringer vil bli lagret.", - "wikipedia": { - "wikipediaboxTitle": "Wikipedia", - "loading": "Laster inn Wikipedia …", - "doSearch": "Søk ovenfor for å se resultater", - "noResults": "Fant ikke noe for {search}", - "noWikipediaPage": "Dette Wikipedia-elementet har ingen tilknyttet Wikipedia-side enda.", - "searchWikidata": "Søk på Wikipedia", - "createNewWikidata": "Opprett et nytt Wikipedia-element", - "failed": "Innlasting av Wikipedia-artikkel mislyktes" - }, - "returnToTheMap": "Gå tilbake til kartet", - "skippedQuestions": "Noen spørsmål ble hoppet over", - "oneSkippedQuestion": "Et spørsmål ble hoppet over", - "number": "tall", - "pickLanguage": "Velg språk: ", - "goToInbox": "Åpne innboks", - "getStartedNewAccount": " eller opprett en ny konto", - "getStartedLogin": "Logg inn med OpenStreetMap for å begynne", - "fewChangesBefore": "Besvar et par spørsmål for eksisterende punkter før du legger til et nytt." - }, - "index": { - "pickTheme": "Begynn ved å velge et av temaene nedenfor.", - "title": "Velkommen til MapComplete", - "intro": "MapComplete er en OpenStreetMap-viser og redigerer, som viser deg info om funksjoner for et gitt tema og tillater oppdatering av det.", - "featuredThemeTitle": "Framhevet denne uken" - }, - "centerMessage": { - "ready": "Ferdig", - "zoomIn": "Forstørr for å vise eller redigere data", - "loadingData": "Laster inn data …", - "retrying": "Kunne ikke laste inn data. Prøver igjen om {count} sekunder …" - }, - "image": { - "isDeleted": "Slettet", - "doDelete": "Fjern bilde", - "dontDelete": "Avbryt", - "uploadingMultiple": "Laster opp {count} bilder …", - "uploadingPicture": "Laster opp bildet ditt …", - "addPicture": "Legg til bilde", - "pleaseLogin": "Logg inn for å legge til et bilde", - "ccbs": "med CC-BY-SA-lisens", - "ccb": "med CC-BY-lisens", - "willBePublished": "Ditt bilde vil bli publisert: ", - "uploadFailed": "Kunne ikke laste opp bildet ditt. Er du tilkoblet Internett og tillater tredjeparts-API-er? Brave-nettleseren eller uMatrix-programtillegget kan blokkere dem.", - "uploadDone": "Bildet ditt ble lagt til. Takk for at du hjelper til.", - "uploadMultipleDone": "{count} bilder har blitt lagt til. Takk for at du hjelper til.", - "toBig": "Bildet ditt på {actual_size} er for stort. Det kan maksimalt være {max_size}." - }, - "delete": { - "explanations": { - "hardDelete": "Dette punktet vil bli slettet i OpenStreetMap. Det kan gjenopprettes av en dreven bidragsyter.", - "softDelete": "Denne funksjonen vil bli oppdatert og skjult fra programmet. {reason}", - "selectReason": "Velg hvorfor denne funksjonen skal slettes" - }, - "delete": "Slett", - "isDeleted": "Denne funksjonen har blitt slettet", - "loginToDelete": "Du må være innlogget for å slette et punkt", - "cancel": "Avbryt", - "cannotBeDeleted": "Denne funksjonen kan ikke slettes", - "notEnoughExperience": "Dette punktet ble opprettet av noen andre.", - "loading": "Inspiserer egenskaper for å sjekke om denne funksjonen kan slettes.", - "whyDelete": "Hvorfor bør dette punktet slettes?", - "reasons": { - "duplicate": "Dette punktet er et duplikat av en annen funksjon", - "disused": "Denne funksjonen er ute av bruk eller fjernet", - "test": "Dette var et testpunkt, funksjonen var aldri operativ", - "notFound": "Fant ikke funksjonen" - }, - "safeDelete": "Dette punktet kan trygt slettes.", - "onlyEditedByLoggedInUser": "Dette punktet har kun blitt redigert av deg. Du kan trygt slette det.", - "useSomethingElse": "Bruk en annen OpenStreetMap-redigerer til å slette det istedenfor.", - "isntAPoint": "Kun punkter kan slettes, valgt funksjon er en vei, et område, eller en relasjon.", - "partOfOthers": "Dette punktet er en del av en vei eller relasjon, og kan derfor ikke slettes direkte.", - "readMessages": "Du har uleste meldinger. Les dette før sletting av et punkt, fordi noen kan ha tilbakemeldinger å komme med." - }, - "reviews": { - "posting_as": "Anmelder som", - "saving_review": "Lagrer …", - "title": "{count} vurderinger", - "no_rating": "Ingen vurdering gitt", - "plz_login": "Logg inn for å legge igjen en vurdering", - "write_a_comment": "Legg igjen en vurdering …", - "title_singular": "Én vurdering", - "name_required": "Et navn kreves for å vise og opprette vurderinger", - "affiliated_reviewer_warning": "(Tilknyttet vurdering)", - "saved": "Vurdering lagret. Takk for at du deler din mening.", - "no_reviews_yet": "Ingen vurderinger enda. Vær først til å skrive en og hjelp åpen data og bevegelsen.", - "tos": "Hvis du lager en vurdering, samtykker du til tjenestevilkårene til Mangrove.reviews", - "attribution": "Vurderinger er muliggjort av Mangrove Reviews og er tilgjengelige som CC-BY 4.0.", - "i_am_affiliated": "Jeg har en tilknytning til dette objektet
Sjekk om du er eier, skaper, ansatt, …" - }, - "move": { - "cancel": "Avbryt flytting", - "pointIsMoved": "Punktet har blitt flyttet", - "selectReason": "Hvorfor flytter du dette objektet?", - "loginToMove": "Du må være innlogget for å flytte et punkt", - "inviteToMoveAgain": "Flytt dette punktet igjen", - "moveTitle": "Flytt dette punktet", - "whyMove": "Hvorfor vil du flytte dette punktet?", - "confirmMove": "Flytt hit", - "reasons": { - "reasonInaccurate": "Posisjonen til dette objektet er unøyaktig og bør flyttes noen meter", - "reasonRelocation": "Objektet har blitt flyttet til et helt annet sted" - }, - "inviteToMove": { - "reasonInaccurate": "Forbedre nøyaktigheten for dette punktet", - "generic": "Flytt dette punktet", - "reasonRelocation": "Flytt dette objektet til et annet sted fordi det har blitt flyttet" - }, - "isRelation": "Denne funksjonen er en relasjon og kan ikke flyttes", - "cannotBeMoved": "Denne funksjonen kan ikke flyttes.", - "isWay": "Denne funksjonen er en vei. Bruk en annen OpenStreetMap-redigerer for å flytte den.", - "partOfRelation": "Denne funksjonen er en del av en relasjon. Bruk en annen redigerer for å flytte den.", - "partOfAWay": "Denne funksjonen er en del av en annen vei. Bruk en annen redigerer for å flytte den.", - "zoomInFurther": "Forstørr mer for å bekrefte denne flyttingen" - }, - "favourite": { - "reload": "Last inn dataen igjen" - }, - "split": { - "cancel": "Avbryt", - "loginToSplit": "Du må være innlogget for å dele en vei", - "split": "Del", - "splitTitle": "Velg hvor på kartet veien skal deles", - "hasBeenSplit": "Denne veien har blitt delt", - "inviteToSplit": "Inndel denne veien i mindre segmenter. Dette lar deg gi den forskjellige egenskaper for forskjellige strekk." - }, - "multi_apply": { - "autoApply": "Ved endring av attributteene {attr_names}, legges de automatisk til for {count} andre objekter også" - } -} + "split": { + "cancel": "Avbryt", + "hasBeenSplit": "Denne veien har blitt delt", + "inviteToSplit": "Inndel denne veien i mindre segmenter. Dette lar deg gi den forskjellige egenskaper for forskjellige strekk.", + "loginToSplit": "Du må være innlogget for å dele en vei", + "split": "Del", + "splitTitle": "Velg hvor på kartet veien skal deles" + } +} \ No newline at end of file diff --git a/langs/nl.json b/langs/nl.json index 8cf786e465..28f22cb21c 100644 --- a/langs/nl.json +++ b/langs/nl.json @@ -1,316 +1,489 @@ { - "image": { - "addPicture": "Voeg foto toe", - "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: ", - "cco": "in het publiek domein", - "ccbs": "onder de CC-BY-SA-licentie", - "ccb": "onder de CC-BY-licentie", - "uploadFailed": "Afbeelding uploaden mislukt. Heb je internet? Gebruik je Brave of UMatrix? Dan moet je derde partijen toelaten.", - "respectPrivacy": "Fotografeer geen mensen of nummerplaten. Voeg geen Google Maps, Google Streetview of foto's met auteursrechten toe.", - "uploadDone": "Je afbeelding is toegevoegd. Bedankt om te helpen!", - "dontDelete": "Annuleren", - "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" - }, - "centerMessage": { - "loadingData": "Data wordt geladen...", - "zoomIn": "Zoom in om de data te zien en te bewerken", - "ready": "Klaar!", - "retrying": "Data inladen mislukt - wordt opnieuw geprobeerd over {count} seconden" - }, - "index": { - "#": "These texts are shown above the theme buttons when no theme is loaded", - "title": "Welkom bij MapComplete", - "intro": "MapComplete is een OpenStreetMap-applicatie waar informatie over een specifiek thema bekeken en aangepast kan worden.", - "pickTheme": "Kies hieronder een thema om te beginnen.", - "featuredThemeTitle": "Thema van de week" - }, - "general": { - "loginWithOpenStreetMap": "Aanmelden met OpenStreetMap", - "welcomeBack": "Je bent aangemeld. Welkom terug!", - "loginToStart": "Meld je aan om deze vraag te beantwoorden", - "search": { - "search": "Zoek naar een locatie", - "searching": "Aan het zoeken...", - "nothing": "Niet gevonden...", - "error": "Niet gelukt..." - }, - "add": { - "addNewMapLabel": "Voeg item toe", - "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
", - "pleaseLogin": "Gelieve je aan te melden om een punt to te voegen", - "zoomInFurther": "Gelieve verder in te zoomen om een punt toe te voegen.", - "stillLoading": "De data worden nog geladen. Nog even geduld en dan kan je een punt toevoegen.", - "confirmIntro": "

Voeg hier een {title} toe?

Het punt dat je hier toevoegt, is zichtbaar voor iedereen. Veel applicaties gebruiken deze data, voeg dus enkel punten toe die echt bestaan.", - "confirmButton": "Voeg hier een {category} toe
Je toevoeging is voor iedereen zichtbaar
", - "openLayerControl": "Open de laag-instellingen", - "layerNotEnabled": "De laag {layer} is gedeactiveerd. Activeer deze om een punt toe te voegen", - "presetInfo": "Het nieuwe punt krijgt de attributen {tags}", - "disableFiltersExplanation": "Interessepunten kunnen verborgen zijn door een filter", - "disableFilters": "Zet alle filters af", - "hasBeenImported": "Dit punt is reeds geimporteerd", - "warnVisibleForEveryone": "Je toevoeging is voor iedereen zichtbaar", - "zoomInMore": "Zoom meer in om dit punt te importeren" - }, - "pickLanguage": "Kies je taal: ", - "about": "Bewerk en voeg data toe aan OpenStreetMap over een specifiek onderwerp op een gemakkelijke manier", - "nameInlineQuestion": "De naam van dit {category} is $$$", - "noNameCategory": "{category} zonder naam", - "questions": { - "phoneNumberOf": "Wat is het telefoonnummer van {category}?", - "phoneNumberIs": "Het telefoonnummer van {category} is {phone}", - "websiteOf": "Wat is de website van {category}?", - "websiteIs": "Website: {website}", - "emailOf": "Wat is het email-adres van {category}?", - "emailIs": "Het email-adres van {category} is {email}" - }, - "openStreetMapIntro": "

Een open kaart

Zou het niet fantastisch zijn als er een open kaart zou zijn die door iedereen aangepast én gebruikt kan worden? Een kaart waar iedereen zijn interesses aan zou kunnen toevoegen? Dan zouden er geen duizend-en-één verschillende kleine kaartjes, websites, ... meer nodig zijn

OpenStreetMap is deze open kaart. Je mag de kaartdata gratis gebruiken (mits bronvermelding en herpublicatie van aanpassingen). Daarenboven mag je de kaart ook gratis aanpassen als je een account maakt. Ook deze website is gebaseerd op OpenStreetMap. Als je hier een vraag beantwoord, gaat het antwoord daar ook naartoe

Tenslotte zijn er reeds vele gebruikers van OpenStreetMap. Denk maar Organic Maps, OsmAnd, verschillende gespecialiseerde routeplanners, de achtergrondkaarten op Facebook, Instagram,...
Zelfs Apple Maps en Bing-Maps gebruiken OpenStreetMap in hun kaarten!

Kortom, als je hier een punt toevoegd of een vraag beantwoord, zal dat na een tijdje ook in al dié applicaties te zien zijn.

", - "attribution": { - "attributionTitle": "Met dank aan", - "attributionContent": "

Alle data is voorzien door OpenStreetMap, gratis en vrij te hergebruiken onder de Open DataBase Licentie.

", - "themeBy": "Thema gemaakt door {author}", - "iconAttribution": { - "title": "Iconen en afbeeldingen" - }, - "mapContributionsByAndHidden": "De zichtbare data heeft bijdragen van {contributors} en {hiddenCount} andere bijdragers", - "mapContributionsBy": "De huidige data is bijgedragen door {contributors}", - "codeContributionsBy": "MapComplete is gebouwd door {contributors} en {hiddenCount} andere bijdragers" - }, - "sharescreen": { - "intro": "

Deel deze kaart

Kopieer onderstaande link om deze kaart naar vrienden en familie door te sturen:", - "addToHomeScreen": "

Voeg toe aan je thuis-scherm

Je kan deze website aan je thuisscherm van je smartphone toevoegen voor een native feel", - "embedIntro": "

Plaats dit op je website

Voeg dit kaartje toe op je eigen website.
We moedigen dit zelfs aan - je hoeft geen toestemming te vragen.
Het is gratis en zal dat altijd blijven. Hoe meer het gebruikt wordt, hoe waardevoller", - "copiedToClipboard": "Link gekopieerd naar klembord", - "thanksForSharing": "Bedankt om te delen!", - "editThisTheme": "Pas dit thema aan", - "editThemeDescription": "Pas vragen aan of voeg vragen toe aan dit kaartthema", - "fsUserbadge": "Activeer de login-knop", - "fsSearch": "Activeer de zoekbalk", - "fsWelcomeMessage": "Toon het welkomstbericht en de bijhorende tabbladen", - "fsLayers": "Toon de knop voor laagbediening", - "fsLayerControlToggle": "Toon de laagbediening meteen volledig", - "fsAddNew": "Activeer het toevoegen van nieuwe POI", - "fsGeolocation": "Toon het knopje voor geolocalisatie (enkel op mobiel)", - "fsIncludeCurrentBackgroundMap": "Gebruik de huidige achtergrond {name}", - "fsIncludeCurrentLayers": "Toon enkel de huidig getoonde lagen", - "fsIncludeCurrentLocation": "Start op de huidige locatie" - }, "centerMessage": { - "loadingData": "Data wordt geladen…", - "zoomIn": "Zoom in om de data te zien en te bewerken", - "ready": "Klaar!", - "retrying": "Data inladen mislukt. Opnieuw proberen over {count} seconden…" + "loadingData": "Data wordt geladen…", + "ready": "Klaar!", + "retrying": "Data inladen mislukt - wordt opnieuw geprobeerd over {count} seconden", + "zoomIn": "Zoom in om de data te zien en te bewerken" + }, + "delete": { + "cancel": "Annuleren", + "cannotBeDeleted": "Dit object kan niet van de kaart verwijderd worden", + "delete": "Verwijder", + "explanations": { + "hardDelete": "Dit punt zal verwijderd worden in OpenStreetMap. Een ervaren bijdrager kan dit ongedaan maken.", + "selectReason": "Gelieve aan te duiden waarom dit punt verwijderd moet worden", + "softDelete": "Dit punt zal aangepast worden en zal in deze applicatie niet meer getoond worden. {reason}" + }, + "isDeleted": "Dit object is verwijderd", + "isntAPoint": "Enkel punten kunnen verwijderd worden, het geselecteerde object is een lijn, een oppervlakte of een relatie.", + "loading": "Aan het bekijken of dit object veilig verwijderd kan worden.", + "loginToDelete": "Je moet aangemeld zijn om een object van de kaart te verwijderen", + "notEnoughExperience": "Dit punt is door iemand anders gemaakt.", + "onlyEditedByLoggedInUser": "Dit punt is enkel door jezelf bewerkt, je kan dit veilig verwijderen.", + "partOfOthers": "Dit punt maakt deel uit van een lijn, oppervlakte of een relatie en kan niet verwijderd worden.", + "readMessages": "Je hebt ongelezen berichten. Je moet deze lezen voordat je een punt verwijderd, een andere bijdrager heeft misschien feedback", + "reasons": { + "disused": "Het wordt niet meer onderhouden of is verwijderd", + "duplicate": "Dit punt is een duplicaat van een ander punt", + "notFound": "Het kon niet gevonden worden", + "test": "Dit punt was een test en was nooit echt aanwezig" + }, + "safeDelete": "Dit punt kan veilig verwijderd worden van de kaart.", + "useSomethingElse": "Gebruik een ander OpenStreetMap-editeerprogramma om dit object te verwijderen", + "whyDelete": "Waarom moet dit punt van de kaart verwijderd worden?" + }, + "favourite": { + "loginNeeded": "

Log in

Je moet je aanmelden met OpenStreetMap om een persoonlijk thema te gebruiken", + "panelIntro": "

Jouw persoonlijke thema

Activeer je favorite lagen van alle andere themas", + "reload": "Herlaad de data" + }, + "general": { + "about": "Bewerk en voeg data toe aan OpenStreetMap over een specifiek onderwerp op een gemakkelijke manier", + "aboutMapcomplete": "

Over MapComplete

Met MapComplete kun je OpenStreetMap verrijken met informatie over een bepaald thema. Beantwoord enkele vragen, en binnen een paar minuten is jouw bijdrage wereldwijd beschikbaar! De maker van het thema bepaalt de elementen, vragen en taalversies voor het thema.

Ontdek meer

MapComplete biedt altijd de volgende stap naar meer OpenStreetMap:

  • Indien ingebed in een website linkt het iframe naar de volledige MapComplete
  • De volledige versie heeft uitleg over OpenStreetMap
  • Bekijken kan altijd, maar wijzigen vereist een OSM-account
  • Als je niet aangemeld bent, wordt je gevraagd dit te doen
  • Als je minstens één vraag hebt beantwoord, kan je ook elementen toevoegen
  • Heb je genoeg changesets, dan verschijnen de OSM-tags, nog later links naar de wiki

Merk je een bug of wil je een extra feature? Wil je helpen vertalen? Bezoek dan de broncode en issue tracker.

Wil je je vorderingen zien? Volg de edits op OsmCha.

", + "add": { + "addNew": "Voeg een {category} toe", + "addNewMapLabel": "Klik hier om een item toe te voegen", + "confirmButton": "Voeg een {category} toe
Je toevoeging is voor iedereen zichtbaar
", + "confirmIntro": "

Voeg een {title} toe?

Het punt dat je toevoegt, is zichtbaar voor iedereen. Veel applicaties gebruiken deze data, voeg dus enkel punten toe die echt bestaan.", + "disableFilters": "Zet alle filters af", + "disableFiltersExplanation": "Interessepunten kunnen verborgen zijn door een filter", + "hasBeenImported": "Dit object is reeds geimporteerd", + "import": { + "hasBeenImported": "Dit object is geïmporteerd", + "howToTest": "Voor testmode, voeg test=true of backend=osm-test to aan de URL. De wijzigingenset zal in de console geprint worden. Gelieve een PR te openen om dit thema als officieel thema toe te voegen en zo de import-knop te activeren.", + "importTags": "Het element zal deze tags krijgen: {tags}", + "officialThemesOnly": "In onofficiële thema's is de importeerknop uitgeschakeld om ongelukjes te vermijden", + "wrongType": "Dit object is geen punt of lijn, en kan daarom niet geïmporteerd worden", + "zoomInMore": "Zoom verder in om dit kaart-object te kunnen importeren" + }, + "importTags": "Het object zal deze tags krijgen: {tags}", + "intro": "Kies hieronder welk punt je wilt toevoegen
", + "layerNotEnabled": "De laag {layer} is gedeactiveerd. Activeer deze om een punt toe te voegen", + "openLayerControl": "Open de laag-instellingen", + "pleaseLogin": "Gelieve je aan te melden om een punt to te voegen", + "presetInfo": "Het nieuwe object krijgt de attributen {tags}", + "stillLoading": "De data worden nog geladen. Nog even geduld en dan kan je een punt toevoegen.", + "title": "Nieuw punt toevoegen?", + "warnVisibleForEveryone": "Je toevoeging is voor iedereen zichtbaar", + "wrongType": "Dit element is geen punt of lijn en kan daarom niet geïmporteerd worden", + "zoomInFurther": "Gelieve verder in te zoomen om een punt toe te voegen.", + "zoomInMore": "Zoom meer in om dit object te importeren" + }, + "apply_button": { + "appliedOnAnotherObject": "Object {id} zal deze tags ontvangen: {tags}", + "isApplied": "De wijzigingen zijn doorgevoerd" + }, + "attribution": { + "attributionContent": "

Alle data is voorzien door OpenStreetMap, gratis en vrij te hergebruiken onder de Open DataBase Licentie.

", + "attributionTitle": "Met dank aan", + "codeContributionsBy": "MapComplete is gebouwd door {contributors} en {hiddenCount} andere bijdragers", + "donate": "Geef MapComplete financiële steun", + "editId": "Hier bewerken met de OpenStreetMap online editor", + "editJosm": "Hier bewerken met JOSM", + "iconAttribution": { + "title": "Iconen en afbeeldingen" + }, + "josmNotOpened": "JOSM was niet bereikbaar. Controleer of het open staat en remote control is geactiveerd", + "josmOpened": "JOSM is geopend", + "mapContributionsBy": "De huidige data is bijgedragen door {contributors}", + "mapContributionsByAndHidden": "De zichtbare data heeft bijdragen van {contributors} en {hiddenCount} andere bijdragers", + "openIssueTracker": "Geef een fout in de software door", + "openMapillary": "Open Mapillary op deze locatie", + "openOsmcha": "Bekijk de laatste bijdragen gemaakt met {theme}", + "themeBy": "Thema gemaakt door {author}" + }, + "back": "Vorige", + "backToMapcomplete": "Terug naar het themaoverzicht", + "backgroundMap": "Achtergrondkaart", + "cancel": "Annuleren", + "centerMessage": { + "loadingData": "Data wordt geladen…", + "ready": "Klaar!", + "retrying": "Data inladen mislukt. Opnieuw proberen over {count} seconden…", + "zoomIn": "Zoom in om de data te zien en te bewerken" + }, + "confirm": "Bevestigen", + "customThemeIntro": "

Onofficiële thema's

De onderstaande thema's heb je eerder bezocht en zijn gemaakt door andere OpenStreetMappers.", + "download": { + "downloadAsPdf": "Download een PDF van de huidig zichtbare kaart", + "downloadAsPdfHelper": "Perfect om de huidige kaart af te printen", + "downloadCSV": "Download de zichtbare data als CSV", + "downloadCSVHelper": "Compatibel met LibreOffice Calc, Excel, …", + "downloadFeatureAsGeojson": "Downloaden als GeoJson bestand", + "downloadFeatureAsGpx": "Downloaden als GPX-bestand", + "downloadGeoJsonHelper": "Compatibel met QGIS, ArcGIS, ESRI, …", + "downloadGeojson": "Download de zichtbare data als GeoJSON", + "downloadGpx": "Downloaden als GPX-bestand", + "downloadGpxHelper": "De meeste navigatie toestellen en applicaties kunnen een GPX-bestand openen", + "exporting": "Aan het exporteren…", + "includeMetaData": "Exporteer metadata (zoals laatste aanpassing, berekende waardes, …)", + "licenseInfo": "

Copyright

De voorziene data is beschikbaar onder de ODbL. Het hergebruiken van deze data is gratis voor elke toepassing, maar
  • de bronvermelding © OpenStreetMap bijdragers is vereist
  • Elke wijziging aan deze data moet opnieuw gepubliceerd worden onder dezelfde licentie
Gelieve de volledige licentie te lezen voor details", + "noDataLoaded": "Er is nog geen data ingeladen. Downloaden kan zodra de data geladen is.", + "title": "Download de zichtbare data", + "uploadGpx": "Track uploaden naar OpenStreetMap" + }, + "example": "Voorbeeld", + "examples": "Voorbeelden", + "fewChangesBefore": "Gelieve eerst enkele vragen van bestaande punten te beantwoorden vooraleer zelf punten toe te voegen.", + "getStartedLogin": "Login met OpenStreetMap om te beginnen", + "getStartedNewAccount": " of maak een nieuwe account aan", + "goToInbox": "Ga naar de berichten", + "histogram": { + "error_loading": "Kan het histogram niet laden" + }, + "index": { + "#": "Deze teksten worden getoond boven de themaknoppen als er geen thema is geladen", + "intro": "MapComplete is een OpenStreetMap applicatie waar informatie over een specifiek thema bekeken en aangepast kan worden.", + "pickTheme": "Kies hieronder een thema om te beginnen.", + "title": "Welkom bij MapComplete" + }, + "layerSelection": { + "title": "Selecteer lagen", + "zoomInToSeeThisLayer": "Vergroot de kaart om deze laag te zien" + }, + "loading": "Aan het laden...", + "loadingTheme": "{theme} wordt geladen...", + "loginOnlyNeededToEdit": "als je de kaart wilt aanpassen", + "loginToStart": "Meld je aan om deze vraag te beantwoorden", + "loginWithOpenStreetMap": "Aanmelden met OpenStreetMap", + "logout": "Afmelden", + "morescreen": { + "createYourOwnTheme": "Maak je eigen MapComplete-kaart", + "hiddenExplanation": "Deze thema's zijn enkel zichtbaar indien je de link kent. Je hebt {hidden_discovered} van {total_hidden} verborgen thema's ontdekt", + "intro": "

Meer thematische kaarten

Vind je het leuk om geodata te verzamelen?
Hier vind je meer kaartthemas.", + "previouslyHiddenTitle": "Eerder bezochte verborgen themas", + "requestATheme": "Wil je een eigen kaartthema, vraag dit in de issue tracker.", + "streetcomplete": "Een andere, gelijkaardige Android-applicatie is StreetComplete." + }, + "nameInlineQuestion": "De naam van dit {category} is $$$", + "next": "Volgende", + "noNameCategory": "{category} zonder naam", + "noTagsSelected": "Geen tags geselecteerd", + "number": "getal", + "oneSkippedQuestion": "Een vraag werd overgeslaan", + "openStreetMapIntro": "

Een open kaart

Zou het niet fantastisch zijn als er een open kaart zou zijn die door iedereen aangepast én gebruikt kan worden? Een kaart waar iedereen zijn interesses aan zou kunnen toevoegen? Dan zouden er geen duizend-en-één verschillende kleine kaartjes, websites, ... meer nodig zijn

OpenStreetMap is deze open kaart. Je mag de kaartdata gratis gebruiken (mits bronvermelding en herpublicatie van aanpassingen). Daarenboven mag je de kaart ook gratis aanpassen als je een account maakt. Ook deze website is gebaseerd op OpenStreetMap. Als je hier een vraag beantwoord, gaat het antwoord daar ook naartoe

Tenslotte zijn er reeds vele gebruikers van OpenStreetMap. Denk maar Organic Maps, OsmAnd, verschillende gespecialiseerde routeplanners, de achtergrondkaarten op Facebook, Instagram,...
;Zelfs Apple Maps en Bing-Maps gebruiken OpenStreetMap in hun kaarten!

Kortom, als je hier een punt toevoegd of een vraag beantwoord, zal dat na een tijdje ook in al dié applicaties te zien zijn.

", + "openTheMap": "Naar de kaart", + "opening_hours": { + "closed_permanently": "Gesloten voor onbepaalde tijd", + "closed_until": "Gesloten - open op {date}", + "error_loading": "Sorry, deze openingsuren kunnen niet getoond worden", + "loadingCountry": "Het land wordt nog bepaald…", + "not_all_rules_parsed": "De openingsuren zijn ingewikkeld. De volgende regels worden niet getoond bij het ingeven:", + "openTill": "tot", + "open_24_7": "Dag en nacht open", + "open_during_ph": "Op een feestdag is dit", + "opensAt": "vanaf", + "ph_closed": "gesloten", + "ph_not_known": " ", + "ph_open": "open", + "ph_open_as_usual": "geopend zoals gewoonlijk" + }, + "osmLinkTooltip": "Bekijk dit object op OpenStreetMap om de geschiedenis te zien en meer te kunnen aanpassen", + "pdf": { + "attr": "Kaartgegevens © OpenStreetMap-bijdragers, herbruikbaar volgens ODbL", + "attrBackground": "Achtergrondlaag: {background}", + "generatedWith": "Gemaakt met MapComplete.osm.be", + "versionInfo": "v{version} - gemaakt op {date}" + }, + "pickLanguage": "Kies je taal: ", + "poweredByOsm": "Gebouwd met OpenStreetMap", + "questions": { + "emailIs": "Het email-adres van {category} is {email}", + "emailOf": "Wat is het email-adres van {category}?", + "phoneNumberIs": "Het telefoonnummer van {category} is {phone}", + "phoneNumberOf": "Wat is het telefoonnummer van {category}?", + "websiteIs": "Website: {website}", + "websiteOf": "Wat is de website van {category}?" + }, + "readYourMessages": "Gelieve eerst je berichten op OpenStreetMap te lezen alvorens nieuwe punten toe te voegen.", + "removeLocationHistory": "Verwijder de geschiedenis aan locaties", + "returnToTheMap": "Ga terug naar de kaart", + "reviews": { + "affiliated_reviewer_warning": "(Review door betrokkene)", + "attribution": "De beoordelingen worden voorzien door Mangrove Reviews en zijn beschikbaar onder deCC-BY 4.0-licentie.", + "i_am_affiliated": "Ik ben persoonlijk betrokken
Vink aan indien je de oprichter, maker, werknemer, ... of dergelijke bent", + "name_required": "De naam van dit object moet gekend zijn om een review te kunnen maken", + "no_rating": "Geen score bekend", + "no_reviews_yet": "Er zijn nog geen beoordelingen. Wees de eerste om een beoordeling te schrijven en help open data en het bedrijf!", + "plz_login": "Meld je aan om een beoordeling te geven", + "posting_as": "Ingelogd als", + "saved": "Bedankt om je beoordeling te delen!", + "saving_review": "Opslaan…", + "title": "{count} beoordelingen", + "title_singular": "Eén beoordeling", + "tos": "Als je je review publiceert, ga je akkoord met de de gebruiksvoorwaarden en privacy policy van Mangrove.reviews", + "write_a_comment": "Schrijf een beoordeling…" + }, + "save": "Opslaan", + "search": { + "error": "Niet gelukt...", + "nothing": "Niet gevonden...", + "search": "Zoek naar een locatie", + "searching": "Aan het zoeken..." + }, + "sharescreen": { + "addToHomeScreen": "

Voeg toe aan je thuis-scherm

Je kan deze website aan je thuisscherm van je smartphone toevoegen voor een native feel", + "copiedToClipboard": "Link gekopieerd naar klembord", + "editThemeDescription": "Pas vragen aan of voeg vragen toe aan dit kaartthema", + "editThisTheme": "Pas dit thema aan", + "embedIntro": "

Plaats dit op je website

Voeg dit kaartje toe op je eigen website.
We moedigen dit zelfs aan - je hoeft geen toestemming te vragen.
Het is gratis en zal dat altijd blijven. Hoe meer het gebruikt wordt, hoe waardevoller", + "fsAddNew": "Activeer het toevoegen van nieuwe POI", + "fsGeolocation": "Toon het knopje voor geolocalisatie (enkel op mobiel)", + "fsIncludeCurrentBackgroundMap": "Gebruik de huidige achtergrond {name}", + "fsIncludeCurrentLayers": "Toon enkel de huidig getoonde lagen", + "fsIncludeCurrentLocation": "Start op de huidige locatie", + "fsLayerControlToggle": "Toon de laagbediening meteen volledig", + "fsLayers": "Toon de knop voor laagbediening", + "fsSearch": "Activeer de zoekbalk", + "fsUserbadge": "Activeer de login-knop", + "fsWelcomeMessage": "Toon het welkomstbericht en de bijhorende tabbladen", + "intro": "

Deel deze kaart

Kopieer onderstaande link om deze kaart naar vrienden en familie door te sturen:", + "thanksForSharing": "Bedankt om te delen!" + }, + "skip": "Sla deze vraag over", + "skippedQuestions": "Enkele vragen werden overgeslaan", + "testing": "Testmode - wijzigingen worden niet opgeslaan", + "weekdays": { + "abbreviations": { + "friday": "Vrij", + "monday": "Maan", + "saturday": "Zat", + "sunday": "Zon", + "thursday": "Don", + "tuesday": "Din", + "wednesday": "Woe" + }, + "friday": "Vrijdag", + "monday": "Maandag", + "saturday": "Zaterdag", + "sunday": "Zondag", + "thursday": "Donderdag", + "tuesday": "Dinsdag", + "wednesday": "Woensdag" + }, + "welcomeBack": "Je bent aangemeld. Welkom terug!", + "wikipedia": { + "createNewWikidata": "Maak een nieuw Wikidata-item", + "doSearch": "Zoek hierboven om resultaten te zien", + "failed": "Het Wikipedia-artikel inladen is mislukt", + "loading": "Wikipedia aan het laden...", + "noResults": "Niet gevonden voor {search}", + "noWikipediaPage": "Dit Wikidata-item heeft nog geen overeenkomstig Wikipedia-artikel", + "searchWikidata": "Zoek op Wikidata", + "wikipediaboxTitle": "Wikipedia" + } + }, + "image": { + "addPicture": "Voeg foto toe", + "ccb": "onder de CC-BY-licentie", + "ccbExplanation": "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", + "ccbs": "onder de CC-BY-SA-licentie", + "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", + "cco": "in het publiek domein", + "ccoExplanation": "Als je foto in het publiek domein gepubliceerd wordt, dan mag iedereen je foto voor alle doeleinden gebruiken", + "doDelete": "Verwijder afbeelding", + "dontDelete": "Annuleren", + "isDeleted": "Verwijderd", + "pleaseLogin": "Gelieve je aan te melden om een foto toe te voegen", + "respectPrivacy": "Fotografeer geen mensen of nummerplaten. Voeg geen Google Maps, Google Streetview of foto's met auteursrechten toe.", + "toBig": "Je afbeelding is te groot, namelijk {actual_size}. Gelieve afbeeldingen van maximaal {max_size} te gebruiken", + "uploadDone": "Je afbeelding is toegevoegd. Bedankt om te helpen!", + "uploadFailed": "Afbeelding uploaden mislukt. Heb je internet? Gebruik je Brave of UMatrix? Dan moet je derde partijen toelaten.", + "uploadMultipleDone": "{count} afbeeldingen zijn toegevoegd. Bedankt voor je bijdrage!", + "uploadingMultiple": "Bezig met {count} foto's te uploaden…", + "uploadingPicture": "Bezig met een foto te uploaden…", + "willBePublished": "Jouw foto wordt gepubliceerd " + }, + "importLayer": { + "alreadyMapped": "Er staat hier reeds een {title} op de kaart; dit punt is een duplicaat. Verwijder deze van de kaart", + "description": "Deze laag toont kaart-nota's die wijzen op een {title}", + "importButton": "import_button({layerId}, _tags, Ik heb hier een {title} gevonden - voeg deze toe aan de kaart...,./assets/svg/addSmall.svg,,,id)", + "importHandled": "
Dit punt is afgehandeld. Bedankt om mee te helpen!
", + "layerName": "Hier is misschien een {title}", + "notFound": "Ik kon hier geen {title} vinden - verwijder deze van de kaart", + "popupTitle": "Is hier een {title}?" }, "index": { - "#": "Deze teksten worden getoond boven de themaknoppen als er geen thema is geladen", - "title": "Welkom bij MapComplete", - "intro": "MapComplete is een OpenStreetMap applicatie waar informatie over een specifiek thema bekeken en aangepast kan worden.", - "pickTheme": "Kies hieronder een thema om te beginnen." + "#": "These texts are shown above the theme buttons when no theme is loaded", + "featuredThemeTitle": "Thema van de week", + "intro": "MapComplete is een OpenStreetMap-applicatie waar informatie over een specifiek thema bekeken en aangepast kan worden.", + "logIn": "Log in om andere thema's te zien waar je al in bewerkt hebt", + "pickTheme": "Kies hieronder een thema om te beginnen.", + "title": "Welkom bij MapComplete" + }, + "move": { + "cancel": "Annuleer verplaatsing", + "cannotBeMoved": "Dit object kan niet verplaatst worden.", + "confirmMove": "Verplaats", + "inviteToMove": { + "generic": "Verplaats dit punt", + "reasonInaccurate": "Verbeter de precieze locatie van dit punt", + "reasonRelocation": "Verplaats dit punt naar een andere locatie omdat het verhuisd is" + }, + "inviteToMoveAgain": "Verplaats dit punt opnieuw", + "isRelation": "Dit object is een relatie en kan niet verplaatst worden", + "isWay": "Dit object is een lijn of een oppervlakte. Gebruik een ander OpenStreetMap-bewerkprogramma op het te verplaatsen.", + "loginToMove": "Je moet aangemeld zijn om een punt te verplaatsen", + "moveTitle": "Verplaats dit punt", + "partOfAWay": "Dit punt is deel van een lijn of een oppervlakte. Gebruik een ander OpenStreetMap-bewerkprogramma om het te verplaatsen", + "partOfRelation": "Dit punt maakt deel uit van een relatie. Gebruik een ander OpenStreetMap-bewerkprogramma om het te verplaatsen", + "pointIsMoved": "Dit punt is verplaatst", + "reasons": { + "reasonInaccurate": "De locatie van dit object is niet accuraat en moet een paar meter verschoven worden", + "reasonRelocation": "Dit object is verhuisd naar een andere locatie" + }, + "selectReason": "Waarom verplaats je dit object?", + "whyMove": "Waarom verplaats je dit punt?", + "zoomInFurther": "Zoom verder in om de verplaatsing te bevestigen" + }, + "multi_apply": { + "autoApply": "Wijzigingen aan eigenschappen {attr_names} zullen ook worden uitgevoerd op {count} andere objecten." + }, + "privacy": { + "editing": "Wanneer je een wijziging maakt, wordt deze wijziging opgeslaan op OpenStreetMap. Dit is zichtbaar voor iedereen. Een wijzigingenset gemaakt met MapComplete bevat de volgende data:\n
  • De aanpassingen aan de data
  • Je gebruikersnaam
  • Wanneer deze wijziging werd gemaakt
  • Het thema dat je gebruikt om de wijziging te maken
  • De taal van de gebruikersinterface
  • Een indicatie hoe ver jij je van de gewijzigde objecten bevindt. Andere bijdragers kunnen deze informatie gebruiken om af te leiden of de wijziging gemaakt door lokaal te gaan kijken of door onderzoek vanop afstand
Bekijk ook de privacy-policy op OpenStreetMap.org voor gedetailleerde info. We herinneren je eraan dat je een pseudoniem of fictieve naam kan gebruiken wanneer je je registreert.", + "editingTitle": "Wanneer je wijzigingen maakt", + "geodata": "Op het moment dat MapComplete je locatie krijgt, blijft deze informatie en de geschiedenis ervan lokaal op je toestel. Je locatiedata wordt nooit automatisch doorgestuurd naar waar dan ook - behalve wanneer een bepaalde functionaliteit daar expliciet om vraagt.", + "geodataTitle": "Jouw locatie", + "intro": "We vinden privacy belangrijk, zowel for het individu als voor de samenleving. MapComplete probeert zo veel mogelijk te vermijden dat private gegevens worden verzameld. Daarom is er zelfs geen cookie banner nodig. Maar we geven graag informatie over welke data verzameld en gedeeld worden, onder welke omstandigheden, en waarom deze afwegingen gemaakt worden.", + "miscCookies": "MapComplete integreert met verschillende andere services, in het bijzonder om afbeeldingen van kaart-objecten te tonen. Deze afbeeldingen zijn opgeslaan bij diverse websites, die elk cookies kunnen instellen.", + "miscCookiesTitle": "Andere cookies", + "surveillance": "Gezien je de privacy-policy leest, vind je privacy waarschijnlijk belangrijk - wij ook! We hebben zelfs een kaart met bewakingcamera's gemaakt. Voeg er zeker toe!", + "title": "Privacyverklaring", + "tracking": "Om enig inzicht te krijgen in wie de site bezoekt, wordt er technische informatie verzameld. Dit omvat het land van waaruit je de site bezoekt, vanop welke website je doorklikte naar MapComplete, het type toestel en de schermgrootte. Een cookie wordt op he toestel geplaatst om mee te geven dat je de site eerder in de dag bezocht. De data is niet gedetailleerd genoeg om persoonlijke informatie te zijn. Er zijn enkel geaggregeerde statistieken mogelijk. Deze kunnen door iedereen bekeken worden.", + "trackingTitle": "Statistische informatie", + "whileYoureHere": "Vind je privacy belangrijk?" + }, + "professional": { + "aboutMc": { + "internalUse": { + "intro": "

Wanneer de data in OpenStreetMap zit, zal je deze data waarschijnlijk ook willen gebruiken. Je MapComplete-kaart kan een handige download-knop krijgen waarmee je de data in open formaten kunt downloaden om ermee aan de slag te gaan in QGis, ArcGis, Excel, LibreOffice Calc, …

Iemand die met een spreadsheet kan werken, kan dus eenvoudig grafieken maken; maar ook de GIS-experten binnen je organisatie kunnen gemakkelijk aan de slag met de data in hun favoriete applicatie.

Ook voor automatische processen is er een gratis API beschikbaar, beheerd door de community

", + "title": "Data hergebruiken" + }, + "layers": { + "intro": "

MapComplete heeft een krachtig templatesysteem om snel een kaart op te zetten die precies toont wat je nodig hebt

\n

Deze data kan opgehaald van OpenStreetMap of van externe datasets komen - bijvoorbeeld om datasets met elkaar te vergelijken of om data te tonen die niet in OpenStreetMap thuishoort (bijvoorbeeld evenementen, statistieken, ...)

", + "title": "Welke data kan getoond worden met MapComplete?" + }, + "survey": { + "intro": "

MapComplete is een makkelijk te gebruiken hulpmiddel om ter plaatste met een smartphone of vanop afstand met een PC data te verzamelen. Met enkele klikken kan de nodige data toegevoegd worden aan OpenStreetMap.

\n

Wij kunnen voor jou een op maat gemaakte verzameltool maken die precies de data vraagt die nodig is.

\n

Heb je een dataset die (opnieuw) opgemeten moet worden? Dat is het perfecte moment om de stap naar OpenStreetMap te maken. MapComplete kan je eigen dataset en OpenStreetMap samen tonen, wat het makkelijk maakt om zowel de eigen locaties als de bijdragen van de community na te kijken.

\n", + "title": "Mogelijkheden om data te verzamelen" + }, + "text0": "Als je een bestaand MapComplete-thema wilt gebruiken of in je website wilt embedden, dan mag je dit gratis doen. Dit is gratis en zal dat altijd zijn.", + "text1": "Wil je andere data visualiseren, maar bestaat er nog geen geschikte kaart voor? De MapComplete-ontwikkelaars kunnen dit op maat bouwen voor een schappelijk budget. Stuur je vraag via email, github of een bericht op osm.org", + "text2": "Twijfel je nog? We sommen de mogelijkheden hieronder op en beantwoorden enkele veelvoorkomende vragen", + "title": "MapComplete gebruiken in je eigen organisatie" + }, + "aboutOsm": { + "aboutOsm": { + "intro": "OpenStreetMap is een gedeelde, globale databank; gebouwd door vrijwilligers. Alle geodata is er welkom, als deze ter plaatse geverifieerd kan worden.
OpenStreetMap is zo uitgegroeid tot een uitgebreide databank: het bevat gegevens over miljoenen objecten binnen duizenden categorieën. Elk individueel object kan ook weer verschillende attributen hebben, waardoor veel nuance ontstaat:", + "li0": "Straten hebben een geometrie, maar kunnen ook informatie bevatten over de maximale toegestane snelheid, de wegbedekking, ofdat ze 's nachts verlicht zijn, een link naar Wikipedia, een link naar wat ze vernoemd zijn, welke wandel-, fiets- en busroutes er lopen, …", + "li1": "Sommige winkels hebben attibuten met openingsuren, telefoonnumer, een website, welke betaalmiddelen er geaccepteerd worden, wat ze verkopen, welke diensten ze aanbieden, …", + "li2": "Toiletten hebben mogelijks informatie over rolstoeltoegankelijkheid, luiertafel, hoeveel een toiletbezoek kost, …", + "li3": "en nog veel meer…", + "title": "Wat is OpenStreetMap?" + }, + "benefits": { + "intro": "Het kan erg moeilijk zijn om een eigen dataset achter te laten, want het opbouwen ervan kostte vaak veel tijd en moeite.
Echter, de voordelen om over te schakelen naar OpenStreetMap zijn enorm:", + "li0": "Je bent niet langer alleen om deze data te verzamelen en te onderhouden - een hele community helpt je", + "li1": "Je data heeft een groter bereik dan ooit tevoren door de vele hergebruikers zoals Bing Maps, Apple Maps, Facebook, Instagram, Pokemon Go, OsmAnd, Organic Maps, Maps.me, Mapbox, Komoot, de meeste fietsrouteplanners, …", + "li2": "Veel overheidsorganisaties en gemeentes gebruiken OpenStreetMap op hun website", + "title": "Voordelen van het OpenStreetMap-ecosysteem" + }, + "license": { + "intro": "OpenStreetMap wordt gepubliceerd onder de Open Database License. De volledige licentie kan als volgt worden samengevat:", + "li0": "Een product dat OpenStreetMap gebruikt moet de OpenStreetMap vermelden.", + "li1": "OpenStreetMap-data moet open blijven. Dit betekent dat een kaart met OpenStreetMap-data opnieuw gekopieerd mag worden.", + "outro": "De licentie heeft enkele gevolgen - deze worden hieronder toegelicht.", + "title": "De licentie" + }, + "vandalism": { + "intro": "Omdat iedereen de data kan aanpassen, is het inderdaad mogelijk dat iemand opzettelijk een foute aanpassing maakt. Dit gebeurt in de praktijk echter nooit, want:", + "li0": "de technische drempel om een wijziging te maken is hoog", + "li1": "een kleine, foutieve wijziging heeft weinig impact en brengt dus weinig op voor een vandaal", + "li2": "een wijziging met een grote impact wordt snel opgemerkt omdat er zoveel datagebruikers zijn", + "li3": "alle wijzigingen worden bijgehouden en gelinkt aan de bijdrager die ze maakt. Een gebruiker die veelvuldig en opzettelijk de data kapot maakt, wordt verbannen", + "li4": "In België en verschillende andere landen wordt elke eerste wijziging van een nieuwe bijdrager systematisch gecontroleerd en gecorrigeerd.", + "title": "Is vandalisme een probleem?" + } + }, + "indexPage": { + "button": "Ontdek onze services", + "hook": "Professionele ondersteuning nodig?", + "hookMore": "We kunnen helpen bij het opzetten van terreinwerk, integreren van datasets en algemene OpenStreetMap-consultancy" + }, + "intro": "De ontwikkelaar van MapComplete bied professionele ondersteuning aan. Dit document toont enkele mogelijkheden, frequente vragen en de grenzen van wat MapComplete kan.", + "osmTitle": "Wat kunnen OpenStreetMap en MapComplete doen voor jouw organisatie?", + "services": { + "intro": "De ontwikkelaar van MapComplete kan je verderhelpen met de volgende diensten:", + "li0": "Het opzetten van een kaart, aangepast voor jou noden", + "li1": "Hulp bij het opzetten van interne dataflows om OpenStreetMap te integreren", + "li2": "Vormingen hoe data bijgedragen kan worden met MapComplete", + "title": "Diensten met MapComplete" + }, + "text0": "

Het onderhouden en updaten van geodata is moeilijk en duur.
Bovendien verzamelen veel organisaties dezelfde data, onafhankelijk van elkaar - waardoor hetzelfde werk verschillende keren wordt gedaan, de data in niet-standaard formaten wordt bijgehouden en ieder een onvolledige, niet onderhouden dataset heeft

Parallel hiermee is er ook een grote community die geodata verzameld in een globale, gestandaardiseerde databank: OpenStreetMap.org.

", + "text1": "

MapComplete is de editor die het gemakkelijk maakt om bij te dragen aan OpenStreetMap.

", + "title": "Professionele ondersteuning voor MapComplete" }, "reviews": { - "title": "{count} beoordelingen", - "title_singular": "Eén beoordeling", - "name_required": "De naam van dit object moet gekend zijn om een review te kunnen maken", - "no_reviews_yet": "Er zijn nog geen beoordelingen. Wees de eerste om een beoordeling te schrijven en help open data en het bedrijf!", - "write_a_comment": "Schrijf een beoordeling…", - "no_rating": "Geen score bekend", - "posting_as": "Ingelogd als", - "i_am_affiliated": "Ik ben persoonlijk betrokken
Vink aan indien je de oprichter, maker, werknemer, ... of dergelijke bent", - "affiliated_reviewer_warning": "(Review door betrokkene)", - "saving_review": "Opslaan…", - "saved": "Bedankt om je beoordeling te delen!", - "tos": "Als je je review publiceert, ga je akkoord met de de gebruiksvoorwaarden en privacy policy van Mangrove.reviews", - "attribution": "De beoordelingen worden voorzien door Mangrove Reviews en zijn beschikbaar onder deCC-BY 4.0-licentie.", - "plz_login": "Meld je aan om een beoordeling te geven" + "affiliated_reviewer_warning": "(Review door betrokkene)", + "attribution": "De beoordelingen worden voorzien door Mangrove Reviews en zijn beschikbaar onder deCC-BY 4.0-licentie. ", + "i_am_affiliated": "Ik ben persoonlijk betrokken
Vink aan indien je de oprichter, maker, werknemer, ... of dergelijke bent", + "name_required": "De naam van dit object moet gekend zijn om een review te kunnen maken", + "no_rating": "Geen score bekend", + "no_reviews_yet": "Er zijn nog geen beoordelingen. Wees de eerste om een beoordeling te schrijven en help open data en het bedrijf!", + "plz_login": "Meld je aan om een beoordeling te geven", + "posting_as": "Ingelogd als", + "saved": "Bedankt om je beoordeling te delen!", + "saving_review": "Opslaan...", + "title": "{count} beoordelingen", + "title_singular": "Eén beoordeling", + "tos": "Als je je review publiceert, ga je akkoord met de de gebruiksvoorwaarden en privacy policy van Mangrove.reviews", + "write_a_comment": "Schrijf een beoordeling..." }, - "morescreen": { - "intro": "

Meer thematische kaarten

Vind je het leuk om geodata te verzamelen?
Hier vind je meer kaartthemas.", - "requestATheme": "Wil je een eigen kaartthema, vraag dit in de issue tracker.", - "streetcomplete": "Een andere, gelijkaardige Android-applicatie is StreetComplete.", - "createYourOwnTheme": "Maak je eigen MapComplete-kaart", - "previouslyHiddenTitle": "Eerder bezochte verborgen themas", - "hiddenExplanation": "Deze thema's zijn enkel zichtbaar indien je de link kent. Je hebt {hidden_discovered} van {total_hidden} verborgen thema's ontdekt" + "split": { + "cancel": "Annuleren", + "hasBeenSplit": "Deze weg is verknipt", + "inviteToSplit": "Knip deze weg in kleinere segmenten (om andere eigenschappen per segment toe te kennen)", + "loginToSplit": "Je moet aangemeld zijn om een weg te knippen", + "split": "Knip weg", + "splitTitle": "Duid op de kaart aan waar de weg geknipt moet worden" }, - "readYourMessages": "Gelieve eerst je berichten op OpenStreetMap te lezen alvorens nieuwe punten toe te voegen.", - "fewChangesBefore": "Gelieve eerst enkele vragen van bestaande punten te beantwoorden vooraleer zelf punten toe te voegen.", - "goToInbox": "Ga naar de berichten", - "getStartedLogin": "Login met OpenStreetMap om te beginnen", - "getStartedNewAccount": " of maak een nieuwe account aan", - "noTagsSelected": "Geen tags geselecteerd", - "customThemeIntro": "

Onofficiële thema's

De onderstaande thema's heb je eerder bezocht en zijn gemaakt door andere OpenStreetMappers.", - "aboutMapcomplete": "

Over MapComplete

Met MapComplete kun je OpenStreetMap verrijken met informatie over een bepaald thema. Beantwoord enkele vragen, en binnen een paar minuten is jouw bijdrage wereldwijd beschikbaar! De maker van het thema bepaalt de elementen, vragen en taalversies voor het thema.

Ontdek meer

MapComplete biedt altijd de volgende stap naar meer OpenStreetMap:

  • Indien ingebed in een website linkt het iframe naar de volledige MapComplete
  • De volledige versie heeft uitleg over OpenStreetMap
  • Bekijken kan altijd, maar wijzigen vereist een OSM-account
  • Als je niet aangemeld bent, wordt je gevraagd dit te doen
  • Als je minstens één vraag hebt beantwoord, kan je ook elementen toevoegen
  • Heb je genoeg changesets, dan verschijnen de OSM-tags, nog later links naar de wiki

Merk je een bug of wil je een extra feature? Wil je helpen vertalen? Bezoek dan de broncode en issue tracker.

Wil je je vorderingen zien? Volg de edits op OsmCha.

", - "backgroundMap": "Achtergrondkaart", - "layerSelection": { - "zoomInToSeeThisLayer": "Vergroot de kaart om deze laag te zien", - "title": "Selecteer lagen" - }, - "weekdays": { - "abbreviations": { - "monday": "Maan", - "tuesday": "Din", - "wednesday": "Woe", - "thursday": "Don", - "friday": "Vrij", - "saturday": "Zat", - "sunday": "Zon" - }, - "monday": "Maandag", - "tuesday": "Dinsdag", - "wednesday": "Woensdag", - "thursday": "Donderdag", - "friday": "Vrijdag", - "saturday": "Zaterdag", - "sunday": "Zondag" - }, - "opening_hours": { - "error_loading": "Sorry, deze openingsuren kunnen niet getoond worden", - "open_during_ph": "Op een feestdag is dit", - "opensAt": "vanaf", - "openTill": "tot", - "closed_until": "Gesloten - open op {date}", - "closed_permanently": "Gesloten voor onbepaalde tijd", - "open_24_7": "Dag en nacht open", - "ph_not_known": " ", - "ph_closed": "gesloten", - "ph_open": "open", - "ph_open_as_usual": "geopend zoals gewoonlijk", - "not_all_rules_parsed": "De openingsuren zijn ingewikkeld. De volgende regels worden niet getoond bij het ingeven:", - "loadingCountry": "Het land wordt nog bepaald…" - }, - "skippedQuestions": "Enkele vragen werden overgeslaan", - "skip": "Sla deze vraag over", - "save": "Opslaan", - "returnToTheMap": "Ga terug naar de kaart", - "pdf": { - "versionInfo": "v{version} - gemaakt op {date}", - "attr": "Kaartgegevens © OpenStreetMap-bijdragers, herbruikbaar volgens ODbL", - "generatedWith": "Gemaakt met MapComplete.osm.be", - "attrBackground": "Achtergrondlaag: {background}" - }, - "osmLinkTooltip": "Bekijk dit object op OpenStreetMap om de geschiedenis te zien en meer te kunnen aanpassen", - "oneSkippedQuestion": "Een vraag werd overgeslaan", - "number": "getal", - "loginOnlyNeededToEdit": "als je de kaart wilt aanpassen", - "download": { - "noDataLoaded": "Er is nog geen data ingeladen. Downloaden kan zodra de data geladen is.", - "licenseInfo": "

Copyright

De voorziene data is beschikbaar onder de ODbL. Het hergebruiken van deze data is gratis voor elke toepassing, maar
  • de bronvermelding © OpenStreetMap bijdragers is vereist
  • Elke wijziging aan deze data moet opnieuw gepubliceerd worden onder dezelfde licentie
Gelieve de volledige licentie te lezen voor details", - "includeMetaData": "Exporteer metadata (zoals laatste aanpassing, berekende waardes, …)", - "downloadCSVHelper": "Compatibel met LibreOffice Calc, Excel, …", - "downloadCSV": "Download de zichtbare data als CSV", - "downloadGeoJsonHelper": "Compatibel met QGIS, ArcGIS, ESRI, …", - "downloadGeojson": "Download de zichtbare data als GeoJSON", - "downloadAsPdfHelper": "Perfect om de huidige kaart af te printen", - "downloadAsPdf": "Download een PDF van de huidig zichtbare kaart", - "title": "Download de zichtbare data", - "exporting": "Aan het exporteren..." - }, - "cancel": "Annuleren", - "testing": "Testmode - wijzigingen worden niet opgeslaan", - "openTheMap": "Naar de kaart", - "wikipedia": { - "failed": "Het Wikipedia-artikel inladen is mislukt", - "wikipediaboxTitle": "Wikipedia", - "loading": "Wikipedia aan het laden...", - "noWikipediaPage": "Dit Wikidata-item heeft nog geen overeenkomstig Wikipedia-artikel", - "createNewWikidata": "Maak een nieuw Wikidata-item", - "searchWikidata": "Zoek op Wikidata", - "noResults": "Niet gevonden voor {search}", - "doSearch": "Zoek hierboven om resultaten te zien" - }, - "histogram": { - "error_loading": "Kan het histogram niet laden" - }, - "loading": "Aan het laden..." - }, - "reviews": { - "title": "{count} beoordelingen", - "title_singular": "Eén beoordeling", - "name_required": "De naam van dit object moet gekend zijn om een review te kunnen maken", - "no_reviews_yet": "Er zijn nog geen beoordelingen. Wees de eerste om een beoordeling te schrijven en help open data en het bedrijf!", - "write_a_comment": "Schrijf een beoordeling...", - "no_rating": "Geen score bekend", - "posting_as": "Ingelogd als", - "i_am_affiliated": "Ik ben persoonlijk betrokken
Vink aan indien je de oprichter, maker, werknemer, ... of dergelijke bent", - "affiliated_reviewer_warning": "(Review door betrokkene)", - "saving_review": "Opslaan...", - "saved": "Bedankt om je beoordeling te delen!", - "tos": "Als je je review publiceert, ga je akkoord met de de gebruiksvoorwaarden en privacy policy van Mangrove.reviews", - "attribution": "De beoordelingen worden voorzien door Mangrove Reviews en zijn beschikbaar onder deCC-BY 4.0-licentie. ", - "plz_login": "Meld je aan om een beoordeling te geven" - }, - "favourite": { - "reload": "Herlaad de data", - "loginNeeded": "

Log in

Je moet je aanmelden met OpenStreetMap om een persoonlijk thema te gebruiken", - "panelIntro": "

Jouw persoonlijke thema

Activeer je favorite lagen van alle andere themas" - }, - "delete": { - "readMessages": "Je hebt ongelezen berichten. Je moet deze lezen voordat je een punt verwijderd, een andere bijdrager heeft misschien feedback", - "explanations": { - "softDelete": "Dit punt zal aangepast worden en zal in deze applicatie niet meer getoond worden. {reason}", - "hardDelete": "Dit punt zal verwijderd worden in OpenStreetMap. Een ervaren bijdrager kan dit ongedaan maken.", - "selectReason": "Gelieve aan te duiden waarom dit punt verwijderd moet worden" - }, - "reasons": { - "notFound": "Het kon niet gevonden worden", - "disused": "Het wordt niet meer onderhouden of is verwijderd", - "test": "Dit punt was een test en was nooit echt aanwezig", - "duplicate": "Dit punt is een duplicaat van een ander punt" - }, - "cancel": "Annuleren", - "isDeleted": "Dit object is verwijderd", - "delete": "Verwijder", - "partOfOthers": "Dit punt maakt deel uit van een lijn, oppervlakte of een relatie en kan niet verwijderd worden.", - "whyDelete": "Waarom moet dit punt van de kaart verwijderd worden?", - "loginToDelete": "Je moet aangemeld zijn om een object van de kaart te verwijderen", - "onlyEditedByLoggedInUser": "Dit punt is enkel door jezelf bewerkt, je kan dit veilig verwijderen.", - "cannotBeDeleted": "Dit object kan niet van de kaart verwijderd worden", - "safeDelete": "Dit punt kan veilig verwijderd worden van de kaart.", - "isntAPoint": "Enkel punten kunnen verwijderd worden, het geselecteerde object is een lijn, een oppervlakte of een relatie.", - "notEnoughExperience": "Dit punt is door iemand anders gemaakt.", - "useSomethingElse": "Gebruik een ander OpenStreetMap-editeerprogramma om dit object te verwijderen", - "loading": "Aan het bekijken of dit object veilig verwijderd kan worden." - }, - "move": { - "cannotBeMoved": "Dit object kan niet verplaatst worden.", - "inviteToMove": { - "reasonRelocation": "Verplaats dit punt naar een andere locatie omdat het verhuisd is", - "reasonInaccurate": "Verbeter de precieze locatie van dit punt", - "generic": "Verplaats dit punt" - }, - "pointIsMoved": "Dit punt is verplaatst", - "confirmMove": "Verplaats", - "reasons": { - "reasonRelocation": "Dit object is verhuisd naar een andere locatie", - "reasonInaccurate": "De locatie van dit object is niet accuraat en moet een paar meter verschoven worden" - }, - "partOfAWay": "Dit punt is deel van een lijn of een oppervlakte. Gebruik een ander OpenStreetMap-bewerkprogramma om het te verplaatsen", - "partOfRelation": "Dit punt maakt deel uit van een relatie. Gebruik een ander OpenStreetMap-bewerkprogramma om het te verplaatsen", - "cancel": "Annuleer verplaatsing", - "loginToMove": "Je moet aangemeld zijn om een punt te verplaatsen", - "zoomInFurther": "Zoom verder in om de verplaatsing te bevestigen", - "isRelation": "Dit object is een relatie en kan niet verplaatst worden", - "inviteToMoveAgain": "Verplaats dit punt opnieuw", - "moveTitle": "Verplaats dit punt", - "whyMove": "Waarom verplaats je dit punt?", - "selectReason": "Waarom verplaats je dit object?", - "isWay": "Dit object is een lijn of een oppervlakte. Gebruik een ander OpenStreetMap-bewerkprogramma op het te verplaatsen." - }, - "split": { - "cancel": "Annuleren", - "split": "Knip weg", - "splitTitle": "Duid op de kaart aan waar de weg geknipt moet worden", - "inviteToSplit": "Knip deze weg in kleinere segmenten (om andere eigenschappen per segment toe te kennen)", - "loginToSplit": "Je moet aangemeld zijn om een weg te knippen", - "hasBeenSplit": "Deze weg is verknipt" - }, - "multi_apply": { - "autoApply": "Wijzigingen aan eigenschappen {attr_names} zullen ook worden uitgevoerd op {count} andere objecten." - } + "validation": { + "email": { + "description": "email-adres", + "feedback": "Dit is geen geldig email-adres", + "noAt": "Een email-adres moet een @ hebben" + }, + "float": { + "description": "een getal", + "feedback": "dit is geen getal" + }, + "int": { + "description": "een geheel getal" + }, + "nat": { + "description": "een positief, geheel getal of nul", + "mustBePositive": "Dit getal moet positief zijn", + "mustBeWhole": "Enkele gehele getallen zijn toegelaten", + "notANumber": "Dit is geen getal" + }, + "pfloat": { + "description": "een positief getal" + }, + "phone": { + "description": "telefoonnummer", + "feedback": "Dit is geen geldig telefoonnummer" + }, + "pnat": { + "description": "een positief, geheel getal", + "noZero": "Nul is niet toegelaten" + }, + "string": { + "description": "een stukje tekst" + }, + "tooLong": "Deze tekst is te lang. De tekst heeft {count} lettertekens, er mogen maximaal 255 letters zijn", + "url": { + "description": "een link naar een webpagina", + "feedback": "Dit is geen geldige link" + } + } } \ No newline at end of file diff --git a/langs/pl.json b/langs/pl.json index 2145e7595a..a954679590 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ę" + "centerMessage": { + "loadingData": "Ładowanie danych…", + "ready": "Zrobione!", + "retrying": "Ładowanie danych nie powiodło się. Spróbujemy ponownie za {count} sekund…", + "zoomIn": "Przybliż żeby zobaczyć lub edytować" }, - "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." + "delete": { + "cancel": "Anuluj", + "cannotBeDeleted": "Ten obiekt nie może zostać usunięty", + "delete": "Usuń", + "isDeleted": "Ten obiekt został usunięty" }, - "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" + "favourite": { + "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", + "reload": "Odśwież dane" }, "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" + "about": "Łatwo edytuj i dodaj OpenStreetMap dla określonego motywu", + "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.

.", + "add": { + "addNew": "Dodaj nową {category} tutaj", + "confirmButton": "Dodaj tutaj {category}.
Twój dodatek jest widoczny dla wszystkich
", + "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.", + "intro": "Kliknąłeś gdzieś, gdzie nie są jeszcze znane żadne dane.
", + "layerNotEnabled": "Warstwa {layer} nie jest włączona. Włącz tę warstwę, aby dodać punkt", + "openLayerControl": "Otwórz okno sterowania warstwą", + "pleaseLogin": "Zaloguj się, aby dodać nowy punkt", + "stillLoading": "Dane wciąż się ładują. Poczekaj chwilę, zanim dodasz nowy punkt.", + "title": "Czy dodać nowy punkt?", + "zoomInFurther": "Powiększ jeszcze bardziej, aby dodać punkt." }, - "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." + "backgroundMap": "Tło mapy", + "cancel": "Anuluj", + "customThemeIntro": "

Motywy własne

Są to wcześniej odwiedzone motywy stworzone przez użytkowników.", + "fewChangesBefore": "Proszę odpowiedzieć na kilka pytań dotyczących istniejących punktów przed dodaniem nowego punktu.", + "general": { + "about": "Łatwo edytuj i dodaj OpenStreetMap dla określonego motywu", + "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.

", + "add": { + "addNew": "Dodaj nową {category} tutaj", + "confirmButton": "Dodaj tutaj {category}.
Twój dodatek jest widoczny dla wszystkich
", + "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.", + "intro": "Kliknąłeś gdzieś, gdzie nie są jeszcze znane żadne dane.
", + "layerNotEnabled": "Warstwa {layer} nie jest włączona. Włącz tę warstwę, aby dodać punkt", + "openLayerControl": "Otwórz okno sterowania warstwą", + "pleaseLogin": "Zaloguj się, aby dodać nowy punkt", + "stillLoading": "Dane wciąż się ładują. Poczekaj chwilę, zanim dodasz nowy punkt.", + "title": "Czy dodać nowy punkt?", + "zoomInFurther": "Powiększ jeszcze bardziej, aby dodać punkt." + }, + "backgroundMap": "Tło mapy", + "cancel": "Anuluj", + "customThemeIntro": "

Motywy własne

Są to wcześniej odwiedzone motywy stworzone przez użytkowników.", + "fewChangesBefore": "Proszę odpowiedzieć na kilka pytań dotyczących istniejących punktów przed dodaniem nowego punktu.", + "getStartedLogin": "Zaloguj się za pomocą OpenStreetMap, aby rozpocząć", + "getStartedNewAccount": " lub utwórz nowe konto", + "goToInbox": "Otwórz skrzynkę odbiorczą", + "layerSelection": { + "title": "Wybierz warstwy", + "zoomInToSeeThisLayer": "Powiększ, aby zobaczyć tę warstwę" + }, + "loginToStart": "Zaloguj się, aby odpowiedzieć na to pytanie", + "loginWithOpenStreetMap": "Zaloguj z OpenStreetMap", + "nameInlineQuestion": "Nazwa tej {category} to $$$", + "noNameCategory": "{category} bez nazwy", + "noTagsSelected": "Nie wybrano tagów", + "number": "numer", + "oneSkippedQuestion": "Jedno pytanie zostało pominięte", + "opening_hours": { + "closed_permanently": "Zamknięte na nieokreślony czas", + "closed_until": "Zamknięte do {date}", + "error_loading": "Błąd: nie można zwizualizować tych godzin otwarcia.", + "not_all_rules_parsed": "Godziny otwarcia tego sklepu są skomplikowane. Następujące reguły są ignorowane w elemencie wejściowym:", + "openTill": "do", + "open_24_7": "Otwarte przez całą dobę", + "open_during_ph": "W czasie świąt państwowych udogodnienie to jest", + "opensAt": "z", + "ph_closed": "zamknięte", + "ph_not_known": " ", + "ph_open": "otwarte" + }, + "osmLinkTooltip": "Zobacz ten obiekt na OpenStreetMap, aby uzyskać historię i więcej opcji edycji", + "pickLanguage": "Wybierz język: ", + "questions": { + "emailIs": "Adres e-mail {category} to {email}", + "emailOf": "Jaki jest adres e-mail {category}?", + "phoneNumberIs": "Numer telefonu {category} to {phone}", + "phoneNumberOf": "Jaki jest numer telefonu do {category}?", + "websiteIs": "Strona internetowa: {website}", + "websiteOf": "Jaka jest strona internetowa {category}?" + }, + "readYourMessages": "Przeczytaj wszystkie wiadomości OpenStreetMap przed dodaniem nowego punktu.", + "returnToTheMap": "Wróć do mapy", + "save": "Zapisz", + "search": { + "error": "Coś poszło nie tak…", + "nothing": "Nic nie znaleziono…", + "search": "Wyszukaj lokalizację", + "searching": "Szukanie…" + }, + "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ć.", + "copiedToClipboard": "Link został skopiowany do schowka", + "editThemeDescription": "Dodaj lub zmień pytania do tego motywu mapy", + "editThisTheme": "Edytuj ten motyw", + "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.", + "fsAddNew": "Włącz przycisk \"Dodaj nowe POI\"", + "fsGeolocation": "Włącz przycisk „Zlokalizuj mnie” (tylko na urządzeniach mobilnych)", + "fsIncludeCurrentBackgroundMap": "Dołącz bieżący wybór tła {name}", + "fsIncludeCurrentLayers": "Uwzględnij wybór bieżącej warstwy", + "fsIncludeCurrentLocation": "Uwzględnij bieżącą lokalizację", + "fsLayerControlToggle": "Zacznij od rozwiniętej kontroli warstw", + "fsLayers": "Włącz kontrolę warstw", + "fsSearch": "Włącz pasek wyszukiwania", + "fsUserbadge": "Włącz przycisk logowania", + "fsWelcomeMessage": "Pokaż wyskakujące okienko wiadomości powitalnej i powiązane zakładki", + "intro": "

Udostępnij tę mapę

Udostępnij tę mapę, kopiując poniższy link i wysyłając ją do przyjaciół i rodziny:", + "thanksForSharing": "Dzięki za udostępnienie!" + }, + "skip": "Pomiń to pytanie", + "skippedQuestions": "Niektóre pytania są pominięte", + "weekdays": { + "abbreviations": { + "friday": "Pt", + "monday": "Pn", + "saturday": "Sob", + "sunday": "Niedz", + "thursday": "Czw", + "tuesday": "Wt", + "wednesday": "Śr" + }, + "friday": "Piątek", + "monday": "Poniedziałek", + "saturday": "Sobota", + "sunday": "Niedziela", + "thursday": "Czwartek", + "tuesday": "Wtorek", + "wednesday": "Środa" + }, + "welcomeBack": "Jesteś zalogowany, witaj z powrotem!" + }, + "getStartedLogin": "Zaloguj się za pomocą OpenStreetMap, aby rozpocząć", + "getStartedNewAccount": " lub utwórz nowe konto", + "goToInbox": "Otwórz skrzynkę odbiorczą", + "index": { + "#": "Te teksty są wyświetlane nad przyciskami motywu, gdy nie jest załadowany żaden motyw", + "intro": "MapComplete to przeglądarka i edytor OpenStreetMap, który pokazuje informacje podzielone według tematu.", + "pickTheme": "Wybierz temat poniżej, aby rozpocząć.", + "title": "Witaj w MapComplete" + }, + "layerSelection": { + "title": "Wybierz warstwy", + "zoomInToSeeThisLayer": "Powiększ, aby zobaczyć tę warstwę" + }, + "loginToStart": "Zaloguj się, aby odpowiedzieć na to pytanie", + "loginWithOpenStreetMap": "Zaloguj z OpenStreetMap", + "nameInlineQuestion": "Nazwa tej {category} to $$$", + "noNameCategory": "{category} bez nazwy", + "noTagsSelected": "Nie wybrano tagów", + "number": "numer", + "oneSkippedQuestion": "Jedno pytanie zostało pominięte", + "opening_hours": { + "closed_permanently": "Zamknięte na nieokreślony czas", + "closed_until": "Zamknięte do {date}", + "error_loading": "Błąd: nie można zwizualizować tych godzin otwarcia.", + "not_all_rules_parsed": "Godziny otwarcia tego sklepu są skomplikowane. Następujące reguły są ignorowane w elemencie wejściowym:", + "openTill": "do", + "open_24_7": "Otwarte przez całą dobę", + "open_during_ph": "W czasie świąt państwowych udogodnienie to jest", + "opensAt": "z", + "ph_closed": "zamknięte", + "ph_not_known": " ", + "ph_open": "otwarte" + }, + "osmLinkTooltip": "Zobacz ten obiekt na OpenStreetMap, aby uzyskać historię i więcej opcji edycji", + "pickLanguage": "Wybierz język: ", + "questions": { + "emailIs": "Adres e-mail {category} to {email}", + "emailOf": "Jaki jest adres e-mail {category}?", + "phoneNumberIs": "Numer telefonu {category} to {phone}", + "phoneNumberOf": "Jaki jest numer telefonu do {category}?", + "websiteIs": "Strona internetowa: {website}", + "websiteOf": "Jaka jest strona internetowa {category}?" + }, + "readYourMessages": "Przeczytaj wszystkie wiadomości OpenStreetMap przed dodaniem nowego punktu.", + "returnToTheMap": "Wróć do mapy", + "save": "Zapisz", + "search": { + "error": "Coś poszło nie tak…", + "nothing": "Nic nie znaleziono…", + "search": "Wyszukaj lokalizację", + "searching": "Szukanie…" + }, + "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ć.", + "copiedToClipboard": "Link został skopiowany do schowka", + "editThemeDescription": "Dodaj lub zmień pytania do tego motywu mapy", + "editThisTheme": "Edytuj ten motyw", + "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.", + "fsAddNew": "Włącz przycisk \"Dodaj nowe POI\"", + "fsGeolocation": "Włącz przycisk „Zlokalizuj mnie” (tylko na urządzeniach mobilnych)", + "fsIncludeCurrentBackgroundMap": "Dołącz bieżący wybór tła {name}", + "fsIncludeCurrentLayers": "Uwzględnij wybór bieżącej warstwy", + "fsIncludeCurrentLocation": "Uwzględnij bieżącą lokalizację", + "fsLayerControlToggle": "Zacznij od rozwiniętej kontroli warstw", + "fsLayers": "Włącz kontrolę warstw", + "fsSearch": "Włącz pasek wyszukiwania", + "fsUserbadge": "Włącz przycisk logowania", + "fsWelcomeMessage": "Pokaż wyskakujące okienko wiadomości powitalnej i powiązane zakładki", + "intro": "

Udostępnij tę mapę

Udostępnij tę mapę, kopiując poniższy link i wysyłając ją do przyjaciół i rodziny:", + "thanksForSharing": "Dzięki za udostępnienie!" + }, + "skip": "Pomiń to pytanie", + "skippedQuestions": "Niektóre pytania są pominięte", + "weekdays": { + "abbreviations": { + "friday": "Pt", + "monday": "Pn", + "saturday": "Sob", + "sunday": "Niedz", + "thursday": "Czw", + "tuesday": "Wt", + "wednesday": "Śr" + }, + "friday": "Piątek", + "monday": "Poniedziałek", + "saturday": "Sobota", + "sunday": "Niedziela", + "thursday": "Czwartek", + "tuesday": "Wtorek", + "wednesday": "Środa" + }, + "welcomeBack": "Jesteś zalogowany, witaj z powrotem!" + }, + "image": { + "addPicture": "Dodaj zdjęcie", + "ccb": "na licencji CC-BY", + "ccbs": "na licencji CC-BY-SA", + "cco": "w domenie publicznej", + "ccoExplanation": "Dodanie zdjęcia do domeny publicznej oznacza, że każdy może zrobić z nim cokolwiek zechce", + "doDelete": "Usuń ilustrację", + "dontDelete": "Anuluj", + "isDeleted": "Usunięte", + "pleaseLogin": "Zaloguj się, by dodać zdjęcie", + "respectPrivacy": "Nie fotografuj ludzi i tablic rejestracyjnych. Nie wysyłaj także treści z Google Maps, Google Streetview ani innych licencjonowanych źródeł.", + "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ć.", + "uploadingMultiple": "Wysyłanie {count} zdjęć…", + "uploadingPicture": "Wysyłanie zdjęcia…", + "willBePublished": "Twoje zdjęcie zostanie opublikowane " }, "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" + "#": "Te teksty są wyświetlane nad przyciskami motywu, gdy nie jest załadowany żaden motyw", + "intro": "MapComplete to przeglądarka i edytor OpenStreetMap, który pokazuje informacje podzielone według tematu.", + "pickTheme": "Wybierz temat z dostępnych poniżej by zacząć.", + "title": "Witaj w MapComplete" }, - "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" + "reviews": { + "affiliated_reviewer_warning": "(Recenzja powiązana)", + "attribution": "Recenzje są obsługiwane przez Recenzje Mangrove i są dostępne na licencji CC-BY 4.0.", + "i_am_affiliated": "Jestem powiązany z tym obiektem
Sprawdź czy jesteś właścicielem, twórcą, pracownikiem, ...", + "name_required": "Nazwa jest wymagana do wyświetlania i tworzenia opinii", + "no_rating": "Nie podano oceny", + "no_reviews_yet": "Nie ma jeszcze recenzji. Bądź pierwszym, który je napisze i pomóż otworzyć dane i biznes!", + "plz_login": "Zaloguj się, aby zostawić opinię", + "posting_as": "Publikowanie jako", + "saved": "Opinia została zapisana. Dzięki za udostępnienie!", + "saving_review": "Zapisywanie…", + "title": "{count} opinii", + "title_singular": "Jedna opinia", + "tos": "Jeśli utworzysz recenzję, zgadzasz się na TOS i politykę prywatności Mangrove.reviews.", + "write_a_comment": "Zostaw recenzję…" }, - "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 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", + "hasBeenSplit": "Ta droga została podzielona", + "inviteToSplit": "Podziel tę drogę na mniejsze segmenty. Pozwala to na nadanie różnych właściwości do poszczególnych części drogi.", + "loginToSplit": "Musisz się zalogować, by podzielić drogę", + "split": "Podziel", + "splitTitle": "Wybierz na mapie gdzie podzielić tę drogę" + } +} \ No newline at end of file diff --git a/langs/pt.json b/langs/pt.json index fabdb6a7ac..50c200c5c8 100644 --- a/langs/pt.json +++ b/langs/pt.json @@ -1,42 +1,288 @@ { - "centerMessage": { - "retrying": "Surgiu uma falha ao carregar os dados. A tentar novamente dentro de {count} segundos…", - "ready": "Concluído!", - "zoomIn": "Amplie para ver ou editar os dados", - "loadingData": "A carregar os dados…" - }, - "image": { - "isDeleted": "Eliminada", - "doDelete": "Remover imagem", - "dontDelete": "Cancelar", - "uploadDone": "A sua imagem foi adicionada. Obrigado pela ajuda!", - "respectPrivacy": "Não fotografe pessoas nem placas de veículos. Não envie imagens do Google Maps, do Google Streetview ou outras fontes protegidas por direitos de autor.", - "uploadFailed": "Não foi possível enviar a sua imagem. Está conectado à Internet e permite APIs de terceiros? O navegador \"Brave\" ou o plugin \"uMatrix\" podem estar a bloqueá-los.", - "ccb": "sob a licença CC-BY", - "ccbs": "sob a licença CC-BY-SA", - "cco": "no domínio público", - "willBePublished": "A sua imagem será publicada: ", - "pleaseLogin": "Entre na sua conta para adicionar uma imagem", - "uploadingMultiple": "A enviar {count} imagens…", - "uploadingPicture": "A enviar a sua imagem…", - "addPicture": "Adicionar imagem", - "uploadMultipleDone": "Foram adicionadas {count} fotografias. Obrigado por ajudar!", - "toBig": "A sua imagem é muito grande porque tem {actual_size}. Use imagens com o máximo {max_size}" - }, - "index": { - "#": "Estes textos são mostrados acima dos botões do tema quando nenhum tema é carregado", - "title": "Bem-vindo(a) ao MapComplete", - "intro": "O MapComplete é um visualizador e editor do OpenStreetMap, que mostra informações sobre um tema específico.", - "pickTheme": "Escolha um tema abaixo para começar.", - "featuredThemeTitle": "Destaque desta semana" - }, - "delete": { - "reasons": { - "notFound": "Não foi possível encontrar este elemento" + "centerMessage": { + "loadingData": "A carregar os dados…", + "ready": "Concluído!", + "retrying": "Surgiu uma falha ao carregar os dados. A tentar novamente dentro de {count} segundos…", + "zoomIn": "Amplie para ver ou editar os dados" }, - "explanations": { - "selectReason": "Por favor, selecione a razão porque este elemento deve ser eliminado", - "hardDelete": "Este ponto será eliminado no OpenStreetMap. Pode ser recuperado por um contribuidor com experiência" + "delete": { + "cancel": "Cancelar", + "cannotBeDeleted": "Este elemento não pode ser eliminado", + "delete": "Eliminar", + "explanations": { + "hardDelete": "Este ponto será eliminado no OpenStreetMap. Pode ser recuperado por um contribuidor com experiência", + "selectReason": "Por favor, selecione a razão porque este elemento deve ser eliminado", + "softDelete": "Este elemento será atualizado e ocultado nesta aplicação. {reason}" + }, + "isDeleted": "Este elemento está eliminado", + "isntAPoint": "Apenas os pontos podem ser eliminados, o elemento selecionado é uma linha, área ou relação.", + "loading": "A inspecionar as propriedades para verificar se este elemento pode ser eliminado.", + "loginToDelete": "Tem de estar autenticado para eliminar um ponto", + "notEnoughExperience": "Este ponto foi adicionado por outra pessoa.", + "onlyEditedByLoggedInUser": "Este ponto só foi editado por si, pode eliminá-lo com segurança.", + "partOfOthers": "Este ponto faz parte de alguma linha ou relação e não pode ser eliminado diretamente.", + "readMessages": "Tem mensagens por ler. Leia-as antes de eliminar um ponto - alguém pode ter algo a dizer sobre isso", + "reasons": { + "disused": "Este elemento não está a ser utilizado ou foi removido", + "duplicate": "Este ponto é um duplicado de outro elemento", + "notFound": "Não foi possível encontrar este elemento", + "test": "Isto foi um ponto de teste - o elemento nunca existiu na realidade" + }, + "safeDelete": "Este ponto pode ser eliminado com segurança.", + "useSomethingElse": "Use antes outro editor do OpenStreetMap para eliminá-lo", + "whyDelete": "Porque é que este ponto deve ser eliminado?" + }, + "favourite": { + "loginNeeded": "

Iniciar sessão

O layout pessoal só está disponível para utilizadores do OpenStreetMap", + "panelIntro": "

O seu tema pessoal

Ative as suas camadas favoritas a partir de todos os temas oficiais", + "reload": "Recarregar dados" + }, + "general": { + "about": "Edite e adicione facilmente o OpenStreetMap para um determinado tema", + "aboutMapcomplete": "

Sobre o MapComplete

Use-o para adicionar informações ao OpenStreetMap sobre um tema específico. Responda a perguntas e em poucos minutos as suas contribuições estão disponíveis em todos os lugares. O responsável pelo tema define os elementos, as perguntas e os idiomas disponíveis nele.

Descubra mais

O MapComplete mostra sempre o próximo passo para saber mais sobre o OpenStreetMap.

  • Quando incorporado num site, o iframe liga-se ao MapComplete em ecrã cheio.
  • A versão ecrã cheio fornece informações sobre o OpenStreetMap
  • A visualização funciona sem ser preciso autenticar-se, mas a edição requer uma conta no OpenStreetMap.
  • Se não estiver autenticado, é solicitado a fazê-lo
  • Após responder a uma pergunta, pode adicionar novos pontos ao mapa
  • Depois de um tempo, as etiquetas reais do OpenStreetMap são mostradas, mais tarde vinculando-se à wiki


Deparou-se com um problema? Quer uma nova funcionalidade? Quer ajudar a traduzir? Vá ao código-fonte ou rastreador de problemas.

Quer ver o seu progresso? Veja a contagem de edições em OsmCha.

", + "add": { + "addNew": "Adicionar uma nova {category} aqui", + "addNewMapLabel": "Adicionar novo item", + "confirmButton": "Adicione uma {category} aqui.
Esta adição será visível a todos
", + "confirmIntro": "

Adicionar {title} aqui?

O ponto que criar aqui será visível a todos. Por favor, só adicione coisas ao mapa se elas realmente existirem. Muitas aplicações usam estes dados.", + "disableFilters": "Desativar todos os filtros", + "disableFiltersExplanation": "Alguns elementos podem estar escondidos por um filtro", + "hasBeenImported": "Este ponto já foi importado", + "intro": "Clicou em algum lugar onde ainda não há dados conhecidos.
", + "layerNotEnabled": "A camada {layer} não está ativada. Ative esta camada para adicionar um ponto", + "openLayerControl": "Abra a caixa de controlo da camada", + "pleaseLogin": "Por favor, inicie a sessão para adicionar um novo ponto", + "presetInfo": "O novo POI terá {tags}", + "stillLoading": "Os dados ainda estão a ser carregados. Aguarde um pouco antes de adicionar um novo ponto.", + "title": "Adicionar um novo ponto?", + "warnVisibleForEveryone": "A sua adição será visível para todos", + "zoomInFurther": "Amplie mais para adicionar um ponto.", + "zoomInMore": "Amplie mais para importar este elemento" + }, + "attribution": { + "attributionContent": "

Todos os dados são fornecidos pelo OpenStreetMap e são livremente reutilizáveis sob a licença the Open DataBase License.

", + "attributionTitle": "Aviso de atribuição", + "codeContributionsBy": "O MapComplete foi construído por {contributors} e _blank{hiddenCount} mais contribuintes", + "iconAttribution": { + "title": "Ícones usados" + }, + "mapContributionsBy": "Os dados visíveis atuais têm edições feitas por {contributors}", + "mapContributionsByAndHidden": "Os dados visíveis atuais têm edições feitas por {contributors} e mais {hiddenCount} contribuidores", + "themeBy": "Tema gerido por {author}" + }, + "backgroundMap": "Mapa de fundo", + "cancel": "Cancelar", + "customThemeIntro": "

Temas personalizados

São temas visitados anteriormente criados pelos utilizadores.", + "download": { + "downloadAsPdf": "Descarregar um PDF do mapa atual", + "downloadAsPdfHelper": "Ideal para imprimir o mapa atual", + "downloadCSV": "Descarregar dados visíveis como CSV", + "downloadCSVHelper": "Compatível com LibreOffice Calc, Excel…", + "downloadGeoJsonHelper": "Compatível com QGIS, ArcGIS, ESRI…", + "downloadGeojson": "Descarregar dados visíveis como GeoJSON", + "exporting": "A exportar…", + "includeMetaData": "Incluir metadados (último editor, valores calculados…)", + "licenseInfo": "

Aviso de direitos de autor

Os dados fornecidos estão disponíveis sob a licença ODbL. A sua reutilização é gratuita para qualquer finalidade, mas
  • é obrigatória a atribuição © Contribuidores do OpenStreetMap
  • Qualquer alteração deve ser feita usando a licença
Por favor, leia na íntegra o documento Licença e Direitos de Autor para mais informações.", + "noDataLoaded": "Ainda não foram descarregados dados. O descarregamento estará disponível brevemente", + "title": "Descarregar dados visíveis" + }, + "fewChangesBefore": "Por favor, responda a algumas perguntas sobre os pontos existentes antes de adicionar um novo ponto.", + "getStartedLogin": "Entrar com OpenStreetMap para começar", + "getStartedNewAccount": " ou crie uma conta", + "goToInbox": "Abrir mensagens", + "histogram": { + "error_loading": "Não foi possível carregar o histograma" + }, + "layerSelection": { + "title": "Selecionar camadas", + "zoomInToSeeThisLayer": "Amplie para ver esta camada" + }, + "loading": "A carregar...", + "loginOnlyNeededToEdit": "se quiser editar o mapa", + "loginToStart": "Inicie a sessão para responder a esta pergunta", + "loginWithOpenStreetMap": "Iniciar sessão com OpenStreetMap", + "morescreen": { + "createYourOwnTheme": "Crie o seu próprio tema MapComplete a partir do zero", + "hiddenExplanation": "Estes temas só são acessíveis a quem tem a hiperligação. Você descobriu {hidden_discovered} de {total_hidden} temas ocultos.", + "intro": "

Mais mapas temáticos?

Gosta de colecionar dados geográficos?
Tem mais temas disponíveis.", + "previouslyHiddenTitle": "Temas ocultos visitados anteriormente", + "requestATheme": "Se quiser um tema personalizado, solicite-o no rastreador de problemas", + "streetcomplete": "Outra aplicação semelhante é o StreetComplete." + }, + "nameInlineQuestion": "O nome desta {category} é $$$", + "noNameCategory": "{category} sem nome", + "noTagsSelected": "Nenhuma etiqueta selecionada", + "number": "número", + "oneSkippedQuestion": "Uma pergunta é ignorada", + "openStreetMapIntro": "

Um mapa aberto

Um que todos podem usar e editar livremente. Um único lugar para armazenar todas as informações geográficas. Mapas diferentes, pequenos, incompatíveis e desatualizados não são necessários em nenhum lugar.

OpenStreetMap não é o mapa inimigo. Os dados do mapa podem ser usados livremente (com atribuição e publicação das alterações a esses dados). Todos podem adicionar novos dados e corrigir erros. Este site usa o OpenStreetMap. Todos os dados são de lá e suas respostas e correções são usadas em todos os lugares.

Muitas pessoas e aplicações já usam o OpenStreetMap: O Organic Maps, OsmAnd, mas também os mapas no Facebook, Instagram, Apple-maps e Bing-maps são (em parte) enriquecidos com dados do OpenStreetMap.

", + "openTheMap": "Abrir o mapa", + "opening_hours": { + "closed_permanently": "Fechado por tempo desconhecido", + "closed_until": "Fechado até {date}", + "error_loading": "Erro: não foi possível visualizar estes horários de funcionamento.", + "loadingCountry": "A determinar o país…", + "not_all_rules_parsed": "Estes horários de funcionamento são complicados. As seguintes regras são ignoradas no elemento de entrada:", + "openTill": "até", + "open_24_7": "Aberto 24 horas por dia, todos os dias", + "open_during_ph": "Num feriado, isto", + "opensAt": "de", + "ph_closed": "fechado", + "ph_not_known": " ", + "ph_open": "aberto", + "ph_open_as_usual": "aberto como de costume" + }, + "osmLinkTooltip": "Ver este objeto no OpenStreetMap para ver o histórico e mais opções de edição", + "pdf": { + "attr": "Dados do mapa © colaboradores do OpenStreetMap, reutilizáveis sob a licença ODbL", + "attrBackground": "Camada de fundo: {background}", + "generatedWith": "Gerado com o MapComplete.osm.be", + "versionInfo": "v {version} - gerado em {date}" + }, + "pickLanguage": "Escolha um idioma: ", + "questions": { + "emailIs": "O endereço de e-mail de {category} é {email}", + "emailOf": "Qual é o endereço de e-mail de {category}?", + "phoneNumberIs": "O número de telefone de {category} é {phone}", + "phoneNumberOf": "Qual é o número de telefone de {category}?", + "websiteIs": "Site: {website}", + "websiteOf": "Qual é o site de {category}?" + }, + "readYourMessages": "Por favor, leia todas as suas mensagens do OpenStreetMap antes de adicionar um novo ponto.", + "returnToTheMap": "Voltar ao mapa", + "save": "Guardar", + "search": { + "error": "Alguma coisa correu mal…", + "nothing": "Nada encontrado…", + "search": "Procurar um local", + "searching": "A procurar…" + }, + "sharescreen": { + "addToHomeScreen": "

Adicionar ao seu ecrã inicial

Pode adicionar facilmente este site ao ecrã inicial do seu telemóvel. Para isso clique no botão 'Adicionar ao ecrã inicial' na barra de URL.", + "copiedToClipboard": "Hiperligação copiada para a área de transferência", + "editThemeDescription": "Adicionar ou alterar perguntas deste tema", + "editThisTheme": "Editar este tema", + "embedIntro": "

Incorporar no seu site

Por favor, insira este mapa no seu site.
Encorajamos a fazê-lo - nem precisa de pedir permissão.
É grátis e sempre será. Quanto mais pessoas estiverem a usar isto, mais valioso se torna.", + "fsAddNew": "Ativar o botão 'adicionar novo POI'", + "fsGeolocation": "Ativar o botão 'localizar-me geograficamente' (apenas telemóvel)", + "fsIncludeCurrentBackgroundMap": "Incluir a escolha de fundo atual {name}", + "fsIncludeCurrentLayers": "Incluir as opções de camada atuais", + "fsIncludeCurrentLocation": "Incluir localização atual", + "fsLayerControlToggle": "Começar com o controlo de camadas expandido", + "fsLayers": "Ativar o controlo das camadas", + "fsSearch": "Ativar a barra de pesquisa", + "fsUserbadge": "Ativar o botão de iniciar sessão", + "fsWelcomeMessage": "Mostrar a janela com a mensagem de boas-vindas e separadores associados", + "intro": "

Partilhar este mapa

Partilhe este mapa copiando a hiperligação abaixo e enviando-a a amigos e familiares:", + "thanksForSharing": "Obrigado por partilhar!" + }, + "skip": "Ignorar esta pergunta", + "skippedQuestions": "Algumas perguntas são ignoradas", + "testing": "Teste - as alterações não serão guardadas", + "weekdays": { + "abbreviations": { + "friday": "Sex", + "monday": "Seg", + "saturday": "Sáb", + "sunday": "Dom", + "thursday": "Qui", + "tuesday": "Ter", + "wednesday": "Qua" + }, + "friday": "Sexta-feira", + "monday": "Segunda-feira", + "saturday": "Sábado", + "sunday": "Domingo", + "thursday": "Quinta-feira", + "tuesday": "Terça-feira", + "wednesday": "Quarta-feira" + }, + "welcomeBack": "Iniciou a sessão, bem-vindo de volta!", + "wikipedia": { + "createNewWikidata": "Criar um novo item do Wikidata", + "doSearch": "Pesquise acima para ver os resultados", + "failed": "O carregamento da entrada da Wikipédia falhou", + "loading": "A carregar a Wikipédia...", + "noResults": "Nada encontrado para {search}", + "noWikipediaPage": "Este item do Wikidata ainda não tem uma página correspondente na Wikipédia.", + "searchWikidata": "Pesquisar no Wikidata", + "wikipediaboxTitle": "Wikipédia" + } + }, + "image": { + "addPicture": "Adicionar imagem", + "ccb": "sob a licença CC-BY", + "ccbs": "sob a licença CC-BY-SA", + "cco": "no domínio público", + "doDelete": "Remover imagem", + "dontDelete": "Cancelar", + "isDeleted": "Eliminada", + "pleaseLogin": "Entre na sua conta para adicionar uma imagem", + "respectPrivacy": "Não fotografe pessoas nem placas de veículos. Não envie imagens do Google Maps, do Google Streetview ou outras fontes protegidas por direitos de autor.", + "toBig": "A sua imagem é muito grande porque tem {actual_size}. Use imagens com o máximo {max_size}", + "uploadDone": "A sua imagem foi adicionada. Obrigado pela ajuda!", + "uploadFailed": "Não foi possível enviar a sua imagem. Está conectado à Internet e permite APIs de terceiros? O navegador \"Brave\" ou o plugin \"uMatrix\" podem estar a bloqueá-los.", + "uploadMultipleDone": "Foram adicionadas {count} fotografias. Obrigado por ajudar!", + "uploadingMultiple": "A enviar {count} imagens…", + "uploadingPicture": "A enviar a sua imagem…", + "willBePublished": "A sua imagem será publicada: " + }, + "index": { + "#": "Estes textos são mostrados acima dos botões do tema quando nenhum tema é carregado", + "featuredThemeTitle": "Destaque desta semana", + "intro": "O MapComplete é um visualizador e editor do OpenStreetMap, que mostra informações sobre elementos de um tema específico permitindo atualizar a informação.", + "pickTheme": "Escolha um tema abaixo para começar.", + "title": "Bem-vindo(a) ao MapComplete" + }, + "move": { + "cancel": "Cancelar movimento", + "cannotBeMoved": "Este elemento não pode ser movido.", + "confirmMove": "Mover aqui", + "inviteToMove": { + "generic": "Mover este ponto", + "reasonInaccurate": "Melhorar a precisão deste ponto", + "reasonRelocation": "Deslocar este elemento para outro lugar porque ele foi deslocado" + }, + "inviteToMoveAgain": "Mover este ponto novamente", + "isRelation": "Este elemento é uma relação e não pode ser movido", + "isWay": "Este elemento é uma linha. Use outro editor do OpenStreetMap para movê-lo.", + "loginToMove": "Tem de iniciar sessão para mover um ponto", + "moveTitle": "Mover este ponto", + "partOfAWay": "Este elemento faz parte de outra linha. Use outro editor para movê-lo.", + "partOfRelation": "Este elemento faz parte de uma relação. Use outro editor para movê-lo.", + "pointIsMoved": "O ponto foi movido", + "reasons": { + "reasonInaccurate": "A localização deste elemento é imprecisa e deve ser movida alguns metros para o local correto", + "reasonRelocation": "O elemento foi deslocado para um local totalmente diferente" + }, + "selectReason": "Qual o motivo para mover este objeto?", + "whyMove": "Por que quer mudar este ponto?", + "zoomInFurther": "Amplie mais para confirmar a ação de mover" + }, + "multi_apply": { + "autoApply": "Ao alterar os atributos {attr_names}, estes atributos serão alterados automaticamente em {count} outros objetos também" + }, + "reviews": { + "affiliated_reviewer_warning": "(avaliação de afiliado)", + "attribution": "As avaliações são fornecidas por Mangrove Reviews e estão disponíveis sob a licença CC-BY 4.0.", + "i_am_affiliated": "Eu sou afiliado a este objeto

Marque isto se for proprietário, criador, funcionário…
", + "name_required": "É necessário um nome para mostrar e criar avaliações", + "no_rating": "Nenhuma classificação dada", + "no_reviews_yet": "Ainda não existem avaliações. Seja o primeiro a escrever uma e ajude a abrir os dados e os negócios!", + "plz_login": "Inicie a sessão para deixar uma avaliação", + "posting_as": "Publicar como", + "saved": "Avaliação guardada. Obrigado por partilhar!", + "saving_review": "A guardar…", + "title": "{count} avaliações", + "title_singular": "Uma avaliação", + "tos": "Se criar uma avaliação, concorda com os termos do serviço e a política de privacidade de Mangrove.reviews", + "write_a_comment": "Deixar uma avaliação…" + }, + "split": { + "cancel": "Cancelar", + "hasBeenSplit": "Esta linha foi dividida", + "inviteToSplit": "Dividir esta estrada em segmentos mais pequenos. Isto permite atribuir propriedades diferentes a várias partes da estrada.", + "loginToSplit": "Tem de estar autenticado para dividir uma estrada", + "split": "Dividir", + "splitTitle": "Escolha no mapa onde dividir esta estrada" } - } -} +} \ No newline at end of file diff --git a/langs/pt_BR.json b/langs/pt_BR.json index c6944abce7..0e393c85e5 100644 --- a/langs/pt_BR.json +++ b/langs/pt_BR.json @@ -1,157 +1,157 @@ { - "image": { - "respectPrivacy": "Não fotografe pessoas e nem placas de veículos. Não faça upload do Google Maps, Google Streetview ou outras fontes protegidas por direitos autorais.", - "ccb": "sob a licença CC-BY", - "ccbs": "sob a licença CC-BY-SA", - "cco": "no domínio público", - "willBePublished": "Sua imagem será publicada: ", - "pleaseLogin": "Faça login para adicionar uma imagem", - "uploadingMultiple": "Fazendo upload de {count} imagens…", - "uploadingPicture": "Enviando sua imagem…", - "addPicture": "Adicionar imagem", - "isDeleted": "Excluída", - "doDelete": "Remover imagem", - "dontDelete": "Cancelar", - "uploadDone": "Sua foto foi adicionada. Obrigado por ajudar!", - "uploadFailed": "Não foi possível enviar sua foto. Você está conectado à Internet e permite APIs de terceiros? O navegador Brave ou o plugin uMatrix podem bloqueá-los." - }, - "centerMessage": { - "ready": "Concluído!", - "zoomIn": "Amplie para ver ou editar os dados", - "loadingData": "Carregando dados…", - "retrying": "Falha ao carregar dados. Tentando novamente em {count} segundos…" - }, - "general": { - "questions": { - "phoneNumberOf": "Qual é o número de telefone de {category}?", - "emailIs": "O endereço de e-mail deste {category} é {email}", - "emailOf": "Qual é o endereço de e-mail de {category}?", - "websiteIs": "Site: {website}", - "websiteOf": "Qual é o site de {category}?", - "phoneNumberIs": "O número de telefone deste {category} é {phone}" + "centerMessage": { + "loadingData": "Carregando dados…", + "ready": "Concluído!", + "retrying": "Falha ao carregar dados. Tentando novamente em {count} segundos…", + "zoomIn": "Amplie para ver ou editar os dados" }, - "noNameCategory": "{category} sem nome", - "nameInlineQuestion": "O nome desta {category} é $$$", - "about": "Edite e adicione facilmente o OpenStreetMap para um determinado tema", - "pickLanguage": "Escolha um idioma: ", - "add": { - "addNew": "Adicione uma nova {category} aqui", - "confirmButton": "Adicione uma {category} aqui.
Sua adição é visível para todos
", - "layerNotEnabled": "A camada {layer} não está habilitada. Habilite esta camada para adicionar um ponto", - "openLayerControl": "Abra a caixa de controle da camada", - "confirmIntro": "

Adicionar um {title} aqui?

O ponto que você criar aqui será visível para todos. Por favor, só adicione coisas ao mapa se elas realmente existirem. Muitos aplicativos usam esses dados.", - "stillLoading": "Os dados ainda estão sendo carregados. Aguarde um pouco antes de adicionar um novo ponto.", - "zoomInFurther": "Aumente mais o zoom para adicionar um ponto.", - "pleaseLogin": "Por favor, faça o login para adicionar um novo ponto", - "intro": "Você clicou em algum lugar onde ainda não há dados conhecidos.
", - "title": "Adicionar um novo ponto?" + "favourite": { + "loginNeeded": "

Entrar

Um layout pessoal está disponível apenas para usuários do OpenStreetMap", + "panelIntro": "

Seu tema pessoal

Ative suas camadas favoritas de todos os temas oficiais", + "reload": "Recarregar dados" }, - "osmLinkTooltip": "Veja este objeto no OpenStreetMap para histórico e mais opções de edição", - "number": "número", - "skippedQuestions": "Algumas perguntas foram puladas", - "skip": "Pule esta pergunta", - "oneSkippedQuestion": "Uma pergunta foi pulada", - "cancel": "Cancelar", - "save": "Salvar", - "returnToTheMap": "Voltar ao mapa", - "search": { - "error": "Algo deu errado…", - "nothing": "Nada encontrado…", - "searching": "Procurando…", - "search": "Pesquise um local" + "general": { + "about": "Edite e adicione facilmente o OpenStreetMap para um determinado tema", + "aboutMapcomplete": "

Sobre o MapComplete

Com o MapComplete, você pode enriquecer o OpenStreetMap com informações sobre umúnico tema.Responda a algumas perguntas e, em minutos, suas contribuições estarão disponíveis em todo o mundo! Omantenedor do temadefine elementos, questões e linguagens para o tema.

Saiba mais

MapComplete sempreoferece a próxima etapapara saber mais sobre o OpenStreetMap.

  • Quando incorporado em um site, o iframe vincula-se a um MapComplete em tela inteira
  • A versão em tela inteira oferece informações sobre o OpenStreetMap
  • A visualização funciona sem login, mas a edição requer um login do OSM.
  • Se você não estiver conectado, será solicitado que você faça o login
  • Depois de responder a uma única pergunta, você pode adicionar novos aponta para o mapa
  • Depois de um tempo, as tags OSM reais são mostradas, posteriormente vinculadas ao wiki


Você percebeuum problema? Você tem umasolicitação de recurso ? Querajudar a traduzir? Acesse o código-fonteou rastreador de problemas.

Quer verseu progresso? Siga a contagem de edição emOsmCha.

", + "add": { + "addNew": "Adicione uma nova {category} aqui", + "confirmButton": "Adicione uma {category} aqui.
Sua adição é visível para todos
", + "confirmIntro": "

Adicionar um {title} aqui?

O ponto que você criar aqui será visível para todos. Por favor, só adicione coisas ao mapa se elas realmente existirem. Muitos aplicativos usam esses dados.", + "intro": "Você clicou em algum lugar onde ainda não há dados conhecidos.
", + "layerNotEnabled": "A camada {layer} não está habilitada. Habilite esta camada para adicionar um ponto", + "openLayerControl": "Abra a caixa de controle da camada", + "pleaseLogin": "Por favor, faça o login para adicionar um novo ponto", + "stillLoading": "Os dados ainda estão sendo carregados. Aguarde um pouco antes de adicionar um novo ponto.", + "title": "Adicionar um novo ponto?", + "zoomInFurther": "Aumente mais o zoom para adicionar um ponto." + }, + "backgroundMap": "Mapa de fundo", + "cancel": "Cancelar", + "customThemeIntro": "

Temas personalizados

Esses são temas gerados pelo usuário visitados anteriormente.", + "fewChangesBefore": "Por favor, responda algumas perguntas de pontos existentes antes de adicionar um novo ponto.", + "getStartedLogin": "Entrar com OpenStreetMap para começar", + "getStartedNewAccount": " ou crie uma nova conta", + "goToInbox": "Abrir mensagens", + "layerSelection": { + "title": "Selecionar camadas", + "zoomInToSeeThisLayer": "Amplie para ver esta camada" + }, + "loginToStart": "Faça login para responder a esta pergunta", + "loginWithOpenStreetMap": "Entrar com OpenStreetMap", + "nameInlineQuestion": "O nome desta {category} é $$$", + "noNameCategory": "{category} sem nome", + "noTagsSelected": "Nenhuma tag selecionada", + "number": "número", + "oneSkippedQuestion": "Uma pergunta foi pulada", + "opening_hours": { + "closed_permanently": "Fechado por tempo desconhecido", + "closed_until": "Fechado até {date}", + "error_loading": "Erro: não foi possível visualizar este horário de funcionamento.", + "not_all_rules_parsed": "O horário de funcionamento desta loja é complicado. As seguintes regras são ignoradas na entrada:", + "openTill": "até", + "open_24_7": "Aberto 24 horas por dia", + "open_during_ph": "Durante um feriado, esse serviço está", + "opensAt": "desde", + "ph_closed": "fechado", + "ph_not_known": " ", + "ph_open": "aberto" + }, + "osmLinkTooltip": "Veja este objeto no OpenStreetMap para histórico e mais opções de edição", + "pickLanguage": "Escolha um idioma: ", + "questions": { + "emailIs": "O endereço de e-mail deste {category} é {email}", + "emailOf": "Qual é o endereço de e-mail de {category}?", + "phoneNumberIs": "O número de telefone deste {category} é {phone}", + "phoneNumberOf": "Qual é o número de telefone de {category}?", + "websiteIs": "Site: {website}", + "websiteOf": "Qual é o site de {category}?" + }, + "readYourMessages": "Por favor, leia todas as suas mensagens do OpenStreetMap antes de adicionar um novo ponto.", + "returnToTheMap": "Voltar ao mapa", + "save": "Salvar", + "search": { + "error": "Algo deu errado…", + "nothing": "Nada encontrado…", + "search": "Pesquise um local", + "searching": "Procurando…" + }, + "sharescreen": { + "addToHomeScreen": "

Adicionar à sua tela inicial

Você pode adicionar facilmente este site à tela inicial do smartphone para uma sensação nativa. Clique no botão 'adicionar à tela inicial' na barra de URL para fazer isso.", + "copiedToClipboard": "Link copiado para a área de transferência", + "editThemeDescription": "Adicione ou altere perguntas a este tema do mapa", + "editThisTheme": "Editar neste tema", + "embedIntro": "

Incorpore em seu site

Por favor, incorpore este mapa em seu site.
Nós o encorajamos a fazer isso - você nem precisa pedir permissão.
É gratuito e sempre será. Quanto mais pessoas usarem isso, mais valioso se tornará.", + "fsAddNew": "Habilite o botão 'adicionar novo POI'", + "fsGeolocation": "Ative o botão 'localizar-me geograficamente' (apenas para celular)", + "fsIncludeCurrentBackgroundMap": "Incluir a escolha de fundo atual {name}", + "fsIncludeCurrentLayers": "Incluir as opções de camada atuais", + "fsIncludeCurrentLocation": "Incluir localização atual", + "fsLayerControlToggle": "Iniciar com o controle de camada expandido", + "fsLayers": "Ativar o controle de camada", + "fsSearch": "Ativar a barra de pesquisa", + "fsUserbadge": "Habilite o botão de login", + "fsWelcomeMessage": "Mostra o pop-up da mensagem de boas-vindas e as guias associadas", + "intro": "

Compartilhe este mapa

Compartilhe este mapa copiando o link abaixo e enviando-o para amigos e familiares:", + "thanksForSharing": "Obrigado por compartilhar!" + }, + "skip": "Pule esta pergunta", + "skippedQuestions": "Algumas perguntas foram puladas", + "weekdays": { + "abbreviations": { + "friday": "Sex", + "monday": "Seg", + "saturday": "Sab", + "sunday": "Dom", + "thursday": "Qui", + "tuesday": "Ter", + "wednesday": "Qua" + }, + "friday": "Sexta", + "monday": "Segunda", + "saturday": "Sábado", + "sunday": "Domingo", + "thursday": "Quinta", + "tuesday": "Terça", + "wednesday": "Quanta" + }, + "welcomeBack": "Você está logado, seja bem-vindo de volta!" }, - "loginToStart": "Faça login para responder a esta pergunta", - "welcomeBack": "Você está logado, seja bem-vindo de volta!", - "loginWithOpenStreetMap": "Entrar com OpenStreetMap", - "opening_hours": { - "ph_open": "aberto", - "ph_closed": "fechado", - "ph_not_known": " ", - "open_24_7": "Aberto 24 horas por dia", - "closed_permanently": "Fechado por tempo desconhecido", - "closed_until": "Fechado até {date}", - "not_all_rules_parsed": "O horário de funcionamento desta loja é complicado. As seguintes regras são ignoradas na entrada:", - "openTill": "até", - "opensAt": "desde", - "open_during_ph": "Durante um feriado, esse serviço está", - "error_loading": "Erro: não foi possível visualizar este horário de funcionamento." + "image": { + "addPicture": "Adicionar imagem", + "ccb": "sob a licença CC-BY", + "ccbs": "sob a licença CC-BY-SA", + "cco": "no domínio público", + "doDelete": "Remover imagem", + "dontDelete": "Cancelar", + "isDeleted": "Excluída", + "pleaseLogin": "Faça login para adicionar uma imagem", + "respectPrivacy": "Não fotografe pessoas e nem placas de veículos. Não faça upload do Google Maps, Google Streetview ou outras fontes protegidas por direitos autorais.", + "uploadDone": "Sua foto foi adicionada. Obrigado por ajudar!", + "uploadFailed": "Não foi possível enviar sua foto. Você está conectado à Internet e permite APIs de terceiros? O navegador Brave ou o plugin uMatrix podem bloqueá-los.", + "uploadingMultiple": "Fazendo upload de {count} imagens…", + "uploadingPicture": "Enviando sua imagem…", + "willBePublished": "Sua imagem será publicada: " }, - "weekdays": { - "sunday": "Domingo", - "saturday": "Sábado", - "friday": "Sexta", - "thursday": "Quinta", - "wednesday": "Quanta", - "tuesday": "Terça", - "monday": "Segunda", - "abbreviations": { - "sunday": "Dom", - "saturday": "Sab", - "friday": "Sex", - "thursday": "Qui", - "wednesday": "Qua", - "tuesday": "Ter", - "monday": "Seg" - } + "index": { + "#": "Estes textos são mostrados acima dos botões do tema quando nenhum tema é carregado", + "intro": "MapComplete é um visualizador e editor do OpenStreetMap, que mostra informações sobre um tema específico.", + "pickTheme": "Escolha um tema abaixo para começar.", + "title": "Bem-vindo(a) ao MapComplete" }, - "layerSelection": { - "title": "Selecionar camadas", - "zoomInToSeeThisLayer": "Amplie para ver esta camada" - }, - "backgroundMap": "Mapa de fundo", - "customThemeIntro": "

Temas personalizados

Esses são temas gerados pelo usuário visitados anteriormente.", - "noTagsSelected": "Nenhuma tag selecionada", - "getStartedNewAccount": " ou crie uma nova conta", - "getStartedLogin": "Entrar com OpenStreetMap para começar", - "goToInbox": "Abrir mensagens", - "fewChangesBefore": "Por favor, responda algumas perguntas de pontos existentes antes de adicionar um novo ponto.", - "readYourMessages": "Por favor, leia todas as suas mensagens do OpenStreetMap antes de adicionar um novo ponto.", - "sharescreen": { - "fsIncludeCurrentLocation": "Incluir localização atual", - "fsIncludeCurrentLayers": "Incluir as opções de camada atuais", - "fsIncludeCurrentBackgroundMap": "Incluir a escolha de fundo atual {name}", - "fsGeolocation": "Ative o botão 'localizar-me geograficamente' (apenas para celular)", - "fsAddNew": "Habilite o botão 'adicionar novo POI'", - "fsLayerControlToggle": "Iniciar com o controle de camada expandido", - "fsLayers": "Ativar o controle de camada", - "fsWelcomeMessage": "Mostra o pop-up da mensagem de boas-vindas e as guias associadas", - "fsSearch": "Ativar a barra de pesquisa", - "fsUserbadge": "Habilite o botão de login", - "editThemeDescription": "Adicione ou altere perguntas a este tema do mapa", - "editThisTheme": "Editar neste tema", - "thanksForSharing": "Obrigado por compartilhar!", - "copiedToClipboard": "Link copiado para a área de transferência", - "addToHomeScreen": "

Adicionar à sua tela inicial

Você pode adicionar facilmente este site à tela inicial do smartphone para uma sensação nativa. Clique no botão 'adicionar à tela inicial' na barra de URL para fazer isso.", - "intro": "

Compartilhe este mapa

Compartilhe este mapa copiando o link abaixo e enviando-o para amigos e familiares:", - "embedIntro": "

Incorpore em seu site

Por favor, incorpore este mapa em seu site.
Nós o encorajamos a fazer isso - você nem precisa pedir permissão.
É gratuito e sempre será. Quanto mais pessoas usarem isso, mais valioso se tornará." - }, - "aboutMapcomplete": "

Sobre o MapComplete

Com o MapComplete, você pode enriquecer o OpenStreetMap com informações sobre umúnico tema.Responda a algumas perguntas e, em minutos, suas contribuições estarão disponíveis em todo o mundo! Omantenedor do temadefine elementos, questões e linguagens para o tema.

Saiba mais

MapComplete sempreoferece a próxima etapapara saber mais sobre o OpenStreetMap.

  • Quando incorporado em um site, o iframe vincula-se a um MapComplete em tela inteira
  • A versão em tela inteira oferece informações sobre o OpenStreetMap
  • A visualização funciona sem login, mas a edição requer um login do OSM.
  • Se você não estiver conectado, será solicitado que você faça o login
  • Depois de responder a uma única pergunta, você pode adicionar novos aponta para o mapa
  • Depois de um tempo, as tags OSM reais são mostradas, posteriormente vinculadas ao wiki


Você percebeuum problema? Você tem umasolicitação de recurso ? Querajudar a traduzir? Acesse o código-fonteou rastreador de problemas.

Quer verseu progresso? Siga a contagem de edição emOsmCha.

" - }, - "index": { - "pickTheme": "Escolha um tema abaixo para começar.", - "intro": "MapComplete é um visualizador e editor do OpenStreetMap, que mostra informações sobre um tema específico.", - "title": "Bem-vindo(a) ao MapComplete", - "#": "Estes textos são mostrados acima dos botões do tema quando nenhum tema é carregado" - }, - "reviews": { - "plz_login": "Entrar para deixar um comentário", - "saved": "Comentário salvo. Obrigado por compartilhar!", - "saving_review": "Salvando…", - "i_am_affiliated": "Eu sou afiliado a este objeto

Verifique se você é proprietário, criador, funcionário, …
", - "posting_as": "Postando como", - "no_rating": "Nenhuma classificação dada", - "write_a_comment": "Deixe um comentário…", - "no_reviews_yet": "Não há comentários ainda. Seja o primeiro a escrever um e ajude a abrir os dados e os negócios!", - "name_required": "É necessário um nome para exibir e criar comentários", - "title_singular": "Um comentário", - "title": "{count} comentários", - "tos": "Se você criar um comentário, você concorda com o TOS e a política de privacidade de Mangrove.reviews ", - "affiliated_reviewer_warning": "(Revisão de afiliados)", - "attribution": "As resenhas são fornecidas por Mangrove Reviews e estão disponíveis em CC-BY 4.0." - }, - "favourite": { - "reload": "Recarregar dados", - "panelIntro": "

Seu tema pessoal

Ative suas camadas favoritas de todos os temas oficiais", - "loginNeeded": "

Entrar

Um layout pessoal está disponível apenas para usuários do OpenStreetMap" - } -} + "reviews": { + "affiliated_reviewer_warning": "(Revisão de afiliados)", + "attribution": "As resenhas são fornecidas por Mangrove Reviews e estão disponíveis em CC-BY 4.0.", + "i_am_affiliated": "Eu sou afiliado a este objeto

Verifique se você é proprietário, criador, funcionário, …
", + "name_required": "É necessário um nome para exibir e criar comentários", + "no_rating": "Nenhuma classificação dada", + "no_reviews_yet": "Não há comentários ainda. Seja o primeiro a escrever um e ajude a abrir os dados e os negócios!", + "plz_login": "Entrar para deixar um comentário", + "posting_as": "Postando como", + "saved": "Comentário salvo. Obrigado por compartilhar!", + "saving_review": "Salvando…", + "title": "{count} comentários", + "title_singular": "Um comentário", + "tos": "Se você criar um comentário, você concorda com o TOS e a política de privacidade de Mangrove.reviews ", + "write_a_comment": "Deixe um comentário…" + } +} \ No newline at end of file diff --git a/langs/ru.json b/langs/ru.json index 33513f764e..c6a969a5db 100644 --- a/langs/ru.json +++ b/langs/ru.json @@ -1,175 +1,194 @@ { - "general": { - "questions": { - "emailIs": "Адрес электронной почты у {category}: {email}", - "phoneNumberIs": "Телефонный номер {category}: {phone}", - "emailOf": "Какой адрес электронной почты у {category}?", - "websiteIs": "Сайт: {website}", - "websiteOf": "Какой сайт у {category}?", - "phoneNumberOf": "Какой номер телефона у {category}?" + "centerMessage": { + "loadingData": "Загружаются данные…", + "ready": "Готово!", + "retrying": "Не удалось загрузить данные. Попробуем ещё раз через {count} секунд…", + "zoomIn": "Приблизьте чтобы посмотреть или изменить данные" }, - "nameInlineQuestion": "Название {category} — $$$", - "noNameCategory": "{category} без имени", - "about": "С лёгкостью редактируйте и дополняйте OpenStreetMap на определённую тему", - "pickLanguage": "Выберите язык: ", - "add": { - "layerNotEnabled": "Слой {layer} не включён. Включите этот слой чтобы добавить точку", - "openLayerControl": "Открыть панель управления слоями", - "confirmButton": "Добавить {category} сюда.
Ваш вклад будет виден каждому
", - "confirmIntro": "

Добавить {title} сюда?

Точка будет видна всем. Пожалуйста, добавляйте только то, что действительно существует. Много приложений используют эти данные.", - "stillLoading": "Данные ещё загружаются. Пожалуйста, немного подождите прежде чем добавлять новую точку.", - "zoomInFurther": "Приблизьте ещё чтобы добавить точку.", - "pleaseLogin": "Пожалуйста, войдите чтобы добавить новую точку", - "intro": "Вы нажали туда, где ещё нет данных.
", - "title": "Добавить новую точку?", - "addNew": "Добавить новую {category} здесь" + "delete": { + "cancel": "Отмена", + "cannotBeDeleted": "Эта возможность не может быть удалена", + "delete": "Удалить", + "isDeleted": "Эта функция удалена", + "loginToDelete": "Вы должны войти в профиль чтобы удалить дочку", + "safeDelete": "Эта точка может быть безопасно удалена." }, - "osmLinkTooltip": "Посмотрите этот объект на OpenStreetMap чтобы увидеть его историю или отредактировать", - "number": "номер", - "skippedQuestions": "Несколько вопросов пропущены", - "oneSkippedQuestion": "Вопрос пропущен", - "skip": "Пропустить вопрос", - "cancel": "Отмена", - "save": "Сохранить", - "returnToTheMap": "Вернуться на карту", - "search": { - "error": "Что-то пошло не так…", - "nothing": "Ничего не найдено…", - "searching": "Поиск…", - "search": "Найти место" + "favourite": { + "loginNeeded": "

Вход

Личная раскладка доступна только пользователям OpenStreetMap", + "panelIntro": "

Ваша личная тема

Активируйте свои любимые слои из официальных тем", + "reload": "Обновить данные" }, - "loginToStart": "Войдите, чтобы ответить на этот вопрос", - "welcomeBack": "Вы вошли, с возвращением!", - "loginWithOpenStreetMap": "Войти с помощью OpenStreetMap", - "opening_hours": { - "ph_not_known": " ", - "ph_open": "открыта", - "ph_closed": "закрыта", - "open_during_ph": "В праздничные дни эта точка", - "open_24_7": "Открыто круглосуточно", - "closed_permanently": "Закрыто на неизвестный срок", - "closed_until": "Закрыто до {date}", - "not_all_rules_parsed": "Часы работы этого магазина сложны. В элементе ввода игнорируются следующие правила:", - "openTill": "до", - "opensAt": "с", - "error_loading": "Ошибка: не удалось визуализировать эти часы работы." + "general": { + "about": "С лёгкостью редактируйте и дополняйте OpenStreetMap на определённую тему", + "aboutMapcomplete": "

О MapComplete

С помощью MapComplete вы можете обогатить OpenStreetMap информацией по одной теме. Ответьте на несколько вопросов, и через несколько минут ваши материалы будут доступны по всему миру! Сопровождающий темы определяет элементы, вопросы и языки для темы.

Узнайте больше

MapComplete всегда предлагает следующий шаг, чтобы узнать больше об OpenStreetMap.

  • При встраивании в веб-сайт iframe ссылается на полноэкранную версию MapComplete
  • Полноэкранная версия предлагает информацию об OpenStreetMap
  • Просмотр работает без входа, но для редактирования требуется вход в OSM.
  • Если вы не вошли в систему, вас попросят войти
  • Ответив на один вопрос, вы можете добавлять новые точки на карту
  • Через некоторое время отображаются актуальные OSM-метки с последующей ссылкой на вики


Вы заметили проблему? У вас есть запрос на функциональность? Хотите помочь с переводом? Зайдите на репозиторий с исходным кодом или трекер проблем.

Хотите увидеть свой прогресс? Следите за количеством правок на OsmCha.

", + "add": { + "addNew": "Добавить новую {category} здесь", + "confirmButton": "Добавить {category} сюда.
Ваш вклад будет виден каждому
", + "confirmIntro": "

Добавить {title} сюда?

Точка будет видна всем. Пожалуйста, добавляйте только то, что действительно существует. Много приложений используют эти данные.", + "intro": "Вы нажали туда, где ещё нет данных.
", + "layerNotEnabled": "Слой {layer} не включён. Включите этот слой чтобы добавить точку", + "openLayerControl": "Открыть панель управления слоями", + "pleaseLogin": "Пожалуйста, войдите чтобы добавить новую точку", + "stillLoading": "Данные ещё загружаются. Пожалуйста, немного подождите прежде чем добавлять новую точку.", + "title": "Добавить новую точку?", + "zoomInFurther": "Приблизьте ещё чтобы добавить точку." + }, + "attribution": { + "attributionContent": "

Все данные предоставлены OpenStreetMap, свободное повторное использование согласно Open DataBase License.

", + "attributionTitle": "Уведомление об авторстве", + "codeContributionsBy": "MapComplete был создан {contributors} и ещё {hiddenCount} соавторами ", + "iconAttribution": { + "title": "Используемые значки" + }, + "mapContributionsBy": "Текущие видимые данные имеют правки, сделанные {contributors}", + "mapContributionsByAndHidden": "Текущие видимые данные имеют правки, сделанные {contributors} и ещё {hiddenCount} пользователями", + "themeBy": "Тема поддерживается {author}" + }, + "backgroundMap": "Фоновая карта", + "cancel": "Отмена", + "customThemeIntro": "

Пользовательские темы

Это ранее просмотренные темы, созданные пользователями.", + "fewChangesBefore": "Пожалуйста, ответьте на несколько вопросов о существующих точках, прежде чем добавить новую точку.", + "getStartedLogin": "Войти с помощью OpenStreetMap, чтобы начать работу", + "getStartedNewAccount": " или создать новую учетную запись", + "goToInbox": "Открыть входящие сообщения", + "layerSelection": { + "title": "Выберите слои", + "zoomInToSeeThisLayer": "Увеличьте масштаб, чтобы увидеть этот слой" + }, + "loginToStart": "Войдите, чтобы ответить на этот вопрос", + "loginWithOpenStreetMap": "Войти с помощью OpenStreetMap", + "morescreen": { + "createYourOwnTheme": "Создать собственную тему MapComplete с чистого листа", + "intro": "

Больше тематических карт?

Нравится собирать геоданные?
Можете посмотреть другие темы.", + "requestATheme": "Если вам нужен особенный квест, запросите его в issue-трекере", + "streetcomplete": "Другое, похожее приложение — StreetComplete." + }, + "nameInlineQuestion": "Название {category} — $$$", + "noNameCategory": "{category} без имени", + "noTagsSelected": "Теги не выбраны", + "number": "номер", + "oneSkippedQuestion": "Вопрос пропущен", + "openStreetMapIntro": "

Свободная карта

Было бы здорово если бы была одна карта, которую каждый может свободно использовать и редактировать? Использовать как общее хранилище для всей гео-информации? Тогда, все сайты с разной, неполной и несовместимой информацией (которая обычно устарела) будут больше не нужны.

OpenStreetMap такая карта. Данные карты могу быть свободно использованы (с аннотацией и публикацией изменений к данным). Более того, каждый может свободно добавлять информацию и исправлять ошибки. Этот сайт также использует OpenStreetMap. Все данные берутся оттуда, а ваши ответы и исправления отправляются обратно туда.

Огромное количество людей уже использует OpenStreetMap: Organic Maps, OsmAnd, а также карты в Facebook, Instagram, Apple-карты и Bing-карты (частично) используют OpenStreetMap. Если вы что-то измените здесь, это также будет отражено в этих приложениях - после их следующего обновления!

", + "opening_hours": { + "closed_permanently": "Закрыто на неизвестный срок", + "closed_until": "Закрыто до {date}", + "error_loading": "Ошибка: не удалось визуализировать эти часы работы.", + "not_all_rules_parsed": "Часы работы этого магазина сложны. В элементе ввода игнорируются следующие правила:", + "openTill": "до", + "open_24_7": "Открыто круглосуточно", + "open_during_ph": "В праздничные дни эта точка", + "opensAt": "с", + "ph_closed": "закрыта", + "ph_not_known": " ", + "ph_open": "открыта" + }, + "osmLinkTooltip": "Посмотрите этот объект на OpenStreetMap чтобы увидеть его историю или отредактировать", + "pickLanguage": "Выберите язык: ", + "questions": { + "emailIs": "Адрес электронной почты у {category}: {email}", + "emailOf": "Какой адрес электронной почты у {category}?", + "phoneNumberIs": "Телефонный номер {category}: {phone}", + "phoneNumberOf": "Какой номер телефона у {category}?", + "websiteIs": "Сайт: {website}", + "websiteOf": "Какой сайт у {category}?" + }, + "readYourMessages": "Пожалуйста, прочитайте все ваши сообщения на сайте OpenStreetMap перед тем как добавлять новую точку.", + "returnToTheMap": "Вернуться на карту", + "save": "Сохранить", + "search": { + "error": "Что-то пошло не так…", + "nothing": "Ничего не найдено…", + "search": "Найти место", + "searching": "Поиск…" + }, + "sharescreen": { + "addToHomeScreen": "

Добавить на домашний экран

Вы можете легко добавить этот сайт на домашний экран вашего смартфона. Для этого нажмите кнопку \"Добавить на главный экран\" в строке URL.", + "copiedToClipboard": "Ссылка скопирована в буфер обмена", + "editThemeDescription": "Добавить или изменить вопросы к этой теме карты", + "editThisTheme": "Редактировать эту тему", + "embedIntro": "

Встроить на свой сайт

Пожалуйста, вставьте эту карту на свой сайт.
Мы призываем вас сделать это - вам даже не нужно спрашивать разрешения.
Карта бесплатна и всегда будет бесплатной. Чем больше людей пользуются ею, тем более ценной она становится.", + "fsAddNew": "Включить кнопку \"добавить новую точку интереса\"", + "fsGeolocation": "Включить кнопку \"найди меня\" (только в мобильной версии)", + "fsIncludeCurrentBackgroundMap": "Включить текущий фоновый слой {name}", + "fsIncludeCurrentLayers": "Включить текущие выбранные слои", + "fsIncludeCurrentLocation": "Включить текущее местоположение карты", + "fsLayerControlToggle": "Открыть панель выбора слоя", + "fsLayers": "Включить выбор слоя карты", + "fsSearch": "Включить строку поиска", + "fsUserbadge": "Включить кнопку входа в систему", + "fsWelcomeMessage": "Показать всплывающее окно с приветствием и соответствующие вкладки", + "intro": "

Поделиться этой картой

Поделитесь этой картой, скопировав ссылку ниже и отправив её друзьям и близким:", + "thanksForSharing": "Спасибо, что поделились!" + }, + "skip": "Пропустить вопрос", + "skippedQuestions": "Несколько вопросов пропущены", + "weekdays": { + "abbreviations": { + "friday": "Пт", + "monday": "Пн", + "saturday": "Сб", + "sunday": "Вс", + "thursday": "Чт", + "tuesday": "Вт", + "wednesday": "Ср" + }, + "friday": "Пятница", + "monday": "Понедельник", + "saturday": "Суббота", + "sunday": "Воскресенье", + "thursday": "Четверг", + "tuesday": "Вторник", + "wednesday": "Среда" + }, + "welcomeBack": "Вы вошли, с возвращением!" }, - "weekdays": { - "sunday": "Воскресенье", - "saturday": "Суббота", - "friday": "Пятница", - "thursday": "Четверг", - "wednesday": "Среда", - "tuesday": "Вторник", - "monday": "Понедельник", - "abbreviations": { - "sunday": "Вс", - "saturday": "Сб", - "friday": "Пт", - "thursday": "Чт", - "wednesday": "Ср", - "tuesday": "Вт", - "monday": "Пн" - } + "image": { + "addPicture": "Добавить изображение", + "ccb": "под лицензией CC-BY", + "ccbs": "под лицензией CC-BY-SA", + "cco": "в открытом доступе", + "doDelete": "Удалить изображение", + "dontDelete": "Отмена", + "isDeleted": "Удалено", + "pleaseLogin": "Пожалуйста, войдите в систему, чтобы добавить изображение", + "respectPrivacy": "Не фотографируйте людей и номерные знаки. Не загружайте снимки Google Maps, Google Street View и иные источники с закрытой лицензией.", + "uploadDone": "Ваше изображение добавлено. Спасибо за помощь!", + "uploadFailed": "Не удалось загрузить изображение. Проверьте, есть ли у вас доступ в Интернет и разрешены ли сторонние API? Браузеры Brave и UMatrix могут блокировать их.", + "uploadMultipleDone": "{count} изображений добавлено. Спасибо за помощь!", + "uploadingMultiple": "Загружаем {count} изображений…", + "uploadingPicture": "Загружаем изображение…", + "willBePublished": "Ваше изображение будет опубликовано " }, - "layerSelection": { - "title": "Выберите слои", - "zoomInToSeeThisLayer": "Увеличьте масштаб, чтобы увидеть этот слой" + "index": { + "#": "Эти надписи отображаются над кнопками тем, когда тема не загружена", + "featuredThemeTitle": "Интересное на этой неделе", + "intro": "MapComplete - это редактор OpenStreetMap, который показывает информацию с разделением по темам.", + "logIn": "Войдите чтобы увидеть другие посещённые темы", + "pickTheme": "Выберите тему ниже, чтобы начать.", + "title": "Добро пожаловать в MapComplete" }, - "backgroundMap": "Фоновая карта", - "aboutMapcomplete": "

О MapComplete

С помощью MapComplete вы можете обогатить OpenStreetMap информацией по одной теме. Ответьте на несколько вопросов, и через несколько минут ваши материалы будут доступны по всему миру! Сопровождающий темы определяет элементы, вопросы и языки для темы.

Узнайте больше

MapComplete всегда предлагает следующий шаг, чтобы узнать больше об OpenStreetMap.

  • При встраивании в веб-сайт iframe ссылается на полноэкранную версию MapComplete
  • Полноэкранная версия предлагает информацию об OpenStreetMap
  • Просмотр работает без входа, но для редактирования требуется вход в OSM.
  • Если вы не вошли в систему, вас попросят войти
  • Ответив на один вопрос, вы можете добавлять новые точки на карту
  • Через некоторое время отображаются актуальные OSM-метки с последующей ссылкой на вики


Вы заметили проблему? У вас есть запрос на функциональность? Хотите помочь с переводом? Зайдите на репозиторий с исходным кодом или трекер проблем.

Хотите увидеть свой прогресс? Следите за количеством правок на OsmCha.

", - "customThemeIntro": "

Пользовательские темы

Это ранее просмотренные темы, созданные пользователями.", - "noTagsSelected": "Теги не выбраны", - "getStartedNewAccount": " или создать новую учетную запись", - "getStartedLogin": "Войти с помощью OpenStreetMap, чтобы начать работу", - "goToInbox": "Открыть входящие сообщения", - "fewChangesBefore": "Пожалуйста, ответьте на несколько вопросов о существующих точках, прежде чем добавить новую точку.", - "readYourMessages": "Пожалуйста, прочитайте все ваши сообщения на сайте OpenStreetMap перед тем как добавлять новую точку.", - "morescreen": { - "createYourOwnTheme": "Создать собственную тему MapComplete с чистого листа", - "streetcomplete": "Другое, похожее приложение — StreetComplete.", - "requestATheme": "Если вам нужен особенный квест, запросите его в issue-трекере", - "intro": "

Больше тематических карт?

Нравится собирать геоданные?
Можете посмотреть другие темы." + "reviews": { + "affiliated_reviewer_warning": "(Отзыв лица, связанного с заведением)", + "attribution": "Отзывы созданы на основе Mangrove Reviews и доступны под лицензией CC-BY 4.0.", + "i_am_affiliated": "Я связан с этим объектом
Отметьте если вы создатель, владелец, работник, …", + "name_required": "Необходимо название, чтобы просматривать и создавать отзывы", + "no_rating": "Нет рейтинга", + "no_reviews_yet": "Пока нет отзывов. Оставьте первый отзыв и помогите открытым данным и бизнесу!", + "plz_login": "Войдите, чтобы оставить отзыв", + "posting_as": "Публикация от имени", + "saved": " Отзыв сохранен. Спасибо, что поделились! ", + "saving_review": "Сохранение…", + "title": "{count} отзыв(-ов)", + "title_singular": "Один отзыв", + "tos": "Создавая отзыв, вы соглашаетесь с TOS и политикой конфиденциальности Mangrove.reviews ", + "write_a_comment": "Оставить отзыв…" }, - "sharescreen": { - "fsIncludeCurrentLocation": "Включить текущее местоположение карты", - "fsIncludeCurrentLayers": "Включить текущие выбранные слои", - "fsIncludeCurrentBackgroundMap": "Включить текущий фоновый слой {name}", - "fsGeolocation": "Включить кнопку \"найди меня\" (только в мобильной версии)", - "fsSearch": "Включить строку поиска", - "fsUserbadge": "Включить кнопку входа в систему", - "fsWelcomeMessage": "Показать всплывающее окно с приветствием и соответствующие вкладки", - "fsLayers": "Включить выбор слоя карты", - "fsAddNew": "Включить кнопку \"добавить новую точку интереса\"", - "fsLayerControlToggle": "Открыть панель выбора слоя", - "editThemeDescription": "Добавить или изменить вопросы к этой теме карты", - "editThisTheme": "Редактировать эту тему", - "thanksForSharing": "Спасибо, что поделились!", - "copiedToClipboard": "Ссылка скопирована в буфер обмена", - "embedIntro": "

Встроить на свой сайт

Пожалуйста, вставьте эту карту на свой сайт.
Мы призываем вас сделать это - вам даже не нужно спрашивать разрешения.
Карта бесплатна и всегда будет бесплатной. Чем больше людей пользуются ею, тем более ценной она становится.", - "addToHomeScreen": "

Добавить на домашний экран

Вы можете легко добавить этот сайт на домашний экран вашего смартфона. Для этого нажмите кнопку \"Добавить на главный экран\" в строке URL.", - "intro": "

Поделиться этой картой

Поделитесь этой картой, скопировав ссылку ниже и отправив её друзьям и близким:" - }, - "attribution": { - "codeContributionsBy": "MapComplete был создан {contributors} и ещё {hiddenCount} соавторами ", - "mapContributionsByAndHidden": "Текущие видимые данные имеют правки, сделанные {contributors} и ещё {hiddenCount} пользователями", - "mapContributionsBy": "Текущие видимые данные имеют правки, сделанные {contributors}", - "iconAttribution": { - "title": "Используемые значки" - }, - "themeBy": "Тема поддерживается {author}", - "attributionContent": "

Все данные предоставлены OpenStreetMap, свободное повторное использование согласно Open DataBase License.

", - "attributionTitle": "Уведомление об авторстве" - }, - "openStreetMapIntro": "

Свободная карта

Было бы здорово если бы была одна карта, которую каждый может свободно использовать и редактировать? Использовать как общее хранилище для всей гео-информации? Тогда, все сайты с разной, неполной и несовместимой информацией (которая обычно устарела) будут больше не нужны.

OpenStreetMap такая карта. Данные карты могу быть свободно использованы (с аннотацией и публикацией изменений к данным). Более того, каждый может свободно добавлять информацию и исправлять ошибки. Этот сайт также использует OpenStreetMap. Все данные берутся оттуда, а ваши ответы и исправления отправляются обратно туда.

Огромное количество людей уже использует OpenStreetMap: Organic Maps, OsmAnd, а также карты в Facebook, Instagram, Apple-карты и Bing-карты (частично) используют OpenStreetMap. Если вы что-то измените здесь, это также будет отражено в этих приложениях - после их следующего обновления!

" - }, - "index": { - "pickTheme": "Выберите тему ниже, чтобы начать.", - "#": "Эти надписи отображаются над кнопками тем, когда тема не загружена", - "intro": "MapComplete - это редактор OpenStreetMap, который показывает информацию с разделением по темам.", - "title": "Добро пожаловать в MapComplete" - }, - "centerMessage": { - "retrying": "Не удалось загрузить данные. Попробуем ещё раз через {count} секунд…", - "ready": "Готово!", - "zoomIn": "Приблизьте чтобы посмотреть или изменить данные", - "loadingData": "Загружаются данные…" - }, - "image": { - "isDeleted": "Удалено", - "doDelete": "Удалить изображение", - "dontDelete": "Отмена", - "uploadDone": "Ваше изображение добавлено. Спасибо за помощь!", - "respectPrivacy": "Не фотографируйте людей и номерные знаки. Не загружайте снимки Google Maps, Google Street View и иные источники с закрытой лицензией.", - "uploadFailed": "Не удалось загрузить изображение. Проверьте, есть ли у вас доступ в Интернет и разрешены ли сторонние API? Браузеры Brave и UMatrix могут блокировать их.", - "ccb": "под лицензией CC-BY", - "ccbs": "под лицензией CC-BY-SA", - "cco": "в открытом доступе", - "willBePublished": "Ваше изображение будет опубликовано: ", - "pleaseLogin": "Пожалуйста, войдите в систему, чтобы добавить изображение", - "uploadingMultiple": "Загружаем {count} изображений…", - "uploadingPicture": "Загружаем изображение…", - "addPicture": "Добавить изображение" - }, - "reviews": { - "plz_login": "Войдите, чтобы оставить отзыв", - "attribution": "Отзывы созданы на основе Mangrove Reviews и доступны под лицензией CC-BY 4.0.", - "tos": "Создавая отзыв, вы соглашаетесь с TOS и политикой конфиденциальности Mangrove.reviews ", - "saved": " Отзыв сохранен. Спасибо, что поделились! ", - "saving_review": "Сохранение…", - "affiliated_reviewer_warning": "(Отзыв лица, связанного с заведением)", - "i_am_affiliated": "Я связан с этим объектом
Отметьте если вы создатель, владелец, работник, …", - "posting_as": "Публикация от имени", - "no_rating": "Нет рейтинга", - "write_a_comment": "Оставить отзыв…", - "no_reviews_yet": "Пока нет отзывов. Оставьте первый отзыв и помогите открытым данным и бизнесу!", - "name_required": "Необходимо название, чтобы просматривать и создавать отзывы", - "title_singular": "Один отзыв", - "title": "{count} отзыв(-ов)" - }, - "favourite": { - "reload": "Обновить данные", - "loginNeeded": "

Вход

Личная раскладка доступна только пользователям OpenStreetMap", - "panelIntro": "

Ваша личная тема

Активируйте свои любимые слои из официальных тем" - } -} + "split": { + "cancel": "Отмена", + "hasBeenSplit": "Этот путь был разделён", + "inviteToSplit": "Разделите эту дорогу на маленькие части. Это позволит дпть больше информации частей дороги.", + "loginToSplit": "Вы должны войти в профиль, чтобы разделить дорогу", + "split": "Разделить", + "splitTitle": "Выберите карту на которой хотите разделить дорогу" + } +} \ No newline at end of file diff --git a/langs/shared-questions/ca.json b/langs/shared-questions/ca.json index 0967ef424b..94a028fbb3 100644 --- a/langs/shared-questions/ca.json +++ b/langs/shared-questions/ca.json @@ -1 +1,116 @@ -{} +{ + "shared_questions": { + "description": { + "question": "Hi ha quelcom rellevant que no t'hem preguntat? Afegeix-ho aquí.
No repeteixis informació que ja hi és" + }, + "dog-access": { + "mappings": { + "0": { + "then": "S'accepten gossos" + }, + "1": { + "then": "No s'accepten gossos" + }, + "2": { + "then": "S'accepten gossos però lligats" + }, + "3": { + "then": "S'accepten gossos lliures" + } + }, + "question": "S'accepten gossos en aquest negoci?" + }, + "email": { + "question": "Quina és l'adreça de correu electrònic de {title()}?" + }, + "level": { + "mappings": { + "0": { + "then": "Situat a planta subterrani" + }, + "1": { + "then": "Situat a planta zero" + }, + "2": { + "then": "Situat a planta zero" + }, + "3": { + "then": "Situat a primera planta" + } + }, + "question": "A quina planta està situat aquest element?", + "render": "Situat a la planta {level}" + }, + "opening_hours": { + "question": "Quin és l'horari d'obertura de {title()}?", + "render": "

Horari d'obertura

{opening_hours_table(opening_hours)}" + }, + "payment-options": { + "mappings": { + "0": { + "then": "S'accepten diners" + }, + "1": { + "then": "S'accepten targetes de crèdit" + } + }, + "question": "Quins mètodes de pagament s'accepten aquí?" + }, + "phone": { + "question": "Quin és el telèfon de {title()}?" + }, + "service:electricity": { + "mappings": { + "0": { + "then": "Està ple d'endolls pels clients de dins, on es poden carregar els aparells electrònics" + }, + "1": { + "then": "Hi ha aslguns endolls disponibles per als clients de dins, on es poden carregar els aparells electrònics" + }, + "2": { + "then": "No hi ha endolls disponibles per als clients però es pot carregar si es demana als responsables" + }, + "3": { + "then": "No hi ha endolls disponibles per als clients" + } + }, + "question": "Aquest servei té endolls elèctrics, disponibles pels clients quan hi són dins?" + }, + "website": { + "question": "Quina és la web de {title()}?" + }, + "wheelchair-access": { + "mappings": { + "0": { + "then": "Aquest lloc està especialment adaptat per a les cadires de rodes" + }, + "1": { + "then": "És facilment arribable amb cadira de rodes" + }, + "2": { + "then": "És possible fer servir cadira de rodes a aquest lloc però no és fàcil" + }, + "3": { + "then": "Aquest lloc no és accessible amb cadira de rodes" + } + }, + "question": "Aquest lloc és accessible amb cadira de rodes?" + }, + "wikipedia": { + "mappings": { + "0": { + "then": "No hi ha cap enllaça a Viquipèdia encara" + } + }, + "question": "Quina és la correspondent entitat a Wikidata?" + }, + "wikipedialink": { + "mappings": { + "0": { + "then": "No enllaçat amb Viquipèdia" + } + }, + "question": "Quin és l'ítem a Viquipèdia?" + } + } +} \ No newline at end of file diff --git a/langs/shared-questions/cs.json b/langs/shared-questions/cs.json new file mode 100644 index 0000000000..9e26dfeeb6 --- /dev/null +++ b/langs/shared-questions/cs.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/langs/shared-questions/de.json b/langs/shared-questions/de.json index 0413ec8000..e1a837e671 100644 --- a/langs/shared-questions/de.json +++ b/langs/shared-questions/de.json @@ -1,99 +1,116 @@ { - "undefined": { - "description": { - "question": "Gibt es noch etwas, das die vorhergehenden Fragen nicht abgedeckt haben? Hier wäre Platz dafür.
Bitte keine bereits erhobenen Informationen." - }, - "dog-access": { - "mappings": { - "0": { - "then": "Hunde sind erlaubt" + "shared_questions": { + "description": { + "question": "Gibt es noch etwas, das die vorhergehenden Fragen nicht abgedeckt haben? Hier wäre Platz dafür.
Bitte keine bereits erhobenen Informationen." }, - "1": { - "then": "Hunde sind nicht erlaubt" + "dog-access": { + "mappings": { + "0": { + "then": "Hunde sind erlaubt" + }, + "1": { + "then": "Hunde sind nicht erlaubt" + }, + "2": { + "then": "Hunde sind erlaubt, müssen aber angeleint sein" + }, + "3": { + "then": "Hunde sind erlaubt und können frei herumlaufen" + } + }, + "question": "Sind Hunde in diesem Geschäft erlaubt?" }, - "2": { - "then": "Hunde sind erlaubt, müssen aber angeleint sein" + "email": { + "question": "Was ist die Mail-Adresse von {title()}?" }, - "3": { - "then": "Hunde sind erlaubt und können frei herumlaufen" + "level": { + "mappings": { + "0": { + "then": "Unterirdisch gelegen" + }, + "1": { + "then": "Ist im Erdgeschoss" + }, + "2": { + "then": "Ist im Erdgeschoss" + }, + "3": { + "then": "Ist im ersten Stock" + } + }, + "question": "In welchem Stockwerk befindet sich dieses Objekt?", + "render": "Befindet sich im {level}ten Stock" + }, + "opening_hours": { + "question": "Was sind die Öffnungszeiten von {title()}?", + "render": "

Öffnungszeiten

{opening_hours_table(opening_hours)}" + }, + "payment-options": { + "mappings": { + "0": { + "then": "Hier wird Bargeld akzeptiert" + }, + "1": { + "then": "Hier werden Zahlungskarten akzeptiert" + } + }, + "question": "Welche Zahlungsmethoden werden hier akzeptiert?" + }, + "phone": { + "question": "Was ist die Telefonnummer von {title()}?" + }, + "service:electricity": { + "mappings": { + "0": { + "then": "Für Kunden stehen im Innenraum viele Steckdosen zur Verfügung, an denen sie ihre Geräte laden können" + }, + "1": { + "then": "Für Kunden stehen im Innenraum wenig Steckdosen zur Verfügung, an denen sie ihre Geräte laden können" + }, + "2": { + "then": "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" + }, + "3": { + "then": "Für Kunden stehen im Innenraum keine Steckdosen zur Verfügung" + } + }, + "question": "Gibt es an dieser Einrichtung Steckdosen, an denen Kunden ihre Geräte laden können?" + }, + "website": { + "question": "Was ist die Website von {title()}?" + }, + "wheelchair-access": { + "mappings": { + "0": { + "then": "Dieser Ort ist speziell für Rollstuhlfahrer eingerichtet" + }, + "1": { + "then": "Dieser Ort ist mit einem Rollstuhl leicht zu erreichen" + }, + "2": { + "then": "Es ist möglich, diesen Ort mit einem Rollstuhl zu erreichen, aber es ist nicht einfach" + }, + "3": { + "then": "Dieser Ort ist nicht mit einem Rollstuhl erreichbar" + } + }, + "question": "Ist dieser Ort mit einem Rollstuhl zugänglich?" + }, + "wikipedia": { + "mappings": { + "0": { + "then": "Es wurde noch keine Wikipedia-Seite verlinkt" + } + }, + "question": "Was ist das entsprechende Wikidata Element?" + }, + "wikipedialink": { + "mappings": { + "0": { + "then": "Nicht mit Wikipedia verknüpft" + } + }, + "question": "Was ist der entsprechende Artikel auf Wikipedia?" } - }, - "question": "Sind Hunde in diesem Geschäft erlaubt?" - }, - "email": { - "question": "Was ist die Mail-Adresse von {name}?" - }, - "level": { - "mappings": { - "0": { - "then": "Unterirdisch gelegen" - }, - "1": { - "then": "Ist im Erdgeschoss" - }, - "2": { - "then": "Ist im Erdgeschoss" - }, - "3": { - "then": "Ist im ersten Stock" - } - }, - "question": "In welchem Stockwerk befindet sich dieses Objekt?", - "render": "Befindet sich im {level}ten Stock" - }, - "opening_hours": { - "question": "Was sind die Öffnungszeiten von {name}?", - "render": "

Öffnungszeiten

{opening_hours_table(opening_hours)}" - }, - "payment-options": { - "mappings": { - "0": { - "then": "Hier wird Bargeld akzeptiert" - }, - "1": { - "then": "Hier werden Zahlungskarten akzeptiert" - } - }, - "question": "Welche Zahlungsmethoden werden hier akzeptiert?" - }, - "phone": { - "question": "Was ist die Telefonnummer von {name}?" - }, - "website": { - "question": "Was ist die Website von {name}?" - }, - "wheelchair-access": { - "mappings": { - "0": { - "then": "Dieser Ort ist speziell für Rollstuhlfahrer eingerichtet" - }, - "1": { - "then": "Dieser Ort ist mit einem Rollstuhl leicht zu erreichen" - }, - "2": { - "then": "Es ist möglich, diesen Ort mit einem Rollstuhl zu erreichen, aber es ist nicht einfach" - }, - "3": { - "then": "Dieser Ort ist nicht mit einem Rollstuhl erreichbar" - } - }, - "question": "Ist dieser Ort mit einem Rollstuhl zugänglich?" - }, - "wikipedia": { - "mappings": { - "0": { - "then": "Es wurde noch keine Wikipedia-Seite verlinkt" - } - }, - "question": "Was ist das entsprechende Wikidata Element?" - }, - "wikipedialink": { - "mappings": { - "0": { - "then": "Nicht mit Wikipedia verknüpft" - } - }, - "question": "Was ist der entsprechende Artikel auf Wikipedia?" } - } } \ No newline at end of file diff --git a/langs/shared-questions/en.json b/langs/shared-questions/en.json index 4d3aaeef19..82241f876b 100644 --- a/langs/shared-questions/en.json +++ b/langs/shared-questions/en.json @@ -1,116 +1,131 @@ { - "undefined": { - "description": { - "question": "Is there still something relevant you couldn't give in the previous questions? Add it here.
Don't repeat already stated facts" - }, - "dog-access": { - "mappings": { - "0": { - "then": "Dogs are allowed" + "shared_questions": { + "description": { + "question": "Is there still something relevant you couldn't give in the previous questions? Add it here.
Don't repeat already stated facts" }, - "1": { - "then": "Dogs are not allowed" + "dog-access": { + "mappings": { + "0": { + "then": "Dogs are allowed" + }, + "1": { + "then": "Dogs are not allowed" + }, + "2": { + "then": "Dogs are allowed, but they have to be leashed" + }, + "3": { + "then": "Dogs are allowed and can run around freely" + } + }, + "question": "Are dogs allowed in this business?" }, - "2": { - "then": "Dogs are allowed, but they have to be leashed" + "email": { + "question": "What is the email address of {title()}?" }, - "3": { - "then": "Dogs are allowed and can run around freely" + "level": { + "mappings": { + "0": { + "then": "Located underground" + }, + "1": { + "then": "Located on the ground floor" + }, + "2": { + "then": "Located on the ground floor" + }, + "3": { + "then": "Located on the first floor" + }, + "4": { + "then": "Located on the first basement level" + } + }, + "question": "On what level is this feature located?", + "render": "Located on the {level}th floor" + }, + "opening_hours": { + "question": "What are the opening hours of {title()}?", + "render": "

Opening hours

{opening_hours_table(opening_hours)}" + }, + "payment-options": { + "mappings": { + "0": { + "then": "Cash is accepted here" + }, + "1": { + "then": "Payment cards are accepted here" + } + }, + "question": "Which methods of payment are accepted here?" + }, + "payment-options-advanced": { + "override": { + "mappings+": { + "0": { + "then": "Payment is done using a dedicated app" + }, + "1": { + "then": "Payment is done using a membership card" + } + } + } + }, + "phone": { + "question": "What is the phone number of {title()}?" + }, + "service:electricity": { + "mappings": { + "0": { + "then": "There are plenty of domestic sockets available to customers seated indoors, where they can charge their electronics" + }, + "1": { + "then": "There are a few domestic sockets available to customers seated indoors, where they can charge their electronics" + }, + "2": { + "then": "There are no sockets available indoors to customers, but charging might be possible if the staff is asked" + }, + "3": { + "then": "There are a no domestic sockets available to customers seated indoors" + } + }, + "question": "Does this amenity have electrical outlets, available to customers when they are inside?" + }, + "website": { + "question": "What is the website of {title()}?" + }, + "wheelchair-access": { + "mappings": { + "0": { + "then": "This place is specially adapted for wheelchair users" + }, + "1": { + "then": "This place is easily reachable with a wheelchair" + }, + "2": { + "then": "It is possible to reach this place in a wheelchair, but it is not easy" + }, + "3": { + "then": "This place is not reachable with a wheelchair" + } + }, + "question": "Is this place accessible with a wheelchair?" + }, + "wikipedia": { + "mappings": { + "0": { + "then": "No Wikipedia page has been linked yet" + } + }, + "question": "What is the corresponding Wikidata entity?" + }, + "wikipedialink": { + "mappings": { + "0": { + "then": "Not linked with Wikipedia" + } + }, + "question": "What is the corresponding item on Wikipedia?" } - }, - "question": "Are dogs allowed in this business?" - }, - "email": { - "question": "What is the email address of {name}?" - }, - "level": { - "mappings": { - "0": { - "then": "Located underground" - }, - "1": { - "then": "Located on the ground floor" - }, - "2": { - "then": "Located on the ground floor" - }, - "3": { - "then": "Located on the first floor" - } - }, - "question": "On what level is this feature located?", - "render": "Located on the {level}th floor" - }, - "opening_hours": { - "question": "What are the opening hours of {name}?", - "render": "

Opening hours

{opening_hours_table(opening_hours)}" - }, - "payment-options": { - "mappings": { - "0": { - "then": "Cash is accepted here" - }, - "1": { - "then": "Payment cards are accepted here" - } - }, - "question": "Which methods of payment are accepted here?" - }, - "phone": { - "question": "What is the phone number of {name}?" - }, - "service:electricity": { - "mappings": { - "0": { - "then": "There are plenty of domestic sockets available to customers seated indoors, where they can charge their electronics" - }, - "1": { - "then": "There are a few domestic sockets available to customers seated indoors, where they can charge their electronics" - }, - "2": { - "then": "There are no sockets available indoors to customers, but charging might be possible if the staff is asked" - }, - "3": { - "then": "There are a no domestic sockets available to customers seated indoors" - } - }, - "question": "Does this amenity have electrical outlets, available to customers when they are inside?" - }, - "website": { - "question": "What is the website of {name}?" - }, - "wheelchair-access": { - "mappings": { - "0": { - "then": "This place is specially adapted for wheelchair users" - }, - "1": { - "then": "This place is easily reachable with a wheelchair" - }, - "2": { - "then": "It is possible to reach this place in a wheelchair, but it is not easy" - }, - "3": { - "then": "This place is not reachable with a wheelchair" - } - }, - "question": "Is this place accessible with a wheelchair?" - }, - "wikipedia": { - "mappings": { - "0": { - "then": "No Wikipedia page has been linked yet" - } - }, - "question": "What is the corresponding Wikidata entity?" - }, - "wikipedialink": { - "mappings": { - "0": { - "then": "Not linked with Wikipedia" - } - }, - "question": "What is the corresponding item on Wikipedia?" } - } } \ No newline at end of file diff --git a/langs/shared-questions/eo.json b/langs/shared-questions/eo.json index dfa5731905..164d1f878b 100644 --- a/langs/shared-questions/eo.json +++ b/langs/shared-questions/eo.json @@ -1,40 +1,40 @@ { - "undefined": { - "dog-access": { - "mappings": { - "0": { - "then": "Hundoj estas permesataj" + "shared_questions": { + "dog-access": { + "mappings": { + "0": { + "then": "Hundoj estas permesataj" + }, + "1": { + "then": "Hundoj estas malpermesataj" + } + } }, - "1": { - "then": "Hundoj estas malpermesataj" + "email": { + "question": "Kio estas la retpoŝta adreso de {title()}?" + }, + "level": { + "mappings": { + "1": { + "then": "En la teretaĝo" + }, + "2": { + "then": "En la teretaĝo" + }, + "3": { + "then": "En la unua etaĝo" + } + }, + "render": "En la {level}a etaĝo" + }, + "opening_hours": { + "render": "

Malfermitaj horoj

{opening_hours_table(opening_hours)}" + }, + "phone": { + "question": "Kio estas la telefonnumero de {title()}?" + }, + "website": { + "question": "Kie estas la retejo de {title()}?" } - } - }, - "email": { - "question": "Kio estas la retpoŝta adreso de {name}?" - }, - "level": { - "mappings": { - "1": { - "then": "En la teretaĝo" - }, - "2": { - "then": "En la teretaĝo" - }, - "3": { - "then": "En la unua etaĝo" - } - }, - "render": "En la {level}a etaĝo" - }, - "opening_hours": { - "render": "

Malfermitaj horoj

{opening_hours_table(opening_hours)}" - }, - "phone": { - "question": "Kio estas la telefonnumero de {name}?" - }, - "website": { - "question": "Kie estas la retejo de {name}?" } - } } \ No newline at end of file diff --git a/langs/shared-questions/es.json b/langs/shared-questions/es.json index 0967ef424b..e513f074e8 100644 --- a/langs/shared-questions/es.json +++ b/langs/shared-questions/es.json @@ -1 +1,17 @@ -{} +{ + "shared_questions": { + "description": { + "question": "¿Aún hay algo relevante que no ha encajado en las preguntas anteriores? Compártalo aquí.
No repita datos ya expresados" + }, + "dog-access": { + "mappings": { + "0": { + "then": "Se permiten perros" + }, + "1": { + "then": "No se permiten perros" + } + } + } + } +} \ No newline at end of file diff --git a/langs/shared-questions/fi.json b/langs/shared-questions/fi.json index 0967ef424b..9e26dfeeb6 100644 --- a/langs/shared-questions/fi.json +++ b/langs/shared-questions/fi.json @@ -1 +1 @@ -{} +{} \ No newline at end of file diff --git a/langs/shared-questions/fr.json b/langs/shared-questions/fr.json index 3f78960991..d764695cb6 100644 --- a/langs/shared-questions/fr.json +++ b/langs/shared-questions/fr.json @@ -1,77 +1,116 @@ { - "undefined": { - "description": { - "question": "Y a-t-il quelque chose de pertinent que vous n'avez pas pu donner à la dernière question ? Ajoutez-le ici.
Ne répétez pas des réponses déjà données" - }, - "dog-access": { - "mappings": { - "0": { - "then": "Chiens admis" + "shared_questions": { + "description": { + "question": "Y a-t-il quelque chose de pertinent que vous n'avez pas pu donner à la dernière question ? Ajoutez-le ici.
Ne répétez pas des réponses déjà données" }, - "1": { - "then": "Les chiens ne sont pas admis" + "dog-access": { + "mappings": { + "0": { + "then": "Chiens admis" + }, + "1": { + "then": "Chiens non admis" + }, + "2": { + "then": "Les chiens sont admis, mais ils doivent être tenus en laisse" + }, + "3": { + "then": "Les chiens sont admis et peuvent circuler librement" + } + }, + "question": "Est-ce que les chiens sont admis ici ?" }, - "2": { - "then": "Les chiens sont admis, mais ils doivent être tenus en laisse" + "email": { + "question": "Quelle est l'adresse courriel de {title()} ?" }, - "3": { - "then": "Les chiens sont admis et peuvent circuler librement" + "level": { + "mappings": { + "0": { + "then": "En sous-sol" + }, + "1": { + "then": "Rez-de-chaussée" + }, + "2": { + "then": "Rez-de-chaussée" + }, + "3": { + "then": "Premier étage" + } + }, + "question": "À quel étage se situe l’élément ?", + "render": "Étage {level}" + }, + "opening_hours": { + "question": "Quelles sont les horaires d'ouverture de {title()} ?", + "render": "

Horaires d'ouverture

{opening_hours_table(opening_hours)}" + }, + "payment-options": { + "mappings": { + "0": { + "then": "Paiement en liquide accepté" + }, + "1": { + "then": "Paiement par carte accepté" + } + }, + "question": "Quelles sont les méthodes de paiement acceptées ici ?" + }, + "phone": { + "question": "Quel est le numéro de téléphone de {title()} ?" + }, + "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 {title()} ?" + }, + "wheelchair-access": { + "mappings": { + "0": { + "then": "Cet endroit est spécialement adapté pour les usagers de fauteuils roulants" + }, + "1": { + "then": "Cet endroit est facilement accessible avec un fauteuil roulant" + }, + "2": { + "then": "Il est possible d'accéder à cet endroit en chaise roulante, mais ce n'est pas facile" + }, + "3": { + "then": "Cet endroit n'est pas accessible en chaise roulante" + } + }, + "question": "Est-ce que cet endroit est accessible en chaise roulante ?" + }, + "wikipedia": { + "mappings": { + "0": { + "then": "Pas encore de lien vers une page Wikipedia" + } + }, + "question": "Quelle est l'entité Wikidata correspondante ?" + }, + "wikipedialink": { + "mappings": { + "0": { + "then": "Non lié avec Wikipedia" + } + }, + "question": "Quel est l’élément Wikipédia correspondant ?" } - }, - "question": "Est-ce que les chiens sont admis ici ?" - }, - "email": { - "question": "Quelle est l'adresse courriel de {name} ?" - }, - "level": { - "mappings": { - "0": { - "then": "En sous-sol" - }, - "1": { - "then": "Rez-de-chaussée" - }, - "2": { - "then": "Rez-de-chaussée" - }, - "3": { - "then": "Premier étage" - } - }, - "question": "À quel étage se situe l’élément ?", - "render": "Étage {level}" - }, - "opening_hours": { - "question": "Quelles sont les horaires d'ouverture de {name} ?", - "render": "

Horaires d'ouverture

{opening_hours_table(opening_hours)}" - }, - "payment-options": { - "mappings": { - "0": { - "then": "Paiement en liquide accepté" - }, - "1": { - "then": "Paiement par carte accepté" - } - }, - "question": "Quelles sont les méthodes de paiement acceptées ici ?" - }, - "phone": { - "question": "Quel est le numéro de téléphone de {name} ?" - }, - "website": { - "question": "Quel est le site web de {name} ?" - }, - "wheelchair-access": { - "mappings": { - "2": { - "then": "Il est possible d'accéder à cet endroit en chaise roulante, mais ce n'est pas facile" - }, - "3": { - "then": "Cet endroit n'est pas accessible en chaise roulante" - } - }, - "question": "Est-ce que cet endroit est accessible en chaise roulante ?" } - } } \ No newline at end of file diff --git a/langs/shared-questions/gl.json b/langs/shared-questions/gl.json index 40baca77ee..f4c2fb4290 100644 --- a/langs/shared-questions/gl.json +++ b/langs/shared-questions/gl.json @@ -1,7 +1,7 @@ { - "undefined": { - "website": { - "question": "Cal é a páxina web de {name}?" + "shared_questions": { + "website": { + "question": "Cal é a páxina web de {title()}?" + } } - } } \ No newline at end of file diff --git a/langs/shared-questions/hu.json b/langs/shared-questions/hu.json index d6a75d5426..419784ebc1 100644 --- a/langs/shared-questions/hu.json +++ b/langs/shared-questions/hu.json @@ -1,99 +1,128 @@ { - "undefined": { - "description": { - "question": "Van-e még valami lényeges, amit nem tudott megadni az előző kérdésekben? Itt megteheti.
Ne ismételjen meg már megadott tényeket" - }, - "dog-access": { - "mappings": { - "0": { - "then": "Kutya bevihető" + "shared_questions": { + "description": { + "question": "Van-e még valami lényeges, amit nem tudott megadni az előző kérdésekben? Itt megteheti.
Ne ismételjen meg már megadott tényeket" }, - "1": { - "then": "Kutya nem vihető be" + "dog-access": { + "mappings": { + "0": { + "then": "Kutya bevihető" + }, + "1": { + "then": "Kutya nem vihető be" + }, + "2": { + "then": "Kutya bevihető, de csak pórázon" + }, + "3": { + "then": "Kutya bevihető és szabadon szaladgálhat" + } + }, + "question": "Be lehet-e vinni kutyát ebbe az üzletbe?" }, - "2": { - "then": "Kutya bevihető, de csak pórázon" + "email": { + "question": "Mi a(z) {title()} e-mail címe?" }, - "3": { - "then": "Kutya bevihető és szabadon szaladgálhat" + "level": { + "mappings": { + "0": { + "then": "A föld alatt" + }, + "1": { + "then": "A földszinten" + }, + "2": { + "then": "A földszinten" + }, + "3": { + "then": "Az első emeleten" + } + }, + "question": "Melyik szinten található ez a létesítmény?", + "render": "A(z) {level}. emeleten" + }, + "opening_hours": { + "question": "Mikor van nyitva ez: {title()}?", + "render": "

Nyitva tartás

{opening_hours_table(opening_hours)}" + }, + "payment-options": { + "mappings": { + "0": { + "then": "Itt készpénzzel is lehet fizetni" + }, + "1": { + "then": "Itt fizetőkártyákkal is lehet fizetni" + } + }, + "question": "Milyen fizetési módokat fogadnak el itt?" + }, + "payment-options-advanced": { + "override": { + "mappings+": { + "0": { + "then": "Fizetés erre a célra szolgáló alkalmazással" + }, + "1": { + "then": "Fizetési tagsági kártyával" + } + } + } + }, + "phone": { + "question": "Mi a telefonszáma ennek: {title()}?" + }, + "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: {title()}?" + }, + "wheelchair-access": { + "mappings": { + "0": { + "then": "Ez a hely kifejezetten kerekesszékeseknek lett kialakítva" + }, + "1": { + "then": "Ez a hely könnyedén elérhető kerekesszékkel" + }, + "2": { + "then": "Ez a hely ugyan elérhető kerekesszékkel, de nehezen" + }, + "3": { + "then": "Ez a hely kerekesszékkel elérhetetlen" + } + }, + "question": "Akadálymentes-e ez a hely?" + }, + "wikipedia": { + "mappings": { + "0": { + "then": "Még nincs Wikipédia-oldal belinkelve" + } + }, + "question": "Mi a megfelelő Wikidata-elem?" + }, + "wikipedialink": { + "mappings": { + "0": { + "then": "Nincs belinkelve a Wikipédiához" + } + }, + "question": "Mi a megfelelő szócikk a Wikipédián?" } - }, - "question": "Be lehet-e vinni kutyát ebbe az üzletbe?" - }, - "email": { - "question": "Mi a(z) {name} e-mail címe?" - }, - "level": { - "mappings": { - "0": { - "then": "A föld alatt található" - }, - "1": { - "then": "A földszinten található" - }, - "2": { - "then": "A földszinten található" - }, - "3": { - "then": "Az első emeleten található" - } - }, - "question": "Melyik szinten található ez a létesítmény?", - "render": "{level}. emeleten található" - }, - "opening_hours": { - "question": "Mikor van nyitva ez: {name}?", - "render": "

Nyitva tartás

{opening_hours_table(opening_hours)}" - }, - "payment-options": { - "mappings": { - "0": { - "then": "Itt készpénzzel is lehet fizetni" - }, - "1": { - "then": "Itt fizetőkártyákkal is lehet fizetni" - } - }, - "question": "Milyen fizetési módokat fogadnak el itt?" - }, - "phone": { - "question": "Mi a telefonszáma ennek: {name}?" - }, - "website": { - "question": "Mi a weboldala ennek: {name}?" - }, - "wheelchair-access": { - "mappings": { - "0": { - "then": "Ez a hely kifejezetten kerekesszékeseknek lett kialakítva" - }, - "1": { - "then": "Ez a hely könnyedén elérhető kerekesszékkel" - }, - "2": { - "then": "Ez a hely ugyan elérhető kerekesszékkel, de nehezen" - }, - "3": { - "then": "Ez a hely kerekesszékkel elérhetetlen" - } - }, - "question": "Akadálymentes-e ez a hely?" - }, - "wikipedia": { - "mappings": { - "0": { - "then": "Még nincs Wikipédia-oldal belinkelve" - } - }, - "question": "Mi a megfelelő Wikidata-elem?" - }, - "wikipedialink": { - "mappings": { - "0": { - "then": "Nincs belinkelve a Wikipédiához" - } - }, - "question": "Mi a megfelelő szócikk a Wikipédián?" } - } } \ No newline at end of file diff --git a/langs/shared-questions/id.json b/langs/shared-questions/id.json index 61cc25a1a0..3bf4b6d9d3 100644 --- a/langs/shared-questions/id.json +++ b/langs/shared-questions/id.json @@ -1,32 +1,48 @@ { - "undefined": { - "email": { - "question": "Apa alamat surel dari {name}?" - }, - "level": { - "mappings": { - "3": { - "then": "Berlokasi di lantai pertama" - } - }, - "question": "Pada tingkat apa fitur ini diletakkan?" - }, - "payment-options": { - "mappings": { - "0": { - "then": "Disini menerima pembayaran tunai" + "shared_questions": { + "description": { + "question": "Apakah masih ada sesuatu yang relevan yang tidak dapat Anda berikan dalam pertanyaan sebelumnya? Tambahkan di sini.
Jangan ulangi fakta yang sudah dinyatakan " }, - "1": { - "then": "Disini menerima pembayaran dengan kartu" + "dog-access": { + "mappings": { + "0": { + "then": "Anjing diperbolehkan" + }, + "1": { + "then": "Anjing tidak diperbolehkan" + }, + "2": { + "then": "Anjing diperbolehkan, tetapi mereka harus diikat" + } + } + }, + "email": { + "question": "Apa alamat surel dari {title()}?" + }, + "level": { + "mappings": { + "3": { + "then": "Berlokasi di lantai pertama" + } + }, + "question": "Pada tingkat apa fitur ini diletakkan?" + }, + "payment-options": { + "mappings": { + "0": { + "then": "Disini menerima pembayaran tunai" + }, + "1": { + "then": "Disini menerima pembayaran dengan kartu" + } + }, + "question": "Metode pembayaran manakah yang di terima disini?" + }, + "phone": { + "question": "Nomor telepon dari {title()}?" + }, + "website": { + "question": "Apa situs web dari {title()}?" } - }, - "question": "Metode pembayaran manakah yang di terima disini?" - }, - "phone": { - "question": "Nomor telepon dari {name|?" - }, - "website": { - "question": "Apa situs web dari {name}?" } - } } \ No newline at end of file diff --git a/langs/shared-questions/it.json b/langs/shared-questions/it.json index 99a937c8e3..4846721baf 100644 --- a/langs/shared-questions/it.json +++ b/langs/shared-questions/it.json @@ -1,99 +1,99 @@ { - "undefined": { - "description": { - "question": "C'è ancora qualche informazione importante che non è stato possibile fornire nelle domande precedenti? Aggiungila qui.
Non ripetere informazioni già fornite" - }, - "dog-access": { - "mappings": { - "0": { - "then": "Cani ammessi" + "shared_questions": { + "description": { + "question": "C'è ancora qualche informazione importante che non è stato possibile fornire nelle domande precedenti? Aggiungila qui.
Non ripetere informazioni già fornite" }, - "1": { - "then": "I cani non sono ammessi" + "dog-access": { + "mappings": { + "0": { + "then": "Cani ammessi" + }, + "1": { + "then": "I cani non sono ammessi" + }, + "2": { + "then": "Cani ammessi ma solo se tenuti al guinzaglio" + }, + "3": { + "then": "I cani sono ammessi e possono andare in giro liberamente" + } + }, + "question": "I cani sono ammessi in quest’attività?" }, - "2": { - "then": "Cani ammessi ma solo se tenuti al guinzaglio" + "email": { + "question": "Qual è l'indirizzo email di {title()}?" }, - "3": { - "then": "I cani sono ammessi e possono andare in giro liberamente" + "level": { + "mappings": { + "0": { + "then": "Si trova sotto il livello stradale" + }, + "1": { + "then": "Si trova al pianoterra" + }, + "2": { + "then": "Si trova al pianoterra" + }, + "3": { + "then": "Si trova al primo piano" + } + }, + "question": "A quale piano si trova questo elemento?", + "render": "Si trova al piano numero {level}" + }, + "opening_hours": { + "question": "Quali sono gli orari di apertura di {title()}?", + "render": "

Orari di apertura

{opening_hours_table(opening_hours)}" + }, + "payment-options": { + "mappings": { + "0": { + "then": "I contanti sono accettati" + }, + "1": { + "then": "I pagamenti con la carta sono accettati" + } + }, + "question": "Quali metodi di pagamento sono accettati qui?" + }, + "phone": { + "question": "Qual è il numero di telefono di {title()}?" + }, + "website": { + "question": "Qual è il sito web di {title()}?" + }, + "wheelchair-access": { + "mappings": { + "0": { + "then": "Questo luogo è stato adattato per favorire le persone in sedia a rotelle" + }, + "1": { + "then": "Questo luogo è facilmente raggiungibile con una sedia a rotelle" + }, + "2": { + "then": "È possibile raggiungere questo luogo con una sedia a rotella ma non è semplice" + }, + "3": { + "then": "Questo luogo non è accessibile con una sedia a rotelle" + } + }, + "question": "Questo luogo è accessibile con una sedia a rotelle?" + }, + "wikipedia": { + "mappings": { + "0": { + "then": "Nessuna pagina Wikipedia è ancora stata collegata" + } + }, + "question": "Qual è l’elemento Wikidata corrispondente?" + }, + "wikipedialink": { + "mappings": { + "0": { + "then": "Non collegato a Wikipedia" + } + }, + "question": "Qual è il corrispondente elemento su Wikipedia?" } - }, - "question": "I cani sono ammessi in quest’attività?" - }, - "email": { - "question": "Qual è l'indirizzo email di {name}?" - }, - "level": { - "mappings": { - "0": { - "then": "Si trova sotto il livello stradale" - }, - "1": { - "then": "Si trova al pianoterra" - }, - "2": { - "then": "Si trova al pianoterra" - }, - "3": { - "then": "Si trova al primo piano" - } - }, - "question": "A quale piano si trova questo elemento?", - "render": "Si trova al piano numero {level}" - }, - "opening_hours": { - "question": "Quali sono gli orari di apertura di {name}?", - "render": "

Orari di apertura

{opening_hours_table(opening_hours)}" - }, - "payment-options": { - "mappings": { - "0": { - "then": "I contanti sono accettati" - }, - "1": { - "then": "I pagamenti con la carta sono accettati" - } - }, - "question": "Quali metodi di pagamento sono accettati qui?" - }, - "phone": { - "question": "Qual è il numero di telefono di {name}?" - }, - "website": { - "question": "Qual è il sito web di {name}?" - }, - "wheelchair-access": { - "mappings": { - "0": { - "then": "Questo luogo è stato adattato per favorire le persone in sedia a rotelle" - }, - "1": { - "then": "Questo luogo è facilmente raggiungibile con una sedia a rotelle" - }, - "2": { - "then": "È possibile raggiungere questo luogo con una sedia a rotella ma non è semplice" - }, - "3": { - "then": "Questo luogo non è accessibile con una sedia a rotelle" - } - }, - "question": "Questo luogo è accessibile con una sedia a rotelle?" - }, - "wikipedia": { - "mappings": { - "0": { - "then": "Nessuna pagina Wikipedia è ancora stata collegata" - } - }, - "question": "Qual è l’elemento Wikidata corrispondente?" - }, - "wikipedialink": { - "mappings": { - "0": { - "then": "Non collegato a Wikipedia" - } - }, - "question": "Qual è il corrispondente elemento su Wikipedia?" } - } } \ No newline at end of file diff --git a/langs/shared-questions/ja.json b/langs/shared-questions/ja.json index 0967ef424b..9a874275a5 100644 --- a/langs/shared-questions/ja.json +++ b/langs/shared-questions/ja.json @@ -1 +1,116 @@ -{} +{ + "shared_questions": { + "description": { + "question": "前の質問で伝えきれなかった関連事項がまだありますか?ここに追加してください。
今後表示しない" + }, + "dog-access": { + "mappings": { + "0": { + "then": "ペット同伴可能" + }, + "1": { + "then": "ペット同伴不可" + }, + "2": { + "then": "ペット同伴可能。ただしリード着用" + }, + "3": { + "then": "犬同伴可能、自由に走り回れる" + } + }, + "question": "犬を飼うことができますか?" + }, + "email": { + "question": "{title()}のEメールアドレスは何ですか?" + }, + "level": { + "mappings": { + "0": { + "then": "地下にあります" + }, + "1": { + "then": "1階にあります" + }, + "2": { + "then": "1階にあります" + }, + "3": { + "then": "1階にあります" + } + }, + "question": "この機能は何階にあるのでしょうか?", + "render": "{level}階にあります" + }, + "opening_hours": { + "question": "{title()}の営業時間は?", + "render": "

営業時間

{opening_hours_table(opening_hours)}" + }, + "payment-options": { + "mappings": { + "0": { + "then": "現金利用可能" + }, + "1": { + "then": "お支払いはこちらで承ります" + } + }, + "question": "どのような支払い方法が可能ですか?" + }, + "phone": { + "question": "{title()}の電話番号は?" + }, + "service:electricity": { + "mappings": { + "0": { + "then": "屋内の席に座っているお客様には、家庭用コンセントがたくさん用意されており、そこで電子機器を充電することができます" + }, + "1": { + "then": "屋内の席に座ったお客様が充電できるよう、コンセントがいくつか用意されています" + }, + "2": { + "then": "屋内にはコンセントがありませんが、スタッフに声をかければ充電できるかもしれません" + }, + "3": { + "then": "屋内の席には、家庭用コンセントはありません" + } + }, + "question": "このアメニティにはコンセントがあり、お客様が店内にいるときにも利用できますか?" + }, + "website": { + "question": "{title()}のウェブサイトは?" + }, + "wheelchair-access": { + "mappings": { + "0": { + "then": "この場所は、車椅子の方のための特別仕様になっています" + }, + "1": { + "then": "この場所は、車いすで簡単に行くことができます" + }, + "2": { + "then": "車いすでこの場所まで行くことは可能ですが、簡単ではありません" + }, + "3": { + "then": "この場所は車いすでは行けません" + } + }, + "question": "車いすでのアクセスは可能ですか?" + }, + "wikipedia": { + "mappings": { + "0": { + "then": "ウィキペディアのページはまだリンクされていません" + } + }, + "question": "対応するウィキデータのエンティティは何ですか?" + }, + "wikipedialink": { + "mappings": { + "0": { + "then": "ウィキペディアと連動していない" + } + }, + "question": "Wikipediaの該当項目は何ですか?" + } + } +} \ No newline at end of file diff --git a/langs/shared-questions/nb_NO.json b/langs/shared-questions/nb_NO.json index 841617aa2d..7b1497c6e3 100644 --- a/langs/shared-questions/nb_NO.json +++ b/langs/shared-questions/nb_NO.json @@ -1,97 +1,97 @@ { - "undefined": { - "description": { - "question": "Er det noe mer som er relevant du ikke kunne opplyse om i tidligere svar? Legg det til her.
Ikke gjenta fakta som allerede er nevnt" - }, - "dog-access": { - "mappings": { - "0": { - "then": "Hunder tillates" + "shared_questions": { + "description": { + "question": "Er det noe mer som er relevant du ikke kunne opplyse om i tidligere svar? Legg det til her.
Ikke gjenta fakta som allerede er nevnt" }, - "1": { - "then": "Hunder tillates ikke" + "dog-access": { + "mappings": { + "0": { + "then": "Hunder tillates" + }, + "1": { + "then": "Hunder tillates ikke" + }, + "2": { + "then": "Hunder tillates, men de må være i bånd" + }, + "3": { + "then": "Hunder tillates og kan gå fritt" + } + }, + "question": "Tillates hunder i denne forretningen?" }, - "2": { - "then": "Hunder tillates, men de må være i bånd" + "email": { + "question": "Hva er e-postadressen til {title()}?" }, - "3": { - "then": "Hunder tillates og kan gå fritt" + "level": { + "mappings": { + "0": { + "then": "Under bakken" + }, + "1": { + "then": "På gateplan" + }, + "2": { + "then": "På gateplan" + }, + "3": { + "then": "I andre etasje" + } + } + }, + "opening_hours": { + "question": "Hva er åpningstidene for {title()})", + "render": "

Åpningstider

{opening_hours_table(opening_hours)}" + }, + "payment-options": { + "mappings": { + "0": { + "then": "Kontanter godtas her" + }, + "1": { + "then": "Betalingskort godtas her" + } + }, + "question": "Hvilke betalingsmetoder godtas her?" + }, + "phone": { + "question": "Hva er telefonnummeret til {title()}?" + }, + "website": { + "question": "Hva er nettsiden til {title()}?" + }, + "wheelchair-access": { + "mappings": { + "0": { + "then": "Dette stedet er spesielt tilpasset rullestolsbrukere" + }, + "1": { + "then": "Dette stedet kan enkelt besøkes med rullestol" + }, + "2": { + "then": "Det er mulig å besøke dette stedet i rullestol, men det er ikke lett" + }, + "3": { + "then": "Dette stedet er ikke tilgjengelig for besøk med rullestol" + } + }, + "question": "Er dette stedet tilgjengelig for rullestoler?" + }, + "wikipedia": { + "mappings": { + "0": { + "then": "Ingen Wikipedia-side lenket enda" + } + }, + "question": "Hva er respektivt Wikipedia-element?" + }, + "wikipedialink": { + "mappings": { + "0": { + "then": "Ikke lenket med Wikipedia" + } + }, + "question": "Hva er respektivt element på Wikipedia?" } - }, - "question": "Tillates hunder i denne forretningen?" - }, - "email": { - "question": "Hva er e-postadressen til {name}?" - }, - "level": { - "mappings": { - "0": { - "then": "Under bakken" - }, - "1": { - "then": "På gateplan" - }, - "2": { - "then": "På gateplan" - }, - "3": { - "then": "I andre etasje" - } - } - }, - "opening_hours": { - "question": "Hva er åpningstidene for {name})", - "render": "

Åpningstider

{opening_hours_table(opening_hours)}" - }, - "payment-options": { - "mappings": { - "0": { - "then": "Kontanter godtas her" - }, - "1": { - "then": "Betalingskort godtas her" - } - }, - "question": "Hvilke betalingsmetoder godtas her?" - }, - "phone": { - "question": "Hva er telefonnummeret til {name}?" - }, - "website": { - "question": "Hva er nettsiden til {name}?" - }, - "wheelchair-access": { - "mappings": { - "0": { - "then": "Dette stedet er spesielt tilpasset rullestolsbrukere" - }, - "1": { - "then": "Dette stedet kan enkelt besøkes med rullestol" - }, - "2": { - "then": "Det er mulig å besøke dette stedet i rullestol, men det er ikke lett" - }, - "3": { - "then": "Dette stedet er ikke tilgjengelig for besøk med rullestol" - } - }, - "question": "Er dette stedet tilgjengelig for rullestoler?" - }, - "wikipedia": { - "mappings": { - "0": { - "then": "Ingen Wikipedia-side lenket enda" - } - }, - "question": "Hva er respektivt Wikipedia-element?" - }, - "wikipedialink": { - "mappings": { - "0": { - "then": "Ikke lenket med Wikipedia" - } - }, - "question": "Hva er respektivt element på Wikipedia?" } - } } \ No newline at end of file diff --git a/langs/shared-questions/nl.json b/langs/shared-questions/nl.json index 3a712fb585..d876e305bb 100644 --- a/langs/shared-questions/nl.json +++ b/langs/shared-questions/nl.json @@ -1,116 +1,131 @@ { - "undefined": { - "description": { - "question": "Zijn er nog andere relevante zaken die je niet in de bovenstaande vragen kwijt kon? Vul ze hier in.
Herhaal geen antwoorden die je reeds gaf" - }, - "dog-access": { - "mappings": { - "0": { - "then": "honden zijn toegelaten" + "shared_questions": { + "description": { + "question": "Zijn er nog andere relevante zaken die je niet in de bovenstaande vragen kwijt kon? Vul ze hier in.
Herhaal geen antwoorden die je reeds gaf" }, - "1": { - "then": "honden zijn niet toegelaten" + "dog-access": { + "mappings": { + "0": { + "then": "honden zijn toegelaten" + }, + "1": { + "then": "honden zijn niet toegelaten" + }, + "2": { + "then": "honden zijn enkel aan de leiband welkom" + }, + "3": { + "then": "honden zijn welkom en mogen vrij rondlopen" + } + }, + "question": "Zijn honden toegelaten in deze zaak?" }, - "2": { - "then": "honden zijn enkel aan de leiband welkom" + "email": { + "question": "Wat is het e-mailadres van {title()}?" }, - "3": { - "then": "honden zijn welkom en mogen vrij rondlopen" + "level": { + "mappings": { + "0": { + "then": "Bevindt zich ondergronds" + }, + "1": { + "then": "Bevindt zich op de begane grond" + }, + "2": { + "then": "Bevindt zich gelijkvloers" + }, + "3": { + "then": "Bevindt zich op de eerste verdieping" + }, + "4": { + "then": "Bevindt zich in de eerste kelderverdieping" + } + }, + "question": "Op welke verdieping bevindt dit punt zich?", + "render": "Bevindt zich op de {level}de verdieping" + }, + "opening_hours": { + "question": "Wat zijn de openingstijden van {title()}?", + "render": "

Openingstijden

{opening_hours_table(opening_hours)}" + }, + "payment-options": { + "mappings": { + "0": { + "then": "Cash geld wordt hier aanvaard" + }, + "1": { + "then": "Betalen met bankkaarten kan hier" + } + }, + "question": "Welke betaalmiddelen worden hier geaccepteerd?" + }, + "payment-options-advanced": { + "override": { + "mappings+": { + "0": { + "then": "Betalen via een app van het netwerk" + }, + "1": { + "then": "Betalen via een lidkaart van het netwerk" + } + } + } + }, + "phone": { + "question": "Wat is het telefoonnummer van {title()}?" + }, + "service:electricity": { + "mappings": { + "0": { + "then": "Er zijn binnen veel stekkers beschikbaar voor klanten die electronica wensen op te laden" + }, + "1": { + "then": "Er zijn binnen enkele stekkers beschikbaar voor klanten die electronica wensen op te laden" + }, + "2": { + "then": "Er zijn binnen geen stekkers beschikbaar, maar electronica opladen kan indien men dit aan het personeel vraagt" + }, + "3": { + "then": "Er zijn binnen geen stekkers beschikbaar" + } + }, + "question": "Zijn er stekkers beschikbaar voor klanten die binnen zitten?" + }, + "website": { + "question": "Wat is de website van {title()}?" + }, + "wheelchair-access": { + "mappings": { + "0": { + "then": "Deze plaats is speciaal aangepast voor gebruikers van een rolstoel" + }, + "1": { + "then": "Deze plaats is vlot bereikbaar met een rolstoel" + }, + "2": { + "then": "Deze plaats is bereikbaar met een rolstoel, maar het is niet makkelijk" + }, + "3": { + "then": "Niet rolstoeltoegankelijk" + } + }, + "question": "Is deze plaats rolstoeltoegankelijk?" + }, + "wikipedia": { + "mappings": { + "0": { + "then": "Er werd nog geen Wikipedia-pagina gekoppeld" + } + }, + "question": "Welk Wikidata-item komt overeen met dit object?" + }, + "wikipedialink": { + "mappings": { + "0": { + "then": "Nog geen Wikipedia-artikel bekend" + } + }, + "question": "Welk Wikipedia-artikel beschrijft dit object?" } - }, - "question": "Zijn honden toegelaten in deze zaak?" - }, - "email": { - "question": "Wat is het e-mailadres van {name}?" - }, - "level": { - "mappings": { - "0": { - "then": "Bevindt zich ondergronds" - }, - "1": { - "then": "Bevindt zich op de begane grond" - }, - "2": { - "then": "Bevindt zich gelijkvloers" - }, - "3": { - "then": "Bevindt zich op de eerste verdieping" - } - }, - "question": "Op welke verdieping bevindt dit punt zich?", - "render": "Bevindt zich op de {level}de verdieping" - }, - "opening_hours": { - "question": "Wat zijn de openingstijden van {name}?", - "render": "

Openingstijden

{opening_hours_table(opening_hours)}" - }, - "payment-options": { - "mappings": { - "0": { - "then": "Cash geld wordt hier aanvaard" - }, - "1": { - "then": "Betalen met bankkaarten kan hier" - } - }, - "question": "Welke betaalmiddelen worden hier geaccepteerd?" - }, - "phone": { - "question": "Wat is het telefoonnummer van {name}?" - }, - "service:electricity": { - "mappings": { - "0": { - "then": "Er zijn binnen veel stekkers beschikbaar voor klanten die electronica wensen op te laden" - }, - "1": { - "then": "Er zijn binnen enkele stekkers beschikbaar voor klanten die electronica wensen op te laden" - }, - "2": { - "then": "Er zijn binnen geen stekkers beschikbaar, maar electronica opladen kan indien men dit aan het personeel vraagt" - }, - "3": { - "then": "Er zijn binnen geen stekkers beschikbaar" - } - }, - "question": "Zijn er stekkers beschikbaar voor klanten die binnen zitten?" - }, - "website": { - "question": "Wat is de website van {name}?" - }, - "wheelchair-access": { - "mappings": { - "0": { - "then": "Deze plaats is speciaal aangepast voor gebruikers van een rolstoel" - }, - "1": { - "then": "Deze plaats is vlot bereikbaar met een rolstoel" - }, - "2": { - "then": "Deze plaats is bereikbaar met een rolstoel, maar het is niet makkelijk" - }, - "3": { - "then": "Niet rolstoeltoegankelijk" - } - }, - "question": "Is deze plaats rolstoeltoegankelijk?" - }, - "wikipedia": { - "mappings": { - "0": { - "then": "Er werd nog geen Wikipedia-pagina gekoppeld" - } - }, - "question": "Welk Wikidata-item komt overeen met dit object?" - }, - "wikipedialink": { - "mappings": { - "0": { - "then": "Nog geen Wikipedia-artikel bekend" - } - }, - "question": "Welk Wikipedia-artikel beschrijft dit object?" } - } } \ No newline at end of file diff --git a/langs/shared-questions/pl.json b/langs/shared-questions/pl.json index ae2b3280c8..9e0b898f7b 100644 --- a/langs/shared-questions/pl.json +++ b/langs/shared-questions/pl.json @@ -1,38 +1,116 @@ { - "undefined": { - "description": { - "question": "Czy jest jeszcze coś istotnego, czego nie mogłeś podać w poprzednich pytaniach? Dodaj to tutaj.
Nie powtarzaj już podanych faktów" - }, - "email": { - "question": "Jaki jest adres e-mail do {name}?" - }, - "level": { - "mappings": { - "0": { - "then": "Znajduje się pod ziemią" + "shared_questions": { + "description": { + "question": "Czy jest jeszcze coś istotnego, czego nie mogłeś podać w poprzednich pytaniach? Dodaj to tutaj.
Nie powtarzaj już podanych faktów" }, - "1": { - "then": "Znajduje się na parterze" + "dog-access": { + "mappings": { + "0": { + "then": "Psy dozwolone" + }, + "1": { + "then": "Psy nie dozwolone" + }, + "2": { + "then": "Psy dozwolone, ale muszą być na smyczy" + }, + "3": { + "then": "Psy dozwolone i mogą biegać bez ograniczeń" + } + }, + "question": "Czy w tej firmie psy są dozwolone?" }, - "2": { - "then": "Znajduje się na parterze" + "email": { + "question": "Jaki jest adres e-mail do {title()}?" }, - "3": { - "then": "Znajduje się na pierwszym piętrze" + "level": { + "mappings": { + "0": { + "then": "Znajduje się pod ziemią" + }, + "1": { + "then": "Znajduje się na parterze" + }, + "2": { + "then": "Znajduje się na parterze" + }, + "3": { + "then": "Znajduje się na pierwszym piętrze" + } + }, + "question": "Na jakim poziomie znajduje się ta funkcja?", + "render": "Znajduje się na {level} piętrze" + }, + "opening_hours": { + "question": "Jakie są godziny otwarcia {title()}?", + "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 {title()}?" + }, + "service:electricity": { + "mappings": { + "0": { + "then": "W budynku znajduje się wiele gniazdek elektrycznych, gdzie klienci mogą naładować swoje urządzenia" + }, + "1": { + "then": "W budynku znajduje się kilka gniazdek elektrycznych, gdzie klienci mogą naładować swoje urządzenia" + }, + "2": { + "then": "W budynku nie ma gniazdek elektrycznych dostępnych dla klientów, ale mogą zostać one udostępnione po spytaniu obsługi" + }, + "3": { + "then": "W budynku nie ma gniazdek elektrycznych dostępnych dla klientów" + } + }, + "question": "Czy w tym przybytku znajdują się gniazdka elektryczne, gdzie klienci mogą naładować swoje urządzenia?" + }, + "website": { + "question": "Jaka jest strona internetowa {title()}?" + }, + "wheelchair-access": { + "mappings": { + "0": { + "then": "W tym miejscu zainstalowane zostały udogodnienia dla osób na wózkach inwalidzkich" + }, + "1": { + "then": "To miejsce jest łatwo dostępne dla osób na wózkach inwalidzkich" + }, + "2": { + "then": "To miejsce jest dostępne dla osób na wózkach inwalidzkich, ale z pewnymi trudnościami" + }, + "3": { + "then": "To miejsce jest niedostępne dla osób na wózkach inwalidzkich" + } + }, + "question": "Czy to miejsce jest dostępne dla osób na wózkach inwalidzkich?" + }, + "wikipedia": { + "mappings": { + "0": { + "then": "Link do strony Wikipedii nie został jeszcze określony" + } + }, + "question": "Jaki jest powiązany obiekt Wikidata?" + }, + "wikipedialink": { + "mappings": { + "0": { + "then": "Brak linku do strony Wikipedii" + } + }, + "question": "Jaki jest link do strony Wikipedii?" } - }, - "question": "Na jakim poziomie znajduje się ta funkcja?", - "render": "Znajduje się na {level} piętrze" - }, - "opening_hours": { - "question": "Jakie są godziny otwarcia {name}?", - "render": "

Godziny otwarcia

{opening_hours_table(opening_hours)}" - }, - "phone": { - "question": "Jaki jest numer telefonu do {name}?" - }, - "website": { - "question": "Jaka jest strona internetowa {name}?" } - } } \ No newline at end of file diff --git a/langs/shared-questions/pt.json b/langs/shared-questions/pt.json index ea89c725d7..f3ccf28f45 100644 --- a/langs/shared-questions/pt.json +++ b/langs/shared-questions/pt.json @@ -1,99 +1,116 @@ { - "undefined": { - "description": { - "question": "Ainda há algo de relevante que não tenha podido dar nas perguntas anteriores? Adicione-o aqui.
Não repita factos já declarados" - }, - "dog-access": { - "mappings": { - "0": { - "then": "Os cães são permitidos" + "shared_questions": { + "description": { + "question": "Ainda há algo de relevante que não tenha podido dar nas perguntas anteriores? Adicione-o aqui.
Não repita factos já declarados" }, - "1": { - "then": "Os cães não são permitidos" + "dog-access": { + "mappings": { + "0": { + "then": "Os cães são permitidos" + }, + "1": { + "then": "Os cães não são permitidos" + }, + "2": { + "then": "Os cães são permitidos, mas têm de ser presos pela trela" + }, + "3": { + "then": "Os cães são permitidos e podem correr livremente" + } + }, + "question": "Os cães são permitidos neste estabelecimento?" }, - "2": { - "then": "Os cães são permitidos, mas têm de ser presos pela trela" + "email": { + "question": "Qual é o endereço de e-mail de {title()}?" }, - "3": { - "then": "Os cães são permitidos e podem correr livremente" + "level": { + "mappings": { + "0": { + "then": "Está no subsolo" + }, + "1": { + "then": "Está ao nível do rés-do-chão" + }, + "2": { + "then": "Está ao nível do rés-do-chão" + }, + "3": { + "then": "Está no primeiro andar" + } + }, + "question": "Em que nível se encontra este elemento?", + "render": "Está no {level}º andar" + }, + "opening_hours": { + "question": "Qual é o horário de funcionamento de {title()}?", + "render": "

Horário de funcionamento

{opening_hours_table(opening_hours)}" + }, + "payment-options": { + "mappings": { + "0": { + "then": "Aceitam pagamento com dinheiro aqui" + }, + "1": { + "then": "Aceitam pagamento com cartões bancários aqui" + } + }, + "question": "Que métodos de pagamento são aceites aqui?" + }, + "phone": { + "question": "Qual é o número de telefone de {title()}?" + }, + "service:electricity": { + "mappings": { + "0": { + "then": "Há muitas tomadas elétricas disponíveis para clientes sentados no interior, onde estes podem carregar os seus dispositivos eletrónicos" + }, + "1": { + "then": "Há algumas tomadas elétricas disponíveis para clientes sentados no interior, onde estes podem carregar os seus dispositivos eletrónicos" + }, + "2": { + "then": "Não há tomadas elétricas disponíveis para clientes sentados no interior, mas pode-se pedir aos funcionários para carregar dispositivos eletrónicos" + }, + "3": { + "then": "Não há tomadas elétricas disponíveis para clientes sentados no interior" + } + }, + "question": "Esta infraestrutura tem tomadas elétricas, disponíveis para os clientes quando estão no interior?" + }, + "website": { + "question": "Qual é o sítio web de {title()}?" + }, + "wheelchair-access": { + "mappings": { + "0": { + "then": "Este lugar está especialmente adaptado para utilizadores de cadeira de rodas" + }, + "1": { + "then": "Este lugar é de fácil acesso com uma cadeira de rodas" + }, + "2": { + "then": "É possível chegar a este local em cadeira de rodas, mas não é fácil" + }, + "3": { + "then": "Este lugar não é acessível com uma cadeira de rodas" + } + }, + "question": "Este lugar é acessível a utilizadores de cadeiras de rodas?" + }, + "wikipedia": { + "mappings": { + "0": { + "then": "Ainda não foi vinculada nenhuma página da Wikipédia" + } + }, + "question": "Qual é a entidade Wikidata correspondente?" + }, + "wikipedialink": { + "mappings": { + "0": { + "then": "Não vinculado à Wikipédia" + } + }, + "question": "Qual é o item correspondente na Wikipédia?" } - }, - "question": "Os cães são permitidos neste estabelecimento?" - }, - "email": { - "question": "Qual é o endereço de e-mail de {name}?" - }, - "level": { - "mappings": { - "0": { - "then": "Está no subsolo" - }, - "1": { - "then": "Está ao nível do rés-do-chão" - }, - "2": { - "then": "Está ao nível do rés-do-chão" - }, - "3": { - "then": "Está no primeiro andar" - } - }, - "question": "Em que nível se encontra este elemento?", - "render": "Está no {level}º andar" - }, - "opening_hours": { - "question": "Qual é o horário de funcionamento de {name}?", - "render": "

Horário de funcionamento

{opening_hours_table(opening_hours)}" - }, - "payment-options": { - "mappings": { - "0": { - "then": "Aceitam pagamento com dinheiro aqui" - }, - "1": { - "then": "Aceitam pagamento com cartões bancários aqui" - } - }, - "question": "Que métodos de pagamento são aceites aqui?" - }, - "phone": { - "question": "Qual é o número de telefone de {name}?" - }, - "website": { - "question": "Qual é o sítio web de {name}?" - }, - "wheelchair-access": { - "mappings": { - "0": { - "then": "Este lugar está especialmente adaptado para utilizadores de cadeira de rodas" - }, - "1": { - "then": "Este lugar é de fácil acesso com uma cadeira de rodas" - }, - "2": { - "then": "É possível chegar a este local em cadeira de rodas, mas não é fácil" - }, - "3": { - "then": "Este lugar não é acessível com uma cadeira de rodas" - } - }, - "question": "Este lugar é acessível a utilizadores de cadeiras de rodas?" - }, - "wikipedia": { - "mappings": { - "0": { - "then": "Ainda não foi vinculada nenhuma página da Wikipédia" - } - }, - "question": "Qual é a entidade Wikidata correspondente?" - }, - "wikipedialink": { - "mappings": { - "0": { - "then": "Não vinculado à Wikipédia" - } - }, - "question": "Qual é o item correspondente na Wikipédia?" } - } } \ No newline at end of file diff --git a/langs/shared-questions/pt_BR.json b/langs/shared-questions/pt_BR.json index 1f47d793ce..a405927a9d 100644 --- a/langs/shared-questions/pt_BR.json +++ b/langs/shared-questions/pt_BR.json @@ -1,66 +1,66 @@ { - "undefined": { - "description": { - "question": "Ainda há algo de relevante que não pôde dar nas perguntas anteriores? Adicione aqui.
Não repita fatos já declarados" - }, - "email": { - "question": "Qual o endereço de e-mail de {name}?" - }, - "level": { - "mappings": { - "0": { - "then": "Localizado no subsolo" + "shared_questions": { + "description": { + "question": "Ainda há algo de relevante que não pôde dar nas perguntas anteriores? Adicione aqui.
Não repita fatos já declarados" }, - "1": { - "then": "Localizado no térreo" + "email": { + "question": "Qual o endereço de e-mail de {title()}?" }, - "2": { - "then": "Localizado no térreo" + "level": { + "mappings": { + "0": { + "then": "Localizado no subsolo" + }, + "1": { + "then": "Localizado no térreo" + }, + "2": { + "then": "Localizado no térreo" + }, + "3": { + "then": "Localizado no primeiro andar" + } + }, + "question": "Em que nível esse recurso está localizado?", + "render": "Localizado no {level}o andar" }, - "3": { - "then": "Localizado no primeiro andar" + "opening_hours": { + "question": "Qual o horário de funcionamento de {title()}?", + "render": "

Horário de funcionamento

{opening_hours_table(opening_hours)}" + }, + "payment-options": { + "mappings": { + "0": { + "then": "Dinheiro é aceito aqui" + }, + "1": { + "then": "Cartões de pagamento são aceitos aqui" + } + }, + "question": "Quais métodos de pagamento são aceitos aqui?" + }, + "phone": { + "question": "Qual o número de telefone de {title()}?" + }, + "website": { + "question": "Qual o site de {title()}?" + }, + "wheelchair-access": { + "mappings": { + "0": { + "then": "Este lugar é especialmente adaptado para usuários de cadeira de rodas" + }, + "1": { + "then": "Este lugar é facilmente acessível com uma cadeira de rodas" + }, + "2": { + "then": "É possível chegar a esse local em uma cadeira de rodas, mas não é fácil" + }, + "3": { + "then": "Este lugar não é alcançável com uma cadeira de rodas" + } + }, + "question": "Este lugar é acessível com uma cadeira de rodas?" } - }, - "question": "Em que nível esse recurso está localizado?", - "render": "Localizado no {level}o andar" - }, - "opening_hours": { - "question": "Qual o horário de funcionamento de {name}?", - "render": "

Horário de funcionamento

{opening_hours_table(opening_hours)}" - }, - "payment-options": { - "mappings": { - "0": { - "then": "Dinheiro é aceito aqui" - }, - "1": { - "then": "Cartões de pagamento são aceitos aqui" - } - }, - "question": "Quais métodos de pagamento são aceitos aqui?" - }, - "phone": { - "question": "Qual o número de telefone de {name}?" - }, - "website": { - "question": "Qual o site de {name}?" - }, - "wheelchair-access": { - "mappings": { - "0": { - "then": "Este lugar é especialmente adaptado para usuários de cadeira de rodas" - }, - "1": { - "then": "Este lugar é facilmente acessível com uma cadeira de rodas" - }, - "2": { - "then": "É possível chegar a esse local em uma cadeira de rodas, mas não é fácil" - }, - "3": { - "then": "Este lugar não é alcançável com uma cadeira de rodas" - } - }, - "question": "Este lugar é acessível com uma cadeira de rodas?" } - } } \ No newline at end of file diff --git a/langs/shared-questions/ru.json b/langs/shared-questions/ru.json index 441b15343d..224cb218da 100644 --- a/langs/shared-questions/ru.json +++ b/langs/shared-questions/ru.json @@ -1,38 +1,86 @@ { - "undefined": { - "description": { - "question": "Есть ли ещё что-то важное, о чём вы не смогли рассказать в предыдущих вопросах? Добавьте это здесь.
Не повторяйте уже изложенные факты" - }, - "email": { - "question": "Какой адрес электронной почты у {name}?" - }, - "level": { - "mappings": { - "0": { - "then": "Расположено под землей" + "shared_questions": { + "description": { + "question": "Есть ли ещё что-то важное, о чём вы не смогли рассказать в предыдущих вопросах? Добавьте это здесь.
Не повторяйте уже изложенные факты" }, - "1": { - "then": "Расположено на первом этаже" + "dog-access": { + "mappings": { + "0": { + "then": "Собаки разрешены" + }, + "1": { + "then": "С собаками не впускают" + }, + "2": { + "then": "Собак впускают, но на поводке" + }, + "3": { + "then": "Собак свободно впускают" + } + }, + "question": "Впускают ли собак в это здание?" }, - "2": { - "then": "Расположено на первом этаже" + "email": { + "question": "Какой адрес электронной почты у {title()}?" }, - "3": { - "then": "Расположено на первом этаже" + "level": { + "mappings": { + "0": { + "then": "Расположено под землей" + }, + "1": { + "then": "Расположено на первом этаже" + }, + "2": { + "then": "Расположено на первом этаже" + }, + "3": { + "then": "Расположено на первом этаже" + } + }, + "question": "На каком этаже находится этот объект?", + "render": "Расположено на {level}ом этаже" + }, + "opening_hours": { + "question": "Какое время работы у {title()}?", + "render": "

Часы работы

{opening_hours_table(opening_hours)}" + }, + "payment-options": { + "mappings": { + "0": { + "then": "Здесь принимают наличными" + }, + "1": { + "then": "Здесь принимают банковские карты" + } + }, + "question": "Какие способы оплаты здесь принимают?" + }, + "phone": { + "question": "Какой номер телефона у {title()}?" + }, + "website": { + "question": "Какой сайт у {title()}?" + }, + "wheelchair-access": { + "mappings": { + "0": { + "then": "Это место подходит для людей на инвалидной коляске" + }, + "1": { + "then": "До этого места легко добраться на инвалидной коляске" + }, + "2": { + "then": "До этого места можно добраться, но не просто" + } + } + }, + "wikipedia": { + "mappings": { + "0": { + "then": "Никакой страницы на Википедии не было прикреплено" + } + } } - }, - "question": "На каком этаже находится этот объект?", - "render": "Расположено на {level}ом этаже" - }, - "opening_hours": { - "question": "Какое время работы у {name}?", - "render": "

Часы работы

{opening_hours_table(opening_hours)}" - }, - "phone": { - "question": "Какой номер телефона у {name}?" - }, - "website": { - "question": "Какой сайт у {name}?" } - } } \ No newline at end of file diff --git a/langs/shared-questions/sv.json b/langs/shared-questions/sv.json index b4c946d6a7..30c4c2b82d 100644 --- a/langs/shared-questions/sv.json +++ b/langs/shared-questions/sv.json @@ -1,34 +1,116 @@ { - "undefined": { - "email": { - "question": "Vad är e-postadressen till {name}?" - }, - "level": { - "mappings": { - "0": { - "then": "Ligger under jorden" + "shared_questions": { + "description": { + "question": "Finns det fortfarande någonting relevant som du inte kunde ge i de föregående frågorna? Lägg till det här.
Repetera inte redan angivna fakta" }, - "1": { - "then": "Ligger på bottenvåningen" + "dog-access": { + "mappings": { + "0": { + "then": "Hundar tillåts" + }, + "1": { + "then": "Hundar tillåts inte" + }, + "2": { + "then": "Hundar tillåts, men de måste vara kopplade" + }, + "3": { + "then": "Hundar tillåts och får springa fritt omkring" + } + }, + "question": "Tillåts hundar i den här affären?" }, - "2": { - "then": "Ligger på bottenvåningen" + "email": { + "question": "Vad är e-postadressen till {title()}?" }, - "3": { - "then": "Ligger på första våningen" + "level": { + "mappings": { + "0": { + "then": "Ligger under jorden" + }, + "1": { + "then": "Ligger på bottenvåningen" + }, + "2": { + "then": "Ligger på bottenvåningen" + }, + "3": { + "then": "Ligger på första våningen" + } + }, + "question": "På vilken nivå finns den här funktionen?", + "render": "Ligger på {level}:e våningen" + }, + "opening_hours": { + "question": "Vilka är öppettiderna för {title()}?", + "render": "

Öppettider

{opening_hours_table(opening_hours)}" + }, + "payment-options": { + "mappings": { + "0": { + "then": "Pengar accepteras här" + }, + "1": { + "then": "Betalningskort accepteras här" + } + }, + "question": "Vilka betalningsmetoder accepteras här?" + }, + "phone": { + "question": "Vad är telefonnumret till {title()}?" + }, + "service:electricity": { + "mappings": { + "0": { + "then": "Det finns gott om hushållsuttag tillgängliga för kunder som sitter inomhus, där de kan ladda sin elektronik" + }, + "1": { + "then": "Det finns ett fåtal hushållsuttag tillgängliga för kunder som sitter inomhus, där de kan ladda sin elektronik" + }, + "2": { + "then": "Det finns inga uttag tillgängliga inomhus för kunder, men att ladda kan vara möjligt om personalen tillfrågas" + }, + "3": { + "then": "Det finns inga hushållsuttag tillgängliga för kunder som sitter inomhus" + } + }, + "question": "Har den här bekvämligheten eluttag tillgängliga för kunder när de är inne?" + }, + "website": { + "question": "Vad är webbplatsen för {title()}?" + }, + "wheelchair-access": { + "mappings": { + "0": { + "then": "Det här stället är speciellt anpassat för rullstolsburna användare" + }, + "1": { + "then": "Denna plats är lätt att nå med rullstol" + }, + "2": { + "then": "Det är möjligt att nå den här platsen i en rullstol, men det är inte lätt" + }, + "3": { + "then": "Den här platsen kan inte nås med en rullstol" + } + }, + "question": "Är det här stället tillgängligt med en rullstol?" + }, + "wikipedia": { + "mappings": { + "0": { + "then": "Ingen Wikipedia-sida har länkats än" + } + }, + "question": "Vad är den motsvarande Wikidata-enheten?" + }, + "wikipedialink": { + "mappings": { + "0": { + "then": "Inte länkad med Wikipedia" + } + }, + "question": "Vad är det motsvarande objektet på Wikipedia?" } - }, - "render": "Ligger på {level}:e våningen" - }, - "opening_hours": { - "question": "Vilka är öppettiderna för {name}?", - "render": "

Öppettider

{opening_hours_table(opening_hours)}" - }, - "phone": { - "question": "Vad är telefonnumret till {name}?" - }, - "website": { - "question": "Vad är webbplatsen för {name}?" } - } } \ No newline at end of file diff --git a/langs/shared-questions/zh_Hant.json b/langs/shared-questions/zh_Hant.json index cb2f72c44c..e5ab9caf3a 100644 --- a/langs/shared-questions/zh_Hant.json +++ b/langs/shared-questions/zh_Hant.json @@ -1,38 +1,131 @@ { - "undefined": { - "description": { - "question": "有什麼相關的資訊你無法在先前的問題回應的嗎?請加在這邊吧。
不要重覆答覆已經知道的事情" - }, - "email": { - "question": "{name} 的電子郵件地址是什麼?" - }, - "level": { - "mappings": { - "0": { - "then": "位於地下" + "shared_questions": { + "description": { + "question": "有什麼相關的資訊你無法在先前的問題回應的嗎?請加在這邊吧。
不要重覆答覆已經知道的事情" }, - "1": { - "then": "位於 1 樓" + "dog-access": { + "mappings": { + "0": { + "then": "允許犬隻" + }, + "1": { + "then": "允許犬隻" + }, + "2": { + "then": "允許犬隻,但需要掛牽繩" + }, + "3": { + "then": "允許犬隻而且可以自由跑動" + } + }, + "question": "這間商業空間是否允許犬隻?" }, - "2": { - "then": "位於 1 樓" + "email": { + "question": "{title()} 的電子郵件地址是什麼?" }, - "3": { - "then": "位於 2 樓" + "level": { + "mappings": { + "0": { + "then": "位於地下" + }, + "1": { + "then": "位於 1 樓" + }, + "2": { + "then": "位於 1 樓" + }, + "3": { + "then": "位於 2 樓" + }, + "4": { + "then": "位於地下一樓" + } + }, + "question": "此圖徽位於哪個樓層/層級?", + "render": "位於 {level} 樓" + }, + "opening_hours": { + "question": "{title()} 的開放時間是什麼?", + "render": "

開放時間

{opening_hours_table(opening_hours)}" + }, + "payment-options": { + "mappings": { + "0": { + "then": "這邊接受現金" + }, + "1": { + "then": "這邊接受現金卡" + } + }, + "question": "這邊接受那種付款方式?" + }, + "payment-options-advanced": { + "override": { + "mappings+": { + "0": { + "then": "使用專用應用程式付款" + }, + "1": { + "then": "使用會員卡付款" + } + } + } + }, + "phone": { + "question": "{title()} 的電話號碼是什麼?" + }, + "service:electricity": { + "mappings": { + "0": { + "then": "這邊的客戶座位有不少個室內插座,而且可以為電器充電" + }, + "1": { + "then": "這邊客戶座位有一些室內插座,可以為電器充電" + }, + "2": { + "then": "這邊沒有給客戶用的插座,因此可能需要詢問員工是否能充電" + }, + "3": { + "then": "這裡客戶座位沒有室內插座" + } + }, + "question": "這個便利設施有電器設備,能給客戶使用嗎?" + }, + "website": { + "question": "{title()} 網址是什麼?" + }, + "wheelchair-access": { + "mappings": { + "0": { + "then": "這個地方有特別設計給輪椅使用者" + }, + "1": { + "then": "這個地方坐輪椅很容易到達" + }, + "2": { + "then": "這個地方可以坐輪椅到達,但並不容易" + }, + "3": { + "then": "輪椅無法到達這個地方" + } + }, + "question": "這個地方可以坐輪椅到達嗎?" + }, + "wikipedia": { + "mappings": { + "0": { + "then": "還沒有連結到維基百科頁面" + } + }, + "question": "對應的維基資料項目是?" + }, + "wikipedialink": { + "mappings": { + "0": { + "then": "沒有連結到維基百科" + } + }, + "question": "維基百科上對應的項目是什麼?" } - }, - "question": "此圖徽位於哪個樓層/層級?", - "render": "位於 {level} 樓" - }, - "opening_hours": { - "question": "{name} 的開放時間是什麼?", - "render": "

開放時間

{opening_hours_table(opening_hours)}" - }, - "phone": { - "question": "{name} 的電話號碼是什麼?" - }, - "website": { - "question": "{name} 網址是什麼?" } - } } \ No newline at end of file diff --git a/langs/sv.json b/langs/sv.json index 842df07e7e..13e0884f12 100644 --- a/langs/sv.json +++ b/langs/sv.json @@ -1,63 +1,73 @@ { - "general": { - "opening_hours": { - "ph_open": "öppet", - "ph_closed": "stängt", - "ph_not_known": " ", - "open_24_7": "Öppet dygnet runt", - "closed_permanently": "Stängt tills vidare", - "closed_until": "Stängt till", - "openTill": "till", - "opensAt": "från", - "open_during_ph": "Om det är en röd dag är det här stället", - "error_loading": "Fel: kunde inte visualisera öppettiderna." + "centerMessage": { + "loadingData": "Laddar data…", + "ready": "Klar!", + "retrying": "Det gick inte att ladda in data. Försöker igen om {count} sekunder…", + "zoomIn": "Zooma in för att visa eller redigera data" }, - "weekdays": { - "sunday": "Söndag", - "saturday": "Lördag", - "friday": "Fredag", - "thursday": "Torsdag", - "wednesday": "Onsdag", - "tuesday": "Tisdag", - "monday": "Måndag", - "abbreviations": { - "friday": "Fre", - "wednesday": "Ons", - "tuesday": "Tis", - "thursday": "Tor", - "sunday": "Sön", - "saturday": "Lör", - "monday": "Mån" - } + "delete": { + "cancel": "Avbryt" }, - "cancel": "Avbryt" - }, - "centerMessage": { - "ready": "Klar!", - "zoomIn": "Zooma in för att visa eller redigera data", - "loadingData": "Laddar data…", - "retrying": "Det gick inte att ladda in data. Försöker igen om {count} sekunder…" - }, - "image": { - "isDeleted": "Borttagen", - "doDelete": "Ta bort bild", - "dontDelete": "Avbryt", - "uploadDone": "Din bild har lagts till. Tack för att du bidrar!", - "respectPrivacy": "Fotografera inte personer eller registreringsskyltar. Ladda inte upp från Google Maps, Google Streetview eller andra upphovsrättsskyddade källor.", - "uploadFailed": "Misslyckades med att ladda upp din bild. Är du säker på att du är uppkopplad och tredjeparts-API:er tillåts? Brave eller uMatrix kanske blockerar dem.", - "ccb": "under CC-BY-licensen", - "ccbs": "under CC-BY-SA-licensen", - "cco": "med fri användning (public domain)", - "willBePublished": "Din bild kommer att publiceras: ", - "pleaseLogin": "Logga in för att lägga till en bild", - "uploadingMultiple": "Laddar upp {count} bilder…", - "uploadingPicture": "Laddar upp din bild…", - "addPicture": "Lägg till bild" - }, - "split": { - "cancel": "Avbryt" - }, - "delete": { - "cancel": "Avbryt" - } -} + "general": { + "cancel": "Avbryt", + "opening_hours": { + "closed_permanently": "Stängt tills vidare", + "closed_until": "Stängt till {date}", + "error_loading": "Fel: kunde inte visualisera öppettiderna.", + "openTill": "till", + "open_24_7": "Öppet dygnet runt", + "open_during_ph": "Om det är en röd dag är det här stället", + "opensAt": "från", + "ph_closed": "stängt", + "ph_not_known": " ", + "ph_open": "öppet" + }, + "weekdays": { + "abbreviations": { + "friday": "Fre", + "monday": "Mån", + "saturday": "Lör", + "sunday": "Sön", + "thursday": "Tor", + "tuesday": "Tis", + "wednesday": "Ons" + }, + "friday": "Fredag", + "monday": "Måndag", + "saturday": "Lördag", + "sunday": "Söndag", + "thursday": "Torsdag", + "tuesday": "Tisdag", + "wednesday": "Onsdag" + } + }, + "image": { + "addPicture": "Lägg till bild", + "ccb": "under CC-BY-licensen", + "ccbs": "under CC-BY-SA-licensen", + "cco": "med fri användning (public domain)", + "doDelete": "Ta bort bild", + "dontDelete": "Avbryt", + "isDeleted": "Borttagen", + "pleaseLogin": "Logga in för att lägga till en bild", + "respectPrivacy": "Fotografera inte personer eller registreringsskyltar. Ladda inte upp från Google Maps, Google Streetview eller andra upphovsrättsskyddade källor.", + "toBig": "Din bild är för stor då den är {actual_size}. Vänligen använd endast bilder som är högst {max_size}", + "uploadDone": "Din bild har lagts till. Tack för att du bidrar!", + "uploadFailed": "Misslyckades med att ladda upp din bild. Är du säker på att du är uppkopplad och tredjeparts-API:er tillåts? Brave eller uMatrix kanske blockerar dem.", + "uploadMultipleDone": "{count} bilder har lagts till. Tack för att du hjälper till!", + "uploadingMultiple": "Laddar upp {count} bilder…", + "uploadingPicture": "Laddar upp din bild…", + "willBePublished": "Din bild kommer att publiceras: " + }, + "index": { + "#": "De här texterna visas ovanför tema-knapparna när inget tema är laddat", + "featuredThemeTitle": "Utvalda den här veckan", + "intro": "MapComplete är en OpenStreetMap-visare och redigerare som visar dig information om funktioner för ett specifikt tema och tillåter att det uppdateras.", + "pickTheme": "Välj ett tema nedan för att börja.", + "title": "Välkommen till MapComplete" + }, + "split": { + "cancel": "Avbryt", + "split": "Dela" + } +} \ No newline at end of file diff --git a/langs/themes/ca.json b/langs/themes/ca.json index 74dfc60b85..475988277d 100644 --- a/langs/themes/ca.json +++ b/langs/themes/ca.json @@ -1,49 +1,49 @@ { - "aed": { - "description": "En aquest mapa , qualsevol pot trobar i marcar els desfibril·ladors externs automàtics més propers", - "title": "Mapa obert de desfibril·ladors (DEA)" - }, - "climbing": { - "layers": { - "0": { - "tagRenderings": { - "climbing_club-name": { - "render": "{name}" - } + "aed": { + "description": "En aquest mapa , qualsevol pot trobar i marcar els desfibril·ladors externs automàtics més propers", + "title": "Mapa obert de desfibril·ladors (DEA)" + }, + "climbing": { + "layers": { + "0": { + "tagRenderings": { + "climbing_club-name": { + "render": "{name}" + } + } + }, + "1": { + "tagRenderings": { + "name": { + "render": "{name}" + } + } + }, + "2": { + "tagRenderings": { + "Name": { + "render": "{name}" + } + } + }, + "3": { + "tagRenderings": { + "name": { + "render": "{name}" + } + } + }, + "4": { + "tagRenderings": { + "climbing-opportunity-name": { + "render": "{name}" + } + } + } } - }, - "1": { - "tagRenderings": { - "name": { - "render": "{name}" - } - } - }, - "2": { - "tagRenderings": { - "Name": { - "render": "{name}" - } - } - }, - "3": { - "tagRenderings": { - "name": { - "render": "{name}" - } - } - }, - "4": { - "tagRenderings": { - "climbing-opportunity-name": { - "render": "{name}" - } - } - } + }, + "personal": { + "description": "Crea una interfície basada en totes les capes disponibles de totes les interfícies", + "title": "Interfície personal" } - }, - "personal": { - "description": "Crea una interfície basada en totes les capes disponibles de totes les interfícies", - "title": "Interfície personal" - } } \ No newline at end of file diff --git a/langs/themes/cs.json b/langs/themes/cs.json new file mode 100644 index 0000000000..9e26dfeeb6 --- /dev/null +++ b/langs/themes/cs.json @@ -0,0 +1 @@ +{} \ No newline at end of file diff --git a/langs/themes/de.json b/langs/themes/de.json index 578cbd0b80..b00308813d 100644 --- a/langs/themes/de.json +++ b/langs/themes/de.json @@ -1,1166 +1,1074 @@ { - "aed": { - "description": "Auf dieser Karte kann man nahe gelegene Defibrillatoren finden und markieren", - "title": "AED-Karte öffnen" - }, - "artwork": { - "description": "Willkommen bei der Freien Kunst-Karte, einer Karte mit Statuen, Büsten, Grafitti, ... auf der ganzen Welt", - "title": "Freie Kunstwerk-Karte" - }, - "benches": { - "description": "Diese Karte zeigt alle Sitzbänke, die in OpenStreetMap eingetragen sind: Einzeln stehende Bänke und Bänke, die zu Haltestellen oder Unterständen gehören. Mit einem OpenStreetMap-Account können Sie neue Bänke eintragen oder Detailinformationen existierender Bänke bearbeiten.", - "shortDescription": "Eine Karte aller Sitzbänke", - "title": "Sitzbänke" - }, - "bicyclelib": { - "description": "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", - "title": "Fahrradbibliothek" - }, - "binoculars": { - "description": "Eine Karte mit festinstallierten Ferngläsern. Man findet sie typischerweise an touristischen Orten, Aussichtspunkten, auf Aussichtstürmen oder gelegentlich in einem Naturschutzgebiet.", - "shortDescription": "Eine Karte mit festinstallierten Ferngläsern", - "title": "Ferngläser" - }, - "bookcases": { - "description": "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.", - "title": "Öffentliche Bücherschränke Karte" - }, - "cafes_and_pubs": { - "title": "Cafés und Kneipen" - }, - "campersite": { - "description": "Auf dieser Seite finden Sie alle offiziellen Wohnmobilstellplätze und Orte zur Entsorgung von Schmutzwasser. Sie können Details über die angebotenen Dienstleistungen und die Kosten hinzufügen. Fügen Sie Bilder und Bewertungen hinzu. Dies ist eine Webseite und eine Webapp. Die Daten werden in OpenStreetMap gespeichert, so dass sie für immer kostenlos sind und von jeder App weiterverwendet werden können.", - "layers": { - "0": { - "description": "Wohnmobilstellplätze", - "name": "Wohnmobilstellplätze", - "presets": { - "0": { - "description": "Fügen Sie einen neuen offiziellen Wohnmobilstellplatz hinzu. Dies sind ausgewiesene Plätze, an denen Sie in Ihrem Wohnmobil übernachten können. Sie können wie ein richtiger Campingplatz oder nur wie ein Parkplatz aussehen. Möglicherweise sind sie gar nicht ausgeschildert, sondern nur in einem Gemeindebeschluss festgelegt. Ein normaler Parkplatz für Wohnmobile, auf dem übernachten nicht zulässig ist, ist kein Wohnmobilstellplatz. ", - "title": "Wohnmobilstellplatz" - } - }, - "tagRenderings": { - "caravansites-capacity": { - "question": "Wie viele Wohnmobile können hier parken? (Überspringen, wenn es keine offensichtliche Anzahl von Stellplätzen oder erlaubten Fahrzeugen gibt)", - "render": "{capacity} Wohnmobile können diesen Platz gleichzeitig nutzen" - }, - "caravansites-charge": { - "question": "Wie hoch ist die Gebühr an diesem Ort?", - "render": "Die Gebühr beträgt {charge}" - }, - "caravansites-description": { - "question": "Möchten Sie eine allgemeine Beschreibung für diesen Ort hinzufügen? (Bitte wiederholen Sie keine Informationen, die Sie bereits zuvor angegeben haben. Bitte bleiben Sie objektiv - Meinungen gehen in die Bewertungen ein)", - "render": "Mehr Details über diesen Ort: {description}" - }, - "caravansites-fee": { - "mappings": { - "0": { - "then": "Sie müssen für die Nutzung bezahlen" - }, - "1": { - "then": "Nutzung kostenlos" - } - }, - "question": "Wird hier eine Gebühr erhoben?" - }, - "caravansites-internet": { - "mappings": { - "0": { - "then": "Internetzugang ist vorhanden" - }, - "1": { - "then": "Internetzugang ist vorhanden" - }, - "2": { - "then": "Kein Internetzugang vorhanden" - } - }, - "question": "Ist an diesem Ort ein Internetzugang vorhanden?" - }, - "caravansites-internet-fee": { - "mappings": { - "0": { - "then": "Der Internetzugang ist gebührenpflichtig" - }, - "1": { - "then": "Der Internetzugang ist kostenlos" - } - }, - "question": "Ist der Internetzugang gebührenpflichtig?" - }, - "caravansites-long-term": { - "mappings": { - "0": { - "then": "Ja, es gibt einige Plätze für Langzeitmieten, aber Sie können auch tageweise bleiben" - }, - "1": { - "then": "Nein, hier gibt es keine Dauergäste" - }, - "2": { - "then": "Es sind nur Plätze für Dauercamper vorhanden (wenn Sie diese Antwort auswählen, wird dieser Ort wird von der Karte verschwinden)" - } - }, - "question": "Gibt es a diesem Ort Plätze für Dauercamper?" - }, - "caravansites-name": { - "question": "Wie heißt dieser Ort?", - "render": "Dieser Ort heißt {name}" - }, - "caravansites-sanitary-dump": { - "mappings": { - "0": { - "then": "Dieser Ort hat eine sanitäre Entsorgungsstation" - }, - "1": { - "then": "Dieser Ort hat keine sanitäre Entsorgungsstation" - } - }, - "question": "Hat dieser Ort eine sanitäre Entsorgungsstation?" - }, - "caravansites-toilets": { - "mappings": { - "0": { - "then": "Dieser Ort verfügt über Toiletten" - }, - "1": { - "then": "Dieser Ort verfügt nicht über Toiletten" - } - }, - "question": "Verfügt dieser Ort über Toiletten?" - }, - "caravansites-website": { - "question": "Hat dieser Ort eine Webseite?", - "render": "Offizielle Webseite: {website}" - } - }, - "title": { - "mappings": { - "0": { - "then": "Unbenannter Wohnmobilstellplatz" - } - }, - "render": "Wohnmobilstellplatz {name}" - } - }, - "1": { - "description": "Sanitäre Entsorgungsstationen", - "name": "Sanitäre Entsorgungsstationen", - "presets": { - "0": { - "description": "Fügen Sie eine neue sanitäre Entsorgungsstation hinzu. Hier können Camper Abwasser oder chemischen Toilettenabfälle entsorgen. Oft gibt es auch Trinkwasser und Strom.", - "title": "Sanitäre Entsorgungsstation" - } - }, - "tagRenderings": { - "dumpstations-access": { - "mappings": { - "0": { - "then": "Sie benötigen einen Schlüssel/Code zur Benutzung" - }, - "1": { - "then": "Sie müssen Kunde des Campingplatzes sein, um diesen Ort nutzen zu können" - }, - "2": { - "then": "Jeder darf diese sanitäre Entsorgungsstation nutzen" - }, - "3": { - "then": "Jeder darf diese sanitäre Entsorgungsstation nutzen" - } - }, - "question": "Wer darf diese sanitäre Entsorgungsstation nutzen?" - }, - "dumpstations-charge": { - "question": "Wie hoch ist die Gebühr an diesem Ort?", - "render": "Die Gebühr beträgt {charge}" - }, - "dumpstations-chemical-waste": { - "mappings": { - "0": { - "then": "Hier können Sie chemische Toilettenabfälle entsorgen" - }, - "1": { - "then": "Hier können Sie keine chemischen Toilettenabfälle entsorgen" - } - }, - "question": "Können Sie hier chemische Toilettenabfälle entsorgen?" - }, - "dumpstations-fee": { - "mappings": { - "0": { - "then": "Sie müssen für die Nutzung bezahlen" - }, - "1": { - "then": "Nutzung kostenlos" - } - }, - "question": "Wird hier eine Gebühr erhoben?" - }, - "dumpstations-grey-water": { - "mappings": { - "0": { - "then": "Hier können Sie Brauch-/Grauwasser entsorgen" - }, - "1": { - "then": "Hier können Sie kein Brauch-/Grauwasser entsorgen" - } - }, - "question": "Können Sie hier Brauch-/Grauwasser entsorgen?" - }, - "dumpstations-network": { - "question": "Zu welchem Verbund/Netzwerk gehört dieser Ort? (Überspringen, wenn nicht zutreffend)", - "render": "Diese Station gehört zum Verbund/Netzwerk {network}" - }, - "dumpstations-waterpoint": { - "mappings": { - "0": { - "then": "Dieser Ort hat eine Wasserstelle" - }, - "1": { - "then": "Dieser Ort hat keine Wasserstelle" - } - }, - "question": "Hat dieser Ort eine Wasserstelle?" - } - }, - "title": { - "mappings": { - "0": { - "then": "Entsorgungsstation" - } - }, - "render": "Entsorgungsstation {name}" - } - } + "aed": { + "description": "Auf dieser Karte kann man nahe gelegene Defibrillatoren finden und markieren", + "title": "AED-Karte öffnen" }, - "overrideAll": { - "tagRenderings+": { - "0": { - "question": "Wer betreibt diesen Ort?", - "render": "Dieser Ort wird betrieben von {operator}" - }, - "1": { - "mappings": { + "artwork": { + "description": "Willkommen bei der Freien Kunst-Karte, einer Karte mit Statuen, Büsten, Grafitti, ... auf der ganzen Welt", + "title": "Freie Kunstwerk-Karte" + }, + "benches": { + "description": "Diese Karte zeigt alle Sitzbänke, die in OpenStreetMap eingetragen sind: Einzeln stehende Bänke und Bänke, die zu Haltestellen oder Unterständen gehören. Mit einem OpenStreetMap-Account können Sie neue Bänke eintragen oder Detailinformationen existierender Bänke bearbeiten.", + "shortDescription": "Eine Karte aller Sitzbänke", + "title": "Sitzbänke" + }, + "bicyclelib": { + "description": "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", + "title": "Fahrradbibliothek" + }, + "binoculars": { + "description": "Eine Karte mit festinstallierten Ferngläsern. Man findet sie typischerweise an touristischen Orten, Aussichtspunkten, auf Aussichtstürmen oder gelegentlich in einem Naturschutzgebiet.", + "shortDescription": "Eine Karte mit festinstallierten Ferngläsern", + "title": "Ferngläser" + }, + "bookcases": { + "description": "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.", + "title": "Öffentliche Bücherschränke Karte" + }, + "cafes_and_pubs": { + "title": "Cafés und Kneipen" + }, + "campersite": { + "description": "Auf dieser Seite finden Sie alle offiziellen Wohnmobilstellplätze und Orte zur Entsorgung von Schmutzwasser. Sie können Details über die angebotenen Dienstleistungen und die Kosten hinzufügen. Fügen Sie Bilder und Bewertungen hinzu. Dies ist eine Webseite und eine Webapp. Die Daten werden in OpenStreetMap gespeichert, so dass sie für immer kostenlos sind und von jeder App weiterverwendet werden können.", + "layers": { "0": { - "then": "Dieser Ort hat eine Stromversorgung" + "description": "Wohnmobilstellplätze", + "name": "Wohnmobilstellplätze", + "presets": { + "0": { + "description": "Fügen Sie einen neuen offiziellen Wohnmobilstellplatz hinzu. Dies sind ausgewiesene Plätze, an denen Sie in Ihrem Wohnmobil übernachten können. Sie können wie ein richtiger Campingplatz oder nur wie ein Parkplatz aussehen. Möglicherweise sind sie gar nicht ausgeschildert, sondern nur in einem Gemeindebeschluss festgelegt. Ein normaler Parkplatz für Wohnmobile, auf dem übernachten nicht zulässig ist, ist kein Wohnmobilstellplatz. ", + "title": "Wohnmobilstellplatz" + } + }, + "tagRenderings": { + "caravansites-capacity": { + "question": "Wie viele Wohnmobile können hier parken? (Überspringen, wenn es keine offensichtliche Anzahl von Stellplätzen oder erlaubten Fahrzeugen gibt)", + "render": "{capacity} Wohnmobile können diesen Platz gleichzeitig nutzen" + }, + "caravansites-charge": { + "question": "Wie hoch ist die Gebühr an diesem Ort?", + "render": "Die Gebühr beträgt {charge}" + }, + "caravansites-description": { + "question": "Möchten Sie eine allgemeine Beschreibung für diesen Ort hinzufügen? (Bitte wiederholen Sie keine Informationen, die Sie bereits zuvor angegeben haben. Bitte bleiben Sie objektiv - Meinungen gehen in die Bewertungen ein)", + "render": "Mehr Details über diesen Ort: {description}" + }, + "caravansites-fee": { + "mappings": { + "0": { + "then": "Sie müssen für die Nutzung bezahlen" + }, + "1": { + "then": "Nutzung kostenlos" + } + }, + "question": "Wird hier eine Gebühr erhoben?" + }, + "caravansites-internet": { + "mappings": { + "0": { + "then": "Internetzugang ist vorhanden" + }, + "1": { + "then": "Internetzugang ist vorhanden" + }, + "2": { + "then": "Kein Internetzugang vorhanden" + } + }, + "question": "Ist an diesem Ort ein Internetzugang vorhanden?" + }, + "caravansites-internet-fee": { + "mappings": { + "0": { + "then": "Der Internetzugang ist gebührenpflichtig" + }, + "1": { + "then": "Der Internetzugang ist kostenlos" + } + }, + "question": "Ist der Internetzugang gebührenpflichtig?" + }, + "caravansites-long-term": { + "mappings": { + "0": { + "then": "Ja, es gibt einige Plätze für Langzeitmieten, aber Sie können auch tageweise bleiben" + }, + "1": { + "then": "Nein, hier gibt es keine Dauergäste" + }, + "2": { + "then": "Es sind nur Plätze für Dauercamper vorhanden (wenn Sie diese Antwort auswählen, wird dieser Ort wird von der Karte verschwinden)" + } + }, + "question": "Gibt es a diesem Ort Plätze für Dauercamper?" + }, + "caravansites-name": { + "question": "Wie heißt dieser Ort?", + "render": "Dieser Ort heißt {name}" + }, + "caravansites-sanitary-dump": { + "mappings": { + "0": { + "then": "Dieser Ort hat eine sanitäre Entsorgungsstation" + }, + "1": { + "then": "Dieser Ort hat keine sanitäre Entsorgungsstation" + } + }, + "question": "Hat dieser Ort eine sanitäre Entsorgungsstation?" + }, + "caravansites-toilets": { + "mappings": { + "0": { + "then": "Dieser Ort verfügt über Toiletten" + }, + "1": { + "then": "Dieser Ort verfügt nicht über Toiletten" + } + }, + "question": "Verfügt dieser Ort über Toiletten?" + }, + "caravansites-website": { + "question": "Hat dieser Ort eine Webseite?", + "render": "Offizielle Webseite: {website}" + } + }, + "title": { + "mappings": { + "0": { + "then": "Unbenannter Wohnmobilstellplatz" + } + }, + "render": "Wohnmobilstellplatz {name}" + } }, "1": { - "then": "Dieser Ort hat keine Stromversorgung" + "description": "Sanitäre Entsorgungsstationen", + "name": "Sanitäre Entsorgungsstationen", + "presets": { + "0": { + "description": "Fügen Sie eine neue sanitäre Entsorgungsstation hinzu. Hier können Camper Abwasser oder chemischen Toilettenabfälle entsorgen. Oft gibt es auch Trinkwasser und Strom.", + "title": "Sanitäre Entsorgungsstation" + } + }, + "tagRenderings": { + "dumpstations-access": { + "mappings": { + "0": { + "then": "Sie benötigen einen Schlüssel/Code zur Benutzung" + }, + "1": { + "then": "Sie müssen Kunde des Campingplatzes sein, um diesen Ort nutzen zu können" + }, + "2": { + "then": "Jeder darf diese sanitäre Entsorgungsstation nutzen" + }, + "3": { + "then": "Jeder darf diese sanitäre Entsorgungsstation nutzen" + } + }, + "question": "Wer darf diese sanitäre Entsorgungsstation nutzen?" + }, + "dumpstations-charge": { + "question": "Wie hoch ist die Gebühr an diesem Ort?", + "render": "Die Gebühr beträgt {charge}" + }, + "dumpstations-chemical-waste": { + "mappings": { + "0": { + "then": "Hier können Sie chemische Toilettenabfälle entsorgen" + }, + "1": { + "then": "Hier können Sie keine chemischen Toilettenabfälle entsorgen" + } + }, + "question": "Können Sie hier chemische Toilettenabfälle entsorgen?" + }, + "dumpstations-fee": { + "mappings": { + "0": { + "then": "Sie müssen für die Nutzung bezahlen" + }, + "1": { + "then": "Nutzung kostenlos" + } + }, + "question": "Wird hier eine Gebühr erhoben?" + }, + "dumpstations-grey-water": { + "mappings": { + "0": { + "then": "Hier können Sie Brauch-/Grauwasser entsorgen" + }, + "1": { + "then": "Hier können Sie kein Brauch-/Grauwasser entsorgen" + } + }, + "question": "Können Sie hier Brauch-/Grauwasser entsorgen?" + }, + "dumpstations-network": { + "question": "Zu welchem Verbund/Netzwerk gehört dieser Ort? (Überspringen, wenn nicht zutreffend)", + "render": "Diese Station gehört zum Verbund/Netzwerk {network}" + }, + "dumpstations-waterpoint": { + "mappings": { + "0": { + "then": "Dieser Ort hat eine Wasserstelle" + }, + "1": { + "then": "Dieser Ort hat keine Wasserstelle" + } + }, + "question": "Hat dieser Ort eine Wasserstelle?" + } + }, + "title": { + "mappings": { + "0": { + "then": "Entsorgungsstation" + } + }, + "render": "Entsorgungsstation {name}" + } } - }, - "question": "Hat dieser Ort eine Stromversorgung?" - } - } + }, + "overrideAll": { + "tagRenderings+": { + "0": { + "question": "Wer betreibt diesen Ort?", + "render": "Dieser Ort wird betrieben von {operator}" + }, + "1": { + "mappings": { + "0": { + "then": "Dieser Ort hat eine Stromversorgung" + }, + "1": { + "then": "Dieser Ort hat keine Stromversorgung" + } + }, + "question": "Hat dieser Ort eine Stromversorgung?" + } + } + }, + "shortDescription": "Finden Sie Plätze zum Übernachten mit Ihrem Wohnmobil", + "title": "Wohnmobilstellplätze" }, - "shortDescription": "Finden Sie Plätze zum Übernachten mit Ihrem Wohnmobil", - "title": "Wohnmobilstellplätze" - }, - "charging_stations": { - "description": "Auf dieser freien Karte kann man Informationen über Ladestationen finden und hinzufügen", - "shortDescription": "Eine weltweite Karte mit Ladestationen", - "title": "Ladestationen" - }, - "climbing": { - "description": "Eine Karte mit Klettermöglichkeiten wie Kletterhallen, Kletterparks oder Felsen.", - "descriptionTail": "

kletterspots.de wird betrieben von Christian Neumann. Bitte melden Sie sich, wenn Sie Feedback oder Fragen haben.

Das Projekt nutzt Daten des OpenStreetMap Projekts und basiert auf der freien Software MapComplete.

", - "layers": { - "0": { - "description": "Ein Kletterverein oder eine Organisation", - "name": "Kletterverein", - "presets": { - "0": { - "description": "Ein Kletterverein", - "title": "Kletterverein" - }, - "1": { - "description": "Eine Organisation, welche sich mit dem Klettern beschäftigt", - "title": "Eine Kletter-Organisation" - } - }, - "tagRenderings": { - "climbing_club-name": { - "question": "Wie lautet der Name dieses Vereins oder Organisation?", - "render": "{name}" - } - }, - "title": { - "mappings": { + "charging_stations": { + "description": "Auf dieser freien Karte kann man Informationen über Ladestationen finden und hinzufügen", + "shortDescription": "Eine weltweite Karte mit Ladestationen", + "title": "Ladestationen" + }, + "climbing": { + "description": "Eine Karte mit Klettermöglichkeiten wie Kletterhallen, Kletterparks oder Felsen.", + "descriptionTail": "

kletterspots.de wird betrieben von Christian Neumann. Bitte melden Sie sich, wenn Sie Feedback oder Fragen haben.

Das Projekt nutzt Daten des OpenStreetMap Projekts und basiert auf der freien Software MapComplete.

", + "layers": { "0": { - "then": "Kletter-Organisation" - } - }, - "render": "Kletterverein" - } - }, - "1": { - "description": "Eine Kletterhalle", - "name": "Kletterhallen", - "tagRenderings": { - "name": { - "question": "Wie heißt diese Kletterhalle?", - "render": "{name}" - } - }, - "title": { - "mappings": { - "0": { - "then": "Kletterhalle {name}" - } - }, - "render": "Kletterhalle" - } - }, - "2": { - "name": "Kletterrouten", - "presets": { - "0": { - "title": "Kletterroute" - } - }, - "tagRenderings": { - "Bolts": { - "mappings": { - "0": { - "then": "Auf dieser Kletterroute sind keine Haken vorhanden" - }, - "1": { - "then": "Auf dieser Kletterroute sind keine Haken vorhanden" - } + "description": "Ein Kletterverein oder eine Organisation", + "name": "Kletterverein", + "presets": { + "0": { + "description": "Ein Kletterverein", + "title": "Kletterverein" + }, + "1": { + "description": "Eine Organisation, welche sich mit dem Klettern beschäftigt", + "title": "Eine Kletter-Organisation" + } + }, + "tagRenderings": { + "climbing_club-name": { + "question": "Wie lautet der Name dieses Vereins oder Organisation?", + "render": "{name}" + } + }, + "title": { + "mappings": { + "0": { + "then": "Kletter-Organisation" + } + }, + "render": "Kletterverein" + } }, - "question": "Wie viele Haken gibt es auf dieser Kletterroute bevor der Umlenker bzw. Standhaken erreicht ist?", - "render": "Diese Kletterroute hat {climbing:bolts} Haken" - }, - "Difficulty": { - "question": "Wie hoch ist der Schwierigkeitsgrad dieser Kletterroute nach dem französisch/belgischen System?", - "render": "Die Schwierigkeit ist {climbing:grade:french} entsprechend des französisch/belgischen Systems" - }, - "Length": { - "question": "Wie lang ist diese Kletterroute (in Metern)?", - "render": "Diese Route ist {canonical(climbing:length)} lang" - }, - "Name": { - "mappings": { - "0": { - "then": "Diese Kletterroute hat keinen Namen" - } - }, - "question": "Wie heißt diese Kletterroute?", - "render": "{name}" - } - }, - "title": { - "mappings": { - "0": { - "then": "Kleterroute {name}" - } - }, - "render": "Kleterroute" - } - }, - "3": { - "description": "Eine Klettergelegenheit", - "name": "Klettermöglichkeiten", - "presets": { - "0": { - "description": "Eine Klettergelegenheit", - "title": "Klettermöglichkeit" - } - }, - "tagRenderings": { - "Contained routes hist": { - "render": "

Schwierigkeitsübersicht

{histogram(_difficulty_hist)}" - }, - "Contained routes length hist": { - "render": "

Längenübersicht

{histogramm(_length_hist)}" - }, - "Rock type (crag/rock/cliff only)": { - "mappings": { - "0": { - "then": "Kalkstein" - } - }, - "question": "Welchen Gesteinstyp gibt es hier?", - "render": "Der Gesteinstyp ist {rock}" - }, - "Type": { - "mappings": { - "0": { - "then": "Ein Kletterfelsen - ein einzelner Felsen oder eine Klippe mit einer oder wenigen Kletterrouten, die ohne Seil sicher bestiegen werden können" - } - } - }, - "name": { - "mappings": { - "0": { - "then": "Diese Klettergelegenheit hat keinen Namen" - } - }, - "question": "Wie heißt diese Klettergelegenheit?", - "render": "{name}" - } - }, - "title": { - "mappings": { "1": { - "then": "Klettergebiet {name}" + "description": "Eine Kletterhalle", + "name": "Kletterhallen", + "tagRenderings": { + "name": { + "question": "Wie heißt diese Kletterhalle?", + "render": "{name}" + } + }, + "title": { + "mappings": { + "0": { + "then": "Kletterhalle {name}" + } + }, + "render": "Kletterhalle" + } }, "2": { - "then": "Klettergebiet" + "name": "Kletterrouten", + "presets": { + "0": { + "title": "Kletterroute" + } + }, + "tagRenderings": { + "Bolts": { + "mappings": { + "0": { + "then": "Auf dieser Kletterroute sind keine Haken vorhanden" + }, + "1": { + "then": "Auf dieser Kletterroute sind keine Haken vorhanden" + } + }, + "question": "Wie viele Haken gibt es auf dieser Kletterroute bevor der Umlenker bzw. Standhaken erreicht ist?", + "render": "Diese Kletterroute hat {climbing:bolts} Haken" + }, + "Difficulty": { + "question": "Wie hoch ist der Schwierigkeitsgrad dieser Kletterroute nach dem französisch/belgischen System?", + "render": "Die Schwierigkeit ist {climbing:grade:french} entsprechend des französisch/belgischen Systems" + }, + "Length": { + "question": "Wie lang ist diese Kletterroute (in Metern)?", + "render": "Diese Route ist {canonical(climbing:length)} lang" + }, + "Name": { + "mappings": { + "0": { + "then": "Diese Kletterroute hat keinen Namen" + } + }, + "question": "Wie heißt diese Kletterroute?", + "render": "{name}" + }, + "Rock type": { + "render": "Der Gesteinstyp ist {_embedding_features_with_rock:rock}, wie auf dem umgebenden Felsen angegeben" + } + }, + "title": { + "mappings": { + "0": { + "then": "Kleterroute {name}" + } + }, + "render": "Kleterroute" + } }, "3": { - "then": "Klettermöglichkeit {name}" - } - }, - "render": "Klettermöglichkeit" - } - }, - "4": { - "description": "Eine Klettergelegenheit?", - "name": "Klettermöglichkeiten?", - "tagRenderings": { - "climbing-opportunity-name": { - "render": "{name}" - }, - "climbing-possible": { - "mappings": { - "0": { - "then": "Hier kann nicht geklettert werden" - }, - "1": { - "then": "Hier kann geklettert werden" - }, - "2": { - "then": "Hier kann nicht geklettert werden" - } + "description": "Eine Klettergelegenheit", + "name": "Klettermöglichkeiten", + "presets": { + "0": { + "description": "Eine Klettergelegenheit", + "title": "Klettermöglichkeit" + } + }, + "tagRenderings": { + "Contained routes hist": { + "render": "

Schwierigkeitsübersicht

{histogram(_difficulty_hist)}" + }, + "Contained routes length hist": { + "render": "

Längenübersicht

{histogram(_length_hist)}" + }, + "Contained_climbing_routes": { + "render": "

Enthält {_contained_climbing_routes_count} Routen

    {_contained_climbing_routes}
" + }, + "Rock type (crag/rock/cliff only)": { + "mappings": { + "0": { + "then": "Kalkstein" + } + }, + "question": "Welchen Gesteinstyp gibt es hier?", + "render": "Der Gesteinstyp ist {rock}" + }, + "Type": { + "mappings": { + "0": { + "then": "Ein Kletterfelsen - ein einzelner Felsen oder eine Klippe mit einer oder wenigen Kletterrouten, die ohne Seil sicher bestiegen werden können" + }, + "1": { + "then": "Ein Kletterfelsen - ein einzelner Fels oder eine Klippe mit mindestens einigen Kletterrouten" + } + } + }, + "name": { + "mappings": { + "0": { + "then": "Diese Klettergelegenheit hat keinen Namen" + } + }, + "question": "Wie heißt diese Klettergelegenheit?", + "render": "{name}" + } + }, + "title": { + "mappings": { + "0": { + "then": "Klettergarten {name}" + }, + "1": { + "then": "Klettergebiet {name}" + }, + "2": { + "then": "Klettergebiet" + }, + "3": { + "then": "Klettermöglichkeit {name}" + } + }, + "render": "Klettermöglichkeit" + } }, - "question": "Kann hier geklettert werden?" - } + "4": { + "description": "Eine Klettergelegenheit?", + "name": "Klettermöglichkeiten?", + "tagRenderings": { + "climbing-opportunity-name": { + "render": "{name}" + }, + "climbing-possible": { + "mappings": { + "0": { + "then": "Hier kann nicht geklettert werden" + }, + "1": { + "then": "Hier kann geklettert werden" + }, + "2": { + "then": "Hier kann nicht geklettert werden" + } + }, + "question": "Kann hier geklettert werden?" + } + }, + "title": { + "render": "Klettermöglichkeit?" + } + } }, - "title": { - "render": "Klettermöglichkeit?" - } - } + "overrideAll": { + "tagRenderings+": { + "0": { + "question": "Gibt es eine (inoffizielle) Website mit mehr Informationen (z.B. Topos)?" + }, + "1": { + "mappings": { + "0": { + "then": "Das enthaltende Objekt gibt an, dass es öffentlich zugänglich ist
{_embedding_feature:access:description}" + }, + "1": { + "then": "Das enthaltende Objekt besagt, dass eine Genehmigung erforderlich ist für den Zugang zu
{_embedding_feature:access:description}" + }, + "2": { + "then": "Das enthaltende Objekt besagt, dass es nur für Kunden zugänglich ist
{_embedding_feature:access:description}" + }, + "3": { + "then": "Das enthaltende Objekt besagt, dass es nur für Mitglieder zugänglich ist
{_embedding_feature:access:description}" + } + } + }, + "2": { + "mappings": { + "0": { + "then": "Öffentlich zugänglich für jedermann" + }, + "1": { + "then": "Zugang nur mit Genehmigung" + }, + "2": { + "then": "Nur für Kunden" + }, + "3": { + "then": "Nur für Vereinsmitglieder" + } + }, + "question": "Wer hat hier Zugang?" + }, + "4": { + "question": "Wie lang sind die Routen (durchschnittlich) in Metern?", + "render": "Die Routen sind durchschnittlich {canonical(climbing:length)} lang" + }, + "5": { + "question": "Welche Schwierigkeit hat hier die leichteste Route (französisch/belgisches System)?", + "render": "Die leichteste Route hat hier die Schwierigkeit {climbing:grade:french:min} (französisch/belgisches System)" + }, + "6": { + "question": "Welche Schwierigkeit hat hier die schwerste Route (französisch/belgisches System)?", + "render": "Die schwerste Route hat hier die Schwierigkeit {climbing:grade:french:max} (französisch/belgisches System)" + }, + "7": { + "mappings": { + "0": { + "then": "Hier kann gebouldert werden" + }, + "1": { + "then": "Hier kann nicht gebouldert werden" + }, + "2": { + "then": "Bouldern ist hier nur an wenigen Routen möglich" + }, + "3": { + "then": "Hier gibt es {climbing:boulder} Boulder-Routen" + } + }, + "question": "Kann hier gebouldert werden?" + }, + "8": { + "mappings": { + "0": { + "then": "Toprope-Klettern ist hier möglich" + }, + "1": { + "then": "Toprope-Climbing ist hier nicht möglich" + }, + "2": { + "then": "Hier gibt es {climbing:toprope} Toprope-Routen" + } + }, + "question": "Ist Toprope-Klettern hier möglich?" + }, + "9": { + "mappings": { + "0": { + "then": "Sportklettern ist hier möglich" + }, + "1": { + "then": "Sportklettern ist hier nicht möglich" + }, + "2": { + "then": "Hier gibt es {climbing:sport} Sportkletter-Routen" + } + }, + "question": "Ist hier Sportklettern möglich (feste Ankerpunkte)?" + }, + "10": { + "mappings": { + "0": { + "then": "Traditionelles Klettern ist hier möglich" + }, + "1": { + "then": "Traditionelles Klettern ist hier nicht möglich" + }, + "2": { + "then": "Hier gibt es {climbing:traditional} Routen für traditionelles Klettern" + } + }, + "question": "Ist hier traditionelles Klettern möglich (eigene Sicherung z.B. mit Klemmkleilen)?" + }, + "11": { + "mappings": { + "0": { + "then": "Hier gibt es eine Speedkletter-Wand" + }, + "1": { + "then": "Hier gibt es keine Speedkletter-Wand" + }, + "2": { + "then": "Hier gibt es {climbing:speed} Speedkletter-Routen" + } + }, + "question": "Gibt es hier eine Speedkletter-Wand?" + } + }, + "units+": { + "0": { + "applicableUnits": { + "0": { + "human": " Meter" + }, + "1": { + "human": " Fuß" + } + } + } + } + }, + "title": "Offene Kletterkarte" }, - "overrideAll": { - "tagRenderings+": { - "0": { - "question": "Gibt es eine (inoffizielle) Website mit mehr Informationen (z.B. Topos)?" - }, - "2": { - "mappings": { + "cycle_highways": { + "description": "Diese Karte zeigt Radschnellwege", + "layers": { "0": { - "then": "Öffentlich zugänglich für jedermann" + "name": "Radschnellwege", + "title": { + "render": "Radschnellweg" + } + } + }, + "title": "Radschnellwege" + }, + "cycle_infra": { + "description": "Eine Karte zum Ansehen und Bearbeiten verschiedener Elementen der Fahrradinfrastruktur. Erstellt während #osoc21.", + "shortDescription": "Eine Karte zum Ansehen und Bearbeiten verschiedener Elementen der Fahrradinfrastruktur.", + "title": "Fahrradinfrastruktur" + }, + "cyclenodes": { + "description": "Diese Karte zeigt Knotenpunktnetzwerke für Radfahrer und erlaubt auch neue Knoten zu mappen", + "layers": { + "0": { + "name": "Knotenpunktverbindungen", + "tagRenderings": { + "node2node-survey:date": { + "question": "Wann wurde diese Knotenpunktverbindung zuletzt überprüft?", + "render": "Diese Knotenpunktverbindung wurde zuletzt am {survey:date} überprüft" + } + }, + "title": { + "mappings": { + "0": { + "then": "Knotenpunktverbindung {ref}" + } + }, + "render": "Knotenpunktverbindung" + } }, "1": { - "then": "Zugang nur mit Genehmigung" + "name": "Knotenpunkte", + "tagRenderings": { + "node-expected_rcn_route_relations": { + "question": "Mit wie vielen anderen Knoten des Fahrradknotenpunktnetzwerkes ist dieser Knoten verbunden?", + "render": "Dieser Knoten ist mit {expected_rcn_route_relations} anderen Knoten des Fahrradknotenpunktnetzwerkes verbunden." + }, + "node-survey:date": { + "question": "Wann wurde dieser Fahrradknotenpunkt zuletzt überprüft?", + "render": "Dieser Fahrradknoten wurde zuletzt überprüft am {survey:date}" + } + }, + "title": { + "render": "Knotenpunkt {rcn_ref}" + } + } + }, + "title": "Fahrrad-Knotenpunktnetzwerke" + }, + "cyclestreets": { + "description": "Eine Fahrradstraße ist eine Straße, auf der motorisierter Verkehr Radfahrer nicht überholen darf. Sie sind durch ein spezielles Verkehrsschild gekennzeichnet. Fahrradstraßen gibt es in den Niederlanden und Belgien, aber auch in Deutschland und Frankreich. ", + "layers": { + "0": { + "description": "Eine Fahrradstraße ist eine Straße, auf der motorisierter Verkehr einen Radfahrer nicht überholen darf", + "name": "Fahrradstraßen" + }, + "1": { + "description": "Diese Straße wird bald eine Fahrradstraße sein", + "name": "Zukünftige Fahrradstraße", + "title": { + "mappings": { + "0": { + "then": "{name} wird bald eine Fahrradstraße werden" + } + }, + "render": "Zukünftige Fahrradstraße" + } }, "2": { - "then": "Nur für Kunden" - }, - "3": { - "then": "Nur für Vereinsmitglieder" + "description": "Ebene zur Kennzeichnung einer Straße als Fahrradstraße", + "name": "Alle Straßen", + "title": { + "render": "Straße" + } } - }, - "question": "Wer hat hier Zugang?" }, - "4": { - "question": "Wie lang sind die Routen (durchschnittlich) in Metern?", - "render": "Die Routen sind durchschnittlich {canonical(climbing:length)} lang" + "overrideAll": { + "tagRenderings+": { + "0": { + "mappings": { + "0": { + "then": "Diese Straße ist eine Fahrradstraße (mit einer Geschwindigkeitsbegrenzung von 30 km/h)" + }, + "1": { + "then": "Diese Straße ist eine Fahrradstraße" + }, + "2": { + "then": "Diese Straße wird bald eine Fahrradstraße sein" + }, + "3": { + "then": "Diese Straße ist keine Fahrradstraße" + } + }, + "question": "Ist die Straße {name} eine Fahrradstraße?" + }, + "1": { + "question": "Wann wird diese Straße eine Fahrradstraße?", + "render": "Diese Straße wird am {cyclestreet:start_date} zu einer Fahrradstraße" + } + } }, - "5": { - "question": "Welche Schwierigkeit hat hier die leichteste Route (französisch/belgisches System)?", - "render": "Die leichteste Route hat hier die Schwierigkeit {climbing:grade:french:min} (französisch/belgisches System)" - }, - "6": { - "question": "Welche Schwierigkeit hat hier die schwerste Route (französisch/belgisches System)?", - "render": "Die schwerste Route hat hier die Schwierigkeit {climbing:grade:french:max} (französisch/belgisches System)" - }, - "7": { - "mappings": { - "0": { - "then": "Hier kann gebouldert werden" - }, + "shortDescription": "Eine Karte von Fahrradstraßen", + "title": "Fahrradstraßen" + }, + "cyclofix": { + "description": "Mit dieser Karte wird Radfahrern eine einfache Lösung bereitgestellt, um die passende Fahrradinfrastruktur zu finden.

Sie können Ihren genauen Standort verfolgen (nur mobil) und in der linken unteren Ecke die für Sie relevanten Ebenen auswählen. Sie können auch interessante Orte zur Karte hinzuzufügen oder bearbeiten und weitere Daten durch Beantwortung von Fragen bereitstellen.

Ihre Änderungen, werden automatisch in OpenStreetMap gespeichert und können von anderen frei verwendet werden.

Weitere Informationen über Cyclofix finden Sie unter cyclofix.osm.be.", + "title": "Cyclofix - die freie Karte für Radler" + }, + "drinking_water": { + "description": "Eine Karte zum Anzeigen und Bearbeiten öffentlicher Trinkwasserstellen", + "title": "Trinkwasserstelle" + }, + "etymology": { + "description": "Auf dieser Karte können Sie sehen, wonach ein Objekt benannt ist. Die Straßen, Gebäude, ... stammen von OpenStreetMap, das mit Wikidata verknüpft wurde. In dem Popup sehen Sie den Wikipedia-Artikel (falls vorhanden) oder ein Wikidata-Feld, nach dem das Objekt benannt ist. Wenn das Objekt selbst eine Wikipedia-Seite hat, wird auch diese angezeigt.

Sie können auch einen Beitrag leisten!Zoomen Sie genug hinein und alle Straßen werden angezeigt. Wenn Sie auf eine Straße klicken, öffnet sich ein Wikidata-Suchfeld. Mit ein paar Klicks können Sie einen Etymologie-Link hinzufügen. Beachten Sie, dass Sie dazu ein kostenloses OpenStreetMap-Konto benötigen.", + "layers": { "1": { - "then": "Hier kann nicht gebouldert werden" + "override": { + "=name": "Straßen ohne Informationen zur Namensherkunft" + } }, "2": { - "then": "Bouldern ist hier nur an wenigen Routen möglich" - }, - "3": { - "then": "Hier gibt es {climbing:boulder} Boulder-Routen" + "override": { + "=name": "Parks und Waldflächen ohne Informationen zur Namensherkunft" + } } - }, - "question": "Kann hier gebouldert werden?" }, - "8": { - "mappings": { + "shortDescription": "Was ist der Ursprung eines Ortsnamens?", + "title": "Open Etymology Map" + }, + "facadegardens": { + "description": "Fassadengärten, grüne Fassaden und Bäume in der Stadt bringen nicht nur Ruhe und Frieden, sondern auch eine schönere Stadt, eine größere Artenvielfalt, einen Kühleffekt und eine bessere Luftqualität.
Klimaan VZW und Mechelen Klimaatneutraal wollen bestehende und neue Fassadengärten als Beispiel für Menschen, die ihren eigenen Garten anlegen wollen, oder für naturverbundene Stadtspaziergänger kartieren.
Mehr Informationen über das Projekt unter klimaan.be.", + "layers": { "0": { - "then": "Toprope-Klettern ist hier möglich" + "description": "Fassadengärten", + "name": "Fassadengärten", + "presets": { + "0": { + "description": "Einen Fassadengarten hinzufügen", + "title": "Fassadengarten" + } + }, + "tagRenderings": { + "facadegardens-description": { + "question": "Zusätzliche Informationen über den Garten (falls erforderlich und oben noch nicht beschrieben)", + "render": "Weitere Details: {description}" + }, + "facadegardens-direction": { + "question": "Wie ist der Garten ausgerichtet?", + "render": "Ausrichtung: {direction} (wobei 0=N und 90=O)" + }, + "facadegardens-edible": { + "mappings": { + "0": { + "then": "Es gibt essbare Pflanzen" + }, + "1": { + "then": "Es gibt keine essbaren Pflanzen" + } + }, + "question": "Gibt es essbare Pflanzen?" + }, + "facadegardens-plants": { + "mappings": { + "0": { + "then": "Es gibt Weinreben" + }, + "1": { + "then": "Es gibt blühende Pflanzen" + }, + "2": { + "then": "Es gibt Sträucher" + }, + "3": { + "then": "Es gibt Bodendecker" + } + }, + "question": "Welche Pflanzen wachsen hier?" + }, + "facadegardens-rainbarrel": { + "mappings": { + "0": { + "then": "Es gibt eine Regentonne" + }, + "1": { + "then": "Es gibt keine Regentonne" + } + }, + "question": "Gibt es ein Wasserfass für den Garten?" + }, + "facadegardens-start_date": { + "question": "Wann wurde der Garten angelegt? (Jahr ist ausreichend)", + "render": "Errichtungsdatum des Gartens: {start_date}" + }, + "facadegardens-sunshine": { + "mappings": { + "0": { + "then": "Der Garten liegt in voller Sonne" + }, + "1": { + "then": "Der Garten liegt im Halbschatten" + }, + "2": { + "then": "Der Garten liegt im Schatten" + } + }, + "question": "Ist der Garten schattig oder sonnig?" + } + }, + "title": { + "render": "Fassadengarten" + } + } + }, + "shortDescription": "Diese Karte zeigt Fassadengärten mit Bildern und Details zu Ausrichtung, Sonneneinstrahlung und Pflanzen.", + "title": "Fassadengärten" + }, + "food": { + "title": "Restaurants und Schnellimbisse" + }, + "fritures": { + "layers": { + "0": { + "override": { + "name": "Pommesbude" + } + } + } + }, + "ghostbikes": { + "description": "Ein Geisterrad ist ein weißes Fahrrad, dass zum Gedenken eines tödlich verunglückten Radfahrers vor Ort aufgestellt wurde.

Auf dieser Karte kann man alle Geisterräder sehen, die OpenStreetMap eingetragen sind. Fehlt ein Geisterrad? Jeder kann hier Informationen hinzufügen oder aktualisieren - Sie benötigen lediglich einen (kostenlosen) OpenStreetMap-Account.", + "title": "Geisterräder" + }, + "grb": { + "layers": { + "1": { + "tagRenderings": { + "building type": { + "question": "Was ist das für ein Gebäude?" + } + } + } + } + }, + "grb_fixme": { + "layers": { + "0": { + "tagRenderings": { + "building type": { + "question": "Was ist das für ein Gebäude?" + } + } + } + } + }, + "hackerspaces": { + "description": "Auf dieser Karte können Sie Hackerspaces sehen, einen neuen Hackerspace hinzufügen oder Daten direkt aktualisieren", + "layers": { + "0": { + "description": "Hackerspace", + "name": "Hackerspace", + "presets": { + "0": { + "description": "Ein Hackerspace ist ein Ort, an dem sich Menschen treffen, die sich für Software interessieren", + "title": "Hackerspace" + }, + "1": { + "description": "Ein Makerspace ist ein Ort, an dem Heimwerker-Enthusiasten zusammenkommen, um mit Elektronik zu experimentieren, wie Arduino, LED-Strips, ...", + "title": "Makerspace" + } + }, + "tagRenderings": { + "hackerspaces-name": { + "question": "Wie lautet der Name dieses Hackerspace?", + "render": "Dieser Hackerspace heißt {name}" + }, + "hackerspaces-opening_hours": { + "mappings": { + "0": { + "then": "durchgehend geöffnet" + } + }, + "question": "Wann hat dieser Hackerspace geöffnet?", + "render": "{opening_hours_table()}" + }, + "hackerspaces-start_date": { + "question": "Wann wurde dieser Hackerspace gegründet?", + "render": "Dieser Hackerspace wurde gegründet am {start_date}" + }, + "hs-club-mate": { + "mappings": { + "0": { + "then": "In diesem Hackerspace gibt es Club Mate" + }, + "1": { + "then": "In diesem Hackerspace gibt es kein Club Mate" + } + }, + "question": "Gibt es in diesem Hackerspace Club Mate?" + }, + "is_makerspace": { + "mappings": { + "0": { + "then": "Dies ist ein Makerspace" + }, + "1": { + "then": "Dies ist ein traditioneller (softwareorientierter) Hackerspace" + } + }, + "question": "Ist dies ein Hackerspace oder ein Makerspace?" + } + }, + "title": { + "mappings": { + "0": { + "then": " {name}" + } + }, + "render": "Hackerspace" + } + } + }, + "shortDescription": "Eine Karte von Hackerspaces", + "title": "Hackerspaces" + }, + "hailhydrant": { + "description": "Auf dieser Karte können Sie Hydranten, Feuerwachen, Krankenwagen und Feuerlöscher in Ihren bevorzugten Stadtvierteln finden und aktualisieren.\n\nSie können Ihren genauen Standort verfolgen (nur mobil) und in der unteren linken Ecke die für Sie relevanten Ebenen auswählen. Sie können mit diesem Tool auch Pins (Points of Interest) zur Karte hinzufügen oder bearbeiten und durch die Beantwortung verfügbarer Fragen zusätzliche Angaben machen.\n\nAlle von Ihnen vorgenommenen Änderungen werden automatisch in der globalen Datenbank von OpenStreetMap gespeichert und können von anderen frei weiterverwendet werden.", + "shortDescription": "Hydranten, Feuerlöscher, Feuerwachen und Rettungswachen.", + "title": "Hydranten, Feuerlöscher, Feuerwachen und Rettungswachen." + }, + "maps": { + "description": "Auf dieser Karte findest du alle Karten, die OpenStreetMap kennt - typischerweise eine große Karte auf einer Informationstafel, die das Gebiet, die Stadt oder die Region zeigt, z.B. eine touristische Karte auf der Rückseite einer Plakatwand, eine Karte eines Naturschutzgebietes, eine Karte der Radwegenetze in der Region, ...)

Wenn eine Karte fehlt, können Sie diese leicht auf OpenStreetMap kartieren.", + "shortDescription": "Dieses Thema zeigt alle (touristischen) Karten, die OpenStreetMap kennt", + "title": "Eine Karte der Karten" + }, + "observation_towers": { + "description": "Öffentlich zugänglicher Aussichtsturm", + "shortDescription": "Öffentlich zugänglicher Aussichtsturm", + "title": "Aussichtstürme" + }, + "openwindpowermap": { + "description": "Eine Karte zum Anzeigen und Bearbeiten von Windkraftanlagen.", + "layers": { + "0": { + "name": "Windrad", + "presets": { + "0": { + "title": "Windrad" + } + }, + "title": { + "render": "Windrad" + }, + "units": { + "0": { + "applicableUnits": { + "0": { + "human": " Megawatt" + }, + "1": { + "human": " Kilowatt" + }, + "2": { + "human": " Watt" + }, + "3": { + "human": " Gigawatt" + } + } + }, + "1": { + "applicableUnits": { + "0": { + "human": " Meter" + } + } + } + } + } + }, + "title": "Freie Windenergie-Karte" + }, + "parkings": { + "description": "Diese Karte zeigt Parkplätze", + "shortDescription": "Diese Karte zeigt Parkplätze", + "title": "Parken" + }, + "personal": { + "description": "Erstellen Sie ein persönliches Thema, das auf allen verfügbaren Ebenen aller Themen basiert. Um einige Daten anzuzeigen, öffnen Sie die Ebenenauswahl", + "title": "Persönliches Thema" + }, + "playgrounds": { + "description": "Auf dieser Karte finden Sie Spielplätze und können weitere Informationen hinzufügen", + "shortDescription": "Eine Karte mit Spielplätzen", + "title": "Spielpläzte" + }, + "postboxes": { + "layers": { + "0": { + "description": "Die Ebene zeigt Briefkästen.", + "name": "Brieflästen", + "presets": { + "0": { + "title": "Briefkasten" + } + }, + "title": { + "render": "Briefkasten" + } }, "1": { - "then": "Toprope-Climbing ist hier nicht möglich" - }, - "2": { - "then": "Hier gibt es {climbing:toprope} Toprope-Routen" + "description": "Eine Ebene mit Postämtern.", + "filter": { + "0": { + "options": { + "0": { + "question": "Aktuell geöffnet" + } + } + } + }, + "name": "Poststellen", + "presets": { + "0": { + "title": "Poststelle" + } + }, + "tagRenderings": { + "OH": { + "mappings": { + "0": { + "then": "durchgehend geöffnet (auch an Feiertagen)" + } + } + } + }, + "title": { + "render": "Poststelle" + } } - }, - "question": "Ist Toprope-Klettern hier möglich?" }, - "9": { - "mappings": { - "0": { - "then": "Sportklettern ist hier möglich" - }, - "1": { - "then": "Sportklettern ist hier nicht möglich" - }, - "2": { - "then": "Hier gibt es {climbing:sport} Sportkletter-Routen" - } - }, - "question": "Ist hier Sportklettern möglich (feste Ankerpunkte)?" - }, - "10": { - "mappings": { - "0": { - "then": "Traditionelles Klettern ist hier möglich" - }, - "1": { - "then": "Traditionelles Klettern ist hier nicht möglich" - }, - "2": { - "then": "Hier gibt es {climbing:traditional} Routen für traditionelles Klettern" - } - }, - "question": "Ist hier traditionelles Klettern möglich (eigene Sicherung z.B. mit Klemmkleilen)?" - }, - "11": { - "mappings": { - "0": { - "then": "Hier gibt es eine Speedkletter-Wand" - }, - "1": { - "then": "Hier gibt es keine Speedkletter-Wand" - }, - "2": { - "then": "Hier gibt es {climbing:speed} Speedkletter-Routen" - } - }, - "question": "Gibt es hier eine Speedkletter-Wand?" - } - }, - "units+": { - "0": { - "applicableUnits": { - "0": { - "human": " Meter" - }, - "1": { - "human": " Fuß" - } - } - } - } + "shortDescription": "Eine Karte die Briefkästen und Poststellen anzeigt", + "title": "Karte mit Briefkästen und Poststellen" }, - "title": "Offene Kletterkarte" - }, - "cycle_highways": { - "description": "Diese Karte zeigt Radschnellwege", - "layers": { - "0": { - "name": "Radschnellwege", - "title": { - "render": "Radschnellweg" - } - } + "shops": { + "description": "Auf dieser Karte kann man grundlegende Informationen über Geschäfte markieren, Öffnungszeiten und Telefonnummern hinzufügen", + "shortDescription": "Eine bearbeitbare Karte mit grundlegenden Geschäftsinformationen", + "title": "Freie Geschäftskarte" }, - "title": "Radschnellwege" - }, - "cycle_infra": { - "description": "Eine Karte zum Ansehen und Bearbeiten verschiedener Elementen der Fahrradinfrastruktur. Erstellt während #osoc21.", - "shortDescription": "Eine Karte zum Ansehen und Bearbeiten verschiedener Elementen der Fahrradinfrastruktur.", - "title": "Fahrradinfrastruktur" - }, - "cyclestreets": { - "description": "Eine Fahrradstraße ist eine Straße, auf der motorisierter Verkehr Radfahrer nicht überholen darf. Sie sind durch ein spezielles Verkehrsschild gekennzeichnet. Fahrradstraßen gibt es in den Niederlanden und Belgien, aber auch in Deutschland und Frankreich. ", - "layers": { - "0": { - "description": "Eine Fahrradstraße ist eine Straße, auf der motorisierter Verkehr einen Radfahrer nicht überholen darf", - "name": "Fahrradstraßen" - }, - "1": { - "description": "Diese Straße wird bald eine Fahrradstraße sein", - "name": "Zukünftige Fahrradstraße", - "title": { - "mappings": { - "0": { - "then": "{name} wird bald eine Fahrradstraße werden" - } - }, - "render": "Zukünftige Fahrradstraße" - } - }, - "2": { - "description": "Ebene zur Kennzeichnung einer Straße als Fahrradstraße", - "name": "Alle Straßen", - "title": { - "render": "Straße" - } - } + "sport_pitches": { + "description": "Ein Sportplatz ist eine Fläche, auf der Sportarten gespielt werden", + "shortDescription": "Eine Karte mit Sportplätzen", + "title": "Sportplätze" }, - "overrideAll": { - "tagRenderings+": { - "0": { - "mappings": { - "0": { - "then": "Diese Straße ist eine Fahrradstraße (mit einer Geschwindigkeitsbegrenzung von 30 km/h)" - }, - "1": { - "then": "Diese Straße ist eine Fahrradstraße" - }, - "2": { - "then": "Diese Straße wird bald eine Fahrradstraße sein" - }, - "3": { - "then": "Diese Straße ist keine Fahrradstraße" - } - }, - "question": "Ist diese Straße eine Fahrradstraße?" - }, - "1": { - "question": "Wann wird diese Straße eine Fahrradstraße?", - "render": "Diese Straße wird am {cyclestreet:start_date} zu einer Fahrradstraße" - } - } + "surveillance": { + "description": "Auf dieser offenen Karte finden Sie Überwachungskameras.", + "shortDescription": "Überwachungskameras und andere Mittel zur Überwachung", + "title": "Überwachung unter Überwachung" }, - "shortDescription": "Eine Karte von Fahrradstraßen", - "title": "Fahrradstraßen" - }, - "cyclofix": { - "description": "Mit dieser Karte wird Radfahrern eine einfache Lösung bereitgestellt, um die passende Fahrradinfrastruktur zu finden.

Sie können Ihren genauen Standort verfolgen (nur mobil) und in der linken unteren Ecke die für Sie relevanten Ebenen auswählen. Sie können auch interessante Orte zur Karte hinzuzufügen oder bearbeiten und weitere Daten durch Beantwortung von Fragen bereitstellen.

Ihre Änderungen, werden automatisch in OpenStreetMap gespeichert und können von anderen frei verwendet werden.

Weitere Informationen über Cyclofix finden Sie unter cyclofix.osm.be.", - "title": "Cyclofix — eine freie Karte für Radfahrer" - }, - "drinking_water": { - "description": "Eine Karte zum Anzeigen und Bearbeiten öffentlicher Trinkwasserstellen", - "title": "Trinkwasserstelle" - }, - "etymology": { - "description": "Auf dieser Karte können Sie sehen, wonach ein Objekt benannt ist. Die Straßen, Gebäude, ... stammen von OpenStreetMap, das mit Wikidata verknüpft wurde. In dem Popup sehen Sie den Wikipedia-Artikel (falls vorhanden) oder ein Wikidata-Feld, nach dem das Objekt benannt ist. Wenn das Objekt selbst eine Wikipedia-Seite hat, wird auch diese angezeigt.

Sie können auch einen Beitrag leisten!Zoomen Sie genug hinein und alle Straßen werden angezeigt. Wenn Sie auf eine Straße klicken, öffnet sich ein Wikidata-Suchfeld. Mit ein paar Klicks können Sie einen Etymologie-Link hinzufügen. Beachten Sie, dass Sie dazu ein kostenloses OpenStreetMap-Konto benötigen.", - "layers": { - "1": { - "override": { - "name": "Straßen ohne Informationen zur Namensherkunft" - } - }, - "2": { - "override": { - "name": "Parks und Waldflächen ohne Informationen zur Namensherkunft" - } - } + "toilets": { + "description": "Eine Karte mit öffentlich zugänglichen Toiletten", + "title": "Freie Toilettenkarte" }, - "shortDescription": "Was ist der Ursprung eines Ortsnamens?", - "title": "Open Etymology Map" - }, - "facadegardens": { - "description": "Fassadengärten, grüne Fassaden und Bäume in der Stadt bringen nicht nur Ruhe und Frieden, sondern auch eine schönere Stadt, eine größere Artenvielfalt, einen Kühleffekt und eine bessere Luftqualität.
Klimaan VZW und Mechelen Klimaatneutraal wollen bestehende und neue Fassadengärten als Beispiel für Menschen, die ihren eigenen Garten anlegen wollen, oder für naturverbundene Stadtspaziergänger kartieren.
Mehr Informationen über das Projekt unter klimaan.be.", - "layers": { - "0": { - "description": "Fassadengärten", - "name": "Fassadengärten", - "presets": { - "0": { - "description": "Einen Fassadengarten hinzufügen", - "title": "Fassadengarten" - } - }, - "tagRenderings": { - "facadegardens-description": { - "question": "Zusätzliche Informationen über den Garten (falls erforderlich und oben noch nicht beschrieben)", - "render": "Weitere Details: {description}" - }, - "facadegardens-direction": { - "question": "Wie ist der Garten ausgerichtet?", - "render": "Ausrichtung: {direction} (wobei 0=N und 90=O)" - }, - "facadegardens-edible": { - "mappings": { - "0": { - "then": "Es gibt essbare Pflanzen" - }, - "1": { - "then": "Es gibt keine essbaren Pflanzen" - } - }, - "question": "Gibt es essbare Pflanzen?" - }, - "facadegardens-plants": { - "mappings": { - "0": { - "then": "Es gibt Weinreben" - }, - "1": { - "then": "Es gibt blühende Pflanzen" - }, - "2": { - "then": "Es gibt Sträucher" - }, - "3": { - "then": "Es gibt Bodendecker" - } - }, - "question": "Welche Pflanzen wachsen hier?" - }, - "facadegardens-rainbarrel": { - "mappings": { - "0": { - "then": "Es gibt eine Regentonne" - }, - "1": { - "then": "Es gibt keine Regentonne" - } - }, - "question": "Gibt es ein Wasserfass für den Garten?" - }, - "facadegardens-start_date": { - "question": "Wann wurde der Garten angelegt? (Jahr ist ausreichend)", - "render": "Errichtungsdatum des Gartens: {start_date}" - }, - "facadegardens-sunshine": { - "mappings": { - "0": { - "then": "Der Garten liegt in voller Sonne" - }, - "1": { - "then": "Der Garten liegt im Halbschatten" - }, - "2": { - "then": "Der Garten liegt im Schatten" - } - }, - "question": "Ist der Garten schattig oder sonnig?" - } - }, - "title": { - "render": "Fassadengarten" - } - } + "trees": { + "description": "Kartieren Sie alle Bäume!", + "shortDescription": "Kartieren Sie alle Bäume", + "title": "Bäume" }, - "shortDescription": "Diese Karte zeigt Fassadengärten mit Bildern und Details zu Ausrichtung, Sonneneinstrahlung und Pflanzen.", - "title": "Fassadengärten" - }, - "food": { - "title": "Restaurants und Schnellimbisse" - }, - "fritures": { - "layers": { - "0": { - "override": { - "name": "Pommesbude" - } - } + "waste_basket": { + "description": "Auf dieser Karte finden Sie Abfalleimer in Ihrer Nähe. Wenn ein Abfalleimer auf dieser Karte fehlt, können Sie ihn selbst hinzufügen", + "shortDescription": "Eine Karte mit Abfalleimern", + "title": "Abfalleimer" } - }, - "ghostbikes": { - "description": "Ein Geisterrad ist ein weißes Fahrrad, dass zum Gedenken eines tödlich verunglückten Radfahrers vor Ort aufgestellt wurde.

Auf dieser Karte kann man alle Geisterräder sehen, die OpenStreetMap eingetragen sind. Fehlt ein Geisterrad? Jeder kann hier Informationen hinzufügen oder aktualisieren - Sie benötigen lediglich einen (kostenlosen) OpenStreetMap-Account.", - "title": "Geisterräder" - }, - "hackerspaces": { - "description": "Auf dieser Karte können Sie Hackerspaces sehen, einen neuen Hackerspace hinzufügen oder Daten direkt aktualisieren", - "layers": { - "0": { - "description": "Hackerspace", - "name": "Hackerspace", - "presets": { - "0": { - "description": "Ein Hackerspace ist ein Ort, an dem sich Menschen treffen, die sich für Software interessieren", - "title": "Hackerspace" - }, - "1": { - "description": "Ein Makerspace ist ein Ort, an dem Heimwerker-Enthusiasten zusammenkommen, um mit Elektronik zu experimentieren, wie Arduino, LED-Strips, ...", - "title": "Makerspace" - } - }, - "tagRenderings": { - "hackerspaces-name": { - "question": "Wie lautet der Name dieses Hackerspace?", - "render": "Dieser Hackerspace heißt {name}" - }, - "hackerspaces-opening_hours": { - "mappings": { - "0": { - "then": "durchgehend geöffnet" - } - }, - "question": "Wann hat dieser Hackerspace geöffnet?", - "render": "{opening_hours_table()}" - }, - "hackerspaces-start_date": { - "question": "Wann wurde dieser Hackerspace gegründet?", - "render": "Dieser Hackerspace wurde gegründet am {start_date}" - }, - "hs-club-mate": { - "mappings": { - "0": { - "then": "In diesem Hackerspace gibt es Club Mate" - }, - "1": { - "then": "In diesem Hackerspace gibt es kein Club Mate" - } - }, - "question": "Gibt es in diesem Hackerspace Club Mate?" - }, - "is_makerspace": { - "mappings": { - "0": { - "then": "Dies ist ein Makerspace" - }, - "1": { - "then": "Dies ist ein traditioneller (softwareorientierter) Hackerspace" - } - }, - "question": "Ist dies ein Hackerspace oder ein Makerspace?" - } - }, - "title": { - "mappings": { - "0": { - "then": " {name}" - } - }, - "render": "Hackerspace" - } - } - }, - "shortDescription": "Eine Karte von Hackerspaces", - "title": "Hackerspaces" - }, - "hailhydrant": { - "description": "Auf dieser Karte können Sie Hydranten, Feuerwachen, Krankenwagen und Feuerlöscher in Ihren bevorzugten Stadtvierteln finden und aktualisieren. \n\nSie können Ihren genauen Standort verfolgen (nur mobil) und in der unteren linken Ecke die für Sie relevanten Ebenen auswählen. Sie können mit diesem Tool auch Pins (Points of Interest) zur Karte hinzufügen oder bearbeiten und durch die Beantwortung verfügbarer Fragen zusätzliche Angaben machen. \n\nAlle von Ihnen vorgenommenen Änderungen werden automatisch in der globalen Datenbank von OpenStreetMap gespeichert und können von anderen frei weiterverwendet werden.", - "layers": { - "0": { - "description": "Kartenebene zur Anzeige von Hydranten.", - "name": "Karte der Hydranten", - "presets": { - "0": { - "description": "Ein Hydrant ist ein Anschlusspunkt, an dem die Feuerwehr Wasser zapfen kann. Er kann sich unterirdisch befinden.", - "title": "Löschwasser-Hydrant" - } - }, - "tagRenderings": { - "hydrant-color": { - "mappings": { - "0": { - "then": "Die Farbe des Hydranten ist unbekannt." - }, - "1": { - "then": "Die Farbe des Hydranten ist gelb." - }, - "2": { - "then": "Die Farbe des Hydranten ist rot." - } - }, - "question": "Welche Farbe hat der Hydrant?", - "render": "Der Hydrant hat die Farbe {colour}" - }, - "hydrant-state": { - "mappings": { - "0": { - "then": "Der Hydrant ist (ganz oder teilweise) in Betrieb." - }, - "1": { - "then": "Der Hydrant ist nicht verfügbar." - }, - "2": { - "then": "Der Hydrant wurde entfernt." - } - }, - "question": "Aktualisieren Sie den Lebenszyklusstatus des Hydranten." - }, - "hydrant-type": { - "mappings": { - "0": { - "then": "Der Typ des Hydranten ist unbekannt." - }, - "1": { - "then": " Säulenart." - }, - "2": { - "then": " Rohrtyp." - }, - "3": { - "then": " Wandtyp." - }, - "4": { - "then": " Untergrundtyp." - } - }, - "question": "Um welche Art von Hydrant handelt es sich?", - "render": " Hydranten-Typ: {fire_hydrant:type}" - } - }, - "title": { - "render": "Hydrant" - } - }, - "1": { - "description": "Kartenebene zur Anzeige von Hydranten.", - "name": "Karte mit Feuerlöschern.", - "presets": { - "0": { - "description": "Ein Feuerlöscher ist ein kleines, tragbares Gerät, das dazu dient, ein Feuer zu löschen", - "title": "Feuerlöscher" - } - }, - "tagRenderings": { - "extinguisher-location": { - "mappings": { - "0": { - "then": "Im Innenraum vorhanden." - }, - "1": { - "then": "Im Außenraum vorhanden." - } - }, - "question": "Wo befindet er sich?", - "render": "Standort: {location}" - } - }, - "title": { - "render": "Feuerlöscher" - } - }, - "2": { - "description": "Kartenebene zur Darstellung von Feuerwachen.", - "name": "Karte der Feuerwachen", - "presets": { - "0": { - "description": "Eine Feuerwache ist ein Ort, an dem die Feuerwehrfahrzeuge und die Feuerwehrleute untergebracht sind, wenn sie nicht im Einsatz sind.", - "title": "Feuerwache" - } - }, - "tagRenderings": { - "station-agency": { - "mappings": { - "0": { - "then": "Brandschutzbehörde" - } - } - }, - "station-name": { - "question": "Wie lautet der Name dieser Feuerwache?" - } - }, - "title": { - "render": "Feuerwache" - } - }, - "3": { - "description": "Eine Rettungswache ist ein Ort, an dem Rettungsfahrzeuge, medizinische Ausrüstung, persönliche Schutzausrüstung und anderes medizinisches Material untergebracht sind.", - "name": "Karte der Rettungswachen", - "presets": { - "0": { - "description": "Eine Rettungsstation der Karte hinzufügen", - "title": "Rettungswache" - } - }, - "title": { - "render": "Rettungswache" - } - } - }, - "shortDescription": "Hydranten, Feuerlöscher, Feuerwachen und Rettungswachen." - }, - "maps": { - "description": "Auf dieser Karte findest du alle Karten, die OpenStreetMap kennt - typischerweise eine große Karte auf einer Informationstafel, die das Gebiet, die Stadt oder die Region zeigt, z.B. eine touristische Karte auf der Rückseite einer Plakatwand, eine Karte eines Naturschutzgebietes, eine Karte der Radwegenetze in der Region, ...)

Wenn eine Karte fehlt, können Sie diese leicht auf OpenStreetMap kartieren.", - "shortDescription": "Dieses Thema zeigt alle (touristischen) Karten, die OpenStreetMap kennt", - "title": "Eine Karte der Karten" - }, - "natuurpunt": { - "description": "Auf dieser Karte können Sie alle Naturschutzgebiete von Natuurpunt finden ", - "shortDescription": "Diese Karte zeigt Naturschutzgebiete des flämischen Naturverbands Natuurpunt", - "title": "Naturschutzgebiete" - }, - "observation_towers": { - "description": "Öffentlich zugänglicher Aussichtsturm", - "shortDescription": "Öffentlich zugänglicher Aussichtsturm", - "title": "Aussichtstürme" - }, - "openwindpowermap": { - "description": "Eine Karte zum Anzeigen und Bearbeiten von Windkraftanlagen.", - "layers": { - "0": { - "name": "Windrad", - "presets": { - "0": { - "title": "Windrad" - } - }, - "title": { - "render": "Windrad" - }, - "units": { - "0": { - "applicableUnits": { - "0": { - "human": " Megawatt" - }, - "1": { - "human": " Kilowatt" - }, - "2": { - "human": " Watt" - }, - "3": { - "human": " Gigawatt" - } - } - }, - "1": { - "applicableUnits": { - "0": { - "human": " Meter" - } - } - } - } - } - }, - "title": "OpenWindPowerMap" - }, - "parkings": { - "description": "Diese Karte zeigt Parkplätze", - "shortDescription": "Diese Karte zeigt Parkplätze", - "title": "Parken" - }, - "personal": { - "description": "Erstellen Sie ein persönliches Thema auf der Grundlage aller verfügbaren Ebenen aller Themen", - "title": "Persönliches Thema" - }, - "playgrounds": { - "description": "Auf dieser Karte finden Sie Spielplätze und können weitere Informationen hinzufügen", - "shortDescription": "Eine Karte mit Spielplätzen", - "title": "Spielpläzte" - }, - "postboxes": { - "layers": { - "0": { - "description": "Die Ebene zeigt Briefkästen.", - "name": "Brieflästen", - "presets": { - "0": { - "title": "Briefkasten" - } - }, - "title": { - "render": "Briefkasten" - } - }, - "1": { - "description": "Eine Ebene mit Postämtern.", - "filter": { - "0": { - "options": { - "0": { - "question": "Aktuell geöffnet" - } - } - } - }, - "name": "Poststellen", - "presets": { - "0": { - "title": "Poststelle" - } - }, - "tagRenderings": { - "OH": { - "mappings": { - "0": { - "then": "durchgehend geöffnet (auch an Feiertagen)" - } - } - } - }, - "title": { - "mappings": { - "0": { - "then": "Postfiliale im Einzelhandel" - }, - "1": { - "then": "Postfiliale im {name}" - } - }, - "render": "Poststelle" - } - } - }, - "shortDescription": "Eine Karte die Briefkästen und Poststellen anzeigt", - "title": "Karte mit Briefkästen und Poststellen" - }, - "shops": { - "description": "Auf dieser Karte kann man grundlegende Informationen über Geschäfte markieren, Öffnungszeiten und Telefonnummern hinzufügen", - "shortDescription": "Eine bearbeitbare Karte mit grundlegenden Geschäftsinformationen", - "title": "Freie Geschäftskarte" - }, - "sport_pitches": { - "description": "Ein Sportplatz ist eine Fläche, auf der Sportarten gespielt werden", - "shortDescription": "Eine Karte mit Sportplätzen", - "title": "Sportplätze" - }, - "surveillance": { - "description": "Auf dieser offenen Karte finden Sie Überwachungskameras.", - "shortDescription": "Überwachungskameras und andere Mittel zur Überwachung", - "title": "Überwachung unter Überwachung" - }, - "toilets": { - "description": "Eine Karte mit öffentlich zugänglichen Toiletten", - "title": "Freie Toilettenkarte" - }, - "trees": { - "description": "Kartieren Sie alle Bäume!", - "shortDescription": "Kartieren Sie alle Bäume", - "title": "Bäume" - }, - "uk_addresses": { - "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" - }, - "uk_addresses_housenumber": { - "mappings": { - "0": { - "then": "Dieses Gebäude hat keine Hausnummer" - } - }, - "question": "Wie lautet die Nummer dieses Hauses?", - "render": "Die Hausnummer ist {addr:housenumber}" - }, - "uk_addresses_street": { - "question": "In welcher Straße befindet sich diese Adresse?", - "render": "Diese Adresse befindet sich in der Straße {addr:street}" - } - }, - "title": { - "render": "Bekannte Adresse" - } - } - }, - "shortDescription": "Helfen Sie beim Aufbau eines offenen Datensatzes britischer Adressen", - "tileLayerSources": { - "0": { - "name": "Grenzverläufe gemäß osmuk.org" - } - }, - "title": "Adressen in Großbritannien" - }, - "waste_basket": { - "description": "Auf dieser Karte finden Sie Abfalleimer in Ihrer Nähe. Wenn ein Abfalleimer auf dieser Karte fehlt, können Sie ihn selbst hinzufügen", - "shortDescription": "Eine Karte mit Abfalleimern", - "title": "Abfalleimer" - } } \ No newline at end of file diff --git a/langs/themes/en.json b/langs/themes/en.json index 5cd1d2bc97..fb0db2db45 100644 --- a/langs/themes/en.json +++ b/langs/themes/en.json @@ -1,1529 +1,1298 @@ { - "aed": { - "description": "On this map, one can find and mark nearby defibrillators", - "title": "Open AED Map" - }, - "artwork": { - "description": "Welcome to Open Artwork Map, a map of statues, busts, grafittis and other artwork all over the world", - "title": "Open Artwork Map" - }, - "benches": { - "description": "This map shows all benches that are recorded in OpenStreetMap: Individual benches, and benches belonging to public transport stops or shelters. With an OpenStreetMap account, you can map new benches or edit details of existing benches.", - "shortDescription": "A map of benches", - "title": "Benches" - }, - "bicyclelib": { - "description": "A bicycle library is a place where bicycles can be lent, often for a small yearly fee. A notable use case are bicycle libraries for kids, which allows them to change for a bigger bike when they've outgrown their current bike", - "title": "Bicycle libraries" - }, - "binoculars": { - "description": "A map with binoculars fixed in place with a pole. It can typically be found on touristic locations, viewpoints, on top of panoramic towers or occasionally on a nature reserve.", - "shortDescription": "A map with fixed binoculars", - "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.", - "title": "Open Bookcase Map" - }, - "cafes_and_pubs": { - "title": "Cafés and pubs" - }, - "campersite": { - "description": "This site collects all official camper stopover places and places where you can dump grey and black water. You can add details about the services provided and the cost. Add pictures and reviews. This is a website and a webapp. The data is stored in OpenStreetMap, so it will be free forever and can be re-used by any app.", - "layers": { - "0": { - "description": "camper sites", - "name": "Camper sites", - "presets": { - "0": { - "description": "Add a new official camper site. These are designated places to stay overnight with your camper. They might look like a real camping or just look like a parking. They might not be signposted at all, but just be defined in a municipal decision. A regular parking intended for campers where it is not expected to spend the night, is -not- a camper site ", - "title": "camper site" - } - }, - "tagRenderings": { - "caravansites-capacity": { - "question": "How many campers can stay here? (skip if there is no obvious number of spaces or allowed vehicles)", - "render": "{capacity} campers can use this place at the same time" - }, - "caravansites-charge": { - "question": "How much does this place charge?", - "render": "This place charges {charge}" - }, - "caravansites-description": { - "question": "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)", - "render": "More details about this place: {description}" - }, - "caravansites-fee": { - "mappings": { - "0": { - "then": "You need to pay for use" - }, - "1": { - "then": "Can be used for free" - } - }, - "question": "Does this place charge a fee?" - }, - "caravansites-internet": { - "mappings": { - "0": { - "then": "There is internet access" - }, - "1": { - "then": "There is internet access" - }, - "2": { - "then": "There is no internet access" - } - }, - "question": "Does this place provide internet access?" - }, - "caravansites-internet-fee": { - "mappings": { - "0": { - "then": "You need to pay extra for internet access" - }, - "1": { - "then": "You do not need to pay extra for internet access" - } - }, - "question": "Do you have to pay for the internet access?" - }, - "caravansites-long-term": { - "mappings": { - "0": { - "then": "Yes, there are some spots for long term rental, but you can also stay on a daily basis" - }, - "1": { - "then": "No, there are no permanent guests here" - }, - "2": { - "then": "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)" - } - }, - "question": "Does this place offer spots for long term rental?" - }, - "caravansites-name": { - "question": "What is this place called?", - "render": "This place is called {name}" - }, - "caravansites-sanitary-dump": { - "mappings": { - "0": { - "then": "This place has a sanitary dump station" - }, - "1": { - "then": "This place does not have a sanitary dump station" - } - }, - "question": "Does this place have a sanitary dump station?" - }, - "caravansites-toilets": { - "mappings": { - "0": { - "then": "This place has toilets" - }, - "1": { - "then": "This place does not have toilets" - } - }, - "question": "Does this place have toilets?" - }, - "caravansites-website": { - "question": "Does this place have a website?", - "render": "Official website: {website}" - } - }, - "title": { - "mappings": { - "0": { - "then": "Unnamed camper site" - } - }, - "render": "Camper site {name}" - } - }, - "1": { - "description": "Sanitary dump stations", - "name": "Sanitary dump stations", - "presets": { - "0": { - "description": "Add a new sanitary dump station. This is a place where camper drivers can dump waste water or chemical toilet waste. Often there's also drinking water and electricity.", - "title": "sanitary dump station" - } - }, - "tagRenderings": { - "dumpstations-access": { - "mappings": { - "0": { - "then": "You need a network key/code to use this" - }, - "1": { - "then": "You need to be a customer of camping/campersite to use this place" - }, - "2": { - "then": "Anyone can use this dump station" - }, - "3": { - "then": "Anyone can use this dump station" - } - }, - "question": "Who can use this dump station?" - }, - "dumpstations-charge": { - "question": "How much does this place charge?", - "render": "This place charges {charge}" - }, - "dumpstations-chemical-waste": { - "mappings": { - "0": { - "then": "You can dispose of chemical toilet waste here" - }, - "1": { - "then": "You cannot dispose of chemical toilet waste here" - } - }, - "question": "Can you dispose of chemical toilet waste here?" - }, - "dumpstations-fee": { - "mappings": { - "0": { - "then": "You need to pay for use" - }, - "1": { - "then": "Can be used for free" - } - }, - "question": "Does this place charge a fee?" - }, - "dumpstations-grey-water": { - "mappings": { - "0": { - "then": "You can dispose of grey water here" - }, - "1": { - "then": "You cannot dispose of gray water here" - } - }, - "question": "Can you dispose of grey water here?" - }, - "dumpstations-network": { - "question": "What network is this place a part of? (skip if none)", - "render": "This station is part of network {network}" - }, - "dumpstations-waterpoint": { - "mappings": { - "0": { - "then": "This place has a water point" - }, - "1": { - "then": "This place does not have a water point" - } - }, - "question": "Does this place have a water point?" - } - }, - "title": { - "mappings": { - "0": { - "then": "Dump station" - } - }, - "render": "Dump station {name}" - } - } + "aed": { + "description": "On this map, one can find and mark nearby defibrillators", + "title": "Open AED Map" }, - "overrideAll": { - "tagRenderings+": { - "0": { - "question": "Who operates this place?", - "render": "This place is operated by {operator}" - }, - "1": { - "mappings": { + "artwork": { + "description": "Welcome to Open Artwork Map, a map of statues, busts, grafittis and other artwork all over the world", + "title": "Open Artwork Map" + }, + "benches": { + "description": "This map shows all benches that are recorded in OpenStreetMap: Individual benches, and benches belonging to public transport stops or shelters. With an OpenStreetMap account, you can map new benches or edit details of existing benches.", + "shortDescription": "A map of benches", + "title": "Benches" + }, + "bicycle_rental": { + "description": "On this map, you'll find the many bicycle rental stations as they are known by OpenStreetMap", + "shortDescription": "A map with bicycle rental stations and bicycle rental shops", + "title": "Bicycle rental" + }, + "bicyclelib": { + "description": "A bicycle library is a place where bicycles can be lent, often for a small yearly fee. A notable use case are bicycle libraries for kids, which allows them to change for a bigger bike when they've outgrown their current bike", + "title": "Bicycle libraries" + }, + "binoculars": { + "description": "A map with binoculars fixed in place with a pole. It can typically be found on touristic locations, viewpoints, on top of panoramic towers or occasionally on a nature reserve.", + "shortDescription": "A map with fixed binoculars", + "title": "Binoculars" + }, + "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": { + "description": "Pubs and bars", + "title": "Cafés and pubs" + }, + "campersite": { + "description": "This site collects all official camper stopover places and places where you can dump grey and black water. You can add details about the services provided and the cost. Add pictures and reviews. This is a website and a webapp. The data is stored in OpenStreetMap, so it will be free forever and can be re-used by any app.", + "layers": { "0": { - "then": "This place has a power supply" + "description": "camper sites", + "name": "Camper sites", + "presets": { + "0": { + "description": "Add a new official camper site. These are designated places to stay overnight with your camper. They might look like a real camping or just look like a parking. They might not be signposted at all, but just be defined in a municipal decision. A regular parking intended for campers where it is not expected to spend the night, is -not- a camper site ", + "title": "camper site" + } + }, + "tagRenderings": { + "caravansites-capacity": { + "question": "How many campers can stay here? (skip if there is no obvious number of spaces or allowed vehicles)", + "render": "{capacity} campers can use this place at the same time" + }, + "caravansites-charge": { + "question": "How much does this place charge?", + "render": "This place charges {charge}" + }, + "caravansites-description": { + "question": "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)", + "render": "More details about this place: {description}" + }, + "caravansites-fee": { + "mappings": { + "0": { + "then": "You need to pay for use" + }, + "1": { + "then": "Can be used for free" + } + }, + "question": "Does this place charge a fee?" + }, + "caravansites-internet": { + "mappings": { + "0": { + "then": "There is internet access" + }, + "1": { + "then": "There is internet access" + }, + "2": { + "then": "There is no internet access" + } + }, + "question": "Does this place provide internet access?" + }, + "caravansites-internet-fee": { + "mappings": { + "0": { + "then": "You need to pay extra for internet access" + }, + "1": { + "then": "You do not need to pay extra for internet access" + } + }, + "question": "Do you have to pay for the internet access?" + }, + "caravansites-long-term": { + "mappings": { + "0": { + "then": "Yes, there are some spots for long term rental, but you can also stay on a daily basis" + }, + "1": { + "then": "No, there are no permanent guests here" + }, + "2": { + "then": "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)" + } + }, + "question": "Does this place offer spots for long term rental?" + }, + "caravansites-name": { + "question": "What is this place called?", + "render": "This place is called {name}" + }, + "caravansites-sanitary-dump": { + "mappings": { + "0": { + "then": "This place has a sanitary dump station" + }, + "1": { + "then": "This place does not have a sanitary dump station" + } + }, + "question": "Does this place have a sanitary dump station?" + }, + "caravansites-toilets": { + "mappings": { + "0": { + "then": "This place has toilets" + }, + "1": { + "then": "This place does not have toilets" + } + }, + "question": "Does this place have toilets?" + }, + "caravansites-website": { + "question": "Does this place have a website?", + "render": "Official website: {website}" + } + }, + "title": { + "mappings": { + "0": { + "then": "Unnamed camper site" + } + }, + "render": "Camper site {name}" + } }, "1": { - "then": "This place does not have power supply" + "description": "Sanitary dump stations", + "name": "Sanitary dump stations", + "presets": { + "0": { + "description": "Add a new sanitary dump station. This is a place where camper drivers can dump waste water or chemical toilet waste. Often there's also drinking water and electricity.", + "title": "sanitary dump station" + } + }, + "tagRenderings": { + "dumpstations-access": { + "mappings": { + "0": { + "then": "You need a network key/code to use this" + }, + "1": { + "then": "You need to be a customer of camping/campersite to use this place" + }, + "2": { + "then": "Anyone can use this dump station" + }, + "3": { + "then": "Anyone can use this dump station" + } + }, + "question": "Who can use this dump station?" + }, + "dumpstations-charge": { + "question": "How much does this place charge?", + "render": "This place charges {charge}" + }, + "dumpstations-chemical-waste": { + "mappings": { + "0": { + "then": "You can dispose of chemical toilet waste here" + }, + "1": { + "then": "You cannot dispose of chemical toilet waste here" + } + }, + "question": "Can you dispose of chemical toilet waste here?" + }, + "dumpstations-fee": { + "mappings": { + "0": { + "then": "You need to pay for use" + }, + "1": { + "then": "Can be used for free" + } + }, + "question": "Does this place charge a fee?" + }, + "dumpstations-grey-water": { + "mappings": { + "0": { + "then": "You can dispose of grey water here" + }, + "1": { + "then": "You cannot dispose of gray water here" + } + }, + "question": "Can you dispose of grey water here?" + }, + "dumpstations-network": { + "question": "What network is this place a part of? (skip if none)", + "render": "This station is part of network {network}" + }, + "dumpstations-waterpoint": { + "mappings": { + "0": { + "then": "This place has a water point" + }, + "1": { + "then": "This place does not have a water point" + } + }, + "question": "Does this place have a water point?" + } + }, + "title": { + "mappings": { + "0": { + "then": "Dump station" + } + }, + "render": "Dump station {name}" + } } - }, - "question": "Does this place have a power supply?" - } - } + }, + "overrideAll": { + "tagRenderings+": { + "0": { + "question": "Who operates this place?", + "render": "This place is operated by {operator}" + }, + "1": { + "mappings": { + "0": { + "then": "This place has a power supply" + }, + "1": { + "then": "This place does not have power supply" + } + }, + "question": "Does this place have a power supply?" + } + } + }, + "shortDescription": "Find sites to spend the night with your camper", + "title": "Campersites" }, - "shortDescription": "Find sites to spend the night with your camper", - "title": "Campersites" - }, - "charging_stations": { - "description": "On this open map, one can find and mark information about charging stations", - "shortDescription": "A worldwide map of charging stations", - "title": "Charging stations" - }, - "climbing": { - "description": "On this map you will find various climbing opportunities such as climbing gyms, bouldering halls and rocks in nature.", - "descriptionTail": "The climbing map was originally made by Christian Neumann. Please get in touch if you have feedback or questions.

The project uses data of the OpenStreetMap project.

", - "layers": { - "0": { - "description": "A climbing club or organisations", - "name": "Climbing club", - "presets": { - "0": { - "description": "A climbing club", - "title": "Climbing club" - }, - "1": { - "description": "A NGO working around climbing", - "title": "Climbing NGO" - } - }, - "tagRenderings": { - "climbing_club-name": { - "question": "What is the name of this climbing club or NGO?", - "render": "{name}" - } - }, - "title": { - "mappings": { + "charging_stations": { + "description": "On this open map, one can find and mark information about charging stations", + "shortDescription": "A worldwide map of charging stations", + "title": "Charging stations" + }, + "climbing": { + "description": "On this map you will find various climbing opportunities such as climbing gyms, bouldering halls and rocks in nature.", + "descriptionTail": "The climbing map was originally made by Christian Neumann. Please get in touch if you have feedback or questions.

The project uses data of the OpenStreetMap project.

", + "layers": { "0": { - "then": "Climbing NGO" - } - }, - "render": "Climbing club" - } - }, - "1": { - "description": "A climbing gym", - "name": "Climbing gyms", - "tagRenderings": { - "name": { - "question": "What is the name of this climbing gym?", - "render": "{name}" - } - }, - "title": { - "mappings": { - "0": { - "then": "Climbing gym {name}" - } - }, - "render": "Climbing gym" - } - }, - "2": { - "name": "Climbing routes", - "presets": { - "0": { - "title": "Climbing route" - } - }, - "tagRenderings": { - "Bolts": { - "mappings": { - "0": { - "then": "This route is not bolted" - }, - "1": { - "then": "This route is not bolted" - } - }, - "question": "How much bolts does this route have before reaching the moulinette?", - "render": "This route has {climbing:bolts} bolts" - }, - "Difficulty": { - "question": "What is the difficulty of this climbing route according to the french/belgian system?", - "render": "The difficulty is {climbing:grade:french} according to the french/belgian system" - }, - "Length": { - "question": "How long is this climbing route (in meters)?", - "render": "This route is {canonical(climbing:length)} long" - }, - "Name": { - "mappings": { - "0": { - "then": "This climbing route doesn't have a name" - } - }, - "question": "What is the name of this climbing route?", - "render": "{name}" - }, - "Rock type": { - "render": "The rock type is {_embedding_features_with_rock:rock} as stated on the surrounding crag" - } - }, - "title": { - "mappings": { - "0": { - "then": "Climbing route {name}" - } - }, - "render": "Climbing route" - } - }, - "3": { - "description": "A climbing opportunity", - "name": "Climbing opportunities", - "presets": { - "0": { - "description": "A climbing opportunity", - "title": "Climbing opportunity" - } - }, - "tagRenderings": { - "Contained routes hist": { - "render": "

Difficulties overview

{histogram(_difficulty_hist)}" - }, - "Contained routes length hist": { - "render": "

Length overview

{histogram(_length_hist)}" - }, - "Contained_climbing_routes": { - "render": "

Contains {_contained_climbing_routes_count} routes

    {_contained_climbing_routes}
" - }, - "Rock type (crag/rock/cliff only)": { - "mappings": { - "0": { - "then": "Limestone" - } - }, - "question": "What is the rock type here?", - "render": "The rock type is {rock}" - }, - "Type": { - "mappings": { - "0": { - "then": "A climbing boulder - a single rock or cliff with one or a few climbing routes which can be climbed safely without rope" - }, - "1": { - "then": "A climbing crag - a single rock or cliff with at least a few climbing routes" - } - } - }, - "name": { - "mappings": { - "0": { - "then": "This climbing opportunity doesn't have a name" - } - }, - "question": "What is the name of this climbing opportunity?", - "render": "{name}" - } - }, - "title": { - "mappings": { - "0": { - "then": "Climbing crag {name}" + "description": "A climbing club or organisation", + "name": "Climbing club", + "presets": { + "0": { + "description": "A climbing club", + "title": "Climbing club" + }, + "1": { + "description": "An NGO working around climbing", + "title": "Climbing NGO" + } + }, + "tagRenderings": { + "climbing_club-name": { + "question": "What is the name of this climbing club or NGO?", + "render": "{name}" + } + }, + "title": { + "mappings": { + "0": { + "then": "Climbing NGO" + } + }, + "render": "Climbing club" + } }, "1": { - "then": "Climbing area {name}" + "description": "A climbing gym", + "name": "Climbing gyms", + "tagRenderings": { + "name": { + "question": "What is the name of this climbing gym?", + "render": "{name}" + } + }, + "title": { + "mappings": { + "0": { + "then": "Climbing gym {name}" + } + }, + "render": "Climbing gym" + } }, "2": { - "then": "Climbing site" + "name": "Climbing routes", + "presets": { + "0": { + "title": "Climbing route" + } + }, + "tagRenderings": { + "Bolts": { + "mappings": { + "0": { + "then": "This route is not bolted" + }, + "1": { + "then": "This route is not bolted" + } + }, + "question": "How many bolts does this route have before reaching the anchor?", + "render": "This route has {climbing:bolts} bolts" + }, + "Difficulty": { + "question": "What is the grade of this climbing route according to the french/belgian system?", + "render": "The grade is {climbing:grade:french} according to the french/belgian system" + }, + "Length": { + "question": "How long is this climbing route (in meters)?", + "render": "This route is {canonical(climbing:length)} long" + }, + "Name": { + "mappings": { + "0": { + "then": "This climbing route doesn't have a name" + } + }, + "question": "What is the name of this climbing route?", + "render": "{name}" + }, + "Rock type": { + "render": "The rock type is {_embedding_features_with_rock:rock} as stated on the surrounding crag" + } + }, + "title": { + "mappings": { + "0": { + "then": "Climbing route {name}" + } + }, + "render": "Climbing route" + } }, "3": { - "then": "Climbing opportunity {name}" - } - }, - "render": "Climbing opportunity" - } - }, - "4": { - "description": "A climbing opportunity?", - "name": "Climbing opportunities?", - "tagRenderings": { - "climbing-opportunity-name": { - "render": "{name}" - }, - "climbing-possible": { - "mappings": { - "0": { - "then": "Climbing is not possible here" - }, - "1": { - "then": "Climbing is possible here" - }, - "2": { - "then": "Climbing is not possible here" - } + "description": "A climbing opportunity", + "name": "Climbing opportunities", + "presets": { + "0": { + "description": "A climbing opportunity", + "title": "Climbing opportunity" + } + }, + "tagRenderings": { + "Contained routes hist": { + "render": "

Grades overview

{histogram(_difficulty_hist)}" + }, + "Contained routes length hist": { + "render": "

Length overview

{histogram(_length_hist)}" + }, + "Contained_climbing_routes": { + "render": "

Contains {_contained_climbing_routes_count} routes

    {_contained_climbing_routes}
" + }, + "Rock type (crag/rock/cliff only)": { + "mappings": { + "0": { + "then": "Limestone" + } + }, + "question": "What is the rock type here?", + "render": "The rock type is {rock}" + }, + "Type": { + "mappings": { + "0": { + "then": "A climbing boulder - a single rock or cliff with one or a few climbing routes which can be climbed safely without rope" + }, + "1": { + "then": "A climbing crag - a single rock or cliff with at least a few climbing routes" + } + } + }, + "name": { + "mappings": { + "0": { + "then": "This climbing opportunity doesn't have a name" + } + }, + "question": "What is the name of this climbing opportunity?", + "render": "{name}" + } + }, + "title": { + "mappings": { + "0": { + "then": "Climbing crag {name}" + }, + "1": { + "then": "Climbing area {name}" + }, + "2": { + "then": "Climbing site" + }, + "3": { + "then": "Climbing opportunity {name}" + } + }, + "render": "Climbing opportunity" + } }, - "question": "Is climbing possible here?" - } + "4": { + "description": "A climbing opportunity?", + "name": "Climbing opportunities?", + "tagRenderings": { + "climbing-opportunity-name": { + "render": "{name}" + }, + "climbing-possible": { + "mappings": { + "0": { + "then": "Climbing is not possible here" + }, + "1": { + "then": "Climbing is possible here" + }, + "2": { + "then": "Climbing is not possible here" + } + }, + "question": "Is climbing possible here?" + } + }, + "title": { + "render": "Climbing opportunity?" + } + } }, - "title": { - "render": "Climbing opportunity?" - } - } + "overrideAll": { + "tagRenderings+": { + "0": { + "question": "Is there a (unofficial) website with more informations (e.g. topos)?" + }, + "1": { + "mappings": { + "0": { + "then": "The containing feature states that this is publicly accessible
{_embedding_feature:access:description}" + }, + "1": { + "then": "The containing feature states that a permit is needed to access
{_embedding_feature:access:description}" + }, + "2": { + "then": "The containing feature states that this is only accessible to customers
{_embedding_feature:access:description}" + }, + "3": { + "then": "The containing feature states that this is only accessible to club members
{_embedding_feature:access:description}" + } + } + }, + "2": { + "mappings": { + "0": { + "then": "Publicly accessible to anyone" + }, + "1": { + "then": "You need a permit to access here" + }, + "2": { + "then": "Only customers" + }, + "3": { + "then": "Only club members" + } + }, + "question": "Who can access here?" + }, + "4": { + "question": "What is the (average) length of the routes in meters?", + "render": "The routes are {canonical(climbing:length)} long on average" + }, + "5": { + "question": "What is the grade of the easiest route here, according to the french classification system?", + "render": "The lowest grade is {climbing:grade:french:min} according to the french/belgian system" + }, + "6": { + "question": "What is the highest grade route here, according to the french classification system?", + "render": "The highest grade is {climbing:grade:french:max} according to the french/belgian system" + }, + "7": { + "mappings": { + "0": { + "then": "Bouldering is possible here" + }, + "1": { + "then": "Bouldering is not possible here" + }, + "2": { + "then": "Bouldering is possible, allthough there are only a few routes" + }, + "3": { + "then": "There are {climbing:boulder} boulder routes" + } + }, + "question": "Is bouldering possible here?" + }, + "8": { + "mappings": { + "0": { + "then": "Toprope climbing is possible here" + }, + "1": { + "then": "Toprope climbing is not possible here" + }, + "2": { + "then": "There are {climbing:toprope} toprope routes" + } + }, + "question": "Is toprope climbing possible here?" + }, + "9": { + "mappings": { + "0": { + "then": "Sport climbing is possible here" + }, + "1": { + "then": "Sport climbing is not possible here" + }, + "2": { + "then": "There are {climbing:sport} sport climbing routes" + } + }, + "question": "Is sport climbing possible here on fixed anchors?" + }, + "10": { + "mappings": { + "0": { + "then": "Traditional climbing is possible here" + }, + "1": { + "then": "Traditional climbing is not possible here" + }, + "2": { + "then": "There are {climbing:traditional} traditional climbing routes" + } + }, + "question": "Is traditional climbing possible here (using own gear e.g. chocks)?" + }, + "11": { + "mappings": { + "0": { + "then": "There is a speed climbing wall" + }, + "1": { + "then": "There is no speed climbing wall" + }, + "2": { + "then": "There are {climbing:speed} speed climbing walls" + } + }, + "question": "Is there a speed climbing wall?" + } + }, + "units+": { + "0": { + "applicableUnits": { + "0": { + "human": " meter" + }, + "1": { + "human": " feet" + } + } + } + } + }, + "title": "Open Climbing Map" }, - "overrideAll": { - "tagRenderings+": { - "0": { - "question": "Is there a (unofficial) website with more informations (e.g. topos)?" - }, - "1": { - "mappings": { + "cycle_highways": { + "description": "This map shows cycle highways", + "layers": { "0": { - "then": "The containing feature states that this is publicly accessible
{_embedding_feature:access:description}" + "name": "cycle highways", + "title": { + "render": "cycle highway" + } + } + }, + "title": "Cycle highways" + }, + "cycle_infra": { + "description": "A map where you can view and edit things related to the bicycle infrastructure. Made during #osoc21.", + "shortDescription": "A map where you can view and edit things related to the bicycle infrastructure.", + "title": "Bicycle infrastructure" + }, + "cyclenodes": { + "description": "This map shows cycle node networks and allows you to add new nodes easily", + "layers": { + "0": { + "name": "node to node links", + "tagRenderings": { + "node2node-survey:date": { + "question": "When was this node to node link last surveyed?", + "render": "This node to node link was last surveyed on {survey:date}" + } + }, + "title": { + "mappings": { + "0": { + "then": "node to node link {ref}" + } + }, + "render": "node to node link" + } }, "1": { - "then": "The containing feature states that a permit is needed to access
{_embedding_feature:access:description}" + "name": "nodes", + "tagRenderings": { + "node-expected_rcn_route_relations": { + "question": "How many other cycle nodes does this node link to?", + "render": "This node links to {expected_rcn_route_relations} other cycle nodes." + }, + "node-survey:date": { + "question": "When was this cycle node last surveyed?", + "render": "This cycle node was last surveyed on {survey:date}" + } + }, + "title": { + "render": "cycle node {rcn_ref}" + } + } + }, + "title": "Cycle Node Networks" + }, + "cyclestreets": { + "description": "A cyclestreet is is a street where motorized traffic is not allowed to overtake cyclists. They are signposted by a special traffic sign. Cyclestreets can be found in the Netherlands and Belgium, but also in Germany and France. ", + "layers": { + "0": { + "description": "A cyclestreet is a street where motorized traffic is not allowed to overtake a cyclist", + "name": "Cyclestreets" + }, + "1": { + "description": "This street will become a cyclestreet soon", + "name": "Future cyclestreet", + "title": { + "mappings": { + "0": { + "then": "{name} will become a cyclestreet soon" + } + }, + "render": "Future cyclestreet" + } }, "2": { - "then": "The containing feature states that this is only accessible to customers
{_embedding_feature:access:description}" + "description": "Layer to mark any street as cyclestreet", + "name": "All streets", + "title": { + "render": "Street" + } + } + }, + "overrideAll": { + "tagRenderings+": { + "0": { + "mappings": { + "0": { + "then": "This street is a cyclestreet (and has a speed limit of 30 km/h)" + }, + "1": { + "then": "This street is a cyclestreet" + }, + "2": { + "then": "This street will become a cyclstreet soon" + }, + "3": { + "then": "This street is not a cyclestreet" + } + }, + "question": "Is the street {name} a cyclestreet?" + }, + "1": { + "question": "When will this street become a cyclestreet?", + "render": "This street will become a cyclestreet at {cyclestreet:start_date}" + } + } + }, + "shortDescription": "A map of cyclestreets", + "title": "Cyclestreets" + }, + "cyclofix": { + "description": "The goal of this map is to present cyclists with an easy-to-use solution to find the appropriate infrastructure for their needs.

You can track your precise location (mobile only) and select layers that are relevant for you in the bottom left corner. You can also use this tool to add or edit pins (points of interest) to the map and provide more data by answering the questions.

All changes you make will automatically be saved in the global database of OpenStreetMap and can be freely re-used by others.

For more information about the cyclofix project, go to cyclofix.osm.be.", + "title": "Cyclofix - an open map for cyclists" + }, + "drinking_water": { + "description": "On this map, publicly accessible drinking water spots are shown and can be easily added", + "title": "Drinking Water" + }, + "entrances": { + "description": "A map showing all entrances, which surveys for important aspects for wheelchair users", + "shortDescription": "Survey entrances to help wheelchair routing", + "title": "Entrances" + }, + "etymology": { + "description": "On this map, you can see what an object is named after. The streets, buildings, ... come from OpenStreetMap which got linked with Wikidata. In the popup, you'll see the Wikipedia article (if it exists) or a wikidata box of what the object is named after. If the object itself has a wikipedia page, that'll be shown too.

You can help contribute too!Zoom in enough and all streets will show up. You can click one and a Wikidata-search box will popup. With a few clicks, you can add an etymology link. Note that you need a free OpenStreetMap account to do this.", + "layers": { + "1": { + "override": { + "=name": "Streets without etymology information" + } + }, + "2": { + "override": { + "=name": "Parks and forests without etymology information" + } }, "3": { - "then": "The containing feature states that this is only accessible to club members
{_embedding_feature:access:description}" + "override": { + "=name": "Education institutions without etymology information" + } } - } }, - "2": { - "mappings": { - "0": { - "then": "Publicly accessible to anyone" - }, - "1": { - "then": "You need a permit to access here" - }, - "2": { - "then": "Only custumers" - }, - "3": { - "then": "Only club members" - } - }, - "question": "Who can access here?" - }, - "4": { - "question": "What is the (average) length of the routes in meters?", - "render": "The routes are {canonical(climbing:length)} long on average" - }, - "5": { - "question": "What is the level of the easiest route here, accoring to the french classification system?", - "render": "The minimal difficulty is {climbing:grade:french:min} according to the french/belgian system" - }, - "6": { - "question": "What is the level of the most difficult route here, accoring to the french classification system?", - "render": "The maximal difficulty is {climbing:grade:french:max} according to the french/belgian system" - }, - "7": { - "mappings": { - "0": { - "then": "Bouldering is possible here" - }, - "1": { - "then": "Bouldering is not possible here" - }, - "2": { - "then": "Bouldering is possible, allthough there are only a few routes" - }, - "3": { - "then": "There are {climbing:boulder} boulder routes" - } - }, - "question": "Is bouldering possible here?" - }, - "8": { - "mappings": { - "0": { - "then": "Toprope climbing is possible here" - }, - "1": { - "then": "Toprope climbing is not possible here" - }, - "2": { - "then": "There are {climbing:toprope} toprope routes" - } - }, - "question": "Is toprope climbing possible here?" - }, - "9": { - "mappings": { - "0": { - "then": "Sport climbing is possible here" - }, - "1": { - "then": "Sport climbing is not possible here" - }, - "2": { - "then": "There are {climbing:sport} sport climbing routes" - } - }, - "question": "Is sport climbing possible here on fixed anchors?" - }, - "10": { - "mappings": { - "0": { - "then": "Traditional climbing is possible here" - }, - "1": { - "then": "Traditional climbing is not possible here" - }, - "2": { - "then": "There are {climbing:traditional} traditional climbing routes" - } - }, - "question": "Is traditional climbing possible here (using own gear e.g. chocks)?" - }, - "11": { - "mappings": { - "0": { - "then": "There is a speed climbing wall" - }, - "1": { - "then": "There is no speed climbing wall" - }, - "2": { - "then": "There are {climbing:speed} speed climbing walls" - } - }, - "question": "Is there a speed climbing wall?" - } - }, - "units+": { - "0": { - "applicableUnits": { - "0": { - "human": " meter" - }, - "1": { - "human": " feet" - } - } - } - } + "shortDescription": "What is the origin of a toponym?", + "title": "Open Etymology Map" }, - "title": "Open Climbing Map" - }, - "cycle_highways": { - "description": "This map shows cycle highways", - "layers": { - "0": { - "name": "cycle highways", - "title": { - "render": "cycle highway" - } - } - }, - "title": "Cycle highways" - }, - "cycle_infra": { - "description": "A map where you can view and edit things related to the bicycle infrastructure. Made during #osoc21.", - "shortDescription": "A map where you can view and edit things related to the bicycle infrastructure.", - "title": "Bicycle infrastructure" - }, - "cyclestreets": { - "description": "A cyclestreet is is a street where motorized traffic is not allowed to overtake cyclists. They are signposted by a special traffic sign. Cyclestreets can be found in the Netherlands and Belgium, but also in Germany and France. ", - "layers": { - "0": { - "description": "A cyclestreet is a street where motorized traffic is not allowed to overtake a cyclist", - "name": "Cyclestreets" - }, - "1": { - "description": "This street will become a cyclestreet soon", - "name": "Future cyclestreet", - "title": { - "mappings": { + "facadegardens": { + "description": "Facade gardens, green facades and trees in the city not only bring peace and quiet, but also a more beautiful city, greater biodiversity, a cooling effect and better air quality.
Klimaan VZW and Mechelen Klimaatneutraal want to map existing and new facade gardens as an example for people who want to build their own garden or for city walkers who love nature.
More info about the project at klimaan.be.", + "layers": { "0": { - "then": "{name} will become a cyclestreet soon" + "description": "Facade gardens", + "name": "Facade gardens", + "presets": { + "0": { + "description": "Add a facade garden", + "title": "facade garden" + } + }, + "tagRenderings": { + "facadegardens-description": { + "question": "Extra describing info about the garden (if needed and not yet described above)", + "render": "More details: {description}" + }, + "facadegardens-direction": { + "question": "What is the orientation of the garden?", + "render": "Orientation: {direction} (where 0=N and 90=O)" + }, + "facadegardens-edible": { + "mappings": { + "0": { + "then": "There are edible plants" + }, + "1": { + "then": "There are no edible plants" + } + }, + "question": "Are there any edible plants?" + }, + "facadegardens-plants": { + "mappings": { + "0": { + "then": "There are vines" + }, + "1": { + "then": "There are flowering plants" + }, + "2": { + "then": "There are shrubs" + }, + "3": { + "then": "There are groundcovering plants" + } + }, + "question": "What kinds of plants grow here?" + }, + "facadegardens-rainbarrel": { + "mappings": { + "0": { + "then": "There is a rain barrel" + }, + "1": { + "then": "There is no rain barrel" + } + }, + "question": "Is there a water barrel installed for the garden?" + }, + "facadegardens-start_date": { + "question": "When was the garden constructed? (a year is sufficient)", + "render": "Construction date of the garden: {start_date}" + }, + "facadegardens-sunshine": { + "mappings": { + "0": { + "then": "The garden is in full sun" + }, + "1": { + "then": "The garden is in partial shade" + }, + "2": { + "then": "The garden is in the shade" + } + }, + "question": "Is the garden shaded or sunny?" + } + }, + "title": { + "render": "Facade garden" + } } - }, - "render": "Future cyclestreet" - } - }, - "2": { - "description": "Layer to mark any street as cyclestreet", - "name": "All streets", - "title": { - "render": "Street" - } - } + }, + "shortDescription": "This map shows facade gardens with pictures and useful info about orientation, sunshine and plant types.", + "title": "Facade gardens" }, - "overrideAll": { - "tagRenderings+": { - "0": { - "mappings": { + "food": { + "description": "Restaurants and fast food", + "title": "Restaurants and fast food" + }, + "fritures": { + "description": "On this map, you'll find your favourite fries shop!", + "layers": { "0": { - "then": "This street is a cyclestreet (and has a speed limit of 30 km/h)" + "override": { + "name": "Fries shop" + } + } + }, + "title": "Fries shops" + }, + "ghostbikes": { + "description": "A ghost bike is a memorial for a cyclist who died in a traffic accident, in the form of a white bicycle placed permanently near the accident location.

On this map, one can see all the ghost bikes which are known by OpenStreetMap. Is a ghost bike missing? Everyone can add or update information here - you only need to have a (free) OpenStreetMap account.", + "title": "Ghost bikes" + }, + "grb": { + "description": "This theme is an attempt to help automating the GRB import.", + "layers": { + "1": { + "tagRenderings": { + "building type": { + "question": "What kind of building is this?" + } + } + } + } + }, + "grb_fixme": { + "layers": { + "0": { + "tagRenderings": { + "building type": { + "question": "What kind of building is this?" + } + } + } + } + }, + "hackerspaces": { + "description": "On this map you can see hackerspaces, add a new hackerspace or update data directly", + "layers": { + "0": { + "description": "Hackerspace", + "name": "Hackerspace", + "presets": { + "0": { + "description": "A hackerspace is an area where people interested in software gather", + "title": "Hackerspace" + }, + "1": { + "description": "A makerspace is a place where DIY-enthusiasts gather to experiment with electronics such as arduino, LEDstrips, ...", + "title": "Makerspace" + } + }, + "tagRenderings": { + "hackerspaces-name": { + "question": "What is the name of this hackerspace?", + "render": "This hackerspace is named {name}" + }, + "hackerspaces-opening_hours": { + "mappings": { + "0": { + "then": "Opened 24/7" + } + }, + "question": "When is this hackerspace opened?", + "render": "{opening_hours_table()}" + }, + "hackerspaces-start_date": { + "question": "When was this hackerspace founded?", + "render": "This hackerspace was founded at {start_date}" + }, + "hs-club-mate": { + "mappings": { + "0": { + "then": "This hackerspace serves club mate" + }, + "1": { + "then": "This hackerspace does not serve club mate" + } + }, + "question": "Does this hackerspace serve Club Mate?" + }, + "is_makerspace": { + "mappings": { + "0": { + "then": "This is a makerspace" + }, + "1": { + "then": "This is a traditional (software oriented) hackerspace" + } + }, + "question": "Is this a hackerspace or a makerspace?" + } + }, + "title": { + "mappings": { + "0": { + "then": " {name}" + } + }, + "render": "Hackerspace" + } + } + }, + "shortDescription": "A map of hackerspaces", + "title": "Hackerspaces" + }, + "hailhydrant": { + "description": "On this map you can find and update hydrants, fire stations, ambulance stations, and extinguishers in your favorite neighborhoods.\n\nYou can track your precise location (mobile only) and select layers that are relevant for you in the bottom left corner. You can also use this tool to add or edit pins (points of interest) to the map and provide additional details by answering available questions.\n\nAll changes you make will automatically be saved in the global database of OpenStreetMap and can be freely re-used by others.", + "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": { - "then": "This street is a cyclestreet" + "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", + "title": "A map of maps" + }, + "nature": { + "description": "On this map, one can find interesting infromation for tourists and nature lovers, such as ", + "shortDescription": "A map for nature lovers, with interesting POI's", + "title": "Into nature" + }, + "notes": { + "description": "A note is a pin on the map with some text to indicate something wrong.

Make sure to checkout the filter view to search for users and text.", + "title": "Notes on OpenStreetMap" + }, + "observation_towers": { + "description": "Publicly accessible towers to enjoy the view", + "shortDescription": "Publicly accessible towers to enjoy the view", + "title": "Observation towers" + }, + "openwindpowermap": { + "description": "A map for showing and editing wind turbines.", + "layers": { + "0": { + "name": "wind turbine", + "presets": { + "0": { + "title": "wind turbine" + } + }, + "tagRenderings": { + "turbine-diameter": { + "question": "What is the rotor diameter of this wind turbine, in metres?", + "render": "The rotor diameter of this wind turbine is {rotor:diameter} metres." + }, + "turbine-height": { + "question": "What is the total height of this wind turbine (including rotor radius), in metres?", + "render": "The total height (including rotor radius) of this wind turbine is {height} metres." + }, + "turbine-operator": { + "question": "Who operates this wind turbine?", + "render": "This wind turbine is operated by {operator}." + }, + "turbine-output": { + "question": "What is the power output of this wind turbine? (e.g. 2.3 MW)", + "render": "The power output of this wind turbine is {generator:output:electricity}." + }, + "turbine-start-date": { + "question": "When did this wind turbine go into operation?", + "render": "This wind turbine went into operation on/in {start_date}." + } + }, + "title": { + "mappings": { + "0": { + "then": "{name}" + } + }, + "render": "wind turbine" + }, + "units": { + "0": { + "applicableUnits": { + "0": { + "human": " megawatts" + }, + "1": { + "human": " kilowatts" + }, + "2": { + "human": " watts" + }, + "3": { + "human": " gigawatts" + } + } + }, + "1": { + "applicableUnits": { + "0": { + "human": " meter" + } + } + } + } + } + }, + "title": "OpenWindPowerMap" + }, + "parkings": { + "description": "This map shows different parking spots", + "shortDescription": "This map shows different parking spots", + "title": "Parking" + }, + "personal": { + "description": "Create a personal theme based on all the available layers of all themes. In order to show some data, open layer selection", + "title": "Personal theme" + }, + "playgrounds": { + "description": "On this map, you find playgrounds and can add more information", + "shortDescription": "A map with playgrounds", + "title": "Playgrounds" + }, + "postal_codes": { + "description": "Postal codes", + "layers": { + "0": { + "name": "postal codes", + "tagRenderings": { + "postal_code": { + "render": "The postal code is {postal_code}" + } + }, + "title": { + "render": "Postal code {postal_code}" + } }, "2": { - "then": "This street will become a cyclstreet soon" - }, - "3": { - "then": "This street is not a cyclestreet" + "name": "town halls", + "title": { + "render": "Town hall {name}" + } } - }, - "question": "Is the street {name} a cyclestreet?" }, - "1": { - "question": "When will this street become a cyclestreet?", - "render": "This street will become a cyclestreet at {cyclestreet:start_date}" - } - } + "shortDescription": "Postal codes", + "title": "Postal codes" }, - "shortDescription": "A map of cyclestreets", - "title": "Cyclestreets" - }, - "cyclofix": { - "description": "The goal of this map is to present cyclists with an easy-to-use solution to find the appropriate infrastructure for their needs.

You can track your precise location (mobile only) and select layers that are relevant for you in the bottom left corner. You can also use this tool to add or edit pins (points of interest) to the map and provide more data by answering the questions.

All changes you make will automatically be saved in the global database of OpenStreetMap and can be freely re-used by others.

For more information about the cyclofix project, go to cyclofix.osm.be.", - "title": "Cyclofix - an open map for cyclists" - }, - "drinking_water": { - "description": "On this map, publicly accessible drinking water spots are shown and can be easily added", - "title": "Drinking Water" - }, - "etymology": { - "description": "On this map, you can see what an object is named after. The streets, buildings, ... come from OpenStreetMap which got linked with Wikidata. In the popup, you'll see the Wikipedia article (if it exists) or a wikidata box of what the object is named after. If the object itself has a wikipedia page, that'll be shown too.

You can help contribute too!Zoom in enough and all streets will show up. You can click one and a Wikidata-search box will popup. With a few clicks, you can add an etymology link. Note that you need a free OpenStreetMap account to do this.", - "layers": { - "1": { - "override": { - "name": "Streets without etymology information" - } - }, - "2": { - "override": { - "name": "Parks and forests without etymology information" - } - } - }, - "shortDescription": "What is the origin of a toponym?", - "title": "Open Etymology Map" - }, - "facadegardens": { - "description": "Facade gardens, green facades and trees in the city not only bring peace and quiet, but also a more beautiful city, greater biodiversity, a cooling effect and better air quality.
Klimaan VZW and Mechelen Klimaatneutraal want to map existing and new facade gardens as an example for people who want to build their own garden or for city walkers who love nature.
More info about the project at klimaan.be.", - "layers": { - "0": { - "description": "Facade gardens", - "name": "Facade gardens", - "presets": { - "0": { - "description": "Add a facade garden", - "title": "facade garden" - } + "postboxes": { + "description": "On this map you can find and add data of post offices and post boxes. You can use this map to find where you can mail your next postcard! :)
Spotted an error or is a post box missing? You can edit this map with a free OpenStreetMap account. ", + "layers": { + "0": { + "description": "The layer showing postboxes.", + "name": "Postboxes", + "presets": { + "0": { + "title": "postbox" + } + }, + "title": { + "render": "Postbox" + } + }, + "1": { + "description": "A layer showing post offices.", + "filter": { + "0": { + "options": { + "0": { + "question": "Currently open" + } + } + } + }, + "name": "Post offices", + "presets": { + "0": { + "title": "Post Office" + } + }, + "tagRenderings": { + "OH": { + "mappings": { + "0": { + "then": "24/7 opened (including holidays)" + } + }, + "question": "What are the opening hours for this post office?", + "render": "Opening Hours: {opening_hours_table()}" + } + }, + "title": { + "render": "Post Office" + } + } }, - "tagRenderings": { - "facadegardens-description": { - "question": "Extra describing info about the garden (if needed and not yet described above)", - "render": "More details: {description}" - }, - "facadegardens-direction": { - "question": "What is the orientation of the garden?", - "render": "Orientation: {direction} (where 0=N and 90=O)" - }, - "facadegardens-edible": { - "mappings": { - "0": { - "then": "There are edible plants" - }, - "1": { - "then": "There are no edible plants" - } - }, - "question": "Are there any edible plants?" - }, - "facadegardens-plants": { - "mappings": { - "0": { - "then": "There are vines" - }, - "1": { - "then": "There are flowering plants" - }, - "2": { - "then": "There are shrubs" - }, - "3": { - "then": "There are groundcovering plants" - } - }, - "question": "What kinds of plants grow here?" - }, - "facadegardens-rainbarrel": { - "mappings": { - "0": { - "then": "There is a rain barrel" - }, - "1": { - "then": "There is no rain barrel" - } - }, - "question": "Is there a water barrel installed for the garden?" - }, - "facadegardens-start_date": { - "question": "When was the garden constructed? (a year is sufficient)", - "render": "Construction date of the garden: {start_date}" - }, - "facadegardens-sunshine": { - "mappings": { - "0": { - "then": "The garden is in full sun" - }, - "1": { - "then": "The garden is in partial shade" - }, - "2": { - "then": "The garden is in the shade" - } - }, - "question": "Is the garden shaded or sunny?" - } - }, - "title": { - "render": "Facade garden" - } - } + "shortDescription": "A map showing postboxes and post offices", + "title": "Postbox and Post Office Map" }, - "shortDescription": "This map shows facade gardens with pictures and useful info about orientation, sunshine and plant types.", - "title": "Facade gardens" - }, - "food": { - "title": "Restaurants and fast food" - }, - "fritures": { - "layers": { - "0": { - "override": { - "name": "Fries shop" - } - } + "shops": { + "description": "On this map, one can mark basic information about shops, add opening hours and phone numbers", + "shortDescription": "An editable map with basic shop information", + "title": "Open Shop Map" + }, + "sidewalks": { + "description": "Experimental theme", + "layers": { + "0": { + "description": "Layer showing sidewalks of highways", + "name": "Sidewalks", + "tagRenderings": { + "streetname": { + "render": "This street is named {name}" + } + }, + "title": { + "render": "{name}" + } + } + }, + "shortDescription": "Sidewalk mapping", + "title": "Sidewalks" + }, + "sport_pitches": { + "description": "A sport pitch is an area where sports are played", + "shortDescription": "A map showing sport pitches", + "title": "Sport pitches" + }, + "street_lighting": { + "description": "On this map you can find everything about street lighting", + "layers": { + "1": { + "name": "Lit streets", + "tagRenderings": { + "lit": { + "mappings": { + "0": { + "then": "This street is lit" + }, + "1": { + "then": "This street is not lit" + }, + "2": { + "then": "This street is lit at night" + }, + "3": { + "then": "This street is lit 24/7" + } + }, + "question": "Is this street lit?" + } + }, + "title": { + "render": "Lit street" + } + }, + "2": { + "name": "All streets", + "tagRenderings": { + "lit": { + "mappings": { + "0": { + "then": "This street is lit" + }, + "1": { + "then": "This street is not lit" + }, + "2": { + "then": "This street is lit at night" + }, + "3": { + "then": "This street is lit 24/7" + } + }, + "question": "Is this street lit?" + } + }, + "title": { + "render": "Street" + } + } + }, + "title": "Street Lighting" + }, + "surveillance": { + "description": "On this open map, you can find surveillance cameras.", + "shortDescription": "Surveillance cameras and other means of surveillance", + "title": "Surveillance under Surveillance" + }, + "toilets": { + "description": "A map of public toilets", + "title": "Open Toilet Map" + }, + "trees": { + "description": "Map all the trees!", + "shortDescription": "Map all the trees", + "title": "Trees" + }, + "waste": { + "description": "Map showing waste baskets and recycling facilities.", + "title": "Waste" + }, + "waste_basket": { + "description": "On this map, you'll find waste baskets near you. If a waste basket is missing on this map, you can add it yourself", + "shortDescription": "A map with waste baskets", + "title": "Waste Basket" } - }, - "ghostbikes": { - "description": "A ghost bike is a memorial for a cyclist who died in a traffic accident, in the form of a white bicycle placed permanently near the accident location.

On this map, one can see all the ghost bikes which are known by OpenStreetMap. Is a ghost bike missing? Everyone can add or update information here - you only need to have a (free) OpenStreetMap account.", - "title": "Ghost bikes" - }, - "grb": { - "description": "This theme is an attempt to help automating the GRB import.
Note that this is very hacky and 'steals' the GRB data from an external site; in order to do this, you need to install and activate this firefox extension for it to work.", - "layers": { - "1": { - "tagRenderings": { - "building type": { - "question": "What kind of building is this?" - } - } - } - } - }, - "hackerspaces": { - "description": "On this map you can see hackerspaces, add a new hackerspace or update data directly", - "layers": { - "0": { - "description": "Hackerspace", - "name": "Hackerspace", - "presets": { - "0": { - "description": "A hackerspace is an area where people interested in software gather", - "title": "Hackerspace" - }, - "1": { - "description": "A makerspace is a place where DIY-enthusiasts gather to experiment with electronics such as arduino, LEDstrips, ...", - "title": "Makerspace" - } - }, - "tagRenderings": { - "hackerspaces-name": { - "question": "What is the name of this hackerspace?", - "render": "This hackerspace is named {name}" - }, - "hackerspaces-opening_hours": { - "mappings": { - "0": { - "then": "Opened 24/7" - } - }, - "question": "When is this hackerspace opened?", - "render": "{opening_hours_table()}" - }, - "hackerspaces-start_date": { - "question": "When was this hackerspace founded?", - "render": "This hackerspace was founded at {start_date}" - }, - "hs-club-mate": { - "mappings": { - "0": { - "then": "This hackerspace serves club mate" - }, - "1": { - "then": "This hackerspace does not serve club mate" - } - }, - "question": "Does this hackerspace serve Club Mate?" - }, - "is_makerspace": { - "mappings": { - "0": { - "then": "This is a makerspace" - }, - "1": { - "then": "This is a traditional (software oriented) hackerspace" - } - }, - "question": "Is this a hackerspace or a makerspace?" - } - }, - "title": { - "mappings": { - "0": { - "then": " {name}" - } - }, - "render": "Hackerspace" - } - } - }, - "shortDescription": "A map of hackerspaces", - "title": "Hackerspaces" - }, - "hailhydrant": { - "description": "On this map you can find and update hydrants, fire stations, ambulance stations, and extinguishers in your favorite neighborhoods.\n\nYou can track your precise location (mobile only) and select layers that are relevant for you in the bottom left corner. You can also use this tool to add or edit pins (points of interest) to the map and provide additional details by answering available questions.\n\nAll changes you make will automatically be saved in the global database of OpenStreetMap and can be freely re-used by others.", - "layers": { - "0": { - "description": "Map layer to show fire hydrants.", - "name": "Map of hydrants", - "presets": { - "0": { - "description": "A hydrant is a connection point where firefighters can tap water. It might be located underground.", - "title": "Fire hydrant" - } - }, - "tagRenderings": { - "hydrant-color": { - "mappings": { - "0": { - "then": "The hydrant color is unknown." - }, - "1": { - "then": "The hydrant color is yellow." - }, - "2": { - "then": "The hydrant color is red." - } - }, - "question": "What color is the hydrant?", - "render": "The hydrant color is {colour}" - }, - "hydrant-state": { - "mappings": { - "0": { - "then": "The hydrant is (fully or partially) working" - }, - "1": { - "then": "The hydrant is unavailable" - }, - "2": { - "then": "The hydrant has been removed" - } - }, - "question": "Is this hydrant still working?" - }, - "hydrant-type": { - "mappings": { - "0": { - "then": "The hydrant type is unknown." - }, - "1": { - "then": " Pillar type." - }, - "2": { - "then": " Pipe type." - }, - "3": { - "then": " Wall type." - }, - "4": { - "then": " Underground type." - } - }, - "question": "What type of hydrant is it?", - "render": " Hydrant type: {fire_hydrant:type}" - } - }, - "title": { - "render": "Hydrant" - } - }, - "1": { - "description": "Map layer to show fire hydrants.", - "name": "Map of fire extinguishers.", - "presets": { - "0": { - "description": "A fire extinguisher is a small, portable device used to stop a fire", - "title": "Fire extinguisher" - } - }, - "tagRenderings": { - "extinguisher-location": { - "mappings": { - "0": { - "then": "Found indoors." - }, - "1": { - "then": "Found outdoors." - } - }, - "question": "Where is it positioned?", - "render": "Location: {location}" - } - }, - "title": { - "render": "Extinguishers" - } - }, - "2": { - "description": "Map layer to show fire stations.", - "name": "Map of fire stations", - "presets": { - "0": { - "description": "A fire station is a place where the fire trucks and firefighters are located when not in operation.", - "title": "Fire station" - } - }, - "tagRenderings": { - "station-agency": { - "mappings": { - "0": { - "then": "Bureau of Fire Protection" - } - }, - "question": "What agency operates this station?", - "render": "This station is operated by {operator}." - }, - "station-name": { - "question": "What is the name of this fire station?", - "render": "This station is called {name}." - }, - "station-operator": { - "mappings": { - "0": { - "then": "The station is operated by the government." - }, - "1": { - "then": "The station is operated by a community-based, or informal organization." - }, - "2": { - "then": "The station is operated by a formal group of volunteers." - }, - "3": { - "then": "The station is privately operated." - } - }, - "question": "How is the station operator classified?", - "render": "The operator is a(n) {operator:type} entity." - }, - "station-place": { - "question": "Where is the station located? (e.g. name of neighborhood, villlage, or town)", - "render": "This station is found within {addr:place}." - }, - "station-street": { - "question": " What is the street name where the station located?", - "render": "This station is along a highway called {addr:street}." - } - }, - "title": { - "render": "Fire Station" - } - }, - "3": { - "description": "An ambulance station is an area for storage of ambulance vehicles, medical equipment, personal protective equipment, and other medical supplies.", - "name": "Map of ambulance stations", - "presets": { - "0": { - "description": "Add an ambulance station to the map", - "title": "Ambulance station" - } - }, - "tagRenderings": { - "ambulance-agency": { - "question": "What agency operates this station?", - "render": "This station is operated by {operator}." - }, - "ambulance-name": { - "question": "What is the name of this ambulance station?", - "render": "This station is called {name}." - }, - "ambulance-operator-type": { - "mappings": { - "0": { - "then": "The station is operated by the government." - }, - "1": { - "then": "The station is operated by a community-based, or informal organization." - }, - "2": { - "then": "The station is operated by a formal group of volunteers." - }, - "3": { - "then": "The station is privately operated." - } - }, - "question": "How is the station operator classified?", - "render": "The operator is a(n) {operator:type} entity." - }, - "ambulance-place": { - "question": "Where is the station located? (e.g. name of neighborhood, villlage, or town)", - "render": "This station is found within {addr:place}." - }, - "ambulance-street": { - "question": " What is the street name where the station located?", - "render": "This station is along a highway called {addr:street}." - } - }, - "title": { - "render": "Ambulance Station" - } - } - }, - "shortDescription": "Map to show hydrants, extinguishers, fire stations, and ambulance stations.", - "title": "Hydrants, Extinguishers, Fire stations, and Ambulance stations." - }, - "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", - "title": "A map of maps" - }, - "natuurpunt": { - "description": "On this map you can find all the nature reserves that Natuurpunt offers ", - "shortDescription": "This map shows the nature reserves of Natuurpunt", - "title": "Nature Reserves" - }, - "observation_towers": { - "description": "Publicly accessible towers to enjoy the view", - "shortDescription": "Publicly accessible towers to enjoy the view", - "title": "Observation towers" - }, - "openwindpowermap": { - "description": "A map for showing and editing wind turbines.", - "layers": { - "0": { - "name": "wind turbine", - "presets": { - "0": { - "title": "wind turbine" - } - }, - "tagRenderings": { - "turbine-diameter": { - "question": "What is the rotor diameter of this wind turbine, in metres?", - "render": "The rotor diameter of this wind turbine is {rotor:diameter} metres." - }, - "turbine-height": { - "question": "What is the total height of this wind turbine (including rotor radius), in metres?", - "render": "The total height (including rotor radius) of this wind turbine is {height} metres." - }, - "turbine-operator": { - "question": "Who operates this wind turbine?", - "render": "This wind turbine is operated by {operator}." - }, - "turbine-output": { - "question": "What is the power output of this wind turbine? (e.g. 2.3 MW)", - "render": "The power output of this wind turbine is {generator:output:electricity}." - }, - "turbine-start-date": { - "question": "When did this wind turbine go into operation?", - "render": "This wind turbine went into operation on/in {start_date}." - } - }, - "title": { - "mappings": { - "0": { - "then": "{name}" - } - }, - "render": "wind turbine" - }, - "units": { - "0": { - "applicableUnits": { - "0": { - "human": " megawatts" - }, - "1": { - "human": " kilowatts" - }, - "2": { - "human": " watts" - }, - "3": { - "human": " gigawatts" - } - } - }, - "1": { - "applicableUnits": { - "0": { - "human": " meter" - } - } - } - } - } - }, - "title": "OpenWindPowerMap" - }, - "parkings": { - "description": "This map shows different parking spots", - "shortDescription": "This map shows different parking spots", - "title": "Parking" - }, - "personal": { - "description": "Create a personal theme based on all the available layers of all themes. In order to show some data, open layer selection", - "title": "Personal theme" - }, - "playgrounds": { - "description": "On this map, you find playgrounds and can add more information", - "shortDescription": "A map with playgrounds", - "title": "Playgrounds" - }, - "postboxes": { - "description": "On this map you can find and add data of post offices and post boxes. You can use this map to find where you can mail your next postcard! :)
Spotted an error or is a post box missing? You can edit this map with a free OpenStreetMap account. ", - "layers": { - "0": { - "description": "The layer showing postboxes.", - "name": "Postboxes", - "presets": { - "0": { - "title": "postbox" - } - }, - "title": { - "render": "Postbox" - } - }, - "1": { - "description": "A layer showing post offices.", - "filter": { - "0": { - "options": { - "0": { - "question": "Currently open" - } - } - } - }, - "name": "Post offices", - "presets": { - "0": { - "title": "Post Office" - } - }, - "tagRenderings": { - "OH": { - "mappings": { - "0": { - "then": "24/7 opened (including holidays)" - } - }, - "question": "What are the opening hours for this post office?", - "render": "Opening Hours: {opening_hours_table()}" - }, - "letter-from": { - "mappings": { - "0": { - "then": "You can post letters here" - }, - "1": { - "then": "You can't post letters here" - } - }, - "question": "Can you post a letter here?", - "render": "You can post letters with these companies: {post_office:letter_from}" - }, - "parcel-from": { - "mappings": { - "0": { - "then": "You can send parcels here" - }, - "1": { - "then": "You can't send parcels here" - } - }, - "question": "Can you send a parcel here?", - "render": "You can post parcels with these companies: {post_office:parcel_from}" - }, - "parcel-pickup": { - "mappings": { - "0": { - "then": "You can pick up missed parcels here" - }, - "1": { - "then": "You can't pick up missed parcels here" - } - }, - "question": "Can you pick up missed parcels here?", - "render": "You can pick up parcels from these companies: {post_office:parcel_pickup}" - }, - "parcel-to": { - "mappings": { - "0": { - "then": "You can send parcels to here for pickup" - }, - "1": { - "then": "You can't send parcels to here for pickup" - } - }, - "question": "Can you send parcels to here for pickup?", - "render": "You can send parcels to here for pickup with these companies: {post_office:parcel_to}" - }, - "partner-brand": { - "mappings": { - "0": { - "then": "This location offers services for DHL" - }, - "1": { - "then": "This location offers services for DPD" - }, - "2": { - "then": "This location offers services for GLS" - }, - "3": { - "then": "This location offers services for UPS" - }, - "4": { - "then": "This location is a DHL Paketshop" - }, - "5": { - "then": "This location is a Hermes PaketShop" - }, - "6": { - "then": "This location is a PostNL-point" - }, - "7": { - "then": "This location offers services for bpost" - } - }, - "question": "For which brand does this location offer services?", - "render": "This location offers services for {post_office:brand}" - }, - "post_partner": { - "mappings": { - "0": { - "then": "This shop is a post partner" - }, - "1": { - "then": "This shop is not a post partner" - } - }, - "question": "Is this a post partner?" - }, - "stamps": { - "mappings": { - "0": { - "then": "You can buy stamps here" - }, - "1": { - "then": "You can't buy stamps here" - } - }, - "question": "Can you buy stamps here?", - "render": "You can buy stamps from companies: {post_office:stamps}" - } - }, - "title": { - "mappings": { - "0": { - "then": "Post partner at a shop" - }, - "1": { - "then": "Post partner at {name}" - } - }, - "render": "Post Office" - } - }, - "2": { - "description": "Add a new post partner to the map in an existing shop", - "name": "Shops", - "tagRenderings": { - "post_partner": { - "mappings": { - "0": { - "then": "This shop is a post partner" - }, - "1": { - "then": "This shop is not a post partner" - } - }, - "question": "Is this shop a post partner?" - } - }, - "title": { - "mappings": { - "0": { - "then": "{name}" - } - }, - "render": "Shop" - } - } - }, - "shortDescription": "A map showing postboxes and post offices", - "title": "Postbox and Post Office Map" - }, - "shops": { - "description": "On this map, one can mark basic information about shops, add opening hours and phone numbers", - "shortDescription": "An editable map with basic shop information", - "title": "Open Shop Map" - }, - "sidewalks": { - "description": "Experimental theme", - "layers": { - "0": { - "description": "Layer showing sidewalks of highways", - "name": "Sidewalks", - "tagRenderings": { - "streetname": { - "render": "This street is named {name}" - } - }, - "title": { - "render": "{name}" - } - } - }, - "shortDescription": "Sidewalk mapping", - "title": "Sidewalks" - }, - "sport_pitches": { - "description": "A sport pitch is an area where sports are played", - "shortDescription": "A map showing sport pitches", - "title": "Sport pitches" - }, - "street_lighting": { - "description": "On this map you can find everything about street lighting", - "layers": { - "1": { - "name": "Lit streets", - "tagRenderings": { - "lit": { - "mappings": { - "0": { - "then": "This street is lit" - }, - "1": { - "then": "This street is not lit" - }, - "2": { - "then": "This street is lit at night" - }, - "3": { - "then": "This street is lit 24/7" - } - }, - "question": "Is this street lit?" - } - }, - "title": { - "render": "Lit street" - } - }, - "2": { - "name": "All streets", - "tagRenderings": { - "lit": { - "mappings": { - "0": { - "then": "This street is lit" - }, - "1": { - "then": "This street is not lit" - }, - "2": { - "then": "This street is lit at night" - }, - "3": { - "then": "This street is lit 24/7" - } - }, - "question": "Is this street lit?" - } - }, - "title": { - "render": "Street" - } - } - }, - "title": "Street Lighting" - }, - "surveillance": { - "description": "On this open map, you can find surveillance cameras.", - "shortDescription": "Surveillance cameras and other means of surveillance", - "title": "Surveillance under Surveillance" - }, - "toilets": { - "description": "A map of public toilets", - "title": "Open Toilet Map" - }, - "trees": { - "description": "Map all the trees!", - "shortDescription": "Map all the trees", - "title": "Trees" - }, - "uk_addresses": { - "description": "Contribute to OpenStreetMap by filling out address information", - "layers": { - "1": { - "tagRenderings": { - "uk_addresses_embedding_outline": { - "mappings": { - "0": { - "then": "The INSPIRE-polygon containing this point has at least one address contained" - }, - "1": { - "then": "The INSPIRE-polygon containing this point has no addresses contained" - } - } - }, - "uk_addresses_explanation": { - "render": "There probably is an address here" - } - }, - "title": { - "render": "Address to be determined" - } - }, - "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" - }, - "uk_addresses_explanation_osm": { - "render": "This address is saved in OpenStreetMap" - }, - "uk_addresses_housenumber": { - "mappings": { - "0": { - "then": "This building has no house number" - } - }, - "question": "What is the number of this house?", - "render": "The housenumber is {addr:housenumber}" - }, - "uk_addresses_street": { - "question": "What street is this address located in?", - "render": "This address is in street {addr:street}" - } - }, - "title": { - "render": "Known address" - } - } - }, - "shortDescription": "Help to build an open dataset of UK addresses", - "tileLayerSources": { - "0": { - "name": "Property boundaries by osmuk.org" - } - }, - "title": "UK Addresses" - }, - "waste_basket": { - "description": "On this map, you'll find waste baskets near you. If a waste basket is missing on this map, you can add it yourself", - "shortDescription": "A map with waste baskets", - "title": "Waste Basket" - } } \ No newline at end of file diff --git a/langs/themes/eo.json b/langs/themes/eo.json index b9035ce2a5..04e1e7d6f0 100644 --- a/langs/themes/eo.json +++ b/langs/themes/eo.json @@ -1,94 +1,83 @@ { - "climbing": { - "overrideAll": { - "units+": { - "0": { - "applicableUnits": { + "climbing": { + "overrideAll": { + "units+": { + "0": { + "applicableUnits": { + "0": { + "human": " metro" + }, + "1": { + "human": " futo" + } + } + } + } + } + }, + "cyclestreets": { + "layers": { + "2": { + "name": "Ĉiuj stratoj", + "title": { + "render": "Strato" + } + } + } + }, + "facadegardens": { + "layers": { "0": { - "human": " metro" - }, - "1": { - "human": " futo" + "tagRenderings": { + "facadegardens-description": { + "render": "Pliaj detaloj: {description}" + } + } } - } } - } - } - }, - "cyclestreets": { - "layers": { - "2": { - "name": "Ĉiuj stratoj", - "title": { - "render": "Strato" - } - } - } - }, - "facadegardens": { - "layers": { - "0": { - "tagRenderings": { - "facadegardens-description": { - "render": "Pliaj detaloj: {description}" - } - } - } - } - }, - "ghostbikes": { - "title": "Fantombicikloj" - }, - "hailhydrant": { - "layers": { - "1": { - "tagRenderings": { - "extinguisher-location": { - "render": "Loko: {location}" - } - } - } - } - }, - "maps": { - "title": "Mapo de mapoj" - }, - "openwindpowermap": { - "layers": { - "0": { - "title": { - "mappings": { + }, + "ghostbikes": { + "title": "Fantombicikloj" + }, + "maps": { + "title": "Mapo de mapoj" + }, + "openwindpowermap": { + "layers": { "0": { - "then": "{name}" + "title": { + "mappings": { + "0": { + "then": "{name}" + } + } + }, + "units": { + "0": { + "applicableUnits": { + "0": { + "human": " megavatoj" + }, + "1": { + "human": " kilovatoj" + }, + "2": { + "human": " vatoj" + }, + "3": { + "human": " gigavatoj" + } + } + }, + "1": { + "applicableUnits": { + "0": { + "human": " metro" + } + } + } + } } - } - }, - "units": { - "0": { - "applicableUnits": { - "0": { - "human": " megavatoj" - }, - "1": { - "human": " kilovatoj" - }, - "2": { - "human": " vatoj" - }, - "3": { - "human": " gigavatoj" - } - } - }, - "1": { - "applicableUnits": { - "0": { - "human": " metro" - } - } - } } - } } - } } \ No newline at end of file diff --git a/langs/themes/es.json b/langs/themes/es.json index dc5f8827b0..8d15340174 100644 --- a/langs/themes/es.json +++ b/langs/themes/es.json @@ -1,16 +1,16 @@ { - "aed": { - "description": "En este mapa , cualquiera puede encontrar y marcar los desfibriladores externos automáticos más cercanos", - "title": "Mapa abierto de desfibriladores (DEA)" - }, - "artwork": { - "description": "Bienvenido a Open Artwork Map, un mapa de estatuas, bustos, grafitis y otras obras de arte de todo el mundo" - }, - "ghostbikes": { - "title": "Bicicleta blanca" - }, - "personal": { - "description": "Crea una interficie basada en todas las capas disponibles de todas las interficies", - "title": "Interficie personal" - } + "aed": { + "description": "En este mapa , cualquiera puede encontrar y marcar los desfibriladores externos automáticos más cercanos", + "title": "Mapa abierto de desfibriladores (DEA)" + }, + "artwork": { + "description": "Bienvenido a Open Artwork Map, un mapa de estatuas, bustos, grafitis y otras obras de arte de todo el mundo" + }, + "ghostbikes": { + "title": "Bicicleta blanca" + }, + "personal": { + "description": "Crea una interficie basada en todas las capas disponibles de todas las interficies", + "title": "Interficie personal" + } } \ No newline at end of file diff --git a/langs/themes/fi.json b/langs/themes/fi.json index 6d8f44a4a2..62f2d561dc 100644 --- a/langs/themes/fi.json +++ b/langs/themes/fi.json @@ -1,5 +1,5 @@ { - "ghostbikes": { - "title": "Haamupyörä" - } + "ghostbikes": { + "title": "Haamupyörä" + } } \ No newline at end of file diff --git a/langs/themes/fr.json b/langs/themes/fr.json index 98ac69f0a0..c23c53ee3b 100644 --- a/langs/themes/fr.json +++ b/langs/themes/fr.json @@ -1,958 +1,761 @@ { - "aed": { - "description": "Sur cette carte, vous pouvez trouver et améliorer les informations sur les défibrillateurs", - "title": "Carte des défibrillateurs (DAE)" - }, - "artwork": { - "description": "Bienvenue sur la carte ouverte des œuvres d'art, une carte des statues, fresques, ... du monde entier", - "title": "Carte ouverte des œuvres d'art" - }, - "benches": { - "description": "Cette carte affiche les bancs mappés dans OpenStreetMap, entre autres : bancs des transports en commun, bancs publics, etc. À l'aide de votre compte OpenStretMap, vous pourrez ajouter de nouveaux bancs ou modifier les bancs existants.", - "shortDescription": "Carte des bancs", - "title": "Bancs" - }, - "bicyclelib": { - "description": "Une vélothèque est un endroit où on peut emprunter des vélos, souvent moyennant une petite somme annuelle. Un cas d'utilisation notable est celui des vélothèques pour les enfants, qui leur permettent de passer à un vélo plus grand quand ils sont trop grands pour leur vélo actuel", - "title": "Vélothèques" - }, - "bookcases": { - "description": "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.", - "title": "Carte des microbibliothèques" - }, - "campersite": { - "description": "Ce site collecte les zones de camping officielles ainsi que les aires de vidange. Il est possible d’ajouter des détails à propos des services proposés ainsi que leurs coûts. Ajoutez vos images et avis. C’est un site et une application. Les données sont stockées sur OpenStreetMap, elles seront toujours gratuites et peuvent être réutilisées par n’importe quelle application.", - "layers": { - "0": { - "description": "campings", - "name": "Campings", - "presets": { - "0": { - "description": "Ajouter une nouvelle aire de camping officielle, destinée à y passer la nuit avec un camping-car. Elle ne nécessite pas d’infrastructures particulières et peut être simplement désignée sous arrêté municipal, un simple parking ne suffit pas à rentrer dans cette catégorie ", - "title": "Aire de camping" - } - }, - "tagRenderings": { - "caravansites-capacity": { - "question": "Combien de personnes peuvent camper ici ? (Passez s’il n’y a pas de places délimitées)", - "render": "{capacity} personnes peuvent utiliser cet espace en même temps" - }, - "caravansites-charge": { - "question": "Combien coûte cet endroit ?", - "render": "Ce site fait payer {charge}" - }, - "caravansites-description": { - "question": "Souhaitez-vous ajouter une description générale du lieu ? (Ne pas répéter les informations précédentes et rester neutre, les opinions vont dans les avis)", - "render": "Plus de détails à propos du site : {description}" - }, - "caravansites-fee": { - "mappings": { - "0": { - "then": "L’utilisation est payante" - }, - "1": { - "then": "Peut être utilisé gratuitement" - } - }, - "question": "Cet endroit est-il payant ?" - }, - "caravansites-internet": { - "mappings": { - "0": { - "then": "Il y a un accès internet" - }, - "1": { - "then": "Il y a un accès internet" - }, - "2": { - "then": "Il n’y a pas d’accès internet" - } - }, - "question": "Cet endroit offre-t-il un accès à Internet ?" - }, - "caravansites-internet-fee": { - "mappings": { - "0": { - "then": "L’accès internet est en supplément" - }, - "1": { - "then": "L’accès internet est inclus" - } - }, - "question": "L’accès internet est-il payant ?" - }, - "caravansites-long-term": { - "mappings": { - "0": { - "then": "Oui, mais il est possible d’y passer seulement une nuit" - }, - "1": { - "then": "Non, il n’y a pas de résidents permanents" - }, - "2": { - "then": "C’est possible sous contrat (Cette option fera disparaître le site de la carte)" - } - }, - "question": "Ce site permet-il la location longue durée ?" - }, - "caravansites-name": { - "question": "Comment s'appelle cet endroit ?", - "render": "Cet endroit s'appelle {name}" - }, - "caravansites-sanitary-dump": { - "mappings": { - "0": { - "then": "Cet endroit a une station de vidange sanitaire" - }, - "1": { - "then": "Ce site ne possède pas de lieu de vidange" - } - }, - "question": "Ce site possède-t’il un lieu de vidange ?" - }, - "caravansites-toilets": { - "mappings": { - "0": { - "then": "Ce site a des toilettes" - }, - "1": { - "then": "Ce site n’a pas de toilettes" - } - }, - "question": "Y-a-t’il des toilettes sur le site ?" - }, - "caravansites-website": { - "question": "Ce lieu a-t’il un site internet ?", - "render": "Site officiel : {website}" - } - }, - "title": { - "mappings": { - "0": { - "then": "Camping sans nom" - } - }, - "render": "Camping {name}" - } - }, - "1": { - "description": "Site de vidange", - "name": "Site de vidange", - "presets": { - "0": { - "description": "Ajouter un nouveau site de vidange. Un espace où évacuer ses eaux usées (grises et/ou noires) généralement alimenté en eau potable et électricité.", - "title": "Site de vidange" - } - }, - "tagRenderings": { - "dumpstations-access": { - "mappings": { - "0": { - "then": "Un code est nécessaire" - }, - "1": { - "then": "Le site est réservés aux clients" - }, - "2": { - "then": "Le site est en libre-service" - }, - "3": { - "then": "Le site est en libre-service" - } - }, - "question": "Qui peut utiliser le site de vidange ?" - }, - "dumpstations-charge": { - "question": "Combien ce site demande t’il de payer ?", - "render": "Ce site fait payer {charge}" - }, - "dumpstations-chemical-waste": { - "mappings": { - "0": { - "then": "Il est possible d’y vidanger ses toilettes chimiques" - }, - "1": { - "then": "Il n’est pas possible d’y vidanger ses toilettes chimiques" - } - }, - "question": "Est-il possible d’y vidanger ses toilettes chimiques ?" - }, - "dumpstations-fee": { - "mappings": { - "0": { - "then": "Ce site demande un paiement" - }, - "1": { - "then": "Ce site ne demande pas de paiement" - } - }, - "question": "Ce site est-il payant ?" - }, - "dumpstations-grey-water": { - "mappings": { - "0": { - "then": "Il est possible d’y vidanger ses eaux usées" - }, - "1": { - "then": "Il n’est pas possible d’y vidanger ses eaux usées" - } - }, - "question": "Est-il possible d’y faire sa vidange des eaux usées ?" - }, - "dumpstations-network": { - "question": "De quel réseau fait-elle partie ? (Passer si aucun)", - "render": "Cette station fait parte d’un réseau {network}" - }, - "dumpstations-waterpoint": { - "mappings": { - "0": { - "then": "Ce site a un point d’eau" - }, - "1": { - "then": "Ce site n’a pas de point d’eau" - } - }, - "question": "Ce site dispose-t’il d’un point d’eau ?" - } - }, - "title": { - "mappings": { - "0": { - "then": "Site de vidange" - } - }, - "render": "Site de vidange {name}" - } - } + "aed": { + "description": "Sur cette carte, vous pouvez trouver et améliorer les informations sur les défibrillateurs", + "title": "Carte des défibrillateurs (DAE)" }, - "overrideAll": { - "tagRenderings+": { - "0": { - "question": "Qui est l’exploitant du site ?", - "render": "Ce site est exploité par {operator}" - }, - "1": { - "mappings": { + "artwork": { + "description": "Bienvenue sur la carte ouverte des œuvres d'art, une carte des statues, fresques, ... du monde entier", + "title": "Carte ouverte des œuvres d'art" + }, + "benches": { + "description": "Cette carte affiche les bancs mappés dans OpenStreetMap, entre autres : bancs des transports en commun, bancs publics, etc. À l'aide de votre compte OpenStretMap, vous pourrez ajouter de nouveaux bancs ou modifier les bancs existants.", + "shortDescription": "Carte des bancs", + "title": "Bancs" + }, + "bicyclelib": { + "description": "Une vélothèque est un endroit où on peut emprunter des vélos, souvent moyennant une petite somme annuelle. Un cas d'utilisation notable est celui des vélothèques pour les enfants, qui leur permettent de passer à un vélo plus grand quand ils sont trop grands pour leur vélo actuel", + "title": "Vélothèques" + }, + "bookcases": { + "description": "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.", + "title": "Carte des microbibliothèques" + }, + "campersite": { + "description": "Ce site collecte les zones de camping officielles ainsi que les aires de vidange. Il est possible d’ajouter des détails à propos des services proposés ainsi que leurs coûts. Ajoutez vos images et avis. C’est un site et une application. Les données sont stockées sur OpenStreetMap, elles seront toujours gratuites et peuvent être réutilisées par n’importe quelle application.", + "layers": { "0": { - "then": "Ce site a une source d’alimentation" + "description": "campings", + "name": "Campings", + "presets": { + "0": { + "description": "Ajouter une nouvelle aire de camping officielle, destinée à y passer la nuit avec un camping-car. Elle ne nécessite pas d’infrastructures particulières et peut être simplement désignée sous arrêté municipal, un simple parking ne suffit pas à rentrer dans cette catégorie ", + "title": "Aire de camping" + } + }, + "tagRenderings": { + "caravansites-capacity": { + "question": "Combien de personnes peuvent camper ici ? (Passez s’il n’y a pas de places délimitées)", + "render": "{capacity} personnes peuvent utiliser cet espace en même temps" + }, + "caravansites-charge": { + "question": "Combien coûte cet endroit ?", + "render": "Ce site fait payer {charge}" + }, + "caravansites-description": { + "question": "Souhaitez-vous ajouter une description générale du lieu ? (Ne pas répéter les informations précédentes et rester neutre, les opinions vont dans les avis)", + "render": "Plus de détails à propos du site : {description}" + }, + "caravansites-fee": { + "mappings": { + "0": { + "then": "L’utilisation est payante" + }, + "1": { + "then": "Peut être utilisé gratuitement" + } + }, + "question": "Cet endroit est-il payant ?" + }, + "caravansites-internet": { + "mappings": { + "0": { + "then": "Il y a un accès internet" + }, + "1": { + "then": "Il y a un accès internet" + }, + "2": { + "then": "Il n’y a pas d’accès internet" + } + }, + "question": "Cet endroit offre-t-il un accès à Internet ?" + }, + "caravansites-internet-fee": { + "mappings": { + "0": { + "then": "L’accès internet est en supplément" + }, + "1": { + "then": "L’accès internet est inclus" + } + }, + "question": "L’accès internet est-il payant ?" + }, + "caravansites-long-term": { + "mappings": { + "0": { + "then": "Oui, mais il est possible d’y passer seulement une nuit" + }, + "1": { + "then": "Non, il n’y a pas de résidents permanents" + }, + "2": { + "then": "C’est possible sous contrat (Cette option fera disparaître le site de la carte)" + } + }, + "question": "Ce site permet-il la location longue durée ?" + }, + "caravansites-name": { + "question": "Comment s'appelle cet endroit ?", + "render": "Cet endroit s'appelle {name}" + }, + "caravansites-sanitary-dump": { + "mappings": { + "0": { + "then": "Cet endroit a une station de vidange sanitaire" + }, + "1": { + "then": "Ce site ne possède pas de lieu de vidange" + } + }, + "question": "Ce site possède-t’il un lieu de vidange ?" + }, + "caravansites-toilets": { + "mappings": { + "0": { + "then": "Ce site a des toilettes" + }, + "1": { + "then": "Ce site n’a pas de toilettes" + } + }, + "question": "Y-a-t’il des toilettes sur le site ?" + }, + "caravansites-website": { + "question": "Ce lieu a-t’il un site internet ?", + "render": "Site officiel : {website}" + } + }, + "title": { + "mappings": { + "0": { + "then": "Camping sans nom" + } + }, + "render": "Camping {name}" + } }, "1": { - "then": "Ce site n’a pas de source d’alimentation" + "description": "Site de vidange", + "name": "Site de vidange", + "presets": { + "0": { + "description": "Ajouter un nouveau site de vidange. Un espace où évacuer ses eaux usées (grises et/ou noires) généralement alimenté en eau potable et électricité.", + "title": "Site de vidange" + } + }, + "tagRenderings": { + "dumpstations-access": { + "mappings": { + "0": { + "then": "Un code est nécessaire" + }, + "1": { + "then": "Le site est réservés aux clients" + }, + "2": { + "then": "Le site est en libre-service" + }, + "3": { + "then": "Le site est en libre-service" + } + }, + "question": "Qui peut utiliser le site de vidange ?" + }, + "dumpstations-charge": { + "question": "Combien ce site demande t’il de payer ?", + "render": "Ce site fait payer {charge}" + }, + "dumpstations-chemical-waste": { + "mappings": { + "0": { + "then": "Il est possible d’y vidanger ses toilettes chimiques" + }, + "1": { + "then": "Il n’est pas possible d’y vidanger ses toilettes chimiques" + } + }, + "question": "Est-il possible d’y vidanger ses toilettes chimiques ?" + }, + "dumpstations-fee": { + "mappings": { + "0": { + "then": "Ce site demande un paiement" + }, + "1": { + "then": "Ce site ne demande pas de paiement" + } + }, + "question": "Ce site est-il payant ?" + }, + "dumpstations-grey-water": { + "mappings": { + "0": { + "then": "Il est possible d’y vidanger ses eaux usées" + }, + "1": { + "then": "Il n’est pas possible d’y vidanger ses eaux usées" + } + }, + "question": "Est-il possible d’y faire sa vidange des eaux usées ?" + }, + "dumpstations-network": { + "question": "De quel réseau fait-elle partie ? (Passer si aucun)", + "render": "Cette station fait parte d’un réseau {network}" + }, + "dumpstations-waterpoint": { + "mappings": { + "0": { + "then": "Ce site a un point d’eau" + }, + "1": { + "then": "Ce site n’a pas de point d’eau" + } + }, + "question": "Ce site dispose-t’il d’un point d’eau ?" + } + }, + "title": { + "mappings": { + "0": { + "then": "Site de vidange" + } + }, + "render": "Site de vidange {name}" + } } - }, - "question": "Ce site a-t’il une source d’électricité ?" - } - } + }, + "overrideAll": { + "tagRenderings+": { + "0": { + "question": "Qui est l’exploitant du site ?", + "render": "Ce site est exploité par {operator}" + }, + "1": { + "mappings": { + "0": { + "then": "Ce site a une source d’alimentation" + }, + "1": { + "then": "Ce site n’a pas de source d’alimentation" + } + }, + "question": "Ce site a-t’il une source d’électricité ?" + } + } + }, + "shortDescription": "Trouver des sites pour passer la nuit avec votre camping-car", + "title": "Campings" }, - "shortDescription": "Trouver des sites pour passer la nuit avec votre camping-car", - "title": "Campings" - }, - "climbing": { - "description": "Cette carte indique les sites d’escalades comme les salles d’escalade ou les sites naturels.", - "descriptionTail": "La carte a été créée par Christian Neumann. Merci de le contacter pour des avis ou des questions.

Ce projet utilise les données OpenStreetMap.

", - "layers": { - "0": { - "description": "Club ou association d’escalade", - "name": "Club d’escalade", - "presets": { - "0": { - "description": "Un club d’escalade", - "title": "Club d’escalade" - }, - "1": { - "description": "Une association d’escalade", - "title": "Association d’escalade" - } - }, - "tagRenderings": { - "climbing_club-name": { - "question": "Quel est le nom du club ou de l’association ?", - "render": "{name}" - } - }, - "title": { - "mappings": { + "climbing": { + "description": "Cette carte indique les sites d’escalades comme les salles d’escalade ou les sites naturels.", + "descriptionTail": "La carte a été créée par Christian Neumann. Merci de le contacter pour des avis ou des questions.

Ce projet utilise les données OpenStreetMap.

", + "layers": { "0": { - "then": "Association d’escalade" - } - }, - "render": "Club d’escalade" - } - }, - "1": { - "description": "Une salle d’escalade", - "name": "Salle d’escalade", - "tagRenderings": { - "name": { - "question": "Quel est le nom de la salle d’escalade ?", - "render": "{name}" - } - }, - "title": { - "mappings": { - "0": { - "then": "Salle d’escalade {name}" - } - }, - "render": "Salle d’escalade" - } - }, - "2": { - "name": "Voies d’escalade", - "presets": { - "0": { - "title": "Voie d’escalade" - } - }, - "tagRenderings": { - "Bolts": { - "mappings": { - "0": { - "then": "Cette voie n’a pas de prises" - }, - "1": { - "then": "Cette voie n’a pas de prises" - } - }, - "question": "Combien de prises cette voie possède avant d’atteindre la moulinette ?", - "render": "Cette voie a {climbing:bolts} prises" - }, - "Difficulty": { - "question": "Quelle est la difficulté de cette voie selon le système franco-belge ?", - "render": "Selon le système franco-belge, la difficulté de cette voie est de {climbing:grade:french}" - }, - "Length": { - "question": "Quelle est la longueur de cette voie (en mètres) ?", - "render": "Cette voie fait {canonical(climbing:length)} de long" - }, - "Name": { - "mappings": { - "0": { - "then": "Cette voie n’a pas de nom" - } - }, - "question": "Quel est le nom de cette voie d’escalade ?", - "render": "{name}" - }, - "Rock type": { - "render": "Le type de roche est {_embedding_features_with_rock:rock} selon le mur" - } - }, - "title": { - "mappings": { - "0": { - "then": "Voie d’escalade {name}" - } - }, - "render": "Voie d’escalade" - } - }, - "3": { - "description": "Opportunité d’escalade", - "name": "Opportunité d’escalade", - "presets": { - "0": { - "description": "Opportunité d’escalade", - "title": "Opportunité d’escalade" - } - }, - "tagRenderings": { - "Contained routes hist": { - "render": "

Résumé des difficultés

{histogram(_difficulty_hist)}" - }, - "Contained routes length hist": { - "render": "

Résumé de longueur

{histogram(_length_hist)}" - }, - "Contained_climbing_routes": { - "render": "

Contient {_contained_climbing_routes_count} voies

    {_contained_climbing_routes}
" - }, - "Rock type (crag/rock/cliff only)": { - "mappings": { - "0": { - "then": "Calcaire" - } - }, - "question": "Quel est le type de roche ?", - "render": "La roche est du {rock}" - }, - "Type": { - "mappings": { - "0": { - "then": "Rocher d’escalade, rocher avec une ou peu de voie permettant d’escalader sans corde" - }, - "1": { - "then": "Mur d’escalade, rocher avec plusieurs voies d’escalades" - } - } - }, - "name": { - "mappings": { - "0": { - "then": "Ce site n’a pas de nom" - } - }, - "question": "Quel est le nom de ce site ?", - "render": "{name}" - } - }, - "title": { - "mappings": { - "0": { - "then": "Mur d’escalade {name}" + "description": "Club ou association d’escalade", + "name": "Club d’escalade", + "presets": { + "0": { + "description": "Un club d’escalade", + "title": "Club d’escalade" + }, + "1": { + "description": "Une association d’escalade", + "title": "Association d’escalade" + } + }, + "tagRenderings": { + "climbing_club-name": { + "question": "Quel est le nom du club ou de l’association ?", + "render": "{name}" + } + }, + "title": { + "mappings": { + "0": { + "then": "Association d’escalade" + } + }, + "render": "Club d’escalade" + } }, "1": { - "then": "Zone d’escalade {name}" + "description": "Une salle d’escalade", + "name": "Salle d’escalade", + "tagRenderings": { + "name": { + "question": "Quel est le nom de la salle d’escalade ?", + "render": "{name}" + } + }, + "title": { + "mappings": { + "0": { + "then": "Salle d’escalade {name}" + } + }, + "render": "Salle d’escalade" + } }, "2": { - "then": "Site d’escalade" + "name": "Voies d’escalade", + "presets": { + "0": { + "title": "Voie d’escalade" + } + }, + "tagRenderings": { + "Bolts": { + "mappings": { + "0": { + "then": "Cette voie n’a pas de prises" + }, + "1": { + "then": "Cette voie n’a pas de prises" + } + }, + "question": "Combien de prises cette voie possède avant d’atteindre la moulinette ?", + "render": "Cette voie a {climbing:bolts} prises" + }, + "Difficulty": { + "question": "Quelle est la difficulté de cette voie selon le système franco-belge ?", + "render": "Selon le système franco-belge, la difficulté de cette voie est de {climbing:grade:french}" + }, + "Length": { + "question": "Quelle est la longueur de cette voie (en mètres) ?", + "render": "Cette voie fait {canonical(climbing:length)} de long" + }, + "Name": { + "mappings": { + "0": { + "then": "Cette voie n’a pas de nom" + } + }, + "question": "Quel est le nom de cette voie d’escalade ?", + "render": "{name}" + }, + "Rock type": { + "render": "Le type de roche est {_embedding_features_with_rock:rock} selon le mur" + } + }, + "title": { + "mappings": { + "0": { + "then": "Voie d’escalade {name}" + } + }, + "render": "Voie d’escalade" + } }, "3": { - "then": "Opportunité d’escalade {name}" - } - }, - "render": "Opportunité d’escalade" - } - }, - "4": { - "description": "Opportunité d’escalade ?", - "name": "Opportunités d’escalade ?", - "tagRenderings": { - "climbing-opportunity-name": { - "render": "{name}" - }, - "climbing-possible": { - "mappings": { - "0": { - "then": "Escalader n’est pas possible" - }, - "1": { - "then": "Escalader est possible" - }, - "2": { - "then": "Escalader n’est pas possible" - } + "description": "Opportunité d’escalade", + "name": "Opportunité d’escalade", + "presets": { + "0": { + "description": "Opportunité d’escalade", + "title": "Opportunité d’escalade" + } + }, + "tagRenderings": { + "Contained routes hist": { + "render": "

Résumé des difficultés

{histogram(_difficulty_hist)}" + }, + "Contained routes length hist": { + "render": "

Résumé de longueur

{histogram(_length_hist)}" + }, + "Contained_climbing_routes": { + "render": "

Contient {_contained_climbing_routes_count} voies

    {_contained_climbing_routes}
" + }, + "Rock type (crag/rock/cliff only)": { + "mappings": { + "0": { + "then": "Calcaire" + } + }, + "question": "Quel est le type de roche ?", + "render": "La roche est du {rock}" + }, + "Type": { + "mappings": { + "0": { + "then": "Rocher d’escalade, rocher avec une ou peu de voie permettant d’escalader sans corde" + }, + "1": { + "then": "Mur d’escalade, rocher avec plusieurs voies d’escalades" + } + } + }, + "name": { + "mappings": { + "0": { + "then": "Ce site n’a pas de nom" + } + }, + "question": "Quel est le nom de ce site ?", + "render": "{name}" + } + }, + "title": { + "mappings": { + "0": { + "then": "Mur d’escalade {name}" + }, + "1": { + "then": "Zone d’escalade {name}" + }, + "2": { + "then": "Site d’escalade" + }, + "3": { + "then": "Opportunité d’escalade {name}" + } + }, + "render": "Opportunité d’escalade" + } }, - "question": "Est-il possible d’escalader ici ?" - } + "4": { + "description": "Opportunité d’escalade ?", + "name": "Opportunités d’escalade ?", + "tagRenderings": { + "climbing-opportunity-name": { + "render": "{name}" + }, + "climbing-possible": { + "mappings": { + "0": { + "then": "Escalader n’est pas possible" + }, + "1": { + "then": "Escalader est possible" + }, + "2": { + "then": "Escalader n’est pas possible" + } + }, + "question": "Est-il possible d’escalader ici ?" + } + }, + "title": { + "render": "Opportunité d’escalade ?" + } + } }, - "title": { - "render": "Opportunité d’escalade ?" - } - } + "overrideAll": { + "tagRenderings+": { + "0": { + "question": "Existe-t’il un site avec plus d’informations (ex : topographie) ?" + }, + "1": { + "mappings": { + "0": { + "then": "L’élément englobant indique un accès libre
{_embedding_feature:access:description}" + }, + "1": { + "then": "L’élément englobant indique qu’ une autorisation d’accès est nécessaire
{_embedding_feature:access:description}" + }, + "2": { + "then": "L’élément englobant indique que l’accès est réservés aux clients
{_embedding_feature:access:description}" + }, + "3": { + "then": "L’élément englobant indique que l’accès est réservé aux membres
{_embedding_feature:access:description}" + } + } + }, + "2": { + "mappings": { + "0": { + "then": "Libre d’accès" + }, + "1": { + "then": "Une autorisation est nécessaire" + }, + "2": { + "then": "Réservé aux clients" + }, + "3": { + "then": "Réservé aux membres" + } + }, + "question": "Qui peut y accéder ?" + }, + "4": { + "question": "Quelle est la longueur moyenne des voies en mètres ?", + "render": "Les voies font {canonical(climbing:length)} de long en moyenne" + }, + "5": { + "question": "Quel est le niveau de la voie la plus simple selon la classification franco-belge ?", + "render": "La difficulté minimale est {climbing:grade:french:min} selon la classification franco-belge" + }, + "6": { + "question": "Quel est le niveau de la voie la plus difficile selon la classification franco-belge ?", + "render": "La difficulté maximale est {climbing:grade:french:max} selon la classification franco-belge" + }, + "7": { + "mappings": { + "0": { + "then": "L’escalade de bloc est possible" + }, + "1": { + "then": "L’escalade de bloc n’est pas possible" + }, + "2": { + "then": "L’escalade de bloc est possible sur des voies précises" + }, + "3": { + "then": "Il y a {climbing:boulder} voies d’escalade de bloc" + } + }, + "question": "L’escalade de bloc est-elle possible ici ?" + }, + "8": { + "mappings": { + "0": { + "then": "L’escalade à la moulinette est possible" + }, + "1": { + "then": "L’escalade à la moulinette n’est pas possible" + }, + "2": { + "then": "{climbing:toprope} voies sont équipées de moulinettes" + } + }, + "question": "Est-il possible d’escalader à la moulinette ?" + } + }, + "units+": { + "0": { + "applicableUnits": { + "0": { + "human": " mètres" + }, + "1": { + "human": " pieds" + } + } + } + } + }, + "title": "Open Climbing Map" }, - "overrideAll": { - "tagRenderings+": { - "0": { - "question": "Existe-t’il un site avec plus d’informations (ex : topographie) ?" - }, - "1": { - "mappings": { - "0": { - "then": "L’élément englobant indique un accès libre
{_embedding_feature:access:description}" - }, - "1": { - "then": "L’élément englobant indique qu’ une autorisation d’accès est nécessaire
{_embedding_feature:access:description}" - }, - "2": { - "then": "L’élément englobant indique que l’accès est réservés aux clients
{_embedding_feature:access:description}" - }, - "3": { - "then": "L’élément englobant indique que l’accès est réservé aux membres
{_embedding_feature:access:description}" - } - } - }, - "2": { - "mappings": { - "0": { - "then": "Libre d’accès" - }, - "1": { - "then": "Une autorisation est nécessaire" - }, - "2": { - "then": "Réservé aux clients" - }, - "3": { - "then": "Réservé aux membres" - } - }, - "question": "Qui peut y accéder ?" - }, - "4": { - "question": "Quelle est la longueur moyenne des voies en mètres ?", - "render": "Les voies font {canonical(climbing:length)} de long en moyenne" - }, - "5": { - "question": "Quel est le niveau de la voie la plus simple selon la classification franco-belge ?", - "render": "La difficulté minimale est {climbing:grade:french:min} selon la classification franco-belge" - }, - "6": { - "question": "Quel est le niveau de la voie la plus difficile selon la classification franco-belge ?", - "render": "La difficulté maximale est {climbing:grade:french:max} selon la classification franco-belge" - }, - "7": { - "mappings": { - "0": { - "then": "L’escalade de bloc est possible" - }, - "1": { - "then": "L’escalade de bloc n’est pas possible" - }, - "2": { - "then": "L’escalade de bloc est possible sur des voies précises" - }, - "3": { - "then": "Il y a {climbing:boulder} voies d’escalade de bloc" - } - }, - "question": "L’escalade de bloc est-elle possible ici ?" - }, - "8": { - "mappings": { - "0": { - "then": "L’escalade à la moulinette est possible" - }, - "1": { - "then": "L’escalade à la moulinette n’est pas possible" - }, - "2": { - "then": "{climbing:toprope} voies sont équipées de moulinettes" - } - }, - "question": "Est-il possible d’escalader à la moulinette ?" - } - }, - "units+": { - "0": { - "applicableUnits": { - "0": { - "human": " mètres" - }, - "1": { - "human": " pieds" - } - } - } - } + "cyclofix": { + "description": "Le but de cette carte est de présenter aux cyclistes une solution facile à utiliser pour trouver l'infrastructure appropriée à leurs besoins.

Vous pouvez suivre votre localisation précise (mobile uniquement) et sélectionner les couches qui vous concernent dans le coin inférieur gauche. Vous pouvez également utiliser cet outil pour ajouter ou modifier des épingles (points d'intérêt) sur la carte et fournir plus de données en répondant aux questions.

Toutes les modifications que vous apportez seront automatiquement enregistrées dans la base de données mondiale d'OpenStreetMap et peuvent être librement réutilisées par d'autres.

Pour plus d'informations sur le projet cyclofix, rendez-vous sur cyclofix.osm.be.", + "title": "Cyclofix - Une carte ouverte pour les cyclistes" }, - "title": "Open Climbing Map" - }, - "cyclofix": { - "description": "Le but de cette carte est de présenter aux cyclistes une solution facile à utiliser pour trouver l'infrastructure appropriée à leurs besoins.

Vous pouvez suivre votre localisation précise (mobile uniquement) et sélectionner les couches qui vous concernent dans le coin inférieur gauche. Vous pouvez également utiliser cet outil pour ajouter ou modifier des épingles (points d'intérêt) sur la carte et fournir plus de données en répondant aux questions.

Toutes les modifications que vous apportez seront automatiquement enregistrées dans la base de données mondiale d'OpenStreetMap et peuvent être librement réutilisées par d'autres.

Pour plus d'informations sur le projet cyclofix, rendez-vous sur cyclofix.osm.be.", - "title": "Cyclofix - Une carte ouverte pour les cyclistes" - }, - "drinking_water": { - "description": "Cette carte affiche les points d'accès public à de l'eau potable, et permet d'en ajouter facilement", - "title": "Eau potable" - }, - "facadegardens": { - "description": "Les jardins muraux en ville n’apportent pas seulement paix et tranquillité mais contribuent à embellir la ville, favoriser la biodiversité, régule la température et assainit l’air.
Klimaan VZW et Mechelen Klimaatneutraal veulent cartographier les jardins muraux comme exemple pour les personnes souhaitant en construire ainsi que celles aimant la nature.
Plus d’infos sur klimaan.be.", - "layers": { - "0": { - "description": "Jardins muraux", - "name": "Jardins muraux", - "presets": { - "0": { - "description": "Ajouter un jardin mural", - "title": "jardin mural" - } - }, - "tagRenderings": { - "facadegardens-description": { - "question": "Détails supplémentaires sur le jardin (si nécessaire et non décrit précédemment)", - "render": "Plus de détails : {description}" - }, - "facadegardens-direction": { - "question": "Quelle est l’orientation du jardin ?", - "render": "Orientation : {direction} (0 pour le Nord et 90 pour l’Ouest)" - }, - "facadegardens-edible": { - "mappings": { - "0": { - "then": "Il y a des plantes comestibles" - }, - "1": { - "then": "Il n’y a pas de plantes comestibles" - } - }, - "question": "Y-a-t’il des plantes comestibles ?" - }, - "facadegardens-plants": { - "mappings": { - "0": { - "then": "Il y a des plantes grimpantes" - }, - "1": { - "then": "Il y a des fleurs" - }, - "2": { - "then": "Il y a des buissons" - }, - "3": { - "then": "Il y a des plantes couvre-sol" - } - }, - "question": "Quel type de plantes pousse ici ?" - }, - "facadegardens-rainbarrel": { - "mappings": { - "0": { - "then": "Il y a des réserves" - }, - "1": { - "then": "Il n’y a pas de réserves" - } - }, - "question": "Des réserves d’eau ont-elles été installées pour le jardin ?" - }, - "facadegardens-start_date": { - "question": "Quand le jardin a-t’il été construit ? (L’année suffit)", - "render": "Date de construction du jardin : {start_date}" - }, - "facadegardens-sunshine": { - "mappings": { - "0": { - "then": "Le jardin est en plein soleil" - }, - "1": { - "then": "Le jardin est partiellement ensoleillé" - }, - "2": { - "then": "Le jardin est à l’ombre" - } - }, - "question": "Quel est l’ensoleillement du jardin ?" - } - }, - "title": { - "render": "Jardin mural" - } - } + "drinking_water": { + "description": "Cette carte affiche les points d'accès public à de l'eau potable, et permet d'en ajouter facilement", + "title": "Eau potable" }, - "shortDescription": "Cette carte indique les murs végétalisés avec des photos et des informations comme leur orientation, l’ensoleillement et le type de plantes.", - "title": "Facade gardens" - }, - "fritures": { - "layers": { - "0": { - "override": { - "name": "Friteries" - } - } - }, - "title": "Carte des friteries" - }, - "ghostbikes": { - "description": "Les vélos fantômes sont des mémoriaux pour les cyclistes tuées sur la route, prenant la forme de vélos blancs placés à proximité des faits.

Cette carte indique leur emplacement à partir d’OpenStreetMap. Il est possible de contribuer aux informations ici, sous réserve d’avoir un compte OpenStreetMap (gratuit).", - "title": "Vélo fantôme" - }, - "hailhydrant": { - "description": "Sur cette carte on trouve et met à jour les bornes incendies, extincteurs, casernes de pompiers et ambulanciers dans son quartier.
Les options en haut à gauche permettent de localiser sa position (sur téléphone) et de filtrer les éléments. Il est possible d’utiliser cet outil pour ajouter et éditer les points d’intérêt de la carte et d’y ajouter des détails en répondant aux questions.
Toutes les modifications sont automatiquement enregistrées dans la base de données OpenStreetMap et peuvent êtres librement réutilisées par d’autres.", - "layers": { - "0": { - "description": "Couche des bornes incendie.", - "name": "Carte des bornes incendie", - "presets": { - "0": { - "description": "Une borne incendie est un point où les pompiers peuvent s’alimenter en eau. Elle peut être enterrée.", - "title": "Borne incendie" - } - }, - "tagRenderings": { - "hydrant-color": { - "mappings": { - "0": { - "then": "La borne est de couleur inconnue." - }, - "1": { - "then": "La borne est jaune." - }, - "2": { - "then": "La borne est rouge." - } - }, - "question": "Quelle est la couleur de la borne ?", - "render": "La borne est {colour}" - }, - "hydrant-state": { - "mappings": { - "0": { - "then": "La borne est en état, ou partiellement en état, de fonctionner." - }, - "1": { - "then": "La borne est hors-service." - }, - "2": { - "then": "La borne a été retirée." - } - }, - "question": "Mettre à jour l’état de la borne." - }, - "hydrant-type": { - "mappings": { - "0": { - "then": "La borne est de type inconnu." - }, - "1": { - "then": " Pilier." - }, - "2": { - "then": " Tuyau." - }, - "3": { - "then": " Mural." - }, - "4": { - "then": " Enterré." - } - }, - "question": "De quel type de borne s’agit-il ?", - "render": " Type de borne : {fire_hydrant:type}" - } - }, - "title": { - "render": "Bornes incendie" - } - }, - "1": { - "description": "Couche des lances à incendie.", - "name": "Couche des extincteurs.", - "presets": { - "0": { - "description": "Un extincteur est un appareil portatif servant à éteindre un feu", - "title": "Extincteur" - } - }, - "tagRenderings": { - "extinguisher-location": { - "mappings": { - "0": { - "then": "Intérieur." - }, - "1": { - "then": "Extérieur." - } - }, - "question": "Où est-elle positionnée ?", - "render": "Emplacement : {location}" - } - }, - "title": { - "render": "Exctincteurs" - } - }, - "2": { - "description": "Couche des stations de pompiers.", - "name": "Couche des stations de pompiers", - "presets": { - "0": { - "description": "Une caserne de pompiers est un lieu où les pompiers et leur équipements sont situés en dehors des missions.", - "title": "Caserne de pompiers" - } - }, - "tagRenderings": { - "station-agency": { - "mappings": { - "0": { - "then": "Brigade de Protection du Feu" - } - }, - "question": "Quel est l’exploitant de la station ?", - "render": "Cette station est opérée par {operator}." - }, - "station-name": { - "question": "Quel est le nom de la station ?", - "render": "Cette station s’appelle {name}." - }, - "station-operator": { - "mappings": { - "0": { - "then": "La station est opérée par le gouvernement." - }, - "1": { - "then": "La station est opérée par une organisation informelle." - }, - "2": { - "then": "La station est opérée par un groupe officiel de bénévoles." - }, - "3": { - "then": "La station est opérée par un groupe privé." - } - }, - "question": "Quel est le type d’exploitant ?", - "render": "L’exploitant est de type {operator:type}." - }, - "station-place": { - "question": "Dans quelle localité la station est-elle située ?", - "render": "La station fait partie de {addr:place}." - }, - "station-street": { - "question": " Quel est le nom de la rue dans lequel elle se situe ?", - "render": "La station fait partie de la {addr:street}." - } - }, - "title": { - "render": "Station de pompiers" - } - }, - "3": { - "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", - "presets": { - "0": { - "description": "Ajouter une station d’ambulances à la carte", - "title": "Station d’ambulances" - } - }, - "tagRenderings": { - "ambulance-agency": { - "question": "Quel est l’exploitant de la station ?", - "render": "Cette station est opérée par {operator}." - }, - "ambulance-name": { - "question": "Quel est le nom de cette station ?", - "render": "Cette station s’appelle {name}." - }, - "ambulance-operator-type": { - "mappings": { - "0": { - "then": "La station est opérée par le gouvernement." - }, - "1": { - "then": "La station est opérée par une organisation informelle." - }, - "2": { - "then": "La station est opérée par un groupe officiel de bénévoles." - }, - "3": { - "then": "La station est opérée par un groupe privé." - } - }, - "question": "Quel est le type d’exploitant ?", - "render": "L’exploitant est de type {operator:type}." - }, - "ambulance-place": { - "question": "Dans quelle localité la station est-elle située ?", - "render": "La station fait partie de {addr:place}." - }, - "ambulance-street": { - "question": " Quel est le nom de la rue où la station se situe ?", - "render": "La station fait partie de {addr:street}." - } - }, - "title": { - "render": "Station d’ambulances" - } - } - }, - "shortDescription": "Carte indiquant les bornes incendies, extincteurs, casernes de pompiers et ambulanciers.", - "title": "Bornes incendies, extincteurs, casernes de pompiers et ambulanciers." - }, - "maps": { - "description": "Sur cette carte sont affichées les cartes (plans) mappées dans OpenStreetMap.

Si une carte est manquante, vous pouvez l'ajouer facilement avec un compte OpenStreetMap.", - "shortDescription": "Cette carte affiche toutes les cartes (plans) mappés dans OpenStreetMap", - "title": "Carte des cartes" - }, - "openwindpowermap": { - "description": "Une carte indiquant les éoliennes et permettant leur édition.", - "layers": { - "0": { - "name": "Éolienne", - "presets": { - "0": { - "title": "Éolienne" - } - }, - "tagRenderings": { - "turbine-diameter": { - "question": "Quel est le diamètre du rotor en mètres ?", - "render": "Le diamètre du rotor est de {rotor:diameter} mètres." - }, - "turbine-height": { - "question": "Quelle est la hauteur totale de l’éolienne en mètres, pales incluses ?", - "render": "La hauteur totale, incluant les pales, est de {height} mètres." - }, - "turbine-operator": { - "question": "Qui est l’exploitant de cette éolienne ?", - "render": "Cette éolienne est opérée par {operator}." - }, - "turbine-output": { - "question": "Quel est la puissance générée par cette éolienne ?", - "render": "La puissance générée par cette éolienne est de {generator:output:electricity}." - }, - "turbine-start-date": { - "question": "Depuis quand l’éolienne est-elle en fonctionnement ?", - "render": "L’éolienne est active depuis {start_date}." - } - }, - "title": { - "mappings": { + "facadegardens": { + "description": "Les jardins muraux en ville n’apportent pas seulement paix et tranquillité mais contribuent à embellir la ville, favoriser la biodiversité, régule la température et assainit l’air.
Klimaan VZW et Mechelen Klimaatneutraal veulent cartographier les jardins muraux comme exemple pour les personnes souhaitant en construire ainsi que celles aimant la nature.
Plus d’infos sur klimaan.be.", + "layers": { "0": { - "then": "{name}" + "description": "Jardins muraux", + "name": "Jardins muraux", + "presets": { + "0": { + "description": "Ajouter un jardin mural", + "title": "jardin mural" + } + }, + "tagRenderings": { + "facadegardens-description": { + "question": "Détails supplémentaires sur le jardin (si nécessaire et non décrit précédemment)", + "render": "Plus de détails : {description}" + }, + "facadegardens-direction": { + "question": "Quelle est l’orientation du jardin ?", + "render": "Orientation : {direction} (0 pour le Nord et 90 pour l’Ouest)" + }, + "facadegardens-edible": { + "mappings": { + "0": { + "then": "Il y a des plantes comestibles" + }, + "1": { + "then": "Il n’y a pas de plantes comestibles" + } + }, + "question": "Y-a-t’il des plantes comestibles ?" + }, + "facadegardens-plants": { + "mappings": { + "0": { + "then": "Il y a des plantes grimpantes" + }, + "1": { + "then": "Il y a des fleurs" + }, + "2": { + "then": "Il y a des buissons" + }, + "3": { + "then": "Il y a des plantes couvre-sol" + } + }, + "question": "Quel type de plantes pousse ici ?" + }, + "facadegardens-rainbarrel": { + "mappings": { + "0": { + "then": "Il y a des réserves" + }, + "1": { + "then": "Il n’y a pas de réserves" + } + }, + "question": "Des réserves d’eau ont-elles été installées pour le jardin ?" + }, + "facadegardens-start_date": { + "question": "Quand le jardin a-t’il été construit ? (L’année suffit)", + "render": "Date de construction du jardin : {start_date}" + }, + "facadegardens-sunshine": { + "mappings": { + "0": { + "then": "Le jardin est en plein soleil" + }, + "1": { + "then": "Le jardin est partiellement ensoleillé" + }, + "2": { + "then": "Le jardin est à l’ombre" + } + }, + "question": "Quel est l’ensoleillement du jardin ?" + } + }, + "title": { + "render": "Jardin mural" + } } - }, - "render": "éolienne" }, - "units": { - "0": { - "applicableUnits": { - "0": { - "human": " megawatts" - }, - "1": { - "human": " kilowatts" - }, - "2": { - "human": " watts" - }, - "3": { - "human": " gigawatts" - } - } - }, - "1": { - "applicableUnits": { - "0": { - "human": " mètres" - } - } - } - } - } + "shortDescription": "Cette carte indique les murs végétalisés avec des photos et des informations comme leur orientation, l’ensoleillement et le type de plantes.", + "title": "Facade gardens" }, - "title": "OpenWindPowerMap" - }, - "personal": { - "description": "Crée un thème personnalisé basé sur toutes les couches disponibles de tous les thèmes", - "title": "Thème personnalisé" - }, - "playgrounds": { - "description": "Cette carte affiche les aires de jeux et permet d'ajouter plus d'informations", - "shortDescription": "Une carte des aires de jeux", - "title": "Aires de jeux" - }, - "shops": { - "description": "Sur cette carte, vous pouvez ajouter des informations sur les magasins, horaires d'ouverture et numéro de téléphone", - "shortDescription": "Carte modifiable affichant les informations de base des magasins", - "title": "Carte des magasins" - }, - "sport_pitches": { - "description": "Un terrain de sport est une zone faite pour pratiquer un sport", - "shortDescription": "Une carte montrant les terrains de sport", - "title": "Terrains de sport" - }, - "surveillance": { - "description": "Cette carte indique l’emplacement des caméras de surveillance.", - "shortDescription": "Caméras et autres dispositifs de surveillance", - "title": "Surveillance" - }, - "toilets": { - "description": "Carte affichant les WC et toilettes publiques", - "title": "Carte des WC et toilettes publiques" - }, - "trees": { - "description": "Cartographions tous les arbres !", - "shortDescription": "Carte des arbres", - "title": "Arbres" - } + "fritures": { + "layers": { + "0": { + "override": { + "name": "Friteries" + } + } + }, + "title": "Carte des friteries" + }, + "ghostbikes": { + "description": "Les vélos fantômes sont des mémoriaux pour les cyclistes tuées sur la route, prenant la forme de vélos blancs placés à proximité des faits.

Cette carte indique leur emplacement à partir d’OpenStreetMap. Il est possible de contribuer aux informations ici, sous réserve d’avoir un compte OpenStreetMap (gratuit).", + "title": "Vélo fantôme" + }, + "hailhydrant": { + "description": "Sur cette carte on trouve et met à jour les bornes incendies, extincteurs, casernes de pompiers et ambulanciers dans son quartier.
Les options en haut à gauche permettent de localiser sa position (sur téléphone) et de filtrer les éléments. Il est possible d’utiliser cet outil pour ajouter et éditer les points d’intérêt de la carte et d’y ajouter des détails en répondant aux questions.
Toutes les modifications sont automatiquement enregistrées dans la base de données OpenStreetMap et peuvent êtres librement réutilisées par d’autres.", + "shortDescription": "Carte indiquant les bornes incendies, extincteurs, casernes de pompiers et ambulanciers.", + "title": "Bornes incendies, extincteurs, casernes de pompiers et ambulanciers." + }, + "maps": { + "description": "Sur cette carte sont affichées les cartes (plans) mappées dans OpenStreetMap.

Si une carte est manquante, vous pouvez l'ajouer facilement avec un compte OpenStreetMap.", + "shortDescription": "Cette carte affiche toutes les cartes (plans) mappés dans OpenStreetMap", + "title": "Carte des cartes" + }, + "openwindpowermap": { + "description": "Une carte indiquant les éoliennes et permettant leur édition.", + "layers": { + "0": { + "name": "Éolienne", + "presets": { + "0": { + "title": "Éolienne" + } + }, + "tagRenderings": { + "turbine-diameter": { + "question": "Quel est le diamètre du rotor en mètres ?", + "render": "Le diamètre du rotor est de {rotor:diameter} mètres." + }, + "turbine-height": { + "question": "Quelle est la hauteur totale de l’éolienne en mètres, pales incluses ?", + "render": "La hauteur totale, incluant les pales, est de {height} mètres." + }, + "turbine-operator": { + "question": "Qui est l’exploitant de cette éolienne ?", + "render": "Cette éolienne est opérée par {operator}." + }, + "turbine-output": { + "question": "Quel est la puissance générée par cette éolienne ?", + "render": "La puissance générée par cette éolienne est de {generator:output:electricity}." + }, + "turbine-start-date": { + "question": "Depuis quand l’éolienne est-elle en fonctionnement ?", + "render": "L’éolienne est active depuis {start_date}." + } + }, + "title": { + "mappings": { + "0": { + "then": "{name}" + } + }, + "render": "éolienne" + }, + "units": { + "0": { + "applicableUnits": { + "0": { + "human": " megawatts" + }, + "1": { + "human": " kilowatts" + }, + "2": { + "human": " watts" + }, + "3": { + "human": " gigawatts" + } + } + }, + "1": { + "applicableUnits": { + "0": { + "human": " mètres" + } + } + } + } + } + }, + "title": "OpenWindPowerMap" + }, + "personal": { + "description": "Crée un thème personnalisé basé sur toutes les couches disponibles de tous les thèmes", + "title": "Thème personnalisé" + }, + "playgrounds": { + "description": "Cette carte affiche les aires de jeux et permet d'ajouter plus d'informations", + "shortDescription": "Une carte des aires de jeux", + "title": "Aires de jeux" + }, + "shops": { + "description": "Sur cette carte, vous pouvez ajouter des informations sur les magasins, horaires d'ouverture et numéro de téléphone", + "shortDescription": "Carte modifiable affichant les informations de base des magasins", + "title": "Carte des magasins" + }, + "sport_pitches": { + "description": "Un terrain de sport est une zone faite pour pratiquer un sport", + "shortDescription": "Une carte montrant les terrains de sport", + "title": "Terrains de sport" + }, + "surveillance": { + "description": "Cette carte indique l’emplacement des caméras de surveillance.", + "shortDescription": "Caméras et autres dispositifs de surveillance", + "title": "Surveillance" + }, + "toilets": { + "description": "Carte affichant les WC et toilettes publiques", + "title": "Carte des WC et toilettes publiques" + }, + "trees": { + "description": "Cartographions tous les arbres !", + "shortDescription": "Carte des arbres", + "title": "Arbres" + } } \ No newline at end of file diff --git a/langs/themes/gl.json b/langs/themes/gl.json index 652320aced..907a31cae9 100644 --- a/langs/themes/gl.json +++ b/langs/themes/gl.json @@ -1,13 +1,13 @@ { - "cyclofix": { - "description": "O obxectivo deste mapa é amosar ós ciclistas unha solución doada de empregar para atopar a infraestrutura axeitada para as súas necesidades.

Podes obter a túa localización precisa (só para dispositivos móbiles) e escoller as capas que sexan relevantes para ti na esquina inferior esquerda. Tamén podes empregar esta ferramenta para engadir ou editar puntos de interese ó mapa e fornecer máis datos respondendo as cuestións.

Todas as modificacións que fagas serán gardadas de xeito automático na base de datos global do OpenStreetMap e outros poderán reutilizalos libremente.

Para máis información sobre o proxecto cyclofix, vai a cyclofix.osm.be.", - "title": "Cyclofix - Un mapa aberto para os ciclistas" - }, - "ghostbikes": { - "title": "Bicicleta pantasma" - }, - "personal": { - "description": "Crea un tema baseado en todas as capas dispoñíbeis de todos os temas", - "title": "Tema personalizado" - } + "cyclofix": { + "description": "O obxectivo deste mapa é amosar ós ciclistas unha solución doada de empregar para atopar a infraestrutura axeitada para as súas necesidades.

Podes obter a túa localización precisa (só para dispositivos móbiles) e escoller as capas que sexan relevantes para ti na esquina inferior esquerda. Tamén podes empregar esta ferramenta para engadir ou editar puntos de interese ó mapa e fornecer máis datos respondendo as cuestións.

Todas as modificacións que fagas serán gardadas de xeito automático na base de datos global do OpenStreetMap e outros poderán reutilizalos libremente.

Para máis información sobre o proxecto cyclofix, vai a cyclofix.osm.be.", + "title": "Cyclofix - Un mapa aberto para os ciclistas" + }, + "ghostbikes": { + "title": "Bicicleta pantasma" + }, + "personal": { + "description": "Crea un tema baseado en todas as capas dispoñíbeis de todos os temas", + "title": "Tema personalizado" + } } \ No newline at end of file diff --git a/langs/themes/hu.json b/langs/themes/hu.json index 18b688c24c..67e3d2e821 100644 --- a/langs/themes/hu.json +++ b/langs/themes/hu.json @@ -1,11 +1,627 @@ { - "aed": { - "title": "Nyílt AED Térkép" - }, - "artwork": { - "title": "Nyít Műalkotás Térkép" - }, - "ghostbikes": { - "title": "Emlékkerékpár" - } + "aed": { + "description": "Ezen a térképen a közeli defibrillátorokat lehet megtalálni és feltüntetni", + "title": "Defibrillátor-térkép" + }, + "artwork": { + "description": "Isten hozta a nyílt műalkotástérképen, a világ minden táján megtalálható szobrok, mellszobrok, graffitik és más műalkotások gyűjtőhelyén", + "title": "Műalkotástérkép" + }, + "benches": { + "description": "Ez a térkép megjeleníti az OpenStreetMap-en rögzített összes padot: egyes padokat, valamint tömegközlekedési megállókban vagy menedékhelyeken található padokat. OpenStreetMap-fiókkal Ön is felrajzolhat új padokat, vagy szerkesztheti a meglévő padok részleteit.", + "shortDescription": "Padtérkép", + "title": "Padok" + }, + "bicyclelib": { + "description": "A kerékpárkönyvtárak olyan helyek, ahol kerékpárokat lehet kölcsönözni, gyakran egy kis éves díj ellenében. Figyelemre méltó felhasználásuk a gyerekeknek szánt kerékpárkönyvtárak, amelyek segítségével nagyobb kerékpárra válthatnak, amikor jelenlegi kerékpárjukat kinőtték", + "title": "Kerékpárkönyvtárak" + }, + "binoculars": { + "description": "Rúdra rögzített távcsövek térképe. Jellemzően turisztikailag érdekes, panorámás helyeken, kilátótornyok tetején vagy természetvédelmi területen találhatók.", + "shortDescription": "Rögzített távcsövek (binokulárok) térképe", + "title": "Távcsövek" + }, + "bookcases": { + "description": "A nyilvános könyvespolc egy kis utcai szekrény, doboz, régi telefonfülke vagy más tárgy, ahol könyveket tárolnak. Bárki tehet rá vagy vihet el róla könyvet. Ez a térkép ezeket a könyvespolcokat kívánja összegyűjteni. Ha felfedezett egy új könyvespolcot a közelben, akkor egy ingyenes OpenStreetMap-fiókkal gyorsan fel is rajzolhatja a térképre.", + "title": "Könyvespolctérkép" + }, + "cafes_and_pubs": { + "title": "Kávézók és kocsmák" + }, + "campersite": { + "description": "Ez az oldal az összes olyan hivatalos lakóautós megállóhelyet és helyet gyűjti össze, ahol szürke és fekete szennyvizet lehet üríteni. Hozzáadhat részleteket a nyújtott szolgáltatásokról és a költségekről, valamint képeket és értékeléseket. Ez egyszerre egy weboldal és egy webes alkalmazás. Az adatokat az OpenStreetMapen tároljuk, így mindig ingyenesek lesznek, és bármelyik alkalmazás újra felhasználhatja őket.", + "layers": { + "0": { + "description": "Lakóautós megállóhelyek", + "name": "Lakóautós megállóhely", + "presets": { + "0": { + "description": "Új hivatalos lakóautóhely hozzáadása. Ez arra vannak kijelölve, hogy lakóautóval ott éjszakázzunk. Lehet, hogy úgy néz ki, mint egy igazi kemping, de az is lehet, hogy csak olyan, mint egy parkoló. Előfordulhat, hogy egyáltalán nem jelzik őket, hanem csak egy önkormányzati határozatban vannak kijelölve. A lakóautósoknak szánt olyan hagyományos parkolók, ahol nem várhatóan nem fognak éjszakázni, -nem minősül- lakóautóhelynek. ", + "title": "lakóautós megállóhely" + } + }, + "tagRenderings": { + "caravansites-toilets": { + "mappings": { + "0": { + "then": "Itt van WC" + }, + "1": { + "then": "Itt nincs WC" + } + }, + "question": "Van-e itt WC?" + } + } + }, + "1": { + "presets": { + "0": { + "description": "Új egészségügyihulldék-lerakó hozzáadása. Ez egy olyan hely, ahol a lakókocsisok a szennyvizet vagy a vegyi WC hulladékát kiüríthetik. Gyakran van ivóvíz és áram is." + } + }, + "tagRenderings": { + "dumpstations-chemical-waste": { + "mappings": { + "0": { + "then": "Itt ártalmatlanítható a vegyi WC hulladéka" + }, + "1": { + "then": "Itt nem ártalmatlanítható a vegyi WC hulladéka" + } + }, + "question": "Elhelyezhető-e itt a vegyi WC hulladéka?" + } + } + } + }, + "overrideAll": { + "tagRenderings+": { + "1": { + "question": "Van-e itt elektromos áram?" + } + } + }, + "shortDescription": "Helyek, ahol lakóautóval eltöltheti az éjszakát", + "title": "Lakóautós megállóhelyek" + }, + "charging_stations": { + "description": "Ezen a térképen a elektromos töltőpontokról szóló információkat lehet megtalálni és megadni", + "shortDescription": "Elektromos töltőpontok világtérképe", + "title": "Elektromos töltőpontok" + }, + "climbing": { + "description": "Ezen a térképen különböző mászási lehetőségeket talál, például falmászótermeket, bouldertermeket és sziklákat a természetben.", + "descriptionTail": "A mászótérképet eredetileg Christian Neumann készítette. Ha észrevétele vagy kérdése van, kérjük, vele lépjen kapcsolatba.

A projekt az OpenStreetMap adatait használja

", + "layers": { + "0": { + "description": "Mászóegyesület vagy -szervezet", + "name": "Mászóegyesület", + "presets": { + "0": { + "description": "Egy mászóegyesület", + "title": "Mászóegyesület" + }, + "1": { + "description": "Mászással foglalkozó civil szervezet", + "title": "Mászószervezet" + } + }, + "tagRenderings": { + "climbing_club-name": { + "question": "Mi a neve ennek a mászóegyesületnek vagy szervezetnek?", + "render": "{name}" + } + }, + "title": { + "mappings": { + "0": { + "then": "Mászószervezet" + } + } + } + } + }, + "overrideAll": { + "tagRenderings+": { + "9": { + "mappings": { + "0": { + "then": "Itt lehetőség van sportmászásra" + }, + "1": { + "then": "Itt nincs lehetőség sportmászásra" + } + } + } + } + }, + "title": "Mászótérkép" + }, + "cycle_infra": { + "description": "Kerékpáros infrastruktúrával kapcsolatos dolgokat megjelenítő és szerkesztésre felkínáló térkép. Az #osoc21 (Open Summer of Code) alatt készült.", + "shortDescription": "Olyan térkép, ahol a kerékpáros infrastruktúrával kapcsolatos dolgokat tekinthet meg és szerkeszthet.", + "title": "Kerékpáros infrastruktúra" + }, + "cyclestreets": { + "description": "A kerékpárosutca (cyclestreet, Fahrradstraße) olyan utca, ahol gépjármű nem előzhet meg kerékpárost. Az ilyen utcákat külön közlekedési tábla jelzi. Kerékpárosutcák találhatók Hollandiában és Belgiumban, valamint Németországban és Franciaországban is. ", + "layers": { + "0": { + "description": "A kerékpárosutca olyan utca, ahol gépjármű nem előzhet meg a kerékpárost", + "name": "Kerékpárosutcák" + }, + "1": { + "description": "Ez az utca hamarosan kerékpárosutcává válik", + "name": "Jövőbeli kerékpárosutca", + "title": { + "mappings": { + "0": { + "then": "{name} nemsokára kerékpárosutca lesz" + } + }, + "render": "Jövőbeli kerékpárosutca" + } + }, + "2": { + "description": "Réteg bármely utca kerékpárosutcaként való megjelöléséhez", + "name": "Minden utca", + "title": { + "render": "Utca" + } + } + }, + "overrideAll": { + "tagRenderings+": { + "0": { + "mappings": { + "0": { + "then": "Ez az utca kerékpárosutca (és 30 km/h a sebességkorlátozás)" + }, + "1": { + "then": "Ez az utca kerékpárosutca" + }, + "2": { + "then": "Ez az utca hamarosan kerékpárosutcává válik" + }, + "3": { + "then": "Ez az utca nem kerékpárosutca" + } + }, + "question": "Kerékpárosutca-e {name}?" + }, + "1": { + "question": "Mikor lesz ez az utca kerékpárosutca?", + "render": "Ez az utca ekkor lesz kerékpárosutca: {cyclestreet:start_date}" + } + } + }, + "shortDescription": "Kerékpárosutcák térképe", + "title": "Kerékpárosutcák" + }, + "cyclofix": { + "description": "Ez a térkép kerékpárosoknak kíván könnyen használható megoldást nyújtani a számukra fontos infrastruktúra megtalálásához.

A bal alsó sarokban nyomon követheti pontos tartózkodási helyét (csak mobilon), és kiválaszthatja az Ön számára fontos rétegeket. Az eszköz segítségével gombostűket (érdekes pontokat, POI-kat) is szerkeszthet vagy felrajzolhat a térképre, a kérdések megválaszolásával pedig további adatokat szolgáltathat.

Minden módosítás automatikusan elmentődik az OpenStreetMap globális adatbázisában, és mások szabadon újra felhasználhatják.

A cyclofix projektről további információkat a cyclofix.osm.be oldalon talál.", + "title": "Cyclofix – nyílt térkép kerékpárosoknak" + }, + "drinking_water": { + "description": "Ezen a térképen a nyilvánosan hozzáférhető ivóvíznyerő helyek láthatók, szerkeszthetők és rajzolhatók fel könnyedén", + "title": "Ivóvíz" + }, + "entrances": { + "description": "Épületek bejáratai mutató térkép, amely a kerekesszékkel közlekedőknek fontos szempontokat jeleníti meg", + "shortDescription": "Akadálymentes útvonaltervezést segítő bejáratok feltérképezése", + "title": "Épületek bejáratai" + }, + "etymology": { + "description": "Ezen a térképen az látható, hogy egy objektum milyen névre hallgat. Az utcák, épületek stb. az OpenStreetMapről származnak, amely össze van kapcsolva a Wikidata adatbázissal. A felugró ablakban megjelenik a megfelelő Wikipedia-szócikk (ha van) vagy egy Wikidata-doboz arról, amiről az objektumot elnevezték. Ha magának az objektumnak van Wikipédia-oldala, az is megjelenik.

A térképet Ön is szerkesztheti!nagyítson rá, és az összes utca megjelenik. Ha valamelyikre rákattint, megjelenik Wikidata-kereső doboz. Néhány kattintással hozzáadhat egy etimológiai linket. Ne feledje, hogy ehhez szüksége van egy ingyenes OpenStreetMap-fiókra.", + "layers": { + "1": { + "override": { + "=name": "Etimológiai adat nélküli utcák" + } + }, + "2": { + "override": { + "=name": "Etimológiai adat nélküli parkok és erdők" + } + } + }, + "shortDescription": "Mi az eredete egy helynévnek?", + "title": "Etimológiai térkép" + }, + "facadegardens": { + "description": "A homlokzatkertek, zöld homlokzatok és fák a városban nemcsak békét és nyugalmat, hanem szebb várost, nagyobb biológiai sokféleséget, hűsítő hatást és jobb levegőminőséget is hoznak.
A Klimaan VZW és a Mechelen Klimaatneutraal a meglévő és új homlokzati kerteket szeretné feltérképezni, hogy példaként szolgáljanak a saját kertet építeni vágyóknak vagy a természetet kedvelő városi sétálóknak.
További információ a projektről a klimaan.be oldalon.", + "layers": { + "0": { + "description": "Homlokzati kertek", + "name": "Homlokzati kertek", + "presets": { + "0": { + "description": "Homlokzatkert hozzáadása", + "title": "homlokzatkert" + } + }, + "tagRenderings": { + "facadegardens-description": { + "question": "További leíró jellegű információ a kertről (ha szükséges, és följebb nincs leírva)", + "render": "További részletek: {description}" + }, + "facadegardens-direction": { + "question": "Milyen a kert tájolása?", + "render": "Tájolás: {direction} (0=észak, 90=kelet stb.)" + }, + "facadegardens-edible": { + "mappings": { + "0": { + "then": "Van benne ehető növény" + }, + "1": { + "then": "Nincs benne ehető növény" + } + }, + "question": "Van-e benne ehető növény?" + }, + "facadegardens-plants": { + "mappings": { + "0": { + "then": "Van benne szőlő" + }, + "1": { + "then": "Van benne virágos növény" + }, + "2": { + "then": "Van benne cserje" + }, + "3": { + "then": "Van benne talajtakaró növény" + } + }, + "question": "Milyen jellegű növények nőnek benne?" + }, + "facadegardens-rainbarrel": { + "mappings": { + "0": { + "then": "Van benne esővízgyűjtő hordó" + }, + "1": { + "then": "Nincs benne esővízgyűjtő hordó" + } + }, + "question": "Van-e a kertben vizeshordó?" + }, + "facadegardens-start_date": { + "question": "Mikor épült a kert? (Év megadása is elegendő)", + "render": "A kert építésének időpontja: {start_date}" + }, + "facadegardens-sunshine": { + "mappings": { + "0": { + "then": "A kert teljesen a napon van" + }, + "1": { + "then": "A kert részben árnyékban van" + }, + "2": { + "then": "A kert árnyékban van" + } + }, + "question": "Árnyékban vagy napon van a kert?" + } + }, + "title": { + "render": "Homlokzati kert" + } + } + }, + "shortDescription": "Ez a térkép homlokzati kerteket jelenít meg képekkel, valamint adatokkal a tájolásukról, a napsütésnek való kitettségükről és a bennük található növényzetről.", + "title": "Homlokzati kertek" + }, + "food": { + "title": "Éttermek és büfék" + }, + "fritures": { + "layers": { + "0": { + "override": { + "name": "Sültkrumplievő-hely" + } + } + } + }, + "ghostbikes": { + "description": "A szellemkerékpár egy közlekedési balesetben elhunyt kerékpáros emlékműve: egy fehér kerékpár, amelyet állandó jelleggel a baleset helyszínének közelében helyeznek el.

A térképen az OpenStreetMap által ismert összes szellemkerékpár megtekinthető. Hiányzik róla egy szellemkerékpár? Bárki hozzáadhat vagy frissíthet adatokat – csak egy (ingyenes) OpenStreetMap-fiókra van szükség hozzá.", + "title": "Szellemkerékpárok" + }, + "grb": { + "description": "Ez a sablon a flandriai GRB épületimportálás automatizlását kívánja megkönnyíteni." + }, + "hackerspaces": { + "description": "Ezen a térképen hackerspace-ek láthatók, új hackerspace-eket lehet fölrajzolni vagy meglévők adatait frissíteni", + "layers": { + "0": { + "description": "Hackerspace", + "name": "Hackerspace", + "presets": { + "0": { + "description": "A hackerspace egy olyan hely, ahol szoftverek iránt érdeklő emberek találkoznak", + "title": "Hackerspace" + }, + "1": { + "description": "A makerspace olyan hely, ahol a barkácsolás szerelmesei találkoznak, hogy olyan elektronikai eszközökkel kísérletezzenek, mint például az Arduino vagy a LEDstrips.", + "title": "Makerspace" + } + }, + "tagRenderings": { + "is_makerspace": { + "mappings": { + "0": { + "then": "Ez egy makerspace" + }, + "1": { + "then": "Ez egy hagyományos (szoftverekkel foglalkozó) hackerspace" + } + }, + "question": "Ez hackerspace vagy makerspace?" + } + }, + "title": { + "mappings": { + "0": { + "then": " {name}" + } + }, + "render": "Hackerspace" + } + } + }, + "shortDescription": "Hackerspace-ek térképe", + "title": "Hackerspace-ek" + }, + "hailhydrant": { + "description": "Ezen a térképen tűzcsapokat, tűzoltóállomásokat, mentőállomásokat és tűzoltóállomásokat találhat és szerkeszthet kedvenc városrészeiben (vagy másutt).\n\nA bal alsó sarokban nyomon követheti pontos tartózkodási helyét (csak mobilon), és kiválaszthatja az Ön számára releváns rétegeket. Ezzel az eszközzel gombostűket (érdekes pontokat, POI-kat) is szerkeszthet vagy felrajzolhat a térképre, a rendelkezésre álló kérdések megválaszolásával pedig további részleteket adhat meg.\n\nAz Ön által elvégzett módosítások automatikusan elmentődnek az OpenStreetMap globális adatbázisában, és mások szabadon újra felhasználhatják azokat.", + "shortDescription": "Térkép tűzcsapok, tűzoltó készülékek, tűzoltóságok és mentőállomások megjelenítéséhez.", + "title": "Tűzcsapok, tűzoltó készülékek, tűzoltóságok és mentőállomások." + }, + "notes": { + "description": "A jegyzet egy gombostű a térképen egy szöveggel, amely azt jelzi, hogy valami nem stimmel.

Felhasználók vagy szövegek kereséséhez nézd meg a szűrő nézetet.", + "title": "Jegyzetek az OpenStreetMapen" + }, + "observation_towers": { + "description": "Nyilvános tornyok, hogy gyönyörködhessünk a kilátásban", + "shortDescription": "Nyilvános tornyok, hogy gyönyörködhessünk a kilátásban", + "title": "Kilátótornyok" + }, + "openwindpowermap": { + "description": "Szélerőművek megjelenítésére és szerkesztésére szolgáló térkép.", + "layers": { + "0": { + "name": "Szélerőmű", + "presets": { + "0": { + "title": "Szélerőmű" + } + }, + "tagRenderings": { + "turbine-diameter": { + "question": "Hány méter a rotorátmérője ennek a szélturbinának?", + "render": "A szélturbina rotorátmérője: {rotor:diameter} méter." + }, + "turbine-height": { + "question": "Hány méter a szélerőmű teljes magassága (a rotor sugarával együtt)?", + "render": "A szélerőmű teljes (rotor sugarával együtt számított) magassága: {height} méter." + }, + "turbine-operator": { + "question": "Ki üzemelteti ezt a szélturbinát?", + "render": "Ennek a szélerőműnek az üzemeltetője: {operator}." + }, + "turbine-output": { + "question": "Mekkora a teljesítménye ennek a szélturbinának? (pl. 2.3 MW)", + "render": "A szélerőmű teljesítménye: {generator:output:electricity}." + }, + "turbine-start-date": { + "question": "Mikor helyezték üzembe ezt a szélerőművet?", + "render": "A szélerőmű üzembe helyezése: {start_date}." + } + }, + "title": { + "render": "szélerőmű" + }, + "units": { + "0": { + "applicableUnits": { + "0": { + "human": " megawatt" + }, + "1": { + "human": " kilowatt" + }, + "2": { + "human": " watt" + }, + "3": { + "human": " gigawatt" + } + } + }, + "1": { + "applicableUnits": { + "0": { + "human": " méter" + } + } + } + } + } + }, + "title": "OpenWindPowerMap" + }, + "parkings": { + "description": "Ez a térkép különböző parkolókat jelenít meg", + "shortDescription": "Ez a térkép különböző parkolókat jelenít meg", + "title": "Parkolás" + }, + "playgrounds": { + "description": "Ezen a térképen játszótereket találsz, és további információkat adhatsz hozzájuk", + "shortDescription": "Egy térkép játszóterekkel", + "title": "Játszóterek" + }, + "postal_codes": { + "description": "Irányítószámok", + "layers": { + "0": { + "name": "irányítószámok", + "tagRenderings": { + "postal_code": { + "render": "Irányítószám: {postal_code}" + } + }, + "title": { + "render": "Irányítószám: {postal_code}" + } + }, + "2": { + "name": "polgármesteri hivatalok", + "title": { + "render": "{name} városháza" + } + } + }, + "shortDescription": "Irányítószámok", + "title": "Irányítószámok" + }, + "postboxes": { + "description": "Ezen a térképen postahivatalok és postaládák adatait találod és egészítheted ki. Utánanézhetsz, hogy hol adhatod fel a következő képeslapodat! :)
Hibát találtál, vagy hiányzik egy postaláda? Ezt a térképet mindössze egy ingyenes OpenStreetMap-fiókkal szerkesztheted. ", + "layers": { + "0": { + "description": "A postaládákat megjelenítő réteg.", + "name": "Postaládák", + "presets": { + "0": { + "title": "postaláda" + } + }, + "title": { + "render": "Postaláda" + } + }, + "1": { + "description": "Postákat megjelenítő réteg.", + "filter": { + "0": { + "options": { + "0": { + "question": "Most nyitva" + } + } + } + }, + "name": "Posták", + "presets": { + "0": { + "title": "Posta" + } + }, + "tagRenderings": { + "OH": { + "mappings": { + "0": { + "then": "Éjjel-nappal nyitva (munkaszüneti napokon is)" + } + }, + "question": "Mikor van nyitva ez a posta?", + "render": "Nyitva tartás: {opening_hours_table()}" + } + }, + "title": { + "render": "Posta" + } + } + }, + "shortDescription": "Posták és postaládák térképe", + "title": "Posta- és postaládatérkép" + }, + "shops": { + "description": "Ezen a térképen az üzletek alapvető adatait lehet megadni, például nyitvatartási időt és telefonszámokat.", + "shortDescription": "Szerkeszthető térkép üzletek alapvető adataival", + "title": "Bolttérkép" + }, + "sport_pitches": { + "description": "A sportpálya egy olyan terület, amelyen valamilyen sportot űznek", + "shortDescription": "Sportpályatérkép", + "title": "Sportpályák" + }, + "street_lighting": { + "description": "Ezen a térképen minden megtalálható, ami a közvilágítással kapcsolatos", + "layers": { + "1": { + "name": "Kivilágított utcák", + "tagRenderings": { + "lit": { + "mappings": { + "0": { + "then": "Ezen az utcán van közvilágítás" + }, + "1": { + "then": "Ezen az utcán nincs közvilágítás" + }, + "2": { + "then": "Ez az utca éjszaka ki van világítva" + }, + "3": { + "then": "Ez az utca éjjel-nappal ki van világítva" + } + }, + "question": "Ki van-e világítva ez az utca?" + } + }, + "title": { + "render": "Kivilágított utca" + } + }, + "2": { + "name": "Minden utca", + "tagRenderings": { + "lit": { + "mappings": { + "0": { + "then": "Ez az utca ki van világítva" + }, + "1": { + "then": "Ez az utca nincs kivilágítva" + }, + "2": { + "then": "Ez az utca éjjel ki van világítva" + }, + "3": { + "then": "Ez az utca éjjel-nappal ki van világítva" + } + }, + "question": "Ki van-e világítva ez az utca?" + } + }, + "title": { + "render": "Utca" + } + } + }, + "title": "Közvilágítás" + }, + "surveillance": { + "description": "Ezen a térképen térfigyelő kamerák láthatók.", + "shortDescription": "Térfigyelő kamerák és más figyelőeszközök", + "title": "Megfigyelt térfigyelés" + }, + "toilets": { + "description": "Nyilvános WC-k térképe", + "title": "WC-térkép" + }, + "trees": { + "description": "Térképezzünk fel minden fát!", + "shortDescription": "Az összes fa feltérképezése", + "title": "Fatérkép" + }, + "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/icon.json b/langs/themes/icon.json new file mode 100644 index 0000000000..9544aaac93 --- /dev/null +++ b/langs/themes/icon.json @@ -0,0 +1,21 @@ +{ + "buurtnatuur": { + "overrideAll": { + "tagRenderings+": { + "1": { + "mappings": { + "1": { + "then": "./assets/themes/buurtnatuur/Natuurpunt.jpg" + }, + "2": { + "then": "./assets/themes/buurtnatuur/Natuurpunt.jpg" + }, + "3": { + "then": "./assets/themes/buurtnatuur/ANB.jpg" + } + } + } + } + } + } +} \ No newline at end of file diff --git a/langs/themes/id.json b/langs/themes/id.json index e07cf79729..d9fabf17f0 100644 --- a/langs/themes/id.json +++ b/langs/themes/id.json @@ -1,147 +1,286 @@ { - "aed": { - "description": "Di peta ini, seseorang dapat menemukan dan menandai defibrillator terdekat", - "title": "Buka Peta AED" - }, - "artwork": { - "description": "Selamat datang di Open Artwork Map, peta untuk patung, grafiti, dan karya seni lain di seluruh dunia", - "title": "Buka Peta Karya Seni" - }, - "benches": { - "title": "Bangku" - }, - "cafes_and_pubs": { - "title": "Kafe dan pub" - }, - "campersite": { - "layers": { - "0": { - "tagRenderings": { - "caravansites-fee": { - "mappings": { - "1": { - "then": "Boleh digunakan tanpa bayaran" - } - } - }, - "caravansites-internet": { - "mappings": { - "0": { - "then": "Akses Web tersedia" - }, - "1": { - "then": "Akses Web tersedia" - }, - "2": { - "then": "Tiada akses Web" - } - }, - "question": "Tempat ini berbagi akses Web?" - }, - "caravansites-name": { - "question": "Apakah nama tempat ini?" - }, - "caravansites-toilets": { - "mappings": { - "0": { - "then": "Tempat sini ada tandas" - }, - "1": { - "then": "Tempat sini tiada tandas" - } - } - }, - "caravansites-website": { - "question": "Tempat sini terada situs web?", - "render": "Situs resmi: {website}" - } - } - } + "aed": { + "description": "Di peta ini, seseorang dapat menemukan dan menandai defibrillator terdekat", + "title": "Buka Peta AED" }, - "overrideAll": { - "tagRenderings+": { - "1": { - "mappings": { + "artwork": { + "description": "Selamat datang di Open Artwork Map, peta untuk patung, grafiti, dan karya seni lain di seluruh dunia", + "title": "Buka Peta Karya Seni" + }, + "benches": { + "title": "Bangku" + }, + "cafes_and_pubs": { + "title": "Kafe dan pub" + }, + "campersite": { + "layers": { "0": { - "then": "Tempat ini memiliki catu daya" + "description": "Tempat camping", + "name": "Tempat camping", + "tagRenderings": { + "caravansites-fee": { + "mappings": { + "0": { + "then": "Anda perlu membayar untuk menggunakannya" + }, + "1": { + "then": "Boleh digunakan tanpa bayaran" + } + } + }, + "caravansites-internet": { + "mappings": { + "0": { + "then": "Akses Web tersedia" + }, + "1": { + "then": "Akses Web tersedia" + }, + "2": { + "then": "Tiada akses Web" + } + }, + "question": "Tempat ini berbagi akses Web?" + }, + "caravansites-name": { + "question": "Apakah nama tempat ini?", + "render": "Tempat ini disebut {name}" + }, + "caravansites-sanitary-dump": { + "mappings": { + "0": { + "then": "Tempat ini memiliki tempat pembuangan sanitasi" + }, + "1": { + "then": "Tempat ini tidak memiliki tempat pembuangan sampah sanitasi" + } + }, + "question": "Apakah tempat ini memiliki tempat pembuangan sanitasi?" + }, + "caravansites-toilets": { + "mappings": { + "0": { + "then": "Tempat sini ada tandas" + }, + "1": { + "then": "Tempat sini tiada tandas" + } + } + }, + "caravansites-website": { + "question": "Tempat sini terada situs web?", + "render": "Situs resmi: {website}" + } + }, + "title": { + "render": "Tempat kemping {name}" + } }, "1": { - "then": "Tempat ini tidak memiliki sumber listrik" + "description": "Tempat pembuangan sanitasi", + "name": "Tempat pembuangan sanitasi" } - } - } - } - } - }, - "charging_stations": { - "title": "Stasiun pengisian daya" - }, - "climbing": { - "layers": { - "0": { - "tagRenderings": { - "climbing_club-name": { - "render": "{name}" - } - } - }, - "1": { - "tagRenderings": { - "name": { - "render": "{name}" - } - } - }, - "2": { - "tagRenderings": { - "Name": { - "render": "{name}" - } - } - }, - "3": { - "tagRenderings": { - "name": { - "render": "{name}" - } - } - }, - "4": { - "tagRenderings": { - "climbing-opportunity-name": { - "render": "{name}" - } - } - } - } - }, - "hailhydrant": { - "layers": { - "0": { - "tagRenderings": { - "hydrant-type": { - "mappings": { - "3": { - "then": " Jenis dinding." - } + }, + "overrideAll": { + "tagRenderings+": { + "1": { + "mappings": { + "0": { + "then": "Tempat ini memiliki catu daya" + }, + "1": { + "then": "Tempat ini tidak memiliki sumber listrik" + } + } + } } - } } - } - } - }, - "trees": { - "title": "Pohon" - }, - "uk_addresses": { - "description": "Berkontribusi untuk OpenStreetMap dengan mengisi informasi alamat", - "layers": { - "1": { - "title": { - "render": "Alamat yang diketahui" - } - } }, - "title": "Alamat Inggris" - } + "charging_stations": { + "title": "Stasiun pengisian daya" + }, + "climbing": { + "layers": { + "0": { + "tagRenderings": { + "climbing_club-name": { + "render": "{name}" + } + } + }, + "1": { + "tagRenderings": { + "name": { + "render": "{name}" + } + } + }, + "2": { + "tagRenderings": { + "Name": { + "render": "{name}" + } + } + }, + "3": { + "tagRenderings": { + "name": { + "render": "{name}" + } + } + }, + "4": { + "tagRenderings": { + "climbing-opportunity-name": { + "render": "{name}" + } + } + } + } + }, + "openwindpowermap": { + "layers": { + "0": { + "tagRenderings": { + "turbine-operator": { + "render": "Turbin angin ini dioperasikan oleh {operator}." + }, + "turbine-output": { + "question": "Berapa output daya dari turbin angin ini? (misalnya 2,3 MW)", + "render": "Output daya dari turbin angin ini adalah {generator:output:electricity}." + }, + "turbine-start-date": { + "question": "Kapan turbin angin ini mulai beroperasi?", + "render": "Turbin angin ini mulai beroperasi pada/dalam {start_date}." + } + }, + "title": { + "mappings": { + "0": { + "then": "{name}" + } + }, + "render": "turbin angin" + }, + "units": { + "0": { + "applicableUnits": { + "0": { + "human": " megawat" + }, + "1": { + "human": " kilowat" + }, + "2": { + "human": " watt" + }, + "3": { + "human": " gigawatt" + } + } + }, + "1": { + "applicableUnits": { + "0": { + "human": " meter" + } + } + } + } + } + }, + "title": "OpenWindPowerMap" + }, + "parkings": { + "description": "Peta ini menunjukkan tempat parkir yang berbeda", + "shortDescription": "Peta ini menunjukkan tempat parkir yang berbeda", + "title": "Tempat parkir" + }, + "personal": { + "title": "Tema pribadi" + }, + "playgrounds": { + "description": "Di peta ini, Anda menemukan taman bermain dan dapat menambahkan lebih banyak informasi", + "shortDescription": "Peta dengan taman bermain", + "title": "Taman bermain" + }, + "postal_codes": { + "description": "Kode pos", + "layers": { + "0": { + "name": "kode pos", + "tagRenderings": { + "postal_code": { + "render": "Kode posnya adalah {postal_code}" + } + }, + "title": { + "render": "Kode pos {postal_code}" + } + }, + "2": { + "name": "balai kota", + "title": { + "render": "Balai kota {name}" + } + } + }, + "shortDescription": "Kode pos", + "title": "Kode pos" + }, + "postboxes": { + "layers": { + "0": { + "description": "Layer yang memperlihatkan kotak pos.", + "name": "Kotak pos", + "presets": { + "0": { + "title": "kotak pos" + } + }, + "title": { + "render": "Kotak pos" + } + }, + "1": { + "description": "Layer yang menunjukkan kantor pos.", + "filter": { + "0": { + "options": { + "0": { + "question": "Saat ini buka" + } + } + } + }, + "name": "Kantor pos", + "presets": { + "0": { + "title": "Kantor Pos" + } + }, + "tagRenderings": { + "OH": { + "mappings": { + "0": { + "then": "Buka 24 jam (termasuk hari libur)" + } + }, + "question": "Jam berapa kantor pos ini buka?", + "render": "Jam Buka: {opening_hours_table()}" + } + }, + "title": { + "render": "Kantor Pos" + } + } + } + }, + "trees": { + "title": "Pohon" + }, + "waste_basket": { + "title": "Keranjang Sampah" + } } \ No newline at end of file diff --git a/langs/themes/it.json b/langs/themes/it.json index ece0994328..3534e7343e 100644 --- a/langs/themes/it.json +++ b/langs/themes/it.json @@ -1,1131 +1,924 @@ { - "aed": { - "description": "Su questa mappa puoi trovare e segnalare i defibrillatori nelle vicinanze", - "title": "Mappa dei defibrillatori (DAE)" - }, - "artwork": { - "description": "Benvenuto/a sulla mappa libera dell’arte, una mappa delle statue, i busti, i graffiti e le altre realizzazioni artistiche di tutto il mondo", - "title": "Mappa libera delle opere d'arte" - }, - "benches": { - "description": "Questa mappa mostra tutte le panchine che sono state aggiunte su OpenStreetMap: panchine individuali e quelle alle fermate del trasporto pubblico o nei ripari. Se disponi di un account OpenStreetMap puoi mappare delle nuove panchine o modificare i dettagli di quelle esistenti.", - "shortDescription": "Una mappa delle panchine", - "title": "Panchine" - }, - "bicyclelib": { - "description": "«Biciclette in prestito» è un luogo dove le biciclette possono essere prese in prestito, spesso in cambio di un piccolo contributo annuale. Un caso degno di nota è quello delle biciclette in prestito per bambini che permettono loro di cambiare le dimensioni della propria bici quando quella attuale diventa troppo piccola", - "title": "Biciclette in prestito" - }, - "binoculars": { - "description": "Una cartina dei binocoli su un palo fissi in un luogo. Si trovano tipicamente nei luoghi turistici, nei belvedere, in cima a torri panoramiche oppure occasionalmente nelle riserve naturali.", - "shortDescription": "Una cartina dei binocoli pubblici fissi", - "title": "Binocoli" - }, - "bookcases": { - "description": "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.", - "title": "Mappa libera delle microbiblioteche" - }, - "cafes_and_pubs": { - "title": "Caffè e pub" - }, - "campersite": { - "description": "Questo sito raccoglie tutti i luoghi ufficiali dove sostare con il camper e aree dove è possibile scaricare acque grigie e nere. Puoi aggiungere dettagli riguardanti i servizi forniti e il loro costo. Aggiungi foto e recensioni. Questo è al contempo un sito web e una web app. I dati sono memorizzati su OpenStreetMap in modo tale che siano per sempre liberi e riutilizzabili da qualsiasi app.", - "layers": { - "0": { - "description": "Aree camper", - "name": "Aree camper", - "presets": { - "0": { - "description": "Aggiungi una nuova area di sosta ufficiale per camper. Si tratta di aree destinate alla sosta notturna dei camper. Potrebbe trattarsi di luoghi di campeggio o semplici parcheggi. Potrebbero anche non essere segnalati sul posto, ma semplicemente indicati in una delibera comunale. Un parcheggio destinato ai camper in cui non è però consentito trascorrere la notte -non- va considerato un'area di sosta per camper. ", - "title": "luogo di campeggio" - } - }, - "tagRenderings": { - "caravansites-capacity": { - "question": "Quanti camper possono stare qua? (non rispondere se non c’è un numero chario di spazi o veicoli ammessi)", - "render": "{capacity} camper possono usare questo luogo al contempo" - }, - "caravansites-charge": { - "question": "Quanto costa questo luogo?", - "render": "Questo luogo costa {charge}" - }, - "caravansites-description": { - "question": "Desideri aggiungere una descrizione del luogo? (Non vanno ripetute informazioni già richieste e mostrate precedentemente. Si prega di attenersi a dati oggettivi - le opinioni vanno nelle recensioni)", - "render": "Maggiori dettagli su questo luogo: {description}" - }, - "caravansites-fee": { - "mappings": { - "0": { - "then": "Devi pagare per usarlo" - }, - "1": { - "then": "Può essere usato gratuitamente" - } - }, - "question": "Ha una tariffa questo luogo?" - }, - "caravansites-internet": { - "mappings": { - "0": { - "then": "C’è l’accesso a internet" - }, - "1": { - "then": "C’è l’accesso a internet" - }, - "2": { - "then": "Non c’è l’accesso a internet" - } - }, - "question": "Questo luogo ha l’accesso a internet?" - }, - "caravansites-internet-fee": { - "mappings": { - "0": { - "then": "Occorre pagare un extra per avere l’accesso a internet" - }, - "1": { - "then": "Non occorre pagare per l’accesso a internet" - } - }, - "question": "Occorre pagare per avere l’accesso a internet?" - }, - "caravansites-long-term": { - "mappings": { - "0": { - "then": "Sì, ci sono spazi per il noleggio a lungo termine, ma puoi anche pagare per singola giornata" - }, - "1": { - "then": "No, non ci sono ospiti a lungo termine qui" - }, - "2": { - "then": "Puoi soggiornare qui solo se hai un contratto a lungo termine (se selezioni questa opzione, questo luogo sarà rimosso da questa mappa)" - } - }, - "question": "Questo luogo offre spazi per il noleggio a lungo termine?" - }, - "caravansites-name": { - "question": "Come viene chiamato questo luogo?", - "render": "Questo luogo è chiamato {name}" - }, - "caravansites-sanitary-dump": { - "mappings": { - "0": { - "then": "Questo luogo ha una stazione per lo scarico delle acque" - }, - "1": { - "then": "Questo luogo non ha una stazione per lo scarico delle acque" - } - }, - "question": "Questo luogo ha una stazione per lo scarico delle acque?" - }, - "caravansites-toilets": { - "mappings": { - "0": { - "then": "Questo luogo ha i servizi igienici" - }, - "1": { - "then": "Questo luogo non ha i servizi igienici" - } - }, - "question": "Questo luogo dispone di servizi igienici?" - }, - "caravansites-website": { - "question": "Questo luogo ha un sito web?", - "render": "Sito web ufficiale: {website}" - } - }, - "title": { - "mappings": { - "0": { - "then": "Area camper senza nome" - } - }, - "render": "Area camper {name}" - } - }, - "1": { - "description": "Luoghi di sversamento delle acque reflue", - "name": "Luoghi di sversamento delle acque reflue", - "presets": { - "0": { - "description": "Aggiungi un nuovo luogo di sversamento delle acque reflue. Si tratta di luoghi dove chi viaggia in camper può smaltire le acque grigie o le acque nere. Spesso forniscono anche acqua ed elettricità.", - "title": "luogo di sversamento delle acque reflue" - } - }, - "tagRenderings": { - "dumpstations-access": { - "mappings": { - "0": { - "then": "Servono una chiave o un codice di accesso" - }, - "1": { - "then": "È obbligatorio essere un cliente di questo campeggio o di questa area camper" - }, - "2": { - "then": "Chiunque può farne uso" - }, - "3": { - "then": "Chiunque può farne uso" - } - }, - "question": "Chi può utilizzare questo luogo di sversamento?" - }, - "dumpstations-charge": { - "question": "Qual è la tariffa di questo luogo?", - "render": "Ha una tariffa di {charge}" - }, - "dumpstations-chemical-waste": { - "mappings": { - "0": { - "then": "È possibile smaltire le acque del WC chimico qui" - }, - "1": { - "then": "Non è possibile smaltire le acque del WC chimico qui" - } - }, - "question": "È possibile smaltire le acque del WC chimico qui?" - }, - "dumpstations-fee": { - "mappings": { - "0": { - "then": "A pagamento" - }, - "1": { - "then": "È gratuito" - } - }, - "question": "Questo luogo è a pagamento?" - }, - "dumpstations-grey-water": { - "mappings": { - "0": { - "then": "Si possono smaltire le acque grigie qui" - }, - "1": { - "then": "Non si possono smaltire le acque grigie qui" - } - }, - "question": "Si possono smaltire le acque grigie qui?" - }, - "dumpstations-network": { - "question": "Di quale rete fa parte questo luogo? (se non fa parte di nessuna rete, salta)", - "render": "Questo luogo è parte della rete {network}" - }, - "dumpstations-waterpoint": { - "mappings": { - "0": { - "then": "Questo luogo ha un punto per l'approvvigionamento di acqua" - }, - "1": { - "then": "Questo luogo non ha un punto per l'approvvigionamento di acqua" - } - }, - "question": "Questo luogo ha un punto per l'approvvigionamento di acqua?" - } - }, - "title": { - "mappings": { - "0": { - "then": "Luogo di sversamento" - } - }, - "render": "Luogo di sversamento {name}" - } - } + "aed": { + "description": "Su questa mappa puoi trovare e segnalare i defibrillatori nelle vicinanze", + "title": "Mappa dei defibrillatori (DAE)" }, - "overrideAll": { - "tagRenderings+": { - "0": { - "question": "Chi gestisce questo luogo?", - "render": "Questo luogo è gestito da {operator}" - }, - "1": { - "mappings": { + "artwork": { + "description": "Benvenuto/a sulla mappa libera dell’arte, una mappa delle statue, i busti, i graffiti e le altre realizzazioni artistiche di tutto il mondo", + "title": "Mappa libera delle opere d'arte" + }, + "benches": { + "description": "Questa mappa mostra tutte le panchine che sono state aggiunte su OpenStreetMap: panchine individuali e quelle alle fermate del trasporto pubblico o nei ripari. Se disponi di un account OpenStreetMap puoi mappare delle nuove panchine o modificare i dettagli di quelle esistenti.", + "shortDescription": "Una mappa delle panchine", + "title": "Panchine" + }, + "bicyclelib": { + "description": "«Biciclette in prestito» è un luogo dove le biciclette possono essere prese in prestito, spesso in cambio di un piccolo contributo annuale. Un caso degno di nota è quello delle biciclette in prestito per bambini che permettono loro di cambiare le dimensioni della propria bici quando quella attuale diventa troppo piccola", + "title": "Biciclette in prestito" + }, + "binoculars": { + "description": "Una cartina dei binocoli su un palo fissi in un luogo. Si trovano tipicamente nei luoghi turistici, nei belvedere, in cima a torri panoramiche oppure occasionalmente nelle riserve naturali.", + "shortDescription": "Una cartina dei binocoli pubblici fissi", + "title": "Binocoli" + }, + "bookcases": { + "description": "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.", + "title": "Mappa libera delle microbiblioteche" + }, + "cafes_and_pubs": { + "title": "Caffè e pub" + }, + "campersite": { + "description": "Questo sito raccoglie tutti i luoghi ufficiali dove sostare con il camper e aree dove è possibile scaricare acque grigie e nere. Puoi aggiungere dettagli riguardanti i servizi forniti e il loro costo. Aggiungi foto e recensioni. Questo è al contempo un sito web e una web app. I dati sono memorizzati su OpenStreetMap in modo tale che siano per sempre liberi e riutilizzabili da qualsiasi app.", + "layers": { "0": { - "then": "Questo luogo fornisce corrente elettrica" + "description": "Aree camper", + "name": "Aree camper", + "presets": { + "0": { + "description": "Aggiungi una nuova area di sosta ufficiale per camper. Si tratta di aree destinate alla sosta notturna dei camper. Potrebbe trattarsi di luoghi di campeggio o semplici parcheggi. Potrebbero anche non essere segnalati sul posto, ma semplicemente indicati in una delibera comunale. Un parcheggio destinato ai camper in cui non è però consentito trascorrere la notte -non- va considerato un'area di sosta per camper. ", + "title": "luogo di campeggio" + } + }, + "tagRenderings": { + "caravansites-capacity": { + "question": "Quanti camper possono stare qua? (non rispondere se non c’è un numero chario di spazi o veicoli ammessi)", + "render": "{capacity} camper possono usare questo luogo al contempo" + }, + "caravansites-charge": { + "question": "Quanto costa questo luogo?", + "render": "Questo luogo costa {charge}" + }, + "caravansites-description": { + "question": "Desideri aggiungere una descrizione del luogo? (Non vanno ripetute informazioni già richieste e mostrate precedentemente. Si prega di attenersi a dati oggettivi - le opinioni vanno nelle recensioni)", + "render": "Maggiori dettagli su questo luogo: {description}" + }, + "caravansites-fee": { + "mappings": { + "0": { + "then": "Devi pagare per usarlo" + }, + "1": { + "then": "Può essere usato gratuitamente" + } + }, + "question": "Ha una tariffa questo luogo?" + }, + "caravansites-internet": { + "mappings": { + "0": { + "then": "C’è l’accesso a internet" + }, + "1": { + "then": "C’è l’accesso a internet" + }, + "2": { + "then": "Non c’è l’accesso a internet" + } + }, + "question": "Questo luogo ha l’accesso a internet?" + }, + "caravansites-internet-fee": { + "mappings": { + "0": { + "then": "Occorre pagare un extra per avere l’accesso a internet" + }, + "1": { + "then": "Non occorre pagare per l’accesso a internet" + } + }, + "question": "Occorre pagare per avere l’accesso a internet?" + }, + "caravansites-long-term": { + "mappings": { + "0": { + "then": "Sì, ci sono spazi per il noleggio a lungo termine, ma puoi anche pagare per singola giornata" + }, + "1": { + "then": "No, non ci sono ospiti a lungo termine qui" + }, + "2": { + "then": "Puoi soggiornare qui solo se hai un contratto a lungo termine (se selezioni questa opzione, questo luogo sarà rimosso da questa mappa)" + } + }, + "question": "Questo luogo offre spazi per il noleggio a lungo termine?" + }, + "caravansites-name": { + "question": "Come viene chiamato questo luogo?", + "render": "Questo luogo è chiamato {name}" + }, + "caravansites-sanitary-dump": { + "mappings": { + "0": { + "then": "Questo luogo ha una stazione per lo scarico delle acque" + }, + "1": { + "then": "Questo luogo non ha una stazione per lo scarico delle acque" + } + }, + "question": "Questo luogo ha una stazione per lo scarico delle acque?" + }, + "caravansites-toilets": { + "mappings": { + "0": { + "then": "Questo luogo ha i servizi igienici" + }, + "1": { + "then": "Questo luogo non ha i servizi igienici" + } + }, + "question": "Questo luogo dispone di servizi igienici?" + }, + "caravansites-website": { + "question": "Questo luogo ha un sito web?", + "render": "Sito web ufficiale: {website}" + } + }, + "title": { + "mappings": { + "0": { + "then": "Area camper senza nome" + } + }, + "render": "Area camper {name}" + } }, "1": { - "then": "Questo luogo non fornisce corrente elettrica" + "description": "Luoghi di sversamento delle acque reflue", + "name": "Luoghi di sversamento delle acque reflue", + "presets": { + "0": { + "description": "Aggiungi un nuovo luogo di sversamento delle acque reflue. Si tratta di luoghi dove chi viaggia in camper può smaltire le acque grigie o le acque nere. Spesso forniscono anche acqua ed elettricità.", + "title": "luogo di sversamento delle acque reflue" + } + }, + "tagRenderings": { + "dumpstations-access": { + "mappings": { + "0": { + "then": "Servono una chiave o un codice di accesso" + }, + "1": { + "then": "È obbligatorio essere un cliente di questo campeggio o di questa area camper" + }, + "2": { + "then": "Chiunque può farne uso" + }, + "3": { + "then": "Chiunque può farne uso" + } + }, + "question": "Chi può utilizzare questo luogo di sversamento?" + }, + "dumpstations-charge": { + "question": "Qual è la tariffa di questo luogo?", + "render": "Ha una tariffa di {charge}" + }, + "dumpstations-chemical-waste": { + "mappings": { + "0": { + "then": "È possibile smaltire le acque del WC chimico qui" + }, + "1": { + "then": "Non è possibile smaltire le acque del WC chimico qui" + } + }, + "question": "È possibile smaltire le acque del WC chimico qui?" + }, + "dumpstations-fee": { + "mappings": { + "0": { + "then": "A pagamento" + }, + "1": { + "then": "È gratuito" + } + }, + "question": "Questo luogo è a pagamento?" + }, + "dumpstations-grey-water": { + "mappings": { + "0": { + "then": "Si possono smaltire le acque grigie qui" + }, + "1": { + "then": "Non si possono smaltire le acque grigie qui" + } + }, + "question": "Si possono smaltire le acque grigie qui?" + }, + "dumpstations-network": { + "question": "Di quale rete fa parte questo luogo? (se non fa parte di nessuna rete, salta)", + "render": "Questo luogo è parte della rete {network}" + }, + "dumpstations-waterpoint": { + "mappings": { + "0": { + "then": "Questo luogo ha un punto per l'approvvigionamento di acqua" + }, + "1": { + "then": "Questo luogo non ha un punto per l'approvvigionamento di acqua" + } + }, + "question": "Questo luogo ha un punto per l'approvvigionamento di acqua?" + } + }, + "title": { + "mappings": { + "0": { + "then": "Luogo di sversamento" + } + }, + "render": "Luogo di sversamento {name}" + } } - }, - "question": "Questo luogo fornisce corrente elettrica?" - } - } + }, + "overrideAll": { + "tagRenderings+": { + "0": { + "question": "Chi gestisce questo luogo?", + "render": "Questo luogo è gestito da {operator}" + }, + "1": { + "mappings": { + "0": { + "then": "Questo luogo fornisce corrente elettrica" + }, + "1": { + "then": "Questo luogo non fornisce corrente elettrica" + } + }, + "question": "Questo luogo fornisce corrente elettrica?" + } + } + }, + "shortDescription": "Trova aree dove passare la notte con il tuo camper", + "title": "Aree camper" }, - "shortDescription": "Trova aree dove passare la notte con il tuo camper", - "title": "Aree camper" - }, - "charging_stations": { - "description": "Su questa mappa aperta, puoi individuare le stazioni di ricarica o aggiungere informazioni", - "shortDescription": "Una mappa mondiale delle stazioni di ricarica", - "title": "Stazioni di ricarica" - }, - "climbing": { - "description": "In questa cartina puoi trovare vari luoghi per arrampicata come ad esempio palestre di arrampicata, sale di pratica e rocce naturali.", - "descriptionTail": "La cartina di arrampicata è stata originariamente creata da Christian Neumann. Si prega di scrivere qua se si hanno commenti o domande da fare.

Il progetto usa i dati del progetto OpenStreetMap.

", - "layers": { - "0": { - "description": "Un club o associazione di arrampacata", - "name": "Club di arrampicata", - "presets": { - "0": { - "description": "Un club di arrampicata", - "title": "Club di arrampicata" - }, - "1": { - "description": "Un’associazione che ha a che fare con l’arrampicata", - "title": "Associazione di arrampicata" - } - }, - "tagRenderings": { - "climbing_club-name": { - "question": "Qual è il nome di questo club o associazione di arrampicata?", - "render": "{name}" - } - }, - "title": { - "mappings": { + "charging_stations": { + "description": "Su questa mappa aperta, puoi individuare le stazioni di ricarica o aggiungere informazioni", + "shortDescription": "Una mappa mondiale delle stazioni di ricarica", + "title": "Stazioni di ricarica" + }, + "climbing": { + "description": "In questa cartina puoi trovare vari luoghi per arrampicata come ad esempio palestre di arrampicata, sale di pratica e rocce naturali.", + "descriptionTail": "La cartina di arrampicata è stata originariamente creata da Christian Neumann. Si prega di scrivere qua se si hanno commenti o domande da fare.

Il progetto usa i dati del progetto OpenStreetMap.

", + "layers": { "0": { - "then": "Associazione di arrampicata" - } - }, - "render": "Club di arrampicata" - } - }, - "1": { - "description": "Una palestra di arrampicata", - "name": "Palestre di arrampicata", - "tagRenderings": { - "name": { - "question": "Qual è il nome di questa palestra di arrampicata?", - "render": "{name}" - } - }, - "title": { - "mappings": { - "0": { - "then": "Palestra di arrampicata {name}" - } - }, - "render": "Palestra di arrampicata" - } - }, - "2": { - "name": "Vie di arrampicata", - "presets": { - "0": { - "title": "Via di arrampicata" - } - }, - "tagRenderings": { - "Bolts": { - "mappings": { - "0": { - "then": "In questo percorso non sono presenti bulloni" - }, - "1": { - "then": "In questo percorso non sono presenti bulloni" - } - }, - "question": "Quanti bulloni sono presenti in questo percorso prima di arrivare alla moulinette?", - "render": "Questo percorso ha {climbing:bolts} bulloni" - }, - "Difficulty": { - "question": "Qual è la difficoltà di questa via di arrampicata nel sistema francese/belga?", - "render": "Il grado di difficoltà è {climbing:grade:french} nel sistema francese/belga" - }, - "Length": { - "question": "Quanto è lunga questa via di arrampicata (in metri)?", - "render": "Questo percorso è lungo {canonical(climbing:length)}" - }, - "Name": { - "mappings": { - "0": { - "then": "Questa via di arrampicata non ha un nome" - } - }, - "question": "Come si chiama questa via di arrampicata?", - "render": "{name}" - }, - "Rock type": { - "render": "Il tipo di roccia è {_embedding_features_with_rock:rock} come dichiarato sul muro circostante" - } - }, - "title": { - "mappings": { - "0": { - "then": "Via di arrampicata {name}" - } - }, - "render": "Via di arrampicata" - } - }, - "3": { - "description": "Un’opportunità di arrampicata", - "name": "Opportunità di arrampicata", - "presets": { - "0": { - "description": "Un’opportunità di arrampicata", - "title": "Opportunità di arrampicata" - } - }, - "tagRenderings": { - "Contained routes hist": { - "render": "

Riassunto delle difficoltà

{histogram(_difficulty_hist)}" - }, - "Contained routes length hist": { - "render": "

Riassunto della lunghezza

{histogram(_length_hist)}" - }, - "Contained_climbing_routes": { - "render": "

Contiene {_contained_climbing_routes_count} vie

    {_contained_climbing_routes}
" - }, - "Rock type (crag/rock/cliff only)": { - "mappings": { - "0": { - "then": "Calcare" - } - }, - "question": "Qual è il tipo di roccia qua?", - "render": "Il tipo di roccia è {rock}" - }, - "Type": { - "mappings": { - "0": { - "then": "Un masso per arrampicata (una singola roccia o falesia con una o poche vie di arrampicata che possono essere scalate in sicurezza senza una corda)" - }, - "1": { - "then": "Un muro da arrampicata (un singolo masso o falesia con almeno qualche via per arrampicata)" - } - } - }, - "name": { - "mappings": { - "0": { - "then": "Questa opportunità di arrampicata non ha un nome" - } - }, - "question": "Qual è il nome di questa opportunità di arrampicata?", - "render": "{name}" - } - }, - "title": { - "mappings": { - "0": { - "then": "Muro da arrampicata {name}" + "description": "Un club o associazione di arrampacata", + "name": "Club di arrampicata", + "presets": { + "0": { + "description": "Un club di arrampicata", + "title": "Club di arrampicata" + }, + "1": { + "description": "Un’associazione che ha a che fare con l’arrampicata", + "title": "Associazione di arrampicata" + } + }, + "tagRenderings": { + "climbing_club-name": { + "question": "Qual è il nome di questo club o associazione di arrampicata?", + "render": "{name}" + } + }, + "title": { + "mappings": { + "0": { + "then": "Associazione di arrampicata" + } + }, + "render": "Club di arrampicata" + } }, "1": { - "then": "Area di arrampicata {name}" + "description": "Una palestra di arrampicata", + "name": "Palestre di arrampicata", + "tagRenderings": { + "name": { + "question": "Qual è il nome di questa palestra di arrampicata?", + "render": "{name}" + } + }, + "title": { + "mappings": { + "0": { + "then": "Palestra di arrampicata {name}" + } + }, + "render": "Palestra di arrampicata" + } }, "2": { - "then": "Sito di arrampicata" + "name": "Vie di arrampicata", + "presets": { + "0": { + "title": "Via di arrampicata" + } + }, + "tagRenderings": { + "Bolts": { + "mappings": { + "0": { + "then": "In questo percorso non sono presenti bulloni" + }, + "1": { + "then": "In questo percorso non sono presenti bulloni" + } + }, + "question": "Quanti bulloni sono presenti in questo percorso prima di arrivare alla moulinette?", + "render": "Questo percorso ha {climbing:bolts} bulloni" + }, + "Difficulty": { + "question": "Qual è la difficoltà di questa via di arrampicata nel sistema francese/belga?", + "render": "Il grado di difficoltà è {climbing:grade:french} nel sistema francese/belga" + }, + "Length": { + "question": "Quanto è lunga questa via di arrampicata (in metri)?", + "render": "Questo percorso è lungo {canonical(climbing:length)}" + }, + "Name": { + "mappings": { + "0": { + "then": "Questa via di arrampicata non ha un nome" + } + }, + "question": "Come si chiama questa via di arrampicata?", + "render": "{name}" + }, + "Rock type": { + "render": "Il tipo di roccia è {_embedding_features_with_rock:rock} come dichiarato sul muro circostante" + } + }, + "title": { + "mappings": { + "0": { + "then": "Via di arrampicata {name}" + } + }, + "render": "Via di arrampicata" + } }, "3": { - "then": "Opportunità di arrampicata {name}" - } - }, - "render": "Opportunità di arrampicata" - } - }, - "4": { - "description": "Un’opportunità di arrampicata?", - "name": "Opportunità di arrampicata?", - "tagRenderings": { - "climbing-opportunity-name": { - "render": "{name}" - }, - "climbing-possible": { - "mappings": { - "0": { - "then": "Non è possibile arrampicarsi qua" - }, - "1": { - "then": "È possibile arrampicarsi qua" - }, - "2": { - "then": "Non è possibile arrampicarsi qua" - } + "description": "Un’opportunità di arrampicata", + "name": "Opportunità di arrampicata", + "presets": { + "0": { + "description": "Un’opportunità di arrampicata", + "title": "Opportunità di arrampicata" + } + }, + "tagRenderings": { + "Contained routes hist": { + "render": "

Riassunto delle difficoltà

{histogram(_difficulty_hist)}" + }, + "Contained routes length hist": { + "render": "

Riassunto della lunghezza

{histogram(_length_hist)}" + }, + "Contained_climbing_routes": { + "render": "

Contiene {_contained_climbing_routes_count} vie

    {_contained_climbing_routes}
" + }, + "Rock type (crag/rock/cliff only)": { + "mappings": { + "0": { + "then": "Calcare" + } + }, + "question": "Qual è il tipo di roccia qua?", + "render": "Il tipo di roccia è {rock}" + }, + "Type": { + "mappings": { + "0": { + "then": "Un masso per arrampicata (una singola roccia o falesia con una o poche vie di arrampicata che possono essere scalate in sicurezza senza una corda)" + }, + "1": { + "then": "Un muro da arrampicata (un singolo masso o falesia con almeno qualche via per arrampicata)" + } + } + }, + "name": { + "mappings": { + "0": { + "then": "Questa opportunità di arrampicata non ha un nome" + } + }, + "question": "Qual è il nome di questa opportunità di arrampicata?", + "render": "{name}" + } + }, + "title": { + "mappings": { + "0": { + "then": "Muro da arrampicata {name}" + }, + "1": { + "then": "Area di arrampicata {name}" + }, + "2": { + "then": "Sito di arrampicata" + }, + "3": { + "then": "Opportunità di arrampicata {name}" + } + }, + "render": "Opportunità di arrampicata" + } }, - "question": "È possibile arrampicarsi qua?" - } + "4": { + "description": "Un’opportunità di arrampicata?", + "name": "Opportunità di arrampicata?", + "tagRenderings": { + "climbing-opportunity-name": { + "render": "{name}" + }, + "climbing-possible": { + "mappings": { + "0": { + "then": "Non è possibile arrampicarsi qua" + }, + "1": { + "then": "È possibile arrampicarsi qua" + }, + "2": { + "then": "Non è possibile arrampicarsi qua" + } + }, + "question": "È possibile arrampicarsi qua?" + } + }, + "title": { + "render": "Opportunità di arrampicata?" + } + } }, - "title": { - "render": "Opportunità di arrampicata?" - } - } + "overrideAll": { + "tagRenderings+": { + "0": { + "question": "C’è un sito web (anche non ufficiale) con qualche informazione in più (ad es. topografie)?" + }, + "1": { + "mappings": { + "0": { + "then": "L’ elemento in cui è contenuto indica che è pubblicamente accessibile
{_embedding_feature:access:description}" + }, + "1": { + "then": "L’elemento che lo contiene indica che è richiesto un’autorizzazione per accedervi
{_embedding_feature:access:description}" + }, + "2": { + "then": "L’ elemento che lo contiene indica che è accessibile solo ai clienti
{_embedding_feature:access:description}" + }, + "3": { + "then": "L’ elemento che lo contiene indica che è accessibile solamente ai membri del club
{_embedding_feature:access:description}" + } + } + }, + "2": { + "mappings": { + "0": { + "then": "Pubblicamente accessibile a chiunque" + }, + "1": { + "then": "È necessario avere un’autorizzazione per entrare" + }, + "2": { + "then": "Riservato ai clienti" + }, + "3": { + "then": "Riservato ai membri del club" + } + }, + "question": "Chi può accedervi?" + }, + "4": { + "question": "Quale è la lunghezza (media) delle vie in metri?", + "render": "Le vie sono lunghe mediamente {canonical(climbing:length)}" + }, + "5": { + "question": "Qual è il livello della via più facile qua, secondo il sistema di classificazione francese?", + "render": "Il minimo livello di difficoltà è {climbing:grade:french:min} secondo il sistema francese/belga" + }, + "6": { + "question": "Qual è il livello della via più difficile qua, secondo il sistema di classificazione francese?", + "render": "Il massimo livello di difficoltà è {climbing:grade:french:max} secondo il sistema francese/belga" + }, + "7": { + "mappings": { + "0": { + "then": "L’arrampicata su massi è possibile qua" + }, + "1": { + "then": "L’arrampicata su massi non è possibile qua" + }, + "2": { + "then": "L’arrampicata su massi è possibile anche se su poche vie" + }, + "3": { + "then": "Sono presenti {climbing:boulder} vie di arrampicata su massi" + } + }, + "question": "È possibile praticare ‘bouldering’ qua?" + }, + "8": { + "mappings": { + "0": { + "then": "È possibile arrampicarsi con moulinette qua" + }, + "1": { + "then": "Non è possibile arrampicarsi con moulinette qua" + }, + "2": { + "then": "Sono presenti {climbing:toprope} vie con moulinette" + } + }, + "question": "È possibile arrampicarsi con la corda dall’alto qua?" + }, + "9": { + "mappings": { + "0": { + "then": "L’arrampicata sportiva è possibile qua" + }, + "1": { + "then": "L’arrampicata sportiva non è possibile qua" + }, + "2": { + "then": "Sono presenti {climbing:sport} vie di arrampicata sportiva" + } + }, + "question": "È possibile arrampicarsi qua con ancoraggi fissi?" + }, + "10": { + "mappings": { + "0": { + "then": "L’arrampicata tradizionale è possibile qua" + }, + "1": { + "then": "L’arrampicata tradizionale non è possibile qua" + }, + "2": { + "then": "Sono presenti {climbing:traditional} vie di arrampicata tradizionale" + } + }, + "question": "È possibile arrampicarsi in maniera tradizionale qua (usando attrezzi propri, ad es. dadi)?" + }, + "11": { + "mappings": { + "0": { + "then": "È presente una parete per l’arrampicata di velocità" + }, + "1": { + "then": "Non è presente una parete per l’arrampicata di velocità" + }, + "2": { + "then": "Sono presenti {climbing:speed} pareti per l’arrampicata di velocità" + } + }, + "question": "È presente una prete per l’arrampicata di velocità?" + } + }, + "units+": { + "0": { + "applicableUnits": { + "0": { + "human": " metri" + }, + "1": { + "human": " piedi" + } + } + } + } + }, + "title": "Mappa aperta per le arrampicate" }, - "overrideAll": { - "tagRenderings+": { - "0": { - "question": "C’è un sito web (anche non ufficiale) con qualche informazione in più (ad es. topografie)?" - }, - "1": { - "mappings": { - "0": { - "then": "L’ elemento in cui è contenuto indica che è pubblicamente accessibile
{_embedding_feature:access:description}" - }, - "1": { - "then": "L’elemento che lo contiene indica che è richiesto un’autorizzazione per accedervi
{_embedding_feature:access:description}" - }, - "2": { - "then": "L’ elemento che lo contiene indica che è accessibile solo ai clienti
{_embedding_feature:access:description}" - }, - "3": { - "then": "L’ elemento che lo contiene indica che è accessibile solamente ai membri del club
{_embedding_feature:access:description}" - } - } - }, - "2": { - "mappings": { - "0": { - "then": "Pubblicamente accessibile a chiunque" - }, - "1": { - "then": "È necessario avere un’autorizzazione per entrare" - }, - "2": { - "then": "Riservato ai clienti" - }, - "3": { - "then": "Riservato ai membri del club" - } - }, - "question": "Chi può accedervi?" - }, - "4": { - "question": "Quale è la lunghezza (media) delle vie in metri?", - "render": "Le vie sono lunghe mediamente {canonical(climbing:length)}" - }, - "5": { - "question": "Qual è il livello della via più facile qua, secondo il sistema di classificazione francese?", - "render": "Il minimo livello di difficoltà è {climbing:grade:french:min} secondo il sistema francese/belga" - }, - "6": { - "question": "Qual è il livello della via più difficile qua, secondo il sistema di classificazione francese?", - "render": "Il massimo livello di difficoltà è {climbing:grade:french:max} secondo il sistema francese/belga" - }, - "7": { - "mappings": { - "0": { - "then": "L’arrampicata su massi è possibile qua" - }, - "1": { - "then": "L’arrampicata su massi non è possibile qua" - }, - "2": { - "then": "L’arrampicata su massi è possibile anche se su poche vie" - }, - "3": { - "then": "Sono presenti {climbing:boulder} vie di arrampicata su massi" - } - }, - "question": "È possibile praticare ‘bouldering’ qua?" - }, - "8": { - "mappings": { - "0": { - "then": "È possibile arrampicarsi con moulinette qua" - }, - "1": { - "then": "Non è possibile arrampicarsi con moulinette qua" - }, - "2": { - "then": "Sono presenti {climbing:toprope} vie con moulinette" - } - }, - "question": "È possibile arrampicarsi con la corda dall’alto qua?" - }, - "9": { - "mappings": { - "0": { - "then": "L’arrampicata sportiva è possibile qua" - }, - "1": { - "then": "L’arrampicata sportiva non è possibile qua" - }, - "2": { - "then": "Sono presenti {climbing:sport} vie di arrampicata sportiva" - } - }, - "question": "È possibile arrampicarsi qua con ancoraggi fissi?" - }, - "10": { - "mappings": { - "0": { - "then": "L’arrampicata tradizionale è possibile qua" - }, - "1": { - "then": "L’arrampicata tradizionale non è possibile qua" - }, - "2": { - "then": "Sono presenti {climbing:traditional} vie di arrampicata tradizionale" - } - }, - "question": "È possibile arrampicarsi in maniera tradizionale qua (usando attrezzi propri, ad es. dadi)?" - }, - "11": { - "mappings": { - "0": { - "then": "È presente una parete per l’arrampicata di velocità" - }, - "1": { - "then": "Non è presente una parete per l’arrampicata di velocità" - }, - "2": { - "then": "Sono presenti {climbing:speed} pareti per l’arrampicata di velocità" - } - }, - "question": "È presente una prete per l’arrampicata di velocità?" - } - }, - "units+": { - "0": { - "applicableUnits": { - "0": { - "human": " metri" - }, - "1": { - "human": " piedi" - } - } - } - } + "cycle_highways": { + "description": "Questa cartina mostra le strade per velocipedi", + "title": "Strade per velocipedi" }, - "title": "Mappa aperta per le arrampicate" - }, - "cycle_highways": { - "description": "Questa cartina mostra le strade per velocipedi", - "title": "Strade per velocipedi" - }, - "cycle_infra": { - "description": "Una cartina dove vedere e modificare gli elementi riguardanti l’infrastruttura dei velocipedi. Realizzata durante #osoc21.", - "shortDescription": "Una cartina dove vedere e modificare gli elementi riguardanti l’infrastruttura dei velocipedi.", - "title": "Infrastruttura dei velocipedi" - }, - "cyclestreets": { - "description": "Una strada ciclabile è una strada dove il traffico motorizzato non può superare i velocipedi. La sua presenza è segnalata da un cartello stradale specifico. Le strade ciclabili sono diffuse in Olanda e Belgio, ma si possono trovare anche in Germania e in Francia. ", - "layers": { - "0": { - "description": "Una strada ciclabile è una strada in cui i veicoli a motore non possono sorpassare le persone in bicicletta", - "name": "Strade ciclabili" - }, - "1": { - "description": "Questa strada diventerà presto una strada ciclabile", - "name": "Futura strada ciclabile", - "title": { - "mappings": { - "0": { - "then": "{name} diventerà presto una strada ciclabile" - } - }, - "render": "Futura strada ciclabile" - } - }, - "2": { - "description": "Livello per contrassegnare tutte le strade come strade ciclabili", - "name": "Tutte le strade", - "title": { - "render": "Strada" - } - } + "cycle_infra": { + "description": "Una cartina dove vedere e modificare gli elementi riguardanti l’infrastruttura dei velocipedi. Realizzata durante #osoc21.", + "shortDescription": "Una cartina dove vedere e modificare gli elementi riguardanti l’infrastruttura dei velocipedi.", + "title": "Infrastruttura dei velocipedi" }, - "overrideAll": { - "tagRenderings+": { - "0": { - "mappings": { + "cyclestreets": { + "description": "Una strada ciclabile è una strada dove il traffico motorizzato non può superare i velocipedi. La sua presenza è segnalata da un cartello stradale specifico. Le strade ciclabili sono diffuse in Olanda e Belgio, ma si possono trovare anche in Germania e in Francia. ", + "layers": { "0": { - "then": "Questa è una strada ciclabile (e ha un limite di velocità massima di 30 km/h)" + "description": "Una strada ciclabile è una strada in cui i veicoli a motore non possono sorpassare le persone in bicicletta", + "name": "Strade ciclabili" }, "1": { - "then": "Questa è una strada ciclabile" + "description": "Questa strada diventerà presto una strada ciclabile", + "name": "Futura strada ciclabile", + "title": { + "mappings": { + "0": { + "then": "{name} diventerà presto una strada ciclabile" + } + }, + "render": "Futura strada ciclabile" + } }, "2": { - "then": "Diverrà tra poco una strada ciclabile" - }, - "3": { - "then": "Questa strada non è una strada ciclabile" + "description": "Livello per contrassegnare tutte le strade come strade ciclabili", + "name": "Tutte le strade", + "title": { + "render": "Strada" + } } - }, - "question": "È una strada ciclabile?" }, - "1": { - "question": "Questa strada diventerà una strada ciclabile quando?", - "render": "Questa strada diventerà una strada ciclabile dal {cyclestreet:start_date}" - } - } - }, - "shortDescription": "Una cartina per le strade ciclabili", - "title": "Strade ciclabili" - }, - "cyclofix": { - "description": "Questa mappa offre a chi va in bici una soluzione semplice per trovare tutte le infrastrutture di cui ha bisogno.

Puoi tracciare la tua posizione esatta (solo su mobile) e selezionare i livelli che ti interessano nell'angolo in basso a sinistra. Puoi anche usare questo strumento per aggiungere o modificare punti di interesse alla mappa e aggiungere nuove informazioni rispendendo alle domande.

Tutte le modifiche che apporterai saranno automaticamente salvate nel database mondiale di OpenStreetMap e potranno essere liberamente riutilizzate da tutti e tutte.

Per maggiori informazioni sul progetto ciclofix, visita cyclofix.osm.be.", - "title": "Cyclofix - una mappa libera per chi va in bici" - }, - "drinking_water": { - "description": "Questa mappa mostra tutti i luoghi in cui è disponibile acqua potabile ed è possibile aggiungerne di nuovi", - "title": "Acqua potabile" - }, - "etymology": { - "description": "Su questa cartina sono visibili i nomi a cui sono riferiti gli oggetti. Le strade, gli edifici, etc. provengono da OpenStreetMap che è a sua volta collegata a Wikidata. Nel popup, se esiste, verrà mostrato l’articolo Wikipedia o l'elemento Wikidata a cui si riferisce il nome di quell’oggetto. Se l’oggetto stesso ha una pagina Wikpedia, anch’essa verrà mostrata.

Anche tu puoi contribuire!Ingrandisci abbastanza e tutte le strade appariranno. Puoi cliccare su una e apparirà un popup con la ricerca Wikidata. Con pochi clic puoi aggiungere un collegamento etimologico. Tieni presente che per farlo, hai bisogno di un account gratuito su OpenStreetMap.", - "layers": { - "1": { - "override": { - "name": "Strade senza informazioni etimologiche" - } - }, - "2": { - "override": { - "name": "Parchi e foreste senza informazioni etimologiche" - } - } - }, - "shortDescription": "Qual è l’origine di un toponimo?", - "title": "Apri Carta Etimologica" - }, - "facadegardens": { - "description": "I giardini veritcali e gli alberi in città non solo portano pace e tranquillità ma creano anche un ambiente più bello, aumentano la biodiversità, rendono il clima più fresco e migliorano la qualità dell’aria.
Klimaan VZW e Mechelen Klimaatneutraal vogliono mappare sia i giardini verticali esistenti che quelli nuovi per mostrarli a quanti vogliono costruire un loro proprio giardino o per quelli che amano la natura e vogliono camminare per la città.
Per ulteriori informazioni visita klimaan.be.", - "layers": { - "0": { - "description": "Giardini verticali", - "name": "Giardini verticali", - "presets": { - "0": { - "description": "Aggiungi un giardino verticale", - "title": "giardino verticale" - } + "overrideAll": { + "tagRenderings+": { + "0": { + "mappings": { + "0": { + "then": "Questa è una strada ciclabile (e ha un limite di velocità massima di 30 km/h)" + }, + "1": { + "then": "Questa è una strada ciclabile" + }, + "2": { + "then": "Diverrà tra poco una strada ciclabile" + }, + "3": { + "then": "Questa strada non è una strada ciclabile" + } + }, + "question": "È {name} una strada ciclabile?" + }, + "1": { + "question": "Questa strada diventerà una strada ciclabile quando?", + "render": "Questa strada diventerà una strada ciclabile dal {cyclestreet:start_date}" + } + } }, - "tagRenderings": { - "facadegardens-description": { - "question": "Altre informazioni per descrivere il giardino (se necessarie e non riportate qui sopra)", - "render": "Maggiori dettagli: {description}" - }, - "facadegardens-direction": { - "question": "Com’è orientato questo giardino?", - "render": "Orientamento: {direction} (0 per il Nord e 90 per l’Est)" - }, - "facadegardens-edible": { - "mappings": { - "0": { - "then": "Ci sono piante commestibili" - }, - "1": { - "then": "Non ci sono piante commestibili" - } - }, - "question": "Ci sono piante commestibili?" - }, - "facadegardens-plants": { - "mappings": { - "0": { - "then": "Ci sono viti" - }, - "1": { - "then": "Ci sono piante da fiore" - }, - "2": { - "then": "Ci sono arbusti" - }, - "3": { - "then": "Ci sono piante tappezzanti" - } - }, - "question": "Che tipi di piante sono presenti qui?" - }, - "facadegardens-rainbarrel": { - "mappings": { - "0": { - "then": "C'è un contenitore per raccogliere la pioggia" - }, - "1": { - "then": "Non c'è un contenitore per raccogliere la pioggia" - } - }, - "question": "È stata installata una riserva d’acqua per il giardino?" - }, - "facadegardens-start_date": { - "question": "Quando è stato realizzato il giardino? (è sufficiente l'anno)", - "render": "Data di realizzazione del giardino: {start_date}" - }, - "facadegardens-sunshine": { - "mappings": { - "0": { - "then": "Il giardino è completamente illuminato dal sole" - }, - "1": { - "then": "Il giardino è parzialmente in ombra" - }, - "2": { - "then": "Il giardino è in ombra" - } - }, - "question": "Il giardino è al sole o in ombra?" - } - }, - "title": { - "render": "Giardino verticale" - } - } + "shortDescription": "Una cartina per le strade ciclabili", + "title": "Strade ciclabili" }, - "shortDescription": "Questa mappa mostra i giardini verticali, con foto e informazioni utili sulla loro orientazione, sull'illuminazione solare e sui tipi di piante.", - "title": "Giardini verticali" - }, - "food": { - "title": "Ristoranti e fast food" - }, - "fritures": { - "layers": { - "0": { - "override": { - "name": "Friggitoria" + "cyclofix": { + "description": "Questa mappa offre a chi va in bici una soluzione semplice per trovare tutte le infrastrutture di cui ha bisogno.

Puoi tracciare la tua posizione esatta (solo su mobile) e selezionare i livelli che ti interessano nell'angolo in basso a sinistra. Puoi anche usare questo strumento per aggiungere o modificare punti di interesse alla mappa e aggiungere nuove informazioni rispendendo alle domande.

Tutte le modifiche che apporterai saranno automaticamente salvate nel database mondiale di OpenStreetMap e potranno essere liberamente riutilizzate da tutti e tutte.

Per maggiori informazioni sul progetto ciclofix, visita cyclofix.osm.be.", + "title": "Cyclofix - una mappa libera per chi va in bici" + }, + "drinking_water": { + "description": "Questa mappa mostra tutti i luoghi in cui è disponibile acqua potabile ed è possibile aggiungerne di nuovi", + "title": "Acqua potabile" + }, + "etymology": { + "description": "Su questa cartina sono visibili i nomi a cui sono riferiti gli oggetti. Le strade, gli edifici, etc. provengono da OpenStreetMap che è a sua volta collegata a Wikidata. Nel popup, se esiste, verrà mostrato l’articolo Wikipedia o l'elemento Wikidata a cui si riferisce il nome di quell’oggetto. Se l’oggetto stesso ha una pagina Wikpedia, anch’essa verrà mostrata.

Anche tu puoi contribuire!Ingrandisci abbastanza e tutte le strade appariranno. Puoi cliccare su una e apparirà un popup con la ricerca Wikidata. Con pochi clic puoi aggiungere un collegamento etimologico. Tieni presente che per farlo, hai bisogno di un account gratuito su OpenStreetMap.", + "layers": { + "1": { + "override": { + "=name": "Strade senza informazioni etimologiche" + } + }, + "2": { + "override": { + "=name": "Parchi e foreste senza informazioni etimologiche" + } + } + }, + "shortDescription": "Qual è l’origine di un toponimo?", + "title": "Apri Carta Etimologica" + }, + "facadegardens": { + "description": "I giardini veritcali e gli alberi in città non solo portano pace e tranquillità ma creano anche un ambiente più bello, aumentano la biodiversità, rendono il clima più fresco e migliorano la qualità dell’aria.
Klimaan VZW e Mechelen Klimaatneutraal vogliono mappare sia i giardini verticali esistenti che quelli nuovi per mostrarli a quanti vogliono costruire un loro proprio giardino o per quelli che amano la natura e vogliono camminare per la città.
Per ulteriori informazioni visita klimaan.be.", + "layers": { + "0": { + "description": "Giardini verticali", + "name": "Giardini verticali", + "presets": { + "0": { + "description": "Aggiungi un giardino verticale", + "title": "giardino verticale" + } + }, + "tagRenderings": { + "facadegardens-description": { + "question": "Altre informazioni per descrivere il giardino (se necessarie e non riportate qui sopra)", + "render": "Maggiori dettagli: {description}" + }, + "facadegardens-direction": { + "question": "Com’è orientato questo giardino?", + "render": "Orientamento: {direction} (0 per il Nord e 90 per l’Est)" + }, + "facadegardens-edible": { + "mappings": { + "0": { + "then": "Ci sono piante commestibili" + }, + "1": { + "then": "Non ci sono piante commestibili" + } + }, + "question": "Ci sono piante commestibili?" + }, + "facadegardens-plants": { + "mappings": { + "0": { + "then": "Ci sono viti" + }, + "1": { + "then": "Ci sono piante da fiore" + }, + "2": { + "then": "Ci sono arbusti" + }, + "3": { + "then": "Ci sono piante tappezzanti" + } + }, + "question": "Che tipi di piante sono presenti qui?" + }, + "facadegardens-rainbarrel": { + "mappings": { + "0": { + "then": "C'è un contenitore per raccogliere la pioggia" + }, + "1": { + "then": "Non c'è un contenitore per raccogliere la pioggia" + } + }, + "question": "È stata installata una riserva d’acqua per il giardino?" + }, + "facadegardens-start_date": { + "question": "Quando è stato realizzato il giardino? (è sufficiente l'anno)", + "render": "Data di realizzazione del giardino: {start_date}" + }, + "facadegardens-sunshine": { + "mappings": { + "0": { + "then": "Il giardino è completamente illuminato dal sole" + }, + "1": { + "then": "Il giardino è parzialmente in ombra" + }, + "2": { + "then": "Il giardino è in ombra" + } + }, + "question": "Il giardino è al sole o in ombra?" + } + }, + "title": { + "render": "Giardino verticale" + } + } + }, + "shortDescription": "Questa mappa mostra i giardini verticali, con foto e informazioni utili sulla loro orientazione, sull'illuminazione solare e sui tipi di piante.", + "title": "Giardini verticali" + }, + "food": { + "title": "Ristoranti e fast food" + }, + "fritures": { + "layers": { + "0": { + "override": { + "name": "Friggitoria" + } + } } - } + }, + "ghostbikes": { + "description": "Una bici fantasma è un monumento in ricordo di un ciclista che è morto in un incidente stradale, che ha la forma di un una bicicletta bianca installata in maniera permanente ne luogo dell’incidente.

In questa cartina, è possibile vedere tutte le bici fantasma che sono state aggiunte su OpenStreetMap. Ne manca una? Chiunque può aggiungere o migliorare le informazioni qui presenti (è solo richiesto un account gratuito su OpenStreetMap).", + "title": "Bici fantasma" + }, + "hackerspaces": { + "description": "Su questa cartina è possibile vedere gli hackerspace, aggiungerne di nuovi o aggiornare le informazioni tutto in maniera pratica", + "shortDescription": "Una cartina degli hackerspace", + "title": "Hackerspace" + }, + "hailhydrant": { + "description": "In questa cartina puoi vedere e aggiornare idranti, stazioni dei pompieri, stazioni delle ambulanze ed estintori del tuo quartiere preferito.\n\nPuoi seguire la tua posizione precisa (solo su cellulare) e selezionare i livelli che ti interessano nell’angolo in basso a sinistra. Puoi anche usare questo strumento per aggiungere o modificare i PDI sulla mappa e fornire ulteriori dettagli rispondendo alle domande.\n\nTutte le modifiche che farai verranno automaticamente salvate nel database globale di OpenStreetMap e potranno essere riutilizzate liberamente da tutti.", + "shortDescription": "Carta che mostra gli idranti, gli estintori, le caserme dei vigili del fuoco e le stazioni delle ambulanze.", + "title": "Idranti, estintori, caserme dei vigili del fuoco e stazioni delle ambulanze." + }, + "maps": { + "description": "In questa carta puoi trovare tutte le mappe conosciute da OpenStreetMap (tipicamente una grossa mappa su di un pannello informativo che mostra l’area, la città o la regione, ad es. una mappa turistica dietro a un manifesto, la mappa di una riserva naturale, la mappa della rete ciclistica regionale, etc.)

Se manca una mappa, puoi aggiungerla facilmente a questa su OpenStreetMap.", + "shortDescription": "Questo tema mostra tutte le mappe (turistiche) conosciute da OpenStreetMap", + "title": "Una cartina delle cartine" + }, + "observation_towers": { + "description": "Torri pubblicamente accessibili per godere della vista", + "shortDescription": "Torri pubblicamente accessibili per godere della vista", + "title": "Torri di osservazione" + }, + "openwindpowermap": { + "description": "Una cartina per la visione e la modifica delle turbine eoliche.", + "layers": { + "0": { + "name": "pala eolica", + "presets": { + "0": { + "title": "pala eolica" + } + }, + "tagRenderings": { + "turbine-diameter": { + "question": "Qual è il diametro (in metri) del rotore di questa pala eolica?", + "render": "Il diametro del rotore di questa pala eolica è di {rotor:diameter} metri." + }, + "turbine-height": { + "question": "Qual è l’altezza (in metri e raggio del rotore incluso) di questa pala eolica?", + "render": "L’altezza totale (raggio del rotore incluso) di questa pala eolica è di {height} metri." + }, + "turbine-operator": { + "question": "Chi gestisce questa pala eolica?", + "render": "Questa pala eolica è gestita da {operator}." + }, + "turbine-output": { + "question": "Quant’è la potenza generata da questa pala eolica? (ad es. 2.3 MW)", + "render": "La potenza generata da questa pala eolica è {generator:output:electricity}." + }, + "turbine-start-date": { + "question": "Quando è entrata in funzione questa pala eolica?", + "render": "Questa pala eolica è entrata in funzione in data {start_date}." + } + }, + "title": { + "mappings": { + "0": { + "then": "{name}" + } + }, + "render": "pala eolica" + }, + "units": { + "0": { + "applicableUnits": { + "0": { + "human": " megawatt" + }, + "1": { + "human": " kilowatt" + }, + "2": { + "human": " watt" + }, + "3": { + "human": " gigawatt" + } + } + }, + "1": { + "applicableUnits": { + "0": { + "human": " metri" + } + } + } + } + } + }, + "title": "OpenWindPowerMap" + }, + "parkings": { + "description": "Questa cartina mostra diversi posti dove parcheggiare", + "shortDescription": "Questa cartina mostra diversi posti dove parcheggiare", + "title": "Parcheggio" + }, + "personal": { + "description": "Crea un tema personale basato sui livelli disponibili per tutti i temi. Per mostrare dei dati, apri selezione livello", + "title": "Tema personalizzato" + }, + "playgrounds": { + "description": "In questa cartina vengono mostrati i parchi giochi a cui è possibile aggiungere dettagli", + "shortDescription": "Una cartina dei parchi giochi", + "title": "Parchi giochi" + }, + "postboxes": { + "description": "In questa cartina puoi veder e modificare gli uffici postali e le buche delle lettere. Puoi usare questa cartina per trovare dove imbucare la tua prossima cartolina! :)
Hai trovato un errore o una buca delle lettere mancante? Puoi modificare questa cartina con un account gratuito su OpenStreetMap. ", + "shortDescription": "Una cartina che mostra le buche delle lettere e gli uffici postali", + "title": "Buche delle lettere e uffici postali" + }, + "shops": { + "description": "In questa cartina è possibile aggiungere informazioni di base di un negozio, orari di apertura e numeri di telefono", + "shortDescription": "Una cartina modificabile con informazioni di base dei negozi", + "title": "Mappa dei negozi" + }, + "sport_pitches": { + "description": "Una campo sportivo è un’area dove vengono praticati gli sport", + "shortDescription": "Una cartina che mostra i campi sportivi", + "title": "Campi sportivi" + }, + "surveillance": { + "description": "In questa cartina puoi trovare le telecamera di sorveglianza.", + "shortDescription": "Telecamere e altri di mezzi di sorveglianza", + "title": "Sorveglianza sotto controllo" + }, + "toilets": { + "description": "Una cartina dei servizi igienici pubblici", + "title": "Mappa libera delle toilet" + }, + "trees": { + "description": "Mappa tutti gli alberi!", + "shortDescription": "Mappa tutti gli alberi", + "title": "Alberi" + }, + "waste_basket": { + "description": "In questa cartina troverai i cestini dei rifiuti nei tuoi paraggi. Se manca un cestino, puoi inserirlo tu stesso", + "shortDescription": "Una cartina dei cestini dei rifiuti", + "title": "Cestino dei rifiuti" } - }, - "ghostbikes": { - "description": "Una bici fantasma è un monumento in ricordo di un ciclista che è morto in un incidente stradale, che ha la forma di un una bicicletta bianca installata in maniera permanente ne luogo dell’incidente.

In questa cartina, è possibile vedere tutte le bici fantasma che sono state aggiunte su OpenStreetMap. Ne manca una? Chiunque può aggiungere o migliorare le informazioni qui presenti (è solo richiesto un account gratuito su OpenStreetMap).", - "title": "Bici fantasma" - }, - "hackerspaces": { - "description": "Su questa cartina è possibile vedere gli hackerspace, aggiungerne di nuovi o aggiornare le informazioni tutto in maniera pratica", - "shortDescription": "Una cartina degli hackerspace", - "title": "Hackerspace" - }, - "hailhydrant": { - "description": "In questa cartina puoi vedere e aggiornare idranti, stazioni dei pompieri, stazioni delle ambulanze ed estintori del tuo quartiere preferito.\n\nPuoi seguire la tua posizione precisa (solo su cellulare) e selezionare i livelli che ti interessano nell’angolo in basso a sinistra. Puoi anche usare questo strumento per aggiungere o modificare i PDI sulla mappa e fornire ulteriori dettagli rispondendo alle domande.\n\nTutte le modifiche che farai verranno automaticamente salvate nel database globale di OpenStreetMap e potranno essere riutilizzate liberamente da tutti.", - "layers": { - "0": { - "description": "Livello della mappa che mostra gli idranti antincendio.", - "name": "Mappa degli idranti", - "presets": { - "0": { - "description": "Un idrante è un punto di collegamento dove i pompieri possono estrarre acqua. Potrebbe trovarsi sottoterra.", - "title": "Idrante antincendio" - } - }, - "tagRenderings": { - "hydrant-color": { - "mappings": { - "0": { - "then": "Il colore dell’idrante è sconosciuto." - }, - "1": { - "then": "Il colore dell’idrante è giallo." - }, - "2": { - "then": "L'idrante è rosso." - } - }, - "question": "Qual è il colore dell’idrante?", - "render": "Il colore dell’idrante è {colour}" - }, - "hydrant-state": { - "mappings": { - "0": { - "then": "L’idrante è (parzialmente o completamente) funzionante." - }, - "1": { - "then": "L’idrante è fuori servizio." - }, - "2": { - "then": "L’idrante è stato rimosso." - } - }, - "question": "Aggiorna lo stato di funzionamento dell’idrante." - }, - "hydrant-type": { - "mappings": { - "0": { - "then": "Il tipo di idrante è sconosciuto." - }, - "1": { - "then": " Soprasuolo." - }, - "2": { - "then": " Tubo." - }, - "3": { - "then": " A muro." - }, - "4": { - "then": " Sottosuolo." - } - }, - "question": "Di che tipo è questo idrante?", - "render": " Tipo di idrante: {fire_hydrant:type}" - } - }, - "title": { - "render": "Idrante" - } - }, - "1": { - "description": "Livello della mappa che mostra gli idranti antincendio.", - "name": "Cartina degli estintori.", - "presets": { - "0": { - "description": "Un estintore è un dispositivo portatile di piccole dimensioni usato per spegnere un incendio", - "title": "Estintore" - } - }, - "tagRenderings": { - "extinguisher-location": { - "mappings": { - "0": { - "then": "Si trova all’interno." - }, - "1": { - "then": "Si trova all’esterno." - } - }, - "question": "Dove è posizionato?", - "render": "Posizione: {location}" - } - }, - "title": { - "render": "Estintori" - } - }, - "2": { - "description": "Livello che mostra le caserme dei vigili del fuoco.", - "name": "Mappa delle caserme dei vigili del fuoco", - "presets": { - "0": { - "description": "Una caserma dei pompieri è un luogo dove si trovano i mezzi antincendio e i pompieri tra una missione e l’altra.", - "title": "Caserma dei vigili del fuoco" - } - }, - "tagRenderings": { - "station-agency": { - "mappings": { - "0": { - "then": "Servizio antincendio governativo" - } - }, - "question": "Quale agenzia gestisce questa stazione?", - "render": "Questa stazione è gestita da {operator}." - }, - "station-name": { - "question": "Come si chiama questa caserma dei vigili del fuoco?", - "render": "Questa caserma si chiama {name}." - }, - "station-operator": { - "mappings": { - "0": { - "then": "Questa stazione è gestita dal governo." - }, - "1": { - "then": "Questa stazione è gestita dalla comunità oppure un’associazione informale." - }, - "2": { - "then": "Questa stazione è gestita da un gruppo di volontari ufficiale." - }, - "3": { - "then": "Questa stazione è gestita da privati." - } - }, - "question": "Com’è classificato il gestore di questa stazione?", - "render": "Il gestore è un ente {operator:type}." - }, - "station-place": { - "question": "In che località si trova la stazione? (ad es. quartiere, paese o città)", - "render": "La stazione si trova a {addr:place}." - }, - "station-street": { - "question": " Qual è il nome della via in cui si trova la caserma?", - "render": "La stazione si trova in una strada chiamata {addr:street}." - } - }, - "title": { - "render": "Caserma dei vigili del fuoco" - } - }, - "3": { - "description": "La stazione delle ambulanze è un’area per lo stoccaggio delle ambulanze, dell’equipaggiamento medico, dei dispositivi di protezione individuale e di altre forniture medicali.", - "name": "Carta delle stazioni delle ambulanze", - "presets": { - "0": { - "description": "Aggiungi una stazione delle ambulanza alla mappa", - "title": "Stazione delle ambulanze" - } - }, - "tagRenderings": { - "ambulance-agency": { - "question": "Quale agenzia gestisce questa stazione?", - "render": "Questa stazione è gestita da {operator}." - }, - "ambulance-name": { - "question": "Qual è il nome di questa stazione delle ambulanze?", - "render": "Questa stazione è chiamata {name}." - }, - "ambulance-operator-type": { - "mappings": { - "0": { - "then": "La stazione è gestita dal governo." - }, - "1": { - "then": "La stazione è gestita dalla comunità o un’organizzazione non ufficiale." - }, - "2": { - "then": "La stazione è gestita da un gruppo ufficiale di volontari." - }, - "3": { - "then": "La stazione è gestita da un privato." - } - }, - "question": "Com’è classificato il gestore della stazione?", - "render": "L’operatore è un ente {operator:type}." - }, - "ambulance-place": { - "question": "Dove si trova la stazione? (ad es. quartiere, paese o città)", - "render": "La stazione si trova a {addr:place}." - }, - "ambulance-street": { - "question": " Come si chiama la strada in cui si trova questa stazione?", - "render": "Questa stazione si trova in {addr:street}." - } - }, - "title": { - "render": "Stazione delle ambulanze" - } - } - }, - "shortDescription": "Carta che mostra gli idranti, gli estintori, le caserme dei vigili del fuoco e le stazioni delle ambulanze.", - "title": "Idranti, estintori, caserme dei vigili del fuoco e stazioni delle ambulanze." - }, - "maps": { - "description": "In questa carta puoi trovare tutte le mappe conosciute da OpenStreetMap (tipicamente una grossa mappa su di un pannello informativo che mostra l’area, la città o la regione, ad es. una mappa turistica dietro a un manifesto, la mappa di una riserva naturale, la mappa della rete ciclistica regionale, etc.)

Se manca una mappa, puoi aggiungerla facilmente a questa su OpenStreetMap.", - "shortDescription": "Questo tema mostra tutte le mappe (turistiche) conosciute da OpenStreetMap", - "title": "Una cartina delle cartine" - }, - "natuurpunt": { - "description": "In questa cartina è possibile trovare tutte le riserve naturali offerte da Natuupunt. ", - "shortDescription": "Questa cartina mostra le riserve naturali di Natuurpunt", - "title": "Riserve naturali" - }, - "observation_towers": { - "description": "Torri pubblicamente accessibili per godere della vista", - "shortDescription": "Torri pubblicamente accessibili per godere della vista", - "title": "Torri di osservazione" - }, - "openwindpowermap": { - "description": "Una cartina per la visione e la modifica delle turbine eoliche.", - "layers": { - "0": { - "name": "pala eolica", - "presets": { - "0": { - "title": "pala eolica" - } - }, - "tagRenderings": { - "turbine-diameter": { - "question": "Qual è il diametro (in metri) del rotore di questa pala eolica?", - "render": "Il diametro del rotore di questa pala eolica è di {rotor:diameter} metri." - }, - "turbine-height": { - "question": "Qual è l’altezza (in metri e raggio del rotore incluso) di questa pala eolica?", - "render": "L’altezza totale (raggio del rotore incluso) di questa pala eolica è di {height} metri." - }, - "turbine-operator": { - "question": "Chi gestisce questa pala eolica?", - "render": "Questa pala eolica è gestita da {operator}." - }, - "turbine-output": { - "question": "Quant’è la potenza generata da questa pala eolica? (ad es. 2.3 MW)", - "render": "La potenza generata da questa pala eolica è {generator:output:electricity}." - }, - "turbine-start-date": { - "question": "Quando è entrata in funzione questa pala eolica?", - "render": "Questa pala eolica è entrata in funzione in data {start_date}." - } - }, - "title": { - "mappings": { - "0": { - "then": "{name}" - } - }, - "render": "pala eolica" - }, - "units": { - "0": { - "applicableUnits": { - "0": { - "human": " megawatt" - }, - "1": { - "human": " kilowatt" - }, - "2": { - "human": " watt" - }, - "3": { - "human": " gigawatt" - } - } - }, - "1": { - "applicableUnits": { - "0": { - "human": " metri" - } - } - } - } - } - }, - "title": "OpenWindPowerMap" - }, - "parkings": { - "description": "Questa cartina mostra diversi posti dove parcheggiare", - "shortDescription": "Questa cartina mostra diversi posti dove parcheggiare", - "title": "Parcheggio" - }, - "personal": { - "description": "Crea un tema personale basato sui livelli disponibili per tutti i temi. Per mostrare dei dati, apri selezione livello", - "title": "Tema personalizzato" - }, - "playgrounds": { - "description": "In questa cartina vengono mostrati i parchi giochi a cui è possibile aggiungere dettagli", - "shortDescription": "Una cartina dei parchi giochi", - "title": "Parchi giochi" - }, - "postboxes": { - "description": "In questa cartina puoi veder e modificare gli uffici postali e le buche delle lettere. Puoi usare questa cartina per trovare dove imbucare la tua prossima cartolina! :)
Hai trovato un errore o una buca delle lettere mancante? Puoi modificare questa cartina con un account gratuito su OpenStreetMap. ", - "shortDescription": "Una cartina che mostra le buche delle lettere e gli uffici postali", - "title": "Buche delle lettere e uffici postali" - }, - "shops": { - "description": "In questa cartina è possibile aggiungere informazioni di base di un negozio, orari di apertura e numeri di telefono", - "shortDescription": "Una cartina modificabile con informazioni di base dei negozi", - "title": "Mappa dei negozi" - }, - "sport_pitches": { - "description": "Una campo sportivo è un’area dove vengono praticati gli sport", - "shortDescription": "Una cartina che mostra i campi sportivi", - "title": "Campi sportivi" - }, - "surveillance": { - "description": "In questa cartina puoi trovare le telecamera di sorveglianza.", - "shortDescription": "Telecamere e altri di mezzi di sorveglianza", - "title": "Sorveglianza sotto controllo" - }, - "toilets": { - "description": "Una cartina dei servizi igienici pubblici", - "title": "Mappa libera delle toilet" - }, - "trees": { - "description": "Mappa tutti gli alberi!", - "shortDescription": "Mappa tutti gli alberi", - "title": "Alberi" - }, - "uk_addresses": { - "description": "Contribuisci a OpenStreetMap inserendo le informazioni sull’indirizzo", - "shortDescription": "Aiuta a costruire un dataset libero per gli indirizzi nel Regno Unito", - "title": "Indirizzi UK" - }, - "waste_basket": { - "description": "In questa cartina troverai i cestini dei rifiuti nei tuoi paraggi. Se manca un cestino, puoi inserirlo tu stesso", - "shortDescription": "Una cartina dei cestini dei rifiuti", - "title": "Cestino dei rifiuti" - } } \ No newline at end of file diff --git a/langs/themes/ja.json b/langs/themes/ja.json index b4c8afeb57..3af65c8871 100644 --- a/langs/themes/ja.json +++ b/langs/themes/ja.json @@ -1,872 +1,674 @@ { - "aed": { - "description": "この地図では近くにある除細動器(AED)を見つけてマークします", - "title": "オープンAEDマップ" - }, - "artwork": { - "description": "オープン アートワーク マップへようこそ。世界中の銅像や胸像、壁の落書きなどのアートワークの地図です", - "title": "オープン アートワーク マップ" - }, - "benches": { - "description": "このマップには、OpenStreetMapに記録されているすべてのベンチが表示されます。個々のベンチ、および公共交通機関の停留所または避難場所に属するベンチです。OpenStreetMapアカウントを使用すると、新しいベンチをマップしたり、既存のベンチの詳細を編集したりできます。", - "shortDescription": "ベンチの地図", - "title": "ベンチ" - }, - "bicyclelib": { - "description": "自転車ライブラリは、少額の年間料金で自転車を借りられる場所です。注目すべきユースケースとしては、子供向けの自転車ライブラリで、子どもの成長にあわせて大きな自転車へ借り替えられます", - "title": "自転車ライブラリ" - }, - "bookcases": { - "description": "公共の本棚とは、本が保管されている小さな街角のキャビネット、箱、古い電話のトランク、その他の物のことです。誰でも本を置いたり持ったりすることができます。このマップは、すべての公共の本棚を収集することを目的としています。近くで新しい本棚を見つけることができ、無料のOpenStreetMapアカウントを使えば、お気に入りの本棚を簡単に追加できます。", - "title": "オープン本棚マップ" - }, - "campersite": { - "description": "このWebサイトでは、すべてのキャンピングカーの公式停車場所と、汚水を捨てることができる場所を収集します。提供されるサービスとコストに関する詳細を追加できます。写真とレビューを追加します。これはウェブサイトとウェブアプリです。データはOpenStreetMapに保存されるので、永遠に無料で、どんなアプリからでも再利用できます。", - "layers": { - "0": { - "description": "キャンプサイト", - "name": "キャンプサイト", - "presets": { - "0": { - "description": "新しい公式キャンプサイトを追加します。お客様のキャンピングカーで一泊する指定の場所です。本物のキャンプのように見えるかもしれないし、単なる駐車場のように見えるかもしれない。それらは全く署名されていないかもしれませんが、自治体の決定で定義されているだけです。夜を過ごすことが予想されないキャンパー向けの通常の駐車場は、キャンプサイトではない ", - "title": "キャンプサイト" - } - }, - "tagRenderings": { - "caravansites-capacity": { - "question": "ここには何人のキャンパーが泊まれますか?(許可された車両の数や駐車スペースが明らかでない場合は省略)", - "render": "{capacity} 人が同時に使用できます" - }, - "caravansites-charge": { - "question": "ここはいくらかかりますか?", - "render": "この場所は{charge} が必要" - }, - "caravansites-description": { - "question": "この場所の一般的な説明を追加しますか?(前に問い合わせた情報や上記の情報を繰り返し入力しないでください。客観的な意見はレビューに反映されます)", - "render": "この場所の詳細:{description}" - }, - "caravansites-fee": { - "mappings": { - "0": { - "then": "使用料を支払う必要がある" - }, - "1": { - "then": "無料で使用可能" - } - }, - "question": "ここは有料ですか?" - }, - "caravansites-internet": { - "mappings": { - "0": { - "then": "インターネットアクセスがある" - }, - "1": { - "then": "インターネットアクセスがある" - }, - "2": { - "then": "インターネットにアクセスできない" - } - }, - "question": "この場所はインターネットにアクセスできますか?" - }, - "caravansites-internet-fee": { - "mappings": { - "0": { - "then": "インターネット接続には別途料金が必要です" - }, - "1": { - "then": "インターネット接続に追加料金を支払う必要はありません" - } - }, - "question": "インターネット接続にお金はかかりますか?" - }, - "caravansites-long-term": { - "mappings": { - "0": { - "then": "はい、長期レンタルのスポットもあり、日常的に滞在することもできます" - }, - "1": { - "then": "いいえ、ここには長期滞在者はいません" - }, - "2": { - "then": "長期契約をしている場合のみ宿泊可能です(これを選択すると、この場所はこの地図から消えます)" - } - }, - "question": "ここには長期レンタルのスポットがありますか?" - }, - "caravansites-name": { - "question": "ここは何というところですか?", - "render": "この場所は {name} と呼ばれています" - }, - "caravansites-sanitary-dump": { - "mappings": { - "0": { - "then": "この場所には衛生的なゴミ捨て場がある" - }, - "1": { - "then": "この場所には衛生的なゴミ捨て場がない" - } - }, - "question": "この場所に衛生的なゴミ捨て場はありますか?" - }, - "caravansites-toilets": { - "mappings": { - "0": { - "then": "ここにはトイレがある" - }, - "1": { - "then": "ここにはトイレがない" - } - }, - "question": "ここにトイレはありますか?" - }, - "caravansites-website": { - "question": "ここにはウェブサイトがありますか?", - "render": "公式Webサイト: {website}" - } - }, - "title": { - "mappings": { - "0": { - "then": "無名のキャンプサイト" - } - }, - "render": "キャンプサイト {name}" - } - }, - "1": { - "description": "衛生ゴミ捨て場", - "name": "衛生ゴミ捨て場", - "presets": { - "0": { - "description": "新しい衛生ゴミ捨て場を追加します。ここは、キャンピングカーの運転手が排水や携帯トイレの廃棄物を捨てることができる場所です。飲料水や電気もあることが多いです。", - "title": "衛生ゴミ捨て場" - } - }, - "tagRenderings": { - "dumpstations-access": { - "mappings": { - "0": { - "then": "これを使用するには、ネットワークキー/コードが必要です" - }, - "1": { - "then": "この場所を使用するには、キャンプ/キャンプサイトのお客様である必要があります" - }, - "2": { - "then": "誰でもこのゴミ捨て場を使用できます" - }, - "3": { - "then": "誰でもこのゴミ捨て場を使用できます" - } - }, - "question": "このゴミ捨て場は誰が使えるんですか?" - }, - "dumpstations-charge": { - "question": "ここはいくらかかりますか?", - "render": "この場所は{charge} が必要" - }, - "dumpstations-chemical-waste": { - "mappings": { - "0": { - "then": "携帯トイレのゴミはここで処分できます" - }, - "1": { - "then": "ここでは携帯トイレの廃棄物を処分することはできません" - } - }, - "question": "携帯トイレのゴミはこちらで処分できますか?" - }, - "dumpstations-fee": { - "mappings": { - "0": { - "then": "使用料を支払う必要がある" - }, - "1": { - "then": "無料で使用可能" - } - }, - "question": "ここは有料ですか?" - }, - "dumpstations-grey-water": { - "mappings": { - "0": { - "then": "ここで汚水(雑排水)を捨てることができます" - }, - "1": { - "then": "ここでは汚水(雑排水)を捨てることはできない" - } - }, - "question": "汚水(雑排水)はこちらで処分できますか?" - }, - "dumpstations-network": { - "question": "ここは何のネットワークの一部ですか?(なければスキップ)", - "render": "このステーションはネットワーク{network}の一部です" - }, - "dumpstations-waterpoint": { - "mappings": { - "0": { - "then": "この場所には給水所がある" - }, - "1": { - "then": "この場所には給水所がない" - } - }, - "question": "この場所には給水所がありますか?" - } - }, - "title": { - "mappings": { - "0": { - "then": "ゴミ捨て場" - } - }, - "render": "ゴミ捨て場 {name}" - } - } + "aed": { + "description": "この地図では近くにある除細動器(AED)を見つけてマークします", + "title": "オープンAEDマップ" }, - "overrideAll": { - "tagRenderings+": { - "0": { - "question": "この店は誰が経営しているんですか?", - "render": "この場所は{operator}によって運営されます" - }, - "1": { - "mappings": { + "artwork": { + "description": "オープン アートワーク マップへようこそ。世界中の銅像や胸像、壁の落書きなどのアートワークの地図です", + "title": "オープン アートワーク マップ" + }, + "benches": { + "description": "このマップには、OpenStreetMapに記録されているすべてのベンチが表示されます。個々のベンチ、および公共交通機関の停留所または避難場所に属するベンチです。OpenStreetMapアカウントを使用すると、新しいベンチをマップしたり、既存のベンチの詳細を編集したりできます。", + "shortDescription": "ベンチの地図", + "title": "ベンチ" + }, + "bicyclelib": { + "description": "自転車ライブラリは、少額の年間料金で自転車を借りられる場所です。注目すべきユースケースとしては、子供向けの自転車ライブラリで、子どもの成長にあわせて大きな自転車へ借り替えられます", + "title": "自転車ライブラリ" + }, + "bookcases": { + "description": "公共の本棚とは、本が保管されている小さな街角のキャビネット、箱、古い電話のトランク、その他の物のことです。誰でも本を置いたり持ったりすることができます。このマップは、すべての公共の本棚を収集することを目的としています。近くで新しい本棚を見つけることができ、無料のOpenStreetMapアカウントを使えば、お気に入りの本棚を簡単に追加できます。", + "title": "オープン本棚マップ" + }, + "campersite": { + "description": "このWebサイトでは、すべてのキャンピングカーの公式停車場所と、汚水を捨てることができる場所を収集します。提供されるサービスとコストに関する詳細を追加できます。写真とレビューを追加します。これはウェブサイトとウェブアプリです。データはOpenStreetMapに保存されるので、永遠に無料で、どんなアプリからでも再利用できます。", + "layers": { "0": { - "then": "この場所には電源があります" + "description": "キャンプサイト", + "name": "キャンプサイト", + "presets": { + "0": { + "description": "新しい公式キャンプサイトを追加します。お客様のキャンピングカーで一泊する指定の場所です。本物のキャンプのように見えるかもしれないし、単なる駐車場のように見えるかもしれない。それらは全く署名されていないかもしれませんが、自治体の決定で定義されているだけです。夜を過ごすことが予想されないキャンパー向けの通常の駐車場は、キャンプサイトではない ", + "title": "キャンプサイト" + } + }, + "tagRenderings": { + "caravansites-capacity": { + "question": "ここには何人のキャンパーが泊まれますか?(許可された車両の数や駐車スペースが明らかでない場合は省略)", + "render": "{capacity} 人が同時に使用できます" + }, + "caravansites-charge": { + "question": "ここはいくらかかりますか?", + "render": "この場所は{charge} が必要" + }, + "caravansites-description": { + "question": "この場所の一般的な説明を追加しますか?(前に問い合わせた情報や上記の情報を繰り返し入力しないでください。客観的な意見はレビューに反映されます)", + "render": "この場所の詳細:{description}" + }, + "caravansites-fee": { + "mappings": { + "0": { + "then": "使用料を支払う必要がある" + }, + "1": { + "then": "無料で使用可能" + } + }, + "question": "ここは有料ですか?" + }, + "caravansites-internet": { + "mappings": { + "0": { + "then": "インターネットアクセスがある" + }, + "1": { + "then": "インターネットアクセスがある" + }, + "2": { + "then": "インターネットにアクセスできない" + } + }, + "question": "この場所はインターネットにアクセスできますか?" + }, + "caravansites-internet-fee": { + "mappings": { + "0": { + "then": "インターネット接続には別途料金が必要です" + }, + "1": { + "then": "インターネット接続に追加料金を支払う必要はありません" + } + }, + "question": "インターネット接続にお金はかかりますか?" + }, + "caravansites-long-term": { + "mappings": { + "0": { + "then": "はい、長期レンタルのスポットもあり、日常的に滞在することもできます" + }, + "1": { + "then": "いいえ、ここには長期滞在者はいません" + }, + "2": { + "then": "長期契約をしている場合のみ宿泊可能です(これを選択すると、この場所はこの地図から消えます)" + } + }, + "question": "ここには長期レンタルのスポットがありますか?" + }, + "caravansites-name": { + "question": "ここは何というところですか?", + "render": "この場所は {name} と呼ばれています" + }, + "caravansites-sanitary-dump": { + "mappings": { + "0": { + "then": "この場所には衛生的なゴミ捨て場がある" + }, + "1": { + "then": "この場所には衛生的なゴミ捨て場がない" + } + }, + "question": "この場所に衛生的なゴミ捨て場はありますか?" + }, + "caravansites-toilets": { + "mappings": { + "0": { + "then": "ここにはトイレがある" + }, + "1": { + "then": "ここにはトイレがない" + } + }, + "question": "ここにトイレはありますか?" + }, + "caravansites-website": { + "question": "ここにはウェブサイトがありますか?", + "render": "公式Webサイト: {website}" + } + }, + "title": { + "mappings": { + "0": { + "then": "無名のキャンプサイト" + } + }, + "render": "キャンプサイト {name}" + } }, "1": { - "then": "この場所には電源がありません" + "description": "衛生ゴミ捨て場", + "name": "衛生ゴミ捨て場", + "presets": { + "0": { + "description": "新しい衛生ゴミ捨て場を追加します。ここは、キャンピングカーの運転手が排水や携帯トイレの廃棄物を捨てることができる場所です。飲料水や電気もあることが多いです。", + "title": "衛生ゴミ捨て場" + } + }, + "tagRenderings": { + "dumpstations-access": { + "mappings": { + "0": { + "then": "これを使用するには、ネットワークキー/コードが必要です" + }, + "1": { + "then": "この場所を使用するには、キャンプ/キャンプサイトのお客様である必要があります" + }, + "2": { + "then": "誰でもこのゴミ捨て場を使用できます" + }, + "3": { + "then": "誰でもこのゴミ捨て場を使用できます" + } + }, + "question": "このゴミ捨て場は誰が使えるんですか?" + }, + "dumpstations-charge": { + "question": "ここはいくらかかりますか?", + "render": "この場所は{charge} が必要" + }, + "dumpstations-chemical-waste": { + "mappings": { + "0": { + "then": "携帯トイレのゴミはここで処分できます" + }, + "1": { + "then": "ここでは携帯トイレの廃棄物を処分することはできません" + } + }, + "question": "携帯トイレのゴミはこちらで処分できますか?" + }, + "dumpstations-fee": { + "mappings": { + "0": { + "then": "使用料を支払う必要がある" + }, + "1": { + "then": "無料で使用可能" + } + }, + "question": "ここは有料ですか?" + }, + "dumpstations-grey-water": { + "mappings": { + "0": { + "then": "ここで汚水(雑排水)を捨てることができます" + }, + "1": { + "then": "ここでは汚水(雑排水)を捨てることはできない" + } + }, + "question": "汚水(雑排水)はこちらで処分できますか?" + }, + "dumpstations-network": { + "question": "ここは何のネットワークの一部ですか?(なければスキップ)", + "render": "このステーションはネットワーク{network}の一部です" + }, + "dumpstations-waterpoint": { + "mappings": { + "0": { + "then": "この場所には給水所がある" + }, + "1": { + "then": "この場所には給水所がない" + } + }, + "question": "この場所には給水所がありますか?" + } + }, + "title": { + "mappings": { + "0": { + "then": "ゴミ捨て場" + } + }, + "render": "ゴミ捨て場 {name}" + } } - }, - "question": "この場所に電源はありますか?" - } - } + }, + "overrideAll": { + "tagRenderings+": { + "0": { + "question": "この店は誰が経営しているんですか?", + "render": "この場所は{operator}によって運営されます" + }, + "1": { + "mappings": { + "0": { + "then": "この場所には電源があります" + }, + "1": { + "then": "この場所には電源がありません" + } + }, + "question": "この場所に電源はありますか?" + } + } + }, + "shortDescription": "キャンパーと夜を共にするキャンプサイトを見つける", + "title": "キャンプサイト" }, - "shortDescription": "キャンパーと夜を共にするキャンプサイトを見つける", - "title": "キャンプサイト" - }, - "charging_stations": { - "description": "このオープンマップでは充電ステーションに関する情報を見つけてマークすることができます", - "shortDescription": "充電ステーションの世界地図", - "title": "充電ステーション" - }, - "climbing": { - "description": "この地図には、自然の中のクライミングジム、ボルダリングホール、岩など、さまざまなクライミングの機会があります。", - "descriptionTail": "登山地図はもともと Christian Neumann によって作成されたものです。フィードバックや質問がありましたら、ご連絡ください。

このプロジェクトでは、OpenStreetMapプロジェクトのデータを使用します。

", - "layers": { - "0": { - "description": "クライミングクラブや団体", - "name": "クライミングクラブ", - "presets": { - "0": { - "description": "クライミングクラブ", - "title": "クライミングクラブ" - }, - "1": { - "description": "登山に関わるNGO", - "title": "クライミングNGO" - } - }, - "tagRenderings": { - "climbing_club-name": { - "question": "この登山クラブやNGOの名前は何ですか?", - "render": "{name}" - } - }, - "title": { - "mappings": { - "0": { - "then": "クライミングNGO" - } - }, - "render": "クライミングクラブ" - } - }, - "1": { - "description": "クライミングジム", - "name": "クライミングジム", - "tagRenderings": { - "name": { - "question": "このクライミングジムは何という名前ですか?", - "render": "{name}" - } - }, - "title": { - "mappings": { - "0": { - "then": "クライミングジム{name}" - } - }, - "render": "クライミングジム" - } - }, - "2": { - "name": "登坂ルート", - "tagRenderings": { - "Difficulty": { - "render": "フランス/ベルギーのランク評価システムによると、{climbing:grade:french}の困難度です" - }, - "Length": { - "render": "このルート長は、 {canonical(climbing:length)} メーターです" - }, - "Name": { - "mappings": { - "0": { - "then": "この登坂ルートには名前がありません" - } - }, - "question": "この登坂ルートの名前は何ですか?", - "render": "{name}" - } - }, - "title": { - "mappings": { - "0": { - "then": "登坂ルート{name}" - } - }, - "render": "登坂ルート" - } - }, - "3": { - "description": "登坂教室", - "name": "登坂教室", - "presets": { - "0": { - "description": "登坂教室", - "title": "登坂教室" - } - }, - "tagRenderings": { - "name": { - "mappings": { - "0": { - "then": "この登坂教室には名前がついていない" - } - }, - "question": "この登坂教室の名前は何ですか?", - "render": "{name}" - } - }, - "title": { - "render": "登坂教室" - } - }, - "4": { - "description": "登坂教室?", - "name": "登坂教室?", - "tagRenderings": { - "climbing-opportunity-name": { - "render": "{name}" - }, - "climbing-possible": { - "mappings": { - "0": { - "then": "ここでは登ることができない" - }, - "1": { - "then": "ここでは登ることができる" - }, - "2": { - "then": "ここでは登ることができない" - } - }, - "question": "ここで登坂はできますか?" - } - }, - "title": { - "render": "登坂教室?" - } - } + "charging_stations": { + "description": "このオープンマップでは充電ステーションに関する情報を見つけてマークすることができます", + "shortDescription": "充電ステーションの世界地図", + "title": "充電ステーション" }, - "overrideAll": { - "tagRenderings+": { - "0": { - "question": "もっと情報のある(非公式の)ウェブサイトはありますか(例えば、topos)?" - }, - "4": { - "question": "ルートの(平均)長さはメートル単位でいくつですか?", - "render": "ルートの長さは平均で{canonical(climbing:length)}です" - }, - "5": { - "question": "ここで一番簡単なルートのレベルは、フランスのランク評価システムで何ですか?", - "render": "フランス/ベルギーのランク評価システムでは、最小の難易度は{climbing:grade:french:min}です" - }, - "6": { - "question": "フランスのランク評価によると、ここで一番難しいルートのレベルはどれくらいですか?", - "render": "フランス/ベルギーのランク評価システムでは、最大の難易度は{climbing:grade:french:max}です" - }, - "7": { - "mappings": { + "climbing": { + "description": "この地図には、自然の中のクライミングジム、ボルダリングホール、岩など、さまざまなクライミングの機会があります。", + "descriptionTail": "登山地図はもともと Christian Neumann によって作成されたものです。フィードバックや質問がありましたら、ご連絡ください。

このプロジェクトでは、OpenStreetMapプロジェクトのデータを使用します。

", + "layers": { "0": { - "then": "ボルダリングはここで可能です" + "description": "クライミングクラブや団体", + "name": "クライミングクラブ", + "presets": { + "0": { + "description": "クライミングクラブ", + "title": "クライミングクラブ" + }, + "1": { + "description": "登山に関わるNGO", + "title": "クライミングNGO" + } + }, + "tagRenderings": { + "climbing_club-name": { + "question": "この登山クラブやNGOの名前は何ですか?", + "render": "{name}" + } + }, + "title": { + "mappings": { + "0": { + "then": "クライミングNGO" + } + }, + "render": "クライミングクラブ" + } }, "1": { - "then": "ここではボルダリングはできません" + "description": "クライミングジム", + "name": "クライミングジム", + "tagRenderings": { + "name": { + "question": "このクライミングジムは何という名前ですか?", + "render": "{name}" + } + }, + "title": { + "mappings": { + "0": { + "then": "クライミングジム{name}" + } + }, + "render": "クライミングジム" + } }, "2": { - "then": "ボルダリングは可能ですが、少しのルートしかありません" + "name": "登坂ルート", + "tagRenderings": { + "Difficulty": { + "render": "フランス/ベルギーのランク評価システムによると、{climbing:grade:french}の困難度です" + }, + "Length": { + "render": "このルート長は、 {canonical(climbing:length)} メーターです" + }, + "Name": { + "mappings": { + "0": { + "then": "この登坂ルートには名前がありません" + } + }, + "question": "この登坂ルートの名前は何ですか?", + "render": "{name}" + } + }, + "title": { + "mappings": { + "0": { + "then": "登坂ルート{name}" + } + }, + "render": "登坂ルート" + } }, "3": { - "then": "{climbing:boulder} ボルダールートがある" + "description": "登坂教室", + "name": "登坂教室", + "presets": { + "0": { + "description": "登坂教室", + "title": "登坂教室" + } + }, + "tagRenderings": { + "name": { + "mappings": { + "0": { + "then": "この登坂教室には名前がついていない" + } + }, + "question": "この登坂教室の名前は何ですか?", + "render": "{name}" + } + }, + "title": { + "render": "登坂教室" + } + }, + "4": { + "description": "登坂教室?", + "name": "登坂教室?", + "tagRenderings": { + "climbing-opportunity-name": { + "render": "{name}" + }, + "climbing-possible": { + "mappings": { + "0": { + "then": "ここでは登ることができない" + }, + "1": { + "then": "ここでは登ることができる" + }, + "2": { + "then": "ここでは登ることができない" + } + }, + "question": "ここで登坂はできますか?" + } + }, + "title": { + "render": "登坂教室?" + } } - }, - "question": "ここでボルダリングはできますか?" }, - "8": { - "mappings": { + "overrideAll": { + "tagRenderings+": { + "0": { + "question": "もっと情報のある(非公式の)ウェブサイトはありますか(例えば、topos)?" + }, + "4": { + "question": "ルートの(平均)長さはメートル単位でいくつですか?", + "render": "ルートの長さは平均で{canonical(climbing:length)}です" + }, + "5": { + "question": "ここで一番簡単なルートのレベルは、フランスのランク評価システムで何ですか?", + "render": "フランス/ベルギーのランク評価システムでは、最小の難易度は{climbing:grade:french:min}です" + }, + "6": { + "question": "フランスのランク評価によると、ここで一番難しいルートのレベルはどれくらいですか?", + "render": "フランス/ベルギーのランク評価システムでは、最大の難易度は{climbing:grade:french:max}です" + }, + "7": { + "mappings": { + "0": { + "then": "ボルダリングはここで可能です" + }, + "1": { + "then": "ここではボルダリングはできません" + }, + "2": { + "then": "ボルダリングは可能ですが、少しのルートしかありません" + }, + "3": { + "then": "{climbing:boulder} ボルダールートがある" + } + }, + "question": "ここでボルダリングはできますか?" + }, + "8": { + "mappings": { + "0": { + "then": "ここでToprope登坂ができます" + }, + "1": { + "then": "ここではToprope登坂はできません" + }, + "2": { + "then": "{climbing:toprope} 登坂ルートがある" + } + }, + "question": "ここでtoprope登坂はできますか?" + }, + "9": { + "mappings": { + "0": { + "then": "ここでスポーツクライミングができます" + }, + "1": { + "then": "ここではスポーツクライミングはできません" + }, + "2": { + "then": "スポーツクライミングの {climbing:sport} ルートがある" + } + }, + "question": "ここでは固定アンカー式のスポーツクライミングはできますか?" + }, + "10": { + "mappings": { + "0": { + "then": "ここでは伝統的な登山が可能です" + }, + "1": { + "then": "伝統的な登山はここではできない" + }, + "2": { + "then": "{climbing:traditional} の伝統的な登山ルートがある" + } + }, + "question": "伝統的な登山はここで可能ですか(例えば、チョックのような独自のギアを使用して)?" + }, + "11": { + "mappings": { + "0": { + "then": "スピードクライミングウォールがある" + }, + "1": { + "then": "スピードクライミングウォールがない" + }, + "2": { + "then": "{climbing:speed} のスピードクライミングウォールがある" + } + }, + "question": "スピードクライミングウォールはありますか?" + } + } + }, + "title": "登山地図を開く" + }, + "cyclestreets": { + "description": "cyclestreetとは、自動車がサイクリストを追い越すことができない道です。専用の道路標識で表示されます。Cyclestreetsはオランダやベルギーにもありますが、ドイツやフランスにもあります。 ", + "layers": { "0": { - "then": "ここでToprope登坂ができます" + "description": "cyclestreetとは、自動車による交通がサイクリストを追い越すことができない道路です", + "name": "Cyclestreets" }, "1": { - "then": "ここではToprope登坂はできません" + "description": "この通りはまもなくcyclestreetになります", + "name": "将来のcyclestreet", + "title": { + "mappings": { + "0": { + "then": "{name}は、もうすぐcyclestreetになる" + } + }, + "render": "将来のcyclestreet" + } }, "2": { - "then": "{climbing:toprope} 登坂ルートがある" + "description": "任意の道路をCycle Streetとしてマークするレイヤ", + "name": "すべての道路", + "title": { + "render": "ストリート" + } } - }, - "question": "ここでtoprope登坂はできますか?" }, - "9": { - "mappings": { - "0": { - "then": "ここでスポーツクライミングができます" - }, - "1": { - "then": "ここではスポーツクライミングはできません" - }, - "2": { - "then": "スポーツクライミングの {climbing:sport} ルートがある" + "overrideAll": { + "tagRenderings+": { + "0": { + "mappings": { + "0": { + "then": "cyclestreet(最高速度は30km/h)" + }, + "1": { + "then": "この通りはcyclestreetだ" + }, + "2": { + "then": "この通りはまもなくcyclstreetになるだろう" + }, + "3": { + "then": "この通りはcyclestreetではない" + } + } + }, + "1": { + "question": "この通りはいつcyclestreetになるんですか?", + "render": "この通りは{cyclestreet:start_date}に、cyclestreetになります" + } } - }, - "question": "ここでは固定アンカー式のスポーツクライミングはできますか?" }, - "10": { - "mappings": { - "0": { - "then": "ここでは伝統的な登山が可能です" - }, - "1": { - "then": "伝統的な登山はここではできない" - }, - "2": { - "then": "{climbing:traditional} の伝統的な登山ルートがある" - } - }, - "question": "伝統的な登山はここで可能ですか(例えば、チョックのような独自のギアを使用して)?" - }, - "11": { - "mappings": { - "0": { - "then": "スピードクライミングウォールがある" - }, - "1": { - "then": "スピードクライミングウォールがない" - }, - "2": { - "then": "{climbing:speed} のスピードクライミングウォールがある" - } - }, - "question": "スピードクライミングウォールはありますか?" - } - } + "shortDescription": "cyclestreetsの地図", + "title": "Cyclestreets" }, - "title": "登山地図を開く" - }, - "cyclestreets": { - "description": "cyclestreetとは、自動車がサイクリストを追い越すことができない道です。専用の道路標識で表示されます。Cyclestreetsはオランダやベルギーにもありますが、ドイツやフランスにもあります。 ", - "layers": { - "0": { - "description": "cyclestreetとは、自動車による交通がサイクリストを追い越すことができない道路です", - "name": "Cyclestreets" - }, - "1": { - "description": "この通りはまもなくcyclestreetになります", - "name": "将来のcyclestreet", - "title": { - "mappings": { + "cyclofix": { + "description": "このマップの目的は、サイクリストのニーズに適した施設を見つけるための使いやすいソリューションを提供することです。

正確な位置を追跡し(モバイルのみ)、左下コーナーで関連するレイヤを選択できます。このツールを使用して、マップにピン(注目点)を追加または編集したり、質問に答えることでより多くのデータを提供することもできます。

変更内容はすべてOpenStreetMapのグローバルデータベースに自動的に保存され、他のユーザーが自由に再利用できます。

cyclofixプロジェクトの詳細については、 cyclofix.osm.be を参照してください。", + "title": "Cyclofix - サイクリストのためのオープンマップ" + }, + "drinking_water": { + "description": "この地図には、一般にアクセス可能な飲料水スポットが示されており、簡単に追加することができる", + "title": "飲料水" + }, + "facadegardens": { + "description": "ファサード庭園、都市の緑のファサードと樹木は、平和と静けさをもたらすだけでなく、より美しい都市、より大きな生物多様性、冷却効果、より良い大気質をもたらす。
KlimaanのVZWとMechelenのKlimaatneutraalは、自分で庭を作りたい人や自然を愛する都市の歩行者のために、既存のファサード庭園と新しいファサード庭園のマッピングしたいと考えています。
このプロジェクトに関する詳細情報はklimaanにあります。", + "layers": { "0": { - "then": "{name}は、もうすぐcyclestreetになる" + "description": "ファサード庭園", + "name": "ファサード庭園", + "presets": { + "0": { + "description": "ファサード庭園を追加する", + "title": "ファサード庭園" + } + }, + "tagRenderings": { + "facadegardens-description": { + "question": "庭園に関する追加の説明情報(必要な場合でまだ上記に記載されていない場合)", + "render": "詳細情報: {description}" + }, + "facadegardens-direction": { + "question": "庭の向きはどうなっていますか?", + "render": "方向: {direction} (0=N で 90=O)" + }, + "facadegardens-edible": { + "mappings": { + "0": { + "then": "食用の植物がある" + }, + "1": { + "then": "食用植物は存在しない" + } + }, + "question": "食用の植物はありますか?" + }, + "facadegardens-plants": { + "mappings": { + "0": { + "then": "つるがある" + }, + "1": { + "then": "花を咲かせる植物がある" + }, + "2": { + "then": "低木がある" + }, + "3": { + "then": "地をはう植物がある" + } + }, + "question": "ここではどんな植物が育つんですか?" + }, + "facadegardens-rainbarrel": { + "mappings": { + "0": { + "then": "雨樽がある" + }, + "1": { + "then": "雨樽はありません" + } + }, + "question": "庭に水桶が設置されているのですか?" + }, + "facadegardens-start_date": { + "question": "その庭園はいつ造られたのですか?(建設年で十分です)", + "render": "庭園の建設日: {start_date}" + }, + "facadegardens-sunshine": { + "mappings": { + "0": { + "then": "庭は日があたっている" + }, + "1": { + "then": "庭は部分的に日陰である" + }, + "2": { + "then": "庭は日陰である" + } + }, + "question": "庭は日陰ですか、日当たりがいいですか?" + } + }, + "title": { + "render": "ファサード庭園" + } } - }, - "render": "将来のcyclestreet" - } - }, - "2": { - "description": "任意の道路をCycle Streetとしてマークするレイヤ", - "name": "すべての道路", - "title": { - "render": "ストリート" - } - } + }, + "shortDescription": "このマップには、ファサード庭園が図とともに表示され、方向、日照、植物のタイプに関する有用な情報が示されます。", + "title": "ファサード庭園" }, - "overrideAll": { - "tagRenderings+": { - "0": { - "mappings": { - "0": { - "then": "cyclestreet(最高速度は30km/h)" - }, - "1": { - "then": "この通りはcyclestreetだ" - }, - "2": { - "then": "この通りはまもなくcyclstreetになるだろう" - }, - "3": { - "then": "この通りはcyclestreetではない" - } - }, - "question": "この通りはcyclestreetですか?" - }, - "1": { - "question": "この通りはいつcyclestreetになるんですか?", - "render": "この通りは{cyclestreet:start_date}に、cyclestreetになります" - } - } + "ghostbikes": { + "description": "ゴーストバイクは、交通事故で死亡したサイクリストを記念するもので、事故現場の近くに恒久的に置かれた白い自転車の形をしています。

このマップには、OpenStreetMapで知られているゴーストバイクがすべて表示されます。ゴーストバイクは行方不明ですか?誰でもここで情報の追加や更新ができます。必要なのは(無料の)OpenStreetMapアカウントだけです。", + "title": "ゴーストバイク" }, - "shortDescription": "cyclestreetsの地図", - "title": "Cyclestreets" - }, - "cyclofix": { - "description": "このマップの目的は、サイクリストのニーズに適した施設を見つけるための使いやすいソリューションを提供することです。

正確な位置を追跡し(モバイルのみ)、左下コーナーで関連するレイヤを選択できます。このツールを使用して、マップにピン(注目点)を追加または編集したり、質問に答えることでより多くのデータを提供することもできます。

変更内容はすべてOpenStreetMapのグローバルデータベースに自動的に保存され、他のユーザーが自由に再利用できます。

cyclofixプロジェクトの詳細については、 cyclofix.osm.be を参照してください。", - "title": "Cyclofix - サイクリストのためのオープンマップ" - }, - "drinking_water": { - "description": "この地図には、一般にアクセス可能な飲料水スポットが示されており、簡単に追加することができる", - "title": "飲料水" - }, - "facadegardens": { - "description": "ファサード庭園、都市の緑のファサードと樹木は、平和と静けさをもたらすだけでなく、より美しい都市、より大きな生物多様性、冷却効果、より良い大気質をもたらす。
KlimaanのVZWとMechelenのKlimaatneutraalは、自分で庭を作りたい人や自然を愛する都市の歩行者のために、既存のファサード庭園と新しいファサード庭園のマッピングしたいと考えています。
このプロジェクトに関する詳細情報はklimaanにあります。", - "layers": { - "0": { - "description": "ファサード庭園", - "name": "ファサード庭園", - "presets": { - "0": { - "description": "ファサード庭園を追加する", - "title": "ファサード庭園" - } - }, - "tagRenderings": { - "facadegardens-description": { - "question": "庭園に関する追加の説明情報(必要な場合でまだ上記に記載されていない場合)", - "render": "詳細情報: {description}" - }, - "facadegardens-direction": { - "question": "庭の向きはどうなっていますか?", - "render": "方向: {direction} (0=N で 90=O)" - }, - "facadegardens-edible": { - "mappings": { - "0": { - "then": "食用の植物がある" - }, - "1": { - "then": "食用植物は存在しない" - } - }, - "question": "食用の植物はありますか?" - }, - "facadegardens-plants": { - "mappings": { - "0": { - "then": "つるがある" - }, - "1": { - "then": "花を咲かせる植物がある" - }, - "2": { - "then": "低木がある" - }, - "3": { - "then": "地をはう植物がある" - } - }, - "question": "ここではどんな植物が育つんですか?" - }, - "facadegardens-rainbarrel": { - "mappings": { - "0": { - "then": "雨樽がある" - }, - "1": { - "then": "雨樽はありません" - } - }, - "question": "庭に水桶が設置されているのですか?" - }, - "facadegardens-start_date": { - "question": "その庭園はいつ造られたのですか?(建設年で十分です)", - "render": "庭園の建設日: {start_date}" - }, - "facadegardens-sunshine": { - "mappings": { - "0": { - "then": "庭は日があたっている" - }, - "1": { - "then": "庭は部分的に日陰である" - }, - "2": { - "then": "庭は日陰である" - } - }, - "question": "庭は日陰ですか、日当たりがいいですか?" - } - }, - "title": { - "render": "ファサード庭園" - } - } + "hailhydrant": { + "description": "このマップでは、お気に入りの近隣にある消火栓、消防署、救急ステーション、消火器を検索して更新できます。\n\n正確な位置を追跡し(モバイルのみ)、左下コーナーで関連するレイヤを選択できます。このツールを使用して、マップにピン(注視点)を追加または編集したり、利用可能な質問に答えることによって追加の詳細を提供することもできます。\n\nすべての変更は自動的にOpenStreetMapのグローバルデータベースに保存され、他のユーザが自由に再利用できます。", + "shortDescription": "消火栓、消火器、消防署消火栓、消火器、消防署、および救急ステーションを表示します。", + "title": "消火栓、消火器、消防署、救急ステーションです。" }, - "shortDescription": "このマップには、ファサード庭園が図とともに表示され、方向、日照、植物のタイプに関する有用な情報が示されます。", - "title": "ファサード庭園" - }, - "ghostbikes": { - "description": "ゴーストバイクは、交通事故で死亡したサイクリストを記念するもので、事故現場の近くに恒久的に置かれた白い自転車の形をしています。

このマップには、OpenStreetMapで知られているゴーストバイクがすべて表示されます。ゴーストバイクは行方不明ですか?誰でもここで情報の追加や更新ができます。必要なのは(無料の)OpenStreetMapアカウントだけです。", - "title": "ゴーストバイク" - }, - "hailhydrant": { - "description": "このマップでは、お気に入りの近隣にある消火栓、消防署、救急ステーション、消火器を検索して更新できます。\n\n正確な位置を追跡し(モバイルのみ)、左下コーナーで関連するレイヤを選択できます。このツールを使用して、マップにピン(注視点)を追加または編集したり、利用可能な質問に答えることによって追加の詳細を提供することもできます。\n\nすべての変更は自動的にOpenStreetMapのグローバルデータベースに保存され、他のユーザが自由に再利用できます。", - "layers": { - "0": { - "description": "消火栓を表示するマップレイヤ。", - "name": "消火栓の地図", - "presets": { - "0": { - "description": "消火栓は消防士が水を汲み上げることができる接続点です。地下にあるかもしれません。", - "title": "消火栓" - } - }, - "tagRenderings": { - "hydrant-color": { - "mappings": { - "0": { - "then": "消火栓の色は不明です。" - }, - "1": { - "then": "消火栓の色は黄色です。" - }, - "2": { - "then": "消火栓の色は赤です。" - } - }, - "question": "消火栓の色は何色ですか?", - "render": "消火栓の色は{colour}です" - }, - "hydrant-state": { - "mappings": { - "0": { - "then": "消火栓は(完全にまたは部分的に)機能しています。" - }, - "1": { - "then": "消火栓は使用できません。" - }, - "2": { - "then": "消火栓が撤去されました。" - } - }, - "question": "消火栓のライフサイクルステータスを更新します。" - }, - "hydrant-type": { - "mappings": { - "0": { - "then": "消火栓の種類は不明です。" - }, - "1": { - "then": " ピラー型。" - }, - "2": { - "then": " パイプ型。" - }, - "3": { - "then": " 壁型。" - }, - "4": { - "then": "地下式。" - } - }, - "question": "どんな消火栓なんですか?", - "render": " 消火栓のタイプ:{fire_hydrant:type}" - } - }, - "title": { - "render": "消火栓" - } - }, - "1": { - "description": "消火栓を表示するマップレイヤ。", - "name": "消火器の地図です。", - "presets": { - "0": { - "description": "消火器は、火災を止めるために使用される小型で携帯可能な装置である", - "title": "消火器" - } - }, - "tagRenderings": { - "extinguisher-location": { - "mappings": { - "0": { - "then": "屋内にある。" - }, - "1": { - "then": "屋外にある。" - } - }, - "question": "どこにあるんですか?", - "render": "場所:{location}" - } - }, - "title": { - "render": "消火器" - } - }, - "2": { - "description": "消防署を表示するためのマップレイヤ。", - "name": "消防署の地図", - "presets": { - "0": { - "description": "消防署は、運転していないときに消防車や消防士がいる場所です。", - "title": "消防署" - } - }, - "tagRenderings": { - "station-agency": { - "mappings": { - "0": { - "then": "消防局(消防庁)" - } - }, - "question": "このステーションを運営しているのはどこですか?", - "render": "このステーションは{operator}によって運営されています。" - }, - "station-name": { - "question": "この消防署の名前は何ですか?", - "render": "このステーションの名前は{name}です。" - }, - "station-operator": { - "mappings": { - "0": { - "then": "ステーションは自治体が運営する。" - }, - "1": { - "then": "任意団体やコミュニティが運営しているステーションである。" - }, - "2": { - "then": "公益団体が運営しているステーションである。" - }, - "3": { - "then": "個人が運営しているステーションである。" - } - }, - "question": "ステーションの運営の分類は?", - "render": "運営者は、{operator:type} です。" - }, - "station-place": { - "question": "このステーションの住所は?(例: 地区、村、または町の名称)", - "render": "このステーションは{addr:place}にあります。" - }, - "station-street": { - "question": " 救急ステーションの所在地はどこですか?", - "render": "{addr:street} 沿いにあります。" - } - }, - "title": { - "render": "消防署" - } - }, - "3": { - "description": "救急ステーションは、救急車、医療機器、個人用保護具、およびその他の医療用品を保管する場所です。", - "name": "救急ステーションの地図", - "presets": { - "0": { - "description": "救急ステーション(消防署)をマップに追加する", - "title": "救急ステーション(消防署)" - } - }, - "tagRenderings": { - "ambulance-agency": { - "question": "このステーションを運営しているのはどこですか?", - "render": "このステーションは{operator}によって運営されています。" - }, - "ambulance-name": { - "question": "この救急ステーションの名前は何ですか?", - "render": "このステーションの名前は{name}です。" - }, - "ambulance-operator-type": { - "mappings": { - "0": { - "then": "ステーションは自治体が運営する。" - }, - "1": { - "then": "任意団体やコミュニティが運営しているステーションである。" - }, - "2": { - "then": "公益団体が運営しているステーションである。" - }, - "3": { - "then": "個人が運営しているステーションである。" - } - }, - "question": "ステーションの運営の分類は?", - "render": "運営者は、{operator:type} です。" - }, - "ambulance-place": { - "question": "このステーションの住所は?(例: 地区、村、または町の名称)", - "render": "このステーションは{addr:place}にあります。" - }, - "ambulance-street": { - "question": " 救急ステーションの所在地はどこですか?", - "render": "{addr:street} 沿いにあります。" - } - }, - "title": { - "render": "救急ステーション" - } - } + "maps": { + "description": "このマップには、OpenStreetMapが知っているすべてのマップが表示されます。通常は、エリア、都市、または地域を示す情報ボード上の大きなマップが表示されます。たとえば、ビルボードの背面にある観光マップ、自然保護区のマップ、地域内のサイクリングネットワークのマップなどです。)

マップがない場合は、このマップをOpenStreetMapに簡単にマップできます。", + "shortDescription": "このテーマには、OpenStreetMapが知っているすべての(観光)マップが表示されます", + "title": "マップのマップ" }, - "shortDescription": "消火栓、消火器、消防署消火栓、消火器、消防署、および救急ステーションを表示します。", - "title": "消火栓、消火器、消防署、救急ステーションです。" - }, - "maps": { - "description": "このマップには、OpenStreetMapが知っているすべてのマップが表示されます。通常は、エリア、都市、または地域を示す情報ボード上の大きなマップが表示されます。たとえば、ビルボードの背面にある観光マップ、自然保護区のマップ、地域内のサイクリングネットワークのマップなどです。)

マップがない場合は、このマップをOpenStreetMapに簡単にマップできます。", - "shortDescription": "このテーマには、OpenStreetMapが知っているすべての(観光)マップが表示されます", - "title": "マップのマップ" - }, - "personal": { - "description": "すべてのテーマの使用可能なすべてのレイヤーに基づいて個人用テーマを作成する", - "title": "個人的なテーマ" - }, - "playgrounds": { - "description": "この地図では遊び場を見つけ情報を追加することができます", - "shortDescription": "遊び場のある地図", - "title": "遊び場" - }, - "shops": { - "description": "この地図には店の基本情報を記入したり営業時間や電話番号を追加することができます", - "shortDescription": "基本的なショップ情報を含む編集可能なマップ", - "title": "オープン ショップ マップ" - }, - "sport_pitches": { - "description": "スポーツ競技場は、スポーツが行われる場所です", - "shortDescription": "スポーツ競技場を示す地図", - "title": "スポーツ競技場" - }, - "surveillance": { - "description": "このオープンマップでは、監視カメラを確認できます。", - "shortDescription": "監視カメラおよびその他の監視手段", - "title": "監視カメラの監視" - }, - "toilets": { - "description": "公衆トイレの地図", - "title": "オープントイレマップ" - }, - "trees": { - "description": "すべての樹木をマッピングします!", - "shortDescription": "すべての樹木をマッピングする", - "title": "樹木" - } + "personal": { + "description": "すべてのテーマの使用可能なすべてのレイヤーに基づいて個人用テーマを作成する", + "title": "個人的なテーマ" + }, + "playgrounds": { + "description": "この地図では遊び場を見つけ情報を追加することができます", + "shortDescription": "遊び場のある地図", + "title": "遊び場" + }, + "shops": { + "description": "この地図には店の基本情報を記入したり営業時間や電話番号を追加することができます", + "shortDescription": "基本的なショップ情報を含む編集可能なマップ", + "title": "オープン ショップ マップ" + }, + "sport_pitches": { + "description": "スポーツ競技場は、スポーツが行われる場所です", + "shortDescription": "スポーツ競技場を示す地図", + "title": "スポーツ競技場" + }, + "surveillance": { + "description": "このオープンマップでは、監視カメラを確認できます。", + "shortDescription": "監視カメラおよびその他の監視手段", + "title": "監視カメラの監視" + }, + "toilets": { + "description": "公衆トイレの地図", + "title": "オープントイレマップ" + }, + "trees": { + "description": "すべての樹木をマッピングします!", + "shortDescription": "すべての樹木をマッピングする", + "title": "樹木" + } } \ No newline at end of file diff --git a/langs/themes/nb_NO.json b/langs/themes/nb_NO.json index 0738450f8e..da448944f0 100644 --- a/langs/themes/nb_NO.json +++ b/langs/themes/nb_NO.json @@ -1,341 +1,282 @@ { - "aed": { - "description": "Defibrillatorer i nærheten", - "title": "Åpne AED-kart" - }, - "artwork": { - "description": "Velkommen til det åpne kunstverkskartet, et kart over statuer, byster, grafitti, og andre kunstverk i verden" - }, - "benches": { - "shortDescription": "Et benkekart", - "title": "Benker" - }, - "bicyclelib": { - "title": "Sykkelbibliotek" - }, - "binoculars": { - "shortDescription": "Et kart over fastmonterte kikkerter", - "title": "Kikkerter" - }, - "bookcases": { - "title": "Kart over åpne bokhyller" - }, - "cafes_and_pubs": { - "title": "Kafeer og kneiper" - }, - "campersite": { - "layers": { - "0": { - "tagRenderings": { - "caravansites-charge": { - "question": "pø", - "render": "Dette stedet tar {charge}" - }, - "caravansites-description": { - "render": "Flere detaljer om dette stedet: {description}" - }, - "caravansites-fee": { - "mappings": { - "1": { - "then": "Kan brukes gratis" - } - } - }, - "caravansites-toilets": { - "mappings": { - "0": { - "then": "Dette stedet har toalettfasiliteter" - }, - "1": { - "then": "Dette stedet har ikke toalettfasiliteter" - } - }, - "question": "Har dette stedet toaletter?" - }, - "caravansites-website": { - "question": "Har dette stedet en nettside?", - "render": "Offisiell nettside: {website}" - } - } - } - } - }, - "charging_stations": { - "shortDescription": "Et verdensomspennende kart over ladestasjoner", - "title": "Ladestasjoner" - }, - "climbing": { - "layers": { - "0": { - "description": "En klatreklubb eller organisasjoner", - "name": "Klatreklubb", - "presets": { - "0": { - "description": "En klatreklubb", - "title": "Klatreklubb" - } - }, - "title": { - "render": "Klatreklubb" - } - }, - "2": { - "name": "Klatreruter", - "tagRenderings": { - "Length": { - "question": "Hvor mange meter er klatreruten?", - "render": "Denne ruten er {canonical(climbing:length)} lang" - }, - "Name": { - "mappings": { - "0": { - "then": "Denne klatreruten har ikke noe navn" - } - }, - "question": "Hva er navnet på denne klatreruten?", - "render": "{name}" - } - }, - "title": { - "render": "Klatrerute" - } - }, - "3": { - "description": "En klatremulighet", - "presets": { - "0": { - "description": "En klatremulighet", - "title": "Klatremulighet" - } - }, - "title": { - "render": "Klatremulighet" - } - }, - "4": { - "description": "En klatremulighet?", - "name": "Klatremuligheter?", - "tagRenderings": { - "climbing-possible": { - "mappings": { - "0": { - "then": "Klatring er ikke mulig her" - }, - "1": { - "then": "Klatring er mulig her" - }, - "2": { - "then": "Klatring er ikke mulig her" - } - }, - "question": "Er klatring mulig her?" - } - }, - "title": { - "render": "Klatremulighet?" - } - } + "aed": { + "description": "Defibrillatorer i nærheten", + "title": "Åpne AED-kart" }, - "overrideAll": { - "tagRenderings+": { - "7": { - "mappings": { - "0": { - "then": "Buldring er mulig her" - }, - "1": { - "then": "Buldring er ikke mulig her" - } - }, - "question": "Er buldring mulig her?" - } - } + "artwork": { + "description": "Velkommen til det åpne kunstverkskartet, et kart over statuer, byster, grafitti, og andre kunstverk i verden" }, - "title": "Åpent klatrekart" - }, - "cycle_infra": { - "shortDescription": "Alt relatert til sykkelinfrastruktur.", - "title": "Sykkelinfrastruktur" - }, - "cyclestreets": { - "layers": { - "0": { - "name": "Sykkelgater" - }, - "1": { - "description": "Denne gaten vil bli sykkelgate snart", - "name": "Fremtidig sykkelvei", - "title": { - "mappings": { - "0": { - "then": "{name} vil bli sykkelgate snart" - } - }, - "render": "Fremtidig sykkelvei" - } - }, - "2": { - "description": "Lag for å markere hvilken som helst gate som sykkelvei", - "name": "Alle gater", - "title": { - "render": "Gate" - } - } + "benches": { + "shortDescription": "Et benkekart", + "title": "Benker" }, - "overrideAll": { - "tagRenderings+": { - "0": { - "mappings": { + "bicyclelib": { + "title": "Sykkelbibliotek" + }, + "binoculars": { + "shortDescription": "Et kart over fastmonterte kikkerter", + "title": "Kikkerter" + }, + "bookcases": { + "title": "Kart over åpne bokhyller" + }, + "cafes_and_pubs": { + "title": "Kafeer og kneiper" + }, + "campersite": { + "layers": { "0": { - "then": "Denne gaten er en sykkelvei (og har en fartsgrense på 30 km/t)" - }, - "1": { - "then": "Denne gaten er en sykkelvei" + "tagRenderings": { + "caravansites-charge": { + "question": "pø", + "render": "Dette stedet tar {charge}" + }, + "caravansites-description": { + "render": "Flere detaljer om dette stedet: {description}" + }, + "caravansites-fee": { + "mappings": { + "1": { + "then": "Kan brukes gratis" + } + } + }, + "caravansites-toilets": { + "mappings": { + "0": { + "then": "Dette stedet har toalettfasiliteter" + }, + "1": { + "then": "Dette stedet har ikke toalettfasiliteter" + } + }, + "question": "Har dette stedet toaletter?" + }, + "caravansites-website": { + "question": "Har dette stedet en nettside?", + "render": "Offisiell nettside: {website}" + } + } + } + } + }, + "charging_stations": { + "shortDescription": "Et verdensomspennende kart over ladestasjoner", + "title": "Ladestasjoner" + }, + "climbing": { + "layers": { + "0": { + "description": "En klatreklubb eller organisasjoner", + "name": "Klatreklubb", + "presets": { + "0": { + "description": "En klatreklubb", + "title": "Klatreklubb" + } + }, + "title": { + "render": "Klatreklubb" + } }, "2": { - "then": "Denne gaten vil bli sykkelvei ganske snart" + "name": "Klatreruter", + "tagRenderings": { + "Length": { + "question": "Hvor mange meter er klatreruten?", + "render": "Denne ruten er {canonical(climbing:length)} lang" + }, + "Name": { + "mappings": { + "0": { + "then": "Denne klatreruten har ikke noe navn" + } + }, + "question": "Hva er navnet på denne klatreruten?", + "render": "{name}" + } + }, + "title": { + "render": "Klatrerute" + } }, "3": { - "then": "Denne gaten er ikke en sykkelvei" + "description": "En klatremulighet", + "presets": { + "0": { + "description": "En klatremulighet", + "title": "Klatremulighet" + } + }, + "title": { + "render": "Klatremulighet" + } + }, + "4": { + "description": "En klatremulighet?", + "name": "Klatremuligheter?", + "tagRenderings": { + "climbing-possible": { + "mappings": { + "0": { + "then": "Klatring er ikke mulig her" + }, + "1": { + "then": "Klatring er mulig her" + }, + "2": { + "then": "Klatring er ikke mulig her" + } + }, + "question": "Er klatring mulig her?" + } + }, + "title": { + "render": "Klatremulighet?" + } } - }, - "question": "Er denne gaten en sykkelvei?" - } - } + }, + "overrideAll": { + "tagRenderings+": { + "7": { + "mappings": { + "0": { + "then": "Buldring er mulig her" + }, + "1": { + "then": "Buldring er ikke mulig her" + } + }, + "question": "Er buldring mulig her?" + } + } + }, + "title": "Åpent klatrekart" }, - "shortDescription": "Et kart over sykkelveier", - "title": "Sykkelgater" - }, - "cyclofix": { - "title": "Cyclofix — et åpent kart for syklister" - }, - "drinking_water": { - "description": "Offentlig tilgjengelig drikkevannssteder", - "title": "Drikkevann" - }, - "facadegardens": { - "layers": { - "0": { - "tagRenderings": { - "facadegardens-sunshine": { - "mappings": { - "1": { - "then": "Denne hagen er i delvis skygge" - } - } - } - } - } - } - }, - "food": { - "title": "Restauranter og søppelmat" - }, - "ghostbikes": { - "title": "Spøkelsessykler" - }, - "hailhydrant": { - "layers": { - "0": { - "description": "Kartlag for å vise brannhydranter.", - "name": "Kart over brannhydranter", - "presets": { - "0": { - "title": "Brannhydrant" - } - }, - "tagRenderings": { - "hydrant-color": { - "question": "Hvilken farge har brannhydranten?", - "render": "Brannhydranter er {colour}" - } - }, - "title": { - "render": "Brannhydrant" - } - }, - "1": { - "description": "Kartlag for å vise brannslokkere.", - "name": "Kart over brannhydranter", - "presets": { - "0": { - "title": "Brannslukker" - } - }, - "title": { - "render": "Brannslokkere" - } - }, - "2": { - "name": "Kart over brannstasjoner", - "presets": { - "0": { - "title": "Brannstasjon" - } - }, - "tagRenderings": { - "station-name": { - "render": "Denne stasjonen heter {name}." - }, - "station-operator": { - "mappings": { - "0": { - "then": "Stasjonen drives av myndighetene." - } - } - } - }, - "title": { - "render": "Brannstasjon" - } - } + "cycle_infra": { + "shortDescription": "Alt relatert til sykkelinfrastruktur.", + "title": "Sykkelinfrastruktur" }, - "title": "Hydranter, brannslukkere, brannstasjoner, og ambulansestasjoner." - }, - "maps": { - "title": "Et kart over kart" - }, - "natuurpunt": { - "title": "Naturreservater" - }, - "openwindpowermap": { - "layers": { - "0": { - "units": { - "0": { - "applicableUnits": { - "1": { - "human": " kilowatt" - } + "cyclestreets": { + "layers": { + "0": { + "name": "Sykkelgater" + }, + "1": { + "description": "Denne gaten vil bli sykkelgate snart", + "name": "Fremtidig sykkelvei", + "title": { + "mappings": { + "0": { + "then": "{name} vil bli sykkelgate snart" + } + }, + "render": "Fremtidig sykkelvei" + } + }, + "2": { + "description": "Lag for å markere hvilken som helst gate som sykkelvei", + "name": "Alle gater", + "title": { + "render": "Gate" + } + } + }, + "overrideAll": { + "tagRenderings+": { + "0": { + "mappings": { + "0": { + "then": "Denne gaten er en sykkelvei (og har en fartsgrense på 30 km/t)" + }, + "1": { + "then": "Denne gaten er en sykkelvei" + }, + "2": { + "then": "Denne gaten vil bli sykkelvei ganske snart" + }, + "3": { + "then": "Denne gaten er ikke en sykkelvei" + } + } + } + } + }, + "shortDescription": "Et kart over sykkelveier", + "title": "Sykkelgater" + }, + "cyclofix": { + "title": "Cyclofix — et åpent kart for syklister" + }, + "drinking_water": { + "description": "Offentlig tilgjengelig drikkevannssteder", + "title": "Drikkevann" + }, + "facadegardens": { + "layers": { + "0": { + "tagRenderings": { + "facadegardens-sunshine": { + "mappings": { + "1": { + "then": "Denne hagen er i delvis skygge" + } + } + } + } } - } } - } + }, + "food": { + "title": "Restauranter og søppelmat" + }, + "ghostbikes": { + "title": "Spøkelsessykler" + }, + "hailhydrant": { + "title": "Hydranter, brannslukkere, brannstasjoner, og ambulansestasjoner." + }, + "maps": { + "title": "Et kart over kart" + }, + "openwindpowermap": { + "layers": { + "0": { + "units": { + "0": { + "applicableUnits": { + "1": { + "human": " kilowatt" + } + } + } + } + } + } + }, + "parkings": { + "shortDescription": "Dette kartet viser forskjellige parkeringsplasser", + "title": "Parkering" + }, + "personal": { + "title": "Personlig tema" + }, + "playgrounds": { + "shortDescription": "Et kart med lekeplasser", + "title": "Lekeplasser" + }, + "postboxes": { + "title": "Postboks og postkontor-kart" + }, + "shops": { + "title": "Kart over åpne butikker" + }, + "toilets": { + "title": "Åpent toalettkart" + }, + "trees": { + "description": "Kartlegg trærne.", + "shortDescription": "Kartlegg alle trærne", + "title": "Trær" } - }, - "parkings": { - "shortDescription": "Dette kartet viser forskjellige parkeringsplasser", - "title": "Parkering" - }, - "personal": { - "title": "Personlig tema" - }, - "playgrounds": { - "shortDescription": "Et kart med lekeplasser", - "title": "Lekeplasser" - }, - "postboxes": { - "title": "Postboks og postkontor-kart" - }, - "shops": { - "title": "Kart over åpne butikker" - }, - "toilets": { - "title": "Åpent toalettkart" - }, - "trees": { - "description": "Kartlegg trærne.", - "shortDescription": "Kartlegg alle trærne", - "title": "Trær" - } } \ No newline at end of file diff --git a/langs/themes/nl.json b/langs/themes/nl.json index 217b91cca3..3b591ad644 100644 --- a/langs/themes/nl.json +++ b/langs/themes/nl.json @@ -1,1074 +1,1066 @@ { - "aed": { - "description": "Op deze kaart kan je informatie over AEDs vinden en verbeteren", - "title": "Open AED-kaart" - }, - "aed_brugge": { - "description": "Op deze kaart kan je informatie over AEDs vinden en verbeteren + een export van de brugse defibrillatoren", - "title": "Open AED-kaart - Brugge edition" - }, - "artwork": { - "description": "Welkom op de open kunstwerken-kaart, een kaart van standbeelden, bustes, graffiti en andere kunstwerken over de hele wereld", - "title": "Open kunstwerken-kaart" - }, - "benches": { - "description": "Deze kaart toont alle zitbanken die zijn opgenomen in OpenStreetMap: individuele banken en banken bij bushaltes. Met een OpenStreetMap-account kan je informatie verbeteren en nieuwe zitbanken toevoegen.", - "shortDescription": "Een kaart van zitbanken", - "title": "Zitbanken" - }, - "bicyclelib": { - "description": "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.", - "title": "Fietsbibliotheken" - }, - "binoculars": { - "description": "Een kaart met verrekijkers die op een vaste plaats zijn gemonteerd", - "shortDescription": "Een kaart met publieke verrekijker", - "title": "Verrekijkers" - }, - "bookcases": { - "description": "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", - "title": "Open boekenruilkasten-kaart" - }, - "buurtnatuur": { - "description": "logo-groenmeld je aan voor e-mailupdates.", - "descriptionTail": "

Tips

  • Over groen ingekleurde gebieden weten we alles wat we willen weten.
  • Bij rood ingekleurde gebieden ontbreekt nog heel wat info: klik een gebied aan en beantwoord de vragen.
  • Je kan altijd een vraag overslaan als je het antwoord niet weet of niet zeker bent
  • Je kan altijd een foto toevoegen
  • Je kan ook zelf een gebied toevoegen door op de kaart te klikken
  • Open buurtnatuur.be op je smartphone om al wandelend foto's te maken en vragen te beantwoorden

De oorspronkelijke data komt van OpenStreetMap en je antwoorden worden daar bewaard.
Omdat iedereen vrij kan meewerken aan dit project, kunnen we niet garanderen dat er geen fouten opduiken.Kan je hier niet aanpassen wat je wilt, dan kan je dat zelf via OpenStreetMap.org doen. Groen kan geen enkele verantwoordelijkheid nemen over de kaart.

Je privacy is belangrijk. We tellen wel hoeveel gebruikers deze website bezoeken. We plaatsen een cookie waar geen persoonlijke informatie in bewaard wordt. Als je inlogt, komt er een tweede cookie bij met je inloggegevens.
", - "layers": { - "0": { - "description": "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.", - "name": "Natuurgebied", - "presets": { - "0": { - "description": "Voeg een ontbrekend, erkend natuurreservaat toe, bv. een gebied dat beheerd wordt door het ANB of natuurpunt", - "title": "Natuurreservaat" - } - }, - "title": { - "mappings": { - "0": { - "then": "{name:nl}" - }, - "1": { - "then": "{name}" - } - }, - "render": "Natuurgebied" - } - }, - "1": { - "description": "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, ...", - "name": "Park", - "presets": { - "0": { - "description": "Voeg een ontbrekend park toe", - "title": "Park" - } - }, - "title": { - "mappings": { - "0": { - "then": "{name:nl}" - }, - "1": { - "then": "{name}" - } - }, - "render": "Park" - } - }, - "2": { - "description": "Een bos is een verzameling bomen, al dan niet als productiehout.", - "name": "Bos", - "presets": { - "0": { - "description": "Voeg een ontbrekend bos toe aan de kaart", - "title": "Bos" - } - }, - "title": { - "mappings": { - "0": { - "then": "{name:nl}" - }, - "1": { - "then": "{name}" - } - }, - "render": "Bos" - } - } + "aed": { + "description": "Op deze kaart kan je informatie over AEDs vinden en verbeteren", + "title": "Open AED-kaart" }, - "overrideAll": { - "tagRenderings+": { - "0": { - "mappings": { + "aed_brugge": { + "description": "Op deze kaart kan je informatie over AEDs vinden en verbeteren + een export van de brugse defibrillatoren", + "title": "Open AED-kaart - Brugge edition" + }, + "artwork": { + "description": "Welkom op de open kunstwerken-kaart, een kaart van standbeelden, bustes, graffiti en andere kunstwerken over de hele wereld", + "title": "Open kunstwerken-kaart" + }, + "benches": { + "description": "Deze kaart toont alle zitbanken die zijn opgenomen in OpenStreetMap: individuele banken en banken bij bushaltes. Met een OpenStreetMap-account kan je informatie verbeteren en nieuwe zitbanken toevoegen.", + "shortDescription": "Een kaart van zitbanken", + "title": "Zitbanken" + }, + "bicycle_rental": { + "description": "Op deze kaart vind je verschillende fietsverhuurpunten en fietsverhuurzaken", + "shortDescription": "Een kaart met fietsverhuurpunten en fietsverhuurzaken", + "title": "Fietsverhuur" + }, + "bicyclelib": { + "description": "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.", + "title": "Fietsbibliotheken" + }, + "binoculars": { + "description": "Een kaart met verrekijkers die op een vaste plaats zijn gemonteerd", + "shortDescription": "Een kaart met publieke verrekijker", + "title": "Verrekijkers" + }, + "bookcases": { + "description": "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", + "title": "Open boekenruilkasten-kaart" + }, + "buurtnatuur": { + "description": "logo-groenmeld je aan voor e-mailupdates.", + "descriptionTail": "

Tips

  • Over groen ingekleurde gebieden weten we alles wat we willen weten.
  • Bij rood ingekleurde gebieden ontbreekt nog heel wat info: klik een gebied aan en beantwoord de vragen.
  • Je kan altijd een vraag overslaan als je het antwoord niet weet of niet zeker bent
  • Je kan altijd een foto toevoegen
  • Je kan ook zelf een gebied toevoegen door op de kaart te klikken
  • Open buurtnatuur.be op je smartphone om al wandelend foto's te maken en vragen te beantwoorden

De oorspronkelijke data komt van OpenStreetMap en je antwoorden worden daar bewaard.
Omdat iedereen vrij kan meewerken aan dit project, kunnen we niet garanderen dat er geen fouten opduiken.Kan je hier niet aanpassen wat je wilt, dan kan je dat zelf via OpenStreetMap.org doen. Groen kan geen enkele verantwoordelijkheid nemen over de kaart.

Je privacy is belangrijk. We tellen wel hoeveel gebruikers deze website bezoeken. We plaatsen een cookie waar geen persoonlijke informatie in bewaard wordt. Als je inlogt, komt er een tweede cookie bij met je inloggegevens.
", + "layers": { "0": { - "then": "Dit gebied is vrij toegankelijk" + "description": "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.", + "name": "Natuurgebied", + "presets": { + "0": { + "description": "Voeg een ontbrekend, erkend natuurreservaat toe, bv. een gebied dat beheerd wordt door het ANB of natuurpunt", + "title": "Natuurreservaat" + } + }, + "title": { + "mappings": { + "0": { + "then": "{name:nl}" + }, + "1": { + "then": "{name}" + } + }, + "render": "Natuurgebied" + } }, "1": { - "then": "Vrij toegankelijk" + "description": "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, ...", + "name": "Park", + "presets": { + "0": { + "description": "Voeg een ontbrekend park toe", + "title": "Park" + } + }, + "title": { + "mappings": { + "0": { + "then": "{name:nl}" + }, + "1": { + "then": "{name}" + } + }, + "render": "Park" + } }, "2": { - "then": "Niet toegankelijk" + "description": "Een bos is een verzameling bomen, al dan niet als productiehout.", + "name": "Bos", + "presets": { + "0": { + "description": "Voeg een ontbrekend bos toe aan de kaart", + "title": "Bos" + } + }, + "title": { + "mappings": { + "0": { + "then": "{name:nl}" + }, + "1": { + "then": "{name}" + } + }, + "render": "Bos" + } + } + }, + "overrideAll": { + "tagRenderings+": { + "0": { + "mappings": { + "0": { + "then": "Dit gebied is vrij toegankelijk" + }, + "1": { + "then": "Vrij toegankelijk" + }, + "2": { + "then": "Niet toegankelijk" + }, + "3": { + "then": "Niet toegankelijk, want privégebied" + }, + "4": { + "then": "Toegankelijk, ondanks dat het privegebied is" + }, + "5": { + "then": "Enkel toegankelijk met een gids of tijdens een activiteit" + }, + "6": { + "then": "Toegankelijk mits betaling" + } + }, + "question": "Is dit gebied toegankelijk?", + "render": "De toegankelijkheid van dit gebied is: {access:description}" + }, + "1": { + "mappings": { + "1": { + "then": "Dit gebied wordt beheerd door Natuurpunt" + }, + "2": { + "then": "Dit gebied wordt beheerd door {operator}" + }, + "3": { + "then": "Dit gebied wordt beheerd door het Agentschap Natuur en Bos" + } + }, + "question": "Wie beheert dit gebied?", + "render": "Beheer door {operator}" + }, + "2": { + "render": "Extra info: {description}" + }, + "3": { + "render": "Extra info via buurtnatuur.be: {description:0}" + }, + "4": { + "question": "Wat is de Nederlandstalige naam van dit gebied?", + "render": "Dit gebied heet {name:nl}" + }, + "5": { + "mappings": { + "0": { + "then": "Dit gebied heeft geen naam" + } + }, + "question": "Wat is de naam van dit gebied?", + "render": "Dit gebied heet {name}" + } + } + }, + "shortDescription": "Met deze tool kan je natuur in je buurt in kaart brengen en meer informatie geven over je favoriete plekje", + "title": "Breng jouw buurtnatuur in kaart" + }, + "cafes_and_pubs": { + "description": "Cafés, kroegen en drinkgelegenheden", + "title": "Cafés" + }, + "campersite": { + "description": "Deze website verzamelt en toont alle officiële plaatsen waar een camper mag overnachten en afvalwater kan lozen. Ook jij kan extra gegevens toevoegen, zoals welke services er geboden worden en hoeveel dit kot, ook afbeeldingen en reviews kan je toevoegen. De data wordt op OpenStreetMap opgeslagen en is dus altijd gratis te hergebruiken, ook door andere applicaties.", + "layers": { + "0": { + "description": "camperplaatsen", + "name": "Camperplaatsen", + "presets": { + "0": { + "description": "Voeg een nieuwe officiële camperplaats toe. Dit zijn speciaal aangeduide plaatsen waar het toegestaan is om te overnachten met een camper. Ze kunnen er uitzien als een parking, of soms eerder als een camping. Soms staan ze niet ter plaatse aangeduid, maar heeft de gemeente wel degelijk beslist dat dit een camperplaats is. Een parking voor campers waar je niet mag overnachten is géén camperplaats. ", + "title": "camperplaats" + } + }, + "tagRenderings": { + "caravansites-capacity": { + "question": "Hoeveel campers kunnen hier overnachten? (sla dit over als er geen duidelijk aantal plaatsen of aangeduid maximum is)", + "render": "{capacity} campers kunnen deze plaats tegelijk gebruiken" + }, + "caravansites-charge": { + "question": "Hoeveel kost deze plaats?", + "render": "Deze plaats vraagt {charge}" + }, + "caravansites-description": { + "question": "Wil je graag een algemene beschrijving toevoegen van deze plaats? (Herhaal hier niet de antwoorden op de vragen die reeds gesteld zijn. Hou het objectief - je kan je mening geven via een review)", + "render": "Meer details over deze plaats: {description}" + }, + "caravansites-fee": { + "mappings": { + "0": { + "then": "Gebruik is betalend" + }, + "1": { + "then": "Kan gratis gebruikt worden" + } + }, + "question": "Moet men betalen om deze camperplaats te gebruiken?" + }, + "caravansites-internet": { + "mappings": { + "0": { + "then": "Er is internettoegang" + }, + "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}" + } + }, + "title": { + "mappings": { + "0": { + "then": "Camper site" + } + }, + "render": "Camperplaats {name}" + } + } + }, + "shortDescription": "Vind locaties waar je de nacht kan doorbrengen met je mobilehome", + "title": "Camperplaatsen" + }, + "charging_stations": { + "shortDescription": "Een wereldwijde kaart van oplaadpunten", + "title": "Oplaadpunten" + }, + "climbing": { + "description": "Op deze kaart vind je verschillende klimgelegenheden, zoals klimzalen, bolderzalen en klimmen in de natuur", + "descriptionTail": "De klimkaart is oorspronkelijk gemaakt door Christian Neumann op kletterspots.de.", + "layers": { + "0": { + "description": "Een klimclub of organisatie", + "name": "Klimclub", + "presets": { + "0": { + "description": "Een klimclub", + "title": "Klimclub" + }, + "1": { + "description": "Een VZW die werkt rond klimmen", + "title": "Een klimorganisatie" + } + }, + "tagRenderings": { + "climbing_club-name": { + "question": "Wat is de naam van deze klimclub?", + "render": "{name}" + } + }, + "title": { + "mappings": { + "0": { + "then": "Klimorganisatie" + } + }, + "render": "Klimclub" + } + }, + "1": { + "description": "Een klimzaal", + "name": "Klimzalen", + "tagRenderings": { + "name": { + "question": "Wat is de naam van dit Klimzaal?", + "render": "{name}" + } + }, + "title": { + "mappings": { + "0": { + "then": "Klimzaal {name}" + } + }, + "render": "Klimzaal" + } + }, + "2": { + "name": "Klimroute", + "presets": { + "0": { + "title": "Klimroute" + } + }, + "tagRenderings": { + "Difficulty": { + "question": "Hoe moeilijk is deze klimroute volgens het Franse/Belgische systeem?", + "render": "De klimmoeilijkheid is {climbing:grade:french} volgens het Franse/Belgische systeem" + }, + "Length": { + "question": "Hoe lang is deze klimroute (in meters)?", + "render": "Deze klimroute is {canonical(climbing:length)} lang" + }, + "Name": { + "mappings": { + "0": { + "then": "Deze klimroute heeft geen naam" + } + }, + "question": "Hoe heet deze klimroute?", + "render": "{name}" + } + }, + "title": { + "mappings": { + "0": { + "then": "Klimroute {name}" + } + }, + "render": "Klimroute" + } }, "3": { - "then": "Niet toegankelijk, want privégebied" + "description": "Een klimgelegenheid", + "name": "Klimgelegenheden", + "presets": { + "0": { + "description": "Een klimgelegenheid", + "title": "Klimgelegenheid" + } + }, + "tagRenderings": { + "Rock type (crag/rock/cliff only)": { + "mappings": { + "0": { + "then": "Kalksteen" + } + } + }, + "name": { + "mappings": { + "0": { + "then": "Dit Klimgelegenheid heeft geen naam" + } + }, + "question": "Wat is de naam van dit Klimgelegenheid?", + "render": "{name}" + } + }, + "title": { + "mappings": { + "1": { + "then": "Klimsite {name}" + }, + "2": { + "then": "Klimsite" + }, + "3": { + "then": "Klimgelegenheid {name}" + } + }, + "render": "Klimgelegenheid" + } }, "4": { - "then": "Toegankelijk, ondanks dat het privegebied is" - }, - "5": { - "then": "Enkel toegankelijk met een gids of tijdens een activiteit" - }, - "6": { - "then": "Toegankelijk mits betaling" + "description": "Een klimgelegenheid?", + "name": "Klimgelegenheiden?", + "tagRenderings": { + "climbing-opportunity-name": { + "render": "{name}" + }, + "climbing-possible": { + "mappings": { + "0": { + "then": "Klimmen is hier niet mogelijk" + }, + "1": { + "then": "Klimmen is hier niet toegelaten" + }, + "2": { + "then": "Klimmen is hier niet toegelaten" + } + } + } + }, + "title": { + "render": "Klimgelegenheid?" + } } - }, - "question": "Is dit gebied toegankelijk?", - "render": "De toegankelijkheid van dit gebied is: {access:description}" }, - "1": { - "mappings": { + "overrideAll": { + "tagRenderings+": { + "0": { + "question": "Is er een (onofficiële) website met meer informatie (b.v. met topos)?" + }, + "1": { + "mappings": { + "0": { + "then": "Een omvattend element geeft aan dat dit publiek toegangkelijk is
{_embedding_feature:access:description}" + }, + "1": { + "then": "Een omvattend element geeft aan dat een toelating nodig is om hier te klimmen
{_embedding_feature:access:description}" + } + } + }, + "4": { + "question": "Wat is de (gemiddelde) lengte van de klimroutes, in meter?", + "render": "De klimroutes zijn gemiddeld {canonical(climbing:length)} lang" + }, + "5": { + "question": "Wat is het niveau van de makkelijkste route, volgens het Franse classificatiesysteem?", + "render": "De minimale klimmoeilijkheid is {climbing:grade:french:min} volgens het Franse/Belgische systeem" + }, + "6": { + "question": "Wat is het niveau van de moeilijkste route, volgens het Franse classificatiesysteem?", + "render": "De maximale klimmoeilijkheid is {climbing:grade:french:max} volgens het Franse/Belgische systeem" + }, + "7": { + "mappings": { + "0": { + "then": "Bolderen kan hier" + }, + "1": { + "then": "Bolderen kan hier niet" + }, + "2": { + "then": "Bolderen kan hier, maar er zijn niet zoveel routes" + }, + "3": { + "then": "Er zijn hier {climbing:boulder} bolderroutes" + } + }, + "question": "Is het mogelijk om hier te bolderen?" + }, + "8": { + "mappings": { + "0": { + "then": "Toprope-klimmen kan hier" + }, + "1": { + "then": "Toprope-klimmen kan hier niet" + }, + "2": { + "then": "Er zijn hier {climbing:toprope} toprope routes" + } + }, + "question": "Is het mogelijk om hier te toprope-klimmen?" + }, + "9": { + "mappings": { + "0": { + "then": "Sportklimmen/voorklimmen kan hier" + }, + "1": { + "then": "Sportklimmen/voorklimmen kan hier niet" + }, + "2": { + "then": "Er zijn hier {climbing:sport} sportklimroutes/voorklimroutes" + } + }, + "question": "Is het mogelijk om hier te sportklimmen/voorklimmen op reeds aangebrachte haken?" + }, + "10": { + "mappings": { + "0": { + "then": "Traditioneel klimmen kan hier" + }, + "1": { + "then": "Traditioneel klimmen kan hier niet" + }, + "2": { + "then": "Er zijn hier {climbing:traditional} traditionele klimroutes" + } + }, + "question": "Is het mogelijk om hier traditioneel te klimmen?
(Dit is klimmen met klemblokjes en friends)" + }, + "11": { + "mappings": { + "0": { + "then": "Er is een snelklimmuur voor speed climbing" + }, + "1": { + "then": "Er is geen snelklimmuur voor speed climbing" + }, + "2": { + "then": "Er zijn hier {climbing:speed} snelklimmuren" + } + }, + "question": "Is er een snelklimmuur (speed climbing)?" + } + }, + "units+": { + "0": { + "applicableUnits": { + "0": { + "human": " meter" + }, + "1": { + "human": " voet" + } + } + } + } + }, + "title": "Open klimkaart" + }, + "cycle_infra": { + "description": "Een kaart waar je info over de fietsinfrastructuur kan bekijken en bewerken. Gemaakt tijdens #osoc21.", + "shortDescription": "Een kaart waar je info over de fietsinfrastructuur kan bekijken en bewerken.", + "title": "Fietsinfrastructuur" + }, + "cyclestreets": { + "description": "Een fietsstraat is een straat waar
  • automobilisten geen fietsers mogen inhalen
  • Er een maximumsnelheid van 30km/u geldt
  • Fietsers gemotoriseerde voertuigen links mogen inhalen
  • Fietsers nog steeds voorrang aan rechts moeten verlenen - ook aan auto's en voetgangers op het zebrapad


Op deze open kaart kan je alle gekende fietsstraten zien en kan je ontbrekende fietsstraten aanduiden. Om de kaart aan te passen, moet je je aanmelden met OpenStreetMap en helemaal inzoomen tot straatniveau. ", + "layers": { + "0": { + "description": "Een fietsstraat is een straat waar gemotoriseerd verkeer een fietser niet mag inhalen.", + "name": "Fietsstraten" + }, "1": { - "then": "Dit gebied wordt beheerd door Natuurpunt" + "description": "Deze straat wordt binnenkort een fietsstraat", + "name": "Toekomstige fietsstraat", + "title": { + "mappings": { + "0": { + "then": "{name} wordt fietsstraat" + } + }, + "render": "Toekomstige fietsstraat" + } }, "2": { - "then": "Dit gebied wordt beheerd door {operator}" - }, - "3": { - "then": "Dit gebied wordt beheerd door het Agentschap Natuur en Bos" + "description": "Laag waar je een straat als fietsstraat kan markeren", + "name": "Alle straten", + "title": { + "render": "Straat" + } } - }, - "question": "Wie beheert dit gebied?", - "render": "Beheer door {operator}" }, - "2": { - "render": "Extra info: {description}" - }, - "3": { - "render": "Extra info via buurtnatuur.be: {description:0}" - }, - "4": { - "question": "Wat is de Nederlandstalige naam van dit gebied?", - "render": "Dit gebied heet {name:nl}" - }, - "5": { - "mappings": { - "0": { - "then": "Dit gebied heeft geen naam" + "overrideAll": { + "tagRenderings+": { + "0": { + "mappings": { + "0": { + "then": "Deze straat is een fietsstraat (en dus zone 30)" + }, + "1": { + "then": "Deze straat is een fietsstraat" + }, + "2": { + "then": "Deze straat wordt binnenkort een fietsstraat" + }, + "3": { + "then": "Deze straat is geen fietsstraat" + } + }, + "question": "Is de straat {name} een fietsstraat?" + }, + "1": { + "question": "Wanneer wordt deze straat een fietsstraat?", + "render": "Deze straat wordt fietsstraat op {cyclestreet:start_date}" + } } - }, - "question": "Wat is de naam van dit gebied?", - "render": "Dit gebied heet {name}" - } - } + }, + "shortDescription": "Een kaart met alle gekende fietsstraten", + "title": "Fietsstraten" }, - "shortDescription": "Met deze tool kan je natuur in je buurt in kaart brengen en meer informatie geven over je favoriete plekje", - "title": "Breng jouw buurtnatuur in kaart" - }, - "cafes_and_pubs": { - "description": "Cafés, kroegen en drinkgelegenheden", - "title": "Cafés" - }, - "campersite": { - "description": "Deze website verzamelt en toont alle officiële plaatsen waar een camper mag overnachten en afvalwater kan lozen. Ook jij kan extra gegevens toevoegen, zoals welke services er geboden worden en hoeveel dit kot, ook afbeeldingen en reviews kan je toevoegen. De data wordt op OpenStreetMap opgeslagen en is dus altijd gratis te hergebruiken, ook door andere applicaties.", - "layers": { - "0": { - "description": "camperplaatsen", - "name": "Camperplaatsen", - "presets": { - "0": { - "description": "Voeg een nieuwe officiële camperplaats toe. Dit zijn speciaal aangeduide plaatsen waar het toegestaan is om te overnachten met een camper. Ze kunnen er uitzien als een parking, of soms eerder als een camping. Soms staan ze niet ter plaatse aangeduid, maar heeft de gemeente wel degelijk beslist dat dit een camperplaats is. Een parking voor campers waar je niet mag overnachten is géén camperplaats. ", - "title": "camperplaats" - } - }, - "tagRenderings": { - "caravansites-capacity": { - "question": "Hoeveel campers kunnen hier overnachten? (sla dit over als er geen duidelijk aantal plaatsen of aangeduid maximum is)", - "render": "{capacity} campers kunnen deze plaats tegelijk gebruiken" - }, - "caravansites-charge": { - "question": "Hoeveel kost deze plaats?", - "render": "Deze plaats vraagt {charge}" - }, - "caravansites-description": { - "question": "Wil je graag een algemene beschrijving toevoegen van deze plaats? (Herhaal hier niet de antwoorden op de vragen die reeds gesteld zijn. Hou het objectief - je kan je mening geven via een review)", - "render": "Meer details over deze plaats: {description}" - }, - "caravansites-fee": { - "mappings": { - "0": { - "then": "Gebruik is betalend" - }, - "1": { - "then": "Kan gratis gebruikt worden" - } - }, - "question": "Moet men betalen om deze camperplaats te gebruiken?" - }, - "caravansites-internet": { - "mappings": { - "0": { - "then": "Er is internettoegang" - }, - "1": { - "then": "Er is internettoegang" - } - } - }, - "caravansites-name": { - "question": "Wat is de naam van deze plaats?", - "render": "Deze plaats heet {name}" - }, - "caravansites-website": { - "render": "Officiële website: : {website}" - } - }, - "title": { - "mappings": { - "0": { - "then": "Camper site" - } - }, - "render": "Camperplaats {name}" - } - } + "cyclofix": { + "description": "Het doel van deze kaart is om fietsers een gebruiksvriendelijke oplossing te bieden voor het vinden van de juiste infrastructuur voor hun behoeften.

U kunt uw exacte locatie volgen (enkel mobiel) en in de linkerbenedenhoek categorieën selecteren die voor u relevant zijn. U kunt deze tool ook gebruiken om 'spelden' aan de kaart toe te voegen of te bewerken en meer gegevens te verstrekken door de vragen te beantwoorden.

Alle wijzigingen die u maakt worden automatisch opgeslagen in de wereldwijde database van OpenStreetMap en kunnen door anderen vrij worden hergebruikt.

Bekijk voor meer info over cyclofix ook cyclofix.osm.be.", + "title": "Cyclofix - een open kaart voor fietsers" }, - "shortDescription": "Vind locaties waar je de nacht kan doorbrengen met je mobilehome", - "title": "Camperplaatsen" - }, - "charging_stations": { - "shortDescription": "Een wereldwijde kaart van oplaadpunten", - "title": "Oplaadpunten" - }, - "climbing": { - "description": "Op deze kaart vind je verschillende klimgelegenheden, zoals klimzalen, bolderzalen en klimmen in de natuur", - "descriptionTail": "De klimkaart is oorspronkelijk gemaakt door Christian Neumann op kletterspots.de.", - "layers": { - "0": { - "description": "Een klimclub of organisatie", - "name": "Klimclub", - "presets": { - "0": { - "description": "Een klimclub", - "title": "Klimclub" - }, - "1": { - "description": "Een VZW die werkt rond klimmen", - "title": "Een klimorganisatie" - } - }, - "tagRenderings": { - "climbing_club-name": { - "question": "Wat is de naam van deze klimclub?", - "render": "{name}" - } - }, - "title": { - "mappings": { - "0": { - "then": "Klimorganisatie" - } - }, - "render": "Klimclub" - } - }, - "1": { - "description": "Een klimzaal", - "name": "Klimzalen", - "tagRenderings": { - "name": { - "question": "Wat is de naam van dit Klimzaal?", - "render": "{name}" - } - }, - "title": { - "mappings": { - "0": { - "then": "Klimzaal {name}" - } - }, - "render": "Klimzaal" - } - }, - "2": { - "name": "Klimroute", - "presets": { - "0": { - "title": "Klimroute" - } - }, - "tagRenderings": { - "Difficulty": { - "question": "Hoe moeilijk is deze klimroute volgens het Franse/Belgische systeem?", - "render": "De klimmoeilijkheid is {climbing:grade:french} volgens het Franse/Belgische systeem" - }, - "Length": { - "question": "Hoe lang is deze klimroute (in meters)?", - "render": "Deze klimroute is {canonical(climbing:length)} lang" - }, - "Name": { - "mappings": { - "0": { - "then": "Deze klimroute heeft geen naam" - } - }, - "question": "Hoe heet deze klimroute?", - "render": "{name}" - } - }, - "title": { - "mappings": { - "0": { - "then": "Klimroute {name}" - } - }, - "render": "Klimroute" - } - }, - "3": { - "description": "Een klimgelegenheid", - "name": "Klimgelegenheden", - "presets": { - "0": { - "description": "Een klimgelegenheid", - "title": "Klimgelegenheid" - } - }, - "tagRenderings": { - "Rock type (crag/rock/cliff only)": { - "mappings": { - "0": { - "then": "Kalksteen" - } - } - }, - "name": { - "mappings": { - "0": { - "then": "Dit Klimgelegenheid heeft geen naam" - } - }, - "question": "Wat is de naam van dit Klimgelegenheid?", - "render": "{name}" - } - }, - "title": { - "mappings": { + "drinking_water": { + "description": "Op deze kaart staan publiek toegankelijke drinkwaterpunten en kan je makkelijk een nieuw drinkwaterpunt toevoegen", + "title": "Drinkwaterpunten" + }, + "etymology": { + "description": "Op deze kaart zie je waar een plaats naar is vernoemd. De straten, gebouwen, ... komen uit OpenStreetMap, waar een link naar Wikidata werd gelegd. In de popup zie je het Wikipedia-artikel van hetgeen naarwaar het vernoemd is of de Wikidata-box.

Je kan zelf ook meehelpen!Als je ver inzoomt, krijg je alle straten te zien. Klik je een straat aan, dan krijg je een zoekfunctie waarmee je snel een nieuwe link kan leggen. Je hebt hiervoor een gratis OpenStreetMap account nodig.", + "layers": { "1": { - "then": "Klimsite {name}" + "override": { + "=name": "Straten zonder etymologische informatie" + } }, "2": { - "then": "Klimsite" - }, - "3": { - "then": "Klimgelegenheid {name}" + "override": { + "=name": "Parken en bossen zonder etymologische informatie" + } } - }, - "render": "Klimgelegenheid" - } - }, - "4": { - "description": "Een klimgelegenheid?", - "name": "Klimgelegenheiden?", - "tagRenderings": { - "climbing-opportunity-name": { - "render": "{name}" - }, - "climbing-possible": { - "mappings": { - "0": { - "then": "Klimmen is hier niet mogelijk" - }, - "1": { - "then": "Klimmen is hier niet toegelaten" - }, - "2": { - "then": "Klimmen is hier niet toegelaten" - } - } - } }, - "title": { - "render": "Klimgelegenheid?" - } - } + "shortDescription": "Wat is de oorsprong van een plaatsnaam?", + "title": "Open Etymology-kaart" }, - "overrideAll": { - "tagRenderings+": { - "0": { - "question": "Is er een (onofficiële) website met meer informatie (b.v. met topos)?" - }, - "1": { - "mappings": { + "facadegardens": { + "description": "Ontharde voortuintjes, groene gevels en bomen ín de stad brengen naast rust ook een mooiere stad, een grotere biodiversiteit, een verkoelend effect en een betere luchtkwaliteit.
Klimaan VZW en 'Mechelen Klimaatneutraal' willen met het project Klim(t)aan je Gevel bestaande en nieuwe geveltuintjes in kaart brengen als voorbeeld voor mensen zelf een tuintje willen aanleggen of voor stadwandelaars die houden van de natuur.
Meer info over het project op klimaan.be.", + "layers": { "0": { - "then": "Een omvattend element geeft aan dat dit publiek toegangkelijk is
{_embedding_feature:access:description}" - }, - "1": { - "then": "Een omvattend element geeft aan dat een toelating nodig is om hier te klimmen
{_embedding_feature:access:description}" + "description": "Geveltuintjes", + "name": "Geveltuintjes", + "presets": { + "0": { + "description": "Voeg geveltuintje toe", + "title": "geveltuintje" + } + }, + "tagRenderings": { + "facadegardens-description": { + "question": "Aanvullende omschrijving van de tuin (indien nodig, en voor zover nog niet omschreven hierboven)", + "render": "Meer details: {description}" + }, + "facadegardens-direction": { + "question": "Hoe is de tuin georiënteerd?", + "render": "Oriëntatie: {direction} (waarbij 0=N en 90=O)" + }, + "facadegardens-edible": { + "mappings": { + "0": { + "then": "Er staan eetbare planten" + }, + "1": { + "then": "Er staan geen eetbare planten" + } + }, + "question": "Staan er eetbare planten?" + }, + "facadegardens-plants": { + "mappings": { + "0": { + "then": "Er staat een klimplant" + }, + "1": { + "then": "Er staan bloeiende planten" + }, + "2": { + "then": "Er staan struiken" + }, + "3": { + "then": "Er staan bodembedekkers" + } + }, + "question": "Wat voor planten staan hier?" + }, + "facadegardens-rainbarrel": { + "mappings": { + "0": { + "then": "Er is een regenton" + }, + "1": { + "then": "Er is geen regenton" + } + }, + "question": "Is er een regenton voorzien bij het tuintje?" + }, + "facadegardens-start_date": { + "question": "Wanneer werd de tuin aangelegd? (vul gewoon een jaartal in)", + "render": "Aanlegdatum van de tuin: {start_date}" + }, + "facadegardens-sunshine": { + "mappings": { + "0": { + "then": "Het is een volle zon tuintje" + }, + "1": { + "then": "Het is een halfschaduw tuintje" + }, + "2": { + "then": "Het is een schaduw tuintje" + } + }, + "question": "Ligt de tuin in zon/half schaduw of schaduw?" + } + }, + "title": { + "render": "Geveltuintje" + } } - } }, - "4": { - "question": "Wat is de (gemiddelde) lengte van de klimroutes, in meter?", - "render": "De klimroutes zijn gemiddeld {canonical(climbing:length)} lang" - }, - "5": { - "question": "Wat is het niveau van de makkelijkste route, volgens het Franse classificatiesysteem?", - "render": "De minimale klimmoeilijkheid is {climbing:grade:french:min} volgens het Franse/Belgische systeem" - }, - "6": { - "question": "Wat is het niveau van de moeilijkste route, volgens het Franse classificatiesysteem?", - "render": "De maximale klimmoeilijkheid is {climbing:grade:french:max} volgens het Franse/Belgische systeem" - }, - "7": { - "mappings": { + "shortDescription": "Deze kaart toont geveltuintjes met foto's en bruikbare info over oriëntatie, zonlicht en planttypes.", + "title": "Straatgeveltuintjes" + }, + "food": { + "description": "Restaurants en fast food", + "title": "Eetgelegenheden" + }, + "fritures": { + "description": "Op deze kaart vind je je favoriete frituur!", + "layers": { "0": { - "then": "Bolderen kan hier" + "override": { + "name": "Frituren" + } + } + }, + "title": "Friturenkaart" + }, + "fruit_trees": { + "description": "Op deze kaart vindt je boomgaarden en fruitbomen", + "layers": { + "0": { + "name": "Boomgaarden", + "presets": { + "0": { + "description": "Voeg een boomgaard toe (als punt - omtrek nog te tekenen)", + "title": "Boomgaard" + } + }, + "title": { + "render": "Boomgaard" + } }, "1": { - "then": "Bolderen kan hier niet" + "description": "Een boom", + "name": "Boom", + "presets": { + "0": { + "description": "Voeg hier een boom toe", + "title": "Boom" + } + }, + "tagRenderings": { + "fruitboom-description": { + "question": "Welke beschrijving past bij deze boom?", + "render": "Beschrijving: {description}" + }, + "fruitboom-ref": { + "question": "Is er een refernetienummer?", + "render": "Referentienummer: {ref}" + }, + "fruitboom-species:nl": { + "question": "Wat is de soort van deze boom (in het Nederlands)?", + "render": "De soort is {species:nl}" + }, + "fruitboom-taxon": { + "question": "Wat is het taxon (ras) van deze boom?", + "render": "Het ras (taxon) van deze boom is {taxon}" + } + }, + "title": { + "render": "Boom" + } + } + }, + "shortDescription": "Boomgaarden en fruitbomen", + "title": "Open Boomgaardenkaart" + }, + "ghostbikes": { + "description": "Een Witte Fiets of Spookfiets is een aandenken aan een fietser die bij een verkeersongeval om het leven kwam. Het gaat om een fiets die volledig wit is geschilderd en in de buurt van het ongeval werd geinstalleerd.

Op deze kaart zie je alle witte fietsen die door OpenStreetMap gekend zijn. Ontbreekt er een Witte Fiets of wens je informatie aan te passen? Meld je dan aan met een (gratis) OpenStreetMap account.", + "title": "Witte Fietsen" + }, + "grb": { + "description": "Dit thema helpt het GRB importeren.", + "layers": { + "1": { + "tagRenderings": { + "grb-fixme": { + "mappings": { + "0": { + "then": "Geen fixme" + } + }, + "question": "Wat zegt de fixme?", + "render": "De fixme is {fixme}" + }, + "grb-housenumber": { + "mappings": { + "0": { + "then": "Geen huisnummer" + } + }, + "question": "Wat is het huisnummer?", + "render": "Het huisnummer is {addr:housenumber}" + }, + "grb-min-level": { + "question": "Hoeveel verdiepingen ontbreken?", + "render": "Dit gebouw begint maar op de {building:min_level} verdieping" + }, + "grb-street": { + "question": "Wat is de straat?", + "render": "De straat is {addr:street}" + }, + "grb-unit": { + "render": "De wooneenheid-aanduiding is {addr:unit} " + } + } + } + }, + "shortDescription": "Grb import helper tool", + "title": "GRB import helper" + }, + "grb_fixme": { + "description": "Gebouwen met een FIXME - wss GRB-import die gefixed moeten worden", + "layers": { + "0": { + "tagRenderings": { + "grb-fixme": { + "mappings": { + "0": { + "then": "Geen fixme" + } + }, + "question": "Wat zegt de fixme?", + "render": "De fixme is {fixme}" + }, + "grb-housenumber": { + "mappings": { + "0": { + "then": "Geen huisnummer" + } + }, + "question": "Wat is het huisnummer?", + "render": "Het huisnummer is {addr:housenumber}" + }, + "grb-min-level": { + "question": "Hoeveel verdiepingen ontbreken?", + "render": "Dit gebouw begint maar op de {building:min_level} verdieping" + }, + "grb-street": { + "question": "Wat is de straat?", + "render": "De straat is {addr:street}" + }, + "grb-unit": { + "render": "De wooneenheid-aanduiding is {addr:unit} " + } + } + } + }, + "shortDescription": "Grb Fixup", + "title": "GRB Fixup" + }, + "maps": { + "description": "Op deze kaart kan je alle kaarten zien die OpenStreetMap kent.

Ontbreekt er een kaart, dan kan je die kaart hier ook gemakelijk aan deze kaart toevoegen.", + "shortDescription": "Een kaart met alle kaarten die OpenStreetMap kent", + "title": "Een kaart met Kaarten" + }, + "missing_streets": { + "description": "Dit thema voegt automatisch straatnamen toe aan gebouwen met huisnummer en overeenkomstig CRAB-adres.", + "shortDescription": "Voegt ontbrekende straten toe aan gebouwen met huisnumer adhv CRAB", + "title": "Fix ontbrekende straten" + }, + "nature": { + "description": "Op deze kaart vind je informatie voor natuurliefhebbers, zoals info over het natuurgebied waar je inzit, vogelkijkhutten, informatieborden, ...", + "shortDescription": "Deze kaart bevat informatie voor natuurliefhebbers", + "title": "De Natuur in" + }, + "observation_towers": { + "description": "Publieke uitkijktorens om van het panorama te genieten", + "shortDescription": "Publieke uitkijktorens om van het panorama te genieten", + "title": "Uitkijktorens" + }, + "openwindpowermap": { + "layers": { + "0": { + "name": "windturbine", + "presets": { + "0": { + "title": "windturbine" + } + }, + "title": { + "render": "windturbine" + }, + "units": { + "0": { + "applicableUnits": { + "0": { + "human": " megawatt" + }, + "1": { + "human": " kilowatt" + }, + "2": { + "human": " watt" + }, + "3": { + "human": " gigawatt" + } + } + }, + "1": { + "applicableUnits": { + "0": { + "human": " meter" + } + } + } + } + } + } + }, + "parkings": { + "description": "Deze kaart toont verschillende parkeerplekken", + "shortDescription": "Deze kaart toont verschillende parkeerplekken", + "title": "Parking" + }, + "personal": { + "description": "Stel je eigen thema samen door lagen te combineren van alle andere themas", + "title": "Persoonlijk thema" + }, + "play_forests": { + "description": "Een speelbos is een zone in een bos die vrij toegankelijk is voor spelende kinderen. Deze wordt in bossen van het Agentschap Natuur en bos altijd aangeduid met het overeenkomstige bord.", + "shortDescription": "Deze kaart toont speelbossen", + "title": "Speelbossen" + }, + "playgrounds": { + "description": "Op deze kaart vind je speeltuinen en kan je zelf meer informatie en foto's toevoegen", + "shortDescription": "Een kaart met speeltuinen", + "title": "Speelplekken" + }, + "speelplekken": { + "description": "

Welkom bij de Groendoener!

De Zuidrand dat is spelen, ravotten, chillen, wandelen,… in het groen. Meer dan 200 grote en kleine speelplekken liggen er in parken, in bossen en op pleintjes te wachten om ontdekt te worden. De verschillende speelplekken werden getest én goedgekeurd door kinder- en jongerenreporters uit de Zuidrand. Met leuke challenges dagen de reporters jou uit om ook op ontdekking te gaan. Klik op een speelplek op de kaart, bekijk het filmpje en ga op verkenning!

Het project groendoener kadert binnen het strategisch project Beleefbare Open Ruimte in de Antwerpse Zuidrand en is een samenwerking tussen het departement Leefmilieu van provincie Antwerpen, Sportpret vzw, een OpenStreetMap-België Consultent en Createlli vzw. Het project kwam tot stand met steun van Departement Omgeving van de Vlaamse Overheid.
", + "layers": { + "7": { + "name": "Wandelroutes van provincie Antwerpen", + "tagRenderings": { + "walk-description": { + "render": "

Korte beschrijving:

{description}" + }, + "walk-length": { + "render": "Deze wandeling is {_length:km}km lang" + }, + "walk-operator": { + "question": "Wie beheert deze wandeling en plaatst dus de signalisatiebordjes?" + }, + "walk-operator-email": { + "question": "Naar wie kan men emailen bij problemen rond signalisatie?", + "render": "Bij problemen met signalisatie kan men emailen naar {operator:email}" + }, + "walk-type": { + "mappings": { + "0": { + "then": "Dit is een internationale wandelroute" + }, + "1": { + "then": "Dit is een nationale wandelroute" + }, + "2": { + "then": "Dit is een regionale wandelroute" + }, + "3": { + "then": "Dit is een lokale wandelroute" + } + } + } + } + } + }, + "shortDescription": "Speelplekken in de Antwerpse Zuidrand", + "title": "Welkom bij de groendoener!" + }, + "sport_pitches": { + "description": "Een sportveld is een ingerichte plaats met infrastructuur om een sport te beoefenen", + "shortDescription": "Deze kaart toont sportvelden", + "title": "Sportvelden" + }, + "street_lighting": { + "description": "Op deze kaart vind je alles over straatlantaarns", + "layers": { + "1": { + "name": "Verlichte straten", + "tagRenderings": { + "lit": { + "mappings": { + "0": { + "then": "Deze straat is verlicht" + }, + "1": { + "then": "Deze straat is niet verlicht" + }, + "2": { + "then": "Deze straat is 's nachts verlicht" + }, + "3": { + "then": "Deze straat is 24/7 verlicht" + } + }, + "question": "Is deze straat verlicht?" + } + }, + "title": { + "render": "Verlichte straat" + } }, "2": { - "then": "Bolderen kan hier, maar er zijn niet zoveel routes" - }, - "3": { - "then": "Er zijn hier {climbing:boulder} bolderroutes" + "name": "Alle straten", + "tagRenderings": { + "lit": { + "mappings": { + "0": { + "then": "Deze straat is verlicht" + }, + "1": { + "then": "Deze straat is niet verlicht" + }, + "2": { + "then": "Deze straat is 's nachts verlicht" + }, + "3": { + "then": "Deze straat is 24/7 verlicht" + } + }, + "question": "Is deze straat verlicht?" + } + }, + "title": { + "render": "Straat" + } } - }, - "question": "Is het mogelijk om hier te bolderen?" }, - "8": { - "mappings": { - "0": { - "then": "Toprope-klimmen kan hier" - }, - "1": { - "then": "Toprope-klimmen kan hier niet" - }, - "2": { - "then": "Er zijn hier {climbing:toprope} toprope routes" - } - }, - "question": "Is het mogelijk om hier te toprope-klimmen?" - }, - "9": { - "mappings": { - "0": { - "then": "Sportklimmen/voorklimmen kan hier" - }, - "1": { - "then": "Sportklimmen/voorklimmen kan hier niet" - }, - "2": { - "then": "Er zijn hier {climbing:sport} sportklimroutes/voorklimroutes" - } - }, - "question": "Is het mogelijk om hier te sportklimmen/voorklimmen op reeds aangebrachte haken?" - }, - "10": { - "mappings": { - "0": { - "then": "Traditioneel klimmen kan hier" - }, - "1": { - "then": "Traditioneel klimmen kan hier niet" - }, - "2": { - "then": "Er zijn hier {climbing:traditional} traditionele klimroutes" - } - }, - "question": "Is het mogelijk om hier traditioneel te klimmen?
(Dit is klimmen met klemblokjes en friends)" - }, - "11": { - "mappings": { - "0": { - "then": "Er is een snelklimmuur voor speed climbing" - }, - "1": { - "then": "Er is geen snelklimmuur voor speed climbing" - }, - "2": { - "then": "Er zijn hier {climbing:speed} snelklimmuren" - } - }, - "question": "Is er een snelklimmuur (speed climbing)?" - } - }, - "units+": { - "0": { - "applicableUnits": { - "0": { - "human": " meter" - }, - "1": { - "human": " voet" - } - } - } - } + "title": "Straatverlichting" }, - "title": "Open klimkaart" - }, - "cycle_infra": { - "description": "Een kaart waar je info over de fietsinfrastructuur kan bekijken en bewerken. Gemaakt tijdens #osoc21.", - "shortDescription": "Een kaart waar je info over de fietsinfrastructuur kan bekijken en bewerken.", - "title": "Fietsinfrastructuur" - }, - "cyclestreets": { - "description": "Een fietsstraat is een straat waar
  • automobilisten geen fietsers mogen inhalen
  • Er een maximumsnelheid van 30km/u geldt
  • Fietsers gemotoriseerde voertuigen links mogen inhalen
  • Fietsers nog steeds voorrang aan rechts moeten verlenen - ook aan auto's en voetgangers op het zebrapad


Op deze open kaart kan je alle gekende fietsstraten zien en kan je ontbrekende fietsstraten aanduiden. Om de kaart aan te passen, moet je je aanmelden met OpenStreetMap en helemaal inzoomen tot straatniveau. ", - "layers": { - "0": { - "description": "Een fietsstraat is een straat waar gemotoriseerd verkeer een fietser niet mag inhalen.", - "name": "Fietsstraten" - }, - "1": { - "description": "Deze straat wordt binnenkort een fietsstraat", - "name": "Toekomstige fietsstraat", - "title": { - "mappings": { - "0": { - "then": "{name} wordt fietsstraat" - } - }, - "render": "Toekomstige fietsstraat" - } - }, - "2": { - "description": "Laag waar je een straat als fietsstraat kan markeren", - "name": "Alle straten", - "title": { - "render": "Straat" - } - } + "street_lighting_assen": { + "description": "Op deze kaart vind je alles over straatlantaarns + een dataset van Assen", + "title": "Straatverlichting - Assen" }, - "overrideAll": { - "tagRenderings+": { - "0": { - "mappings": { - "0": { - "then": "Deze straat is een fietsstraat (en dus zone 30)" - }, - "1": { - "then": "Deze straat is een fietsstraat" - }, - "2": { - "then": "Deze straat wordt binnenkort een fietsstraat" - }, - "3": { - "then": "Deze straat is geen fietsstraat" - } - }, - "question": "Is de straat {name} een fietsstraat?" - }, - "1": { - "question": "Wanneer wordt deze straat een fietsstraat?", - "render": "Deze straat wordt fietsstraat op {cyclestreet:start_date}" - } - } + "surveillance": { + "description": "Op deze open kaart kan je bewakingscamera's vinden.", + "shortDescription": "Bewakingscameras en dergelijke", + "title": "Surveillance under Surveillance" }, - "shortDescription": "Een kaart met alle gekende fietsstraten", - "title": "Fietsstraten" - }, - "cyclofix": { - "description": "Het doel van deze kaart is om fietsers een gebruiksvriendelijke oplossing te bieden voor het vinden van de juiste infrastructuur voor hun behoeften.

U kunt uw exacte locatie volgen (enkel mobiel) en in de linkerbenedenhoek categorieën selecteren die voor u relevant zijn. U kunt deze tool ook gebruiken om 'spelden' aan de kaart toe te voegen of te bewerken en meer gegevens te verstrekken door de vragen te beantwoorden.

Alle wijzigingen die u maakt worden automatisch opgeslagen in de wereldwijde database van OpenStreetMap en kunnen door anderen vrij worden hergebruikt.

Bekijk voor meer info over cyclofix ook cyclofix.osm.be.", - "title": "Cyclofix - een open kaart voor fietsers" - }, - "drinking_water": { - "description": "Op deze kaart staan publiek toegankelijke drinkwaterpunten en kan je makkelijk een nieuw drinkwaterpunt toevoegen", - "title": "Drinkwaterpunten" - }, - "etymology": { - "description": "Op deze kaart zie je waar een plaats naar is vernoemd. De straten, gebouwen, ... komen uit OpenStreetMap, waar een link naar Wikidata werd gelegd. In de popup zie je het Wikipedia-artikel van hetgeen naarwaar het vernoemd is of de Wikidata-box.

Je kan zelf ook meehelpen!Als je ver inzoomt, krijg je alle straten te zien. Klik je een straat aan, dan krijg je een zoekfunctie waarmee je snel een nieuwe link kan leggen. Je hebt hiervoor een gratis OpenStreetMap account nodig.", - "layers": { - "1": { - "override": { - "name": "Straten zonder etymologische informatie" - } - }, - "2": { - "override": { - "name": "Parken en bossen zonder etymologische informatie" - } - } + "toilets": { + "description": "Een kaart met openbare toiletten", + "title": "Open Toilettenkaart" }, - "shortDescription": "Wat is de oorsprong van een plaatsnaam?", - "title": "Open Etymology-kaart" - }, - "facadegardens": { - "description": "Ontharde voortuintjes, groene gevels en bomen ín de stad brengen naast rust ook een mooiere stad, een grotere biodiversiteit, een verkoelend effect en een betere luchtkwaliteit.
Klimaan VZW en 'Mechelen Klimaatneutraal' willen met het project Klim(t)aan je Gevel bestaande en nieuwe geveltuintjes in kaart brengen als voorbeeld voor mensen zelf een tuintje willen aanleggen of voor stadwandelaars die houden van de natuur.
Meer info over het project op klimaan.be.", - "layers": { - "0": { - "description": "Geveltuintjes", - "name": "Geveltuintjes", - "presets": { - "0": { - "description": "Voeg geveltuintje toe", - "title": "geveltuintje" - } - }, - "tagRenderings": { - "facadegardens-description": { - "question": "Aanvullende omschrijving van de tuin (indien nodig, en voor zover nog niet omschreven hierboven)", - "render": "Meer details: {description}" - }, - "facadegardens-direction": { - "question": "Hoe is de tuin georiënteerd?", - "render": "Oriëntatie: {direction} (waarbij 0=N en 90=O)" - }, - "facadegardens-edible": { - "mappings": { - "0": { - "then": "Er staan eetbare planten" - }, - "1": { - "then": "Er staan geen eetbare planten" - } - }, - "question": "Staan er eetbare planten?" - }, - "facadegardens-plants": { - "mappings": { - "0": { - "then": "Er staat een klimplant" - }, - "1": { - "then": "Er staan bloeiende planten" - }, - "2": { - "then": "Er staan struiken" - }, - "3": { - "then": "Er staan bodembedekkers" - } - }, - "question": "Wat voor planten staan hier?" - }, - "facadegardens-rainbarrel": { - "mappings": { - "0": { - "then": "Er is een regenton" - }, - "1": { - "then": "Er is geen regenton" - } - }, - "question": "Is er een regenton voorzien bij het tuintje?" - }, - "facadegardens-start_date": { - "question": "Wanneer werd de tuin aangelegd? (vul gewoon een jaartal in)", - "render": "Aanlegdatum van de tuin: {start_date}" - }, - "facadegardens-sunshine": { - "mappings": { - "0": { - "then": "Het is een volle zon tuintje" - }, - "1": { - "then": "Het is een halfschaduw tuintje" - }, - "2": { - "then": "Het is een schaduw tuintje" - } - }, - "question": "Ligt de tuin in zon/half schaduw of schaduw?" - } - }, - "title": { - "render": "Geveltuintje" - } - } + "trees": { + "description": "Breng bomen in kaart!", + "shortDescription": "Breng bomen in kaart", + "title": "Bomen" }, - "shortDescription": "Deze kaart toont geveltuintjes met foto's en bruikbare info over oriëntatie, zonlicht en planttypes.", - "title": "Straatgeveltuintjes" - }, - "food": { - "description": "Restaurants en fast food", - "title": "Eetgelegenheden" - }, - "fritures": { - "description": "Op deze kaart vind je je favoriete frituur!", - "layers": { - "0": { - "override": { - "name": "Frituren" - } - } + "waste": { + "description": "Kaart met afvalbakken en recyclingfaciliteiten.", + "title": "Afval" }, - "title": "Friturenkaart" - }, - "fruit_trees": { - "description": "Op deze kaart vindt je boomgaarden en fruitbomen", - "layers": { - "0": { - "name": "Boomgaarden", - "presets": { - "0": { - "description": "Voeg een boomgaard toe (als punt - omtrek nog te tekenen)", - "title": "Boomgaard" - } - }, - "title": { - "render": "Boomgaard" - } - }, - "1": { - "description": "Een boom", - "name": "Boom", - "presets": { - "0": { - "description": "Voeg hier een boom toe", - "title": "Boom" - } - }, - "tagRenderings": { - "fruitboom-description": { - "question": "Welke beschrijving past bij deze boom?", - "render": "Beschrijving: {description}" - }, - "fruitboom-ref": { - "question": "Is er een refernetienummer?", - "render": "Referentienummer: {ref}" - }, - "fruitboom-species:nl": { - "question": "Wat is de soort van deze boom (in het Nederlands)?", - "render": "De soort is {species:nl}" - }, - "fruitboom-taxon": { - "question": "Wat is het taxon (ras) van deze boom?", - "render": "Het ras (taxon) van deze boom is {taxon}" - } - }, - "title": { - "render": "Boom" - } - } + "waste_assen": { + "description": "Kaart met afvalbakken en recyclingfaciliteiten + een dataset voor Assen.", + "title": "Afval - Assen" }, - "shortDescription": "Boomgaarden en fruitbomen", - "title": "Open Boomgaardenkaart" - }, - "ghostbikes": { - "description": "Een Witte Fiets of Spookfiets is een aandenken aan een fietser die bij een verkeersongeval om het leven kwam. Het gaat om een fiets die volledig wit is geschilderd en in de buurt van het ongeval werd geinstalleerd.

Op deze kaart zie je alle witte fietsen die door OpenStreetMap gekend zijn. Ontbreekt er een Witte Fiets of wens je informatie aan te passen? Meld je dan aan met een (gratis) OpenStreetMap account.", - "title": "Witte Fietsen" - }, - "grb": { - "description": "GRB Fixup", - "layers": { - "3": { - "description": "Dit gebouw heeft een foutmelding", - "name": "Fixmes op gebouwen", - "tagRenderings": { - "grb-fixme": { - "mappings": { - "0": { - "then": "Geen fixme" - } - }, - "question": "Wat zegt de fixme?", - "render": "De fixme is {fixme}" - }, - "grb-housenumber": { - "mappings": { - "0": { - "then": "Geen huisnummer" - } - }, - "question": "Wat is het huisnummer?", - "render": "Het huisnummer is {addr:housenumber}" - }, - "grb-min-level": { - "question": "Hoeveel verdiepingen ontbreken?", - "render": "Dit gebouw begint maar op de {building:min_level} verdieping" - }, - "grb-street": { - "question": "Wat is de straat?", - "render": "De straat is {addr:street}" - }, - "grb-unit": { - "render": "De wooneenheid-aanduiding is {addr:unit} " - } - }, - "title": { - "mappings": { - "0": { - "then": "{fixme}" - } - }, - "render": "{addr:street} {addr:housenumber}" - } - }, - "5": { - "description": "Dit gebouw heeft een foutmelding", - "name": "Fixmes op gebouwen", - "tagRenderings": { - "grb-fixme": { - "mappings": { - "0": { - "then": "Geen fixme" - } - }, - "question": "Wat zegt de fixme?", - "render": "De fixme is {fixme}" - }, - "grb-housenumber": { - "mappings": { - "0": { - "then": "Geen huisnummer" - } - }, - "question": "Wat is het huisnummer?", - "render": "Het huisnummer is {addr:housenumber}" - }, - "grb-min-level": { - "question": "Hoeveel verdiepingen ontbreken?", - "render": "Dit gebouw begint maar op de {building:min_level} verdieping" - }, - "grb-street": { - "question": "Wat is de straat?", - "render": "De straat is {addr:street}" - }, - "grb-unit": { - "render": "De wooneenheid-aanduiding is {addr:unit} " - } - }, - "title": { - "mappings": { - "0": { - "then": "{fixme}" - } - }, - "render": "{addr:street} {addr:housenumber}" - } - } - }, - "shortDescription": "Grb Fixup", - "title": "GRB Fixup" - }, - "maps": { - "description": "Op deze kaart kan je alle kaarten zien die OpenStreetMap kent.

Ontbreekt er een kaart, dan kan je die kaart hier ook gemakelijk aan deze kaart toevoegen.", - "shortDescription": "Een kaart met alle kaarten die OpenStreetMap kent", - "title": "Een kaart met Kaarten" - }, - "nature": { - "description": "Op deze kaart vind je informatie voor natuurliefhebbers, zoals info over het natuurgebied waar je inzit, vogelkijkhutten, informatieborden, ...", - "shortDescription": "Deze kaart bevat informatie voor natuurliefhebbers", - "title": "De Natuur in" - }, - "natuurpunt": { - "description": "Op deze kaart vind je alle natuurgebieden die Natuurpunt ter beschikking stelt", - "shortDescription": "Deze kaart toont de natuurgebieden van Natuurpunt", - "title": "Natuurgebieden" - }, - "observation_towers": { - "description": "Publieke uitkijktorens om van het panorama te genieten", - "shortDescription": "Publieke uitkijktorens om van het panorama te genieten", - "title": "Uitkijktorens" - }, - "openwindpowermap": { - "layers": { - "0": { - "name": "windturbine", - "presets": { - "0": { - "title": "windturbine" - } - }, - "title": { - "render": "windturbine" - }, - "units": { - "0": { - "applicableUnits": { - "0": { - "human": " megawatt" - }, - "1": { - "human": " kilowatt" - }, - "2": { - "human": " watt" - }, - "3": { - "human": " gigawatt" - } - } - }, - "1": { - "applicableUnits": { - "0": { - "human": " meter" - } - } - } - } - } + "waste_basket": { + "description": "Op deze kaart vind je vuilnisbakken waar je afval in kan smijten. Ontbreekt er een vuilnisbak? Dan kan je die zelf toevoegen", + "shortDescription": "Een kaart met vuilnisbakken", + "title": "Vuilnisbak" } - }, - "parkings": { - "description": "Deze kaart toont verschillende parkeerplekken", - "shortDescription": "Deze kaart toont verschillende parkeerplekken", - "title": "Parking" - }, - "personal": { - "description": "Stel je eigen thema samen door lagen te combineren van alle andere themas", - "title": "Persoonlijk thema" - }, - "play_forests": { - "description": "Een speelbos is een zone in een bos die vrij toegankelijk is voor spelende kinderen. Deze wordt in bossen van het Agentschap Natuur en bos altijd aangeduid met het overeenkomstige bord.", - "shortDescription": "Deze kaart toont speelbossen", - "title": "Speelbossen" - }, - "playgrounds": { - "description": "Op deze kaart vind je speeltuinen en kan je zelf meer informatie en foto's toevoegen", - "shortDescription": "Een kaart met speeltuinen", - "title": "Speelplekken" - }, - "speelplekken": { - "description": "

Welkom bij de Groendoener!

De Zuidrand dat is spelen, ravotten, chillen, wandelen,… in het groen. Meer dan 200 grote en kleine speelplekken liggen er in parken, in bossen en op pleintjes te wachten om ontdekt te worden. De verschillende speelplekken werden getest én goedgekeurd door kinder- en jongerenreporters uit de Zuidrand. Met leuke challenges dagen de reporters jou uit om ook op ontdekking te gaan. Klik op een speelplek op de kaart, bekijk het filmpje en ga op verkenning!

Het project groendoener kadert binnen het strategisch project Beleefbare Open Ruimte in de Antwerpse Zuidrand en is een samenwerking tussen het departement Leefmilieu van provincie Antwerpen, Sportpret vzw, een OpenStreetMap-België Consultent en Createlli vzw. Het project kwam tot stand met steun van Departement Omgeving van de Vlaamse Overheid.
", - "layers": { - "7": { - "name": "Wandelroutes van provincie Antwerpen", - "tagRenderings": { - "walk-description": { - "render": "

Korte beschrijving:

{description}" - }, - "walk-length": { - "render": "Deze wandeling is {_length:km}km lang" - }, - "walk-operator": { - "question": "Wie beheert deze wandeling en plaatst dus de signalisatiebordjes?" - }, - "walk-operator-email": { - "question": "Naar wie kan men emailen bij problemen rond signalisatie?", - "render": "Bij problemen met signalisatie kan men emailen naar {operator:email}" - }, - "walk-type": { - "mappings": { - "0": { - "then": "Dit is een internationale wandelroute" - }, - "1": { - "then": "Dit is een nationale wandelroute" - }, - "2": { - "then": "Dit is een regionale wandelroute" - }, - "3": { - "then": "Dit is een lokale wandelroute" - } - } - } - } - } - }, - "shortDescription": "Speelplekken in de Antwerpse Zuidrand", - "title": "Welkom bij de groendoener!" - }, - "sport_pitches": { - "description": "Een sportveld is een ingerichte plaats met infrastructuur om een sport te beoefenen", - "shortDescription": "Deze kaart toont sportvelden", - "title": "Sportvelden" - }, - "street_lighting": { - "description": "Op deze kaart vind je alles over straatlantaarns", - "layers": { - "1": { - "name": "Verlichte straten", - "tagRenderings": { - "lit": { - "mappings": { - "0": { - "then": "Deze straat is verlicht" - }, - "1": { - "then": "Deze straat is niet verlicht" - }, - "2": { - "then": "Deze straat is 's nachts verlicht" - }, - "3": { - "then": "Deze straat is 24/7 verlicht" - } - }, - "question": "Is deze straat verlicht?" - } - }, - "title": { - "render": "Verlichte straat" - } - }, - "2": { - "name": "Alle straten", - "tagRenderings": { - "lit": { - "mappings": { - "0": { - "then": "Deze straat is verlicht" - }, - "1": { - "then": "Deze straat is niet verlicht" - }, - "2": { - "then": "Deze straat is 's nachts verlicht" - }, - "3": { - "then": "Deze straat is 24/7 verlicht" - } - }, - "question": "Is deze straat verlicht?" - } - }, - "title": { - "render": "Straat" - } - } - }, - "title": "Straatverlichting" - }, - "street_lighting_assen": { - "description": "Op deze kaart vind je alles over straatlantaarns + een dataset van Assen", - "title": "Straatverlichting - Assen" - }, - "surveillance": { - "description": "Op deze open kaart kan je bewakingscamera's vinden.", - "shortDescription": "Bewakingscameras en dergelijke", - "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", - "shortDescription": "Een kaart om toeristisch relevante info op aan te duiden", - "title": "Toeristisch relevante info" - }, - "toilets": { - "description": "Een kaart met openbare toiletten", - "title": "Open Toilettenkaart" - }, - "trees": { - "description": "Breng bomen in kaart!", - "shortDescription": "Breng bomen in kaart", - "title": "Bomen" - }, - "uk_addresses": { - "description": "Draag bij aan OpenStreetMap door adresinformatie in te vullen", - "layers": { - "2": { - "description": "Adressen", - "tagRenderings": { - "uk_addresses_housenumber": { - "mappings": { - "0": { - "then": "Dit gebouw heeft geen huisnummer" - } - }, - "render": "Het huisnummer is {addr:housenumber}" - } - } - } - } - }, - "waste_basket": { - "description": "Op deze kaart vind je vuilnisbakken waar je afval in kan smijten. Ontbreekt er een vuilnisbak? Dan kan je die zelf toevoegen", - "shortDescription": "Een kaart met vuilnisbakken", - "title": "Vuilnisbak" - } } \ No newline at end of file diff --git a/langs/themes/pl.json b/langs/themes/pl.json index afaf282d97..96cade8581 100644 --- a/langs/themes/pl.json +++ b/langs/themes/pl.json @@ -1,24 +1,28 @@ { - "aed": { - "description": "Na tej mapie można znaleźć i oznaczyć defibrylatory w okolicy", - "title": "Otwórz mapę AED" - }, - "artwork": { - "title": "Otwórz mapę dzieł sztuki" - }, - "ghostbikes": { - "title": "Duch roweru" - }, - "surveillance": { - "description": "Na tej otwartej mapie można znaleźć kamery monitoringu.", - "shortDescription": "Kamery monitorujące i inne środki nadzoru" - }, - "toilets": { - "description": "Mapa toalet publicznych", - "title": "Mapa otwartych toalet" - }, - "trees": { - "shortDescription": "Sporządzić mapę wszystkich drzew", - "title": "Drzewa" - } + "aed": { + "description": "Na tej mapie można znaleźć i oznaczyć defibrylatory w okolicy", + "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" + }, + "surveillance": { + "description": "Na tej otwartej mapie można znaleźć kamery monitoringu.", + "shortDescription": "Kamery monitorujące i inne środki nadzoru" + }, + "toilets": { + "description": "Mapa toalet publicznych", + "title": "Mapa otwartych toalet" + }, + "trees": { + "shortDescription": "Sporządzić mapę wszystkich drzew", + "title": "Drzewa" + } } \ No newline at end of file diff --git a/langs/themes/pt_BR.json b/langs/themes/pt_BR.json index 2116e8d9d6..37227204d5 100644 --- a/langs/themes/pt_BR.json +++ b/langs/themes/pt_BR.json @@ -1,172 +1,172 @@ { - "aed": { - "description": "Neste mapa, pode-se encontrar e marcar desfibriladores próximos", - "title": "Abrir mapa AED" - }, - "benches": { - "shortDescription": "Um mapa de bancadas", - "title": "Bancadas" - }, - "bicyclelib": { - "title": "Bibliotecas de bicicletas" - }, - "bookcases": { - "title": "Abrir Mapa de Estantes" - }, - "campersite": { - "layers": { - "0": { - "description": "Locais de acampamento", - "name": "Locais de acampamento", - "presets": { - "0": { - "title": "local de acampamento" - } - }, - "tagRenderings": { - "caravansites-capacity": { - "question": "Quantos campistas podem ficar aqui? (pule se não houver um número óbvio de vagas ou veículos permitidos)", - "render": "{capacity} campistas podem usar este lugar ao mesmo tempo" - }, - "caravansites-charge": { - "question": "Quanto este lugar cobra?", - "render": "Este lugar cobra {charge}" - }, - "caravansites-description": { - "render": "Mais detalhes sobre este lugar: {description}" - }, - "caravansites-fee": { - "mappings": { - "0": { - "then": "Você precisa pagar para usar" - }, - "1": { - "then": "Pode ser usado de graça" - } - }, - "question": "Este lugar cobra alguma taxa?" - }, - "caravansites-internet": { - "mappings": { - "0": { - "then": "Há acesso à internet" - }, - "1": { - "then": "Há acesso à Internet" - }, - "2": { - "then": "Não há acesso à internet" - } - }, - "question": "Este lugar fornece acesso a internet?" - }, - "caravansites-internet-fee": { - "mappings": { - "0": { - "then": "Você precisa pagar um extra pelo acesso à internet" - }, - "1": { - "then": "Você não precisa pagar um extra pelo acesso à internet" - } - }, - "question": "Você tem que pagar pelo acesso à internet?" - }, - "caravansites-long-term": { - "mappings": { - "0": { - "then": "Sim, há alguns pontos para aluguel a longo prazo, mas você também pode ficar em uma base diária" - }, - "1": { - "then": "Não, não há hóspedes permanentes aqui" - } - }, - "question": "Este lugar oferece vagas para aluguel a longo prazo?" - }, - "caravansites-name": { - "question": "Qual o nome deste lugar?", - "render": "Este lugar é chamado de {name}" - }, - "caravansites-sanitary-dump": { - "mappings": { - "0": { - "then": "Este local tem uma estação de aterro sanitário" - }, - "1": { - "then": "Este local não tem uma estação de aterro sanitário" - } - }, - "question": "Este local tem uma estação de aterro sanitário?" - }, - "caravansites-toilets": { - "mappings": { - "0": { - "then": "Este lugar tem banheiros" - }, - "1": { - "then": "Este lugar não tem banheiros" - } - }, - "question": "Este lugar tem banheiros?" - }, - "caravansites-website": { - "question": "Este lugar tem um website?", - "render": "Site oficial: {website}" - } - }, - "title": { - "mappings": { - "0": { - "then": "Locais de acampamento sem nome" - } - }, - "render": "Local de acampamento {name}" - } - }, - "1": { - "description": "Estações de despejo sanitário", - "name": "Estações de despejo sanitário", - "tagRenderings": { - "dumpstations-charge": { - "question": "Quanto este lugar cobra?", - "render": "Este lugar cobra {charge}" - }, - "dumpstations-fee": { - "mappings": { - "0": { - "then": "Você precisa pagar pelo uso" - }, - "1": { - "then": "Pode ser usado gratuitamente" - } - }, - "question": "Este lugar cobra alguma taxa?" - }, - "dumpstations-waterpoint": { - "mappings": { - "0": { - "then": "Este lugar tem um ponto de água" - }, - "1": { - "then": "Este lugar não tem um ponto de água" - } - }, - "question": "Este lugar tem um ponto de água?" - } - }, - "title": { - "mappings": { - "0": { - "then": "Estação de despejo" - } - }, - "render": "Estação de despejo {nome}" - } - } + "aed": { + "description": "Neste mapa, pode-se encontrar e marcar desfibriladores próximos", + "title": "Abrir mapa AED" }, - "shortDescription": "Encontre locais para passar a noite com o seu campista", - "title": "Locais de acampamento" - }, - "ghostbikes": { - "title": "Bicicleta fantasma" - } + "benches": { + "shortDescription": "Um mapa de bancadas", + "title": "Bancadas" + }, + "bicyclelib": { + "title": "Bibliotecas de bicicletas" + }, + "bookcases": { + "title": "Abrir Mapa de Estantes" + }, + "campersite": { + "layers": { + "0": { + "description": "Locais de acampamento", + "name": "Locais de acampamento", + "presets": { + "0": { + "title": "local de acampamento" + } + }, + "tagRenderings": { + "caravansites-capacity": { + "question": "Quantos campistas podem ficar aqui? (pule se não houver um número óbvio de vagas ou veículos permitidos)", + "render": "{capacity} campistas podem usar este lugar ao mesmo tempo" + }, + "caravansites-charge": { + "question": "Quanto este lugar cobra?", + "render": "Este lugar cobra {charge}" + }, + "caravansites-description": { + "render": "Mais detalhes sobre este lugar: {description}" + }, + "caravansites-fee": { + "mappings": { + "0": { + "then": "Você precisa pagar para usar" + }, + "1": { + "then": "Pode ser usado de graça" + } + }, + "question": "Este lugar cobra alguma taxa?" + }, + "caravansites-internet": { + "mappings": { + "0": { + "then": "Há acesso à internet" + }, + "1": { + "then": "Há acesso à Internet" + }, + "2": { + "then": "Não há acesso à internet" + } + }, + "question": "Este lugar fornece acesso a internet?" + }, + "caravansites-internet-fee": { + "mappings": { + "0": { + "then": "Você precisa pagar um extra pelo acesso à internet" + }, + "1": { + "then": "Você não precisa pagar um extra pelo acesso à internet" + } + }, + "question": "Você tem que pagar pelo acesso à internet?" + }, + "caravansites-long-term": { + "mappings": { + "0": { + "then": "Sim, há alguns pontos para aluguel a longo prazo, mas você também pode ficar em uma base diária" + }, + "1": { + "then": "Não, não há hóspedes permanentes aqui" + } + }, + "question": "Este lugar oferece vagas para aluguel a longo prazo?" + }, + "caravansites-name": { + "question": "Qual o nome deste lugar?", + "render": "Este lugar é chamado de {name}" + }, + "caravansites-sanitary-dump": { + "mappings": { + "0": { + "then": "Este local tem uma estação de aterro sanitário" + }, + "1": { + "then": "Este local não tem uma estação de aterro sanitário" + } + }, + "question": "Este local tem uma estação de aterro sanitário?" + }, + "caravansites-toilets": { + "mappings": { + "0": { + "then": "Este lugar tem banheiros" + }, + "1": { + "then": "Este lugar não tem banheiros" + } + }, + "question": "Este lugar tem banheiros?" + }, + "caravansites-website": { + "question": "Este lugar tem um website?", + "render": "Site oficial: {website}" + } + }, + "title": { + "mappings": { + "0": { + "then": "Locais de acampamento sem nome" + } + }, + "render": "Local de acampamento {name}" + } + }, + "1": { + "description": "Estações de despejo sanitário", + "name": "Estações de despejo sanitário", + "tagRenderings": { + "dumpstations-charge": { + "question": "Quanto este lugar cobra?", + "render": "Este lugar cobra {charge}" + }, + "dumpstations-fee": { + "mappings": { + "0": { + "then": "Você precisa pagar pelo uso" + }, + "1": { + "then": "Pode ser usado gratuitamente" + } + }, + "question": "Este lugar cobra alguma taxa?" + }, + "dumpstations-waterpoint": { + "mappings": { + "0": { + "then": "Este lugar tem um ponto de água" + }, + "1": { + "then": "Este lugar não tem um ponto de água" + } + }, + "question": "Este lugar tem um ponto de água?" + } + }, + "title": { + "mappings": { + "0": { + "then": "Estação de despejo" + } + }, + "render": "Estação de despejo {name}" + } + } + }, + "shortDescription": "Encontre locais para passar a noite com o seu campista", + "title": "Locais de acampamento" + }, + "ghostbikes": { + "title": "Bicicleta fantasma" + } } \ No newline at end of file diff --git a/langs/themes/ru.json b/langs/themes/ru.json index 504e3b9cde..fdc231a61f 100644 --- a/langs/themes/ru.json +++ b/langs/themes/ru.json @@ -1,511 +1,534 @@ { - "aed": { - "description": "На этой карте вы можете найти и отметить ближайшие дефибрилляторы", - "title": "Открытая карта АВД (Автоматизированных внешних дефибрилляторов)" - }, - "artwork": { - "description": "Добро пожаловать на Open Artwork Map, карту статуй, бюстов, граффити и других произведений искусства по всему миру", - "title": "Открытая карта произведений искусства" - }, - "benches": { - "description": "На этой карте показаны все скамейки, записанные в OpenStreetMap: отдельные скамейки, а также скамейки, относящиеся к остановкам общественного транспорта или навесам. Имея учётную запись OpenStreetMap, вы можете наносить на карту новые скамейки или редактировать информацию о существующих скамейках.", - "shortDescription": "Карта скамеек", - "title": "Скамейки" - }, - "bicyclelib": { - "description": "Велосипедная библиотека - это место, где велосипеды можно взять на время, часто за небольшую ежегодную плату. Примером использования являются библиотеки велосипедов для детей, что позволяет им сменить велосипед на больший, когда они перерастают свой нынешний велосипед", - "title": "Велосипедные библиотеки" - }, - "bookcases": { - "description": "Общественный книжный шкаф - это небольшой уличный шкаф, коробка, старый телефонный аппарат или другие предметы, где хранятся книги. Каждый может положить или взять книгу. Цель этой карты - собрать все эти книжные шкафы. Вы можете обнаружить новые книжные шкафы поблизости и, имея бесплатный аккаунт OpenStreetMap, быстро добавить свои любимые книжные шкафы.", - "title": "Открытая карта книжных шкафов" - }, - "campersite": { - "description": "На этом сайте собраны все официальные места остановки кемперов и места, где можно сбросить серую и черную воду. Вы можете добавить подробную информацию о предоставляемых услугах и их стоимости. Добавлять фотографии и отзывы. Это веб-сайт и веб-приложение. Данные хранятся в OpenStreetMap, поэтому они будут бесплатными всегда и могут быть повторно использованы любым приложением.", - "layers": { - "0": { - "description": "площадки для кемпинга", - "name": "Площадки для кемпинга", - "presets": { - "0": { - "description": "Добавьте новую официальную площадку для кемпинга. Это специально отведённые места для ночлега с автофургоном. Они могут выглядеть как настоящий кемпинг или просто выглядеть как парковка. Они не могут быть обозначены вообще, а просто быть определены в муниципальном решении. Обычная парковка, предназначенная для отдыхающих, где не ожидается, что они проведут ночь это -НЕ- площадка для кемпинга ", - "title": "площадка для кемпинга" - } - }, - "tagRenderings": { - "caravansites-capacity": { - "question": "Сколько кемперов может здесь остановиться? (пропустите, если нет очевидного количества мест или разрешённых транспортных средств)", - "render": "{capacity} кемперов могут использовать это место одновременно" - }, - "caravansites-charge": { - "question": "Сколько это место взимает?", - "render": "Это место взимает {charge}" - }, - "caravansites-description": { - "question": "Хотели бы вы добавить общее описание этого места? (Не повторяйте информацию, которая уже написана выше или на которую вы уже ответили ранее. Пожалуйста, будьте объективны - мнения должны быть в отзывах)", - "render": "Более подробная информация об этом месте: {description}" - }, - "caravansites-fee": { - "mappings": { - "0": { - "then": "За использование нужно платить" - }, - "1": { - "then": "Можно использовать бесплатно" - } - }, - "question": "Взимается ли в этом месте плата?" - }, - "caravansites-internet": { - "mappings": { - "0": { - "then": "Есть доступ в Интернет" - }, - "1": { - "then": "Есть доступ в Интернет" - }, - "2": { - "then": "Нет доступа в Интернет" - } - }, - "question": "Предоставляет ли это место доступ в Интернет?" - }, - "caravansites-internet-fee": { - "mappings": { - "0": { - "then": "За доступ в Интернет нужно платить дополнительно" - }, - "1": { - "then": "Вам не нужно платить дополнительно за доступ в Интернет" - } - }, - "question": "Нужно ли платить за доступ в Интернет?" - }, - "caravansites-long-term": { - "mappings": { - "0": { - "then": "Да, здесь есть места для долгосрочной аренды, но вы можете остановиться и на сутки" - }, - "1": { - "then": "Нет, здесь нет постоянных гостей" - }, - "2": { - "then": "Здесь можно остановиться, только если у вас долгосрочный контракт (это место исчезнет с этой карты, если вы выберете это)" - } - }, - "question": "Предлагает ли эта площадка места для долгосрочной аренды?" - }, - "caravansites-name": { - "question": "Как называется это место?", - "render": "Это место называется {name}" - }, - "caravansites-sanitary-dump": { - "mappings": { - "0": { - "then": "В этом кемпинге есть место для слива отходов из туалетных резервуаров" - }, - "1": { - "then": "В этом кемпинге нет места для слива отходов из туалетных резервуаров" - } - }, - "question": "В этом кемпинге есть место для слива отходов из туалетных резервуаров?" - }, - "caravansites-toilets": { - "mappings": { - "0": { - "then": "В этом месте есть туалеты" - }, - "1": { - "then": "В этом месте нет туалетов" - } - }, - "question": "Здесь есть туалеты?" - }, - "caravansites-website": { - "question": "Есть ли у этого места веб-сайт?", - "render": "Официальный сайт: {website}" - } - }, - "title": { - "mappings": { - "0": { - "then": "Место для кемпинга без названия" - } - }, - "render": "Место для кемпинга {name}" - } - }, - "1": { - "description": "Ассенизационные сливные станции", - "name": "Места для слива отходов из туалетных резервуаров", - "tagRenderings": { - "dumpstations-access": { - "mappings": { - "2": { - "then": "Любой может воспользоваться этой станцией утилизации" - }, - "3": { - "then": "Любой может воспользоваться этой станцией утилизации" - } - }, - "question": "Кто может использовать эту станцию утилизации?" - }, - "dumpstations-charge": { - "question": "Сколько это место взимает?", - "render": "Это место взимает {charge}" - }, - "dumpstations-chemical-waste": { - "mappings": { - "0": { - "then": "Вы можете утилизировать отходы химических туалетов здесь" - }, - "1": { - "then": "Здесь нельзя утилизировать отходы химических туалетов" - } - }, - "question": "Можно ли здесь утилизировать отходы химических туалетов?" - }, - "dumpstations-fee": { - "mappings": { - "0": { - "then": "За использование нужно платить" - }, - "1": { - "then": "Можно использовать бесплатно" - } - }, - "question": "Взимается ли в этом месте плата?" - }, - "dumpstations-grey-water": { - "mappings": { - "0": { - "then": "Вы можете утилизировать серую воду здесь" - }, - "1": { - "then": "Здесь нельзя утилизировать серую воду" - } - }, - "question": "Можно ли здесь утилизировать серую воду?" - }, - "dumpstations-network": { - "question": "К какой сети относится эта станция? (пропустите, если неприменимо)", - "render": "Эта станция - часть сети {network}" - }, - "dumpstations-waterpoint": { - "mappings": { - "0": { - "then": "В этом месте есть водоснабжение" - }, - "1": { - "then": "В этом месте нет водоснабжения" - } - }, - "question": "Есть ли в этом месте водоснабжение?" - } - }, - "title": { - "mappings": { - "0": { - "then": "Ассенизационная сливная станция" - } - }, - "render": "Ассенизационная сливная станция {name}" - } - } + "aed": { + "description": "На этой карте вы можете найти и отметить ближайшие дефибрилляторы", + "title": "Открытая карта АВД (Автоматизированных внешних дефибрилляторов)" }, - "shortDescription": "Найти места остановки, чтобы провести ночь в автофургоне", - "title": "Кемпинги" - }, - "charging_stations": { - "description": "На этой карте вы можно найти и отметить информацию о зарядных станциях" - }, - "climbing": { - "description": "На этой карте вы найдете различные возможности для скалолазания, такие как скалодромы, залы для боулдеринга и скалы на природе.", - "descriptionTail": "Создатель карты скалолазания — Christian Neumann. Пожалуйста, пишите если у вас есть отзыв или вопросы.

Проект использует данные OpenStreetMap.

", - "layers": { - "0": { - "name": "Клуб скалолазания", - "presets": { - "0": { - "description": "Клуб скалолазания", - "title": "Клуб скалолазания" - } - }, - "tagRenderings": { - "climbing_club-name": { - "render": "{name}" - } - }, - "title": { - "render": "Клуб скалолазания" - } - }, - "1": { - "tagRenderings": { - "name": { - "render": "{name}" - } - } - }, - "2": { - "tagRenderings": { - "Name": { - "render": "{name}" - } - } - }, - "3": { - "tagRenderings": { - "name": { - "render": "{name}" - } - } - }, - "4": { - "tagRenderings": { - "climbing-opportunity-name": { - "render": "{name}" - } - } - } + "artwork": { + "description": "Добро пожаловать на открытую карта произведений искусства - карту статуй, бюстов, граффити и других произведений искусства по всему миру", + "title": "Открытая карта произведений искусства" }, - "overrideAll": { - "tagRenderings+": { - "0": { - "question": "Есть ли (неофициальный) веб-сайт с более подробной информацией (напр., topos)?" - }, - "2": { - "mappings": { - "3": { - "then": "Только членам клуба" - } - } - }, - "9": { - "mappings": { + "benches": { + "description": "На этой карте показаны все скамейки, записанные в OpenStreetMap: отдельные скамейки, а также скамейки, относящиеся к остановкам общественного транспорта или навесам. Имея учётную запись OpenStreetMap, вы можете наносить на карту новые скамейки или редактировать информацию о существующих скамейках.", + "shortDescription": "Карта скамеек", + "title": "Скамейки" + }, + "bicyclelib": { + "description": "Велосипедная библиотека - это место, где велосипеды можно взять на время, часто за небольшую ежегодную плату. Примером использования являются библиотеки велосипедов для детей, что позволяет им сменить велосипед на больший, когда они перерастают свой нынешний велосипед", + "title": "Велосипедные библиотеки" + }, + "bookcases": { + "description": "Общественный книжный шкаф - это небольшой уличный шкаф, коробка, старый телефонный аппарат или другие предметы, где хранятся книги. Каждый может положить или взять книгу. Цель этой карты - собрать все эти книжные шкафы. Вы можете обнаружить новые книжные шкафы поблизости и, имея бесплатный аккаунт OpenStreetMap, быстро добавить свои любимые книжные шкафы.", + "title": "Открытая карта книжных шкафов" + }, + "cafes_and_pubs": { + "title": "Кафе и пабы" + }, + "campersite": { + "description": "На этом сайте собраны все официальные места остановки кемперов и места, где можно сбросить серую и черную воду. Вы можете добавить подробную информацию о предоставляемых услугах и их стоимости. Добавлять фотографии и отзывы. Это веб-сайт и веб-приложение. Данные хранятся в OpenStreetMap, поэтому они будут бесплатными всегда и могут быть повторно использованы любым приложением.", + "layers": { "0": { - "then": "Здесь можно заняться спортивным скалолазанием" + "description": "площадки для кемпинга", + "name": "Площадки для кемпинга", + "presets": { + "0": { + "description": "Добавьте новую официальную площадку для кемпинга. Это специально отведённые места для ночлега с автофургоном. Они могут выглядеть как настоящий кемпинг или просто выглядеть как парковка. Они не могут быть обозначены вообще, а просто быть определены в муниципальном решении. Обычная парковка, предназначенная для отдыхающих, где не ожидается, что они проведут ночь это -НЕ- площадка для кемпинга ", + "title": "площадка для кемпинга" + } + }, + "tagRenderings": { + "caravansites-capacity": { + "question": "Сколько кемперов может здесь остановиться? (пропустите, если нет очевидного количества мест или разрешённых транспортных средств)", + "render": "{capacity} кемперов могут использовать это место одновременно" + }, + "caravansites-charge": { + "question": "Сколько это место взимает?", + "render": "Это место взимает {charge}" + }, + "caravansites-description": { + "question": "Хотели бы вы добавить общее описание этого места? (Не повторяйте информацию, которая уже написана выше или на которую вы уже ответили ранее. Пожалуйста, будьте объективны - мнения должны быть в отзывах)", + "render": "Более подробная информация об этом месте: {description}" + }, + "caravansites-fee": { + "mappings": { + "0": { + "then": "За использование нужно платить" + }, + "1": { + "then": "Можно использовать бесплатно" + } + }, + "question": "Взимается ли в этом месте плата?" + }, + "caravansites-internet": { + "mappings": { + "0": { + "then": "Есть доступ в Интернет" + }, + "1": { + "then": "Есть доступ в Интернет" + }, + "2": { + "then": "Нет доступа в Интернет" + } + }, + "question": "Предоставляет ли это место доступ в Интернет?" + }, + "caravansites-internet-fee": { + "mappings": { + "0": { + "then": "За доступ в Интернет нужно платить дополнительно" + }, + "1": { + "then": "Вам не нужно платить дополнительно за доступ в Интернет" + } + }, + "question": "Нужно ли платить за доступ в Интернет?" + }, + "caravansites-long-term": { + "mappings": { + "0": { + "then": "Да, здесь есть места для долгосрочной аренды, но вы можете остановиться и на сутки" + }, + "1": { + "then": "Нет, здесь нет постоянных гостей" + }, + "2": { + "then": "Здесь можно остановиться, только если у вас долгосрочный контракт (это место исчезнет с этой карты, если вы выберете это)" + } + }, + "question": "Предлагает ли эта площадка места для долгосрочной аренды?" + }, + "caravansites-name": { + "question": "Как называется это место?", + "render": "Это место называется {name}" + }, + "caravansites-sanitary-dump": { + "mappings": { + "0": { + "then": "В этом кемпинге есть место для слива отходов из туалетных резервуаров" + }, + "1": { + "then": "В этом кемпинге нет места для слива отходов из туалетных резервуаров" + } + }, + "question": "В этом кемпинге есть место для слива отходов из туалетных резервуаров?" + }, + "caravansites-toilets": { + "mappings": { + "0": { + "then": "В этом месте есть туалеты" + }, + "1": { + "then": "В этом месте нет туалетов" + } + }, + "question": "Здесь есть туалеты?" + }, + "caravansites-website": { + "question": "Есть ли у этого места веб-сайт?", + "render": "Официальный сайт: {website}" + } + }, + "title": { + "mappings": { + "0": { + "then": "Место для кемпинга без названия" + } + }, + "render": "Место для кемпинга {name}" + } }, "1": { - "then": "Спортивное скалолазание здесь невозможно" + "description": "Ассенизационные сливные станции", + "name": "Места для слива отходов из туалетных резервуаров", + "tagRenderings": { + "dumpstations-access": { + "mappings": { + "2": { + "then": "Любой может воспользоваться этой станцией утилизации" + }, + "3": { + "then": "Любой может воспользоваться этой станцией утилизации" + } + }, + "question": "Кто может использовать эту станцию утилизации?" + }, + "dumpstations-charge": { + "question": "Сколько это место взимает?", + "render": "Это место взимает {charge}" + }, + "dumpstations-chemical-waste": { + "mappings": { + "0": { + "then": "Вы можете утилизировать отходы химических туалетов здесь" + }, + "1": { + "then": "Здесь нельзя утилизировать отходы химических туалетов" + } + }, + "question": "Можно ли здесь утилизировать отходы химических туалетов?" + }, + "dumpstations-fee": { + "mappings": { + "0": { + "then": "За использование нужно платить" + }, + "1": { + "then": "Можно использовать бесплатно" + } + }, + "question": "Взимается ли в этом месте плата?" + }, + "dumpstations-grey-water": { + "mappings": { + "0": { + "then": "Вы можете утилизировать серую воду здесь" + }, + "1": { + "then": "Здесь нельзя утилизировать серую воду" + } + }, + "question": "Можно ли здесь утилизировать серую воду?" + }, + "dumpstations-network": { + "question": "К какой сети относится эта станция? (пропустите, если неприменимо)", + "render": "Эта станция - часть сети {network}" + }, + "dumpstations-waterpoint": { + "mappings": { + "0": { + "then": "В этом месте есть водоснабжение" + }, + "1": { + "then": "В этом месте нет водоснабжения" + } + }, + "question": "Есть ли в этом месте водоснабжение?" + } + }, + "title": { + "mappings": { + "0": { + "then": "Ассенизационная сливная станция" + } + }, + "render": "Ассенизационная сливная станция {name}" + } } - } - } - } + }, + "shortDescription": "Найти места остановки, чтобы провести ночь в автофургоне", + "title": "Кемпинги" }, - "title": "Открытая карта скалолазания" - }, - "cyclestreets": { - "layers": { - "2": { - "name": "Все улицы", - "title": { - "render": "Улица" - } - } - } - }, - "cyclofix": { - "title": "Cyclofix - открытая карта для велосипедистов" - }, - "drinking_water": { - "description": "На этой карте показываются и могут быть легко добавлены общедоступные точки питьевой воды", - "title": "Питьевая вода" - }, - "facadegardens": { - "layers": { - "0": { - "tagRenderings": { - "facadegardens-description": { - "question": "Дополнительная информация о саде (если требуется или еще не указана выше)", - "render": "Подробнее: {description}" - }, - "facadegardens-plants": { - "question": "Какие виды растений обитают здесь?" - }, - "facadegardens-rainbarrel": { - "mappings": { - "0": { - "then": "Есть бочка с дождевой водой" - }, - "1": { - "then": "Нет бочки с дождевой водой" - } - } - }, - "facadegardens-start_date": { - "render": "Дата строительства сада: {start_date}" - }, - "facadegardens-sunshine": { - "question": "Сад расположен на солнечной стороне или в тени?" - } - } - } - } - }, - "ghostbikes": { - "title": "Велосипед Ghost" - }, - "hailhydrant": { - "layers": { - "0": { - "description": "Слой карты, отображающий пожарные гидранты.", - "name": "Карта пожарных гидрантов", - "presets": { - "0": { - "title": "Пожарный гидрант" - } - }, - "tagRenderings": { - "hydrant-color": { - "mappings": { - "0": { - "then": "Цвет гидранта не определён." - }, - "1": { - "then": "Гидрант жёлтого цвета." - }, - "2": { - "then": "Гидрант красного цвета." - } - }, - "question": "Какого цвета гидрант?", - "render": "Цвет гидранта {colour}" - }, - "hydrant-state": { - "mappings": { - "0": { - "then": "Гидрант (полностью или частично) в рабочем состоянии." - }, - "2": { - "then": "Гидрант демонтирован." - } - } - }, - "hydrant-type": { - "mappings": { - "0": { - "then": "Тип гидранта не определён." - }, - "3": { - "then": " Тип стены." - } - }, - "question": "К какому типу относится этот гидрант?", - "render": " Тип гидранта: {fire_hydrant:type}" - } - }, - "title": { - "render": "Гидрант" - } - }, - "1": { - "description": "Слой карты, отображающий огнетушители.", - "name": "Карта огнетушителей.", - "presets": { - "0": { - "description": "Огнетушитель - небольшое переносное устройство для тушения огня", - "title": "Огнетушитель" - } - }, - "tagRenderings": { - "extinguisher-location": { - "mappings": { - "0": { - "then": "Внутри." - }, - "1": { - "then": "Снаружи." - } - }, - "question": "Где это расположено?", - "render": "Местоположение: {location}" - } - }, - "title": { - "render": "Огнетушители" - } - }, - "2": { - "description": "Слой карты, отображающий пожарные части.", - "name": "Карта пожарных частей", - "presets": { - "0": { - "title": "Пожарная часть" - } - }, - "tagRenderings": { - "station-name": { - "question": "Как называется эта пожарная часть?", - "render": "Эта часть называется {name}." - }, - "station-place": { - "question": "Где расположена часть? (напр., название населённого пункта)", - "render": "Эта часть расположена в {addr:place}." - }, - "station-street": { - "question": " По какому адресу расположена эта часть?", - "render": "Часть расположена вдоль шоссе {addr:street}." - } - }, - "title": { - "render": "Пожарная часть" - } - }, - "3": { - "name": "Карта станций скорой помощи", - "presets": { - "0": { - "description": "Добавить станцию скорой помощи на карту", - "title": "Станция скорой помощи" - } - }, - "tagRenderings": { - "ambulance-name": { - "question": "Как называется эта станция скорой помощи?", - "render": "Эта станция называется {name}." - }, - "ambulance-place": { - "question": "Где расположена станция? (напр., название населённого пункта)" - }, - "ambulance-street": { - "question": " По какому адресу расположена эта станция?", - "render": "Эта станция расположена вдоль шоссе {addr:street}." - } - }, - "title": { - "render": "Станция скорой помощи" - } - } + "charging_stations": { + "description": "На этой карте вы можно найти и отметить информацию о зарядных станциях", + "shortDescription": "Карта зарядных станций по всему миру", + "title": "Зарядные станции" }, - "shortDescription": "Карта пожарных гидрантов, огнетушителей, пожарных станций и станций скорой помощи.", - "title": "Пожарные гидранты, огнетушители, пожарные станции и станции скорой помощи." - }, - "maps": { - "title": "Карта карт" - }, - "personal": { - "description": "Создать персональную тему на основе доступных слоёв тем" - }, - "playgrounds": { - "description": "На этой карте можно найти игровые площадки и добавить дополнительную информацию", - "shortDescription": "Карта игровых площадок", - "title": "Игровые площадки" - }, - "shops": { - "title": "Открыть карту магазинов" - }, - "sport_pitches": { - "shortDescription": "Карта, отображающая спортивные площадки", - "title": "Спортивные площадки" - }, - "toilets": { - "description": "Карта общественных туалетов", - "title": "Открытая карта туалетов" - }, - "trees": { - "description": "Нанесите все деревья на карту!", - "shortDescription": "Карта деревьев", - "title": "Деревья" - } + "climbing": { + "description": "На этой карте вы найдете различные возможности для скалолазания, такие как скалодромы, залы для боулдеринга и скалы на природе.", + "descriptionTail": "Создатель карты скалолазания — Christian Neumann. Пожалуйста, пишите если у вас есть отзыв или вопросы.

Проект использует данные OpenStreetMap.

", + "layers": { + "0": { + "name": "Клуб скалолазания", + "presets": { + "0": { + "description": "Клуб скалолазания", + "title": "Клуб скалолазания" + } + }, + "tagRenderings": { + "climbing_club-name": { + "render": "{name}" + } + }, + "title": { + "render": "Клуб скалолазания" + } + }, + "1": { + "tagRenderings": { + "name": { + "render": "{name}" + } + } + }, + "2": { + "tagRenderings": { + "Name": { + "render": "{name}" + } + } + }, + "3": { + "tagRenderings": { + "name": { + "render": "{name}" + } + } + }, + "4": { + "tagRenderings": { + "climbing-opportunity-name": { + "render": "{name}" + } + } + } + }, + "overrideAll": { + "tagRenderings+": { + "0": { + "question": "Есть ли (неофициальный) веб-сайт с более подробной информацией (напр., topos)?" + }, + "2": { + "mappings": { + "3": { + "then": "Только членам клуба" + } + } + }, + "9": { + "mappings": { + "0": { + "then": "Здесь можно заняться спортивным скалолазанием" + }, + "1": { + "then": "Спортивное скалолазание здесь невозможно" + } + } + } + }, + "units+": { + "0": { + "applicableUnits": { + "0": { + "human": " метр" + } + } + } + } + }, + "title": "Открытая карта скалолазания" + }, + "cycle_infra": { + "title": "Велосипедная дорожка" + }, + "cyclestreets": { + "layers": { + "0": { + "name": "Cyclestreets" + }, + "2": { + "name": "Все улицы", + "title": { + "render": "Улица" + } + } + } + }, + "cyclofix": { + "title": "Cyclofix - открытая карта для велосипедистов" + }, + "drinking_water": { + "description": "На этой карте показываются и могут быть легко добавлены общедоступные точки питьевой воды", + "title": "Питьевая вода" + }, + "etymology": { + "title": "Открытая этимологическая карта" + }, + "facadegardens": { + "layers": { + "0": { + "tagRenderings": { + "facadegardens-description": { + "question": "Дополнительная информация о саде (если требуется или еще не указана выше)", + "render": "Подробнее: {description}" + }, + "facadegardens-plants": { + "question": "Какие виды растений обитают здесь?" + }, + "facadegardens-rainbarrel": { + "mappings": { + "0": { + "then": "Есть бочка с дождевой водой" + }, + "1": { + "then": "Нет бочки с дождевой водой" + } + } + }, + "facadegardens-start_date": { + "render": "Дата строительства сада: {start_date}" + }, + "facadegardens-sunshine": { + "question": "Сад расположен на солнечной стороне или в тени?" + } + } + } + } + }, + "ghostbikes": { + "title": "Велосипед Ghost" + }, + "hackerspaces": { + "layers": { + "0": { + "description": "Хакерспейс", + "name": "Хакерспейс", + "presets": { + "0": { + "title": "Хакерспейс" + } + }, + "tagRenderings": { + "hackerspaces-opening_hours": { + "mappings": { + "0": { + "then": "Открыто 24/7" + } + }, + "render": "{opening_hours_table()}" + } + }, + "title": { + "mappings": { + "0": { + "then": " {name}" + } + }, + "render": "Хакерспейс" + } + } + }, + "title": "Хакерспейсы" + }, + "hailhydrant": { + "shortDescription": "Карта пожарных гидрантов, огнетушителей, пожарных станций и станций скорой помощи.", + "title": "Пожарные гидранты, огнетушители, пожарные станции и станции скорой помощи." + }, + "maps": { + "title": "Карта карт" + }, + "observation_towers": { + "title": "Смотровые башни" + }, + "openwindpowermap": { + "layers": { + "0": { + "title": { + "mappings": { + "0": { + "then": "{name}" + } + } + }, + "units": { + "0": { + "applicableUnits": { + "0": { + "human": " мегаватт" + }, + "1": { + "human": " киловатт" + }, + "2": { + "human": " ватт" + }, + "3": { + "human": " гигаватт" + } + } + }, + "1": { + "applicableUnits": { + "0": { + "human": " метр" + } + } + } + } + } + }, + "title": "Открытая карта ветроэнергетики" + }, + "parkings": { + "title": "Парковка" + }, + "personal": { + "description": "Создать персональную тему на основе доступных слоёв тем. Чтобы отобразить некоторые данные, откройте выбор слоя" + }, + "playgrounds": { + "description": "На этой карте можно найти игровые площадки и добавить дополнительную информацию", + "shortDescription": "Карта игровых площадок", + "title": "Игровые площадки" + }, + "postboxes": { + "layers": { + "0": { + "name": "Почтовые ящики", + "presets": { + "0": { + "title": "почтовый ящик" + } + }, + "title": { + "render": "Почтовый ящик" + } + }, + "1": { + "name": "Почтовые отделения", + "presets": { + "0": { + "title": "Почтовое отделение" + } + }, + "tagRenderings": { + "OH": { + "render": "Часы работы: {opening_hours_table()}" + } + }, + "title": { + "render": "Почтовое отделение" + } + } + } + }, + "shops": { + "title": "Открыть карту магазинов" + }, + "sidewalks": { + "description": "Экспериментальная тема", + "layers": { + "0": { + "name": "Тротуары", + "title": { + "render": "{name}" + } + } + }, + "title": "Тротуары" + }, + "sport_pitches": { + "shortDescription": "Карта, отображающая спортивные площадки", + "title": "Спортивные площадки" + }, + "street_lighting": { + "layers": { + "2": { + "name": "Все улицы", + "title": { + "render": "Улица" + } + } + }, + "title": "Уличное освещение" + }, + "toilets": { + "description": "Карта общественных туалетов", + "title": "Открытая карта туалетов" + }, + "trees": { + "description": "Нанесите все деревья на карту!", + "shortDescription": "Карта деревьев", + "title": "Деревья" + } } \ No newline at end of file diff --git a/langs/themes/sv.json b/langs/themes/sv.json index d2d04c4c47..8c5ac8469c 100644 --- a/langs/themes/sv.json +++ b/langs/themes/sv.json @@ -1,12 +1,12 @@ { - "aed": { - "description": "På denna karta kan man hitta och markera närliggande defibrillatorer", - "title": "Öppna AED-karta" - }, - "artwork": { - "title": "Öppen konstverkskarta" - }, - "ghostbikes": { - "title": "Spökcykel" - } + "aed": { + "description": "På denna karta kan man hitta och markera närliggande defibrillatorer", + "title": "Öppna AED-karta" + }, + "artwork": { + "title": "Öppen konstverkskarta" + }, + "ghostbikes": { + "title": "Spökcykel" + } } \ No newline at end of file diff --git a/langs/themes/zh_Hant.json b/langs/themes/zh_Hant.json index eeeb352186..055ce0e79c 100644 --- a/langs/themes/zh_Hant.json +++ b/langs/themes/zh_Hant.json @@ -1,323 +1,660 @@ { - "aed": { - "description": "在這份地圖上,你可以找到與標記附近的除顫器", - "title": "開放AED地圖" - }, - "artwork": { - "description": "歡迎來到開放藝術品地圖,這份地圖會顯示全世界的雕像、半身像、塗鴉以及其他類型的藝術品", - "title": "開放藝術品地圖" - }, - "benches": { - "description": "這份地圖顯示開放街圖上所有記錄的長椅:單獨的長椅,屬於大眾運輸站點或涼亭的長椅。只要有開放街圖帳號,你可以新增長椅或是編輯既有長椅的詳細內容。", - "shortDescription": "長椅的地圖", - "title": "長椅" - }, - "bicyclelib": { - "description": "單車圖書館是指每年支付小額費用,然後可以租用單車的地方。最有名的單車圖書館案例是給小孩的,能夠讓長大的小孩用目前的單車換成比較大的單車", - "title": "單車圖書館" - }, - "binoculars": { - "description": "固定一地的望遠鏡地圖,特別是能夠在旅遊景點、觀景點、城鎮環景點,或是自然保護區找到。", - "shortDescription": "固定望遠鏡的地圖", - "title": "望遠鏡" - }, - "bookcases": { - "description": "公共書架是街邊箱子、盒子、舊的電話亭或是其他存放書本的物件,每一個人都能放置或拿取書本。這份地圖收集所有類型的書架,你可以探索你附近新的書架,同時也能用免費的開放街圖帳號來快速新增你最愛的書架。", - "title": "開放書架地圖" - }, - "cafes_and_pubs": { - "title": "咖啡廳與酒吧" - }, - "campersite": { - "description": "這個網站收集所有官方露營地點,以及那邊能排放廢水。你可以加上詳細的服務項目與價格,加上圖片以及評價。這是網站與網路 app,資料則是存在開放街圖,因此會永遠免費,而且可以被所有 app 再利用。", - "layers": { - "0": { - "description": "露營地", - "name": "露營地", - "presets": { - "0": { - "description": "新增正式露營地點,通常是設計給過夜的露營者的地點。看起來像是真的露營地或是一般的停車場,而且也許沒有任何指標,但在城鎮被定議地點。如果一般給露營者的停車場並不是用來過夜,則不是露營地點 ", - "title": "露營地" - } - }, - "tagRenderings": { - "caravansites-capacity": { - "question": "多少露營者能夠待在這裡?(如果沒有明顯的空間數字或是允許車輛則可以跳過)", - "render": "{capacity} 露營者能夠同時使用這個地方" - }, - "caravansites-charge": { - "question": "這個地方收多少費用?", - "render": "這個地方收費 {charge}" - }, - "caravansites-description": { - "question": "你想要為這個地方加一般的敘述嗎?(不要重覆加先前問過或提供的資訊,請保持敘述性-請將意見留在評價)", - "render": "這個地方更詳細的資訊: {description}" - }, - "caravansites-fee": { - "mappings": { - "0": { - "then": "你要付費才能使用" - }, - "1": { - "then": "可以免費使用" - } - }, - "question": "這個地方收費嗎?" - }, - "caravansites-internet": { - "mappings": { - "0": { - "then": "這裡有網路連線" - }, - "1": { - "then": "這裡有網路連線" - }, - "2": { - "then": "這裡沒有網路連線" - } - }, - "question": "這個地方有提網路連線嗎?" - }, - "caravansites-internet-fee": { - "mappings": { - "0": { - "then": "你需要額外付費來使用網路連線" - }, - "1": { - "then": "你不需要額外付費來使用網路連線" - } - }, - "question": "你需要為網路連線付費嗎?" - }, - "caravansites-long-term": { - "mappings": { - "0": { - "then": "有,這個地方有提供長期租用,但你也可以用天計算費用" - }, - "1": { - "then": "沒有,這裡沒有永久的客戶" - }, - "2": { - "then": "如果有長期租用合約才有可能待下來(如果你選擇這個地方則會在這份地圖消失)" - } - }, - "question": "這個地方有提供長期租用嗎?" - }, - "caravansites-name": { - "question": "這個地方叫做什麼?", - "render": "這個地方叫做 {name}" - }, - "caravansites-sanitary-dump": { - "mappings": { - "0": { - "then": "這個地方有衛生設施" - }, - "1": { - "then": "這個地方沒有衛生設施" - } - }, - "question": "這個地方有衛生設施嗎?" - }, - "caravansites-toilets": { - "mappings": { - "0": { - "then": "這個地方有廁所" - }, - "1": { - "then": "這個地方並沒有廁所" - } - }, - "question": "這個地方有廁所嗎?" - }, - "caravansites-website": { - "question": "這個地方有網站嗎?", - "render": "官方網站:{website}" - } - }, - "title": { - "mappings": { + "aed": { + "description": "在這份地圖上,你可以找到與標記附近的除顫器", + "title": "開放AED地圖" + }, + "artwork": { + "description": "歡迎來到開放藝術品地圖,這份地圖會顯示全世界的雕像、半身像、塗鴉以及其他類型的藝術品", + "title": "開放藝術品地圖" + }, + "benches": { + "description": "這份地圖顯示開放街圖上所有記錄的長椅:單獨的長椅,屬於大眾運輸站點或涼亭的長椅。只要有開放街圖帳號,你可以新增長椅或是編輯既有長椅的詳細內容。", + "shortDescription": "長椅的地圖", + "title": "長椅" + }, + "bicyclelib": { + "description": "單車圖書館是指每年支付小額費用,然後可以租用單車的地方。最有名的單車圖書館案例是給小孩的,能夠讓長大的小孩用目前的單車換成比較大的單車", + "title": "單車圖書館" + }, + "binoculars": { + "description": "固定一地的望遠鏡地圖,特別是能夠在旅遊景點、觀景點、城鎮環景點,或是自然保護區找到。", + "shortDescription": "固定望遠鏡的地圖", + "title": "望遠鏡" + }, + "bookcases": { + "description": "公共書架是街邊箱子、盒子、舊的電話亭或是其他存放書本的物件,每一個人都能放置或拿取書本。這份地圖收集所有類型的書架,你可以探索你附近新的書架,同時也能用免費的開放街圖帳號來快速新增你最愛的書架。", + "title": "開放書架地圖" + }, + "cafes_and_pubs": { + "title": "咖啡廳與酒吧" + }, + "campersite": { + "description": "這個網站收集所有官方露營地點,以及那邊能排放廢水。你可以加上詳細的服務項目與價格,加上圖片以及評價。這是網站與網路 app,資料則是存在開放街圖,因此會永遠免費,而且可以被所有 app 再利用。", + "layers": { "0": { - "then": "沒有名稱的露營地" + "description": "露營地", + "name": "露營地", + "presets": { + "0": { + "description": "新增正式露營地點,通常是設計給過夜的露營者的地點。看起來像是真的露營地或是一般的停車場,而且也許沒有任何指標,但在城鎮被定議地點。如果一般給露營者的停車場並不是用來過夜,則不是露營地點 ", + "title": "露營地" + } + }, + "tagRenderings": { + "caravansites-capacity": { + "question": "多少露營者能夠待在這裡?(如果沒有明顯的空間數字或是允許車輛則可以跳過)", + "render": "{capacity} 露營者能夠同時使用這個地方" + }, + "caravansites-charge": { + "question": "這個地方收多少費用?", + "render": "這個地方收費 {charge}" + }, + "caravansites-description": { + "question": "你想要為這個地方加一般的敘述嗎?(不要重覆加先前問過或提供的資訊,請保持敘述性-請將意見留在評價)", + "render": "這個地方更詳細的資訊: {description}" + }, + "caravansites-fee": { + "mappings": { + "0": { + "then": "你要付費才能使用" + }, + "1": { + "then": "可以免費使用" + } + }, + "question": "這個地方收費嗎?" + }, + "caravansites-internet": { + "mappings": { + "0": { + "then": "這裡有網路連線" + }, + "1": { + "then": "這裡有網路連線" + }, + "2": { + "then": "這裡沒有網路連線" + } + }, + "question": "這個地方有提網路連線嗎?" + }, + "caravansites-internet-fee": { + "mappings": { + "0": { + "then": "你需要額外付費來使用網路連線" + }, + "1": { + "then": "你不需要額外付費來使用網路連線" + } + }, + "question": "你需要為網路連線付費嗎?" + }, + "caravansites-long-term": { + "mappings": { + "0": { + "then": "有,這個地方有提供長期租用,但你也可以用天計算費用" + }, + "1": { + "then": "沒有,這裡沒有永久的客戶" + }, + "2": { + "then": "如果有長期租用合約才有可能待下來(如果你選擇這個地方則會在這份地圖消失)" + } + }, + "question": "這個地方有提供長期租用嗎?" + }, + "caravansites-name": { + "question": "這個地方叫做什麼?", + "render": "這個地方叫做 {name}" + }, + "caravansites-sanitary-dump": { + "mappings": { + "0": { + "then": "這個地方有衛生設施" + }, + "1": { + "then": "這個地方沒有衛生設施" + } + }, + "question": "這個地方有衛生設施嗎?" + }, + "caravansites-toilets": { + "mappings": { + "0": { + "then": "這個地方有廁所" + }, + "1": { + "then": "這個地方並沒有廁所" + } + }, + "question": "這個地方有廁所嗎?" + }, + "caravansites-website": { + "question": "這個地方有網站嗎?", + "render": "官方網站:{website}" + } + }, + "title": { + "mappings": { + "0": { + "then": "沒有名稱的露營地" + } + }, + "render": "露營地 {name}" + } + }, + "1": { + "description": "垃圾處理站", + "name": "垃圾處理站", + "presets": { + "0": { + "description": "新增垃圾站,這通常是提供露營駕駛丟棄廢水與化學性廁所廢水的地方,也會有飲用水與電力。", + "title": "垃圾丟棄站" + } + }, + "tagRenderings": { + "dumpstations-access": { + "mappings": { + "0": { + "then": "你需要網路鑰匙/密碼來使用這個設施" + }, + "1": { + "then": "你需要是露營/露營地的客戶才能使用這一地方" + }, + "2": { + "then": "任何人都可以使用這個衛生廢棄物站" + }, + "3": { + "then": "任何人都可以使用這個垃圾站" + } + }, + "question": "誰可以使用這個垃圾站?" + }, + "dumpstations-charge": { + "question": "這個地方收費多少?", + "render": "這個地方收費 {charge}" + }, + "dumpstations-chemical-waste": { + "mappings": { + "0": { + "then": "你可以在這邊丟棄廁所化學廢棄物" + }, + "1": { + "then": "你不能在這邊丟棄廁所化學廢棄物" + } + }, + "question": "你能在這裡丟棄廁所化學廢棄物嗎?" + }, + "dumpstations-fee": { + "mappings": { + "0": { + "then": "你需要付費才能使用" + }, + "1": { + "then": "這裡可以免費使用" + } + }, + "question": "這個地方需要付費嗎?" + }, + "dumpstations-grey-water": { + "mappings": { + "0": { + "then": "你可以在這裡排放洗滌水" + }, + "1": { + "then": "你無法在這裡排放洗滌水" + } + }, + "question": "你能在這裡排放洗滌水嗎?" + }, + "dumpstations-network": { + "question": "這裡是屬於那個網路的? (沒有則跳過)", + "render": "這車站是屬於 {network} 網路的一部分" + }, + "dumpstations-waterpoint": { + "mappings": { + "0": { + "then": "這個地方有取水點" + }, + "1": { + "then": "這個地方沒有取水點" + } + }, + "question": "這個地方有取水點嗎?" + } + }, + "title": { + "mappings": { + "0": { + "then": "垃圾站" + } + }, + "render": "{name} 垃圾站" + } } - }, - "render": "露營地 {name}" - } - }, - "1": { - "description": "垃圾處理站", - "name": "垃圾處理站", - "presets": { - "0": { - "description": "新增垃圾站,這通常是提供露營駕駛丟棄廢水與化學性廁所廢水的地方,也會有飲用水與電力。", - "title": "垃圾丟棄站" - } }, - "tagRenderings": { - "dumpstations-access": { - "mappings": { - "0": { - "then": "你需要網路鑰匙/密碼來使用這個設施" - }, - "1": { - "then": "你需要是露營/露營地的客戶才能使用這一地方" - }, - "2": { - "then": "任何人都可以使用這個衛生廢棄物站" - }, - "3": { - "then": "任何人都可以使用這個垃圾站" - } - }, - "question": "誰可以使用這個垃圾站?" - }, - "dumpstations-charge": { - "question": "這個地方收費多少?", - "render": "這個地方收費 {charge}" - }, - "dumpstations-chemical-waste": { - "mappings": { - "0": { - "then": "你可以在這邊丟棄廁所化學廢棄物" - }, - "1": { - "then": "你不能在這邊丟棄廁所化學廢棄物" - } - }, - "question": "你能在這裡丟棄廁所化學廢棄物嗎?" - }, - "dumpstations-fee": { - "mappings": { - "0": { - "then": "你需要付費才能使用" - }, - "1": { - "then": "這裡可以免費使用" - } - }, - "question": "這個地方需要付費嗎?" - } - } - } + "overrideAll": { + "tagRenderings+": { + "0": { + "question": "這個地方是誰營運的?", + "render": "這個地方由 {operator} 營運的" + } + } + }, + "shortDescription": "露營者尋找渡過夜晚的場地", + "title": "露營地點" }, - "shortDescription": "露營者尋找渡過夜晚的場地", - "title": "露營地點" - }, - "charging_stations": { - "description": "在這份開放地圖上,你可以尋找與標示充電站的資訊", - "shortDescription": "全世界的充電站地圖", - "title": "充電站" - }, - "climbing": { - "description": "在這份地圖上你會發現能夠攀爬機會,像是攀岩體育館、抱石大廳以及大自然當中的巨石。", - "descriptionTail": "攀爬地圖最初由 Christian Neumann 製作。如果你有回饋意見或問題請到Please 這邊反應

這專案使用來自開放街圖專案的資料。

", - "layers": { - "0": { - "description": "攀岩社團或組織", - "name": "攀岩社團", - "tagRenderings": { - "climbing_club-name": { - "render": "{name}" - } - }, - "title": { - "mappings": { + "charging_stations": { + "description": "在這份開放地圖上,你可以尋找與標示充電站的資訊", + "shortDescription": "全世界的充電站地圖", + "title": "充電站" + }, + "climbing": { + "description": "在這份地圖上你會發現能夠攀爬機會,像是攀岩體育館、抱石大廳以及大自然當中的巨石。", + "descriptionTail": "攀爬地圖最初由 Christian Neumann 製作。如果你有回饋意見或問題請到Please 這邊反應

這專案使用來自開放街圖專案的資料。

", + "layers": { "0": { - "then": "攀岩 NGO" + "description": "攀岩社團或組織", + "name": "攀岩社團", + "tagRenderings": { + "climbing_club-name": { + "render": "{name}" + } + }, + "title": { + "mappings": { + "0": { + "then": "攀岩 NGO" + } + }, + "render": "攀岩社團" + } } - }, - "render": "攀岩社團" - } - } + }, + "title": "開放攀爬地圖" }, - "title": "開放攀爬地圖" - }, - "cyclestreets": { - "description": "單車街道是機動車輛受限制,只允許單車通行的道路。通常會有路標顯示特別的交通指標。單車街道通常在荷蘭、比利時看到,但德國與法國也有。 ", - "layers": { - "0": { - "name": "單車街道" - }, - "1": { - "name": "將來的單車街道" - } + "cycle_infra": { + "description": "可以檢視與編輯單車相關設施的地圖,在 #os0c21時製作。", + "shortDescription": "檢視與編輯單車相關設施的地圖。", + "title": "單車設施" }, - "shortDescription": "單車街道的地圖", - "title": "單車街道" - }, - "cyclofix": { - "description": "這份地圖的目的是為單車騎士能夠輕易顯示滿足他們需求的相關設施。

你可以追蹤你確切位置 (只有行動版),以及在左下角選擇相關的圖層。你可以使用這工具在地圖新增或編輯釘子,以及透過回答問題來提供更多資訊。

所有你的變動都會自動存在開放街圖這全球資料圖,並且能被任何人自由取用。

你可以到 cyclofix.osm.be 閱讀更多資訊。", - "title": "單車修正 - 單車騎士的開放地圖" - }, - "drinking_water": { - "description": "在這份地圖上,公共可及的飲水點可以顯示出來,也能輕易的增加", - "title": "飲用水" - }, - "facadegardens": { - "layers": { - "0": { - "description": "立面花園", - "name": "立面花園", - "title": { - "render": "立面花園" - } - } + "cyclestreets": { + "description": "單車街道是機動車輛受限制,只允許單車通行的道路。通常會有路標顯示特別的交通指標。單車街道通常在荷蘭、比利時看到,但德國與法國也有。 ", + "layers": { + "0": { + "name": "單車街道" + }, + "1": { + "name": "將來的單車街道" + } + }, + "shortDescription": "單車街道的地圖", + "title": "單車街道" }, - "shortDescription": "這地圖顯示立面花園的照片以及其他像是方向、日照以及植栽種類等實用訊息。", - "title": "立面花園" - }, - "ghostbikes": { - "description": "幽靈單車是用來紀念死於交通事故的單車騎士,在事發地點附近放置白色單車。

在這份地圖上面,你可以看到所有在開放街圖已知的幽靈單車。有缺漏的幽靈單車嗎?所有人都可以在這邊新增或是更新資訊-只有你有(免費)開放街圖帳號。", - "title": "幽靈單車" - }, - "hailhydrant": { - "description": "在這份地圖上面你可以在你喜愛的社區尋找與更新消防栓、消防隊、急救站與滅火器。\n\n你可以追蹤確切位置 (只有行動版) 以及在左下角選擇與你相關的圖層。你也可以使用這工具新增或編輯地圖上的釘子 (興趣點),以及透過回答一些問題提供額外的資訊。\n\n所有你做出的變動都會自動存到開放街圖這個全球資料庫,而且能自由讓其他人取用。", - "layers": { - "0": { - "description": "顯示消防栓的地圖圖層。", - "name": "消防栓地圖" - }, - "1": { - "description": "顯示消防栓的地圖圖層。" - } + "cyclofix": { + "description": "這份地圖的目的是為單車騎士能夠輕易顯示滿足他們需求的相關設施。

你可以追蹤你確切位置 (只有行動版),以及在左下角選擇相關的圖層。你可以使用這工具在地圖新增或編輯釘子,以及透過回答問題來提供更多資訊。

所有你的變動都會自動存在開放街圖這全球資料圖,並且能被任何人自由取用。

你可以到 cyclofix.osm.be 閱讀更多資訊。", + "title": "單車修正 - 單車騎士的開放地圖" }, - "shortDescription": "顯示消防栓、滅火器、消防隊與急救站的地圖。", - "title": "消防栓、滅火器、消防隊、以及急救站。" - }, - "maps": { - "description": "在這份地圖你可以找到所在在開放街圖上已知的地圖 - 特別是顯示地區、城市、區域的資訊版面上的大型地圖,例如佈告欄背面的旅遊地圖,自然保護區的地圖,區域的單車網路地圖,...)

如果有缺少的地圖,你可以輕易在開放街圖上新增這地圖。", - "shortDescription": "這份主題顯示所有已知的開放街圖上的 (旅遊) 地圖", - "title": "地圖的地圖" - }, - "personal": { - "description": "從所有可用的主題圖層創建個人化主題", - "title": "個人化主題" - }, - "playgrounds": { - "description": "在這份地圖上,你可以尋找遊樂場以及其相關資訊", - "shortDescription": "遊樂場的地圖", - "title": "遊樂場" - }, - "shops": { - "description": "這份地圖上,你可以標記商家基本資訊,新增營業時間以及聯絡電話", - "title": "開放商店地圖" - }, - "sport_pitches": { - "description": "運動場地是進行運動的地方", - "shortDescription": "顯示運動場地的地圖", - "title": "運動場地" - }, - "surveillance": { - "description": "在這份開放地圖,你可以找到監視鏡頭。", - "shortDescription": "監視鏡頭與其他型式的監視", - "title": "被監視的監視器" - }, - "toilets": { - "description": "公共廁所的地圖", - "title": "開放廁所地圖" - }, - "trees": { - "description": "繪製所有樹木!", - "shortDescription": "所有樹木的地圖", - "title": "樹木" - } + "drinking_water": { + "description": "在這份地圖上,公共可及的飲水點可以顯示出來,也能輕易的增加", + "title": "飲用水" + }, + "entrances": { + "description": "顯示所有出入口的地圖,勘查對輪椅使用者重要的資訊", + "shortDescription": "幫助輪椅導航來勘查出入口", + "title": "出入口" + }, + "etymology": { + "description": "在這份地圖,你可以看到物件是以何命名,道路、 建築等的命名由來連到 Wikidata。在跳出選單,你可以看到物件命名由來的維基條目 (如果有的話),或是 Wikidata 框。如果物件本身有維基頁面,也會顯示。

你也可以貢獻!放大到夠大的層級,然後所有道路都會顯示。你可以點選一個之後 Wikidata 搜尋框會跳出來。只要點幾下,你可以新增詞源連結。注意你要有開放街圖帳號才能這麼做。", + "layers": { + "1": { + "override": { + "=name": "道路沒有詞源資訊" + } + }, + "2": { + "override": { + "=name": "公園與森哥沒有詞源資訊" + } + } + }, + "shortDescription": "地名的由來是?", + "title": "開放詞源地圖" + }, + "facadegardens": { + "layers": { + "0": { + "description": "立面花園", + "name": "立面花園", + "tagRenderings": { + "facadegardens-rainbarrel": { + "mappings": { + "0": { + "then": "這裡有個雨筒" + }, + "1": { + "then": "這裡沒有雨筒" + } + }, + "question": "花園當中有設置雨筒嗎?" + } + }, + "title": { + "render": "立面花園" + } + } + }, + "shortDescription": "這地圖顯示立面花園的照片以及其他像是方向、日照以及植栽種類等實用訊息。", + "title": "立面花園" + }, + "food": { + "title": "餐廳與快餐店" + }, + "ghostbikes": { + "description": "幽靈單車是用來紀念死於交通事故的單車騎士,在事發地點附近放置白色單車。

在這份地圖上面,你可以看到所有在開放街圖已知的幽靈單車。有缺漏的幽靈單車嗎?所有人都可以在這邊新增或是更新資訊-只有你有(免費)開放街圖帳號。", + "title": "幽靈單車" + }, + "hackerspaces": { + "description": "在這份地圖上你可以看到駭客空間,新增或直接更新資料", + "layers": { + "0": { + "description": "駭客空間", + "name": "駭客空間", + "presets": { + "0": { + "description": "駭客空間是對軟體有興趣的人聚集的地方", + "title": "駭客空間" + }, + "1": { + "description": "創客空間是 DIY 愛好者聚集在一起弄電子零件實驗,例如用 arduino、LEDstrips 等...", + "title": "創客空間" + } + }, + "tagRenderings": { + "hackerspaces-name": { + "question": "這個駭客空間的名稱是?", + "render": "這個駭客空間叫 {name}" + }, + "hackerspaces-opening_hours": { + "mappings": { + "0": { + "then": "24/7 營業" + } + }, + "question": "這個駭客空間的營業時間?", + "render": "{opening_hours_table()}" + }, + "hackerspaces-start_date": { + "question": "這個駭客空間何時成立的?", + "render": "這駭客空間是 {start_date} 成立的" + }, + "hs-club-mate": { + "mappings": { + "0": { + "then": "這個駭客空間服務俱樂部伙伴" + }, + "1": { + "then": "這個駭客空間沒有服務俱樂部伙伴" + } + }, + "question": "這個駭客空間是否服務俱樂部伙伴?" + }, + "is_makerspace": { + "mappings": { + "0": { + "then": "這是創客空間" + }, + "1": { + "then": "這是傳統的 (軟體導向) 駭客空間" + } + }, + "question": "這邊是駭客空間還是創客空間?" + } + }, + "title": { + "mappings": { + "0": { + "then": " {name}" + } + }, + "render": "駭客空間" + } + } + }, + "shortDescription": "駭客空間的地圖", + "title": "駭客空間" + }, + "hailhydrant": { + "description": "在這份地圖上面你可以在你喜愛的社區尋找與更新消防栓、消防隊、急救站與滅火器。\n\n你可以追蹤確切位置 (只有行動版) 以及在左下角選擇與你相關的圖層。你也可以使用這工具新增或編輯地圖上的釘子 (興趣點),以及透過回答一些問題提供額外的資訊。\n\n所有你做出的變動都會自動存到開放街圖這個全球資料庫,而且能自由讓其他人取用。", + "shortDescription": "顯示消防栓、滅火器、消防隊與急救站的地圖。", + "title": "消防栓、滅火器、消防隊、以及急救站。" + }, + "maps": { + "description": "在這份地圖你可以找到所在在開放街圖上已知的地圖 - 特別是顯示地區、城市、區域的資訊版面上的大型地圖,例如佈告欄背面的旅遊地圖,自然保護區的地圖,區域的單車網路地圖,...)

如果有缺少的地圖,你可以輕易在開放街圖上新增這地圖。", + "shortDescription": "這份主題顯示所有已知的開放街圖上的 (旅遊) 地圖", + "title": "地圖的地圖" + }, + "observation_towers": { + "description": "開放可及能觀景的高塔", + "shortDescription": "開發可及能觀景的高塔", + "title": "觀景塔" + }, + "openwindpowermap": { + "description": "顯示與編輯風機的地圖。", + "layers": { + "0": { + "name": "風機", + "presets": { + "0": { + "title": "風機" + } + }, + "tagRenderings": { + "turbine-diameter": { + "question": "這個風力渦輪機的風葉直徑是多少公尺?", + "render": "這個風力渦輪機的風葉直徑是 {rotor:diameter} 公尺。" + }, + "turbine-height": { + "question": "這個風機的總高度是多少 (包括風葉大小) 公尺?", + "render": "這風機的總高度 (包括風葉直徑) 是 {height} 公尺。" + }, + "turbine-operator": { + "question": "這個風機營業商是?", + "render": "這個風機營業商是 {operator}。" + }, + "turbine-output": { + "question": "這個風機的電力輸出是多少?(例如 2.3 MW)", + "render": "這個風機的電力輸出是 {generator:output:electricity}。" + }, + "turbine-start-date": { + "question": "這個風機何時開始營運?", + "render": "這個風機從 {start_date} 開始運轉。" + } + }, + "title": { + "mappings": { + "0": { + "then": "{name}" + } + }, + "render": "風機" + }, + "units": { + "0": { + "applicableUnits": { + "0": { + "human": " 百萬瓦" + }, + "1": { + "human": " 千瓦" + }, + "2": { + "human": " 瓦" + }, + "3": { + "human": " 千兆瓦" + } + } + }, + "1": { + "applicableUnits": { + "0": { + "human": " 公尺" + } + } + } + } + } + }, + "title": "開放風力地圖" + }, + "parkings": { + "description": "這地圖顯示不同的停車空間", + "shortDescription": "這地圖顯示不同的停車空間", + "title": "停車場" + }, + "personal": { + "description": "從所有可用的主題圖層創建個人化主題", + "title": "個人化主題" + }, + "playgrounds": { + "description": "在這份地圖上,你可以尋找遊樂場以及其相關資訊", + "shortDescription": "遊樂場的地圖", + "title": "遊樂場" + }, + "postboxes": { + "description": "在這份地圖你能找到與新增有關郵局與郵筒的資料,你可以用這份地圖找到寄送您下張明信片的地方!:)
發現錯誤或是有郵筒遺漏嗎?你可以用免費的開放街圖帳號來編輯。 ", + "layers": { + "0": { + "description": "這圖層顯示郵筒。", + "name": "郵筒", + "presets": { + "0": { + "title": "郵筒" + } + }, + "title": { + "render": "郵筒" + } + }, + "1": { + "description": "圖層顯示郵局。", + "filter": { + "0": { + "options": { + "0": { + "question": "目前開放" + } + } + } + }, + "name": "郵局", + "presets": { + "0": { + "title": "郵局" + } + }, + "tagRenderings": { + "OH": { + "mappings": { + "0": { + "then": "24/7 開放 (包括假日)" + } + }, + "question": "這間郵局的開放時間是?", + "render": "開放時間:{opening_hours_table()}" + } + }, + "title": { + "render": "郵局" + } + } + }, + "shortDescription": "顯示郵筒與郵局的地圖", + "title": "郵筒與郵局地圖" + }, + "shops": { + "description": "這份地圖上,你可以標記商家基本資訊,新增營業時間以及聯絡電話", + "title": "開放商店地圖" + }, + "sport_pitches": { + "description": "運動場地是進行運動的地方", + "shortDescription": "顯示運動場地的地圖", + "title": "運動場地" + }, + "street_lighting": { + "description": "在這份地圖你可以找到任何有關路燈的事情", + "layers": { + "1": { + "name": "有照明的道路", + "tagRenderings": { + "lit": { + "mappings": { + "0": { + "then": "這個道路有照明" + }, + "1": { + "then": "這個道路沒有照明" + }, + "2": { + "then": "這個道路晚上有照明" + }, + "3": { + "then": "這個道路 24/7 有照明" + } + }, + "question": "這道路有路燈嗎?" + } + }, + "title": { + "render": "照明道路" + } + }, + "2": { + "name": "所有道路", + "tagRenderings": { + "lit": { + "mappings": { + "0": { + "then": "這道路有照明" + }, + "1": { + "then": "這道路沒有照明" + }, + "2": { + "then": "這道路晚上有照明" + }, + "3": { + "then": "這道路 24/7 有照明" + } + }, + "question": "這道路有照明嗎?" + } + }, + "title": { + "render": "照明" + } + } + }, + "title": "道路照明" + }, + "surveillance": { + "description": "在這份開放地圖,你可以找到監視鏡頭。", + "shortDescription": "監視鏡頭與其他型式的監視", + "title": "被監視的監視器" + }, + "toilets": { + "description": "公共廁所的地圖", + "title": "開放廁所地圖" + }, + "trees": { + "description": "繪製所有樹木!", + "shortDescription": "所有樹木的地圖", + "title": "樹木" + }, + "waste_basket": { + "description": "在這份地圖當中,你可以找到你附近的垃圾筒。如果地圖有遺漏垃圾筒,你可以自己加上去", + "shortDescription": "垃圾筒的地圖", + "title": "垃圾筒" + } } \ No newline at end of file diff --git a/langs/zh_HANŨS.json b/langs/zh_HANŨS.json index 0967ef424b..9e26dfeeb6 100644 --- a/langs/zh_HANŨS.json +++ b/langs/zh_HANŨS.json @@ -1 +1 @@ -{} +{} \ No newline at end of file diff --git a/langs/zh_Hans.json b/langs/zh_Hans.json index 0967ef424b..9e26dfeeb6 100644 --- a/langs/zh_Hans.json +++ b/langs/zh_Hans.json @@ -1 +1 @@ -{} +{} \ No newline at end of file diff --git a/langs/zh_Hant.json b/langs/zh_Hant.json index 20603e2d1d..26e8c90eb4 100644 --- a/langs/zh_Hant.json +++ b/langs/zh_Hant.json @@ -1,295 +1,367 @@ { - "reviews": { - "plz_login": "登入來留下審核", - "attribution": "評審系統由Mangrove Reviews提供技術支援,採用CC-BY 4.0授權條款。", - "tos": "如果你創建審核,你同意TOS 與 Mangrove.reviews 的隱私權政策", - "saved": "已儲存審核,謝謝你的分享!", - "saving_review": "儲存中…", - "affiliated_reviewer_warning": "(關係者審核)", - "i_am_affiliated": "我是這物件的相關關係者
確認你是否是擁有者、創造者、員工等等", - "posting_as": "以貼文", - "no_rating": "還沒有評分", - "write_a_comment": "留下審核…", - "no_reviews_yet": "還沒有審核,當第一個撰寫者來幫助開放資料與商家吧!", - "name_required": "需要有名稱才能顯示和創造審核", - "title_singular": "一次審核", - "title": "{count} 審核次數" - }, - "favourite": { - "reload": "重新載入資料", - "loginNeeded": "

登入

只有開放街圖使用者才有個人化樣式", - "panelIntro": "

你的個人主題

從所有官方主題啟用你喜愛的圖層" - }, - "general": { - "opening_hours": { - "ph_closed": "無營業", - "ph_open": "有營業", - "ph_not_known": " ", - "open_24_7": "24小時營業", - "closed_permanently": "不清楚關閉多久了", - "closed_until": "{date} 起關閉", - "not_all_rules_parsed": "這間店的開放時間相當複雜,在輸入元素時忽略接下來的規則:", - "openTill": "結束時間", - "opensAt": "開始時間", - "open_during_ph": "國定假日的時候,這個場所是", - "error_loading": "錯誤:無法視覺化開放時間。" + "centerMessage": { + "loadingData": "正在讀取資料…", + "ready": "完成!", + "retrying": "無法讀取資料,請在 {count} 秒後再試一次…", + "zoomIn": "放大來檢視或編輯資料" }, - "weekdays": { - "sunday": "星期日", - "saturday": "星期六", - "friday": "星期五", - "thursday": "星期四", - "wednesday": "星期三", - "tuesday": "星期二", - "monday": "星期一", - "abbreviations": { - "sunday": "星期日", - "saturday": "星期六", - "friday": "星期五", - "thursday": "星期四", - "wednesday": "星期三", - "tuesday": "星期二", - "monday": "星期一" - } + "delete": { + "cancel": "取消", + "cannotBeDeleted": "這圖徵無法刪除", + "delete": "刪除", + "explanations": { + "hardDelete": "這個點已經在開放街圖被刪除了,可以被實驗性的貢獻者恢復", + "selectReason": "請選擇為什麼這個圖徵該被刪除?", + "softDelete": "這個圖徵已經被更新,然後從程式被隱藏了。{reason}" + }, + "isDeleted": "這圖徵已經刪除", + "isntAPoint": "只有點可以被刪,選取的圖徵是路徑、區域或是關聯。", + "loading": "調查屬性來確定是否能刪除這一圖徵。", + "loginToDelete": "你必須登入才能刪除點", + "notEnoughExperience": "這個點是由其他人做的。", + "onlyEditedByLoggedInUser": "這個點只有被你編輯,所以你可以安全地刪除。", + "partOfOthers": "這個點屬於一些路徑或關聯的一部分,因此不能直接刪除。", + "readMessages": "你有未讀的訊息,請先閱讀再來刪除點 - 也許有人有回饋意見", + "reasons": { + "disused": "這個圖徵已經不使用或是被移除了", + "duplicate": "這個點與其他圖徵重覆了", + "notFound": "找不到這個圖徵了", + "test": "這是測試點 - 並真的不存在那邊的圖徵" + }, + "safeDelete": "這點無法安全地刪除。", + "useSomethingElse": "請使用其他的開放街圖編輯器來刪除", + "whyDelete": "為什麼這個點要被刪除?" + }, + "favourite": { + "loginNeeded": "

登入

只有開放街圖使用者才有個人化樣式", + "panelIntro": "

你的個人主題

從所有官方主題啟用你喜愛的圖層", + "reload": "重新載入資料" }, "general": { - "opening_hours": { - "ph_closed": "無營業", - "ph_open": "有營業", - "ph_not_known": " ", - "open_24_7": "24小時營業", - "closed_permanently": "不清楚關閉多久了", - "closed_until": "{date} 起關閉", - "not_all_rules_parsed": "這間店的開放時間相當複雜,在輸入元素時忽略接下來的規則:", - "openTill": "結束時間", - "opensAt": "開始時間", - "open_during_ph": "國定假日的時候,這個場所是", - "error_loading": "錯誤:無法視覺化開放時間。" - }, - "weekdays": { - "sunday": "星期日", - "saturday": "星期六", - "friday": "星期五", - "thursday": "星期四", - "wednesday": "星期三", - "tuesday": "星期二", - "monday": "星期一", - "abbreviations": { - "sunday": "星期日", - "saturday": "星期六", - "friday": "星期五", - "thursday": "星期四", - "wednesday": "星期三", - "tuesday": "星期二", - "monday": "星期一" - } - }, - "layerSelection": { - "title": "選擇圖層", - "zoomInToSeeThisLayer": "放大來看這個圖層" - }, - "backgroundMap": "背景地圖", - "aboutMapcomplete": "

關於 MapComplete

使用 MapComplete 你可以藉由單一主題豐富開放街圖的圖資。回答幾個問題,然後幾分鐘之內你的貢獻立刻就傳遍全球!主題維護者定議主題的元素、問題與語言。

發現更多

MapComplete 總是提供學習更多開放街圖下一步的知識

  • 當你內嵌網站,網頁內嵌會連結到全螢幕的 MapComplete
  • 全螢幕的版本提供關於開放街圖的資訊
  • 不登入檢視成果,但是要編輯則需登入 OSM。
  • 如果你沒有登入,你會被要求先登入
  • 當你回答單一問題時,你可以在地圖新增新的節點
  • 過了一陣子,實際的 OSM-標籤會顯示,之後會連結到 wiki


你有注意到問題嗎?你想請求功能嗎?想要幫忙翻譯嗎?來到原始碼或是問題追蹤器。

想要看到你的進度嗎?到OsmCha追蹤編輯數。

", - "customThemeIntro": "

客製化主題

觀看這些先前使用者創造的主題。", - "noTagsSelected": "沒有選取標籤", - "getStartedNewAccount": " 或是 註冊新帳號", - "getStartedLogin": "登入開放街圖帳號來開始", - "goToInbox": "開啟訊息框", - "fewChangesBefore": "請先回答有關既有節點的問題再來新增新節點。", - "readYourMessages": "請先閱讀開放街圖訊息之前再來新增新節點。", - "morescreen": { - "createYourOwnTheme": "從零開始建立你的 MapComplete 主題", - "streetcomplete": "行動裝置另有類似的應用程式 StreetComplete。", - "requestATheme": "如果你有客製化要求,請到問題追踪器那邊提出要求", - "intro": "

看更多主題地圖?

您喜歡蒐集地理資料嗎?
還有更多主題。" - }, - "sharescreen": { - "fsIncludeCurrentLocation": "包含目前位置", - "fsIncludeCurrentLayers": "包含目前選擇圖層", - "fsIncludeCurrentBackgroundMap": "包含目前背景選擇{name}", - "fsGeolocation": "啟用'地理定位自身'按鈕 (只有行動版本)", - "fsAddNew": "啟用'新增新的興趣點'按鈕", - "fsLayerControlToggle": "開始時擴展圖層控制", - "fsLayers": "啟用圖層控制", - "fsWelcomeMessage": "顯示歡迎訊息以及相關頁籤", - "fsSearch": "啟用搜尋列", - "fsUserbadge": "啟用登入按鈕", - "editThemeDescription": "新增或改變這個地圖的問題", - "editThisTheme": "編輯這個主題", - "thanksForSharing": "感謝分享!", - "copiedToClipboard": "複製連結到簡貼簿", - "embedIntro": "

嵌入到你的網站

請考慮將這份地圖嵌入您的網站。
地圖毋須額外授權,非常歡迎您多加利用。
一切都是免費的,而且之後也是免費的,越有更多人使用,則越顯得它的價值。", - "addToHomeScreen": "

新增到您的主畫面

您可以輕易將這網站新增到您智慧型手機的主畫面,在網址列點選「新增到主畫面按鈕」來做這件事情。", - "intro": "

分享這地圖

複製下面的連結來向朋友與家人分享這份地圖:" - }, - "attribution": { - "codeContributionsBy": "MapComplete 是由 {contributors} 和其他 {hiddenCount} 位貢獻者構建而成", - "mapContributionsByAndHidden": "目前顯到的資料是由 {contributors} 和其他 {hiddenCount} 位貢獻者編輯貢獻", - "mapContributionsBy": "目前檢視的資料由 {contributors} 貢獻編輯", - "iconAttribution": { - "title": "使用的圖示" + "about": "相當容易編輯,而且能為開放街圖新增特定主題", + "aboutMapcomplete": "

關於 MapComplete

使用 MapComplete 你可以藉由單一主題新增開放街圖的圖資。回答幾個問題,然後幾分鐘之內你的貢獻立刻就傳遍全球!主題維護者定議主題的元素、問題與語言。

發現更多

MapComplete 總是提供學習更多開放街圖下一步的知識

  • 當你內嵌網站,網頁內嵌會連結到全螢幕的 MapComplete
  • 全螢幕的版本提供關於開放街圖的資訊
  • 不登入檢視成果,但是要編輯則需要 OSM 帳號。
  • 如果你沒有登入,你會被要求先登入
  • 當你回答單一問題時,你可以在地圖新增新的節點
  • 過了一陣子,實際的 OSM-標籤會顯示,之後會連結到 wiki


你有注意到問題嗎?你想請求功能嗎?想要幫忙翻譯嗎?來到原始碼或是問題追蹤器。

想要看到你的進度嗎?到OsmCha追蹤編輯數。

", + "add": { + "addNew": "在這裡新增新的 {category}", + "addNewMapLabel": "點這邊新增新項目", + "confirmButton": "在此新增 {category}。
大家都可以看到您新增的內容
", + "confirmIntro": "

在這裡新增 {title} ?

你在這裡新增的節點所有人都看得到。請只有在確定有物件存在的情形下才新增上去,許多應用程式都使用這份資料。", + "disableFilters": "關閉所有篩選器", + "disableFiltersExplanation": "有些圖徵可能被篩選器隱藏", + "hasBeenImported": "這個點已經被匯入了", + "intro": "您點擊處目前未有已知的資料。
", + "layerNotEnabled": "圖層 {layer} 目前無法使用,請先啟用這圖層再加新的節點", + "openLayerControl": "開啟圖層控制框", + "pleaseLogin": "請先登入來新增節點", + "presetInfo": "新的興趣點有 {tags}", + "stillLoading": "目前仍在載入資料,請稍後再來新增節點。", + "title": "新增新的節點?", + "warnVisibleForEveryone": "你新增的東西將會被所有人看到", + "zoomInFurther": "放大來新增新的節點。", + "zoomInMore": "再放大來匯入這一圖徵" }, - "themeBy": "由 {author} 維護主題", - "attributionContent": "

所有資料由開放街圖提供,在開放資料庫授權條款之下自由再利用。

", - "attributionTitle": "署名通知" - }, - "openStreetMapIntro": "

開放的地圖

如果有一份地圖,任何人都能自由使用與編輯,單一的地圖能夠儲存所有地理相關資訊?這樣不就很酷嗎?接著,所有的網站使用不同的、範圍小的,不相容的地圖 (通常也都過時了),也就不再需要了。

開放街圖就是這樣的地圖,人人都能免費這些圖資 (只要署名與公開變動這資料)。只要遵循這些,任何人都能自由新增新資料與修正錯誤,這些網站也都使用開放街圖,資料也都來自開放街圖,你的答案與修正也會加到開放街圖上面。

許多人與應用程式已經採用開放街圖了:Organic MapsOsmAnd,還有 Facebook、Instagram,蘋果地圖、Bing 地圖(部分)採用開放街圖。如果你在開放街圖上變動資料,也會同時影響這些應用 - 在他們下次更新資料之後!

", - "questions": { - "emailIs": "{category} 的電子郵件地址是{email}", - "emailOf": "{category} 的電子郵件地址是?", - "websiteIs": "網站:{website}", - "websiteOf": "{category} 的網站網址是?", - "phoneNumberIs": "此 {category} 的電話號碼為 {phone}", - "phoneNumberOf": "{category} 的電話號碼是?" - }, - "noNameCategory": "{category} 沒有名稱", - "nameInlineQuestion": "這個 {category} 的名稱是 $$$", - "about": "相當容易編輯,而且能為開放街圖新增特定主題", - "pickLanguage": "選擇語言: ", - "add": { - "layerNotEnabled": "圖層 {layer} 目前無法使用,請先啟用這圖層再加新的節點", - "openLayerControl": "開啟圖層控制框", - "confirmButton": "在此新增 {category}。
大家都可以看到您新增的內容
", - "confirmIntro": "

在這裡新增 {title} ?

你在這裡新增的節點所有人都看得到。請只有在確定有物件存在的情形下才新增上去,許多應用程式都使用這份資料。", - "stillLoading": "目前仍在載入資料,請稍後再來新增節點。", - "zoomInFurther": "放大來新增新的節點。", - "pleaseLogin": "請先登入來新增節點", - "intro": "您點擊處目前未有已知的資料。
", - "title": "新增新的節點?", - "addNew": "在這裡新增新的 {category}" - }, - "osmLinkTooltip": "在開放街圖歷史和更多編輯選項下面來檢視這物件", - "number": "號碼", - "skippedQuestions": "有些問題已經跳過了", - "oneSkippedQuestion": "跳過一個問題", - "skip": "跳過這問題", - "cancel": "取消", - "save": "儲存", - "returnToTheMap": "回到地圖", - "search": { - "error": "有狀況發生了…", - "nothing": "沒有找到…", - "searching": "搜尋中…", - "search": "搜尋地點" - }, - "loginToStart": "登入之後來回答這問題", - "welcomeBack": "你已經登入了,歡迎回來!", - "loginWithOpenStreetMap": "用開放街圖帳號登入" + "attribution": { + "attributionContent": "

所有資料由開放街圖提供,在開放資料庫授權條款之下自由再利用。

", + "attributionTitle": "署名通知", + "codeContributionsBy": "MapComplete 是由 {contributors} 和其他 {hiddenCount} 位貢獻者構建而成", + "iconAttribution": { + "title": "使用的圖示" + }, + "mapContributionsBy": "目前檢視的資料由 {contributors} 貢獻編輯", + "mapContributionsByAndHidden": "目前顯到的資料是由 {contributors} 和其他 {hiddenCount} 位貢獻者編輯貢獻", + "themeBy": "由 {author} 維護主題" + }, + "backgroundMap": "背景地圖", + "cancel": "取消", + "customThemeIntro": "

客製化主題

觀看這些先前使用者創造的主題。", + "download": { + "downloadAsPdf": "下載目前地圖的 PDF 檔", + "downloadAsPdfHelper": "列印當前地圖相當理想", + "downloadCSV": "下載可視資料為 CSV", + "downloadCSVHelper": "與 LibreOffice Calc、Excel 等相容", + "downloadGeoJsonHelper": "與 QGIS、ArcGIS、ESRI 等相容", + "downloadGeojson": "下載可視資料為 GeoJSON", + "exporting": "匯出…", + "includeMetaData": "包括 metadata (上次編輯者、計算數值等)", + "title": "下載可視的資料" + }, + "fewChangesBefore": "請先回答有關既有節點的問題再來新增新節點。", + "general": { + "about": "相當容易編輯,而且能為開放街圖新增特定主題", + "aboutMapcomplete": "

關於 MapComplete

使用 MapComplete 你可以藉由單一主題豐富開放街圖的圖資。回答幾個問題,然後幾分鐘之內你的貢獻立刻就傳遍全球!主題維護者定議主題的元素、問題與語言。

發現更多

MapComplete 總是提供學習更多開放街圖下一步的知識

  • 當你內嵌網站,網頁內嵌會連結到全螢幕的 MapComplete
  • 全螢幕的版本提供關於開放街圖的資訊
  • 不登入檢視成果,但是要編輯則需登入 OSM。
  • 如果你沒有登入,你會被要求先登入
  • 當你回答單一問題時,你可以在地圖新增新的節點
  • 過了一陣子,實際的 OSM-標籤會顯示,之後會連結到 wiki


你有注意到問題嗎?你想請求功能嗎?想要幫忙翻譯嗎?來到原始碼或是問題追蹤器。

想要看到你的進度嗎?到OsmCha追蹤編輯數。

", + "add": { + "addNew": "在這裡新增新的 {category}", + "confirmButton": "在此新增 {category}。
大家都可以看到您新增的內容
", + "confirmIntro": "

在這裡新增 {title} ?

你在這裡新增的節點所有人都看得到。請只有在確定有物件存在的情形下才新增上去,許多應用程式都使用這份資料。", + "intro": "您點擊處目前未有已知的資料。
", + "layerNotEnabled": "圖層 {layer} 目前無法使用,請先啟用這圖層再加新的節點", + "openLayerControl": "開啟圖層控制框", + "pleaseLogin": "請先登入來新增節點", + "stillLoading": "目前仍在載入資料,請稍後再來新增節點。", + "title": "新增新的節點?", + "zoomInFurther": "放大來新增新的節點。" + }, + "attribution": { + "attributionContent": "

所有資料由開放街圖提供,在開放資料庫授權條款之下自由再利用。

", + "attributionTitle": "署名通知", + "codeContributionsBy": "MapComplete 是由 {contributors} 和其他 {hiddenCount} 位貢獻者構建而成", + "iconAttribution": { + "title": "使用的圖示" + }, + "mapContributionsBy": "目前檢視的資料由 {contributors} 貢獻編輯", + "mapContributionsByAndHidden": "目前顯到的資料是由 {contributors} 和其他 {hiddenCount} 位貢獻者編輯貢獻", + "themeBy": "由 {author} 維護主題" + }, + "backgroundMap": "背景地圖", + "cancel": "取消", + "customThemeIntro": "

客製化主題

觀看這些先前使用者創造的主題。", + "fewChangesBefore": "請先回答有關既有節點的問題再來新增新節點。", + "getStartedLogin": "登入開放街圖帳號來開始", + "getStartedNewAccount": " 或是 註冊新帳號", + "goToInbox": "開啟訊息框", + "layerSelection": { + "title": "選擇圖層", + "zoomInToSeeThisLayer": "放大來看這個圖層" + }, + "loginToStart": "登入之後來回答這問題", + "loginWithOpenStreetMap": "用開放街圖帳號登入", + "morescreen": { + "createYourOwnTheme": "從零開始建立你的 MapComplete 主題", + "intro": "

看更多主題地圖?

您喜歡蒐集地理資料嗎?
還有更多主題。", + "requestATheme": "如果你有客製化要求,請到問題追踪器那邊提出要求", + "streetcomplete": "行動裝置另有類似的應用程式 StreetComplete。" + }, + "nameInlineQuestion": "這個 {category} 的名稱是 $$$", + "noNameCategory": "{category} 沒有名稱", + "noTagsSelected": "沒有選取標籤", + "number": "號碼", + "oneSkippedQuestion": "跳過一個問題", + "openStreetMapIntro": "

開放的地圖

如果有一份地圖,任何人都能自由使用與編輯,單一的地圖能夠儲存所有地理相關資訊?這樣不就很酷嗎?接著,所有的網站使用不同的、範圍小的,不相容的地圖 (通常也都過時了),也就不再需要了。

開放街圖就是這樣的地圖,人人都能免費這些圖資 (只要署名與公開變動這資料)。只要遵循這些,任何人都能自由新增新資料與修正錯誤,這些網站也都使用開放街圖,資料也都來自開放街圖,你的答案與修正也會加到開放街圖上面。

許多人與應用程式已經採用開放街圖了:Organic MapsOsmAnd,還有 Facebook、Instagram,蘋果地圖、Bing 地圖(部分)採用開放街圖。如果你在開放街圖上變動資料,也會同時影響這些應用 - 在他們下次更新資料之後!

", + "opening_hours": { + "closed_permanently": "不清楚關閉多久了", + "closed_until": "{date} 起關閉", + "error_loading": "錯誤:無法視覺化開放時間。", + "not_all_rules_parsed": "這間店的開放時間相當複雜,在輸入元素時忽略接下來的規則:", + "openTill": "結束時間", + "open_24_7": "24小時營業", + "open_during_ph": "國定假日的時候,這個場所是", + "opensAt": "開始時間", + "ph_closed": "無營業", + "ph_not_known": " ", + "ph_open": "有營業" + }, + "osmLinkTooltip": "在開放街圖歷史和更多編輯選項下面來檢視這物件", + "pickLanguage": "選擇語言: ", + "questions": { + "emailIs": "{category} 的電子郵件地址是{email}", + "emailOf": "{category} 的電子郵件地址是?", + "phoneNumberIs": "此 {category} 的電話號碼為 {phone}", + "phoneNumberOf": "{category} 的電話號碼是?", + "websiteIs": "網站:{website}", + "websiteOf": "{category} 的網站網址是?" + }, + "readYourMessages": "請先閱讀開放街圖訊息之前再來新增新節點。", + "returnToTheMap": "回到地圖", + "save": "儲存", + "search": { + "error": "有狀況發生了…", + "nothing": "沒有找到…", + "search": "搜尋地點", + "searching": "搜尋中…" + }, + "sharescreen": { + "addToHomeScreen": "

新增到您的主畫面

您可以輕易將這網站新增到您智慧型手機的主畫面,在網址列點選「新增到主畫面按鈕」來做這件事情。", + "copiedToClipboard": "複製連結到簡貼簿", + "editThemeDescription": "新增或改變這個地圖的問題", + "editThisTheme": "編輯這個主題", + "embedIntro": "

嵌入到你的網站

請考慮將這份地圖嵌入您的網站。
地圖毋須額外授權,非常歡迎您多加利用。
一切都是免費的,而且之後也是免費的,越有更多人使用,則越顯得它的價值。", + "fsAddNew": "啟用'新增新的興趣點'按鈕", + "fsGeolocation": "啟用'地理定位自身'按鈕 (只有行動版本)", + "fsIncludeCurrentBackgroundMap": "包含目前背景選擇{name}", + "fsIncludeCurrentLayers": "包含目前選擇圖層", + "fsIncludeCurrentLocation": "包含目前位置", + "fsLayerControlToggle": "開始時擴展圖層控制", + "fsLayers": "啟用圖層控制", + "fsSearch": "啟用搜尋列", + "fsUserbadge": "啟用登入按鈕", + "fsWelcomeMessage": "顯示歡迎訊息以及相關頁籤", + "intro": "

分享這地圖

複製下面的連結來向朋友與家人分享這份地圖:", + "thanksForSharing": "感謝分享!" + }, + "skip": "跳過這問題", + "skippedQuestions": "有些問題已經跳過了", + "weekdays": { + "abbreviations": { + "friday": "星期五", + "monday": "星期一", + "saturday": "星期六", + "sunday": "星期日", + "thursday": "星期四", + "tuesday": "星期二", + "wednesday": "星期三" + }, + "friday": "星期五", + "monday": "星期一", + "saturday": "星期六", + "sunday": "星期日", + "thursday": "星期四", + "tuesday": "星期二", + "wednesday": "星期三" + }, + "welcomeBack": "你已經登入了,歡迎回來!" + }, + "getStartedLogin": "登入開放街圖帳號來開始", + "getStartedNewAccount": " 或是 註冊新帳號", + "goToInbox": "開啟訊息框", + "layerSelection": { + "title": "選擇圖層", + "zoomInToSeeThisLayer": "放大來看看這一圖層" + }, + "loading": "載入中...", + "loginOnlyNeededToEdit": "如果你想要編輯地圖", + "loginToStart": "登入之後來回答這問題", + "loginWithOpenStreetMap": "用開放街圖帳號登入", + "morescreen": { + "createYourOwnTheme": "從零開始建立你的 MapComplete 主題", + "hiddenExplanation": "這些主題只能透過連結來打開,你已經發現 {total_hidden} 當中 {hidden_discovered} 的隱藏主題。", + "intro": "

看更多主題地圖?

您喜歡蒐集地理資料嗎?
還有更多主題。", + "previouslyHiddenTitle": "先前看過隱藏的主題", + "requestATheme": "如果你有客製化主題,請到問題追踪器那邊提出要求", + "streetcomplete": "行動裝置另有類似的應用程式 StreetComplete。" + }, + "nameInlineQuestion": "這個 {category} 的名稱是 $$$", + "noNameCategory": "{category} 沒有名稱", + "noTagsSelected": "沒有選取標籤", + "number": "號碼", + "oneSkippedQuestion": "跳過一個問題", + "openStreetMapIntro": "

開放的地圖

如果有一份地圖,任何人都能使用與自由編輯,單一的地圖能夠儲存所有地理相關資訊。不同的、範圍小的,不相容甚至過時不再被需要的地圖。

開放街圖不是敵人的地圖,人人都能自由使用這些圖資, (只要署名與公開變動這資料)。任何人都能新增新資料與修正錯誤,這些網站也用開放街圖,資料也都來自開放街圖,你的答案與修正也會加被用到/p>

許多人與應用程式已經採用開放街圖了:Organic MapsOsmAnd,還有 Facebook、Instagram,蘋果地圖、Bing 地圖(部分)採用開放街圖。

", + "openTheMap": "開啟地圖", + "opening_hours": { + "closed_permanently": "不清楚關閉多久了", + "closed_until": "{date} 起關閉", + "error_loading": "錯誤:無法視覺化開放時間。", + "not_all_rules_parsed": "這間店的開放時間相當複雜,在輸入元素時忽略接下來的規則:", + "openTill": "結束時間", + "open_24_7": "24小時營業", + "open_during_ph": "國定假日的時候,這個場所是", + "opensAt": "開始時間", + "ph_closed": "無營業", + "ph_not_known": " ", + "ph_open": "有營業" + }, + "osmLinkTooltip": "在開放街圖歷史和更多編輯選項下面來瀏覽這物件", + "pdf": { + "attr": "地圖資料 @ 開放街圖貢獻者,採用 ODbL 授權可再利用", + "attrBackground": "背景圖層:{background}", + "generatedWith": "用 MapComplete.osm.be 產生的", + "versionInfo": "v{version} - {date} 產生的" + }, + "pickLanguage": "選擇語言: ", + "questions": { + "emailIs": "{category} 的電子郵件地址是{email}", + "emailOf": "{category} 的電子郵件地址是?", + "phoneNumberIs": "此 {category} 的電話號碼為 {phone}", + "phoneNumberOf": "{category} 的電話號碼是?", + "websiteIs": "網站:{website}", + "websiteOf": "{category} 的網站網址是?" + }, + "readYourMessages": "請先閱讀開放街圖訊息之前再來新增新節點。", + "returnToTheMap": "回到地圖", + "save": "儲存", + "search": { + "error": "有狀況發生了…", + "nothing": "沒有找到…", + "search": "搜尋地點", + "searching": "搜尋中…" + }, + "sharescreen": { + "addToHomeScreen": "

新增到你主頁畫面

你可以輕易將這網站加到你智慧型手機的主頁畫面,在網址列點選 '新增到主頁按鈕'來做這件事情。", + "copiedToClipboard": "複製連結到簡貼簿", + "editThemeDescription": "新增或改變這個地圖主題的問題", + "editThisTheme": "編輯這個主題", + "embedIntro": "

嵌入到你的網站

請考慮將這份地圖嵌入您的網站。
地圖毋須額外授權,非常歡迎您多加利用。
一切都是免費的,而且之後也是免費的,越有更多人使用,則越顯得它的價值。", + "fsAddNew": "啟用'新增新的興趣點'按鈕", + "fsGeolocation": "啟用'地理定位自身'按鈕 (只有行動版本)", + "fsIncludeCurrentBackgroundMap": "包含目前背景選擇{name}", + "fsIncludeCurrentLayers": "包含目前選擇圖層", + "fsIncludeCurrentLocation": "包含目前位置", + "fsLayerControlToggle": "開始時擴展圖層控制", + "fsLayers": "啟用圖層控制", + "fsSearch": "啟用搜尋列", + "fsUserbadge": "啟用登入按鈕", + "fsWelcomeMessage": "顯示歡迎訊息以及相關頁籤", + "intro": "

分享這地圖

複製下面的連結來向朋友與家人分享這份地圖:", + "thanksForSharing": "感謝分享!" + }, + "skip": "跳過這問題", + "skippedQuestions": "有些問題已經跳過了", + "testing": "測試 - 改變還沒有儲存", + "weekdays": { + "abbreviations": { + "friday": "星期五", + "monday": "星期一", + "saturday": "星期六", + "sunday": "星期日", + "thursday": "星期四", + "tuesday": "星期二", + "wednesday": "星期三" + }, + "friday": "星期五", + "monday": "星期一", + "saturday": "星期六", + "sunday": "星期日", + "thursday": "星期四", + "tuesday": "星期二", + "wednesday": "星期三" + }, + "welcomeBack": "你已經登入了,歡迎回來!" }, - "backgroundMap": "背景地圖", - "aboutMapcomplete": "

關於 MapComplete

使用 MapComplete 你可以藉由單一主題豐富開放街圖的圖資。回答幾個問題,然後幾分鐘之內你的貢獻立刻就傳遍全球!主題維護者定議主題的元素、問題與語言。

發現更多

MapComplete 總是提供學習更多開放街圖下一步的知識

  • 當你內嵌網站,網頁內嵌會連結到全螢幕的 MapComplete
  • 全螢幕的版本提供關於開放街圖的資訊
  • 不登入檢視成果,但是要編輯則需登入 OSM。
  • 如果你沒有登入,你會被要求先登入
  • 當你回答單一問題時,你可以在地圖新增新的節點
  • 過了一陣子,實際的 OSM-標籤會顯示,之後會連結到 wiki


你有注意到問題嗎?你想請求功能嗎?想要幫忙翻譯嗎?來到原始碼或是問題追蹤器。

想要看到你的進度嗎?到OsmCha追蹤編輯數。

", - "customThemeIntro": "

客製化主題

觀看這些先前使用者創造的主題。", - "noTagsSelected": "沒有選取標籤", - "getStartedNewAccount": " 或是 註冊新帳號", - "getStartedLogin": "登入開放街圖帳號來開始", - "goToInbox": "開啟訊息框", - "fewChangesBefore": "請先回答有關既有節點的問題再來新增新節點。", - "readYourMessages": "請先閱讀開放街圖訊息之前再來新增新節點。", - "morescreen": { - "createYourOwnTheme": "從零開始建立你的 MapComplete 主題", - "streetcomplete": "行動裝置另有類似的應用程式 StreetComplete。", - "requestATheme": "如果你有客製化要求,請到問題追踪器那邊提出要求", - "intro": "

看更多主題地圖?

您喜歡蒐集地理資料嗎?
還有更多主題。" + "image": { + "addPicture": "新增圖片", + "ccb": "以 CC-BY 授權條款", + "ccbs": "以 CC-BY-SA 授權條款", + "cco": "公有領域", + "doDelete": "移除圖片", + "dontDelete": "取消", + "isDeleted": "已移除", + "pleaseLogin": "請登入以新增圖片", + "respectPrivacy": "請別照人像或是車牌,不要上傳 Google 地圖、Google 街景或其他受版權保護的資料來源。", + "toBig": "{actual_size} 因此照片太大,請使用最大 {max_size} 的照片", + "uploadDone": "已經新增你的照片,謝謝你的協助!", + "uploadFailed": "無法上傳您的圖片。您是否已連線至網際網路,並允許第三方 API?Brave 瀏覽器或 uMatrix 外掛程式都可能會封鎖它們。", + "uploadMultipleDone": "已經新增 {count} 圖片,謝謝你的幫忙!", + "uploadingMultiple": "正在上傳 {count} 張圖片…", + "uploadingPicture": "正在上傳你的圖片…", + "willBePublished": "你的圖片將依以下授權釋出: " }, - "sharescreen": { - "fsIncludeCurrentLocation": "包含目前位置", - "fsIncludeCurrentLayers": "包含目前選擇圖層", - "fsIncludeCurrentBackgroundMap": "包含目前背景選擇{name}", - "fsGeolocation": "啟用'地理定位自身'按鈕 (只有行動版本)", - "fsAddNew": "啟用'新增新的興趣點'按鈕", - "fsLayerControlToggle": "開始時擴展圖層控制", - "fsLayers": "啟用圖層控制", - "fsWelcomeMessage": "顯示歡迎訊息以及相關頁籤", - "fsSearch": "啟用搜尋列", - "fsUserbadge": "啟用登入按鈕", - "editThemeDescription": "新增或改變這個地圖的問題", - "editThisTheme": "編輯這個主題", - "thanksForSharing": "感謝分享!", - "copiedToClipboard": "複製連結到簡貼簿", - "embedIntro": "

嵌入到你的網站

請考慮將這份地圖嵌入您的網站。
地圖毋須額外授權,非常歡迎您多加利用。
一切都是免費的,而且之後也是免費的,越有更多人使用,則越顯得它的價值。", - "addToHomeScreen": "

新增到你主頁畫面

你可以輕易將這網站加到你智慧型手機的主頁畫面,在網址列點選 '新增到主頁按鈕'來做這件事情。", - "intro": "

分享這地圖

複製下面的連結來向朋友與家人分享這份地圖:" + "index": { + "#": "當沒有載入主題時,這些文字會在主題按鈕上面顯示", + "featuredThemeTitle": "這週的焦點", + "intro": "MapComplete 是開放街圖能夠顯示特定主題的檢視器與編輯器,能夠顯示與允許更新特定主題的地圖。", + "pickTheme": "請挑選主題來開始。", + "title": "歡迎使用 MapComplete" }, - "attribution": { - "codeContributionsBy": "MapComplete 是由 {contributors} 和其他 {hiddenCount} 位貢獻者構建而成", - "mapContributionsByAndHidden": "目前顯到的資料是由 {contributors} 和其他 {hiddenCount} 位貢獻者編輯貢獻", - "mapContributionsBy": "目前檢視的資料由 {contributors} 貢獻編輯", - "iconAttribution": { - "title": "使用的圖示" - }, - "themeBy": "由 {author} 維護主題", - "attributionContent": "

所有資料由開放街圖提供,在開放資料庫授權條款之下自由再利用。

", - "attributionTitle": "署名通知" + "reviews": { + "affiliated_reviewer_warning": "(關係者審核)", + "attribution": "評審系統由Mangrove Reviews提供技術支援,採用CC-BY 4.0授權條款。", + "i_am_affiliated": "我是這物件的相關關係者
確認你是否是擁有者、創造者、員工等等", + "name_required": "需要有名稱才能顯示和創造審核", + "no_rating": "還沒有評分", + "no_reviews_yet": "還沒有審核,當第一個撰寫者來幫助開放資料與商家吧!", + "plz_login": "登入來留下審核", + "posting_as": "以貼文", + "saved": "已儲存審核,謝謝你的分享!", + "saving_review": "儲存中…", + "title": "{count} 審核次數", + "title_singular": "一次審核", + "tos": "如果你創建審核,你同意TOS 與 Mangrove.reviews 的隱私權政策", + "write_a_comment": "留下審核…" }, - "openStreetMapIntro": "

開放的地圖

如果有一份地圖,任何人都能自由使用與編輯,單一的地圖能夠儲存所有地理相關資訊?這樣不就很酷嗎?接著,所有的網站使用不同的、範圍小的,不相容的地圖 (通常也都過時了),也就不再需要了。

開放街圖就是這樣的地圖,人人都能免費這些圖資 (只要署名與公開變動這資料)。只要遵循這些,任何人都能自由新增新資料與修正錯誤,這些網站也都使用開放街圖,資料也都來自開放街圖,你的答案與修正也會加到開放街圖上面。

許多人與應用程式已經採用開放街圖了:Organic MapsOsmAnd,還有 Facebook、Instagram,蘋果地圖、Bing 地圖(部分)採用開放街圖。如果你在開放街圖上變動資料,也會同時影響這些應用 - 在他們下次更新資料之後!

", - "questions": { - "emailIs": "{category} 的電子郵件地址是{email}", - "emailOf": "{category} 的電子郵件地址是?", - "websiteIs": "網站:{website}", - "websiteOf": "{category} 的網站網址是?", - "phoneNumberIs": "此 {category} 的電話號碼為 {phone}", - "phoneNumberOf": "{category} 的電話號碼是?" - }, - "noNameCategory": "{category} 沒有名稱", - "nameInlineQuestion": "這個 {category} 的名稱是 $$$", - "about": "相當容易編輯,而且能為開放街圖新增特定主題", - "pickLanguage": "選擇語言: ", - "add": { - "layerNotEnabled": "圖層 {layer} 目前無法使用,請先啟用這圖層再加新的節點", - "openLayerControl": "開啟圖層控制框", - "confirmButton": "在此新增 {category}。
大家都可以看到您新增的內容
", - "confirmIntro": "

在這裡新增 {title} ?

你在這裡新增的節點所有人都看得到。請只有在確定有物件存在的情形下才新增上去,許多應用程式都使用這份資料。", - "stillLoading": "目前仍在載入資料,請稍後再來新增節點。", - "zoomInFurther": "放大來新增新的節點。", - "pleaseLogin": "請先登入來新增節點", - "intro": "您點擊處目前未有已知的資料。
", - "title": "新增新的節點?", - "addNew": "在這裡新增新的 {category}" - }, - "osmLinkTooltip": "在開放街圖歷史和更多編輯選項下面來檢視這物件", - "number": "號碼", - "skippedQuestions": "有些問題已經跳過了", - "oneSkippedQuestion": "跳過一個問題", - "skip": "跳過這問題", - "cancel": "取消", - "save": "儲存", - "returnToTheMap": "回到地圖", - "search": { - "error": "有狀況發生了…", - "nothing": "沒有找到…", - "searching": "搜尋中…", - "search": "搜尋地點" - }, - "loginToStart": "登入之後來回答這問題", - "welcomeBack": "你已經登入了,歡迎回來!", - "loginWithOpenStreetMap": "用開放街圖帳號登入" - }, - "index": { - "pickTheme": "請挑選主題來開始。", - "intro": "MapComplete 是開放街圖能夠顯示特定主題的檢視器與編輯器。", - "title": "歡迎使用 MapComplete", - "#": "當沒有載入主題時,這些文字會在主題按鈕上面顯示" - }, - "centerMessage": { - "retrying": "無法讀取資料,請在 {count} 秒後再試一次…", - "ready": "完成!", - "zoomIn": "放大來檢視或編輯資料", - "loadingData": "正在讀取資料…" - }, - "image": { - "isDeleted": "已移除", - "doDelete": "移除圖片", - "dontDelete": "取消", - "uploadDone": "已經新增你的照片,謝謝你的協助!", - "respectPrivacy": "請別照人像或是車牌,不要上傳 Google 地圖、Google 街景或其他受版權保護的資料來源。", - "uploadFailed": "無法上傳您的圖片。您是否已連線至網際網路,並允許第三方 API?Brave 瀏覽器或 uMatrix 外掛程式都可能會封鎖它們。", - "ccb": "以 CC-BY 授權條款", - "ccbs": "以 CC-BY-SA 授權條款", - "cco": "公有領域", - "willBePublished": "你的圖片將依以下授權釋出: ", - "pleaseLogin": "請登入以新增圖片", - "uploadingMultiple": "正在上傳 {count} 張圖片…", - "uploadingPicture": "正在上傳你的圖片…", - "addPicture": "新增圖片" - } -} + "split": { + "cancel": "取消", + "hasBeenSplit": "這路徑已經分割", + "inviteToSplit": "分割這道路比較小的片段,讓不同道路能有不同的屬性。", + "loginToSplit": "你必須登入才能分割道路", + "split": "分開", + "splitTitle": "請在地圖選擇要在那裡分割道路" + } +} \ No newline at end of file diff --git a/notfound.ts b/notfound.ts new file mode 100644 index 0000000000..2c2be6c6c4 --- /dev/null +++ b/notfound.ts @@ -0,0 +1,6 @@ +import {FixedUiElement} from "./UI/Base/FixedUiElement"; +import Combine from "./UI/Base/Combine"; +import BackToIndex from "./UI/BigComponents/BackToIndex"; + +new Combine([new FixedUiElement("This page is not found"), + new BackToIndex()]).AttachTo("maindiv") \ No newline at end of file diff --git a/package-lock.json b/package-lock.json index 11c576967e..29e5b3df30 100644 --- a/package-lock.json +++ b/package-lock.json @@ -10,46 +10,49 @@ "license": "GPL", "dependencies": { "@babel/preset-env": "7.13.8", - "@turf/buffer": "^6.3.0", - "@turf/collect": "^6.3.0", - "@turf/distance": "^6.3.0", - "@turf/length": "^6.3.0", - "@turf/turf": "^6.3.0", + "@turf/buffer": "^6.5.0", + "@turf/collect": "^6.5.0", + "@turf/distance": "^6.5.0", + "@turf/length": "^6.5.0", + "@turf/turf": "^6.5.0", "@types/jquery": "^3.5.5", "@types/leaflet-markercluster": "^1.0.3", "@types/leaflet-providers": "^1.2.0", - "@types/leaflet.markercluster": "^1.4.3", "@types/lz-string": "^1.3.34", + "@types/papaparse": "^5.3.1", "@types/prompt-sync": "^4.1.0", "@types/wikidata-sdk": "^6.1.0", + "@types/xml2js": "^0.4.9", "country-language": "^0.1.7", "email-validator": "^2.0.4", "escape-html": "^1.0.3", "i18next-client": "^1.11.4", + "idb-keyval": "^6.0.3", "jquery": "^3.6.0", "jspdf": "^2.3.1", - "latlon2country": "^1.1.3", + "latlon2country": "^1.2.6", "leaflet": "^1.7.1", "leaflet-polylineoffset": "^1.1.1", "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", "moment": "^2.29.0", - "npm-run-all": "^4.1.5", "opening_hours": "^3.6.0", "osm-auth": "^1.0.2", "osmtogeojson": "^3.0.0-beta.4", + "papaparse": "^5.3.1", "parcel": "^1.2.4", "prompt-sync": "^4.2.0", + "svg-resizer": "github:vieron/svg-resizer", "tailwindcss": "^2.2.15", "togpx": "^0.5.4", "tslint": "^6.1.3", "wikibase-sdk": "^7.14.0", - "wikidata-sdk": "^7.14.0" + "wikidata-sdk": "^7.14.0", + "xml2js": "^0.4.23" }, "devDependencies": { "@babel/polyfill": "^7.10.4", @@ -57,8 +60,6 @@ "assert": "^2.0.0", "dependency-cruiser": "^10.4.0", "fs": "0.0.1-security", - "git-json-merge": "^0.4.5", - "marked": "^2.0.0", "read-file": "^0.2.0", "sharp": "^0.28.3", "ts-node": "^9.0.0", @@ -1509,24 +1510,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", @@ -1641,1298 +1624,1573 @@ } }, "node_modules/@turf/along": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/@turf/along/-/along-6.3.0.tgz", - "integrity": "sha512-2j0nHp38IuzESyv5/9hLYM2MuUe155Kw390lkQtiLjhRtTeYQNEaRy+uhZhf3/DWrjGULH1HatLc5j0CmiwrJA==", + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/along/-/along-6.5.0.tgz", + "integrity": "sha512-LLyWQ0AARqJCmMcIEAXF4GEu8usmd4Kbz3qk1Oy5HoRNpZX47+i5exQtmIWKdqJ1MMhW26fCTXgpsEs5zgJ5gw==", "dependencies": { - "@turf/bearing": "^6.3.0", - "@turf/destination": "^6.3.0", - "@turf/distance": "^6.3.0", - "@turf/helpers": "^6.3.0", - "@turf/invariant": "^6.3.0" + "@turf/bearing": "^6.5.0", + "@turf/destination": "^6.5.0", + "@turf/distance": "^6.5.0", + "@turf/helpers": "^6.5.0", + "@turf/invariant": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" } }, "node_modules/@turf/angle": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/@turf/angle/-/angle-6.3.0.tgz", - "integrity": "sha512-wCWoK+7JKGYPZKYxdWwJJfqm1IQbUdOf4j5SENO6WJryXViM/ogRu2eAEqrmyrMYO84vonMSqiuPEuGoLqo9Xg==", + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/angle/-/angle-6.5.0.tgz", + "integrity": "sha512-4pXMbWhFofJJAOvTMCns6N4C8CMd5Ih4O2jSAG9b3dDHakj3O4yN1+Zbm+NUei+eVEZ9gFeVp9svE3aMDenIkw==", "dependencies": { - "@turf/bearing": "^6.3.0", - "@turf/helpers": "^6.3.0", - "@turf/invariant": "^6.3.0", - "@turf/rhumb-bearing": "^6.3.0" + "@turf/bearing": "^6.5.0", + "@turf/helpers": "^6.5.0", + "@turf/invariant": "^6.5.0", + "@turf/rhumb-bearing": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" } }, "node_modules/@turf/area": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/@turf/area/-/area-6.3.0.tgz", - "integrity": "sha512-Y1cYyAQ2fk94npdgOeMF4msc2uabHY1m7A7ntixf1I8rkyDd6/iHh1IMy1QsM+VZXAEwDwsXhu+ZFYd3Jkeg4A==", + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/area/-/area-6.5.0.tgz", + "integrity": "sha512-xCZdiuojokLbQ+29qR6qoMD89hv+JAgWjLrwSEWL+3JV8IXKeNFl6XkEJz9HGkVpnXvQKJoRz4/liT+8ZZ5Jyg==", "dependencies": { - "@turf/helpers": "^6.3.0", - "@turf/meta": "^6.3.0" + "@turf/helpers": "^6.5.0", + "@turf/meta": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" } }, "node_modules/@turf/bbox": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/@turf/bbox/-/bbox-6.3.0.tgz", - "integrity": "sha512-N4ue5Xopu1qieSHP2MA/CJGWHPKaTrVXQJjzHRNcY1vtsO126xbSaJhWUrFc5x5vVkXp0dcucGryO0r5m4o/KA==", + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/bbox/-/bbox-6.5.0.tgz", + "integrity": "sha512-RBbLaao5hXTYyyg577iuMtDB8ehxMlUqHEJiMs8jT1GHkFhr6sYre3lmLsPeYEi/ZKj5TP5tt7fkzNdJ4GIVyw==", "dependencies": { - "@turf/helpers": "^6.3.0", - "@turf/meta": "^6.3.0" + "@turf/helpers": "^6.5.0", + "@turf/meta": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" } }, "node_modules/@turf/bbox-clip": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/@turf/bbox-clip/-/bbox-clip-6.3.0.tgz", - "integrity": "sha512-DCFs1MdX3P7SzZiBjT1kWBp4g0cfv8Yn2/Ccq3JP4iVaqNQJujPfe0WwZjjTdXLbLLFTjoxnCJBjy3WZDmLvlw==", + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/bbox-clip/-/bbox-clip-6.5.0.tgz", + "integrity": "sha512-F6PaIRF8WMp8EmgU/Ke5B1Y6/pia14UAYB5TiBC668w5rVVjy5L8rTm/m2lEkkDMHlzoP9vNY4pxpNthE7rLcQ==", "dependencies": { - "@turf/helpers": "^6.3.0", - "@turf/invariant": "^6.3.0" + "@turf/helpers": "^6.5.0", + "@turf/invariant": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" } }, "node_modules/@turf/bbox-polygon": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/@turf/bbox-polygon/-/bbox-polygon-6.3.0.tgz", - "integrity": "sha512-CCyTBM8LzGRu/lReNlgDyjRO8NojtJ7EPPvSl3bdKQbNFsCm25gwe7Y3xsaCkWLNn5g89lQJI9Izf9xdEsENjQ==", + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/bbox-polygon/-/bbox-polygon-6.5.0.tgz", + "integrity": "sha512-+/r0NyL1lOG3zKZmmf6L8ommU07HliP4dgYToMoTxqzsWzyLjaj/OzgQ8rBmv703WJX+aS6yCmLuIhYqyufyuw==", "dependencies": { - "@turf/helpers": "^6.3.0" + "@turf/helpers": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" } }, "node_modules/@turf/bearing": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/@turf/bearing/-/bearing-6.3.0.tgz", - "integrity": "sha512-apuUm9xN6VQLO33m7F2mmzlm3dHfeesJjMSzh9iehGtgmp1IaVndjdcIvs0ieiwm8bN9UhwXpfPtO3pV0n9SFw==", + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/bearing/-/bearing-6.5.0.tgz", + "integrity": "sha512-dxINYhIEMzgDOztyMZc20I7ssYVNEpSv04VbMo5YPQsqa80KO3TFvbuCahMsCAW5z8Tncc8dwBlEFrmRjJG33A==", "dependencies": { - "@turf/helpers": "^6.3.0", - "@turf/invariant": "^6.3.0" + "@turf/helpers": "^6.5.0", + "@turf/invariant": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" } }, "node_modules/@turf/bezier-spline": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/@turf/bezier-spline/-/bezier-spline-6.3.0.tgz", - "integrity": "sha512-5kJv7zLjuZPhjO8Z/eNT68UHwiDru6ihn2He0VFrnSJQJZI8V/TFXCob7GxncYFlKk7uHru8iMXGxFe3Y3P44w==", + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/bezier-spline/-/bezier-spline-6.5.0.tgz", + "integrity": "sha512-vokPaurTd4PF96rRgGVm6zYYC5r1u98ZsG+wZEv9y3kJTuJRX/O3xIY2QnTGTdbVmAJN1ouOsD0RoZYaVoXORQ==", "dependencies": { - "@turf/helpers": "^6.3.0", - "@turf/invariant": "^6.3.0" + "@turf/helpers": "^6.5.0", + "@turf/invariant": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" } }, "node_modules/@turf/boolean-clockwise": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/@turf/boolean-clockwise/-/boolean-clockwise-6.3.0.tgz", - "integrity": "sha512-zW0j8uPjBS5QJqNmJIeatTH02E1S7OCuBNBvkoOUPifC/c2xJ120a1r73prBj1zMFr6k3UCjwG9V8whUMxIAYA==", + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/boolean-clockwise/-/boolean-clockwise-6.5.0.tgz", + "integrity": "sha512-45+C7LC5RMbRWrxh3Z0Eihsc8db1VGBO5d9BLTOAwU4jR6SgsunTfRWR16X7JUwIDYlCVEmnjcXJNi/kIU3VIw==", "dependencies": { - "@turf/helpers": "^6.3.0", - "@turf/invariant": "^6.3.0" + "@turf/helpers": "^6.5.0", + "@turf/invariant": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" } }, "node_modules/@turf/boolean-contains": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/@turf/boolean-contains/-/boolean-contains-6.3.0.tgz", - "integrity": "sha512-1MW7B5G5tIu1lnAv3pXyFzl75wfBYnbA2GhwHDb4okIXMhloy/r5uIqAZHo0fOXykKVJS/gIfA/MioKIftoTug==", + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/boolean-contains/-/boolean-contains-6.5.0.tgz", + "integrity": "sha512-4m8cJpbw+YQcKVGi8y0cHhBUnYT+QRfx6wzM4GI1IdtYH3p4oh/DOBJKrepQyiDzFDaNIjxuWXBh0ai1zVwOQQ==", "dependencies": { - "@turf/bbox": "^6.3.0", - "@turf/boolean-point-in-polygon": "^6.3.0", - "@turf/boolean-point-on-line": "^6.3.0", - "@turf/helpers": "^6.3.0", - "@turf/invariant": "^6.3.0" + "@turf/bbox": "^6.5.0", + "@turf/boolean-point-in-polygon": "^6.5.0", + "@turf/boolean-point-on-line": "^6.5.0", + "@turf/helpers": "^6.5.0", + "@turf/invariant": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" } }, "node_modules/@turf/boolean-crosses": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/@turf/boolean-crosses/-/boolean-crosses-6.3.0.tgz", - "integrity": "sha512-ajCuNSSqQPN2p3Y1ERX4E/wEsNn5JANI2uNgGOpVAeNX48prQGCBANcG2FTMMB+WVqq9iIdQ4eB5mEg6I8TS4w==", + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/boolean-crosses/-/boolean-crosses-6.5.0.tgz", + "integrity": "sha512-gvshbTPhAHporTlQwBJqyfW+2yV8q/mOTxG6PzRVl6ARsqNoqYQWkd4MLug7OmAqVyBzLK3201uAeBjxbGw0Ng==", "dependencies": { - "@turf/boolean-point-in-polygon": "^6.3.0", - "@turf/helpers": "^6.3.0", - "@turf/invariant": "^6.3.0", - "@turf/line-intersect": "^6.3.0", - "@turf/polygon-to-line": "^6.3.0" + "@turf/boolean-point-in-polygon": "^6.5.0", + "@turf/helpers": "^6.5.0", + "@turf/invariant": "^6.5.0", + "@turf/line-intersect": "^6.5.0", + "@turf/polygon-to-line": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" } }, "node_modules/@turf/boolean-disjoint": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/@turf/boolean-disjoint/-/boolean-disjoint-6.3.0.tgz", - "integrity": "sha512-bVAwAJF05QPH0tf+qjR3kUcCyqTgYcCbXSMgXl6LQF6mSGuOutzNq1gCyRLCOdOcZtw4Oh4dqeP3ykwv8kDibw==", + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/boolean-disjoint/-/boolean-disjoint-6.5.0.tgz", + "integrity": "sha512-rZ2ozlrRLIAGo2bjQ/ZUu4oZ/+ZjGvLkN5CKXSKBcu6xFO6k2bgqeM8a1836tAW+Pqp/ZFsTA5fZHsJZvP2D5g==", "dependencies": { - "@turf/boolean-point-in-polygon": "^6.3.0", - "@turf/helpers": "^6.3.0", - "@turf/line-intersect": "^6.3.0", - "@turf/meta": "^6.3.0", - "@turf/polygon-to-line": "^6.3.0" + "@turf/boolean-point-in-polygon": "^6.5.0", + "@turf/helpers": "^6.5.0", + "@turf/line-intersect": "^6.5.0", + "@turf/meta": "^6.5.0", + "@turf/polygon-to-line": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" } }, "node_modules/@turf/boolean-equal": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/@turf/boolean-equal/-/boolean-equal-6.3.0.tgz", - "integrity": "sha512-eXr3oSHTvJYGyu/v57uNg0tnDHFnu+triwAaXtBh7lozt4d2riU8Ow71B+tjT9mBe/JRFfXIDsBWjbyB37y/6w==", + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/boolean-equal/-/boolean-equal-6.5.0.tgz", + "integrity": "sha512-cY0M3yoLC26mhAnjv1gyYNQjn7wxIXmL2hBmI/qs8g5uKuC2hRWi13ydufE3k4x0aNRjFGlg41fjoYLwaVF+9Q==", "dependencies": { - "@turf/clean-coords": "^6.3.0", - "@turf/helpers": "^6.3.0", - "@turf/invariant": "^6.3.0", + "@turf/clean-coords": "^6.5.0", + "@turf/helpers": "^6.5.0", + "@turf/invariant": "^6.5.0", "geojson-equality": "0.1.6" + }, + "funding": { + "url": "https://opencollective.com/turf" } }, "node_modules/@turf/boolean-intersects": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/@turf/boolean-intersects/-/boolean-intersects-6.3.0.tgz", - "integrity": "sha512-2pHOYqHSKDo0rzHTiqwdAaxa+tHLwr4NaTAjOpuN2hipv9bErzGtv3e5IYceJBnT0u4akK17NTn6qAr7/7g2aQ==", + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/boolean-intersects/-/boolean-intersects-6.5.0.tgz", + "integrity": "sha512-nIxkizjRdjKCYFQMnml6cjPsDOBCThrt+nkqtSEcxkKMhAQj5OO7o2CecioNTaX8EayqwMGVKcsz27oP4mKPTw==", "dependencies": { - "@turf/boolean-disjoint": "^6.3.0", - "@turf/helpers": "^6.3.0", - "@turf/meta": "^6.3.0" + "@turf/boolean-disjoint": "^6.5.0", + "@turf/helpers": "^6.5.0", + "@turf/meta": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" } }, "node_modules/@turf/boolean-overlap": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/@turf/boolean-overlap/-/boolean-overlap-6.3.0.tgz", - "integrity": "sha512-rWh8JKTqlJ1m27FY8YeWcGoXutLyCVfSi2/8AOkXi2F+36P9GM4tHz19yKY3btbnHJTgSZf1xO2YhX2d0BmNqg==", + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/boolean-overlap/-/boolean-overlap-6.5.0.tgz", + "integrity": "sha512-8btMIdnbXVWUa1M7D4shyaSGxLRw6NjMcqKBcsTXcZdnaixl22k7ar7BvIzkaRYN3SFECk9VGXfLncNS3ckQUw==", "dependencies": { - "@turf/helpers": "^6.3.0", - "@turf/invariant": "^6.3.0", - "@turf/line-intersect": "^6.3.0", - "@turf/line-overlap": "^6.3.0", - "@turf/meta": "^6.3.0", + "@turf/helpers": "^6.5.0", + "@turf/invariant": "^6.5.0", + "@turf/line-intersect": "^6.5.0", + "@turf/line-overlap": "^6.5.0", + "@turf/meta": "^6.5.0", "geojson-equality": "0.1.6" + }, + "funding": { + "url": "https://opencollective.com/turf" } }, "node_modules/@turf/boolean-parallel": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/@turf/boolean-parallel/-/boolean-parallel-6.3.0.tgz", - "integrity": "sha512-p5YcKtVON6fTE3+pffw16QZyg3uXRmZ8CNxZM7lhGrJrPnny7BD2Kz1z2fp+8EElf00kjX2vFbDjDftte4Xh3g==", + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/boolean-parallel/-/boolean-parallel-6.5.0.tgz", + "integrity": "sha512-aSHJsr1nq9e5TthZGZ9CZYeXklJyRgR5kCLm5X4urz7+MotMOp/LsGOsvKvK9NeUl9+8OUmfMn8EFTT8LkcvIQ==", "dependencies": { - "@turf/clean-coords": "^6.3.0", - "@turf/helpers": "^6.3.0", - "@turf/line-segment": "^6.3.0", - "@turf/rhumb-bearing": "^6.3.0" + "@turf/clean-coords": "^6.5.0", + "@turf/helpers": "^6.5.0", + "@turf/line-segment": "^6.5.0", + "@turf/rhumb-bearing": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" } }, "node_modules/@turf/boolean-point-in-polygon": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/@turf/boolean-point-in-polygon/-/boolean-point-in-polygon-6.3.0.tgz", - "integrity": "sha512-NqFSsoE6OwhDK19IllDQRhEQEkF7UVEOlqH9vgS1fGg4T6NcyKvACJs05c9457tL7QSbV9ZS53f2qiLneFL+qg==", + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/boolean-point-in-polygon/-/boolean-point-in-polygon-6.5.0.tgz", + "integrity": "sha512-DtSuVFB26SI+hj0SjrvXowGTUCHlgevPAIsukssW6BG5MlNSBQAo70wpICBNJL6RjukXg8d2eXaAWuD/CqL00A==", "dependencies": { - "@turf/helpers": "^6.3.0", - "@turf/invariant": "^6.3.0" + "@turf/helpers": "^6.5.0", + "@turf/invariant": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" } }, "node_modules/@turf/boolean-point-on-line": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/@turf/boolean-point-on-line/-/boolean-point-on-line-6.3.0.tgz", - "integrity": "sha512-eScH8sfKJVjfbEX5Hgkt1nA7A8DUoiYD1riUVqTp2xikujrMfnYRjFpL/UAo01v33cPKZlhCXp7NE86bdOSrYg==", + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/boolean-point-on-line/-/boolean-point-on-line-6.5.0.tgz", + "integrity": "sha512-A1BbuQ0LceLHvq7F/P7w3QvfpmZqbmViIUPHdNLvZimFNLo4e6IQunmzbe+8aSStH9QRZm3VOflyvNeXvvpZEQ==", "dependencies": { - "@turf/helpers": "^6.3.0", - "@turf/invariant": "^6.3.0" + "@turf/helpers": "^6.5.0", + "@turf/invariant": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" } }, "node_modules/@turf/boolean-within": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/@turf/boolean-within/-/boolean-within-6.3.0.tgz", - "integrity": "sha512-8XtVbzPp6J+lqZtDWVyIwSyVAVcnuie82ub56JEAhCf9w8FX5Db3qXQ76pFcOyy/woeXLZY/nIR58Q79PusrRw==", + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/boolean-within/-/boolean-within-6.5.0.tgz", + "integrity": "sha512-YQB3oU18Inx35C/LU930D36RAVe7LDXk1kWsQ8mLmuqYn9YdPsDQTMTkLJMhoQ8EbN7QTdy333xRQ4MYgToteQ==", "dependencies": { - "@turf/bbox": "^6.3.0", - "@turf/boolean-point-in-polygon": "^6.3.0", - "@turf/boolean-point-on-line": "^6.3.0", - "@turf/helpers": "^6.3.0", - "@turf/invariant": "^6.3.0" + "@turf/bbox": "^6.5.0", + "@turf/boolean-point-in-polygon": "^6.5.0", + "@turf/boolean-point-on-line": "^6.5.0", + "@turf/helpers": "^6.5.0", + "@turf/invariant": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" } }, "node_modules/@turf/buffer": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/@turf/buffer/-/buffer-6.3.0.tgz", - "integrity": "sha512-B0GWgJzmTaaw1GvTd+Df+ToKSYphz9d6hPCOwXbE2vS5DdZryoxBfxQ32LSX/hW/vx7TLf7E4M0VJBb+Sn1DKA==", + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/buffer/-/buffer-6.5.0.tgz", + "integrity": "sha512-qeX4N6+PPWbKqp1AVkBVWFerGjMYMUyencwfnkCesoznU6qvfugFHNAngNqIBVnJjZ5n8IFyOf+akcxnrt9sNg==", "dependencies": { - "@turf/bbox": "^6.3.0", - "@turf/center": "^6.3.0", - "@turf/helpers": "^6.3.0", - "@turf/meta": "^6.3.0", - "@turf/projection": "^6.3.0", + "@turf/bbox": "^6.5.0", + "@turf/center": "^6.5.0", + "@turf/helpers": "^6.5.0", + "@turf/meta": "^6.5.0", + "@turf/projection": "^6.5.0", "d3-geo": "1.7.1", "turf-jsts": "*" + }, + "funding": { + "url": "https://opencollective.com/turf" } }, "node_modules/@turf/center": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/@turf/center/-/center-6.3.0.tgz", - "integrity": "sha512-41g/ZYwoBs2PK7tpAHhf4D6llHdRvY827HLXCld5D0IOnzsWPqDk7WnV8P5uq4g/gyH1/WfKQYn5SgfSj4sSfw==", + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/center/-/center-6.5.0.tgz", + "integrity": "sha512-T8KtMTfSATWcAX088rEDKjyvQCBkUsLnK/Txb6/8WUXIeOZyHu42G7MkdkHRoHtwieLdduDdmPLFyTdG5/e7ZQ==", "dependencies": { - "@turf/bbox": "^6.3.0", - "@turf/helpers": "^6.3.0" + "@turf/bbox": "^6.5.0", + "@turf/helpers": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" } }, "node_modules/@turf/center-mean": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/@turf/center-mean/-/center-mean-6.3.0.tgz", - "integrity": "sha512-BZsqThJmc7wUTxPj7/RYztaegPntR2bBFDPTJ/C+qN8lnRhCccCZ81npYunriwMQC1kyXd1BChGMwjFh3jfB+Q==", + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/center-mean/-/center-mean-6.5.0.tgz", + "integrity": "sha512-AAX6f4bVn12pTVrMUiB9KrnV94BgeBKpyg3YpfnEbBpkN/znfVhL8dG8IxMAxAoSZ61Zt9WLY34HfENveuOZ7Q==", "dependencies": { - "@turf/bbox": "^6.3.0", - "@turf/helpers": "^6.3.0", - "@turf/meta": "^6.3.0" + "@turf/bbox": "^6.5.0", + "@turf/helpers": "^6.5.0", + "@turf/meta": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" } }, "node_modules/@turf/center-median": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/@turf/center-median/-/center-median-6.3.0.tgz", - "integrity": "sha512-jMQzp4YLIPDWKAMpvyRmNOLcoCHy/OMsLIv6odmfBJc6q+5GkulXz4QW61a5o6XZNDkZiYe9f0QgNGaKH+HTWg==", + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/center-median/-/center-median-6.5.0.tgz", + "integrity": "sha512-dT8Ndu5CiZkPrj15PBvslpuf01ky41DEYEPxS01LOxp5HOUHXp1oJxsPxvc+i/wK4BwccPNzU1vzJ0S4emd1KQ==", "dependencies": { - "@turf/center-mean": "^6.3.0", - "@turf/centroid": "^6.3.0", - "@turf/distance": "^6.3.0", - "@turf/helpers": "^6.3.0", - "@turf/meta": "^6.3.0" + "@turf/center-mean": "^6.5.0", + "@turf/centroid": "^6.5.0", + "@turf/distance": "^6.5.0", + "@turf/helpers": "^6.5.0", + "@turf/meta": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" } }, "node_modules/@turf/center-of-mass": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/@turf/center-of-mass/-/center-of-mass-6.3.0.tgz", - "integrity": "sha512-dbiNo4VjNOskK/9hlifmb+cIsFgLqru3m/U1b+btDrliLzrFw3BEeLquZf3IZkOGMpVdIi5/F7IbkrPPz7HgWw==", + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/center-of-mass/-/center-of-mass-6.5.0.tgz", + "integrity": "sha512-EWrriU6LraOfPN7m1jZi+1NLTKNkuIsGLZc2+Y8zbGruvUW+QV7K0nhf7iZWutlxHXTBqEXHbKue/o79IumAsQ==", "dependencies": { - "@turf/centroid": "^6.3.0", - "@turf/convex": "^6.3.0", - "@turf/helpers": "^6.3.0", - "@turf/invariant": "^6.3.0", - "@turf/meta": "^6.3.0" + "@turf/centroid": "^6.5.0", + "@turf/convex": "^6.5.0", + "@turf/helpers": "^6.5.0", + "@turf/invariant": "^6.5.0", + "@turf/meta": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" } }, "node_modules/@turf/centroid": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/@turf/centroid/-/centroid-6.3.0.tgz", - "integrity": "sha512-7KTyqhUEqXDoyR/nf/jAXiW8ZVszEnrp5XZkgYyrf2GWdSovSO0iCN1J3bE2jkJv7IWyeDmGYL61GGzuTSZS2Q==", + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/centroid/-/centroid-6.5.0.tgz", + "integrity": "sha512-MwE1oq5E3isewPprEClbfU5pXljIK/GUOMbn22UM3IFPDJX0KeoyLNwghszkdmFp/qMGL/M13MMWvU+GNLXP/A==", "dependencies": { - "@turf/helpers": "^6.3.0", - "@turf/meta": "^6.3.0" + "@turf/helpers": "^6.5.0", + "@turf/meta": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" } }, "node_modules/@turf/circle": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/@turf/circle/-/circle-6.3.0.tgz", - "integrity": "sha512-5N3J4YQr1efidvPgvtIQYpxb7gBVEoo00IFC0JNH6KqIVBMttFZw3Wsqor34ya91m58A5m6HTiz9Cdm1ktrEdw==", + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/circle/-/circle-6.5.0.tgz", + "integrity": "sha512-oU1+Kq9DgRnoSbWFHKnnUdTmtcRUMmHoV9DjTXu9vOLNV5OWtAAh1VZ+mzsioGGzoDNT/V5igbFOkMfBQc0B6A==", "dependencies": { - "@turf/destination": "^6.3.0", - "@turf/helpers": "^6.3.0" + "@turf/destination": "^6.5.0", + "@turf/helpers": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" } }, "node_modules/@turf/clean-coords": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/@turf/clean-coords/-/clean-coords-6.3.0.tgz", - "integrity": "sha512-Ns7+vXHigKTclzqlFrUnXsXjtEWAu2YYurDxD5mrKXcncuisUIoKbFM55ZxeiiBj0ji8c1huR1xSqs8GVxZJJA==", + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/clean-coords/-/clean-coords-6.5.0.tgz", + "integrity": "sha512-EMX7gyZz0WTH/ET7xV8MyrExywfm9qUi0/MY89yNffzGIEHuFfqwhcCqZ8O00rZIPZHUTxpmsxQSTfzJJA1CPw==", "dependencies": { - "@turf/helpers": "^6.3.0", - "@turf/invariant": "^6.3.0" + "@turf/helpers": "^6.5.0", + "@turf/invariant": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" } }, "node_modules/@turf/clone": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/@turf/clone/-/clone-6.3.0.tgz", - "integrity": "sha512-GAgN89/9GCqUKECB1oY2hcTs0K2rZj+a2tY6VfM0ef9wwckuQZCKi+kKGUzhKVrmHee15jKV8n6DY0er8OndKg==", + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/clone/-/clone-6.5.0.tgz", + "integrity": "sha512-mzVtTFj/QycXOn6ig+annKrM6ZlimreKYz6f/GSERytOpgzodbQyOgkfwru100O1KQhhjSudKK4DsQ0oyi9cTw==", "dependencies": { - "@turf/helpers": "^6.3.0" + "@turf/helpers": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" } }, "node_modules/@turf/clusters": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/@turf/clusters/-/clusters-6.3.0.tgz", - "integrity": "sha512-NIT6LZ/zawt1nN7eC0VEII8J1QUx5qvUahtPKsADxHP27vDJDjnmGvUXvvC0XmibXt/RR9VRM5Rej04yn53g0A==", + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/clusters/-/clusters-6.5.0.tgz", + "integrity": "sha512-Y6gfnTJzQ1hdLfCsyd5zApNbfLIxYEpmDibHUqR5z03Lpe02pa78JtgrgUNt1seeO/aJ4TG1NLN8V5gOrHk04g==", "dependencies": { - "@turf/helpers": "^6.3.0", - "@turf/meta": "^6.3.0" + "@turf/helpers": "^6.5.0", + "@turf/meta": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" } }, "node_modules/@turf/clusters-dbscan": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/@turf/clusters-dbscan/-/clusters-dbscan-6.3.0.tgz", - "integrity": "sha512-EHWHMEBSGf4dvobfvifMl2G9p9KATP9TSeSf1WY+ajLRPfn3slUPSM9hP+7eisDBgb/tS+wqQNcl7pEoo72pnw==", + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/clusters-dbscan/-/clusters-dbscan-6.5.0.tgz", + "integrity": "sha512-SxZEE4kADU9DqLRiT53QZBBhu8EP9skviSyl+FGj08Y01xfICM/RR9ACUdM0aEQimhpu+ZpRVcUK+2jtiCGrYQ==", "dependencies": { - "@turf/clone": "^6.3.0", - "@turf/distance": "^6.3.0", - "@turf/helpers": "^6.3.0", - "@turf/meta": "^6.3.0", + "@turf/clone": "^6.5.0", + "@turf/distance": "^6.5.0", + "@turf/helpers": "^6.5.0", + "@turf/meta": "^6.5.0", "density-clustering": "1.3.0" + }, + "funding": { + "url": "https://opencollective.com/turf" } }, "node_modules/@turf/clusters-kmeans": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/@turf/clusters-kmeans/-/clusters-kmeans-6.3.0.tgz", - "integrity": "sha512-cyHtW5nsOcs1p8l3mflX2805fOxR99FanXCP95U+001S4AwVSgxiOfTg8PUHg9nui2Qcq/PMBRQz80exb2UzyA==", + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/clusters-kmeans/-/clusters-kmeans-6.5.0.tgz", + "integrity": "sha512-DwacD5+YO8kwDPKaXwT9DV46tMBVNsbi1IzdajZu1JDSWoN7yc7N9Qt88oi+p30583O0UPVkAK+A10WAQv4mUw==", "dependencies": { - "@turf/clone": "^6.3.0", - "@turf/helpers": "^6.3.0", - "@turf/invariant": "^6.3.0", - "@turf/meta": "^6.3.0", + "@turf/clone": "^6.5.0", + "@turf/helpers": "^6.5.0", + "@turf/invariant": "^6.5.0", + "@turf/meta": "^6.5.0", "skmeans": "0.9.7" + }, + "funding": { + "url": "https://opencollective.com/turf" } }, "node_modules/@turf/collect": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/@turf/collect/-/collect-6.3.0.tgz", - "integrity": "sha512-alkKujZ02m2wYNixYjF4AFSzXTMbewf1QnJRrtog3snJHFN/tZB9iU3ZcwvxOSbO2Zwrw89A90HLe8k7oGUqXw==", + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/collect/-/collect-6.5.0.tgz", + "integrity": "sha512-4dN/T6LNnRg099m97BJeOcTA5fSI8cu87Ydgfibewd2KQwBexO69AnjEFqfPX3Wj+Zvisj1uAVIZbPmSSrZkjg==", "dependencies": { - "@turf/bbox": "^6.3.0", - "@turf/boolean-point-in-polygon": "^6.3.0", - "@turf/helpers": "^6.3.0", + "@turf/bbox": "^6.5.0", + "@turf/boolean-point-in-polygon": "^6.5.0", + "@turf/helpers": "^6.5.0", "rbush": "2.x" + }, + "funding": { + "url": "https://opencollective.com/turf" } }, "node_modules/@turf/combine": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/@turf/combine/-/combine-6.3.0.tgz", - "integrity": "sha512-/FKUxUvQhKDDBJ4CTr49rvanYbdrtlsbr+7p6H8Vv0EyfeWqwJ3qA8lRuAjPtK0StviYg2t6XTucvKd/3PPX3Q==", + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/combine/-/combine-6.5.0.tgz", + "integrity": "sha512-Q8EIC4OtAcHiJB3C4R+FpB4LANiT90t17uOd851qkM2/o6m39bfN5Mv0PWqMZIHWrrosZqRqoY9dJnzz/rJxYQ==", "dependencies": { - "@turf/helpers": "^6.3.0", - "@turf/meta": "^6.3.0" + "@turf/helpers": "^6.5.0", + "@turf/meta": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" } }, "node_modules/@turf/concave": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/@turf/concave/-/concave-6.3.0.tgz", - "integrity": "sha512-9BPctrW2Oy9K2jjKv80tR26RQEJjwAAFwgG8JEBK8hSF9zdqa07fzx7Ncj+8hM9+3vF30f2TvQ8yxvoH7HSvXA==", + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/concave/-/concave-6.5.0.tgz", + "integrity": "sha512-I/sUmUC8TC5h/E2vPwxVht+nRt+TnXIPRoztDFvS8/Y0+cBDple9inLSo9nnPXMXidrBlGXZ9vQx/BjZUJgsRQ==", "dependencies": { - "@turf/clone": "^6.3.0", - "@turf/distance": "^6.3.0", - "@turf/helpers": "^6.3.0", - "@turf/invariant": "^6.3.0", - "@turf/meta": "^6.3.0", - "@turf/tin": "^6.3.0", - "topojson": "3.x" + "@turf/clone": "^6.5.0", + "@turf/distance": "^6.5.0", + "@turf/helpers": "^6.5.0", + "@turf/invariant": "^6.5.0", + "@turf/meta": "^6.5.0", + "@turf/tin": "^6.5.0", + "topojson-client": "3.x", + "topojson-server": "3.x" + }, + "funding": { + "url": "https://opencollective.com/turf" } }, "node_modules/@turf/convex": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/@turf/convex/-/convex-6.3.0.tgz", - "integrity": "sha512-YpiLKRu1suwbI/knCOd7Fg7LojV6Beonu8gQjCoaPdkBEz0/W3XqNpfWQhcqp+XR10a2g4RK5mi6bUUejToFBw==", + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/convex/-/convex-6.5.0.tgz", + "integrity": "sha512-x7ZwC5z7PJB0SBwNh7JCeCNx7Iu+QSrH7fYgK0RhhNop13TqUlvHMirMLRgf2db1DqUetrAO2qHJeIuasquUWg==", "dependencies": { - "@turf/helpers": "^6.3.0", - "@turf/meta": "^6.3.0", + "@turf/helpers": "^6.5.0", + "@turf/meta": "^6.5.0", "concaveman": "*" + }, + "funding": { + "url": "https://opencollective.com/turf" } }, "node_modules/@turf/destination": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/@turf/destination/-/destination-6.3.0.tgz", - "integrity": "sha512-aLt3U/XkJWyZW08Ln1qZwBNAGh27yhmYLu892+dBj3gKP6UUiR6ZopXxrBwjBVe00A6k2ktftKDn79qe0hptuw==", + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/destination/-/destination-6.5.0.tgz", + "integrity": "sha512-4cnWQlNC8d1tItOz9B4pmJdWpXqS0vEvv65bI/Pj/genJnsL7evI0/Xw42RvEGROS481MPiU80xzvwxEvhQiMQ==", "dependencies": { - "@turf/helpers": "^6.3.0", - "@turf/invariant": "^6.3.0" + "@turf/helpers": "^6.5.0", + "@turf/invariant": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" } }, "node_modules/@turf/difference": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/@turf/difference/-/difference-6.3.0.tgz", - "integrity": "sha512-f4P0ra0jBOFk4HO8n/9FZ3NEmOX7FHCXHy/4Z1RSUUQsUQDCkx6/cyqbi8BCy2ZSDUSCGHV+iPgs4fRphMzCHQ==", + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/difference/-/difference-6.5.0.tgz", + "integrity": "sha512-l8iR5uJqvI+5Fs6leNbhPY5t/a3vipUF/3AeVLpwPQcgmedNXyheYuy07PcMGH5Jdpi5gItOiTqwiU/bUH4b3A==", "dependencies": { - "@turf/helpers": "^6.3.0", - "@turf/invariant": "^6.3.0", - "polygon-clipping": "^0.15.2" + "@turf/helpers": "^6.5.0", + "@turf/invariant": "^6.5.0", + "polygon-clipping": "^0.15.3" + }, + "funding": { + "url": "https://opencollective.com/turf" } }, - "node_modules/@turf/difference/node_modules/polygon-clipping": { - "version": "0.15.3", - "resolved": "https://registry.npmjs.org/polygon-clipping/-/polygon-clipping-0.15.3.tgz", - "integrity": "sha512-ho0Xx5DLkgxRx/+n4O74XyJ67DcyN3Tu9bGYKsnTukGAW6ssnuak6Mwcyb1wHy9MZc9xsUWqIoiazkZB5weECg==", - "dependencies": { - "splaytree": "^3.1.0" - } - }, - "node_modules/@turf/difference/node_modules/splaytree": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/splaytree/-/splaytree-3.1.0.tgz", - "integrity": "sha512-gvUGR7xnOy0fLKTCxDeUZYgU/I1Tdf8M/lM1Qrf8L2TIOR5ipZjGk02uYcdv0o2x7WjVRgpm3iS2clLyuVAt0Q==" - }, "node_modules/@turf/dissolve": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/@turf/dissolve/-/dissolve-6.3.0.tgz", - "integrity": "sha512-DxFH+3MQpBo3rIZSh9gjcdl00ZkyHAEK0DzTLq6JOS4vTHpYvFvDT07j/Vr+9cqfvWrAjGpQg92I8zMzh4XA6Q==", + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/dissolve/-/dissolve-6.5.0.tgz", + "integrity": "sha512-WBVbpm9zLTp0Bl9CE35NomTaOL1c4TQCtEoO43YaAhNEWJOOIhZMFJyr8mbvYruKl817KinT3x7aYjjCMjTAsQ==", "dependencies": { - "@turf/boolean-overlap": "^6.3.0", - "@turf/clone": "^6.3.0", - "@turf/helpers": "^6.3.0", - "@turf/invariant": "^6.3.0", - "@turf/line-intersect": "^6.3.0", - "@turf/meta": "^6.3.0", - "@turf/union": "^6.3.0", - "geojson-rbush": "3.x", - "get-closest": "*" + "@turf/helpers": "^6.5.0", + "@turf/invariant": "^6.5.0", + "@turf/meta": "^6.5.0", + "polygon-clipping": "^0.15.3" + }, + "funding": { + "url": "https://opencollective.com/turf" } }, "node_modules/@turf/distance": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/@turf/distance/-/distance-6.3.0.tgz", - "integrity": "sha512-basi24ssNFnH3iXPFjp/aNUrukjObiFWoIyDRqKyBJxVwVOwAWvfk4d38QQyBj5nDo5IahYRq/Q+T47/5hSs9w==", + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/distance/-/distance-6.5.0.tgz", + "integrity": "sha512-xzykSLfoURec5qvQJcfifw/1mJa+5UwByZZ5TZ8iaqjGYN0vomhV9aiSLeYdUGtYRESZ+DYC/OzY+4RclZYgMg==", "dependencies": { - "@turf/helpers": "^6.3.0", - "@turf/invariant": "^6.3.0" + "@turf/helpers": "^6.5.0", + "@turf/invariant": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" } }, "node_modules/@turf/distance-weight": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/@turf/distance-weight/-/distance-weight-6.3.0.tgz", - "integrity": "sha512-o85n4q3WM0L292FV7ZKBtSdTzn20JRqcZSSktkJoxeuQJMHXlstRwviLiF5pTl5oDXO/mRdq6aPecvWkMAaiCQ==", + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/distance-weight/-/distance-weight-6.5.0.tgz", + "integrity": "sha512-a8qBKkgVNvPKBfZfEJZnC3DV7dfIsC3UIdpRci/iap/wZLH41EmS90nM+BokAJflUHYy8PqE44wySGWHN1FXrQ==", "dependencies": { - "@turf/centroid": "^6.3.0", - "@turf/helpers": "^6.3.0", - "@turf/invariant": "^6.3.0", - "@turf/meta": "^6.3.0" + "@turf/centroid": "^6.5.0", + "@turf/helpers": "^6.5.0", + "@turf/invariant": "^6.5.0", + "@turf/meta": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" } }, "node_modules/@turf/ellipse": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/@turf/ellipse/-/ellipse-6.3.0.tgz", - "integrity": "sha512-r+EvUK+IGgc3shvS/T1Wof2uCptS2fYmtcwMSFHnHjRnmUyrD4YFjPZT7ygxcDB91+UClZ6cdozR6vqBYzPAog==", + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/ellipse/-/ellipse-6.5.0.tgz", + "integrity": "sha512-kuXtwFviw/JqnyJXF1mrR/cb496zDTSbGKtSiolWMNImYzGGkbsAsFTjwJYgD7+4FixHjp0uQPzo70KDf3AIBw==", "dependencies": { - "@turf/helpers": "^6.3.0", - "@turf/invariant": "^6.3.0", - "@turf/rhumb-destination": "^6.3.0", - "@turf/transform-rotate": "^6.3.0" + "@turf/helpers": "^6.5.0", + "@turf/invariant": "^6.5.0", + "@turf/rhumb-destination": "^6.5.0", + "@turf/transform-rotate": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" } }, "node_modules/@turf/envelope": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/@turf/envelope/-/envelope-6.3.0.tgz", - "integrity": "sha512-9xmDTCogXJsAO0TrARA/lniMSEtAil9HIKXHDJ5N6zlZ2K5wfRdD2zDlqkgDT3t9oSvttSP3ltBf03fjMDt6Wg==", + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/envelope/-/envelope-6.5.0.tgz", + "integrity": "sha512-9Z+FnBWvOGOU4X+fMZxYFs1HjFlkKqsddLuMknRaqcJd6t+NIv5DWvPtDL8ATD2GEExYDiFLwMdckfr1yqJgHA==", "dependencies": { - "@turf/bbox": "^6.3.0", - "@turf/bbox-polygon": "^6.3.0", - "@turf/helpers": "^6.3.0" + "@turf/bbox": "^6.5.0", + "@turf/bbox-polygon": "^6.5.0", + "@turf/helpers": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" } }, "node_modules/@turf/explode": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/@turf/explode/-/explode-6.3.0.tgz", - "integrity": "sha512-J3vOGwf2EJXfh1gifFtxAuuhVYWAMTRQL6jE3h9a8osNLO1nj8JGVxaL6fmJgdZ/A9cFPv1OYUndBzi86UYZvw==", + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/explode/-/explode-6.5.0.tgz", + "integrity": "sha512-6cSvMrnHm2qAsace6pw9cDmK2buAlw8+tjeJVXMfMyY+w7ZUi1rprWMsY92J7s2Dar63Bv09n56/1V7+tcj52Q==", "dependencies": { - "@turf/helpers": "^6.3.0", - "@turf/meta": "^6.3.0" + "@turf/helpers": "^6.5.0", + "@turf/meta": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" } }, "node_modules/@turf/flatten": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/@turf/flatten/-/flatten-6.3.0.tgz", - "integrity": "sha512-0V3qxOGqb0NulEpADPCs/+i/AUQuNSChGA4oy/YGicfMHjnMNapZfOVg3LJEAkd/Kqpw2eJjjKe0gaX5aXo/1w==", + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/flatten/-/flatten-6.5.0.tgz", + "integrity": "sha512-IBZVwoNLVNT6U/bcUUllubgElzpMsNoCw8tLqBw6dfYg9ObGmpEjf9BIYLr7a2Yn5ZR4l7YIj2T7kD5uJjZADQ==", "dependencies": { - "@turf/helpers": "^6.3.0", - "@turf/meta": "^6.3.0" + "@turf/helpers": "^6.5.0", + "@turf/meta": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" } }, "node_modules/@turf/flip": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/@turf/flip/-/flip-6.3.0.tgz", - "integrity": "sha512-VTST1oaJFRyHOAbvY9kt8yKKCQt6aXpXeyVQRjhNESzlYLIQlTx3v+lI+eSSu+sc+SX4EDQltB1UdaVk7BIRJg==", + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/flip/-/flip-6.5.0.tgz", + "integrity": "sha512-oyikJFNjt2LmIXQqgOGLvt70RgE2lyzPMloYWM7OR5oIFGRiBvqVD2hA6MNw6JewIm30fWZ8DQJw1NHXJTJPbg==", "dependencies": { - "@turf/clone": "^6.3.0", - "@turf/helpers": "^6.3.0", - "@turf/meta": "^6.3.0" + "@turf/clone": "^6.5.0", + "@turf/helpers": "^6.5.0", + "@turf/meta": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" } }, "node_modules/@turf/great-circle": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/@turf/great-circle/-/great-circle-6.3.0.tgz", - "integrity": "sha512-dpGJcRf2TLzBvVUZa0Eej3edXOQofLcp9qgotqDHK68spqYK8lnrXrdyyqzLlTHx3nxZkHvFUOl1lqj8G4NraQ==", + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/great-circle/-/great-circle-6.5.0.tgz", + "integrity": "sha512-7ovyi3HaKOXdFyN7yy1yOMa8IyOvV46RC1QOQTT+RYUN8ke10eyqExwBpL9RFUPvlpoTzoYbM/+lWPogQlFncg==", "dependencies": { - "@turf/helpers": "^6.3.0", - "@turf/invariant": "^6.3.0" + "@turf/helpers": "^6.5.0", + "@turf/invariant": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" } }, "node_modules/@turf/helpers": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/@turf/helpers/-/helpers-6.3.0.tgz", - "integrity": "sha512-kr6KuD4Z0GZ30tblTEvi90rvvVNlKieXuMC8CTzE/rVQb0/f/Cb29zCXxTD7giQTEQY/P2nRW23wEqqyNHulCg==" + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/helpers/-/helpers-6.5.0.tgz", + "integrity": "sha512-VbI1dV5bLFzohYYdgqwikdMVpe7pJ9X3E+dlr425wa2/sMJqYDhTO++ec38/pcPvPE6oD9WEEeU3Xu3gza+VPw==", + "funding": { + "url": "https://opencollective.com/turf" + } }, "node_modules/@turf/hex-grid": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/@turf/hex-grid/-/hex-grid-6.3.0.tgz", - "integrity": "sha512-adqOgpBJB+87bjnm5EKVklDuWsYtCrETlLrXpOw4CVyaqYEE2/Mvid25se/0TeGDfvIcnvIQvrApYL5O/sDaMw==", + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/hex-grid/-/hex-grid-6.5.0.tgz", + "integrity": "sha512-Ln3tc2tgZT8etDOldgc6e741Smg1CsMKAz1/Mlel+MEL5Ynv2mhx3m0q4J9IB1F3a4MNjDeVvm8drAaf9SF33g==", "dependencies": { - "@turf/distance": "^6.3.0", - "@turf/helpers": "^6.3.0", - "@turf/intersect": "^6.3.0", - "@turf/invariant": "^6.3.0" + "@turf/distance": "^6.5.0", + "@turf/helpers": "^6.5.0", + "@turf/intersect": "^6.5.0", + "@turf/invariant": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" } }, "node_modules/@turf/interpolate": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/@turf/interpolate/-/interpolate-6.3.0.tgz", - "integrity": "sha512-2gVMSj/Ri8l5KGkCTyTJTqSbZwfWco6tWGMZyG0fqcB61PA6pEedU+TShBOOEKu7eBlpSyHlkS7+uii1bEGUCA==", + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/interpolate/-/interpolate-6.5.0.tgz", + "integrity": "sha512-LSH5fMeiGyuDZ4WrDJNgh81d2DnNDUVJtuFryJFup8PV8jbs46lQGfI3r1DJ2p1IlEJIz3pmAZYeTfMMoeeohw==", "dependencies": { - "@turf/bbox": "^6.3.0", - "@turf/centroid": "^6.3.0", - "@turf/clone": "^6.3.0", - "@turf/distance": "^6.3.0", - "@turf/helpers": "^6.3.0", - "@turf/hex-grid": "^6.3.0", - "@turf/invariant": "^6.3.0", - "@turf/meta": "^6.3.0", - "@turf/point-grid": "^6.3.0", - "@turf/square-grid": "^6.3.0", - "@turf/triangle-grid": "^6.3.0" + "@turf/bbox": "^6.5.0", + "@turf/centroid": "^6.5.0", + "@turf/clone": "^6.5.0", + "@turf/distance": "^6.5.0", + "@turf/helpers": "^6.5.0", + "@turf/hex-grid": "^6.5.0", + "@turf/invariant": "^6.5.0", + "@turf/meta": "^6.5.0", + "@turf/point-grid": "^6.5.0", + "@turf/square-grid": "^6.5.0", + "@turf/triangle-grid": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" } }, "node_modules/@turf/intersect": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/@turf/intersect/-/intersect-6.3.0.tgz", - "integrity": "sha512-1YCIkyKjuTlX7HaTjtyE7ZRxLCmcu0BYr6jqoVl7TjyF2NUiNpPm3m4X1ZrSF6MfjIt5NFSGYCdNMEPgREq19w==", + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/intersect/-/intersect-6.5.0.tgz", + "integrity": "sha512-2legGJeKrfFkzntcd4GouPugoqPUjexPZnOvfez+3SfIMrHvulw8qV8u7pfVyn2Yqs53yoVCEjS5sEpvQ5YRQg==", "dependencies": { - "@turf/helpers": "^6.3.0", - "@turf/invariant": "^6.3.0", - "polygon-clipping": "^0.15.2" + "@turf/helpers": "^6.5.0", + "@turf/invariant": "^6.5.0", + "polygon-clipping": "^0.15.3" + }, + "funding": { + "url": "https://opencollective.com/turf" } }, - "node_modules/@turf/intersect/node_modules/polygon-clipping": { - "version": "0.15.3", - "resolved": "https://registry.npmjs.org/polygon-clipping/-/polygon-clipping-0.15.3.tgz", - "integrity": "sha512-ho0Xx5DLkgxRx/+n4O74XyJ67DcyN3Tu9bGYKsnTukGAW6ssnuak6Mwcyb1wHy9MZc9xsUWqIoiazkZB5weECg==", - "dependencies": { - "splaytree": "^3.1.0" - } - }, - "node_modules/@turf/intersect/node_modules/splaytree": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/splaytree/-/splaytree-3.1.0.tgz", - "integrity": "sha512-gvUGR7xnOy0fLKTCxDeUZYgU/I1Tdf8M/lM1Qrf8L2TIOR5ipZjGk02uYcdv0o2x7WjVRgpm3iS2clLyuVAt0Q==" - }, "node_modules/@turf/invariant": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/@turf/invariant/-/invariant-6.3.0.tgz", - "integrity": "sha512-2OFOi9p+QOrcIMySEnr+WlOiKaFZ1bY56jA98YyECewJHfhPFWUBZEhc4nWGRT0ahK08Vus9+gcuBX8QIpCIIw==", + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/invariant/-/invariant-6.5.0.tgz", + "integrity": "sha512-Wv8PRNCtPD31UVbdJE/KVAWKe7l6US+lJItRR/HOEW3eh+U/JwRCSUl/KZ7bmjM/C+zLNoreM2TU6OoLACs4eg==", "dependencies": { - "@turf/helpers": "^6.3.0" + "@turf/helpers": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" } }, "node_modules/@turf/isobands": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/@turf/isobands/-/isobands-6.3.0.tgz", - "integrity": "sha512-Ikk8LyVQJKsLH6nFYKEeUi9sShMVP9S63zy5CPMPvwRhZf0ix59tAEBfnk6DOfd0EzLLmEdfaAM2U0cRhkh9jA==", + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/isobands/-/isobands-6.5.0.tgz", + "integrity": "sha512-4h6sjBPhRwMVuFaVBv70YB7eGz+iw0bhPRnp+8JBdX1UPJSXhoi/ZF2rACemRUr0HkdVB/a1r9gC32vn5IAEkw==", "dependencies": { - "@turf/area": "^6.3.0", - "@turf/bbox": "^6.3.0", - "@turf/boolean-point-in-polygon": "^6.3.0", - "@turf/explode": "^6.3.0", - "@turf/helpers": "^6.3.0", - "@turf/invariant": "^6.3.0", - "@turf/meta": "^6.3.0", + "@turf/area": "^6.5.0", + "@turf/bbox": "^6.5.0", + "@turf/boolean-point-in-polygon": "^6.5.0", + "@turf/explode": "^6.5.0", + "@turf/helpers": "^6.5.0", + "@turf/invariant": "^6.5.0", + "@turf/meta": "^6.5.0", "object-assign": "*" + }, + "funding": { + "url": "https://opencollective.com/turf" } }, "node_modules/@turf/isolines": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/@turf/isolines/-/isolines-6.3.0.tgz", - "integrity": "sha512-z5hUIUcSaInGUhrx+vDZcCNWLS3MawzQGfc0TOUVDe03bO5sqUlaNyvx7C09Js4LEzsqqZ1GPIUvFPjePaXaVQ==", + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/isolines/-/isolines-6.5.0.tgz", + "integrity": "sha512-6ElhiLCopxWlv4tPoxiCzASWt/jMRvmp6mRYrpzOm3EUl75OhHKa/Pu6Y9nWtCMmVC/RcWtiiweUocbPLZLm0A==", "dependencies": { - "@turf/bbox": "^6.3.0", - "@turf/helpers": "^6.3.0", - "@turf/invariant": "^6.3.0", - "@turf/meta": "^6.3.0", + "@turf/bbox": "^6.5.0", + "@turf/helpers": "^6.5.0", + "@turf/invariant": "^6.5.0", + "@turf/meta": "^6.5.0", "object-assign": "*" + }, + "funding": { + "url": "https://opencollective.com/turf" } }, "node_modules/@turf/kinks": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/@turf/kinks/-/kinks-6.3.0.tgz", - "integrity": "sha512-BLWvbl2/fa4SeJzVMbleT6Vo1cmzwmzRfxL2xxMei2jmf6JSvqDoMJFwIHGXrLZXvhOCb1b2C+MhBfhtc7kYkQ==", + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/kinks/-/kinks-6.5.0.tgz", + "integrity": "sha512-ViCngdPt1eEL7hYUHR2eHR662GvCgTc35ZJFaNR6kRtr6D8plLaDju0FILeFFWSc+o8e3fwxZEJKmFj9IzPiIQ==", "dependencies": { - "@turf/helpers": "^6.3.0" + "@turf/helpers": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" } }, "node_modules/@turf/length": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/@turf/length/-/length-6.3.0.tgz", - "integrity": "sha512-91MHtigpV7mbrMW3xyaPVtLWQU3p487t3YHU4vdxih03p+dFI512dX/FtWbd9LNgrtBt4PM1uo1WmafGvfStKA==", + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/length/-/length-6.5.0.tgz", + "integrity": "sha512-5pL5/pnw52fck3oRsHDcSGrj9HibvtlrZ0QNy2OcW8qBFDNgZ4jtl6U7eATVoyWPKBHszW3dWETW+iLV7UARig==", "dependencies": { - "@turf/distance": "^6.3.0", - "@turf/helpers": "^6.3.0", - "@turf/meta": "^6.3.0" + "@turf/distance": "^6.5.0", + "@turf/helpers": "^6.5.0", + "@turf/meta": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" } }, "node_modules/@turf/line-arc": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/@turf/line-arc/-/line-arc-6.3.0.tgz", - "integrity": "sha512-WAAUgAWGf+U02GhXWrplODyUm3X6LZnYyn4VJQ9BPsKyawfK+NtjP7KsZ1MipIgtixNq3Ceexep0AHGHos4Prw==", + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/line-arc/-/line-arc-6.5.0.tgz", + "integrity": "sha512-I6c+V6mIyEwbtg9P9zSFF89T7QPe1DPTG3MJJ6Cm1MrAY0MdejwQKOpsvNl8LDU2ekHOlz2kHpPVR7VJsoMllA==", "dependencies": { - "@turf/circle": "^6.3.0", - "@turf/destination": "^6.3.0", - "@turf/helpers": "^6.3.0" + "@turf/circle": "^6.5.0", + "@turf/destination": "^6.5.0", + "@turf/helpers": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" } }, "node_modules/@turf/line-chunk": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/@turf/line-chunk/-/line-chunk-6.3.0.tgz", - "integrity": "sha512-Xfja7H6XEgFPaK37sg7WBb0pIiA9hfjXtF7A1QPrh8z+JFyuVJzveBG2mYvin5UKTwsMKXuby6s4FUvmoEFqjQ==", + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/line-chunk/-/line-chunk-6.5.0.tgz", + "integrity": "sha512-i1FGE6YJaaYa+IJesTfyRRQZP31QouS+wh/pa6O3CC0q4T7LtHigyBSYjrbjSLfn2EVPYGlPCMFEqNWCOkC6zg==", "dependencies": { - "@turf/helpers": "^6.3.0", - "@turf/length": "^6.3.0", - "@turf/line-slice-along": "^6.3.0", - "@turf/meta": "^6.3.0" + "@turf/helpers": "^6.5.0", + "@turf/length": "^6.5.0", + "@turf/line-slice-along": "^6.5.0", + "@turf/meta": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" } }, "node_modules/@turf/line-intersect": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/@turf/line-intersect/-/line-intersect-6.3.0.tgz", - "integrity": "sha512-3naxR7XpkPd2vst3Mw6DFry4C9m3o0/f2n/xu5UAyxb88Ie4m2k+1eqkhzMMx/0L+E6iThWpLx7DASM6q6o9ow==", + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/line-intersect/-/line-intersect-6.5.0.tgz", + "integrity": "sha512-CS6R1tZvVQD390G9Ea4pmpM6mJGPWoL82jD46y0q1KSor9s6HupMIo1kY4Ny+AEYQl9jd21V3Scz20eldpbTVA==", "dependencies": { - "@turf/helpers": "^6.3.0", - "@turf/invariant": "^6.3.0", - "@turf/line-segment": "^6.3.0", - "@turf/meta": "^6.3.0", + "@turf/helpers": "^6.5.0", + "@turf/invariant": "^6.5.0", + "@turf/line-segment": "^6.5.0", + "@turf/meta": "^6.5.0", "geojson-rbush": "3.x" + }, + "funding": { + "url": "https://opencollective.com/turf" } }, "node_modules/@turf/line-offset": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/@turf/line-offset/-/line-offset-6.3.0.tgz", - "integrity": "sha512-yzgmNc/8miyn+pH2ubT4rZb9uAPY6oLqkwmEdzy2fuU4yUFnCNN/nWvYP4acGdgaSfprJd+4MdlLFzWBJxSplw==", + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/line-offset/-/line-offset-6.5.0.tgz", + "integrity": "sha512-CEXZbKgyz8r72qRvPchK0dxqsq8IQBdH275FE6o4MrBkzMcoZsfSjghtXzKaz9vvro+HfIXal0sTk2mqV1lQTw==", "dependencies": { - "@turf/helpers": "^6.3.0", - "@turf/invariant": "^6.3.0", - "@turf/meta": "^6.3.0" + "@turf/helpers": "^6.5.0", + "@turf/invariant": "^6.5.0", + "@turf/meta": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" } }, "node_modules/@turf/line-overlap": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/@turf/line-overlap/-/line-overlap-6.3.0.tgz", - "integrity": "sha512-fVyXfTpr/A+ZXZWG6PbuYz5rAGbTQWyrMZveCl2049SbOXSkVXGjUfpnLaklP0p+adw7eRR0LhZn6FGz9CQaFg==", + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/line-overlap/-/line-overlap-6.5.0.tgz", + "integrity": "sha512-xHOaWLd0hkaC/1OLcStCpfq55lPHpPNadZySDXYiYjEz5HXr1oKmtMYpn0wGizsLwrOixRdEp+j7bL8dPt4ojQ==", "dependencies": { - "@turf/boolean-point-on-line": "^6.3.0", - "@turf/helpers": "^6.3.0", - "@turf/invariant": "^6.3.0", - "@turf/line-segment": "^6.3.0", - "@turf/meta": "^6.3.0", - "@turf/nearest-point-on-line": "^6.3.0", + "@turf/boolean-point-on-line": "^6.5.0", + "@turf/helpers": "^6.5.0", + "@turf/invariant": "^6.5.0", + "@turf/line-segment": "^6.5.0", + "@turf/meta": "^6.5.0", + "@turf/nearest-point-on-line": "^6.5.0", "deep-equal": "1.x", "geojson-rbush": "3.x" + }, + "funding": { + "url": "https://opencollective.com/turf" } }, "node_modules/@turf/line-segment": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/@turf/line-segment/-/line-segment-6.3.0.tgz", - "integrity": "sha512-M+aDy83V+E7jYWNaf+b+A88yhnMrJhyg/lhAj6mU6UeB2PbruXB2qgSmmVDSE2dIknOvZZuIWNzEzUI07RO2kw==", + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/line-segment/-/line-segment-6.5.0.tgz", + "integrity": "sha512-jI625Ho4jSuJESNq66Mmi290ZJ5pPZiQZruPVpmHkUw257Pew0alMmb6YrqYNnLUuiVVONxAAKXUVeeUGtycfw==", "dependencies": { - "@turf/helpers": "^6.3.0", - "@turf/invariant": "^6.3.0", - "@turf/meta": "^6.3.0" + "@turf/helpers": "^6.5.0", + "@turf/invariant": "^6.5.0", + "@turf/meta": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" } }, "node_modules/@turf/line-slice": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/@turf/line-slice/-/line-slice-6.3.0.tgz", - "integrity": "sha512-HEgVY7TcoRxh59DCb/7SUlX6x3RJWSEBspIfsxCv+2lhgb3aRekn+aELvr3VeY9fWPCXvOfELBH3PNjMhJMY2Q==", + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/line-slice/-/line-slice-6.5.0.tgz", + "integrity": "sha512-vDqJxve9tBHhOaVVFXqVjF5qDzGtKWviyjbyi2QnSnxyFAmLlLnBfMX8TLQCAf2GxHibB95RO5FBE6I2KVPRuw==", "dependencies": { - "@turf/helpers": "^6.3.0", - "@turf/invariant": "^6.3.0", - "@turf/nearest-point-on-line": "^6.3.0" + "@turf/helpers": "^6.5.0", + "@turf/invariant": "^6.5.0", + "@turf/nearest-point-on-line": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" } }, "node_modules/@turf/line-slice-along": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/@turf/line-slice-along/-/line-slice-along-6.3.0.tgz", - "integrity": "sha512-3s6vGTxGgCTb3Wd1seyir49rRc0GsX6OZXiRP5VdlT3Aq0cuuCNJycgHCH+H8LiYrEQDUhNUWbGljreCH0/JCg==", + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/line-slice-along/-/line-slice-along-6.5.0.tgz", + "integrity": "sha512-KHJRU6KpHrAj+BTgTNqby6VCTnDzG6a1sJx/I3hNvqMBLvWVA2IrkR9L9DtsQsVY63IBwVdQDqiwCuZLDQh4Ng==", "dependencies": { - "@turf/bearing": "^6.3.0", - "@turf/destination": "^6.3.0", - "@turf/distance": "^6.3.0", - "@turf/helpers": "^6.3.0" + "@turf/bearing": "^6.5.0", + "@turf/destination": "^6.5.0", + "@turf/distance": "^6.5.0", + "@turf/helpers": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" } }, "node_modules/@turf/line-split": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/@turf/line-split/-/line-split-6.3.0.tgz", - "integrity": "sha512-Q0nUJ0vczy11piyEz0FaKScFwSQtb1HJ2RPEMCw1coUJhTCB02KBWQLImhYqwsD3uLg+H/fxaJ1Gva6EPWoDNQ==", + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/line-split/-/line-split-6.5.0.tgz", + "integrity": "sha512-/rwUMVr9OI2ccJjw7/6eTN53URtGThNSD5I0GgxyFXMtxWiloRJ9MTff8jBbtPWrRka/Sh2GkwucVRAEakx9Sw==", "dependencies": { - "@turf/bbox": "^6.3.0", - "@turf/helpers": "^6.3.0", - "@turf/invariant": "^6.3.0", - "@turf/line-intersect": "^6.3.0", - "@turf/line-segment": "^6.3.0", - "@turf/meta": "^6.3.0", - "@turf/nearest-point-on-line": "^6.3.0", - "@turf/square": "^6.3.0", - "@turf/truncate": "^6.3.0", + "@turf/bbox": "^6.5.0", + "@turf/helpers": "^6.5.0", + "@turf/invariant": "^6.5.0", + "@turf/line-intersect": "^6.5.0", + "@turf/line-segment": "^6.5.0", + "@turf/meta": "^6.5.0", + "@turf/nearest-point-on-line": "^6.5.0", + "@turf/square": "^6.5.0", + "@turf/truncate": "^6.5.0", "geojson-rbush": "3.x" + }, + "funding": { + "url": "https://opencollective.com/turf" } }, "node_modules/@turf/line-to-polygon": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/@turf/line-to-polygon/-/line-to-polygon-6.3.0.tgz", - "integrity": "sha512-754ywhQzcAylVSqQQwlv0TUMC5nCHp4nDle3X48tkHIKcnn4fJkW8O0YNhhQCE8p6NDcs0Ayi4qR0uHLPTzUWQ==", + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/line-to-polygon/-/line-to-polygon-6.5.0.tgz", + "integrity": "sha512-qYBuRCJJL8Gx27OwCD1TMijM/9XjRgXH/m/TyuND4OXedBpIWlK5VbTIO2gJ8OCfznBBddpjiObLBrkuxTpN4Q==", "dependencies": { - "@turf/bbox": "^6.3.0", - "@turf/clone": "^6.3.0", - "@turf/helpers": "^6.3.0", - "@turf/invariant": "^6.3.0" + "@turf/bbox": "^6.5.0", + "@turf/clone": "^6.5.0", + "@turf/helpers": "^6.5.0", + "@turf/invariant": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" } }, "node_modules/@turf/mask": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/@turf/mask/-/mask-6.3.0.tgz", - "integrity": "sha512-2DbaHvmxz0ueQpGCo+6nXHhLqlmTjzGDkUL/ys6rgWTXj40udKakPwMNa2WrvzqHwowJsXWaWDp2GogRT5foDA==", + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/mask/-/mask-6.5.0.tgz", + "integrity": "sha512-RQha4aU8LpBrmrkH8CPaaoAfk0Egj5OuXtv6HuCQnHeGNOQt3TQVibTA3Sh4iduq4EPxnZfDjgsOeKtrCA19lg==", "dependencies": { - "@turf/bbox": "^6.3.0", - "@turf/helpers": "^6.3.0", - "@turf/meta": "^6.3.0", - "@turf/union": "^6.3.0", - "rbush": "^2.0.1" + "@turf/helpers": "^6.5.0", + "polygon-clipping": "^0.15.3" + }, + "funding": { + "url": "https://opencollective.com/turf" } }, "node_modules/@turf/meta": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/@turf/meta/-/meta-6.3.0.tgz", - "integrity": "sha512-qBJjaAJS9H3ap0HlGXyF/Bzfl0qkA9suafX/jnDsZvWMfVLt+s+o6twKrXOGk5t7nnNON2NFRC8+czxpu104EQ==", + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/meta/-/meta-6.5.0.tgz", + "integrity": "sha512-RrArvtsV0vdsCBegoBtOalgdSOfkBrTJ07VkpiCnq/491W67hnMWmDu7e6Ztw0C3WldRYTXkg3SumfdzZxLBHA==", "dependencies": { - "@turf/helpers": "^6.3.0" + "@turf/helpers": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" } }, "node_modules/@turf/midpoint": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/@turf/midpoint/-/midpoint-6.3.0.tgz", - "integrity": "sha512-ImiYK5l/QZh5aCynxCyHoaJYn4j1VhorVyw2XihHuwAtebTc+KRaBJpWSD2eJxo3Q3J+QepWMiiMvQFJgQ5uCQ==", + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/midpoint/-/midpoint-6.5.0.tgz", + "integrity": "sha512-MyTzV44IwmVI6ec9fB2OgZ53JGNlgOpaYl9ArKoF49rXpL84F9rNATndbe0+MQIhdkw8IlzA6xVP4lZzfMNVCw==", "dependencies": { - "@turf/bearing": "^6.3.0", - "@turf/destination": "^6.3.0", - "@turf/distance": "^6.3.0", - "@turf/helpers": "^6.3.0" + "@turf/bearing": "^6.5.0", + "@turf/destination": "^6.5.0", + "@turf/distance": "^6.5.0", + "@turf/helpers": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" } }, "node_modules/@turf/moran-index": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/@turf/moran-index/-/moran-index-6.3.0.tgz", - "integrity": "sha512-qRsSqmYtvnKiGFbz3aU1up8Q8jY9MCflRdvKeTOJ2E3Z4xOIyOLXOrNvpLIM8CFcLwY06IInMRoaKi/CVOC54g==", + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/moran-index/-/moran-index-6.5.0.tgz", + "integrity": "sha512-ItsnhrU2XYtTtTudrM8so4afBCYWNaB0Mfy28NZwLjB5jWuAsvyV+YW+J88+neK/ougKMTawkmjQqodNJaBeLQ==", "dependencies": { - "@turf/distance-weight": "^6.3.0", - "@turf/helpers": "^6.3.0", - "@turf/meta": "^6.3.0" + "@turf/distance-weight": "^6.5.0", + "@turf/helpers": "^6.5.0", + "@turf/meta": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" } }, "node_modules/@turf/nearest-point": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/@turf/nearest-point/-/nearest-point-6.3.0.tgz", - "integrity": "sha512-eovLuWxO2cQaKETbf1OhnWYkRYYgwuDhJAvLU9ZpXnqk2tNE06gt/2C5oJJiSlh4ZksDM8ryHZicswaXrYz+qA==", + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/nearest-point/-/nearest-point-6.5.0.tgz", + "integrity": "sha512-fguV09QxilZv/p94s8SMsXILIAMiaXI5PATq9d7YWijLxWUj6Q/r43kxyoi78Zmwwh1Zfqz9w+bCYUAxZ5+euA==", "dependencies": { - "@turf/clone": "^6.3.0", - "@turf/distance": "^6.3.0", - "@turf/helpers": "^6.3.0", - "@turf/meta": "^6.3.0" + "@turf/clone": "^6.5.0", + "@turf/distance": "^6.5.0", + "@turf/helpers": "^6.5.0", + "@turf/meta": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" } }, "node_modules/@turf/nearest-point-on-line": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/@turf/nearest-point-on-line/-/nearest-point-on-line-6.3.0.tgz", - "integrity": "sha512-b4C9Md1VbGn9chMgdSj2grJD4w4t0owEWOKEBwOZfdhrcksyOedVvKB7XqOFdj/8Jitel40EKAC5LQTNu24kEQ==", + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/nearest-point-on-line/-/nearest-point-on-line-6.5.0.tgz", + "integrity": "sha512-WthrvddddvmymnC+Vf7BrkHGbDOUu6Z3/6bFYUGv1kxw8tiZ6n83/VG6kHz4poHOfS0RaNflzXSkmCi64fLBlg==", "dependencies": { - "@turf/bearing": "^6.3.0", - "@turf/destination": "^6.3.0", - "@turf/distance": "^6.3.0", - "@turf/helpers": "^6.3.0", - "@turf/invariant": "^6.3.0", - "@turf/line-intersect": "^6.3.0", - "@turf/meta": "^6.3.0" + "@turf/bearing": "^6.5.0", + "@turf/destination": "^6.5.0", + "@turf/distance": "^6.5.0", + "@turf/helpers": "^6.5.0", + "@turf/invariant": "^6.5.0", + "@turf/line-intersect": "^6.5.0", + "@turf/meta": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" } }, "node_modules/@turf/nearest-point-to-line": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/@turf/nearest-point-to-line/-/nearest-point-to-line-6.3.0.tgz", - "integrity": "sha512-1ut4u1KXHwXc6qdnDLkhTdPUdeHOmdmysMBxnNNFH7UTefi3XfR8BF/NOxNP8g7OKJrZ2vhDeR4PCL5xAsVH5A==", + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/nearest-point-to-line/-/nearest-point-to-line-6.5.0.tgz", + "integrity": "sha512-PXV7cN0BVzUZdjj6oeb/ESnzXSfWmEMrsfZSDRgqyZ9ytdiIj/eRsnOXLR13LkTdXVOJYDBuf7xt1mLhM4p6+Q==", "dependencies": { - "@turf/helpers": "^6.3.0", - "@turf/invariant": "^6.3.0", - "@turf/meta": "^6.3.0", - "@turf/point-to-line-distance": "^6.3.0", + "@turf/helpers": "^6.5.0", + "@turf/invariant": "^6.5.0", + "@turf/meta": "^6.5.0", + "@turf/point-to-line-distance": "^6.5.0", "object-assign": "*" + }, + "funding": { + "url": "https://opencollective.com/turf" } }, "node_modules/@turf/planepoint": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/@turf/planepoint/-/planepoint-6.3.0.tgz", - "integrity": "sha512-RDfzUiwB3P3bGeRBZf/czZdtQsqUIVQePaAU5ijCqTBdR1V0TuVbRig1WE0XD4j5dM242OEezHJ3Xqgo71Nzww==", + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/planepoint/-/planepoint-6.5.0.tgz", + "integrity": "sha512-R3AahA6DUvtFbka1kcJHqZ7DMHmPXDEQpbU5WaglNn7NaCQg9HB0XM0ZfqWcd5u92YXV+Gg8QhC8x5XojfcM4Q==", "dependencies": { - "@turf/helpers": "^6.3.0", - "@turf/invariant": "^6.3.0" + "@turf/helpers": "^6.5.0", + "@turf/invariant": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" } }, "node_modules/@turf/point-grid": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/@turf/point-grid/-/point-grid-6.3.0.tgz", - "integrity": "sha512-1ERghdRXtA/5Z/To7X1Y9D1cvej3+ZCZXNZnM/0c+3sAioohjK5IXv2enR23p1ftA6Z3H7wug5IB4YmVzs4MaA==", + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/point-grid/-/point-grid-6.5.0.tgz", + "integrity": "sha512-Iq38lFokNNtQJnOj/RBKmyt6dlof0yhaHEDELaWHuECm1lIZLY3ZbVMwbs+nXkwTAHjKfS/OtMheUBkw+ee49w==", "dependencies": { - "@turf/boolean-within": "^6.3.0", - "@turf/distance": "^6.3.0", - "@turf/helpers": "^6.3.0", - "@turf/invariant": "^6.3.0" + "@turf/boolean-within": "^6.5.0", + "@turf/distance": "^6.5.0", + "@turf/helpers": "^6.5.0", + "@turf/invariant": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" } }, "node_modules/@turf/point-on-feature": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/@turf/point-on-feature/-/point-on-feature-6.3.0.tgz", - "integrity": "sha512-zN35KN/IUAgOyVtlEQg1j71U8eoav2JPZOdWlEFHsjYQVm9cF+AKOkvBdm6LQWMWvCtwSqqghwe/zRKvzJPynw==", + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/point-on-feature/-/point-on-feature-6.5.0.tgz", + "integrity": "sha512-bDpuIlvugJhfcF/0awAQ+QI6Om1Y1FFYE8Y/YdxGRongivix850dTeXCo0mDylFdWFPGDo7Mmh9Vo4VxNwW/TA==", "dependencies": { - "@turf/boolean-point-in-polygon": "^6.3.0", - "@turf/center": "^6.3.0", - "@turf/explode": "^6.3.0", - "@turf/helpers": "^6.3.0", - "@turf/nearest-point": "^6.3.0" + "@turf/boolean-point-in-polygon": "^6.5.0", + "@turf/center": "^6.5.0", + "@turf/explode": "^6.5.0", + "@turf/helpers": "^6.5.0", + "@turf/nearest-point": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" } }, "node_modules/@turf/point-to-line-distance": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/@turf/point-to-line-distance/-/point-to-line-distance-6.3.0.tgz", - "integrity": "sha512-AqCcj4A0GPzKb3w+q+C9ex0r5mC+u+Ee6VN2jY1p25dxBQJNpMZKDE5LcWtaXeD+pAk3ZGmvea8LR5S0AJukxA==", + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/point-to-line-distance/-/point-to-line-distance-6.5.0.tgz", + "integrity": "sha512-opHVQ4vjUhNBly1bob6RWy+F+hsZDH9SA0UW36pIRzfpu27qipU18xup0XXEePfY6+wvhF6yL/WgCO2IbrLqEA==", "dependencies": { - "@turf/bearing": "^6.3.0", - "@turf/distance": "^6.3.0", - "@turf/helpers": "^6.3.0", - "@turf/invariant": "^6.3.0", - "@turf/meta": "^6.3.0", - "@turf/projection": "^6.3.0", - "@turf/rhumb-bearing": "^6.3.0", - "@turf/rhumb-distance": "^6.3.0" + "@turf/bearing": "^6.5.0", + "@turf/distance": "^6.5.0", + "@turf/helpers": "^6.5.0", + "@turf/invariant": "^6.5.0", + "@turf/meta": "^6.5.0", + "@turf/projection": "^6.5.0", + "@turf/rhumb-bearing": "^6.5.0", + "@turf/rhumb-distance": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" } }, "node_modules/@turf/points-within-polygon": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/@turf/points-within-polygon/-/points-within-polygon-6.3.0.tgz", - "integrity": "sha512-ES/tLj5oZR7TBg7FSOy8bypBvXALwl2f36MmQ3AJfK0KvAeQ+mxFXTGslAK3ewL9fVVxWLsmbP9bPLSzWeuPAw==", + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/points-within-polygon/-/points-within-polygon-6.5.0.tgz", + "integrity": "sha512-YyuheKqjliDsBDt3Ho73QVZk1VXX1+zIA2gwWvuz8bR1HXOkcuwk/1J76HuFMOQI3WK78wyAi+xbkx268PkQzQ==", "dependencies": { - "@turf/boolean-point-in-polygon": "^6.3.0", - "@turf/helpers": "^6.3.0", - "@turf/meta": "^6.3.0" + "@turf/boolean-point-in-polygon": "^6.5.0", + "@turf/helpers": "^6.5.0", + "@turf/meta": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" } }, "node_modules/@turf/polygon-smooth": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/@turf/polygon-smooth/-/polygon-smooth-6.3.0.tgz", - "integrity": "sha512-60aMw3d57DXqdFyWU43c5gHaumCZ9jn6K5GqgeKTfmElIumdSspg9MEIW7d7z6qkPufPY34FczJ9yapMih5SIQ==", + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/polygon-smooth/-/polygon-smooth-6.5.0.tgz", + "integrity": "sha512-LO/X/5hfh/Rk4EfkDBpLlVwt3i6IXdtQccDT9rMjXEP32tRgy0VMFmdkNaXoGlSSKf/1mGqLl4y4wHd86DqKbg==", "dependencies": { - "@turf/helpers": "^6.3.0", - "@turf/meta": "^6.3.0" + "@turf/helpers": "^6.5.0", + "@turf/meta": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" } }, "node_modules/@turf/polygon-tangents": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/@turf/polygon-tangents/-/polygon-tangents-6.3.0.tgz", - "integrity": "sha512-QEXsXgZKWV3mPPqxERIQ+DzBSvnO0R1c9FsHuHE0F49Cic+CRMPjEpnzQj39cOUQfwPlQl2ThuaKAljlQ5QNMQ==", + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/polygon-tangents/-/polygon-tangents-6.5.0.tgz", + "integrity": "sha512-sB4/IUqJMYRQH9jVBwqS/XDitkEfbyqRy+EH/cMRJURTg78eHunvJ708x5r6umXsbiUyQU4eqgPzEylWEQiunw==", "dependencies": { - "@turf/bbox": "^6.3.0", - "@turf/boolean-within": "^6.3.0", - "@turf/explode": "^6.3.0", - "@turf/helpers": "^6.3.0", - "@turf/invariant": "^6.3.0", - "@turf/nearest-point": "^6.3.0" + "@turf/bbox": "^6.5.0", + "@turf/boolean-within": "^6.5.0", + "@turf/explode": "^6.5.0", + "@turf/helpers": "^6.5.0", + "@turf/invariant": "^6.5.0", + "@turf/nearest-point": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" } }, "node_modules/@turf/polygon-to-line": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/@turf/polygon-to-line/-/polygon-to-line-6.3.0.tgz", - "integrity": "sha512-KFGlQlGOBayBvELz+tip1zCa3eB8xyZePZUZ3I3OnU7mk0FFzJzvLTmPUc7MupgqORT4LkNGmyKSVWaz38NTig==", + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/polygon-to-line/-/polygon-to-line-6.5.0.tgz", + "integrity": "sha512-5p4n/ij97EIttAq+ewSnKt0ruvuM+LIDzuczSzuHTpq4oS7Oq8yqg5TQ4nzMVuK41r/tALCk7nAoBuw3Su4Gcw==", "dependencies": { - "@turf/helpers": "^6.3.0", - "@turf/invariant": "^6.3.0" + "@turf/helpers": "^6.5.0", + "@turf/invariant": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" } }, "node_modules/@turf/polygonize": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/@turf/polygonize/-/polygonize-6.3.0.tgz", - "integrity": "sha512-v1w5ibIJ5to3+nuitVNyukPMMY+z++y3e55TBuot1vkAEyCi538Kc8Qz0eWONPGZKzwYtQtkve2NIp0BBeNd5g==", + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/polygonize/-/polygonize-6.5.0.tgz", + "integrity": "sha512-a/3GzHRaCyzg7tVYHo43QUChCspa99oK4yPqooVIwTC61npFzdrmnywMv0S+WZjHZwK37BrFJGFrZGf6ocmY5w==", "dependencies": { - "@turf/boolean-point-in-polygon": "^6.3.0", - "@turf/envelope": "^6.3.0", - "@turf/helpers": "^6.3.0", - "@turf/invariant": "^6.3.0", - "@turf/meta": "^6.3.0" + "@turf/boolean-point-in-polygon": "^6.5.0", + "@turf/envelope": "^6.5.0", + "@turf/helpers": "^6.5.0", + "@turf/invariant": "^6.5.0", + "@turf/meta": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" } }, "node_modules/@turf/projection": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/@turf/projection/-/projection-6.3.0.tgz", - "integrity": "sha512-IpSs7Q6G6xi47ynVlYYVegPLy6Jc0yo3/DcIm83jaJa4NnzPFXIFZT0v9Fe1N8MraHZqiqaSPbVnJXCGwR12lg==", + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/projection/-/projection-6.5.0.tgz", + "integrity": "sha512-/Pgh9mDvQWWu8HRxqpM+tKz8OzgauV+DiOcr3FCjD6ubDnrrmMJlsf6fFJmggw93mtVPrZRL6yyi9aYCQBOIvg==", "dependencies": { - "@turf/clone": "^6.3.0", - "@turf/helpers": "^6.3.0", - "@turf/meta": "^6.3.0" + "@turf/clone": "^6.5.0", + "@turf/helpers": "^6.5.0", + "@turf/meta": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" } }, "node_modules/@turf/random": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/@turf/random/-/random-6.3.0.tgz", - "integrity": "sha512-jSKNqLCOc/xUPoQp8jZLUYTrtID1PNJV7eLXMbJdHdcYwU7d6dTkrdgI08ZU/Nc4qJv1ZAlWO/xEyKGtC1RgrQ==", + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/random/-/random-6.5.0.tgz", + "integrity": "sha512-8Q25gQ/XbA7HJAe+eXp4UhcXM9aOOJFaxZ02+XSNwMvY8gtWSCBLVqRcW4OhqilgZ8PeuQDWgBxeo+BIqqFWFQ==", "dependencies": { - "@turf/helpers": "^6.3.0" + "@turf/helpers": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" } }, "node_modules/@turf/rectangle-grid": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/@turf/rectangle-grid/-/rectangle-grid-6.3.0.tgz", - "integrity": "sha512-XQAjpprUhGA9aoVH8H6lqZb0Dk8SZ2djKAPD6dDplFgrufdmP1Fe1BfbsdBgjyfPrdR7hSffLyEAwC3bhfJo2w==", + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/rectangle-grid/-/rectangle-grid-6.5.0.tgz", + "integrity": "sha512-yQZ/1vbW68O2KsSB3OZYK+72aWz/Adnf7m2CMKcC+aq6TwjxZjAvlbCOsNUnMAuldRUVN1ph6RXMG4e9KEvKvg==", "dependencies": { - "@turf/boolean-intersects": "^6.3.0", - "@turf/distance": "^6.3.0", - "@turf/helpers": "^6.3.0" + "@turf/boolean-intersects": "^6.5.0", + "@turf/distance": "^6.5.0", + "@turf/helpers": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" } }, "node_modules/@turf/rewind": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/@turf/rewind/-/rewind-6.3.0.tgz", - "integrity": "sha512-56HwvOZ4r4/wXr8l8zCpdjZ3bxY6Ee7aokuJr/+BlVqikHdRHRx+FJpLGpykZU1YWdO7IiLK7ajX+clYPaqRKg==", + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/rewind/-/rewind-6.5.0.tgz", + "integrity": "sha512-IoUAMcHWotBWYwSYuYypw/LlqZmO+wcBpn8ysrBNbazkFNkLf3btSDZMkKJO/bvOzl55imr/Xj4fi3DdsLsbzQ==", "dependencies": { - "@turf/boolean-clockwise": "^6.3.0", - "@turf/clone": "^6.3.0", - "@turf/helpers": "^6.3.0", - "@turf/invariant": "^6.3.0", - "@turf/meta": "^6.3.0" + "@turf/boolean-clockwise": "^6.5.0", + "@turf/clone": "^6.5.0", + "@turf/helpers": "^6.5.0", + "@turf/invariant": "^6.5.0", + "@turf/meta": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" } }, "node_modules/@turf/rhumb-bearing": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/@turf/rhumb-bearing/-/rhumb-bearing-6.3.0.tgz", - "integrity": "sha512-/c/BE3huEUrwN6gx7Bg2FzfJqeU+TWk/slQPDHpbVunlIPbS6L28brqSVD+KXfMG8HQIzynz6Pm4Y+j5Iv4aWA==", + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/rhumb-bearing/-/rhumb-bearing-6.5.0.tgz", + "integrity": "sha512-jMyqiMRK4hzREjQmnLXmkJ+VTNTx1ii8vuqRwJPcTlKbNWfjDz/5JqJlb5NaFDcdMpftWovkW5GevfnuzHnOYA==", "dependencies": { - "@turf/helpers": "^6.3.0", - "@turf/invariant": "^6.3.0" + "@turf/helpers": "^6.5.0", + "@turf/invariant": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" } }, "node_modules/@turf/rhumb-destination": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/@turf/rhumb-destination/-/rhumb-destination-6.3.0.tgz", - "integrity": "sha512-MaQf5wldfERfn8cjtbkD/6GUurAwD+sjedvDgV/chZ83yx7kXmRgrVMpRSGUbmGQ3Ww8dn38sUCapnM6M07+Rg==", + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/rhumb-destination/-/rhumb-destination-6.5.0.tgz", + "integrity": "sha512-RHNP1Oy+7xTTdRrTt375jOZeHceFbjwohPHlr9Hf68VdHHPMAWgAKqiX2YgSWDcvECVmiGaBKWus1Df+N7eE4Q==", "dependencies": { - "@turf/helpers": "^6.3.0", - "@turf/invariant": "^6.3.0" + "@turf/helpers": "^6.5.0", + "@turf/invariant": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" } }, "node_modules/@turf/rhumb-distance": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/@turf/rhumb-distance/-/rhumb-distance-6.3.0.tgz", - "integrity": "sha512-wMIQVvznusonnp/POeucFdA4Rubn0NrkcEMdxdcCgFK7OmTz0zU4CEnNONF2IUGkQ5WwoKiuS7MOTQ8OuCjSfQ==", + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/rhumb-distance/-/rhumb-distance-6.5.0.tgz", + "integrity": "sha512-oKp8KFE8E4huC2Z1a1KNcFwjVOqa99isxNOwfo4g3SUABQ6NezjKDDrnvC4yI5YZ3/huDjULLBvhed45xdCrzg==", "dependencies": { - "@turf/helpers": "^6.3.0", - "@turf/invariant": "^6.3.0" + "@turf/helpers": "^6.5.0", + "@turf/invariant": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" } }, "node_modules/@turf/sample": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/@turf/sample/-/sample-6.3.0.tgz", - "integrity": "sha512-CmUkpoLIi+57jxBmYh4KW7S4Vculty84NC2ERNFZrLkVquewVYSppwKsaZtc0Hbap6a1N7hP4C80e2bPzRC4fg==", + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/sample/-/sample-6.5.0.tgz", + "integrity": "sha512-kSdCwY7el15xQjnXYW520heKUrHwRvnzx8ka4eYxX9NFeOxaFITLW2G7UtXb6LJK8mmPXI8Aexv23F2ERqzGFg==", "dependencies": { - "@turf/helpers": "^6.3.0" + "@turf/helpers": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" } }, "node_modules/@turf/sector": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/@turf/sector/-/sector-6.3.0.tgz", - "integrity": "sha512-bHaDlHzCKEl5G+EEXdMTk3MFC8Yl5QjwrMVakF2Usi0P0c7hp6r10QVOjq9nmn6jvZHTPaiG2A4z9unkWIFxIg==", + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/sector/-/sector-6.5.0.tgz", + "integrity": "sha512-cYUOkgCTWqa23SOJBqxoFAc/yGCUsPRdn/ovbRTn1zNTm/Spmk6hVB84LCKOgHqvSF25i0d2kWqpZDzLDdAPbw==", "dependencies": { - "@turf/circle": "^6.3.0", - "@turf/helpers": "^6.3.0", - "@turf/invariant": "^6.3.0", - "@turf/line-arc": "^6.3.0", - "@turf/meta": "^6.3.0" + "@turf/circle": "^6.5.0", + "@turf/helpers": "^6.5.0", + "@turf/invariant": "^6.5.0", + "@turf/line-arc": "^6.5.0", + "@turf/meta": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" } }, "node_modules/@turf/shortest-path": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/@turf/shortest-path/-/shortest-path-6.3.0.tgz", - "integrity": "sha512-dc50vcgb6G/nyljCdfxS4T3tGb2f45MkKEFdz6sVTYqjNakPnRoJao8xvInVsf1i2J53dWNU635oZhW9P1nqKg==", + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/shortest-path/-/shortest-path-6.5.0.tgz", + "integrity": "sha512-4de5+G7+P4hgSoPwn+SO9QSi9HY5NEV/xRJ+cmoFVRwv2CDsuOPDheHKeuIAhKyeKDvPvPt04XYWbac4insJMg==", "dependencies": { - "@turf/bbox": "^6.3.0", - "@turf/bbox-polygon": "^6.3.0", - "@turf/boolean-point-in-polygon": "^6.3.0", - "@turf/clean-coords": "^6.3.0", - "@turf/distance": "^6.3.0", - "@turf/helpers": "^6.3.0", - "@turf/invariant": "^6.3.0", - "@turf/meta": "^6.3.0", - "@turf/transform-scale": "^6.3.0" + "@turf/bbox": "^6.5.0", + "@turf/bbox-polygon": "^6.5.0", + "@turf/boolean-point-in-polygon": "^6.5.0", + "@turf/clean-coords": "^6.5.0", + "@turf/distance": "^6.5.0", + "@turf/helpers": "^6.5.0", + "@turf/invariant": "^6.5.0", + "@turf/meta": "^6.5.0", + "@turf/transform-scale": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" } }, "node_modules/@turf/simplify": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/@turf/simplify/-/simplify-6.3.0.tgz", - "integrity": "sha512-6a+9oKwZpZk3Oohz9koQZGXh1qb+/UgUz2yW2bunjjlKpBdBFhRbEKi0KeprgPGFLLTMjf0tybhO1rFwiz6S1w==", + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/simplify/-/simplify-6.5.0.tgz", + "integrity": "sha512-USas3QqffPHUY184dwQdP8qsvcVH/PWBYdXY5am7YTBACaQOMAlf6AKJs9FT8jiO6fQpxfgxuEtwmox+pBtlOg==", "dependencies": { - "@turf/clean-coords": "^6.3.0", - "@turf/clone": "^6.3.0", - "@turf/helpers": "^6.3.0", - "@turf/meta": "^6.3.0" + "@turf/clean-coords": "^6.5.0", + "@turf/clone": "^6.5.0", + "@turf/helpers": "^6.5.0", + "@turf/meta": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" } }, "node_modules/@turf/square": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/@turf/square/-/square-6.3.0.tgz", - "integrity": "sha512-/nRGsV0DlUcOYv+gKAkIADSf+HooNLbOLBTUdhq9Piy3LuAWIXT+Rt5XN+NuNZP+84Al34GA1fR+BxqQ4reh7w==", + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/square/-/square-6.5.0.tgz", + "integrity": "sha512-BM2UyWDmiuHCadVhHXKIx5CQQbNCpOxB6S/aCNOCLbhCeypKX5Q0Aosc5YcmCJgkwO5BERCC6Ee7NMbNB2vHmQ==", "dependencies": { - "@turf/distance": "^6.3.0", - "@turf/helpers": "^6.3.0" + "@turf/distance": "^6.5.0", + "@turf/helpers": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" } }, "node_modules/@turf/square-grid": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/@turf/square-grid/-/square-grid-6.3.0.tgz", - "integrity": "sha512-ZCgThI5hPLJNVErCB9zkJ3w3OpW6BbrOqyrxFbwlYGZrZ6uj52/j8PWQtwnmiqdv0k8+Cbxrap7E6//Oks4jIw==", + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/square-grid/-/square-grid-6.5.0.tgz", + "integrity": "sha512-mlR0ayUdA+L4c9h7p4k3pX6gPWHNGuZkt2c5II1TJRmhLkW2557d6b/Vjfd1z9OVaajb1HinIs1FMSAPXuuUrA==", "dependencies": { - "@turf/helpers": "^6.3.0", - "@turf/rectangle-grid": "^6.3.0" + "@turf/helpers": "^6.5.0", + "@turf/rectangle-grid": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" } }, "node_modules/@turf/standard-deviational-ellipse": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/@turf/standard-deviational-ellipse/-/standard-deviational-ellipse-6.3.0.tgz", - "integrity": "sha512-e8CeSUv5FLpzlJxiOr9lDtJIY3e/JKW4is+gBO8rMTQNFbWyrqXtzhyTfrwXEPKmaeei1DK9ixxj/oRDna25Hw==", + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/standard-deviational-ellipse/-/standard-deviational-ellipse-6.5.0.tgz", + "integrity": "sha512-02CAlz8POvGPFK2BKK8uHGUk/LXb0MK459JVjKxLC2yJYieOBTqEbjP0qaWhiBhGzIxSMaqe8WxZ0KvqdnstHA==", "dependencies": { - "@turf/center-mean": "^6.3.0", - "@turf/ellipse": "^6.3.0", - "@turf/helpers": "^6.3.0", - "@turf/invariant": "^6.3.0", - "@turf/meta": "^6.3.0", - "@turf/points-within-polygon": "^6.3.0" + "@turf/center-mean": "^6.5.0", + "@turf/ellipse": "^6.5.0", + "@turf/helpers": "^6.5.0", + "@turf/invariant": "^6.5.0", + "@turf/meta": "^6.5.0", + "@turf/points-within-polygon": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" } }, "node_modules/@turf/tag": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/@turf/tag/-/tag-6.3.0.tgz", - "integrity": "sha512-3L//rLql+ILeFuZ5L/sPm0f5NcHrNgUnGiB1hSIp3kdhhIIiZUpcktJUbksTvID67JJlP3smfyIQiU++LZW21w==", + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/tag/-/tag-6.5.0.tgz", + "integrity": "sha512-XwlBvrOV38CQsrNfrxvBaAPBQgXMljeU0DV8ExOyGM7/hvuGHJw3y8kKnQ4lmEQcmcrycjDQhP7JqoRv8vFssg==", "dependencies": { - "@turf/boolean-point-in-polygon": "^6.3.0", - "@turf/clone": "^6.3.0", - "@turf/helpers": "^6.3.0", - "@turf/meta": "^6.3.0" + "@turf/boolean-point-in-polygon": "^6.5.0", + "@turf/clone": "^6.5.0", + "@turf/helpers": "^6.5.0", + "@turf/meta": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" } }, "node_modules/@turf/tesselate": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/@turf/tesselate/-/tesselate-6.3.0.tgz", - "integrity": "sha512-SkBHJCci/ergp/Y1TIfBRavdEJgFatQDz+ySdggXHT+mBiJEOEia3N+8V89RVOnORXTCDsjzWOWwftCS/J2sKQ==", + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/tesselate/-/tesselate-6.5.0.tgz", + "integrity": "sha512-M1HXuyZFCfEIIKkglh/r5L9H3c5QTEsnMBoZOFQiRnGPGmJWcaBissGb7mTFX2+DKE7FNWXh4TDnZlaLABB0dQ==", "dependencies": { - "@turf/helpers": "^6.3.0", + "@turf/helpers": "^6.5.0", "earcut": "^2.0.0" + }, + "funding": { + "url": "https://opencollective.com/turf" } }, "node_modules/@turf/tin": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/@turf/tin/-/tin-6.3.0.tgz", - "integrity": "sha512-obk9vyzKo3o3Dy4fPlb8IROb9LdMlz4LvKZ63DNtQsxwrWsc+og0EOh2mpvZrCIeoObx3ah5SnuAh14xH4JybA==", + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/tin/-/tin-6.5.0.tgz", + "integrity": "sha512-YLYikRzKisfwj7+F+Tmyy/LE3d2H7D4kajajIfc9mlik2+esG7IolsX/+oUz1biguDYsG0DUA8kVYXDkobukfg==", "dependencies": { - "@turf/helpers": "^6.3.0" + "@turf/helpers": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" } }, "node_modules/@turf/transform-rotate": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/@turf/transform-rotate/-/transform-rotate-6.3.0.tgz", - "integrity": "sha512-6CPfmDdaXjbBoPeyHkui704vz6MD3MoI09LGRVJ/RIo1uH/OL6RDSlCfLxFtkE33FJ7VV4giczc3LF1UP5Oh9w==", + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/transform-rotate/-/transform-rotate-6.5.0.tgz", + "integrity": "sha512-A2Ip1v4246ZmpssxpcL0hhiVBEf4L8lGnSPWTgSv5bWBEoya2fa/0SnFX9xJgP40rMP+ZzRaCN37vLHbv1Guag==", "dependencies": { - "@turf/centroid": "^6.3.0", - "@turf/clone": "^6.3.0", - "@turf/helpers": "^6.3.0", - "@turf/invariant": "^6.3.0", - "@turf/meta": "^6.3.0", - "@turf/rhumb-bearing": "^6.3.0", - "@turf/rhumb-destination": "^6.3.0", - "@turf/rhumb-distance": "^6.3.0" + "@turf/centroid": "^6.5.0", + "@turf/clone": "^6.5.0", + "@turf/helpers": "^6.5.0", + "@turf/invariant": "^6.5.0", + "@turf/meta": "^6.5.0", + "@turf/rhumb-bearing": "^6.5.0", + "@turf/rhumb-destination": "^6.5.0", + "@turf/rhumb-distance": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" } }, "node_modules/@turf/transform-scale": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/@turf/transform-scale/-/transform-scale-6.3.0.tgz", - "integrity": "sha512-UnLWEXAUdZy7JYbylMjYczPUkxXlUK1nMgv7zEzQ+8mczysPVsgB/FDyiexY2bgVEEBMeDqFSHtqLRavXljI0A==", + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/transform-scale/-/transform-scale-6.5.0.tgz", + "integrity": "sha512-VsATGXC9rYM8qTjbQJ/P7BswKWXHdnSJ35JlV4OsZyHBMxJQHftvmZJsFbOqVtQnIQIzf2OAly6rfzVV9QLr7g==", "dependencies": { - "@turf/bbox": "^6.3.0", - "@turf/center": "^6.3.0", - "@turf/centroid": "^6.3.0", - "@turf/clone": "^6.3.0", - "@turf/helpers": "^6.3.0", - "@turf/invariant": "^6.3.0", - "@turf/meta": "^6.3.0", - "@turf/rhumb-bearing": "^6.3.0", - "@turf/rhumb-destination": "^6.3.0", - "@turf/rhumb-distance": "^6.3.0" + "@turf/bbox": "^6.5.0", + "@turf/center": "^6.5.0", + "@turf/centroid": "^6.5.0", + "@turf/clone": "^6.5.0", + "@turf/helpers": "^6.5.0", + "@turf/invariant": "^6.5.0", + "@turf/meta": "^6.5.0", + "@turf/rhumb-bearing": "^6.5.0", + "@turf/rhumb-destination": "^6.5.0", + "@turf/rhumb-distance": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" } }, "node_modules/@turf/transform-translate": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/@turf/transform-translate/-/transform-translate-6.3.0.tgz", - "integrity": "sha512-ZGAK3T6wdYLOIKr/FHl+i09b1vhPV3XWHw4/M27xA6US2rNcO6/jkLjskdME/3JzJDFmGa8F2vlPqlhtWWoRSw==", + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/transform-translate/-/transform-translate-6.5.0.tgz", + "integrity": "sha512-NABLw5VdtJt/9vSstChp93pc6oel4qXEos56RBMsPlYB8hzNTEKYtC146XJvyF4twJeeYS8RVe1u7KhoFwEM5w==", "dependencies": { - "@turf/clone": "^6.3.0", - "@turf/helpers": "^6.3.0", - "@turf/invariant": "^6.3.0", - "@turf/meta": "^6.3.0", - "@turf/rhumb-destination": "^6.3.0" + "@turf/clone": "^6.5.0", + "@turf/helpers": "^6.5.0", + "@turf/invariant": "^6.5.0", + "@turf/meta": "^6.5.0", + "@turf/rhumb-destination": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" } }, "node_modules/@turf/triangle-grid": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/@turf/triangle-grid/-/triangle-grid-6.3.0.tgz", - "integrity": "sha512-2AExXl7pTvRKOyGowuvvUm0tTyLQl+xzvv+mgWgNyg84qQptGN3HFH/QS4quoQdEzOyHNLFHgloNn6cWFX9v4A==", + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/triangle-grid/-/triangle-grid-6.5.0.tgz", + "integrity": "sha512-2jToUSAS1R1htq4TyLQYPTIsoy6wg3e3BQXjm2rANzw4wPQCXGOxrur1Fy9RtzwqwljlC7DF4tg0OnWr8RjmfA==", "dependencies": { - "@turf/distance": "^6.3.0", - "@turf/helpers": "^6.3.0", - "@turf/intersect": "^6.3.0" + "@turf/distance": "^6.5.0", + "@turf/helpers": "^6.5.0", + "@turf/intersect": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" } }, "node_modules/@turf/truncate": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/@turf/truncate/-/truncate-6.3.0.tgz", - "integrity": "sha512-fvzR3BUODPciEBELLqqAggEEeb1L0d79WZYb9HKaoSB0GKTTgNrEbkTXiiGEjGJ1s1FMqXOEp0DKsLvvb1h4OA==", + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/truncate/-/truncate-6.5.0.tgz", + "integrity": "sha512-pFxg71pLk+eJj134Z9yUoRhIi8vqnnKvCYwdT4x/DQl/19RVdq1tV3yqOT3gcTQNfniteylL5qV1uTBDV5sgrg==", "dependencies": { - "@turf/helpers": "^6.3.0", - "@turf/meta": "^6.3.0" + "@turf/helpers": "^6.5.0", + "@turf/meta": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" } }, "node_modules/@turf/turf": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/@turf/turf/-/turf-6.3.0.tgz", - "integrity": "sha512-6CcUammJKsn6mI7/+DlnXqf1iAk5HZ86/wmHIVG6VTmmPBP5drWSjoRUcaiXQADzLLuR9eZ3kl11KEOdvn9DmQ==", + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/turf/-/turf-6.5.0.tgz", + "integrity": "sha512-ipMCPnhu59bh92MNt8+pr1VZQhHVuTMHklciQURo54heoxRzt1neNYZOBR6jdL+hNsbDGAECMuIpAutX+a3Y+w==", "dependencies": { - "@turf/along": "^6.3.0", - "@turf/angle": "^6.3.0", - "@turf/area": "^6.3.0", - "@turf/bbox": "^6.3.0", - "@turf/bbox-clip": "^6.3.0", - "@turf/bbox-polygon": "^6.3.0", - "@turf/bearing": "^6.3.0", - "@turf/bezier-spline": "^6.3.0", - "@turf/boolean-clockwise": "^6.3.0", - "@turf/boolean-contains": "^6.3.0", - "@turf/boolean-crosses": "^6.3.0", - "@turf/boolean-disjoint": "^6.3.0", - "@turf/boolean-equal": "^6.3.0", - "@turf/boolean-intersects": "^6.3.0", - "@turf/boolean-overlap": "^6.3.0", - "@turf/boolean-parallel": "^6.3.0", - "@turf/boolean-point-in-polygon": "^6.3.0", - "@turf/boolean-point-on-line": "^6.3.0", - "@turf/boolean-within": "^6.3.0", - "@turf/buffer": "^6.3.0", - "@turf/center": "^6.3.0", - "@turf/center-mean": "^6.3.0", - "@turf/center-median": "^6.3.0", - "@turf/center-of-mass": "^6.3.0", - "@turf/centroid": "^6.3.0", - "@turf/circle": "^6.3.0", - "@turf/clean-coords": "^6.3.0", - "@turf/clone": "^6.3.0", - "@turf/clusters": "^6.3.0", - "@turf/clusters-dbscan": "^6.3.0", - "@turf/clusters-kmeans": "^6.3.0", - "@turf/collect": "^6.3.0", - "@turf/combine": "^6.3.0", - "@turf/concave": "^6.3.0", - "@turf/convex": "^6.3.0", - "@turf/destination": "^6.3.0", - "@turf/difference": "^6.3.0", - "@turf/dissolve": "^6.3.0", - "@turf/distance": "^6.3.0", - "@turf/distance-weight": "^6.3.0", - "@turf/ellipse": "^6.3.0", - "@turf/envelope": "^6.3.0", - "@turf/explode": "^6.3.0", - "@turf/flatten": "^6.3.0", - "@turf/flip": "^6.3.0", - "@turf/great-circle": "^6.3.0", - "@turf/helpers": "^6.3.0", - "@turf/hex-grid": "^6.3.0", - "@turf/interpolate": "^6.3.0", - "@turf/intersect": "^6.3.0", - "@turf/invariant": "^6.3.0", - "@turf/isobands": "^6.3.0", - "@turf/isolines": "^6.3.0", - "@turf/kinks": "^6.3.0", - "@turf/length": "^6.3.0", - "@turf/line-arc": "^6.3.0", - "@turf/line-chunk": "^6.3.0", - "@turf/line-intersect": "^6.3.0", - "@turf/line-offset": "^6.3.0", - "@turf/line-overlap": "^6.3.0", - "@turf/line-segment": "^6.3.0", - "@turf/line-slice": "^6.3.0", - "@turf/line-slice-along": "^6.3.0", - "@turf/line-split": "^6.3.0", - "@turf/line-to-polygon": "^6.3.0", - "@turf/mask": "^6.3.0", - "@turf/meta": "^6.3.0", - "@turf/midpoint": "^6.3.0", - "@turf/moran-index": "^6.3.0", - "@turf/nearest-point": "^6.3.0", - "@turf/nearest-point-on-line": "^6.3.0", - "@turf/nearest-point-to-line": "^6.3.0", - "@turf/planepoint": "^6.3.0", - "@turf/point-grid": "^6.3.0", - "@turf/point-on-feature": "^6.3.0", - "@turf/point-to-line-distance": "^6.3.0", - "@turf/points-within-polygon": "^6.3.0", - "@turf/polygon-smooth": "^6.3.0", - "@turf/polygon-tangents": "^6.3.0", - "@turf/polygon-to-line": "^6.3.0", - "@turf/polygonize": "^6.3.0", - "@turf/projection": "^6.3.0", - "@turf/random": "^6.3.0", - "@turf/rewind": "^6.3.0", - "@turf/rhumb-bearing": "^6.3.0", - "@turf/rhumb-destination": "^6.3.0", - "@turf/rhumb-distance": "^6.3.0", - "@turf/sample": "^6.3.0", - "@turf/sector": "^6.3.0", - "@turf/shortest-path": "^6.3.0", - "@turf/simplify": "^6.3.0", - "@turf/square": "^6.3.0", - "@turf/square-grid": "^6.3.0", - "@turf/standard-deviational-ellipse": "^6.3.0", - "@turf/tag": "^6.3.0", - "@turf/tesselate": "^6.3.0", - "@turf/tin": "^6.3.0", - "@turf/transform-rotate": "^6.3.0", - "@turf/transform-scale": "^6.3.0", - "@turf/transform-translate": "^6.3.0", - "@turf/triangle-grid": "^6.3.0", - "@turf/truncate": "^6.3.0", - "@turf/union": "^6.3.0", - "@turf/unkink-polygon": "^6.3.0", - "@turf/voronoi": "^6.3.0" + "@turf/along": "^6.5.0", + "@turf/angle": "^6.5.0", + "@turf/area": "^6.5.0", + "@turf/bbox": "^6.5.0", + "@turf/bbox-clip": "^6.5.0", + "@turf/bbox-polygon": "^6.5.0", + "@turf/bearing": "^6.5.0", + "@turf/bezier-spline": "^6.5.0", + "@turf/boolean-clockwise": "^6.5.0", + "@turf/boolean-contains": "^6.5.0", + "@turf/boolean-crosses": "^6.5.0", + "@turf/boolean-disjoint": "^6.5.0", + "@turf/boolean-equal": "^6.5.0", + "@turf/boolean-intersects": "^6.5.0", + "@turf/boolean-overlap": "^6.5.0", + "@turf/boolean-parallel": "^6.5.0", + "@turf/boolean-point-in-polygon": "^6.5.0", + "@turf/boolean-point-on-line": "^6.5.0", + "@turf/boolean-within": "^6.5.0", + "@turf/buffer": "^6.5.0", + "@turf/center": "^6.5.0", + "@turf/center-mean": "^6.5.0", + "@turf/center-median": "^6.5.0", + "@turf/center-of-mass": "^6.5.0", + "@turf/centroid": "^6.5.0", + "@turf/circle": "^6.5.0", + "@turf/clean-coords": "^6.5.0", + "@turf/clone": "^6.5.0", + "@turf/clusters": "^6.5.0", + "@turf/clusters-dbscan": "^6.5.0", + "@turf/clusters-kmeans": "^6.5.0", + "@turf/collect": "^6.5.0", + "@turf/combine": "^6.5.0", + "@turf/concave": "^6.5.0", + "@turf/convex": "^6.5.0", + "@turf/destination": "^6.5.0", + "@turf/difference": "^6.5.0", + "@turf/dissolve": "^6.5.0", + "@turf/distance": "^6.5.0", + "@turf/distance-weight": "^6.5.0", + "@turf/ellipse": "^6.5.0", + "@turf/envelope": "^6.5.0", + "@turf/explode": "^6.5.0", + "@turf/flatten": "^6.5.0", + "@turf/flip": "^6.5.0", + "@turf/great-circle": "^6.5.0", + "@turf/helpers": "^6.5.0", + "@turf/hex-grid": "^6.5.0", + "@turf/interpolate": "^6.5.0", + "@turf/intersect": "^6.5.0", + "@turf/invariant": "^6.5.0", + "@turf/isobands": "^6.5.0", + "@turf/isolines": "^6.5.0", + "@turf/kinks": "^6.5.0", + "@turf/length": "^6.5.0", + "@turf/line-arc": "^6.5.0", + "@turf/line-chunk": "^6.5.0", + "@turf/line-intersect": "^6.5.0", + "@turf/line-offset": "^6.5.0", + "@turf/line-overlap": "^6.5.0", + "@turf/line-segment": "^6.5.0", + "@turf/line-slice": "^6.5.0", + "@turf/line-slice-along": "^6.5.0", + "@turf/line-split": "^6.5.0", + "@turf/line-to-polygon": "^6.5.0", + "@turf/mask": "^6.5.0", + "@turf/meta": "^6.5.0", + "@turf/midpoint": "^6.5.0", + "@turf/moran-index": "^6.5.0", + "@turf/nearest-point": "^6.5.0", + "@turf/nearest-point-on-line": "^6.5.0", + "@turf/nearest-point-to-line": "^6.5.0", + "@turf/planepoint": "^6.5.0", + "@turf/point-grid": "^6.5.0", + "@turf/point-on-feature": "^6.5.0", + "@turf/point-to-line-distance": "^6.5.0", + "@turf/points-within-polygon": "^6.5.0", + "@turf/polygon-smooth": "^6.5.0", + "@turf/polygon-tangents": "^6.5.0", + "@turf/polygon-to-line": "^6.5.0", + "@turf/polygonize": "^6.5.0", + "@turf/projection": "^6.5.0", + "@turf/random": "^6.5.0", + "@turf/rewind": "^6.5.0", + "@turf/rhumb-bearing": "^6.5.0", + "@turf/rhumb-destination": "^6.5.0", + "@turf/rhumb-distance": "^6.5.0", + "@turf/sample": "^6.5.0", + "@turf/sector": "^6.5.0", + "@turf/shortest-path": "^6.5.0", + "@turf/simplify": "^6.5.0", + "@turf/square": "^6.5.0", + "@turf/square-grid": "^6.5.0", + "@turf/standard-deviational-ellipse": "^6.5.0", + "@turf/tag": "^6.5.0", + "@turf/tesselate": "^6.5.0", + "@turf/tin": "^6.5.0", + "@turf/transform-rotate": "^6.5.0", + "@turf/transform-scale": "^6.5.0", + "@turf/transform-translate": "^6.5.0", + "@turf/triangle-grid": "^6.5.0", + "@turf/truncate": "^6.5.0", + "@turf/union": "^6.5.0", + "@turf/unkink-polygon": "^6.5.0", + "@turf/voronoi": "^6.5.0" + }, + "funding": { + "url": "https://opencollective.com/turf" } }, "node_modules/@turf/union": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/@turf/union/-/union-6.3.0.tgz", - "integrity": "sha512-m8yh13Q5E0Y+YC10+iI/Qq0Txt7UmSIFByc7DfNVlMMGTceqLFa8xGwSVdFuB/d6MWwKuzKonQMl1PUx/Vd2Iw==", + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/union/-/union-6.5.0.tgz", + "integrity": "sha512-igYWCwP/f0RFHIlC2c0SKDuM/ObBaqSljI3IdV/x71805QbIvY/BYGcJdyNcgEA6cylIGl/0VSlIbpJHZ9ldhw==", "dependencies": { - "@turf/helpers": "^6.3.0", - "@turf/invariant": "^6.3.0", - "polygon-clipping": "^0.15.2" + "@turf/helpers": "^6.5.0", + "@turf/invariant": "^6.5.0", + "polygon-clipping": "^0.15.3" + }, + "funding": { + "url": "https://opencollective.com/turf" } }, - "node_modules/@turf/union/node_modules/polygon-clipping": { - "version": "0.15.3", - "resolved": "https://registry.npmjs.org/polygon-clipping/-/polygon-clipping-0.15.3.tgz", - "integrity": "sha512-ho0Xx5DLkgxRx/+n4O74XyJ67DcyN3Tu9bGYKsnTukGAW6ssnuak6Mwcyb1wHy9MZc9xsUWqIoiazkZB5weECg==", - "dependencies": { - "splaytree": "^3.1.0" - } - }, - "node_modules/@turf/union/node_modules/splaytree": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/splaytree/-/splaytree-3.1.0.tgz", - "integrity": "sha512-gvUGR7xnOy0fLKTCxDeUZYgU/I1Tdf8M/lM1Qrf8L2TIOR5ipZjGk02uYcdv0o2x7WjVRgpm3iS2clLyuVAt0Q==" - }, "node_modules/@turf/unkink-polygon": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/@turf/unkink-polygon/-/unkink-polygon-6.3.0.tgz", - "integrity": "sha512-XBUJkuDEr2R8cHpl+sHtV15J1S28/HCxhAHqfV+As3bTi81KhVhBK9EBwFGYCu9aerVgBK129FjRKXjnTYqtDw==", + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/unkink-polygon/-/unkink-polygon-6.5.0.tgz", + "integrity": "sha512-8QswkzC0UqKmN1DT6HpA9upfa1HdAA5n6bbuzHy8NJOX8oVizVAqfEPY0wqqTgboDjmBR4yyImsdPGUl3gZ8JQ==", "dependencies": { - "@turf/area": "^6.3.0", - "@turf/boolean-point-in-polygon": "^6.3.0", - "@turf/helpers": "^6.3.0", - "@turf/meta": "^6.3.0", + "@turf/area": "^6.5.0", + "@turf/boolean-point-in-polygon": "^6.5.0", + "@turf/helpers": "^6.5.0", + "@turf/meta": "^6.5.0", "rbush": "^2.0.1" + }, + "funding": { + "url": "https://opencollective.com/turf" } }, "node_modules/@turf/voronoi": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/@turf/voronoi/-/voronoi-6.3.0.tgz", - "integrity": "sha512-M0C6Kfo+qvKk4veRD7xW1PjMitJ0vqN6F4OOczxyX3tkj/oMyhWg+YbWk7mo/wKdSo9gCvHhnIVNkPsSSaFmyQ==", + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/voronoi/-/voronoi-6.5.0.tgz", + "integrity": "sha512-C/xUsywYX+7h1UyNqnydHXiun4UPjK88VDghtoRypR9cLlb7qozkiLRphQxxsCM0KxyxpVPHBVQXdAL3+Yurow==", "dependencies": { - "@turf/helpers": "^6.3.0", - "@turf/invariant": "^6.3.0", + "@turf/helpers": "^6.5.0", + "@turf/invariant": "^6.5.0", "d3-voronoi": "1.1.2" + }, + "funding": { + "url": "https://opencollective.com/turf" } }, "node_modules/@types/geojson": { - "version": "7946.0.7", - "resolved": "https://registry.npmjs.org/@types/geojson/-/geojson-7946.0.7.tgz", - "integrity": "sha512-wE2v81i4C4Ol09RtsWFAqg3BUitWbHSpSlIo+bNdsCJijO9sjme+zm+73ZMCa/qMC8UEERxzGbvmr1cffo2SiQ==" + "version": "7946.0.8", + "resolved": "https://registry.npmjs.org/@types/geojson/-/geojson-7946.0.8.tgz", + "integrity": "sha512-1rkryxURpr6aWP7R786/UQOkJ3PcpQiWkAXBmdWc7ryFWqN6a4xfK7BtjXvFBKO9LjQ+MWQSWxYeZX1OApnArA==" }, "node_modules/@types/jquery": { "version": "3.5.5", @@ -2979,14 +3237,6 @@ "@types/leaflet": "*" } }, - "node_modules/@types/leaflet.markercluster": { - "version": "1.4.4", - "resolved": "https://registry.npmjs.org/@types/leaflet.markercluster/-/leaflet.markercluster-1.4.4.tgz", - "integrity": "sha512-BQAilNWlBpYl4+PrsJXLOh4vyv7KfWi5kh3Fclg5y4gEeNeXKqhS6y1zzBB4+wcTuVUnMWfm2G0MfqA4yA5A5A==", - "dependencies": { - "@types/leaflet": "*" - } - }, "node_modules/@types/lz-string": { "version": "1.3.34", "resolved": "https://registry.npmjs.org/@types/lz-string/-/lz-string-1.3.34.tgz", @@ -2995,8 +3245,15 @@ "node_modules/@types/node": { "version": "7.10.14", "resolved": "https://registry.npmjs.org/@types/node/-/node-7.10.14.tgz", - "integrity": "sha512-29GS75BE8asnTno3yB6ubOJOO0FboExEqNJy4bpz0GSmW/8wPTNL4h9h63c6s1uTrOopCmJYe/4yJLh5r92ZUA==", - "dev": true + "integrity": "sha512-29GS75BE8asnTno3yB6ubOJOO0FboExEqNJy4bpz0GSmW/8wPTNL4h9h63c6s1uTrOopCmJYe/4yJLh5r92ZUA==" + }, + "node_modules/@types/papaparse": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/@types/papaparse/-/papaparse-5.3.1.tgz", + "integrity": "sha512-1lbngk9wty2kCyQB42LjqSa12SEop3t9wcEC7/xYr3ujTSTmv7HWKjKYXly0GkMfQ42PRb2lFPFEibDOiMXS0g==", + "dependencies": { + "@types/node": "*" + } }, "node_modules/@types/parse-json": { "version": "4.0.0", @@ -3045,6 +3302,14 @@ "wikidata-sdk": "*" } }, + "node_modules/@types/xml2js": { + "version": "0.4.9", + "resolved": "https://registry.npmjs.org/@types/xml2js/-/xml2js-0.4.9.tgz", + "integrity": "sha512-CHiCKIihl1pychwR2RNX5mAYmJDACgFVCMT5OArMaO3erzwXVcBqPcusr+Vl8yeeXukxZqtF8mZioqX+mpjjdw==", + "dependencies": { + "@types/node": "*" + } + }, "node_modules/abab": { "version": "2.0.5", "resolved": "https://registry.npmjs.org/abab/-/abab-2.0.5.tgz", @@ -3146,12 +3411,6 @@ "node": ">=0.4.0" } }, - "node_modules/adiff": { - "version": "0.2.13", - "resolved": "https://registry.npmjs.org/adiff/-/adiff-0.2.13.tgz", - "integrity": "sha1-3D3TL5RNl/J366WM5SmXrf8fdyg=", - "dev": true - }, "node_modules/affine-hull": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/affine-hull/-/affine-hull-1.0.0.tgz", @@ -3273,7 +3532,8 @@ "node_modules/arg": { "version": "4.1.3", "resolved": "https://registry.npmjs.org/arg/-/arg-4.1.3.tgz", - "integrity": "sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA==" + "integrity": "sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA==", + "devOptional": true }, "node_modules/argparse": { "version": "1.0.10", @@ -4189,6 +4449,19 @@ "fsevents": "~2.3.2" } }, + "node_modules/chokidar/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/chownr": { "version": "1.1.4", "resolved": "https://registry.npmjs.org/chownr/-/chownr-1.1.4.tgz", @@ -4393,6 +4666,14 @@ "simple-swizzle": "^0.2.2" } }, + "node_modules/colors": { + "version": "0.5.1", + "resolved": "https://registry.npmjs.org/colors/-/colors-0.5.1.tgz", + "integrity": "sha1-fQAj6usVTo7p/Oddy5I9DtFmd3Q=", + "engines": { + "node": ">=0.1.90" + } + }, "node_modules/combined-stream": { "version": "1.0.8", "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", @@ -4428,39 +4709,23 @@ "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": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/concaveman/-/concaveman-1.2.0.tgz", - "integrity": "sha512-OcqechF2/kubbffomKqjGEkb0ndlYhEbmyg/fxIGqdfYp5AZjD2Kl5hc97Hh3ngEuHU2314Z4KDbxL7qXGWrQQ==", + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/concaveman/-/concaveman-1.2.1.tgz", + "integrity": "sha512-PwZYKaM/ckQSa8peP5JpVr7IMJ4Nn/MHIaWUjP4be+KoZ7Botgs8seAZGpmaOM+UZXawcdYRao/px9ycrCihHw==", "dependencies": { - "point-in-polygon": "^1.0.1", - "rbush": "^3.0.0", + "point-in-polygon": "^1.1.0", + "rbush": "^3.0.1", "robust-predicates": "^2.0.4", "tinyqueue": "^2.0.3" } @@ -4529,7 +4794,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": { @@ -4632,7 +4897,8 @@ "node_modules/create-require": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/create-require/-/create-require-1.1.1.tgz", - "integrity": "sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ==" + "integrity": "sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ==", + "devOptional": true }, "node_modules/cross-spawn": { "version": "6.0.5", @@ -4699,13 +4965,12 @@ } }, "node_modules/css-declaration-sorter/node_modules/postcss": { - "version": "7.0.36", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.36.tgz", - "integrity": "sha512-BebJSIUMwJHRH0HAQoxN4u1CN86glsrwsW0q7T+/m44eXOUAxSNdHRkNZPYz5vVUbg17hFgOQDE7fZk7li3pZw==", + "version": "7.0.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", "dependencies": { - "chalk": "^2.4.2", - "source-map": "^0.6.1", - "supports-color": "^6.1.0" + "picocolors": "^0.2.1", + "source-map": "^0.6.1" }, "engines": { "node": ">=6.0.0" @@ -4723,17 +4988,6 @@ "node": ">=0.10.0" } }, - "node_modules/css-declaration-sorter/node_modules/supports-color": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", - "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", - "dependencies": { - "has-flag": "^3.0.0" - }, - "engines": { - "node": ">=6" - } - }, "node_modules/css-line-break": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/css-line-break/-/css-line-break-1.1.1.tgz", @@ -4974,13 +5228,12 @@ } }, "node_modules/cssnano-preset-default/node_modules/postcss": { - "version": "7.0.36", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.36.tgz", - "integrity": "sha512-BebJSIUMwJHRH0HAQoxN4u1CN86glsrwsW0q7T+/m44eXOUAxSNdHRkNZPYz5vVUbg17hFgOQDE7fZk7li3pZw==", + "version": "7.0.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", "dependencies": { - "chalk": "^2.4.2", - "source-map": "^0.6.1", - "supports-color": "^6.1.0" + "picocolors": "^0.2.1", + "source-map": "^0.6.1" }, "engines": { "node": ">=6.0.0" @@ -4998,17 +5251,6 @@ "node": ">=0.10.0" } }, - "node_modules/cssnano-preset-default/node_modules/supports-color": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", - "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", - "dependencies": { - "has-flag": "^3.0.0" - }, - "engines": { - "node": ">=6" - } - }, "node_modules/cssnano-util-get-arguments": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/cssnano-util-get-arguments/-/cssnano-util-get-arguments-4.0.0.tgz", @@ -5037,13 +5279,12 @@ } }, "node_modules/cssnano-util-raw-cache/node_modules/postcss": { - "version": "7.0.36", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.36.tgz", - "integrity": "sha512-BebJSIUMwJHRH0HAQoxN4u1CN86glsrwsW0q7T+/m44eXOUAxSNdHRkNZPYz5vVUbg17hFgOQDE7fZk7li3pZw==", + "version": "7.0.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", "dependencies": { - "chalk": "^2.4.2", - "source-map": "^0.6.1", - "supports-color": "^6.1.0" + "picocolors": "^0.2.1", + "source-map": "^0.6.1" }, "engines": { "node": ">=6.0.0" @@ -5061,17 +5302,6 @@ "node": ">=0.10.0" } }, - "node_modules/cssnano-util-raw-cache/node_modules/supports-color": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", - "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", - "dependencies": { - "has-flag": "^3.0.0" - }, - "engines": { - "node": ">=6" - } - }, "node_modules/cssnano-util-same-parent": { "version": "4.0.1", "resolved": "https://registry.npmjs.org/cssnano-util-same-parent/-/cssnano-util-same-parent-4.0.1.tgz", @@ -5081,13 +5311,12 @@ } }, "node_modules/cssnano/node_modules/postcss": { - "version": "7.0.36", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.36.tgz", - "integrity": "sha512-BebJSIUMwJHRH0HAQoxN4u1CN86glsrwsW0q7T+/m44eXOUAxSNdHRkNZPYz5vVUbg17hFgOQDE7fZk7li3pZw==", + "version": "7.0.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", "dependencies": { - "chalk": "^2.4.2", - "source-map": "^0.6.1", - "supports-color": "^6.1.0" + "picocolors": "^0.2.1", + "source-map": "^0.6.1" }, "engines": { "node": ">=6.0.0" @@ -5105,17 +5334,6 @@ "node": ">=0.10.0" } }, - "node_modules/cssnano/node_modules/supports-color": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", - "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", - "dependencies": { - "has-flag": "^3.0.0" - }, - "engines": { - "node": ">=6" - } - }, "node_modules/csso": { "version": "4.2.0", "resolved": "https://registry.npmjs.org/csso/-/csso-4.2.0.tgz", @@ -5664,15 +5882,6 @@ "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.0.4.tgz", "integrity": "sha1-l4hXRCxEdJ5CBmE+N5RiBYJqvYA=" }, - "node_modules/detect-indent": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/detect-indent/-/detect-indent-6.1.0.tgz", - "integrity": "sha512-reYkTUJAZb9gUuZ2RvVCNhVHdg62RHnJ7WJl8ftMi4diZ6NWlciOzQN88pUhSELEwflJht4oQDv0F0BMlwaYtA==", - "dev": true, - "engines": { - "node": ">=8" - } - }, "node_modules/detect-libc": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-1.0.3.tgz", @@ -6565,22 +6774,57 @@ "integrity": "sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==", "dev": true }, + "node_modules/fs-extra": { + "version": "0.8.1", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-0.8.1.tgz", + "integrity": "sha1-Dld5/7/t9RG8dVWVx/A8BtS0Po0=", + "dependencies": { + "jsonfile": "~1.1.0", + "mkdirp": "0.3.x", + "ncp": "~0.4.2", + "rimraf": "~2.2.0" + } + }, + "node_modules/fs-extra/node_modules/jsonfile": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-1.1.1.tgz", + "integrity": "sha1-2k/WrXfxolUgPqY8e8Mtwx72RDM=" + }, + "node_modules/fs-extra/node_modules/mkdirp": { + "version": "0.3.5", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.3.5.tgz", + "integrity": "sha1-3j5fiWHIjHh+4TaN+EmsRBPsqNc=", + "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.)" + }, + "node_modules/fs-extra/node_modules/rimraf": { + "version": "2.2.8", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.2.8.tgz", + "integrity": "sha1-5Dm+Kq7jJzIZUnMPmaiSnk/FBYI=", + "bin": { + "rimraf": "bin.js" + } + }, "node_modules/fs.realpath": { "version": "1.0.0", "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==", + "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": "^8.16.0 || ^10.6.0 || >=11.0.0" + "node": ">= 4.0" } }, "node_modules/function-bind": { @@ -6668,6 +6912,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", @@ -6677,14 +6948,28 @@ } }, "node_modules/geojson-rbush": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/geojson-rbush/-/geojson-rbush-3.1.2.tgz", - "integrity": "sha512-grkfdg3HIeTjwTfiJe5FT8+fGU3fABCc+vRJDBwdQz9kkLF0Sbif2gs2JUzjewwgmnvLGy9fInySDeADoNuk7w==", + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/geojson-rbush/-/geojson-rbush-3.2.0.tgz", + "integrity": "sha512-oVltQTXolxvsz1sZnutlSuLDEcQAKYC/uXt9zDzJJ6bu0W+baTI8LZBaTup5afzibEH4N3jlq2p+a152wlBJ7w==", "dependencies": { "@turf/bbox": "*", "@turf/helpers": "6.x", "@turf/meta": "6.x", - "rbush": "^2.0.0" + "@types/geojson": "7946.0.8", + "rbush": "^3.0.1" + } + }, + "node_modules/geojson-rbush/node_modules/quickselect": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/quickselect/-/quickselect-2.0.0.tgz", + "integrity": "sha512-RKJ22hX8mHe3Y6wH/N3wCM6BWtjaxIyyUIkpHOvfFnxdI4yD4tBXEBKSbriGujF6jnSVkJrffuo6vxACiSSxIw==" + }, + "node_modules/geojson-rbush/node_modules/rbush": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/rbush/-/rbush-3.0.1.tgz", + "integrity": "sha512-XRaVO0YecOpEuIvbhbpTrZgoiI6xBlz6hnlr6EHhd+0x9ase6EmeN+hdwwUaJvLcsFFQ8iWVF1GAK1yB0BWi0w==", + "dependencies": { + "quickselect": "^2.0.0" } }, "node_modules/get-caller-file": { @@ -6696,11 +6981,6 @@ "node": "6.* || 8.* || >= 10.*" } }, - "node_modules/get-closest": { - "version": "0.0.4", - "resolved": "https://registry.npmjs.org/get-closest/-/get-closest-0.0.4.tgz", - "integrity": "sha1-JprHdtHmAiqg/Vht1wjop9Miaa8=" - }, "node_modules/get-intrinsic": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.1.1.tgz", @@ -6759,22 +7039,6 @@ "assert-plus": "^1.0.0" } }, - "node_modules/git-json-merge": { - "version": "0.4.5", - "resolved": "https://registry.npmjs.org/git-json-merge/-/git-json-merge-0.4.5.tgz", - "integrity": "sha512-akVUhyzRtkXGe5uAcw3AijF/253RA7tAPdfHtKLawYAhDjuyP+Ebr1YvZUv+7Jyr41g+IVRpKPBd2h+m6AHNqQ==", - "dev": true, - "dependencies": { - "detect-indent": "^6.0.0", - "xdiff": "^0.2.11" - }, - "bin": { - "git-json-merge": "bin/git-json-merge" - }, - "engines": { - "node": ">=4" - } - }, "node_modules/github-from-package": { "version": "0.0.0", "resolved": "https://registry.npmjs.org/github-from-package/-/github-from-package-0.0.0.tgz", @@ -6838,11 +7102,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", @@ -7074,7 +7333,8 @@ "node_modules/hosted-git-info": { "version": "2.8.9", "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.9.tgz", - "integrity": "sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==" + "integrity": "sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==", + "dev": true }, "node_modules/hsl-regex": { "version": "1.0.0", @@ -7130,14 +7390,6 @@ "uncss": "^0.17.3" } }, - "node_modules/htmlnano/node_modules/commander": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/commander/-/commander-5.1.0.tgz", - "integrity": "sha512-P0CysNDQ7rtVw4QIQtm+MRxV66vKFSvlsQvGYXZWR3qFU0jlMKHZZZgw8e+8DSah4UDKMqnknRDQz+xuQXQ/Zg==", - "engines": { - "node": ">= 6" - } - }, "node_modules/htmlnano/node_modules/dom-serializer": { "version": "1.3.1", "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-1.3.1.tgz", @@ -7215,23 +7467,6 @@ "entities": "^2.0.0" } }, - "node_modules/htmlnano/node_modules/postcss": { - "version": "7.0.32", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.32.tgz", - "integrity": "sha512-03eXong5NLnNCD05xscnGKGDZ98CyzoqPSMjOe6SuoQY7Z2hIj0Ld1g/O/UQRuOle2aRtiIRDg9tDcTGAkLfKw==", - "dependencies": { - "chalk": "^2.4.2", - "source-map": "^0.6.1", - "supports-color": "^6.1.0" - }, - "engines": { - "node": ">=6.0.0" - }, - "funding": { - "type": "tidelift", - "url": "https://tidelift.com/funding/github/npm/postcss" - } - }, "node_modules/htmlnano/node_modules/posthtml": { "version": "0.15.2", "resolved": "https://registry.npmjs.org/posthtml/-/posthtml-0.15.2.tgz", @@ -7255,39 +7490,6 @@ "node": ">=10" } }, - "node_modules/htmlnano/node_modules/purgecss": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/purgecss/-/purgecss-2.3.0.tgz", - "integrity": "sha512-BE5CROfVGsx2XIhxGuZAT7rTH9lLeQx/6M0P7DTXQH4IUc3BBzs9JUzt4yzGf3JrH9enkeq6YJBe9CTtkm1WmQ==", - "dependencies": { - "commander": "^5.0.0", - "glob": "^7.0.0", - "postcss": "7.0.32", - "postcss-selector-parser": "^6.0.2" - }, - "bin": { - "purgecss": "bin/purgecss" - } - }, - "node_modules/htmlnano/node_modules/source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/htmlnano/node_modules/supports-color": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", - "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", - "dependencies": { - "has-flag": "^3.0.0" - }, - "engines": { - "node": ">=6" - } - }, "node_modules/htmlnano/node_modules/terser": { "version": "5.7.0", "resolved": "https://registry.npmjs.org/terser/-/terser-5.7.0.tgz", @@ -7435,6 +7637,14 @@ "resolved": "https://registry.npmjs.org/icss-replace-symbols/-/icss-replace-symbols-1.1.0.tgz", "integrity": "sha1-Bupvg2ead0njhs/h/oEq5dsiPe0=" }, + "node_modules/idb-keyval": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/idb-keyval/-/idb-keyval-6.0.3.tgz", + "integrity": "sha512-yh8V7CnE6EQMu9YDwQXhRxwZh4nv+8xm/HV4ZqK4IiYFJBWYGjJuykADJbSP+F/GDXUBwCSSNn/14IpGL81TuA==", + "dependencies": { + "safari-14-idb-fix": "^3.0.0" + } + }, "node_modules/ieee754": { "version": "1.2.1", "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz", @@ -8252,36 +8462,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", @@ -8411,9 +8591,9 @@ } }, "node_modules/jsdom/node_modules/ws": { - "version": "6.2.1", - "resolved": "https://registry.npmjs.org/ws/-/ws-6.2.1.tgz", - "integrity": "sha512-GIyAXC2cB7LjvpgMt9EKS2ldqr0MTrORaleiOno6TweZ6r3TKtoFQWay/2PceJ3RuBasOHzXNn5Lrw1X0bEjqA==", + "version": "6.2.2", + "resolved": "https://registry.npmjs.org/ws/-/ws-6.2.2.tgz", + "integrity": "sha512-zmhltoSR8u1cnDsD43TX59mzoMZsLKqUweyYBAIvTngR3shc0W6aOZylZmq/7hqyVxPdi+5Ud2QInblgyE72fw==", "dependencies": { "async-limiter": "~1.0.0" } @@ -8451,9 +8631,9 @@ "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==" }, "node_modules/json-schema": { - "version": "0.2.3", - "resolved": "https://registry.npmjs.org/json-schema/-/json-schema-0.2.3.tgz", - "integrity": "sha1-tIDIkuWaLwWVTOcnvT8qTogvnhM=" + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/json-schema/-/json-schema-0.4.0.tgz", + "integrity": "sha512-es94M3nTIfsEPisRafak+HDLfHXnKBhV3vU5eqPcS3flIWqcxJWgXHXiey3YrpaNsanY5ei1VoYEbOzijuq9BA==" }, "node_modules/json-schema-traverse": { "version": "0.4.1", @@ -8587,17 +8767,17 @@ } }, "node_modules/jsprim": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/jsprim/-/jsprim-1.4.1.tgz", - "integrity": "sha1-MT5mvB5cwG5Di8G3SZwuXFastqI=", - "engines": [ - "node >=0.6.0" - ], + "version": "1.4.2", + "resolved": "https://registry.npmjs.org/jsprim/-/jsprim-1.4.2.tgz", + "integrity": "sha512-P2bSOMAc/ciLz6DzgjVlGJP9+BrJWu5UDGK70C2iweC5QBIeFf0ZXRvGjEj2uYgrY2MkAAhsSWHDWlFtEroZWw==", "dependencies": { "assert-plus": "1.0.0", "extsprintf": "1.3.0", - "json-schema": "0.2.3", + "json-schema": "0.4.0", "verror": "1.10.0" + }, + "engines": { + "node": ">=0.6.0" } }, "node_modules/jsts": { @@ -8654,1506 +8834,15 @@ } }, "node_modules/latlon2country": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/latlon2country/-/latlon2country-1.1.3.tgz", - "integrity": "sha512-jk4xlaG7jkt4qPBZlhjUK60yo9qYs5LrAqf0hDTfHV6KXuR7qp84CgIq34Zm1xhH6PEQG4TknLWJrJWk23qNVA==", + "version": "1.2.6", + "resolved": "https://registry.npmjs.org/latlon2country/-/latlon2country-1.2.6.tgz", + "integrity": "sha512-cS5tMtnXYAsAJV5d/o6QqAJsyom1DEh4eIem+e/rauDhbNxhmmQKTiffrRY+NXAkgzH+hMVIwkgV5GZqLl1Y0g==", "dependencies": { "@turf/boolean-point-in-polygon": "^6.0.1", - "@turf/turf": "^5.1.6", - "@types/node": "^14.14.10", - "jquery": "^3.5.1", - "ts-node": "^9.1.1", + "@turf/turf": "^6.3.0", "turf": "^3.0.14" } }, - "node_modules/latlon2country/node_modules/@turf/along": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/along/-/along-5.1.5.tgz", - "integrity": "sha1-YdbmplhKzdq1asVYTge/jL5fi+s=", - "dependencies": { - "@turf/bearing": "^5.1.5", - "@turf/destination": "^5.1.5", - "@turf/distance": "^5.1.5", - "@turf/helpers": "^5.1.5" - } - }, - "node_modules/latlon2country/node_modules/@turf/area": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/area/-/area-5.1.5.tgz", - "integrity": "sha1-79iZv9Jgzb0VQbKjwVX4pdLu+h0=", - "dependencies": { - "@turf/helpers": "^5.1.5", - "@turf/meta": "^5.1.5" - } - }, - "node_modules/latlon2country/node_modules/@turf/bbox": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/bbox/-/bbox-5.1.5.tgz", - "integrity": "sha1-MFHfUUrUxQ9KT5uKLRX9i2hA7aM=", - "dependencies": { - "@turf/helpers": "^5.1.5", - "@turf/meta": "^5.1.5" - } - }, - "node_modules/latlon2country/node_modules/@turf/bbox-clip": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/bbox-clip/-/bbox-clip-5.1.5.tgz", - "integrity": "sha1-M2S1Mo3/nzz0HZ4C7a/zdNFQzIQ=", - "dependencies": { - "@turf/helpers": "^5.1.5", - "@turf/invariant": "^5.1.5", - "lineclip": "^1.1.5" - } - }, - "node_modules/latlon2country/node_modules/@turf/bbox-polygon": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/bbox-polygon/-/bbox-polygon-5.1.5.tgz", - "integrity": "sha1-auuk7VHYXSluD3w4uIwznwHu4CQ=", - "dependencies": { - "@turf/helpers": "^5.1.5" - } - }, - "node_modules/latlon2country/node_modules/@turf/bearing": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/bearing/-/bearing-5.1.5.tgz", - "integrity": "sha1-egt5ATbE70eX8CRjBdRcvi0ns/c=", - "dependencies": { - "@turf/helpers": "^5.1.5", - "@turf/invariant": "^5.1.5" - } - }, - "node_modules/latlon2country/node_modules/@turf/bezier-spline": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/bezier-spline/-/bezier-spline-5.1.5.tgz", - "integrity": "sha1-WaJ7ul17l+8Vqz/VpA+9I4cEm8o=", - "dependencies": { - "@turf/helpers": "^5.1.5", - "@turf/invariant": "^5.1.5" - } - }, - "node_modules/latlon2country/node_modules/@turf/boolean-clockwise": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/boolean-clockwise/-/boolean-clockwise-5.1.5.tgz", - "integrity": "sha1-MwK32sYsXikaB4nimvcoM4f6nes=", - "dependencies": { - "@turf/helpers": "^5.1.5", - "@turf/invariant": "^5.1.5" - } - }, - "node_modules/latlon2country/node_modules/@turf/boolean-contains": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/boolean-contains/-/boolean-contains-5.1.5.tgz", - "integrity": "sha1-WW1jruY2961T7pn5/yTJaZSg7xQ=", - "dependencies": { - "@turf/bbox": "^5.1.5", - "@turf/boolean-point-in-polygon": "^5.1.5", - "@turf/boolean-point-on-line": "^5.1.5", - "@turf/helpers": "^5.1.5", - "@turf/invariant": "^5.1.5" - } - }, - "node_modules/latlon2country/node_modules/@turf/boolean-contains/node_modules/@turf/boolean-point-in-polygon": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/boolean-point-in-polygon/-/boolean-point-in-polygon-5.1.5.tgz", - "integrity": "sha1-8BzBlNHgMKVIv9qYHLpDz9YpQbc=", - "dependencies": { - "@turf/helpers": "^5.1.5", - "@turf/invariant": "^5.1.5" - } - }, - "node_modules/latlon2country/node_modules/@turf/boolean-crosses": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/boolean-crosses/-/boolean-crosses-5.1.5.tgz", - "integrity": "sha1-Ab+uollvFk3kpNMlCU3HwlXHFdY=", - "dependencies": { - "@turf/boolean-point-in-polygon": "^5.1.5", - "@turf/helpers": "^5.1.5", - "@turf/invariant": "^5.1.5", - "@turf/line-intersect": "^5.1.5", - "@turf/polygon-to-line": "^5.1.5" - } - }, - "node_modules/latlon2country/node_modules/@turf/boolean-crosses/node_modules/@turf/boolean-point-in-polygon": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/boolean-point-in-polygon/-/boolean-point-in-polygon-5.1.5.tgz", - "integrity": "sha1-8BzBlNHgMKVIv9qYHLpDz9YpQbc=", - "dependencies": { - "@turf/helpers": "^5.1.5", - "@turf/invariant": "^5.1.5" - } - }, - "node_modules/latlon2country/node_modules/@turf/boolean-disjoint": { - "version": "5.1.6", - "resolved": "https://registry.npmjs.org/@turf/boolean-disjoint/-/boolean-disjoint-5.1.6.tgz", - "integrity": "sha512-KHvUS6SBNYHBCLIJEJrg04pF5Oy+Fqn8V5G9U+9pti5vI9tyX7Ln2g7RSB7iJ1Cxsz8QAi6OukhXjEF2/8ZpGg==", - "dependencies": { - "@turf/boolean-point-in-polygon": "^5.1.5", - "@turf/helpers": "^5.1.5", - "@turf/line-intersect": "^5.1.5", - "@turf/meta": "^5.1.5", - "@turf/polygon-to-line": "^5.1.5" - } - }, - "node_modules/latlon2country/node_modules/@turf/boolean-disjoint/node_modules/@turf/boolean-point-in-polygon": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/boolean-point-in-polygon/-/boolean-point-in-polygon-5.1.5.tgz", - "integrity": "sha1-8BzBlNHgMKVIv9qYHLpDz9YpQbc=", - "dependencies": { - "@turf/helpers": "^5.1.5", - "@turf/invariant": "^5.1.5" - } - }, - "node_modules/latlon2country/node_modules/@turf/boolean-equal": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/boolean-equal/-/boolean-equal-5.1.5.tgz", - "integrity": "sha1-Kfj21gu4RQff12WzIlTbjnLJOKQ=", - "dependencies": { - "@turf/clean-coords": "^5.1.5", - "@turf/helpers": "^5.1.5", - "@turf/invariant": "^5.1.5", - "geojson-equality": "0.1.6" - } - }, - "node_modules/latlon2country/node_modules/@turf/boolean-overlap": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/boolean-overlap/-/boolean-overlap-5.1.5.tgz", - "integrity": "sha1-DU5kxSx3CijpPZ7834qLg3OsznU=", - "dependencies": { - "@turf/helpers": "^5.1.5", - "@turf/invariant": "^5.1.5", - "@turf/line-intersect": "^5.1.5", - "@turf/line-overlap": "^5.1.5", - "@turf/meta": "^5.1.5", - "geojson-equality": "0.1.6" - } - }, - "node_modules/latlon2country/node_modules/@turf/boolean-parallel": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/boolean-parallel/-/boolean-parallel-5.1.5.tgz", - "integrity": "sha1-c5NYR16ltlx+GCejw+DopofTqF0=", - "dependencies": { - "@turf/clean-coords": "^5.1.5", - "@turf/helpers": "^5.1.5", - "@turf/line-segment": "^5.1.5", - "@turf/rhumb-bearing": "^5.1.5" - } - }, - "node_modules/latlon2country/node_modules/@turf/boolean-point-on-line": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/boolean-point-on-line/-/boolean-point-on-line-5.1.5.tgz", - "integrity": "sha1-9jPF/4Aq0ku48Vja269v9KAj3Xs=", - "dependencies": { - "@turf/helpers": "^5.1.5", - "@turf/invariant": "^5.1.5" - } - }, - "node_modules/latlon2country/node_modules/@turf/boolean-within": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/boolean-within/-/boolean-within-5.1.5.tgz", - "integrity": "sha1-RxBdVtB1Kp0Pv81Dw2pfkUnchpc=", - "dependencies": { - "@turf/bbox": "^5.1.5", - "@turf/boolean-point-in-polygon": "^5.1.5", - "@turf/boolean-point-on-line": "^5.1.5", - "@turf/helpers": "^5.1.5", - "@turf/invariant": "^5.1.5" - } - }, - "node_modules/latlon2country/node_modules/@turf/boolean-within/node_modules/@turf/boolean-point-in-polygon": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/boolean-point-in-polygon/-/boolean-point-in-polygon-5.1.5.tgz", - "integrity": "sha1-8BzBlNHgMKVIv9qYHLpDz9YpQbc=", - "dependencies": { - "@turf/helpers": "^5.1.5", - "@turf/invariant": "^5.1.5" - } - }, - "node_modules/latlon2country/node_modules/@turf/buffer": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/buffer/-/buffer-5.1.5.tgz", - "integrity": "sha1-hByWJ8+5dLEirE4alW8EZrwCMcQ=", - "dependencies": { - "@turf/bbox": "^5.1.5", - "@turf/center": "^5.1.5", - "@turf/helpers": "^5.1.5", - "@turf/meta": "^5.1.5", - "@turf/projection": "^5.1.5", - "d3-geo": "1.7.1", - "turf-jsts": "*" - } - }, - "node_modules/latlon2country/node_modules/@turf/center": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/center/-/center-5.1.5.tgz", - "integrity": "sha1-RKss2VT2PA03dX9xWKmcPvURS4A=", - "dependencies": { - "@turf/bbox": "^5.1.5", - "@turf/helpers": "^5.1.5" - } - }, - "node_modules/latlon2country/node_modules/@turf/center-mean": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/center-mean/-/center-mean-5.1.5.tgz", - "integrity": "sha1-jI6YdTkeXwnw5uePXWYbiLIQigo=", - "dependencies": { - "@turf/bbox": "^5.1.5", - "@turf/helpers": "^5.1.5", - "@turf/meta": "^5.1.5" - } - }, - "node_modules/latlon2country/node_modules/@turf/center-median": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/center-median/-/center-median-5.1.5.tgz", - "integrity": "sha1-u0Yb/noqSGAdikcnaFcYcjoUqHI=", - "dependencies": { - "@turf/center-mean": "^5.1.5", - "@turf/centroid": "^5.1.5", - "@turf/distance": "^5.1.5", - "@turf/helpers": "^5.1.5", - "@turf/meta": "^5.1.5" - } - }, - "node_modules/latlon2country/node_modules/@turf/center-of-mass": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/center-of-mass/-/center-of-mass-5.1.5.tgz", - "integrity": "sha1-TTvXnYhJjbq4Mk1PafAyL2Uguco=", - "dependencies": { - "@turf/centroid": "^5.1.5", - "@turf/convex": "^5.1.5", - "@turf/helpers": "^5.1.5", - "@turf/invariant": "^5.1.5", - "@turf/meta": "^5.1.5" - } - }, - "node_modules/latlon2country/node_modules/@turf/centroid": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/centroid/-/centroid-5.1.5.tgz", - "integrity": "sha1-d4radCFjNQIa2P0OemWoNJ1Tx2k=", - "dependencies": { - "@turf/helpers": "^5.1.5", - "@turf/meta": "^5.1.5" - } - }, - "node_modules/latlon2country/node_modules/@turf/circle": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/circle/-/circle-5.1.5.tgz", - "integrity": "sha1-mxV3g1UIq1L7HBCypQZcuiuHtqU=", - "dependencies": { - "@turf/destination": "^5.1.5", - "@turf/helpers": "^5.1.5" - } - }, - "node_modules/latlon2country/node_modules/@turf/clean-coords": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/clean-coords/-/clean-coords-5.1.5.tgz", - "integrity": "sha1-EoAKmKeMmkUqcuxChJPEOs8q2h8=", - "dependencies": { - "@turf/helpers": "^5.1.5", - "@turf/invariant": "^5.1.5" - } - }, - "node_modules/latlon2country/node_modules/@turf/clone": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/clone/-/clone-5.1.5.tgz", - "integrity": "sha1-JT6NNUdxgZduM636tQoPAqfw42c=", - "dependencies": { - "@turf/helpers": "^5.1.5" - } - }, - "node_modules/latlon2country/node_modules/@turf/clusters": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/clusters/-/clusters-5.1.5.tgz", - "integrity": "sha1-ZzpeXxsZycq6vFfJCO6t1oIiTdQ=", - "dependencies": { - "@turf/helpers": "^5.1.5", - "@turf/meta": "^5.1.5" - } - }, - "node_modules/latlon2country/node_modules/@turf/clusters-dbscan": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/clusters-dbscan/-/clusters-dbscan-5.1.5.tgz", - "integrity": "sha1-V4H7TmVsdHoLjpk333MYHAMJ4m8=", - "dependencies": { - "@turf/clone": "^5.1.5", - "@turf/distance": "^5.1.5", - "@turf/helpers": "^5.1.5", - "@turf/invariant": "^5.1.5", - "@turf/meta": "^5.1.5", - "density-clustering": "1.3.0" - } - }, - "node_modules/latlon2country/node_modules/@turf/clusters-kmeans": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/clusters-kmeans/-/clusters-kmeans-5.1.5.tgz", - "integrity": "sha1-/W3+qLEzuovcI3CsPKzuFYejAvE=", - "dependencies": { - "@turf/clone": "^5.1.5", - "@turf/helpers": "^5.1.5", - "@turf/invariant": "^5.1.5", - "@turf/meta": "^5.1.5", - "skmeans": "0.9.7" - } - }, - "node_modules/latlon2country/node_modules/@turf/collect": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/collect/-/collect-5.1.5.tgz", - "integrity": "sha1-/pjJqMIY7PJP/DPXApUXt8GbKj4=", - "dependencies": { - "@turf/bbox": "^5.1.5", - "@turf/boolean-point-in-polygon": "^5.1.5", - "@turf/helpers": "^5.1.5", - "rbush": "^2.0.1" - } - }, - "node_modules/latlon2country/node_modules/@turf/collect/node_modules/@turf/boolean-point-in-polygon": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/boolean-point-in-polygon/-/boolean-point-in-polygon-5.1.5.tgz", - "integrity": "sha1-8BzBlNHgMKVIv9qYHLpDz9YpQbc=", - "dependencies": { - "@turf/helpers": "^5.1.5", - "@turf/invariant": "^5.1.5" - } - }, - "node_modules/latlon2country/node_modules/@turf/combine": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/combine/-/combine-5.1.5.tgz", - "integrity": "sha1-uxS976VVBDVxlfwaEkzX1TqMiQU=", - "dependencies": { - "@turf/helpers": "^5.1.5", - "@turf/meta": "^5.1.5" - } - }, - "node_modules/latlon2country/node_modules/@turf/concave": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/concave/-/concave-5.1.5.tgz", - "integrity": "sha1-I7uqw4fQNLlldKG9cNBZI3qdIRA=", - "dependencies": { - "@turf/clone": "^5.1.5", - "@turf/distance": "^5.1.5", - "@turf/helpers": "^5.1.5", - "@turf/invariant": "^5.1.5", - "@turf/meta": "^5.1.5", - "@turf/tin": "^5.1.5", - "topojson-client": "3.x", - "topojson-server": "3.x" - } - }, - "node_modules/latlon2country/node_modules/@turf/convex": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/convex/-/convex-5.1.5.tgz", - "integrity": "sha1-Dfk3fdACIWzpghsH9wXgN9rj4B0=", - "dependencies": { - "@turf/helpers": "^5.1.5", - "@turf/meta": "^5.1.5", - "concaveman": "*" - } - }, - "node_modules/latlon2country/node_modules/@turf/destination": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/destination/-/destination-5.1.5.tgz", - "integrity": "sha1-7TU4G9zoO73cvQei4rzivd/7zCY=", - "dependencies": { - "@turf/helpers": "^5.1.5", - "@turf/invariant": "^5.1.5" - } - }, - "node_modules/latlon2country/node_modules/@turf/difference": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/difference/-/difference-5.1.5.tgz", - "integrity": "sha1-ok1pCnvKgD8QkKnuO52Qb8Q3H0I=", - "dependencies": { - "@turf/area": "^5.1.5", - "@turf/helpers": "^5.1.5", - "@turf/invariant": "^5.1.5", - "@turf/meta": "^5.1.5", - "turf-jsts": "*" - } - }, - "node_modules/latlon2country/node_modules/@turf/dissolve": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/dissolve/-/dissolve-5.1.5.tgz", - "integrity": "sha1-LPEzqQIdIWODHD16lY1lB/nYGTg=", - "dependencies": { - "@turf/boolean-overlap": "^5.1.5", - "@turf/clone": "^5.1.5", - "@turf/helpers": "^5.1.5", - "@turf/invariant": "^5.1.5", - "@turf/line-intersect": "^5.1.5", - "@turf/meta": "^5.1.5", - "@turf/union": "^5.1.5", - "geojson-rbush": "2.1.0", - "get-closest": "*" - } - }, - "node_modules/latlon2country/node_modules/@turf/distance": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/distance/-/distance-5.1.5.tgz", - "integrity": "sha1-Oc8YIEu/h1h9cH5gmmARiQkVZAk=", - "dependencies": { - "@turf/helpers": "^5.1.5", - "@turf/invariant": "^5.1.5" - } - }, - "node_modules/latlon2country/node_modules/@turf/ellipse": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/ellipse/-/ellipse-5.1.5.tgz", - "integrity": "sha1-1XyrhTmFkgzeYCKKeNgEWAJcVL4=", - "dependencies": { - "@turf/helpers": "^5.1.5", - "@turf/invariant": "^5.1.5", - "@turf/rhumb-destination": "^5.1.5", - "@turf/transform-rotate": "^5.1.5" - } - }, - "node_modules/latlon2country/node_modules/@turf/envelope": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/envelope/-/envelope-5.1.5.tgz", - "integrity": "sha1-UBMwnFP91D369LWIplw/7X28EIo=", - "dependencies": { - "@turf/bbox": "^5.1.5", - "@turf/bbox-polygon": "^5.1.5", - "@turf/helpers": "^5.1.5" - } - }, - "node_modules/latlon2country/node_modules/@turf/explode": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/explode/-/explode-5.1.5.tgz", - "integrity": "sha1-sSsvd0AEobSPYrqVsgocZVo94Rg=", - "dependencies": { - "@turf/helpers": "^5.1.5", - "@turf/meta": "^5.1.5" - } - }, - "node_modules/latlon2country/node_modules/@turf/flatten": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/flatten/-/flatten-5.1.5.tgz", - "integrity": "sha1-2iknBnEz7WFpsLnWB7khVoiqE1g=", - "dependencies": { - "@turf/helpers": "^5.1.5", - "@turf/meta": "^5.1.5" - } - }, - "node_modules/latlon2country/node_modules/@turf/flip": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/flip/-/flip-5.1.5.tgz", - "integrity": "sha1-Q29kOnIvDKU7n85jjkaT2zYIpoo=", - "dependencies": { - "@turf/clone": "^5.1.5", - "@turf/helpers": "^5.1.5", - "@turf/meta": "^5.1.5" - } - }, - "node_modules/latlon2country/node_modules/@turf/great-circle": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/great-circle/-/great-circle-5.1.5.tgz", - "integrity": "sha1-3r+2cc5HVQnLY3MBwV/PzPo1mpM=", - "dependencies": { - "@turf/helpers": "^5.1.5", - "@turf/invariant": "^5.1.5" - } - }, - "node_modules/latlon2country/node_modules/@turf/helpers": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/helpers/-/helpers-5.1.5.tgz", - "integrity": "sha1-FTQFInq5M9AEpbuWQantmZ/L4M8=" - }, - "node_modules/latlon2country/node_modules/@turf/hex-grid": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/hex-grid/-/hex-grid-5.1.5.tgz", - "integrity": "sha1-m3ul/s9QUfHoWJL3E/zlxVBQKmo=", - "dependencies": { - "@turf/distance": "^5.1.5", - "@turf/helpers": "^5.1.5", - "@turf/intersect": "^5.1.5", - "@turf/invariant": "^5.1.5" - } - }, - "node_modules/latlon2country/node_modules/@turf/interpolate": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/interpolate/-/interpolate-5.1.5.tgz", - "integrity": "sha1-DxLwq3VtbdEK+ykMpuh3ve8BPqo=", - "dependencies": { - "@turf/bbox": "^5.1.5", - "@turf/centroid": "^5.1.5", - "@turf/clone": "^5.1.5", - "@turf/distance": "^5.1.5", - "@turf/helpers": "^5.1.5", - "@turf/hex-grid": "^5.1.5", - "@turf/invariant": "^5.1.5", - "@turf/meta": "^5.1.5", - "@turf/point-grid": "^5.1.5", - "@turf/square-grid": "^5.1.5", - "@turf/triangle-grid": "^5.1.5" - } - }, - "node_modules/latlon2country/node_modules/@turf/intersect": { - "version": "5.1.6", - "resolved": "https://registry.npmjs.org/@turf/intersect/-/intersect-5.1.6.tgz", - "integrity": "sha512-KXyNv/GXdoGAOy03qZF53rgtXC2tNhF/4jLwTKiVRrBQH6kcEpipGStdJ+QkYIlarQPa8f7I9UlVAB19et4MfQ==", - "dependencies": { - "@turf/clean-coords": "^5.1.5", - "@turf/helpers": "^5.1.5", - "@turf/invariant": "^5.1.5", - "@turf/truncate": "^5.1.5", - "turf-jsts": "*" - } - }, - "node_modules/latlon2country/node_modules/@turf/invariant": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/invariant/-/invariant-5.1.5.tgz", - "integrity": "sha1-9Z9P76CSJLFdzhZR+QPIaNV6JOE=", - "dependencies": { - "@turf/helpers": "^5.1.5" - } - }, - "node_modules/latlon2country/node_modules/@turf/isobands": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/isobands/-/isobands-5.1.5.tgz", - "integrity": "sha1-a0TO9YTVUaMTBBh68jtKFYLj8I0=", - "dependencies": { - "@turf/area": "^5.1.5", - "@turf/bbox": "^5.1.5", - "@turf/boolean-point-in-polygon": "^5.1.5", - "@turf/explode": "^5.1.5", - "@turf/helpers": "^5.1.5", - "@turf/invariant": "^5.1.5", - "@turf/meta": "^5.1.5" - } - }, - "node_modules/latlon2country/node_modules/@turf/isobands/node_modules/@turf/boolean-point-in-polygon": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/boolean-point-in-polygon/-/boolean-point-in-polygon-5.1.5.tgz", - "integrity": "sha1-8BzBlNHgMKVIv9qYHLpDz9YpQbc=", - "dependencies": { - "@turf/helpers": "^5.1.5", - "@turf/invariant": "^5.1.5" - } - }, - "node_modules/latlon2country/node_modules/@turf/isolines": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/isolines/-/isolines-5.1.5.tgz", - "integrity": "sha1-irTn9Cuz38VGFOW/FVln9+VdLeE=", - "dependencies": { - "@turf/bbox": "^5.1.5", - "@turf/helpers": "^5.1.5", - "@turf/invariant": "^5.1.5", - "@turf/meta": "^5.1.5" - } - }, - "node_modules/latlon2country/node_modules/@turf/kinks": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/kinks/-/kinks-5.1.5.tgz", - "integrity": "sha1-irtpYdm7AQchO63fLCwmQNAlaYA=", - "dependencies": { - "@turf/helpers": "^5.1.5" - } - }, - "node_modules/latlon2country/node_modules/@turf/length": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/length/-/length-5.1.5.tgz", - "integrity": "sha1-86X4ZMK5lqi7RxeUU1ofrxLuvvs=", - "dependencies": { - "@turf/distance": "^5.1.5", - "@turf/helpers": "^5.1.5", - "@turf/meta": "^5.1.5" - } - }, - "node_modules/latlon2country/node_modules/@turf/line-arc": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/line-arc/-/line-arc-5.1.5.tgz", - "integrity": "sha1-AHinRHg1oSrkFKIR+aZNEYYVDhU=", - "dependencies": { - "@turf/circle": "^5.1.5", - "@turf/destination": "^5.1.5", - "@turf/helpers": "^5.1.5" - } - }, - "node_modules/latlon2country/node_modules/@turf/line-chunk": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/line-chunk/-/line-chunk-5.1.5.tgz", - "integrity": "sha1-kQqFwFwG2dD5w4l3oF4IGNUIXEI=", - "dependencies": { - "@turf/helpers": "^5.1.5", - "@turf/length": "^5.1.5", - "@turf/line-slice-along": "^5.1.5", - "@turf/meta": "^5.1.5" - } - }, - "node_modules/latlon2country/node_modules/@turf/line-intersect": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/line-intersect/-/line-intersect-5.1.5.tgz", - "integrity": "sha1-DikHGuQDKV5JFyO8SfXPrI0R3fM=", - "dependencies": { - "@turf/helpers": "^5.1.5", - "@turf/invariant": "^5.1.5", - "@turf/line-segment": "^5.1.5", - "@turf/meta": "^5.1.5", - "geojson-rbush": "2.1.0" - } - }, - "node_modules/latlon2country/node_modules/@turf/line-offset": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/line-offset/-/line-offset-5.1.5.tgz", - "integrity": "sha1-KrWy8In4yRPiMdmUN4553KkLWh4=", - "dependencies": { - "@turf/helpers": "^5.1.5", - "@turf/invariant": "^5.1.5", - "@turf/meta": "^5.1.5" - } - }, - "node_modules/latlon2country/node_modules/@turf/line-overlap": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/line-overlap/-/line-overlap-5.1.5.tgz", - "integrity": "sha1-lDxvh6A4bcQ9+sEdKz/5wRLNP2A=", - "dependencies": { - "@turf/boolean-point-on-line": "^5.1.5", - "@turf/helpers": "^5.1.5", - "@turf/invariant": "^5.1.5", - "@turf/line-segment": "^5.1.5", - "@turf/meta": "^5.1.5", - "@turf/nearest-point-on-line": "^5.1.5", - "geojson-rbush": "2.1.0" - } - }, - "node_modules/latlon2country/node_modules/@turf/line-segment": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/line-segment/-/line-segment-5.1.5.tgz", - "integrity": "sha1-Mgeq7lRqskw9jcPMY/kcdwuAE+U=", - "dependencies": { - "@turf/helpers": "^5.1.5", - "@turf/invariant": "^5.1.5", - "@turf/meta": "^5.1.5" - } - }, - "node_modules/latlon2country/node_modules/@turf/line-slice": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/line-slice/-/line-slice-5.1.5.tgz", - "integrity": "sha1-Hs/OFGKjeFeXVM7fRGTN4mgp8rU=", - "dependencies": { - "@turf/helpers": "^5.1.5", - "@turf/invariant": "^5.1.5", - "@turf/nearest-point-on-line": "^5.1.5" - } - }, - "node_modules/latlon2country/node_modules/@turf/line-slice-along": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/line-slice-along/-/line-slice-along-5.1.5.tgz", - "integrity": "sha1-7drQoh70efKWihG9LdcomiEy6aU=", - "dependencies": { - "@turf/bearing": "^5.1.5", - "@turf/destination": "^5.1.5", - "@turf/distance": "^5.1.5", - "@turf/helpers": "^5.1.5" - } - }, - "node_modules/latlon2country/node_modules/@turf/line-split": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/line-split/-/line-split-5.1.5.tgz", - "integrity": "sha1-Wy30w3YZty73JbUWPPmSbVVArLc=", - "dependencies": { - "@turf/bbox": "^5.1.5", - "@turf/helpers": "^5.1.5", - "@turf/invariant": "^5.1.5", - "@turf/line-intersect": "^5.1.5", - "@turf/line-segment": "^5.1.5", - "@turf/meta": "^5.1.5", - "@turf/nearest-point-on-line": "^5.1.5", - "@turf/square": "^5.1.5", - "@turf/truncate": "^5.1.5", - "geojson-rbush": "2.1.0" - } - }, - "node_modules/latlon2country/node_modules/@turf/line-to-polygon": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/line-to-polygon/-/line-to-polygon-5.1.5.tgz", - "integrity": "sha1-ITz0Gmj4Ikd4ujnTGH3sPouBhlo=", - "dependencies": { - "@turf/bbox": "^5.1.5", - "@turf/helpers": "^5.1.5", - "@turf/invariant": "^5.1.5" - } - }, - "node_modules/latlon2country/node_modules/@turf/mask": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/mask/-/mask-5.1.5.tgz", - "integrity": "sha1-mrD+8aJyyY/j70kvn/thggayQtU=", - "dependencies": { - "@turf/bbox": "^5.1.5", - "@turf/helpers": "^5.1.5", - "@turf/meta": "^5.1.5", - "@turf/union": "^5.1.5", - "rbush": "^2.0.1" - } - }, - "node_modules/latlon2country/node_modules/@turf/meta": { - "version": "5.1.6", - "resolved": "https://registry.npmjs.org/@turf/meta/-/meta-5.1.6.tgz", - "integrity": "sha1-wgqGPt7Qhp+yhUje6Ik0G8y0akY=", - "dependencies": { - "@turf/helpers": "^5.1.5" - } - }, - "node_modules/latlon2country/node_modules/@turf/midpoint": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/midpoint/-/midpoint-5.1.5.tgz", - "integrity": "sha1-4mH2srDqgSTM7/VSomLdRlydBfA=", - "dependencies": { - "@turf/bearing": "^5.1.5", - "@turf/destination": "^5.1.5", - "@turf/distance": "^5.1.5", - "@turf/helpers": "^5.1.5" - } - }, - "node_modules/latlon2country/node_modules/@turf/nearest-point": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/nearest-point/-/nearest-point-5.1.5.tgz", - "integrity": "sha1-EgUN5Bw5hEMiTHl43g9iE5ANNPs=", - "dependencies": { - "@turf/clone": "^5.1.5", - "@turf/distance": "^5.1.5", - "@turf/helpers": "^5.1.5", - "@turf/meta": "^5.1.5" - } - }, - "node_modules/latlon2country/node_modules/@turf/nearest-point-on-line": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/nearest-point-on-line/-/nearest-point-on-line-5.1.5.tgz", - "integrity": "sha1-VgauKX8VlHUkvqUaKp71HsG/nDY=", - "dependencies": { - "@turf/bearing": "^5.1.5", - "@turf/destination": "^5.1.5", - "@turf/distance": "^5.1.5", - "@turf/helpers": "^5.1.5", - "@turf/invariant": "^5.1.5", - "@turf/line-intersect": "^5.1.5", - "@turf/meta": "^5.1.5" - } - }, - "node_modules/latlon2country/node_modules/@turf/nearest-point-to-line": { - "version": "5.1.6", - "resolved": "https://registry.npmjs.org/@turf/nearest-point-to-line/-/nearest-point-to-line-5.1.6.tgz", - "integrity": "sha512-ZSvDIEiHhifn/vNwLXZI/E8xmEz5yBPqfUR7BVHRZrB1cP7jLhKZvkbidjG//uW8Fr1Ulc+PFOXczLspIcx/lw==", - "dependencies": { - "@turf/helpers": "6.x", - "@turf/invariant": "6.x", - "@turf/meta": "6.x", - "@turf/point-to-line-distance": "^5.1.5", - "object-assign": "*" - } - }, - "node_modules/latlon2country/node_modules/@turf/nearest-point-to-line/node_modules/@turf/helpers": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/@turf/helpers/-/helpers-6.3.0.tgz", - "integrity": "sha512-kr6KuD4Z0GZ30tblTEvi90rvvVNlKieXuMC8CTzE/rVQb0/f/Cb29zCXxTD7giQTEQY/P2nRW23wEqqyNHulCg==" - }, - "node_modules/latlon2country/node_modules/@turf/nearest-point-to-line/node_modules/@turf/invariant": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/@turf/invariant/-/invariant-6.3.0.tgz", - "integrity": "sha512-2OFOi9p+QOrcIMySEnr+WlOiKaFZ1bY56jA98YyECewJHfhPFWUBZEhc4nWGRT0ahK08Vus9+gcuBX8QIpCIIw==", - "dependencies": { - "@turf/helpers": "^6.3.0" - } - }, - "node_modules/latlon2country/node_modules/@turf/nearest-point-to-line/node_modules/@turf/meta": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/@turf/meta/-/meta-6.3.0.tgz", - "integrity": "sha512-qBJjaAJS9H3ap0HlGXyF/Bzfl0qkA9suafX/jnDsZvWMfVLt+s+o6twKrXOGk5t7nnNON2NFRC8+czxpu104EQ==", - "dependencies": { - "@turf/helpers": "^6.3.0" - } - }, - "node_modules/latlon2country/node_modules/@turf/planepoint": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/planepoint/-/planepoint-5.1.5.tgz", - "integrity": "sha1-GLvfAG91ne9eQsagBsn53oGyt/8=", - "dependencies": { - "@turf/helpers": "^5.1.5", - "@turf/invariant": "^5.1.5" - } - }, - "node_modules/latlon2country/node_modules/@turf/point-grid": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/point-grid/-/point-grid-5.1.5.tgz", - "integrity": "sha1-MFFBJI9Quv42zn5mukuX56sjaIc=", - "dependencies": { - "@turf/boolean-within": "^5.1.5", - "@turf/distance": "^5.1.5", - "@turf/helpers": "^5.1.5", - "@turf/invariant": "^5.1.5" - } - }, - "node_modules/latlon2country/node_modules/@turf/point-on-feature": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/point-on-feature/-/point-on-feature-5.1.5.tgz", - "integrity": "sha1-MMfwMkMCd8ZBjZbSieRba/shP+c=", - "dependencies": { - "@turf/boolean-point-in-polygon": "^5.1.5", - "@turf/center": "^5.1.5", - "@turf/explode": "^5.1.5", - "@turf/helpers": "^5.1.5", - "@turf/nearest-point": "^5.1.5" - } - }, - "node_modules/latlon2country/node_modules/@turf/point-on-feature/node_modules/@turf/boolean-point-in-polygon": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/boolean-point-in-polygon/-/boolean-point-in-polygon-5.1.5.tgz", - "integrity": "sha1-8BzBlNHgMKVIv9qYHLpDz9YpQbc=", - "dependencies": { - "@turf/helpers": "^5.1.5", - "@turf/invariant": "^5.1.5" - } - }, - "node_modules/latlon2country/node_modules/@turf/point-to-line-distance": { - "version": "5.1.6", - "resolved": "https://registry.npmjs.org/@turf/point-to-line-distance/-/point-to-line-distance-5.1.6.tgz", - "integrity": "sha512-PE3hiTeeDEi4ZLPtI8XAzFYW9nHo1EVsZGm/4ZVV8jo39d3X1oLVHxY3e1PkCmWwRapXy4QLqvnTQ7nU4wspNw==", - "dependencies": { - "@turf/bearing": "6.x", - "@turf/distance": "6.x", - "@turf/helpers": "6.x", - "@turf/invariant": "6.x", - "@turf/meta": "6.x", - "@turf/projection": "6.x", - "@turf/rhumb-bearing": "6.x", - "@turf/rhumb-distance": "6.x" - } - }, - "node_modules/latlon2country/node_modules/@turf/point-to-line-distance/node_modules/@turf/bearing": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/@turf/bearing/-/bearing-6.3.0.tgz", - "integrity": "sha512-apuUm9xN6VQLO33m7F2mmzlm3dHfeesJjMSzh9iehGtgmp1IaVndjdcIvs0ieiwm8bN9UhwXpfPtO3pV0n9SFw==", - "dependencies": { - "@turf/helpers": "^6.3.0", - "@turf/invariant": "^6.3.0" - } - }, - "node_modules/latlon2country/node_modules/@turf/point-to-line-distance/node_modules/@turf/clone": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/@turf/clone/-/clone-6.3.0.tgz", - "integrity": "sha512-GAgN89/9GCqUKECB1oY2hcTs0K2rZj+a2tY6VfM0ef9wwckuQZCKi+kKGUzhKVrmHee15jKV8n6DY0er8OndKg==", - "dependencies": { - "@turf/helpers": "^6.3.0" - } - }, - "node_modules/latlon2country/node_modules/@turf/point-to-line-distance/node_modules/@turf/distance": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/@turf/distance/-/distance-6.3.0.tgz", - "integrity": "sha512-basi24ssNFnH3iXPFjp/aNUrukjObiFWoIyDRqKyBJxVwVOwAWvfk4d38QQyBj5nDo5IahYRq/Q+T47/5hSs9w==", - "dependencies": { - "@turf/helpers": "^6.3.0", - "@turf/invariant": "^6.3.0" - } - }, - "node_modules/latlon2country/node_modules/@turf/point-to-line-distance/node_modules/@turf/helpers": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/@turf/helpers/-/helpers-6.3.0.tgz", - "integrity": "sha512-kr6KuD4Z0GZ30tblTEvi90rvvVNlKieXuMC8CTzE/rVQb0/f/Cb29zCXxTD7giQTEQY/P2nRW23wEqqyNHulCg==" - }, - "node_modules/latlon2country/node_modules/@turf/point-to-line-distance/node_modules/@turf/invariant": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/@turf/invariant/-/invariant-6.3.0.tgz", - "integrity": "sha512-2OFOi9p+QOrcIMySEnr+WlOiKaFZ1bY56jA98YyECewJHfhPFWUBZEhc4nWGRT0ahK08Vus9+gcuBX8QIpCIIw==", - "dependencies": { - "@turf/helpers": "^6.3.0" - } - }, - "node_modules/latlon2country/node_modules/@turf/point-to-line-distance/node_modules/@turf/meta": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/@turf/meta/-/meta-6.3.0.tgz", - "integrity": "sha512-qBJjaAJS9H3ap0HlGXyF/Bzfl0qkA9suafX/jnDsZvWMfVLt+s+o6twKrXOGk5t7nnNON2NFRC8+czxpu104EQ==", - "dependencies": { - "@turf/helpers": "^6.3.0" - } - }, - "node_modules/latlon2country/node_modules/@turf/point-to-line-distance/node_modules/@turf/projection": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/@turf/projection/-/projection-6.3.0.tgz", - "integrity": "sha512-IpSs7Q6G6xi47ynVlYYVegPLy6Jc0yo3/DcIm83jaJa4NnzPFXIFZT0v9Fe1N8MraHZqiqaSPbVnJXCGwR12lg==", - "dependencies": { - "@turf/clone": "^6.3.0", - "@turf/helpers": "^6.3.0", - "@turf/meta": "^6.3.0" - } - }, - "node_modules/latlon2country/node_modules/@turf/point-to-line-distance/node_modules/@turf/rhumb-bearing": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/@turf/rhumb-bearing/-/rhumb-bearing-6.3.0.tgz", - "integrity": "sha512-/c/BE3huEUrwN6gx7Bg2FzfJqeU+TWk/slQPDHpbVunlIPbS6L28brqSVD+KXfMG8HQIzynz6Pm4Y+j5Iv4aWA==", - "dependencies": { - "@turf/helpers": "^6.3.0", - "@turf/invariant": "^6.3.0" - } - }, - "node_modules/latlon2country/node_modules/@turf/point-to-line-distance/node_modules/@turf/rhumb-distance": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/@turf/rhumb-distance/-/rhumb-distance-6.3.0.tgz", - "integrity": "sha512-wMIQVvznusonnp/POeucFdA4Rubn0NrkcEMdxdcCgFK7OmTz0zU4CEnNONF2IUGkQ5WwoKiuS7MOTQ8OuCjSfQ==", - "dependencies": { - "@turf/helpers": "^6.3.0", - "@turf/invariant": "^6.3.0" - } - }, - "node_modules/latlon2country/node_modules/@turf/points-within-polygon": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/points-within-polygon/-/points-within-polygon-5.1.5.tgz", - "integrity": "sha1-K4VaXfOq2lfC7oIKB1SrlJKKIzc=", - "dependencies": { - "@turf/boolean-point-in-polygon": "^5.1.5", - "@turf/helpers": "^5.1.5", - "@turf/meta": "^5.1.5" - } - }, - "node_modules/latlon2country/node_modules/@turf/points-within-polygon/node_modules/@turf/boolean-point-in-polygon": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/boolean-point-in-polygon/-/boolean-point-in-polygon-5.1.5.tgz", - "integrity": "sha1-8BzBlNHgMKVIv9qYHLpDz9YpQbc=", - "dependencies": { - "@turf/helpers": "^5.1.5", - "@turf/invariant": "^5.1.5" - } - }, - "node_modules/latlon2country/node_modules/@turf/polygon-tangents": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/polygon-tangents/-/polygon-tangents-5.1.5.tgz", - "integrity": "sha1-K/AJkUcwJbF44lDcfLmuVAm71lI=", - "dependencies": { - "@turf/helpers": "^5.1.5", - "@turf/invariant": "^5.1.5" - } - }, - "node_modules/latlon2country/node_modules/@turf/polygon-to-line": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/polygon-to-line/-/polygon-to-line-5.1.5.tgz", - "integrity": "sha1-I7tEjYTcTGUZmaxhGjbZHFklA2o=", - "dependencies": { - "@turf/helpers": "^5.1.5", - "@turf/invariant": "^5.1.5" - } - }, - "node_modules/latlon2country/node_modules/@turf/polygonize": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/polygonize/-/polygonize-5.1.5.tgz", - "integrity": "sha1-BJP6EYefOdELmtAs5qI+lC0IqjI=", - "dependencies": { - "@turf/boolean-point-in-polygon": "^5.1.5", - "@turf/envelope": "^5.1.5", - "@turf/helpers": "^5.1.5", - "@turf/invariant": "^5.1.5", - "@turf/meta": "^5.1.5" - } - }, - "node_modules/latlon2country/node_modules/@turf/polygonize/node_modules/@turf/boolean-point-in-polygon": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/boolean-point-in-polygon/-/boolean-point-in-polygon-5.1.5.tgz", - "integrity": "sha1-8BzBlNHgMKVIv9qYHLpDz9YpQbc=", - "dependencies": { - "@turf/helpers": "^5.1.5", - "@turf/invariant": "^5.1.5" - } - }, - "node_modules/latlon2country/node_modules/@turf/projection": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/projection/-/projection-5.1.5.tgz", - "integrity": "sha1-JFF+7rLzaBa6n3EueubWo2jt91c=", - "dependencies": { - "@turf/clone": "^5.1.5", - "@turf/helpers": "^5.1.5", - "@turf/meta": "^5.1.5" - } - }, - "node_modules/latlon2country/node_modules/@turf/random": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/random/-/random-5.1.5.tgz", - "integrity": "sha1-sy78k0Vgroulfo67UfJBw5+6Lns=", - "dependencies": { - "@turf/helpers": "^5.1.5" - } - }, - "node_modules/latlon2country/node_modules/@turf/rewind": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/rewind/-/rewind-5.1.5.tgz", - "integrity": "sha1-nqPbSmi3PB/R3RH1djGxQ8/vock=", - "dependencies": { - "@turf/boolean-clockwise": "^5.1.5", - "@turf/clone": "^5.1.5", - "@turf/helpers": "^5.1.5", - "@turf/invariant": "^5.1.5", - "@turf/meta": "^5.1.5" - } - }, - "node_modules/latlon2country/node_modules/@turf/rhumb-bearing": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/rhumb-bearing/-/rhumb-bearing-5.1.5.tgz", - "integrity": "sha1-rPalAkJ+uMSeGM2mrg7/qwxd3NI=", - "dependencies": { - "@turf/helpers": "^5.1.5", - "@turf/invariant": "^5.1.5" - } - }, - "node_modules/latlon2country/node_modules/@turf/rhumb-destination": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/rhumb-destination/-/rhumb-destination-5.1.5.tgz", - "integrity": "sha1-sbKuuSFUfyrAwamUtqEw+SRjx0I=", - "dependencies": { - "@turf/helpers": "^5.1.5", - "@turf/invariant": "^5.1.5" - } - }, - "node_modules/latlon2country/node_modules/@turf/rhumb-distance": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/rhumb-distance/-/rhumb-distance-5.1.5.tgz", - "integrity": "sha1-GAaFdiX0IlOE2tQT5p85U4/192U=", - "dependencies": { - "@turf/helpers": "^5.1.5", - "@turf/invariant": "^5.1.5" - } - }, - "node_modules/latlon2country/node_modules/@turf/sample": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/sample/-/sample-5.1.5.tgz", - "integrity": "sha1-6ctEikeJzFbuPeLdZ4HiNDQ1tBE=", - "dependencies": { - "@turf/helpers": "^5.1.5" - } - }, - "node_modules/latlon2country/node_modules/@turf/sector": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/sector/-/sector-5.1.5.tgz", - "integrity": "sha1-rCu5TBPt1gNPb9wrZwCBNdIPXgc=", - "dependencies": { - "@turf/circle": "^5.1.5", - "@turf/helpers": "^5.1.5", - "@turf/invariant": "^5.1.5", - "@turf/line-arc": "^5.1.5", - "@turf/meta": "^5.1.5" - } - }, - "node_modules/latlon2country/node_modules/@turf/shortest-path": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/shortest-path/-/shortest-path-5.1.5.tgz", - "integrity": "sha1-hUroCW9rw+EwD6ynfz6PZ9j5Nas=", - "dependencies": { - "@turf/bbox": "^5.1.5", - "@turf/bbox-polygon": "^5.1.5", - "@turf/boolean-point-in-polygon": "^5.1.5", - "@turf/clean-coords": "^5.1.5", - "@turf/distance": "^5.1.5", - "@turf/helpers": "^5.1.5", - "@turf/invariant": "^5.1.5", - "@turf/meta": "^5.1.5", - "@turf/transform-scale": "^5.1.5" - } - }, - "node_modules/latlon2country/node_modules/@turf/shortest-path/node_modules/@turf/boolean-point-in-polygon": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/boolean-point-in-polygon/-/boolean-point-in-polygon-5.1.5.tgz", - "integrity": "sha1-8BzBlNHgMKVIv9qYHLpDz9YpQbc=", - "dependencies": { - "@turf/helpers": "^5.1.5", - "@turf/invariant": "^5.1.5" - } - }, - "node_modules/latlon2country/node_modules/@turf/simplify": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/simplify/-/simplify-5.1.5.tgz", - "integrity": "sha1-Csjyei60IYGD7dmZjDJ1q+QIuSY=", - "dependencies": { - "@turf/clean-coords": "^5.1.5", - "@turf/clone": "^5.1.5", - "@turf/helpers": "^5.1.5", - "@turf/meta": "^5.1.5" - } - }, - "node_modules/latlon2country/node_modules/@turf/square": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/square/-/square-5.1.5.tgz", - "integrity": "sha1-qnsh5gM8ySUsOlvW89iNq9b+0YA=", - "dependencies": { - "@turf/distance": "^5.1.5", - "@turf/helpers": "^5.1.5" - } - }, - "node_modules/latlon2country/node_modules/@turf/square-grid": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/square-grid/-/square-grid-5.1.5.tgz", - "integrity": "sha1-G9X3uesU8LYLwjH+/nNR0aMvGlE=", - "dependencies": { - "@turf/boolean-contains": "^5.1.5", - "@turf/boolean-overlap": "^5.1.5", - "@turf/distance": "^5.1.5", - "@turf/helpers": "^5.1.5", - "@turf/intersect": "^5.1.5", - "@turf/invariant": "^5.1.5" - } - }, - "node_modules/latlon2country/node_modules/@turf/standard-deviational-ellipse": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/standard-deviational-ellipse/-/standard-deviational-ellipse-5.1.5.tgz", - "integrity": "sha1-hc0oO14ayljyG9ZkEuQUtW2FIyQ=", - "dependencies": { - "@turf/center-mean": "^5.1.5", - "@turf/ellipse": "^5.1.5", - "@turf/helpers": "^5.1.5", - "@turf/invariant": "^5.1.5", - "@turf/meta": "^5.1.5", - "@turf/points-within-polygon": "^5.1.5" - } - }, - "node_modules/latlon2country/node_modules/@turf/tag": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/tag/-/tag-5.1.5.tgz", - "integrity": "sha1-0e4aUIjs/UoUEQGcmCOczypJfSA=", - "dependencies": { - "@turf/boolean-point-in-polygon": "^5.1.5", - "@turf/clone": "^5.1.5", - "@turf/helpers": "^5.1.5", - "@turf/meta": "^5.1.5" - } - }, - "node_modules/latlon2country/node_modules/@turf/tag/node_modules/@turf/boolean-point-in-polygon": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/boolean-point-in-polygon/-/boolean-point-in-polygon-5.1.5.tgz", - "integrity": "sha1-8BzBlNHgMKVIv9qYHLpDz9YpQbc=", - "dependencies": { - "@turf/helpers": "^5.1.5", - "@turf/invariant": "^5.1.5" - } - }, - "node_modules/latlon2country/node_modules/@turf/tesselate": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/tesselate/-/tesselate-5.1.5.tgz", - "integrity": "sha1-MqWU6cIaAEIKn5DSxD3z4RZgYc0=", - "dependencies": { - "@turf/helpers": "^5.1.5", - "earcut": "^2.0.0" - } - }, - "node_modules/latlon2country/node_modules/@turf/tin": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/tin/-/tin-5.1.5.tgz", - "integrity": "sha1-KCI+r8X76a6azKgc3P6l0UJMkX0=", - "dependencies": { - "@turf/helpers": "^5.1.5" - } - }, - "node_modules/latlon2country/node_modules/@turf/transform-rotate": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/transform-rotate/-/transform-rotate-5.1.5.tgz", - "integrity": "sha1-0Jbt2eMA/jFQadVNjkWMQJIh7fs=", - "dependencies": { - "@turf/centroid": "^5.1.5", - "@turf/clone": "^5.1.5", - "@turf/helpers": "^5.1.5", - "@turf/invariant": "^5.1.5", - "@turf/meta": "^5.1.5", - "@turf/rhumb-bearing": "^5.1.5", - "@turf/rhumb-destination": "^5.1.5", - "@turf/rhumb-distance": "^5.1.5" - } - }, - "node_modules/latlon2country/node_modules/@turf/transform-scale": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/transform-scale/-/transform-scale-5.1.5.tgz", - "integrity": "sha1-cP064BhWz3uunxWtVhzf6PiQAbk=", - "dependencies": { - "@turf/bbox": "^5.1.5", - "@turf/center": "^5.1.5", - "@turf/centroid": "^5.1.5", - "@turf/clone": "^5.1.5", - "@turf/helpers": "^5.1.5", - "@turf/invariant": "^5.1.5", - "@turf/meta": "^5.1.5", - "@turf/rhumb-bearing": "^5.1.5", - "@turf/rhumb-destination": "^5.1.5", - "@turf/rhumb-distance": "^5.1.5" - } - }, - "node_modules/latlon2country/node_modules/@turf/transform-translate": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/transform-translate/-/transform-translate-5.1.5.tgz", - "integrity": "sha1-Uwolf7Hccmja3Ks05nkB6yo97GM=", - "dependencies": { - "@turf/clone": "^5.1.5", - "@turf/helpers": "^5.1.5", - "@turf/invariant": "^5.1.5", - "@turf/meta": "^5.1.5", - "@turf/rhumb-destination": "^5.1.5" - } - }, - "node_modules/latlon2country/node_modules/@turf/triangle-grid": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/triangle-grid/-/triangle-grid-5.1.5.tgz", - "integrity": "sha1-ezZ2IQhVTBTyjK/zxIsc/ILI3IE=", - "dependencies": { - "@turf/distance": "^5.1.5", - "@turf/helpers": "^5.1.5", - "@turf/intersect": "^5.1.5", - "@turf/invariant": "^5.1.5" - } - }, - "node_modules/latlon2country/node_modules/@turf/truncate": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/truncate/-/truncate-5.1.5.tgz", - "integrity": "sha1-nu37Oxi6gfLJjT6tCUMcyhiErYk=", - "dependencies": { - "@turf/helpers": "^5.1.5", - "@turf/meta": "^5.1.5" - } - }, - "node_modules/latlon2country/node_modules/@turf/turf": { - "version": "5.1.6", - "resolved": "https://registry.npmjs.org/@turf/turf/-/turf-5.1.6.tgz", - "integrity": "sha1-wxIlkoh+0jS3VGi4qMRb+Ib7+PY=", - "dependencies": { - "@turf/along": "5.1.x", - "@turf/area": "5.1.x", - "@turf/bbox": "5.1.x", - "@turf/bbox-clip": "5.1.x", - "@turf/bbox-polygon": "5.1.x", - "@turf/bearing": "5.1.x", - "@turf/bezier-spline": "5.1.x", - "@turf/boolean-clockwise": "5.1.x", - "@turf/boolean-contains": "5.1.x", - "@turf/boolean-crosses": "5.1.x", - "@turf/boolean-disjoint": "5.1.x", - "@turf/boolean-equal": "5.1.x", - "@turf/boolean-overlap": "5.1.x", - "@turf/boolean-parallel": "5.1.x", - "@turf/boolean-point-in-polygon": "5.1.x", - "@turf/boolean-point-on-line": "5.1.x", - "@turf/boolean-within": "5.1.x", - "@turf/buffer": "5.1.x", - "@turf/center": "5.1.x", - "@turf/center-mean": "5.1.x", - "@turf/center-median": "5.1.x", - "@turf/center-of-mass": "5.1.x", - "@turf/centroid": "5.1.x", - "@turf/circle": "5.1.x", - "@turf/clean-coords": "5.1.x", - "@turf/clone": "5.1.x", - "@turf/clusters": "5.1.x", - "@turf/clusters-dbscan": "5.1.x", - "@turf/clusters-kmeans": "5.1.x", - "@turf/collect": "5.1.x", - "@turf/combine": "5.1.x", - "@turf/concave": "5.1.x", - "@turf/convex": "5.1.x", - "@turf/destination": "5.1.x", - "@turf/difference": "5.1.x", - "@turf/dissolve": "5.1.x", - "@turf/distance": "5.1.x", - "@turf/ellipse": "5.1.x", - "@turf/envelope": "5.1.x", - "@turf/explode": "5.1.x", - "@turf/flatten": "5.1.x", - "@turf/flip": "5.1.x", - "@turf/great-circle": "5.1.x", - "@turf/helpers": "5.1.x", - "@turf/hex-grid": "5.1.x", - "@turf/interpolate": "5.1.x", - "@turf/intersect": "5.1.x", - "@turf/invariant": "5.1.x", - "@turf/isobands": "5.1.x", - "@turf/isolines": "5.1.x", - "@turf/kinks": "5.1.x", - "@turf/length": "5.1.x", - "@turf/line-arc": "5.1.x", - "@turf/line-chunk": "5.1.x", - "@turf/line-intersect": "5.1.x", - "@turf/line-offset": "5.1.x", - "@turf/line-overlap": "5.1.x", - "@turf/line-segment": "5.1.x", - "@turf/line-slice": "5.1.x", - "@turf/line-slice-along": "5.1.x", - "@turf/line-split": "5.1.x", - "@turf/line-to-polygon": "5.1.x", - "@turf/mask": "5.1.x", - "@turf/meta": "5.1.x", - "@turf/midpoint": "5.1.x", - "@turf/nearest-point": "5.1.x", - "@turf/nearest-point-on-line": "5.1.x", - "@turf/nearest-point-to-line": "5.1.x", - "@turf/planepoint": "5.1.x", - "@turf/point-grid": "5.1.x", - "@turf/point-on-feature": "5.1.x", - "@turf/point-to-line-distance": "5.1.x", - "@turf/points-within-polygon": "5.1.x", - "@turf/polygon-tangents": "5.1.x", - "@turf/polygon-to-line": "5.1.x", - "@turf/polygonize": "5.1.x", - "@turf/projection": "5.1.x", - "@turf/random": "5.1.x", - "@turf/rewind": "5.1.x", - "@turf/rhumb-bearing": "5.1.x", - "@turf/rhumb-destination": "5.1.x", - "@turf/rhumb-distance": "5.1.x", - "@turf/sample": "5.1.x", - "@turf/sector": "5.1.x", - "@turf/shortest-path": "5.1.x", - "@turf/simplify": "5.1.x", - "@turf/square": "5.1.x", - "@turf/square-grid": "5.1.x", - "@turf/standard-deviational-ellipse": "5.1.x", - "@turf/tag": "5.1.x", - "@turf/tesselate": "5.1.x", - "@turf/tin": "5.1.x", - "@turf/transform-rotate": "5.1.x", - "@turf/transform-scale": "5.1.x", - "@turf/transform-translate": "5.1.x", - "@turf/triangle-grid": "5.1.x", - "@turf/truncate": "5.1.x", - "@turf/union": "5.1.x", - "@turf/unkink-polygon": "5.1.x", - "@turf/voronoi": "5.1.x" - } - }, - "node_modules/latlon2country/node_modules/@turf/turf/node_modules/@turf/boolean-point-in-polygon": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/boolean-point-in-polygon/-/boolean-point-in-polygon-5.1.5.tgz", - "integrity": "sha1-8BzBlNHgMKVIv9qYHLpDz9YpQbc=", - "dependencies": { - "@turf/helpers": "^5.1.5", - "@turf/invariant": "^5.1.5" - } - }, - "node_modules/latlon2country/node_modules/@turf/union": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/union/-/union-5.1.5.tgz", - "integrity": "sha1-UyhbYJQEf8WNlqrA6pCGXsNNRUs=", - "dependencies": { - "@turf/helpers": "^5.1.5", - "turf-jsts": "*" - } - }, - "node_modules/latlon2country/node_modules/@turf/unkink-polygon": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/unkink-polygon/-/unkink-polygon-5.1.5.tgz", - "integrity": "sha1-ewGEfFD7V0riV54Z5Ey6hSbSE8M=", - "dependencies": { - "@turf/area": "^5.1.5", - "@turf/boolean-point-in-polygon": "^5.1.5", - "@turf/helpers": "^5.1.5", - "@turf/meta": "^5.1.5", - "rbush": "^2.0.1" - } - }, - "node_modules/latlon2country/node_modules/@turf/unkink-polygon/node_modules/@turf/boolean-point-in-polygon": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/boolean-point-in-polygon/-/boolean-point-in-polygon-5.1.5.tgz", - "integrity": "sha1-8BzBlNHgMKVIv9qYHLpDz9YpQbc=", - "dependencies": { - "@turf/helpers": "^5.1.5", - "@turf/invariant": "^5.1.5" - } - }, - "node_modules/latlon2country/node_modules/@turf/voronoi": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/voronoi/-/voronoi-5.1.5.tgz", - "integrity": "sha1-6FbpQG3MLyXWbdyJhYTifC6/ymY=", - "dependencies": { - "@turf/helpers": "^5.1.5", - "@turf/invariant": "^5.1.5", - "d3-voronoi": "1.1.2" - } - }, - "node_modules/latlon2country/node_modules/@types/node": { - "version": "14.14.44", - "resolved": "https://registry.npmjs.org/@types/node/-/node-14.14.44.tgz", - "integrity": "sha512-+gaugz6Oce6ZInfI/tK4Pq5wIIkJMEJUu92RB3Eu93mtj4wjjjz9EB5mLp5s1pSsLXdC/CPut/xF20ZzAQJbTA==" - }, - "node_modules/latlon2country/node_modules/commander": { - "version": "2.20.3", - "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", - "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==" - }, - "node_modules/latlon2country/node_modules/geojson-rbush": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/geojson-rbush/-/geojson-rbush-2.1.0.tgz", - "integrity": "sha1-O9c745H8ELCuaT2bis6iquC4Oo0=", - "dependencies": { - "@turf/helpers": "*", - "@turf/meta": "*", - "rbush": "*" - } - }, - "node_modules/latlon2country/node_modules/topojson-client": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/topojson-client/-/topojson-client-3.1.0.tgz", - "integrity": "sha512-605uxS6bcYxGXw9qi62XyrV6Q3xwbndjachmNxu8HWTtVPxZfEJN9fd/SZS1Q54Sn2y0TMyMxFj/cJINqGHrKw==", - "dependencies": { - "commander": "2" - }, - "bin": { - "topo2geo": "bin/topo2geo", - "topomerge": "bin/topomerge", - "topoquantize": "bin/topoquantize" - } - }, - "node_modules/latlon2country/node_modules/topojson-server": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/topojson-server/-/topojson-server-3.0.1.tgz", - "integrity": "sha512-/VS9j/ffKr2XAOjlZ9CgyyeLmgJ9dMwq6Y0YEON8O7p/tGGk+dCWnrE03zEdu7i4L7YsFZLEPZPzCvcB7lEEXw==", - "dependencies": { - "commander": "2" - }, - "bin": { - "geo2topo": "bin/geo2topo" - } - }, - "node_modules/latlon2country/node_modules/turf": { - "version": "3.0.14", - "resolved": "https://registry.npmjs.org/turf/-/turf-3.0.14.tgz", - "integrity": "sha1-6y9KgKLVg7jGSGvHtccZBGaGbCc=", - "deprecated": "This package has moved: use @turf/turf instead", - "dependencies": { - "turf-along": "^3.0.12", - "turf-area": "^3.0.12", - "turf-bbox": "^3.0.12", - "turf-bbox-polygon": "^3.0.12", - "turf-bearing": "^3.0.12", - "turf-bezier": "^3.0.12", - "turf-buffer": "^3.0.12", - "turf-center": "^3.0.12", - "turf-centroid": "^3.0.12", - "turf-circle": "^3.0.12", - "turf-collect": "^3.0.12", - "turf-combine": "^3.0.12", - "turf-concave": "^3.0.12", - "turf-convex": "^3.0.12", - "turf-destination": "^3.0.12", - "turf-difference": "^3.0.12", - "turf-distance": "^3.0.12", - "turf-envelope": "^3.0.12", - "turf-explode": "^3.0.12", - "turf-flip": "^3.0.12", - "turf-helpers": "^3.0.12", - "turf-hex-grid": "^3.0.12", - "turf-inside": "^3.0.12", - "turf-intersect": "^3.0.12", - "turf-isolines": "^3.0.12", - "turf-kinks": "^3.0.12", - "turf-line-distance": "^3.0.12", - "turf-line-slice": "^3.0.12", - "turf-meta": "^3.0.12", - "turf-midpoint": "^3.0.12", - "turf-nearest": "^3.0.12", - "turf-planepoint": "^3.0.12", - "turf-point-grid": "^3.0.12", - "turf-point-on-line": "^3.0.12", - "turf-point-on-surface": "^3.0.12", - "turf-random": "^3.0.12", - "turf-sample": "^3.0.12", - "turf-simplify": "^3.0.12", - "turf-square": "^3.0.12", - "turf-square-grid": "^3.0.12", - "turf-tag": "^3.0.12", - "turf-tesselate": "^3.0.12", - "turf-tin": "^3.0.12", - "turf-triangle-grid": "^3.0.12", - "turf-union": "^3.0.12", - "turf-within": "^3.0.12" - } - }, "node_modules/leaflet": { "version": "1.7.1", "resolved": "https://registry.npmjs.org/leaflet/-/leaflet-1.7.1.tgz", @@ -10178,14 +8867,6 @@ "file-saver": "^2.0.2" } }, - "node_modules/leaflet.markercluster": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/leaflet.markercluster/-/leaflet.markercluster-1.5.0.tgz", - "integrity": "sha512-Fvf/cq4o806mJL50n+fZW9+QALDDLPvt7vuAjlD2vfnxx3srMDs2vWINJze4nKYJYRY45OC6tM/669C3pLwMCA==", - "peerDependencies": { - "leaflet": "^1.3.1" - } - }, "node_modules/levn": { "version": "0.3.0", "resolved": "https://registry.npmjs.org/levn/-/levn-0.3.0.tgz", @@ -10199,12 +8880,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" @@ -10223,11 +8903,6 @@ "node": ">=10" } }, - "node_modules/lineclip": { - "version": "1.1.5", - "resolved": "https://registry.npmjs.org/lineclip/-/lineclip-1.1.5.tgz", - "integrity": "sha1-K/JgZ9lDVP6r+R5CdoI221YW/RM=" - }, "node_modules/lines-and-columns": { "version": "1.1.6", "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.1.6.tgz", @@ -10355,11 +9030,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", @@ -10379,7 +9049,8 @@ "node_modules/make-error": { "version": "1.3.6", "resolved": "https://registry.npmjs.org/make-error/-/make-error-1.3.6.tgz", - "integrity": "sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==" + "integrity": "sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==", + "devOptional": true }, "node_modules/mangrove-reviews": { "version": "0.1.4", @@ -10419,18 +9090,6 @@ "node": ">=0.10.0" } }, - "node_modules/marked": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/marked/-/marked-2.0.3.tgz", - "integrity": "sha512-5otztIIcJfPc2qGTN8cVtOJEjNJZ0jwa46INMagrYfk0EvqtRuEHLsEe0LrFS0/q+ZRKT0+kXK7P2T1AN5lWRA==", - "dev": true, - "bin": { - "marked": "bin/marked" - }, - "engines": { - "node": ">= 8.16.2" - } - }, "node_modules/md5.js": { "version": "1.3.5", "resolved": "https://registry.npmjs.org/md5.js/-/md5.js-1.3.5.tgz", @@ -10446,14 +9105,6 @@ "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.4.tgz", "integrity": "sha512-iV3XNKw06j5Q7mi6h+9vbx23Tv7JkjEVgKHW4pimwyDGWm0OIQntJJ+u1C6mg6mK1EaTv42XQ7w76yuzH7M2cA==" }, - "node_modules/memorystream": { - "version": "0.3.1", - "resolved": "https://registry.npmjs.org/memorystream/-/memorystream-0.3.1.tgz", - "integrity": "sha1-htcJCzDORV1j+64S3aUaR93K+bI=", - "engines": { - "node": ">= 0.10.0" - } - }, "node_modules/meow": { "version": "3.7.0", "resolved": "https://registry.npmjs.org/meow/-/meow-3.7.0.tgz", @@ -10615,12 +9266,11 @@ } }, "node_modules/mkdirp": { - "version": "0.5.1", - "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.1.tgz", - "integrity": "sha1-MAV0OOrGz3+MR2fzhkjWaX11yQM=", - "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.)", + "version": "0.5.5", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.5.tgz", + "integrity": "sha512-NKmAlESf6jMGym1++R0Ra7wvhV+wFW63FaSOFPwRahvea0gMUcGUhVeAg/0BC0wiv9ih5NYPB1Wn1UEI1/L+xQ==", "dependencies": { - "minimist": "0.0.8" + "minimist": "^1.2.5" }, "bin": { "mkdirp": "bin/cmd.js" @@ -10632,108 +9282,6 @@ "integrity": "sha512-gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A==", "dev": true }, - "node_modules/mkdirp/node_modules/minimist": { - "version": "0.0.8", - "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", @@ -10773,9 +9321,9 @@ "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==", + "version": "2.15.0", + "resolved": "https://registry.npmjs.org/nan/-/nan-2.15.0.tgz", + "integrity": "sha512-8ZtvEnA2c5aYCZYd1cvgdnU6cqwixRoYg70xPLWUws5ORTa/lnw+u4amixRS/Ac5U5mQVgp9pnlSUnbNWFaWZQ==", "optional": true }, "node_modules/nanocolors": { @@ -10787,9 +9335,9 @@ } }, "node_modules/nanoid": { - "version": "3.1.25", - "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.1.25.tgz", - "integrity": "sha512-rdwtIXaXCLFAQbnfqDRnI6jaRHp9fTcYBjtFKE8eezcZ7LuLjhUaQGNeMXf1HmRoCH32CLz6XwX0TtxEOS/A3Q==", + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.2.0.tgz", + "integrity": "sha512-fmsZYa9lpn69Ad5eDn7FMcnnSR+8R34W9qJEijxYhTbfOWzr22n1QxCMzXLK+ODyW2973V3Fux959iQoUxzUIA==", "bin": { "nanoid": "bin/nanoid.cjs" }, @@ -10824,6 +9372,14 @@ "integrity": "sha512-ONmRUqK7zj7DWX0D9ADe03wbwOBZxNAfF20PlGfCWQcD3+/MakShIHrMqx9YwPTfxDdF1zLeL+RGZiR9kGMLdg==", "dev": true }, + "node_modules/ncp": { + "version": "0.4.2", + "resolved": "https://registry.npmjs.org/ncp/-/ncp-0.4.2.tgz", + "integrity": "sha1-q8xsvT7C7Spyn/bnwfqPAXhKhXQ=", + "bin": { + "ncp": "bin/ncp" + } + }, "node_modules/neo-async": { "version": "2.6.2", "resolved": "https://registry.npmjs.org/neo-async/-/neo-async-2.6.2.tgz", @@ -10936,10 +9492,26 @@ "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-1.1.76.tgz", "integrity": "sha512-9/IECtNr8dXNmPWmFXepT0/7o5eolGesHUa3mtr0KlgnCvnZxwh2qensKL42JJY2vQKC3nIBXetFAqR+PW1CmA==" }, + "node_modules/nomnom": { + "version": "1.6.2", + "resolved": "https://registry.npmjs.org/nomnom/-/nomnom-1.6.2.tgz", + "integrity": "sha1-hKZqJgF0QI/Ft3oY+IjszET7aXE=", + "deprecated": "Package no longer supported. Contact support@npmjs.com for more info.", + "dependencies": { + "colors": "0.5.x", + "underscore": "~1.4.4" + } + }, + "node_modules/nomnom/node_modules/underscore": { + "version": "1.4.4", + "resolved": "https://registry.npmjs.org/underscore/-/underscore-1.4.4.tgz", + "integrity": "sha1-YaajIBBiKvoHljvzJSA88SI51gQ=" + }, "node_modules/normalize-package-data": { "version": "2.5.0", "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.5.0.tgz", "integrity": "sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==", + "dev": true, "dependencies": { "hosted-git-info": "^2.1.4", "resolve": "^1.10.0", @@ -10951,6 +9523,7 @@ "version": "5.7.1", "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", + "dev": true, "bin": { "semver": "bin/semver" } @@ -10980,84 +9553,6 @@ "node": ">=6" } }, - "node_modules/npm-run-all": { - "version": "4.1.5", - "resolved": "https://registry.npmjs.org/npm-run-all/-/npm-run-all-4.1.5.tgz", - "integrity": "sha512-Oo82gJDAVcaMdi3nuoKFavkIHBRVqQ1qvMb+9LHk/cF4P6B2m8aP04hGf7oL6wZ9BuGwX1onlLhpuoofSyoQDQ==", - "dependencies": { - "ansi-styles": "^3.2.1", - "chalk": "^2.4.1", - "cross-spawn": "^6.0.5", - "memorystream": "^0.3.1", - "minimatch": "^3.0.4", - "pidtree": "^0.3.0", - "read-pkg": "^3.0.0", - "shell-quote": "^1.6.1", - "string.prototype.padend": "^3.0.0" - }, - "bin": { - "npm-run-all": "bin/npm-run-all/index.js", - "run-p": "bin/run-p/index.js", - "run-s": "bin/run-s/index.js" - }, - "engines": { - "node": ">= 4" - } - }, - "node_modules/npm-run-all/node_modules/load-json-file": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/load-json-file/-/load-json-file-4.0.0.tgz", - "integrity": "sha1-L19Fq5HjMhYjT9U62rZo607AmTs=", - "dependencies": { - "graceful-fs": "^4.1.2", - "parse-json": "^4.0.0", - "pify": "^3.0.0", - "strip-bom": "^3.0.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/npm-run-all/node_modules/path-type": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/path-type/-/path-type-3.0.0.tgz", - "integrity": "sha512-T2ZUsdZFHgA3u4e5PfPbjd7HDDpxPnQb5jN0SrDsjNSuVXHJqtwTnWqG0B1jZrgmJ/7lj1EmVIByWt1gxGkWvg==", - "dependencies": { - "pify": "^3.0.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/npm-run-all/node_modules/pify": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", - "integrity": "sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY=", - "engines": { - "node": ">=4" - } - }, - "node_modules/npm-run-all/node_modules/read-pkg": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-3.0.0.tgz", - "integrity": "sha1-nLxoaXj+5l0WwA4rGcI3/Pbjg4k=", - "dependencies": { - "load-json-file": "^4.0.0", - "normalize-package-data": "^2.3.2", - "path-type": "^3.0.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/npm-run-all/node_modules/strip-bom": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", - "integrity": "sha1-IzTBjpx1n3vdVv3vfprj1YjmjtM=", - "engines": { - "node": ">=4" - } - }, "node_modules/npmlog": { "version": "4.1.2", "resolved": "https://registry.npmjs.org/npmlog/-/npmlog-4.1.2.tgz", @@ -11418,11 +9913,43 @@ "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", "integrity": "sha1-8/dSL073gjSNqBYbrZ7P1Rv4OnU=" }, + "node_modules/papaparse": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/papaparse/-/papaparse-5.3.1.tgz", + "integrity": "sha512-Dbt2yjLJrCwH2sRqKFFJaN5XgIASO9YOFeFP8rIBRG2Ain8mqk5r1M6DkfvqEVozVcz3r3HaUGw253hA1nLIcA==" + }, "node_modules/parcel": { "version": "1.12.4", "resolved": "https://registry.npmjs.org/parcel/-/parcel-1.12.4.tgz", @@ -11647,13 +10174,12 @@ } }, "node_modules/parcel/node_modules/postcss": { - "version": "7.0.36", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.36.tgz", - "integrity": "sha512-BebJSIUMwJHRH0HAQoxN4u1CN86glsrwsW0q7T+/m44eXOUAxSNdHRkNZPYz5vVUbg17hFgOQDE7fZk7li3pZw==", + "version": "7.0.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", "dependencies": { - "chalk": "^2.4.2", - "source-map": "^0.6.1", - "supports-color": "^6.1.0" + "picocolors": "^0.2.1", + "source-map": "^0.6.1" }, "engines": { "node": ">=6.0.0" @@ -11684,17 +10210,6 @@ "node": ">=0.10.0" } }, - "node_modules/parcel/node_modules/supports-color": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", - "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", - "dependencies": { - "has-flag": "^3.0.0" - }, - "engines": { - "node": ">=6" - } - }, "node_modules/parcel/node_modules/to-regex-range": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz", @@ -11865,6 +10380,11 @@ "resolved": "https://registry.npmjs.org/physical-cpu-count/-/physical-cpu-count-2.0.0.tgz", "integrity": "sha1-GN4vl+S/epVRrXURlCtUlverpmA=" }, + "node_modules/picocolors": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz", + "integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==" + }, "node_modules/picomatch": { "version": "2.3.0", "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.0.tgz", @@ -11876,17 +10396,6 @@ "url": "https://github.com/sponsors/jonschlinkert" } }, - "node_modules/pidtree": { - "version": "0.3.1", - "resolved": "https://registry.npmjs.org/pidtree/-/pidtree-0.3.1.tgz", - "integrity": "sha512-qQbW94hLHEqCg7nhby4yRC7G2+jYHY4Rguc2bjw7Uug4GIJuu1tvf2uHaZv5Q8zdt+WKJ6qK1FOI6amaWUo5FA==", - "bin": { - "pidtree": "bin/pidtree.js" - }, - "engines": { - "node": ">=0.10" - } - }, "node_modules/pify": { "version": "2.3.0", "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", @@ -11927,6 +10436,14 @@ "resolved": "https://registry.npmjs.org/point-in-polygon/-/point-in-polygon-1.1.0.tgz", "integrity": "sha512-3ojrFwjnnw8Q9242TzgXuTD+eKiutbzyslcq1ydfu82Db2y+Ogbmyrkpv0Hgj31qwT3lbS9+QAAO/pIQM35XRw==" }, + "node_modules/polygon-clipping": { + "version": "0.15.3", + "resolved": "https://registry.npmjs.org/polygon-clipping/-/polygon-clipping-0.15.3.tgz", + "integrity": "sha512-ho0Xx5DLkgxRx/+n4O74XyJ67DcyN3Tu9bGYKsnTukGAW6ssnuak6Mwcyb1wHy9MZc9xsUWqIoiazkZB5weECg==", + "dependencies": { + "splaytree": "^3.1.0" + } + }, "node_modules/posix-character-classes": { "version": "0.1.1", "resolved": "https://registry.npmjs.org/posix-character-classes/-/posix-character-classes-0.1.1.tgz", @@ -11963,13 +10480,12 @@ } }, "node_modules/postcss-calc/node_modules/postcss": { - "version": "7.0.36", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.36.tgz", - "integrity": "sha512-BebJSIUMwJHRH0HAQoxN4u1CN86glsrwsW0q7T+/m44eXOUAxSNdHRkNZPYz5vVUbg17hFgOQDE7fZk7li3pZw==", + "version": "7.0.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", "dependencies": { - "chalk": "^2.4.2", - "source-map": "^0.6.1", - "supports-color": "^6.1.0" + "picocolors": "^0.2.1", + "source-map": "^0.6.1" }, "engines": { "node": ">=6.0.0" @@ -11987,17 +10503,6 @@ "node": ">=0.10.0" } }, - "node_modules/postcss-calc/node_modules/supports-color": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", - "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", - "dependencies": { - "has-flag": "^3.0.0" - }, - "engines": { - "node": ">=6" - } - }, "node_modules/postcss-colormin": { "version": "4.0.3", "resolved": "https://registry.npmjs.org/postcss-colormin/-/postcss-colormin-4.0.3.tgz", @@ -12014,13 +10519,12 @@ } }, "node_modules/postcss-colormin/node_modules/postcss": { - "version": "7.0.36", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.36.tgz", - "integrity": "sha512-BebJSIUMwJHRH0HAQoxN4u1CN86glsrwsW0q7T+/m44eXOUAxSNdHRkNZPYz5vVUbg17hFgOQDE7fZk7li3pZw==", + "version": "7.0.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", "dependencies": { - "chalk": "^2.4.2", - "source-map": "^0.6.1", - "supports-color": "^6.1.0" + "picocolors": "^0.2.1", + "source-map": "^0.6.1" }, "engines": { "node": ">=6.0.0" @@ -12043,17 +10547,6 @@ "node": ">=0.10.0" } }, - "node_modules/postcss-colormin/node_modules/supports-color": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", - "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", - "dependencies": { - "has-flag": "^3.0.0" - }, - "engines": { - "node": ">=6" - } - }, "node_modules/postcss-convert-values": { "version": "4.0.1", "resolved": "https://registry.npmjs.org/postcss-convert-values/-/postcss-convert-values-4.0.1.tgz", @@ -12067,13 +10560,12 @@ } }, "node_modules/postcss-convert-values/node_modules/postcss": { - "version": "7.0.36", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.36.tgz", - "integrity": "sha512-BebJSIUMwJHRH0HAQoxN4u1CN86glsrwsW0q7T+/m44eXOUAxSNdHRkNZPYz5vVUbg17hFgOQDE7fZk7li3pZw==", + "version": "7.0.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", "dependencies": { - "chalk": "^2.4.2", - "source-map": "^0.6.1", - "supports-color": "^6.1.0" + "picocolors": "^0.2.1", + "source-map": "^0.6.1" }, "engines": { "node": ">=6.0.0" @@ -12096,17 +10588,6 @@ "node": ">=0.10.0" } }, - "node_modules/postcss-convert-values/node_modules/supports-color": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", - "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", - "dependencies": { - "has-flag": "^3.0.0" - }, - "engines": { - "node": ">=6" - } - }, "node_modules/postcss-discard-comments": { "version": "4.0.2", "resolved": "https://registry.npmjs.org/postcss-discard-comments/-/postcss-discard-comments-4.0.2.tgz", @@ -12119,13 +10600,12 @@ } }, "node_modules/postcss-discard-comments/node_modules/postcss": { - "version": "7.0.36", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.36.tgz", - "integrity": "sha512-BebJSIUMwJHRH0HAQoxN4u1CN86glsrwsW0q7T+/m44eXOUAxSNdHRkNZPYz5vVUbg17hFgOQDE7fZk7li3pZw==", + "version": "7.0.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", "dependencies": { - "chalk": "^2.4.2", - "source-map": "^0.6.1", - "supports-color": "^6.1.0" + "picocolors": "^0.2.1", + "source-map": "^0.6.1" }, "engines": { "node": ">=6.0.0" @@ -12143,17 +10623,6 @@ "node": ">=0.10.0" } }, - "node_modules/postcss-discard-comments/node_modules/supports-color": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", - "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", - "dependencies": { - "has-flag": "^3.0.0" - }, - "engines": { - "node": ">=6" - } - }, "node_modules/postcss-discard-duplicates": { "version": "4.0.2", "resolved": "https://registry.npmjs.org/postcss-discard-duplicates/-/postcss-discard-duplicates-4.0.2.tgz", @@ -12166,13 +10635,12 @@ } }, "node_modules/postcss-discard-duplicates/node_modules/postcss": { - "version": "7.0.36", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.36.tgz", - "integrity": "sha512-BebJSIUMwJHRH0HAQoxN4u1CN86glsrwsW0q7T+/m44eXOUAxSNdHRkNZPYz5vVUbg17hFgOQDE7fZk7li3pZw==", + "version": "7.0.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", "dependencies": { - "chalk": "^2.4.2", - "source-map": "^0.6.1", - "supports-color": "^6.1.0" + "picocolors": "^0.2.1", + "source-map": "^0.6.1" }, "engines": { "node": ">=6.0.0" @@ -12190,17 +10658,6 @@ "node": ">=0.10.0" } }, - "node_modules/postcss-discard-duplicates/node_modules/supports-color": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", - "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", - "dependencies": { - "has-flag": "^3.0.0" - }, - "engines": { - "node": ">=6" - } - }, "node_modules/postcss-discard-empty": { "version": "4.0.1", "resolved": "https://registry.npmjs.org/postcss-discard-empty/-/postcss-discard-empty-4.0.1.tgz", @@ -12213,13 +10670,12 @@ } }, "node_modules/postcss-discard-empty/node_modules/postcss": { - "version": "7.0.36", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.36.tgz", - "integrity": "sha512-BebJSIUMwJHRH0HAQoxN4u1CN86glsrwsW0q7T+/m44eXOUAxSNdHRkNZPYz5vVUbg17hFgOQDE7fZk7li3pZw==", + "version": "7.0.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", "dependencies": { - "chalk": "^2.4.2", - "source-map": "^0.6.1", - "supports-color": "^6.1.0" + "picocolors": "^0.2.1", + "source-map": "^0.6.1" }, "engines": { "node": ">=6.0.0" @@ -12237,17 +10693,6 @@ "node": ">=0.10.0" } }, - "node_modules/postcss-discard-empty/node_modules/supports-color": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", - "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", - "dependencies": { - "has-flag": "^3.0.0" - }, - "engines": { - "node": ">=6" - } - }, "node_modules/postcss-discard-overridden": { "version": "4.0.1", "resolved": "https://registry.npmjs.org/postcss-discard-overridden/-/postcss-discard-overridden-4.0.1.tgz", @@ -12260,13 +10705,12 @@ } }, "node_modules/postcss-discard-overridden/node_modules/postcss": { - "version": "7.0.36", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.36.tgz", - "integrity": "sha512-BebJSIUMwJHRH0HAQoxN4u1CN86glsrwsW0q7T+/m44eXOUAxSNdHRkNZPYz5vVUbg17hFgOQDE7fZk7li3pZw==", + "version": "7.0.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", "dependencies": { - "chalk": "^2.4.2", - "source-map": "^0.6.1", - "supports-color": "^6.1.0" + "picocolors": "^0.2.1", + "source-map": "^0.6.1" }, "engines": { "node": ">=6.0.0" @@ -12284,17 +10728,6 @@ "node": ">=0.10.0" } }, - "node_modules/postcss-discard-overridden/node_modules/supports-color": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", - "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", - "dependencies": { - "has-flag": "^3.0.0" - }, - "engines": { - "node": ">=6" - } - }, "node_modules/postcss-merge-longhand": { "version": "4.0.11", "resolved": "https://registry.npmjs.org/postcss-merge-longhand/-/postcss-merge-longhand-4.0.11.tgz", @@ -12310,13 +10743,12 @@ } }, "node_modules/postcss-merge-longhand/node_modules/postcss": { - "version": "7.0.36", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.36.tgz", - "integrity": "sha512-BebJSIUMwJHRH0HAQoxN4u1CN86glsrwsW0q7T+/m44eXOUAxSNdHRkNZPYz5vVUbg17hFgOQDE7fZk7li3pZw==", + "version": "7.0.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", "dependencies": { - "chalk": "^2.4.2", - "source-map": "^0.6.1", - "supports-color": "^6.1.0" + "picocolors": "^0.2.1", + "source-map": "^0.6.1" }, "engines": { "node": ">=6.0.0" @@ -12339,17 +10771,6 @@ "node": ">=0.10.0" } }, - "node_modules/postcss-merge-longhand/node_modules/supports-color": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", - "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", - "dependencies": { - "has-flag": "^3.0.0" - }, - "engines": { - "node": ">=6" - } - }, "node_modules/postcss-merge-rules": { "version": "4.0.3", "resolved": "https://registry.npmjs.org/postcss-merge-rules/-/postcss-merge-rules-4.0.3.tgz", @@ -12367,13 +10788,12 @@ } }, "node_modules/postcss-merge-rules/node_modules/postcss": { - "version": "7.0.36", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.36.tgz", - "integrity": "sha512-BebJSIUMwJHRH0HAQoxN4u1CN86glsrwsW0q7T+/m44eXOUAxSNdHRkNZPYz5vVUbg17hFgOQDE7fZk7li3pZw==", + "version": "7.0.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", "dependencies": { - "chalk": "^2.4.2", - "source-map": "^0.6.1", - "supports-color": "^6.1.0" + "picocolors": "^0.2.1", + "source-map": "^0.6.1" }, "engines": { "node": ">=6.0.0" @@ -12404,17 +10824,6 @@ "node": ">=0.10.0" } }, - "node_modules/postcss-merge-rules/node_modules/supports-color": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", - "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", - "dependencies": { - "has-flag": "^3.0.0" - }, - "engines": { - "node": ">=6" - } - }, "node_modules/postcss-minify-font-values": { "version": "4.0.2", "resolved": "https://registry.npmjs.org/postcss-minify-font-values/-/postcss-minify-font-values-4.0.2.tgz", @@ -12428,13 +10837,12 @@ } }, "node_modules/postcss-minify-font-values/node_modules/postcss": { - "version": "7.0.36", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.36.tgz", - "integrity": "sha512-BebJSIUMwJHRH0HAQoxN4u1CN86glsrwsW0q7T+/m44eXOUAxSNdHRkNZPYz5vVUbg17hFgOQDE7fZk7li3pZw==", + "version": "7.0.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", "dependencies": { - "chalk": "^2.4.2", - "source-map": "^0.6.1", - "supports-color": "^6.1.0" + "picocolors": "^0.2.1", + "source-map": "^0.6.1" }, "engines": { "node": ">=6.0.0" @@ -12457,17 +10865,6 @@ "node": ">=0.10.0" } }, - "node_modules/postcss-minify-font-values/node_modules/supports-color": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", - "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", - "dependencies": { - "has-flag": "^3.0.0" - }, - "engines": { - "node": ">=6" - } - }, "node_modules/postcss-minify-gradients": { "version": "4.0.2", "resolved": "https://registry.npmjs.org/postcss-minify-gradients/-/postcss-minify-gradients-4.0.2.tgz", @@ -12483,13 +10880,12 @@ } }, "node_modules/postcss-minify-gradients/node_modules/postcss": { - "version": "7.0.36", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.36.tgz", - "integrity": "sha512-BebJSIUMwJHRH0HAQoxN4u1CN86glsrwsW0q7T+/m44eXOUAxSNdHRkNZPYz5vVUbg17hFgOQDE7fZk7li3pZw==", + "version": "7.0.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", "dependencies": { - "chalk": "^2.4.2", - "source-map": "^0.6.1", - "supports-color": "^6.1.0" + "picocolors": "^0.2.1", + "source-map": "^0.6.1" }, "engines": { "node": ">=6.0.0" @@ -12512,17 +10908,6 @@ "node": ">=0.10.0" } }, - "node_modules/postcss-minify-gradients/node_modules/supports-color": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", - "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", - "dependencies": { - "has-flag": "^3.0.0" - }, - "engines": { - "node": ">=6" - } - }, "node_modules/postcss-minify-params": { "version": "4.0.2", "resolved": "https://registry.npmjs.org/postcss-minify-params/-/postcss-minify-params-4.0.2.tgz", @@ -12540,13 +10925,12 @@ } }, "node_modules/postcss-minify-params/node_modules/postcss": { - "version": "7.0.36", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.36.tgz", - "integrity": "sha512-BebJSIUMwJHRH0HAQoxN4u1CN86glsrwsW0q7T+/m44eXOUAxSNdHRkNZPYz5vVUbg17hFgOQDE7fZk7li3pZw==", + "version": "7.0.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", "dependencies": { - "chalk": "^2.4.2", - "source-map": "^0.6.1", - "supports-color": "^6.1.0" + "picocolors": "^0.2.1", + "source-map": "^0.6.1" }, "engines": { "node": ">=6.0.0" @@ -12569,17 +10953,6 @@ "node": ">=0.10.0" } }, - "node_modules/postcss-minify-params/node_modules/supports-color": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", - "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", - "dependencies": { - "has-flag": "^3.0.0" - }, - "engines": { - "node": ">=6" - } - }, "node_modules/postcss-minify-selectors": { "version": "4.0.2", "resolved": "https://registry.npmjs.org/postcss-minify-selectors/-/postcss-minify-selectors-4.0.2.tgz", @@ -12595,13 +10968,12 @@ } }, "node_modules/postcss-minify-selectors/node_modules/postcss": { - "version": "7.0.36", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.36.tgz", - "integrity": "sha512-BebJSIUMwJHRH0HAQoxN4u1CN86glsrwsW0q7T+/m44eXOUAxSNdHRkNZPYz5vVUbg17hFgOQDE7fZk7li3pZw==", + "version": "7.0.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", "dependencies": { - "chalk": "^2.4.2", - "source-map": "^0.6.1", - "supports-color": "^6.1.0" + "picocolors": "^0.2.1", + "source-map": "^0.6.1" }, "engines": { "node": ">=6.0.0" @@ -12632,17 +11004,6 @@ "node": ">=0.10.0" } }, - "node_modules/postcss-minify-selectors/node_modules/supports-color": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", - "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", - "dependencies": { - "has-flag": "^3.0.0" - }, - "engines": { - "node": ">=6" - } - }, "node_modules/postcss-modules-extract-imports": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/postcss-modules-extract-imports/-/postcss-modules-extract-imports-1.1.0.tgz", @@ -12774,13 +11135,12 @@ } }, "node_modules/postcss-normalize-charset/node_modules/postcss": { - "version": "7.0.36", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.36.tgz", - "integrity": "sha512-BebJSIUMwJHRH0HAQoxN4u1CN86glsrwsW0q7T+/m44eXOUAxSNdHRkNZPYz5vVUbg17hFgOQDE7fZk7li3pZw==", + "version": "7.0.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", "dependencies": { - "chalk": "^2.4.2", - "source-map": "^0.6.1", - "supports-color": "^6.1.0" + "picocolors": "^0.2.1", + "source-map": "^0.6.1" }, "engines": { "node": ">=6.0.0" @@ -12798,17 +11158,6 @@ "node": ">=0.10.0" } }, - "node_modules/postcss-normalize-charset/node_modules/supports-color": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", - "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", - "dependencies": { - "has-flag": "^3.0.0" - }, - "engines": { - "node": ">=6" - } - }, "node_modules/postcss-normalize-display-values": { "version": "4.0.2", "resolved": "https://registry.npmjs.org/postcss-normalize-display-values/-/postcss-normalize-display-values-4.0.2.tgz", @@ -12823,13 +11172,12 @@ } }, "node_modules/postcss-normalize-display-values/node_modules/postcss": { - "version": "7.0.36", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.36.tgz", - "integrity": "sha512-BebJSIUMwJHRH0HAQoxN4u1CN86glsrwsW0q7T+/m44eXOUAxSNdHRkNZPYz5vVUbg17hFgOQDE7fZk7li3pZw==", + "version": "7.0.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", "dependencies": { - "chalk": "^2.4.2", - "source-map": "^0.6.1", - "supports-color": "^6.1.0" + "picocolors": "^0.2.1", + "source-map": "^0.6.1" }, "engines": { "node": ">=6.0.0" @@ -12852,17 +11200,6 @@ "node": ">=0.10.0" } }, - "node_modules/postcss-normalize-display-values/node_modules/supports-color": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", - "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", - "dependencies": { - "has-flag": "^3.0.0" - }, - "engines": { - "node": ">=6" - } - }, "node_modules/postcss-normalize-positions": { "version": "4.0.2", "resolved": "https://registry.npmjs.org/postcss-normalize-positions/-/postcss-normalize-positions-4.0.2.tgz", @@ -12878,13 +11215,12 @@ } }, "node_modules/postcss-normalize-positions/node_modules/postcss": { - "version": "7.0.36", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.36.tgz", - "integrity": "sha512-BebJSIUMwJHRH0HAQoxN4u1CN86glsrwsW0q7T+/m44eXOUAxSNdHRkNZPYz5vVUbg17hFgOQDE7fZk7li3pZw==", + "version": "7.0.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", "dependencies": { - "chalk": "^2.4.2", - "source-map": "^0.6.1", - "supports-color": "^6.1.0" + "picocolors": "^0.2.1", + "source-map": "^0.6.1" }, "engines": { "node": ">=6.0.0" @@ -12907,17 +11243,6 @@ "node": ">=0.10.0" } }, - "node_modules/postcss-normalize-positions/node_modules/supports-color": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", - "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", - "dependencies": { - "has-flag": "^3.0.0" - }, - "engines": { - "node": ">=6" - } - }, "node_modules/postcss-normalize-repeat-style": { "version": "4.0.2", "resolved": "https://registry.npmjs.org/postcss-normalize-repeat-style/-/postcss-normalize-repeat-style-4.0.2.tgz", @@ -12933,13 +11258,12 @@ } }, "node_modules/postcss-normalize-repeat-style/node_modules/postcss": { - "version": "7.0.36", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.36.tgz", - "integrity": "sha512-BebJSIUMwJHRH0HAQoxN4u1CN86glsrwsW0q7T+/m44eXOUAxSNdHRkNZPYz5vVUbg17hFgOQDE7fZk7li3pZw==", + "version": "7.0.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", "dependencies": { - "chalk": "^2.4.2", - "source-map": "^0.6.1", - "supports-color": "^6.1.0" + "picocolors": "^0.2.1", + "source-map": "^0.6.1" }, "engines": { "node": ">=6.0.0" @@ -12962,17 +11286,6 @@ "node": ">=0.10.0" } }, - "node_modules/postcss-normalize-repeat-style/node_modules/supports-color": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", - "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", - "dependencies": { - "has-flag": "^3.0.0" - }, - "engines": { - "node": ">=6" - } - }, "node_modules/postcss-normalize-string": { "version": "4.0.2", "resolved": "https://registry.npmjs.org/postcss-normalize-string/-/postcss-normalize-string-4.0.2.tgz", @@ -12987,13 +11300,12 @@ } }, "node_modules/postcss-normalize-string/node_modules/postcss": { - "version": "7.0.36", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.36.tgz", - "integrity": "sha512-BebJSIUMwJHRH0HAQoxN4u1CN86glsrwsW0q7T+/m44eXOUAxSNdHRkNZPYz5vVUbg17hFgOQDE7fZk7li3pZw==", + "version": "7.0.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", "dependencies": { - "chalk": "^2.4.2", - "source-map": "^0.6.1", - "supports-color": "^6.1.0" + "picocolors": "^0.2.1", + "source-map": "^0.6.1" }, "engines": { "node": ">=6.0.0" @@ -13016,17 +11328,6 @@ "node": ">=0.10.0" } }, - "node_modules/postcss-normalize-string/node_modules/supports-color": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", - "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", - "dependencies": { - "has-flag": "^3.0.0" - }, - "engines": { - "node": ">=6" - } - }, "node_modules/postcss-normalize-timing-functions": { "version": "4.0.2", "resolved": "https://registry.npmjs.org/postcss-normalize-timing-functions/-/postcss-normalize-timing-functions-4.0.2.tgz", @@ -13041,13 +11342,12 @@ } }, "node_modules/postcss-normalize-timing-functions/node_modules/postcss": { - "version": "7.0.36", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.36.tgz", - "integrity": "sha512-BebJSIUMwJHRH0HAQoxN4u1CN86glsrwsW0q7T+/m44eXOUAxSNdHRkNZPYz5vVUbg17hFgOQDE7fZk7li3pZw==", + "version": "7.0.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", "dependencies": { - "chalk": "^2.4.2", - "source-map": "^0.6.1", - "supports-color": "^6.1.0" + "picocolors": "^0.2.1", + "source-map": "^0.6.1" }, "engines": { "node": ">=6.0.0" @@ -13070,17 +11370,6 @@ "node": ">=0.10.0" } }, - "node_modules/postcss-normalize-timing-functions/node_modules/supports-color": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", - "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", - "dependencies": { - "has-flag": "^3.0.0" - }, - "engines": { - "node": ">=6" - } - }, "node_modules/postcss-normalize-unicode": { "version": "4.0.1", "resolved": "https://registry.npmjs.org/postcss-normalize-unicode/-/postcss-normalize-unicode-4.0.1.tgz", @@ -13095,13 +11384,12 @@ } }, "node_modules/postcss-normalize-unicode/node_modules/postcss": { - "version": "7.0.36", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.36.tgz", - "integrity": "sha512-BebJSIUMwJHRH0HAQoxN4u1CN86glsrwsW0q7T+/m44eXOUAxSNdHRkNZPYz5vVUbg17hFgOQDE7fZk7li3pZw==", + "version": "7.0.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", "dependencies": { - "chalk": "^2.4.2", - "source-map": "^0.6.1", - "supports-color": "^6.1.0" + "picocolors": "^0.2.1", + "source-map": "^0.6.1" }, "engines": { "node": ">=6.0.0" @@ -13124,17 +11412,6 @@ "node": ">=0.10.0" } }, - "node_modules/postcss-normalize-unicode/node_modules/supports-color": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", - "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", - "dependencies": { - "has-flag": "^3.0.0" - }, - "engines": { - "node": ">=6" - } - }, "node_modules/postcss-normalize-url": { "version": "4.0.1", "resolved": "https://registry.npmjs.org/postcss-normalize-url/-/postcss-normalize-url-4.0.1.tgz", @@ -13150,13 +11427,12 @@ } }, "node_modules/postcss-normalize-url/node_modules/postcss": { - "version": "7.0.36", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.36.tgz", - "integrity": "sha512-BebJSIUMwJHRH0HAQoxN4u1CN86glsrwsW0q7T+/m44eXOUAxSNdHRkNZPYz5vVUbg17hFgOQDE7fZk7li3pZw==", + "version": "7.0.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", "dependencies": { - "chalk": "^2.4.2", - "source-map": "^0.6.1", - "supports-color": "^6.1.0" + "picocolors": "^0.2.1", + "source-map": "^0.6.1" }, "engines": { "node": ">=6.0.0" @@ -13179,17 +11455,6 @@ "node": ">=0.10.0" } }, - "node_modules/postcss-normalize-url/node_modules/supports-color": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", - "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", - "dependencies": { - "has-flag": "^3.0.0" - }, - "engines": { - "node": ">=6" - } - }, "node_modules/postcss-normalize-whitespace": { "version": "4.0.2", "resolved": "https://registry.npmjs.org/postcss-normalize-whitespace/-/postcss-normalize-whitespace-4.0.2.tgz", @@ -13203,13 +11468,12 @@ } }, "node_modules/postcss-normalize-whitespace/node_modules/postcss": { - "version": "7.0.36", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.36.tgz", - "integrity": "sha512-BebJSIUMwJHRH0HAQoxN4u1CN86glsrwsW0q7T+/m44eXOUAxSNdHRkNZPYz5vVUbg17hFgOQDE7fZk7li3pZw==", + "version": "7.0.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", "dependencies": { - "chalk": "^2.4.2", - "source-map": "^0.6.1", - "supports-color": "^6.1.0" + "picocolors": "^0.2.1", + "source-map": "^0.6.1" }, "engines": { "node": ">=6.0.0" @@ -13232,17 +11496,6 @@ "node": ">=0.10.0" } }, - "node_modules/postcss-normalize-whitespace/node_modules/supports-color": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", - "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", - "dependencies": { - "has-flag": "^3.0.0" - }, - "engines": { - "node": ">=6" - } - }, "node_modules/postcss-ordered-values": { "version": "4.1.2", "resolved": "https://registry.npmjs.org/postcss-ordered-values/-/postcss-ordered-values-4.1.2.tgz", @@ -13257,13 +11510,12 @@ } }, "node_modules/postcss-ordered-values/node_modules/postcss": { - "version": "7.0.36", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.36.tgz", - "integrity": "sha512-BebJSIUMwJHRH0HAQoxN4u1CN86glsrwsW0q7T+/m44eXOUAxSNdHRkNZPYz5vVUbg17hFgOQDE7fZk7li3pZw==", + "version": "7.0.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", "dependencies": { - "chalk": "^2.4.2", - "source-map": "^0.6.1", - "supports-color": "^6.1.0" + "picocolors": "^0.2.1", + "source-map": "^0.6.1" }, "engines": { "node": ">=6.0.0" @@ -13286,17 +11538,6 @@ "node": ">=0.10.0" } }, - "node_modules/postcss-ordered-values/node_modules/supports-color": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", - "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", - "dependencies": { - "has-flag": "^3.0.0" - }, - "engines": { - "node": ">=6" - } - }, "node_modules/postcss-reduce-initial": { "version": "4.0.3", "resolved": "https://registry.npmjs.org/postcss-reduce-initial/-/postcss-reduce-initial-4.0.3.tgz", @@ -13312,13 +11553,12 @@ } }, "node_modules/postcss-reduce-initial/node_modules/postcss": { - "version": "7.0.36", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.36.tgz", - "integrity": "sha512-BebJSIUMwJHRH0HAQoxN4u1CN86glsrwsW0q7T+/m44eXOUAxSNdHRkNZPYz5vVUbg17hFgOQDE7fZk7li3pZw==", + "version": "7.0.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", "dependencies": { - "chalk": "^2.4.2", - "source-map": "^0.6.1", - "supports-color": "^6.1.0" + "picocolors": "^0.2.1", + "source-map": "^0.6.1" }, "engines": { "node": ">=6.0.0" @@ -13336,17 +11576,6 @@ "node": ">=0.10.0" } }, - "node_modules/postcss-reduce-initial/node_modules/supports-color": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", - "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", - "dependencies": { - "has-flag": "^3.0.0" - }, - "engines": { - "node": ">=6" - } - }, "node_modules/postcss-reduce-transforms": { "version": "4.0.2", "resolved": "https://registry.npmjs.org/postcss-reduce-transforms/-/postcss-reduce-transforms-4.0.2.tgz", @@ -13362,13 +11591,12 @@ } }, "node_modules/postcss-reduce-transforms/node_modules/postcss": { - "version": "7.0.36", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.36.tgz", - "integrity": "sha512-BebJSIUMwJHRH0HAQoxN4u1CN86glsrwsW0q7T+/m44eXOUAxSNdHRkNZPYz5vVUbg17hFgOQDE7fZk7li3pZw==", + "version": "7.0.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", "dependencies": { - "chalk": "^2.4.2", - "source-map": "^0.6.1", - "supports-color": "^6.1.0" + "picocolors": "^0.2.1", + "source-map": "^0.6.1" }, "engines": { "node": ">=6.0.0" @@ -13391,17 +11619,6 @@ "node": ">=0.10.0" } }, - "node_modules/postcss-reduce-transforms/node_modules/supports-color": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", - "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", - "dependencies": { - "has-flag": "^3.0.0" - }, - "engines": { - "node": ">=6" - } - }, "node_modules/postcss-selector-parser": { "version": "6.0.6", "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.6.tgz", @@ -13428,13 +11645,12 @@ } }, "node_modules/postcss-svgo/node_modules/postcss": { - "version": "7.0.36", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.36.tgz", - "integrity": "sha512-BebJSIUMwJHRH0HAQoxN4u1CN86glsrwsW0q7T+/m44eXOUAxSNdHRkNZPYz5vVUbg17hFgOQDE7fZk7li3pZw==", + "version": "7.0.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", "dependencies": { - "chalk": "^2.4.2", - "source-map": "^0.6.1", - "supports-color": "^6.1.0" + "picocolors": "^0.2.1", + "source-map": "^0.6.1" }, "engines": { "node": ">=6.0.0" @@ -13457,17 +11673,6 @@ "node": ">=0.10.0" } }, - "node_modules/postcss-svgo/node_modules/supports-color": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", - "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", - "dependencies": { - "has-flag": "^3.0.0" - }, - "engines": { - "node": ">=6" - } - }, "node_modules/postcss-unique-selectors": { "version": "4.0.1", "resolved": "https://registry.npmjs.org/postcss-unique-selectors/-/postcss-unique-selectors-4.0.1.tgz", @@ -13482,13 +11687,12 @@ } }, "node_modules/postcss-unique-selectors/node_modules/postcss": { - "version": "7.0.36", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.36.tgz", - "integrity": "sha512-BebJSIUMwJHRH0HAQoxN4u1CN86glsrwsW0q7T+/m44eXOUAxSNdHRkNZPYz5vVUbg17hFgOQDE7fZk7li3pZw==", + "version": "7.0.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", "dependencies": { - "chalk": "^2.4.2", - "source-map": "^0.6.1", - "supports-color": "^6.1.0" + "picocolors": "^0.2.1", + "source-map": "^0.6.1" }, "engines": { "node": ">=6.0.0" @@ -13506,17 +11710,6 @@ "node": ">=0.10.0" } }, - "node_modules/postcss-unique-selectors/node_modules/supports-color": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", - "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", - "dependencies": { - "has-flag": "^3.0.0" - }, - "engines": { - "node": ">=6" - } - }, "node_modules/postcss-value-parser": { "version": "4.1.0", "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.1.0.tgz", @@ -13677,9 +11870,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", @@ -13717,6 +11910,64 @@ "node": ">=6" } }, + "node_modules/purgecss": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/purgecss/-/purgecss-2.3.0.tgz", + "integrity": "sha512-BE5CROfVGsx2XIhxGuZAT7rTH9lLeQx/6M0P7DTXQH4IUc3BBzs9JUzt4yzGf3JrH9enkeq6YJBe9CTtkm1WmQ==", + "dependencies": { + "commander": "^5.0.0", + "glob": "^7.0.0", + "postcss": "7.0.32", + "postcss-selector-parser": "^6.0.2" + }, + "bin": { + "purgecss": "bin/purgecss" + } + }, + "node_modules/purgecss/node_modules/commander": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-5.1.0.tgz", + "integrity": "sha512-P0CysNDQ7rtVw4QIQtm+MRxV66vKFSvlsQvGYXZWR3qFU0jlMKHZZZgw8e+8DSah4UDKMqnknRDQz+xuQXQ/Zg==", + "engines": { + "node": ">= 6" + } + }, + "node_modules/purgecss/node_modules/postcss": { + "version": "7.0.32", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.32.tgz", + "integrity": "sha512-03eXong5NLnNCD05xscnGKGDZ98CyzoqPSMjOe6SuoQY7Z2hIj0Ld1g/O/UQRuOle2aRtiIRDg9tDcTGAkLfKw==", + "dependencies": { + "chalk": "^2.4.2", + "source-map": "^0.6.1", + "supports-color": "^6.1.0" + }, + "engines": { + "node": ">=6.0.0" + }, + "funding": { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/postcss" + } + }, + "node_modules/purgecss/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/purgecss/node_modules/supports-color": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", + "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", + "dependencies": { + "has-flag": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, "node_modules/q": { "version": "1.5.1", "resolved": "https://registry.npmjs.org/q/-/q-1.5.1.tgz", @@ -14286,9 +12537,9 @@ } }, "node_modules/robust-orientation": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/robust-orientation/-/robust-orientation-1.1.3.tgz", - "integrity": "sha1-2v9bANO+TmByLw6cAVbvln8cIEk=", + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/robust-orientation/-/robust-orientation-1.2.1.tgz", + "integrity": "sha512-FuTptgKwY6iNuU15nrIJDLjXzCChWB+T4AvksRtwPS/WZ3HuP1CElCm1t+OBfgQKfWbtZIawip+61k7+buRKAg==", "dependencies": { "robust-scale": "^1.0.2", "robust-subtract": "^1.0.0", @@ -14366,6 +12617,11 @@ "integrity": "sha512-hcVC3wYEziELGGmEEXue7D75zbwIIVUMWAVbHItGPx0ziyXxrOMQx4rQEVEV45Ut/1IotuEvwqPopzIOkDMf0A==", "dev": true }, + "node_modules/safari-14-idb-fix": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/safari-14-idb-fix/-/safari-14-idb-fix-3.0.0.tgz", + "integrity": "sha512-eBNFLob4PMq8JA1dGyFn6G97q3/WzNtFK4RnzT1fnLq+9RyrGknzYiM/9B12MnKAxuj1IXr7UKYtTNtjyKMBog==" + }, "node_modules/safe-buffer": { "version": "5.2.1", "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", @@ -14675,15 +12931,16 @@ "node": ">=0.10.0" } }, - "node_modules/shell-quote": { - "version": "1.7.2", - "resolved": "https://registry.npmjs.org/shell-quote/-/shell-quote-1.7.2.tgz", - "integrity": "sha512-mRz/m/JVscCrkMyPqHc/bczi3OQHkLTqXHEFu0zDhK/qfv3UcOA4SVmRCLmos4bhjr9ekVQubj/R7waKapmiQg==" - }, - "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/shelljs": { + "version": "0.2.6", + "resolved": "https://registry.npmjs.org/shelljs/-/shelljs-0.2.6.tgz", + "integrity": "sha1-kEktcv/MgVmXa6umL7D2iE8MM3g=", + "bin": { + "shjs": "bin/shjs" + }, + "engines": { + "node": ">=0.8.0" + } }, "node_modules/signal-exit": { "version": "3.0.3", @@ -14711,9 +12968,9 @@ ] }, "node_modules/simple-get": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/simple-get/-/simple-get-3.1.0.tgz", - "integrity": "sha512-bCR6cP+aTdScaQCnQKbPKtJOKDp/hj9EDLJo3Nw4y1QksqaovlW/bnptB6/c1e+qmNIDHRK+oXFDdEqBT8WzUA==", + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/simple-get/-/simple-get-3.1.1.tgz", + "integrity": "sha512-CQ5LTKGfCpvE1K0n2us+kuMPbk/q0EKl82s4aheV9oXjFEz6W/Y7oQFVJuU6QG77hRT4Ghb5RURteF5vnWjupA==", "dev": true, "dependencies": { "decompress-response": "^4.2.0", @@ -14936,6 +13193,7 @@ "version": "3.1.1", "resolved": "https://registry.npmjs.org/spdx-correct/-/spdx-correct-3.1.1.tgz", "integrity": "sha512-cOYcUWwhCuHCXi49RhFRCyJEK3iPj1Ziz9DpViV3tbZOwXD49QzIN3MpOLJNxh2qwq2lJJZaKMVw9qNi4jTC0w==", + "dev": true, "dependencies": { "spdx-expression-parse": "^3.0.0", "spdx-license-ids": "^3.0.0" @@ -14944,12 +13202,14 @@ "node_modules/spdx-exceptions": { "version": "2.3.0", "resolved": "https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.3.0.tgz", - "integrity": "sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A==" + "integrity": "sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A==", + "dev": true }, "node_modules/spdx-expression-parse": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz", "integrity": "sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==", + "dev": true, "dependencies": { "spdx-exceptions": "^2.1.0", "spdx-license-ids": "^3.0.0" @@ -14958,7 +13218,13 @@ "node_modules/spdx-license-ids": { "version": "3.0.7", "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.7.tgz", - "integrity": "sha512-U+MTEOO0AiDzxwFvoa4JVnMV6mZlJKk2sBLt90s7G0Gd0Mlknc7kxEn3nuDPNZRta7O2uy8oLcZLVT+4sqNZHQ==" + "integrity": "sha512-U+MTEOO0AiDzxwFvoa4JVnMV6mZlJKk2sBLt90s7G0Gd0Mlknc7kxEn3nuDPNZRta7O2uy8oLcZLVT+4sqNZHQ==", + "dev": true + }, + "node_modules/splaytree": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/splaytree/-/splaytree-3.1.0.tgz", + "integrity": "sha512-gvUGR7xnOy0fLKTCxDeUZYgU/I1Tdf8M/lM1Qrf8L2TIOR5ipZjGk02uYcdv0o2x7WjVRgpm3iS2clLyuVAt0Q==" }, "node_modules/split": { "version": "0.2.10", @@ -15237,22 +13503,6 @@ "node": ">=0.10.0" } }, - "node_modules/string.prototype.padend": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/string.prototype.padend/-/string.prototype.padend-3.1.2.tgz", - "integrity": "sha512-/AQFLdYvePENU3W5rgurfWSMU6n+Ww8n/3cUt7E+vPBB/D7YDG8x+qjoFs4M/alR2bW7Qg6xMjVwWUOvuQ0XpQ==", - "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.3", - "es-abstract": "^1.18.0-next.2" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, "node_modules/string.prototype.trimend": { "version": "1.0.4", "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.4.tgz", @@ -15338,13 +13588,12 @@ } }, "node_modules/stylehacks/node_modules/postcss": { - "version": "7.0.36", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.36.tgz", - "integrity": "sha512-BebJSIUMwJHRH0HAQoxN4u1CN86glsrwsW0q7T+/m44eXOUAxSNdHRkNZPYz5vVUbg17hFgOQDE7fZk7li3pZw==", + "version": "7.0.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", "dependencies": { - "chalk": "^2.4.2", - "source-map": "^0.6.1", - "supports-color": "^6.1.0" + "picocolors": "^0.2.1", + "source-map": "^0.6.1" }, "engines": { "node": ">=6.0.0" @@ -15375,17 +13624,6 @@ "node": ">=0.10.0" } }, - "node_modules/stylehacks/node_modules/supports-color": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", - "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", - "dependencies": { - "has-flag": "^3.0.0" - }, - "engines": { - "node": ">=6" - } - }, "node_modules/suncalc": { "version": "1.8.0", "resolved": "https://registry.npmjs.org/suncalc/-/suncalc-1.8.0.tgz", @@ -15411,10 +13649,35 @@ "node": ">=6.9.5" } }, + "node_modules/svg-resizer": { + "version": "0.0.1", + "resolved": "git+ssh://git@github.com/vieron/svg-resizer.git#00968cb3e7248533ab9451ce7dffa8af288e4f4a", + "license": "MIT", + "dependencies": { + "fs-extra": "~0.8.1", + "lodash": "~2.4.1", + "nomnom": "~1.6.2", + "shelljs": "~0.2.6", + "xml2js": "~0.4.2" + }, + "bin": { + "svg-resizer": "svg-resizer.js" + } + }, + "node_modules/svg-resizer/node_modules/lodash": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/lodash/-/lodash-2.4.2.tgz", + "integrity": "sha1-+t2DS5aDBz2hebPq5tnA0VBT9z4=", + "engines": [ + "node", + "rhino" + ] + }, "node_modules/svgo": { "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", @@ -15903,12 +14166,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", @@ -15975,17 +14232,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", @@ -15994,33 +14240,10 @@ "node": ">=0.6" } }, - "node_modules/topojson": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/topojson/-/topojson-3.0.2.tgz", - "integrity": "sha512-u3zeuL6WEVL0dmsRn7uHZKc4Ao4gpW3sORUv+N3ezLTvY3JdCuyg0hvpWiIfFw8p/JwVN++SvAsFgcFEeR15rQ==", - "deprecated": "Use topojson-client, topojson-server or topojson-simplify directly.", - "dependencies": { - "topojson-client": "3.0.0", - "topojson-server": "3.0.0", - "topojson-simplify": "3.0.2" - }, - "bin": { - "geo2topo": "node_modules/topojson-server/bin/geo2topo", - "topo2geo": "node_modules/topojson-client/bin/topo2geo", - "topomerge": "node_modules/topojson-client/bin/topomerge", - "topoquantize": "node_modules/topojson-client/bin/topoquantize", - "toposimplify": "node_modules/topojson-simplify/bin/toposimplify" - } - }, - "node_modules/topojson/node_modules/commander": { - "version": "2.20.3", - "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", - "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==" - }, - "node_modules/topojson/node_modules/topojson-client": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/topojson-client/-/topojson-client-3.0.0.tgz", - "integrity": "sha1-H5kpOnfvQqRI0DKoGqmCtz82DS8=", + "node_modules/topojson-client": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/topojson-client/-/topojson-client-3.1.0.tgz", + "integrity": "sha512-605uxS6bcYxGXw9qi62XyrV6Q3xwbndjachmNxu8HWTtVPxZfEJN9fd/SZS1Q54Sn2y0TMyMxFj/cJINqGHrKw==", "dependencies": { "commander": "2" }, @@ -16030,10 +14253,15 @@ "topoquantize": "bin/topoquantize" } }, - "node_modules/topojson/node_modules/topojson-server": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/topojson-server/-/topojson-server-3.0.0.tgz", - "integrity": "sha1-N4546Hw5cqe1vixdYENptrrmnF4=", + "node_modules/topojson-client/node_modules/commander": { + "version": "2.20.3", + "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", + "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==" + }, + "node_modules/topojson-server": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/topojson-server/-/topojson-server-3.0.1.tgz", + "integrity": "sha512-/VS9j/ffKr2XAOjlZ9CgyyeLmgJ9dMwq6Y0YEON8O7p/tGGk+dCWnrE03zEdu7i4L7YsFZLEPZPzCvcB7lEEXw==", "dependencies": { "commander": "2" }, @@ -16041,17 +14269,10 @@ "geo2topo": "bin/geo2topo" } }, - "node_modules/topojson/node_modules/topojson-simplify": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/topojson-simplify/-/topojson-simplify-3.0.2.tgz", - "integrity": "sha512-gyYSVRt4jO/0RJXKZQPzTDQRWV+D/nOfiljNUv0HBXslFLtq3yxRHrl7jbrjdbda5Ytdr7M8BZUI4OxU7tnbRQ==", - "dependencies": { - "commander": "2", - "topojson-client": "3" - }, - "bin": { - "toposimplify": "bin/toposimplify" - } + "node_modules/topojson-server/node_modules/commander": { + "version": "2.20.3", + "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", + "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==" }, "node_modules/tough-cookie": { "version": "2.5.0", @@ -16153,6 +14374,7 @@ "version": "9.1.1", "resolved": "https://registry.npmjs.org/ts-node/-/ts-node-9.1.1.tgz", "integrity": "sha512-hPlt7ZACERQGf03M253ytLY3dHbGNGrAq9qIHWUY9XHYl1z7wYngSr3OQ5xmui8o2AaxsONxIzjafLUiWBo1Fg==", + "devOptional": true, "dependencies": { "arg": "^4.1.0", "create-require": "^1.1.0", @@ -16421,17 +14643,6 @@ "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==" }, - "node_modules/tslint/node_modules/mkdirp": { - "version": "0.5.5", - "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.5.tgz", - "integrity": "sha512-NKmAlESf6jMGym1++R0Ra7wvhV+wFW63FaSOFPwRahvea0gMUcGUhVeAg/0BC0wiv9ih5NYPB1Wn1UEI1/L+xQ==", - "dependencies": { - "minimist": "^1.2.5" - }, - "bin": { - "mkdirp": "bin/cmd.js" - } - }, "node_modules/tslint/node_modules/semver": { "version": "5.7.1", "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", @@ -16467,6 +14678,60 @@ "node": "*" } }, + "node_modules/turf": { + "version": "3.0.14", + "resolved": "https://registry.npmjs.org/turf/-/turf-3.0.14.tgz", + "integrity": "sha1-6y9KgKLVg7jGSGvHtccZBGaGbCc=", + "deprecated": "This package has moved: use @turf/turf instead", + "dependencies": { + "turf-along": "^3.0.12", + "turf-area": "^3.0.12", + "turf-bbox": "^3.0.12", + "turf-bbox-polygon": "^3.0.12", + "turf-bearing": "^3.0.12", + "turf-bezier": "^3.0.12", + "turf-buffer": "^3.0.12", + "turf-center": "^3.0.12", + "turf-centroid": "^3.0.12", + "turf-circle": "^3.0.12", + "turf-collect": "^3.0.12", + "turf-combine": "^3.0.12", + "turf-concave": "^3.0.12", + "turf-convex": "^3.0.12", + "turf-destination": "^3.0.12", + "turf-difference": "^3.0.12", + "turf-distance": "^3.0.12", + "turf-envelope": "^3.0.12", + "turf-explode": "^3.0.12", + "turf-flip": "^3.0.12", + "turf-helpers": "^3.0.12", + "turf-hex-grid": "^3.0.12", + "turf-inside": "^3.0.12", + "turf-intersect": "^3.0.12", + "turf-isolines": "^3.0.12", + "turf-kinks": "^3.0.12", + "turf-line-distance": "^3.0.12", + "turf-line-slice": "^3.0.12", + "turf-meta": "^3.0.12", + "turf-midpoint": "^3.0.12", + "turf-nearest": "^3.0.12", + "turf-planepoint": "^3.0.12", + "turf-point-grid": "^3.0.12", + "turf-point-on-line": "^3.0.12", + "turf-point-on-surface": "^3.0.12", + "turf-random": "^3.0.12", + "turf-sample": "^3.0.12", + "turf-simplify": "^3.0.12", + "turf-square": "^3.0.12", + "turf-square-grid": "^3.0.12", + "turf-tag": "^3.0.12", + "turf-tesselate": "^3.0.12", + "turf-tin": "^3.0.12", + "turf-triangle-grid": "^3.0.12", + "turf-union": "^3.0.12", + "turf-within": "^3.0.12" + } + }, "node_modules/turf-along": { "version": "3.0.12", "resolved": "https://registry.npmjs.org/turf-along/-/turf-along-3.0.12.tgz", @@ -17104,13 +15369,12 @@ } }, "node_modules/uncss/node_modules/postcss": { - "version": "7.0.36", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.36.tgz", - "integrity": "sha512-BebJSIUMwJHRH0HAQoxN4u1CN86glsrwsW0q7T+/m44eXOUAxSNdHRkNZPYz5vVUbg17hFgOQDE7fZk7li3pZw==", + "version": "7.0.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", "dependencies": { - "chalk": "^2.4.2", - "source-map": "^0.6.1", - "supports-color": "^6.1.0" + "picocolors": "^0.2.1", + "source-map": "^0.6.1" }, "engines": { "node": ">=6.0.0" @@ -17141,17 +15405,6 @@ "node": ">=0.10.0" } }, - "node_modules/uncss/node_modules/supports-color": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", - "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", - "dependencies": { - "has-flag": "^3.0.0" - }, - "engines": { - "node": ">=6" - } - }, "node_modules/underscore": { "version": "1.7.0", "resolved": "https://registry.npmjs.org/underscore/-/underscore-1.7.0.tgz", @@ -17394,6 +15647,7 @@ "version": "3.0.4", "resolved": "https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz", "integrity": "sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==", + "dev": true, "dependencies": { "spdx-correct": "^3.0.0", "spdx-expression-parse": "^3.0.0" @@ -17691,30 +15945,38 @@ } }, "node_modules/ws": { - "version": "5.2.2", - "resolved": "https://registry.npmjs.org/ws/-/ws-5.2.2.tgz", - "integrity": "sha512-jaHFD6PFv6UgoIVda6qZllptQsMlDEJkTQcybzzXDYM1XO9Y8em691FGMPmM46WGyLU4z9KMgQN+qrux/nhlHA==", + "version": "5.2.3", + "resolved": "https://registry.npmjs.org/ws/-/ws-5.2.3.tgz", + "integrity": "sha512-jZArVERrMsKUatIdnLzqvcfydI85dvd/Fp1u/VOpfdDWQ4c9qWXe+VIeAbQ5FrDwciAkr+lzofXLz3Kuf26AOA==", "dependencies": { "async-limiter": "~1.0.0" } }, - "node_modules/xdiff": { - "version": "0.2.11", - "resolved": "https://registry.npmjs.org/xdiff/-/xdiff-0.2.11.tgz", - "integrity": "sha1-cj1SPhtvJlojPK/HeGBiLqXS2Mg=", - "dev": true, - "dependencies": { - "adiff": "~0.2.4" - }, - "engines": { - "node": "*" - } - }, "node_modules/xml-name-validator": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/xml-name-validator/-/xml-name-validator-3.0.0.tgz", "integrity": "sha512-A5CUptxDsvxKJEU3yO6DuWBSJz/qizqzJKOMIfUJHETbBw/sFaDxgd6fxm1ewUaM0jZ444Fc5vC5ROYurg/4Pw==" }, + "node_modules/xml2js": { + "version": "0.4.23", + "resolved": "https://registry.npmjs.org/xml2js/-/xml2js-0.4.23.tgz", + "integrity": "sha512-ySPiMjM0+pLDftHgXY4By0uswI3SPKLDw/i3UXbnO8M/p28zqexCUoPmQFrYD+/1BzhGJSs2i1ERWKJAtiLrug==", + "dependencies": { + "sax": ">=0.6.0", + "xmlbuilder": "~11.0.0" + }, + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/xmlbuilder": { + "version": "11.0.1", + "resolved": "https://registry.npmjs.org/xmlbuilder/-/xmlbuilder-11.0.1.tgz", + "integrity": "sha512-fDlsI/kFEx7gLvbecc0/ohLG50fugQp8ryHzMTuW9vSa1GJ0XYWKnhsUx7oie3G98+r56aTQIUB4kht42R3JvA==", + "engines": { + "node": ">=4.0" + } + }, "node_modules/xmlchars": { "version": "2.2.0", "resolved": "https://registry.npmjs.org/xmlchars/-/xmlchars-2.2.0.tgz", @@ -17835,6 +16097,7 @@ "version": "3.1.1", "resolved": "https://registry.npmjs.org/yn/-/yn-3.1.1.tgz", "integrity": "sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q==", + "devOptional": true, "engines": { "node": ">=6" } @@ -19016,16 +17279,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", @@ -19122,1304 +17375,1252 @@ } }, "@turf/along": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/@turf/along/-/along-6.3.0.tgz", - "integrity": "sha512-2j0nHp38IuzESyv5/9hLYM2MuUe155Kw390lkQtiLjhRtTeYQNEaRy+uhZhf3/DWrjGULH1HatLc5j0CmiwrJA==", + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/along/-/along-6.5.0.tgz", + "integrity": "sha512-LLyWQ0AARqJCmMcIEAXF4GEu8usmd4Kbz3qk1Oy5HoRNpZX47+i5exQtmIWKdqJ1MMhW26fCTXgpsEs5zgJ5gw==", "requires": { - "@turf/bearing": "^6.3.0", - "@turf/destination": "^6.3.0", - "@turf/distance": "^6.3.0", - "@turf/helpers": "^6.3.0", - "@turf/invariant": "^6.3.0" + "@turf/bearing": "^6.5.0", + "@turf/destination": "^6.5.0", + "@turf/distance": "^6.5.0", + "@turf/helpers": "^6.5.0", + "@turf/invariant": "^6.5.0" } }, "@turf/angle": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/@turf/angle/-/angle-6.3.0.tgz", - "integrity": "sha512-wCWoK+7JKGYPZKYxdWwJJfqm1IQbUdOf4j5SENO6WJryXViM/ogRu2eAEqrmyrMYO84vonMSqiuPEuGoLqo9Xg==", + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/angle/-/angle-6.5.0.tgz", + "integrity": "sha512-4pXMbWhFofJJAOvTMCns6N4C8CMd5Ih4O2jSAG9b3dDHakj3O4yN1+Zbm+NUei+eVEZ9gFeVp9svE3aMDenIkw==", "requires": { - "@turf/bearing": "^6.3.0", - "@turf/helpers": "^6.3.0", - "@turf/invariant": "^6.3.0", - "@turf/rhumb-bearing": "^6.3.0" + "@turf/bearing": "^6.5.0", + "@turf/helpers": "^6.5.0", + "@turf/invariant": "^6.5.0", + "@turf/rhumb-bearing": "^6.5.0" } }, "@turf/area": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/@turf/area/-/area-6.3.0.tgz", - "integrity": "sha512-Y1cYyAQ2fk94npdgOeMF4msc2uabHY1m7A7ntixf1I8rkyDd6/iHh1IMy1QsM+VZXAEwDwsXhu+ZFYd3Jkeg4A==", + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/area/-/area-6.5.0.tgz", + "integrity": "sha512-xCZdiuojokLbQ+29qR6qoMD89hv+JAgWjLrwSEWL+3JV8IXKeNFl6XkEJz9HGkVpnXvQKJoRz4/liT+8ZZ5Jyg==", "requires": { - "@turf/helpers": "^6.3.0", - "@turf/meta": "^6.3.0" + "@turf/helpers": "^6.5.0", + "@turf/meta": "^6.5.0" } }, "@turf/bbox": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/@turf/bbox/-/bbox-6.3.0.tgz", - "integrity": "sha512-N4ue5Xopu1qieSHP2MA/CJGWHPKaTrVXQJjzHRNcY1vtsO126xbSaJhWUrFc5x5vVkXp0dcucGryO0r5m4o/KA==", + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/bbox/-/bbox-6.5.0.tgz", + "integrity": "sha512-RBbLaao5hXTYyyg577iuMtDB8ehxMlUqHEJiMs8jT1GHkFhr6sYre3lmLsPeYEi/ZKj5TP5tt7fkzNdJ4GIVyw==", "requires": { - "@turf/helpers": "^6.3.0", - "@turf/meta": "^6.3.0" + "@turf/helpers": "^6.5.0", + "@turf/meta": "^6.5.0" } }, "@turf/bbox-clip": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/@turf/bbox-clip/-/bbox-clip-6.3.0.tgz", - "integrity": "sha512-DCFs1MdX3P7SzZiBjT1kWBp4g0cfv8Yn2/Ccq3JP4iVaqNQJujPfe0WwZjjTdXLbLLFTjoxnCJBjy3WZDmLvlw==", + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/bbox-clip/-/bbox-clip-6.5.0.tgz", + "integrity": "sha512-F6PaIRF8WMp8EmgU/Ke5B1Y6/pia14UAYB5TiBC668w5rVVjy5L8rTm/m2lEkkDMHlzoP9vNY4pxpNthE7rLcQ==", "requires": { - "@turf/helpers": "^6.3.0", - "@turf/invariant": "^6.3.0" + "@turf/helpers": "^6.5.0", + "@turf/invariant": "^6.5.0" } }, "@turf/bbox-polygon": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/@turf/bbox-polygon/-/bbox-polygon-6.3.0.tgz", - "integrity": "sha512-CCyTBM8LzGRu/lReNlgDyjRO8NojtJ7EPPvSl3bdKQbNFsCm25gwe7Y3xsaCkWLNn5g89lQJI9Izf9xdEsENjQ==", + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/bbox-polygon/-/bbox-polygon-6.5.0.tgz", + "integrity": "sha512-+/r0NyL1lOG3zKZmmf6L8ommU07HliP4dgYToMoTxqzsWzyLjaj/OzgQ8rBmv703WJX+aS6yCmLuIhYqyufyuw==", "requires": { - "@turf/helpers": "^6.3.0" + "@turf/helpers": "^6.5.0" } }, "@turf/bearing": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/@turf/bearing/-/bearing-6.3.0.tgz", - "integrity": "sha512-apuUm9xN6VQLO33m7F2mmzlm3dHfeesJjMSzh9iehGtgmp1IaVndjdcIvs0ieiwm8bN9UhwXpfPtO3pV0n9SFw==", + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/bearing/-/bearing-6.5.0.tgz", + "integrity": "sha512-dxINYhIEMzgDOztyMZc20I7ssYVNEpSv04VbMo5YPQsqa80KO3TFvbuCahMsCAW5z8Tncc8dwBlEFrmRjJG33A==", "requires": { - "@turf/helpers": "^6.3.0", - "@turf/invariant": "^6.3.0" + "@turf/helpers": "^6.5.0", + "@turf/invariant": "^6.5.0" } }, "@turf/bezier-spline": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/@turf/bezier-spline/-/bezier-spline-6.3.0.tgz", - "integrity": "sha512-5kJv7zLjuZPhjO8Z/eNT68UHwiDru6ihn2He0VFrnSJQJZI8V/TFXCob7GxncYFlKk7uHru8iMXGxFe3Y3P44w==", + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/bezier-spline/-/bezier-spline-6.5.0.tgz", + "integrity": "sha512-vokPaurTd4PF96rRgGVm6zYYC5r1u98ZsG+wZEv9y3kJTuJRX/O3xIY2QnTGTdbVmAJN1ouOsD0RoZYaVoXORQ==", "requires": { - "@turf/helpers": "^6.3.0", - "@turf/invariant": "^6.3.0" + "@turf/helpers": "^6.5.0", + "@turf/invariant": "^6.5.0" } }, "@turf/boolean-clockwise": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/@turf/boolean-clockwise/-/boolean-clockwise-6.3.0.tgz", - "integrity": "sha512-zW0j8uPjBS5QJqNmJIeatTH02E1S7OCuBNBvkoOUPifC/c2xJ120a1r73prBj1zMFr6k3UCjwG9V8whUMxIAYA==", + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/boolean-clockwise/-/boolean-clockwise-6.5.0.tgz", + "integrity": "sha512-45+C7LC5RMbRWrxh3Z0Eihsc8db1VGBO5d9BLTOAwU4jR6SgsunTfRWR16X7JUwIDYlCVEmnjcXJNi/kIU3VIw==", "requires": { - "@turf/helpers": "^6.3.0", - "@turf/invariant": "^6.3.0" + "@turf/helpers": "^6.5.0", + "@turf/invariant": "^6.5.0" } }, "@turf/boolean-contains": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/@turf/boolean-contains/-/boolean-contains-6.3.0.tgz", - "integrity": "sha512-1MW7B5G5tIu1lnAv3pXyFzl75wfBYnbA2GhwHDb4okIXMhloy/r5uIqAZHo0fOXykKVJS/gIfA/MioKIftoTug==", + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/boolean-contains/-/boolean-contains-6.5.0.tgz", + "integrity": "sha512-4m8cJpbw+YQcKVGi8y0cHhBUnYT+QRfx6wzM4GI1IdtYH3p4oh/DOBJKrepQyiDzFDaNIjxuWXBh0ai1zVwOQQ==", "requires": { - "@turf/bbox": "^6.3.0", - "@turf/boolean-point-in-polygon": "^6.3.0", - "@turf/boolean-point-on-line": "^6.3.0", - "@turf/helpers": "^6.3.0", - "@turf/invariant": "^6.3.0" + "@turf/bbox": "^6.5.0", + "@turf/boolean-point-in-polygon": "^6.5.0", + "@turf/boolean-point-on-line": "^6.5.0", + "@turf/helpers": "^6.5.0", + "@turf/invariant": "^6.5.0" } }, "@turf/boolean-crosses": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/@turf/boolean-crosses/-/boolean-crosses-6.3.0.tgz", - "integrity": "sha512-ajCuNSSqQPN2p3Y1ERX4E/wEsNn5JANI2uNgGOpVAeNX48prQGCBANcG2FTMMB+WVqq9iIdQ4eB5mEg6I8TS4w==", + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/boolean-crosses/-/boolean-crosses-6.5.0.tgz", + "integrity": "sha512-gvshbTPhAHporTlQwBJqyfW+2yV8q/mOTxG6PzRVl6ARsqNoqYQWkd4MLug7OmAqVyBzLK3201uAeBjxbGw0Ng==", "requires": { - "@turf/boolean-point-in-polygon": "^6.3.0", - "@turf/helpers": "^6.3.0", - "@turf/invariant": "^6.3.0", - "@turf/line-intersect": "^6.3.0", - "@turf/polygon-to-line": "^6.3.0" + "@turf/boolean-point-in-polygon": "^6.5.0", + "@turf/helpers": "^6.5.0", + "@turf/invariant": "^6.5.0", + "@turf/line-intersect": "^6.5.0", + "@turf/polygon-to-line": "^6.5.0" } }, "@turf/boolean-disjoint": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/@turf/boolean-disjoint/-/boolean-disjoint-6.3.0.tgz", - "integrity": "sha512-bVAwAJF05QPH0tf+qjR3kUcCyqTgYcCbXSMgXl6LQF6mSGuOutzNq1gCyRLCOdOcZtw4Oh4dqeP3ykwv8kDibw==", + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/boolean-disjoint/-/boolean-disjoint-6.5.0.tgz", + "integrity": "sha512-rZ2ozlrRLIAGo2bjQ/ZUu4oZ/+ZjGvLkN5CKXSKBcu6xFO6k2bgqeM8a1836tAW+Pqp/ZFsTA5fZHsJZvP2D5g==", "requires": { - "@turf/boolean-point-in-polygon": "^6.3.0", - "@turf/helpers": "^6.3.0", - "@turf/line-intersect": "^6.3.0", - "@turf/meta": "^6.3.0", - "@turf/polygon-to-line": "^6.3.0" + "@turf/boolean-point-in-polygon": "^6.5.0", + "@turf/helpers": "^6.5.0", + "@turf/line-intersect": "^6.5.0", + "@turf/meta": "^6.5.0", + "@turf/polygon-to-line": "^6.5.0" } }, "@turf/boolean-equal": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/@turf/boolean-equal/-/boolean-equal-6.3.0.tgz", - "integrity": "sha512-eXr3oSHTvJYGyu/v57uNg0tnDHFnu+triwAaXtBh7lozt4d2riU8Ow71B+tjT9mBe/JRFfXIDsBWjbyB37y/6w==", + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/boolean-equal/-/boolean-equal-6.5.0.tgz", + "integrity": "sha512-cY0M3yoLC26mhAnjv1gyYNQjn7wxIXmL2hBmI/qs8g5uKuC2hRWi13ydufE3k4x0aNRjFGlg41fjoYLwaVF+9Q==", "requires": { - "@turf/clean-coords": "^6.3.0", - "@turf/helpers": "^6.3.0", - "@turf/invariant": "^6.3.0", + "@turf/clean-coords": "^6.5.0", + "@turf/helpers": "^6.5.0", + "@turf/invariant": "^6.5.0", "geojson-equality": "0.1.6" } }, "@turf/boolean-intersects": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/@turf/boolean-intersects/-/boolean-intersects-6.3.0.tgz", - "integrity": "sha512-2pHOYqHSKDo0rzHTiqwdAaxa+tHLwr4NaTAjOpuN2hipv9bErzGtv3e5IYceJBnT0u4akK17NTn6qAr7/7g2aQ==", + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/boolean-intersects/-/boolean-intersects-6.5.0.tgz", + "integrity": "sha512-nIxkizjRdjKCYFQMnml6cjPsDOBCThrt+nkqtSEcxkKMhAQj5OO7o2CecioNTaX8EayqwMGVKcsz27oP4mKPTw==", "requires": { - "@turf/boolean-disjoint": "^6.3.0", - "@turf/helpers": "^6.3.0", - "@turf/meta": "^6.3.0" + "@turf/boolean-disjoint": "^6.5.0", + "@turf/helpers": "^6.5.0", + "@turf/meta": "^6.5.0" } }, "@turf/boolean-overlap": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/@turf/boolean-overlap/-/boolean-overlap-6.3.0.tgz", - "integrity": "sha512-rWh8JKTqlJ1m27FY8YeWcGoXutLyCVfSi2/8AOkXi2F+36P9GM4tHz19yKY3btbnHJTgSZf1xO2YhX2d0BmNqg==", + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/boolean-overlap/-/boolean-overlap-6.5.0.tgz", + "integrity": "sha512-8btMIdnbXVWUa1M7D4shyaSGxLRw6NjMcqKBcsTXcZdnaixl22k7ar7BvIzkaRYN3SFECk9VGXfLncNS3ckQUw==", "requires": { - "@turf/helpers": "^6.3.0", - "@turf/invariant": "^6.3.0", - "@turf/line-intersect": "^6.3.0", - "@turf/line-overlap": "^6.3.0", - "@turf/meta": "^6.3.0", + "@turf/helpers": "^6.5.0", + "@turf/invariant": "^6.5.0", + "@turf/line-intersect": "^6.5.0", + "@turf/line-overlap": "^6.5.0", + "@turf/meta": "^6.5.0", "geojson-equality": "0.1.6" } }, "@turf/boolean-parallel": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/@turf/boolean-parallel/-/boolean-parallel-6.3.0.tgz", - "integrity": "sha512-p5YcKtVON6fTE3+pffw16QZyg3uXRmZ8CNxZM7lhGrJrPnny7BD2Kz1z2fp+8EElf00kjX2vFbDjDftte4Xh3g==", + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/boolean-parallel/-/boolean-parallel-6.5.0.tgz", + "integrity": "sha512-aSHJsr1nq9e5TthZGZ9CZYeXklJyRgR5kCLm5X4urz7+MotMOp/LsGOsvKvK9NeUl9+8OUmfMn8EFTT8LkcvIQ==", "requires": { - "@turf/clean-coords": "^6.3.0", - "@turf/helpers": "^6.3.0", - "@turf/line-segment": "^6.3.0", - "@turf/rhumb-bearing": "^6.3.0" + "@turf/clean-coords": "^6.5.0", + "@turf/helpers": "^6.5.0", + "@turf/line-segment": "^6.5.0", + "@turf/rhumb-bearing": "^6.5.0" } }, "@turf/boolean-point-in-polygon": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/@turf/boolean-point-in-polygon/-/boolean-point-in-polygon-6.3.0.tgz", - "integrity": "sha512-NqFSsoE6OwhDK19IllDQRhEQEkF7UVEOlqH9vgS1fGg4T6NcyKvACJs05c9457tL7QSbV9ZS53f2qiLneFL+qg==", + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/boolean-point-in-polygon/-/boolean-point-in-polygon-6.5.0.tgz", + "integrity": "sha512-DtSuVFB26SI+hj0SjrvXowGTUCHlgevPAIsukssW6BG5MlNSBQAo70wpICBNJL6RjukXg8d2eXaAWuD/CqL00A==", "requires": { - "@turf/helpers": "^6.3.0", - "@turf/invariant": "^6.3.0" + "@turf/helpers": "^6.5.0", + "@turf/invariant": "^6.5.0" } }, "@turf/boolean-point-on-line": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/@turf/boolean-point-on-line/-/boolean-point-on-line-6.3.0.tgz", - "integrity": "sha512-eScH8sfKJVjfbEX5Hgkt1nA7A8DUoiYD1riUVqTp2xikujrMfnYRjFpL/UAo01v33cPKZlhCXp7NE86bdOSrYg==", + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/boolean-point-on-line/-/boolean-point-on-line-6.5.0.tgz", + "integrity": "sha512-A1BbuQ0LceLHvq7F/P7w3QvfpmZqbmViIUPHdNLvZimFNLo4e6IQunmzbe+8aSStH9QRZm3VOflyvNeXvvpZEQ==", "requires": { - "@turf/helpers": "^6.3.0", - "@turf/invariant": "^6.3.0" + "@turf/helpers": "^6.5.0", + "@turf/invariant": "^6.5.0" } }, "@turf/boolean-within": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/@turf/boolean-within/-/boolean-within-6.3.0.tgz", - "integrity": "sha512-8XtVbzPp6J+lqZtDWVyIwSyVAVcnuie82ub56JEAhCf9w8FX5Db3qXQ76pFcOyy/woeXLZY/nIR58Q79PusrRw==", + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/boolean-within/-/boolean-within-6.5.0.tgz", + "integrity": "sha512-YQB3oU18Inx35C/LU930D36RAVe7LDXk1kWsQ8mLmuqYn9YdPsDQTMTkLJMhoQ8EbN7QTdy333xRQ4MYgToteQ==", "requires": { - "@turf/bbox": "^6.3.0", - "@turf/boolean-point-in-polygon": "^6.3.0", - "@turf/boolean-point-on-line": "^6.3.0", - "@turf/helpers": "^6.3.0", - "@turf/invariant": "^6.3.0" + "@turf/bbox": "^6.5.0", + "@turf/boolean-point-in-polygon": "^6.5.0", + "@turf/boolean-point-on-line": "^6.5.0", + "@turf/helpers": "^6.5.0", + "@turf/invariant": "^6.5.0" } }, "@turf/buffer": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/@turf/buffer/-/buffer-6.3.0.tgz", - "integrity": "sha512-B0GWgJzmTaaw1GvTd+Df+ToKSYphz9d6hPCOwXbE2vS5DdZryoxBfxQ32LSX/hW/vx7TLf7E4M0VJBb+Sn1DKA==", + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/buffer/-/buffer-6.5.0.tgz", + "integrity": "sha512-qeX4N6+PPWbKqp1AVkBVWFerGjMYMUyencwfnkCesoznU6qvfugFHNAngNqIBVnJjZ5n8IFyOf+akcxnrt9sNg==", "requires": { - "@turf/bbox": "^6.3.0", - "@turf/center": "^6.3.0", - "@turf/helpers": "^6.3.0", - "@turf/meta": "^6.3.0", - "@turf/projection": "^6.3.0", + "@turf/bbox": "^6.5.0", + "@turf/center": "^6.5.0", + "@turf/helpers": "^6.5.0", + "@turf/meta": "^6.5.0", + "@turf/projection": "^6.5.0", "d3-geo": "1.7.1", "turf-jsts": "*" } }, "@turf/center": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/@turf/center/-/center-6.3.0.tgz", - "integrity": "sha512-41g/ZYwoBs2PK7tpAHhf4D6llHdRvY827HLXCld5D0IOnzsWPqDk7WnV8P5uq4g/gyH1/WfKQYn5SgfSj4sSfw==", + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/center/-/center-6.5.0.tgz", + "integrity": "sha512-T8KtMTfSATWcAX088rEDKjyvQCBkUsLnK/Txb6/8WUXIeOZyHu42G7MkdkHRoHtwieLdduDdmPLFyTdG5/e7ZQ==", "requires": { - "@turf/bbox": "^6.3.0", - "@turf/helpers": "^6.3.0" + "@turf/bbox": "^6.5.0", + "@turf/helpers": "^6.5.0" } }, "@turf/center-mean": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/@turf/center-mean/-/center-mean-6.3.0.tgz", - "integrity": "sha512-BZsqThJmc7wUTxPj7/RYztaegPntR2bBFDPTJ/C+qN8lnRhCccCZ81npYunriwMQC1kyXd1BChGMwjFh3jfB+Q==", + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/center-mean/-/center-mean-6.5.0.tgz", + "integrity": "sha512-AAX6f4bVn12pTVrMUiB9KrnV94BgeBKpyg3YpfnEbBpkN/znfVhL8dG8IxMAxAoSZ61Zt9WLY34HfENveuOZ7Q==", "requires": { - "@turf/bbox": "^6.3.0", - "@turf/helpers": "^6.3.0", - "@turf/meta": "^6.3.0" + "@turf/bbox": "^6.5.0", + "@turf/helpers": "^6.5.0", + "@turf/meta": "^6.5.0" } }, "@turf/center-median": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/@turf/center-median/-/center-median-6.3.0.tgz", - "integrity": "sha512-jMQzp4YLIPDWKAMpvyRmNOLcoCHy/OMsLIv6odmfBJc6q+5GkulXz4QW61a5o6XZNDkZiYe9f0QgNGaKH+HTWg==", + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/center-median/-/center-median-6.5.0.tgz", + "integrity": "sha512-dT8Ndu5CiZkPrj15PBvslpuf01ky41DEYEPxS01LOxp5HOUHXp1oJxsPxvc+i/wK4BwccPNzU1vzJ0S4emd1KQ==", "requires": { - "@turf/center-mean": "^6.3.0", - "@turf/centroid": "^6.3.0", - "@turf/distance": "^6.3.0", - "@turf/helpers": "^6.3.0", - "@turf/meta": "^6.3.0" + "@turf/center-mean": "^6.5.0", + "@turf/centroid": "^6.5.0", + "@turf/distance": "^6.5.0", + "@turf/helpers": "^6.5.0", + "@turf/meta": "^6.5.0" } }, "@turf/center-of-mass": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/@turf/center-of-mass/-/center-of-mass-6.3.0.tgz", - "integrity": "sha512-dbiNo4VjNOskK/9hlifmb+cIsFgLqru3m/U1b+btDrliLzrFw3BEeLquZf3IZkOGMpVdIi5/F7IbkrPPz7HgWw==", + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/center-of-mass/-/center-of-mass-6.5.0.tgz", + "integrity": "sha512-EWrriU6LraOfPN7m1jZi+1NLTKNkuIsGLZc2+Y8zbGruvUW+QV7K0nhf7iZWutlxHXTBqEXHbKue/o79IumAsQ==", "requires": { - "@turf/centroid": "^6.3.0", - "@turf/convex": "^6.3.0", - "@turf/helpers": "^6.3.0", - "@turf/invariant": "^6.3.0", - "@turf/meta": "^6.3.0" + "@turf/centroid": "^6.5.0", + "@turf/convex": "^6.5.0", + "@turf/helpers": "^6.5.0", + "@turf/invariant": "^6.5.0", + "@turf/meta": "^6.5.0" } }, "@turf/centroid": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/@turf/centroid/-/centroid-6.3.0.tgz", - "integrity": "sha512-7KTyqhUEqXDoyR/nf/jAXiW8ZVszEnrp5XZkgYyrf2GWdSovSO0iCN1J3bE2jkJv7IWyeDmGYL61GGzuTSZS2Q==", + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/centroid/-/centroid-6.5.0.tgz", + "integrity": "sha512-MwE1oq5E3isewPprEClbfU5pXljIK/GUOMbn22UM3IFPDJX0KeoyLNwghszkdmFp/qMGL/M13MMWvU+GNLXP/A==", "requires": { - "@turf/helpers": "^6.3.0", - "@turf/meta": "^6.3.0" + "@turf/helpers": "^6.5.0", + "@turf/meta": "^6.5.0" } }, "@turf/circle": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/@turf/circle/-/circle-6.3.0.tgz", - "integrity": "sha512-5N3J4YQr1efidvPgvtIQYpxb7gBVEoo00IFC0JNH6KqIVBMttFZw3Wsqor34ya91m58A5m6HTiz9Cdm1ktrEdw==", + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/circle/-/circle-6.5.0.tgz", + "integrity": "sha512-oU1+Kq9DgRnoSbWFHKnnUdTmtcRUMmHoV9DjTXu9vOLNV5OWtAAh1VZ+mzsioGGzoDNT/V5igbFOkMfBQc0B6A==", "requires": { - "@turf/destination": "^6.3.0", - "@turf/helpers": "^6.3.0" + "@turf/destination": "^6.5.0", + "@turf/helpers": "^6.5.0" } }, "@turf/clean-coords": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/@turf/clean-coords/-/clean-coords-6.3.0.tgz", - "integrity": "sha512-Ns7+vXHigKTclzqlFrUnXsXjtEWAu2YYurDxD5mrKXcncuisUIoKbFM55ZxeiiBj0ji8c1huR1xSqs8GVxZJJA==", + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/clean-coords/-/clean-coords-6.5.0.tgz", + "integrity": "sha512-EMX7gyZz0WTH/ET7xV8MyrExywfm9qUi0/MY89yNffzGIEHuFfqwhcCqZ8O00rZIPZHUTxpmsxQSTfzJJA1CPw==", "requires": { - "@turf/helpers": "^6.3.0", - "@turf/invariant": "^6.3.0" + "@turf/helpers": "^6.5.0", + "@turf/invariant": "^6.5.0" } }, "@turf/clone": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/@turf/clone/-/clone-6.3.0.tgz", - "integrity": "sha512-GAgN89/9GCqUKECB1oY2hcTs0K2rZj+a2tY6VfM0ef9wwckuQZCKi+kKGUzhKVrmHee15jKV8n6DY0er8OndKg==", + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/clone/-/clone-6.5.0.tgz", + "integrity": "sha512-mzVtTFj/QycXOn6ig+annKrM6ZlimreKYz6f/GSERytOpgzodbQyOgkfwru100O1KQhhjSudKK4DsQ0oyi9cTw==", "requires": { - "@turf/helpers": "^6.3.0" + "@turf/helpers": "^6.5.0" } }, "@turf/clusters": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/@turf/clusters/-/clusters-6.3.0.tgz", - "integrity": "sha512-NIT6LZ/zawt1nN7eC0VEII8J1QUx5qvUahtPKsADxHP27vDJDjnmGvUXvvC0XmibXt/RR9VRM5Rej04yn53g0A==", + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/clusters/-/clusters-6.5.0.tgz", + "integrity": "sha512-Y6gfnTJzQ1hdLfCsyd5zApNbfLIxYEpmDibHUqR5z03Lpe02pa78JtgrgUNt1seeO/aJ4TG1NLN8V5gOrHk04g==", "requires": { - "@turf/helpers": "^6.3.0", - "@turf/meta": "^6.3.0" + "@turf/helpers": "^6.5.0", + "@turf/meta": "^6.5.0" } }, "@turf/clusters-dbscan": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/@turf/clusters-dbscan/-/clusters-dbscan-6.3.0.tgz", - "integrity": "sha512-EHWHMEBSGf4dvobfvifMl2G9p9KATP9TSeSf1WY+ajLRPfn3slUPSM9hP+7eisDBgb/tS+wqQNcl7pEoo72pnw==", + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/clusters-dbscan/-/clusters-dbscan-6.5.0.tgz", + "integrity": "sha512-SxZEE4kADU9DqLRiT53QZBBhu8EP9skviSyl+FGj08Y01xfICM/RR9ACUdM0aEQimhpu+ZpRVcUK+2jtiCGrYQ==", "requires": { - "@turf/clone": "^6.3.0", - "@turf/distance": "^6.3.0", - "@turf/helpers": "^6.3.0", - "@turf/meta": "^6.3.0", + "@turf/clone": "^6.5.0", + "@turf/distance": "^6.5.0", + "@turf/helpers": "^6.5.0", + "@turf/meta": "^6.5.0", "density-clustering": "1.3.0" } }, "@turf/clusters-kmeans": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/@turf/clusters-kmeans/-/clusters-kmeans-6.3.0.tgz", - "integrity": "sha512-cyHtW5nsOcs1p8l3mflX2805fOxR99FanXCP95U+001S4AwVSgxiOfTg8PUHg9nui2Qcq/PMBRQz80exb2UzyA==", + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/clusters-kmeans/-/clusters-kmeans-6.5.0.tgz", + "integrity": "sha512-DwacD5+YO8kwDPKaXwT9DV46tMBVNsbi1IzdajZu1JDSWoN7yc7N9Qt88oi+p30583O0UPVkAK+A10WAQv4mUw==", "requires": { - "@turf/clone": "^6.3.0", - "@turf/helpers": "^6.3.0", - "@turf/invariant": "^6.3.0", - "@turf/meta": "^6.3.0", + "@turf/clone": "^6.5.0", + "@turf/helpers": "^6.5.0", + "@turf/invariant": "^6.5.0", + "@turf/meta": "^6.5.0", "skmeans": "0.9.7" } }, "@turf/collect": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/@turf/collect/-/collect-6.3.0.tgz", - "integrity": "sha512-alkKujZ02m2wYNixYjF4AFSzXTMbewf1QnJRrtog3snJHFN/tZB9iU3ZcwvxOSbO2Zwrw89A90HLe8k7oGUqXw==", + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/collect/-/collect-6.5.0.tgz", + "integrity": "sha512-4dN/T6LNnRg099m97BJeOcTA5fSI8cu87Ydgfibewd2KQwBexO69AnjEFqfPX3Wj+Zvisj1uAVIZbPmSSrZkjg==", "requires": { - "@turf/bbox": "^6.3.0", - "@turf/boolean-point-in-polygon": "^6.3.0", - "@turf/helpers": "^6.3.0", + "@turf/bbox": "^6.5.0", + "@turf/boolean-point-in-polygon": "^6.5.0", + "@turf/helpers": "^6.5.0", "rbush": "2.x" } }, "@turf/combine": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/@turf/combine/-/combine-6.3.0.tgz", - "integrity": "sha512-/FKUxUvQhKDDBJ4CTr49rvanYbdrtlsbr+7p6H8Vv0EyfeWqwJ3qA8lRuAjPtK0StviYg2t6XTucvKd/3PPX3Q==", + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/combine/-/combine-6.5.0.tgz", + "integrity": "sha512-Q8EIC4OtAcHiJB3C4R+FpB4LANiT90t17uOd851qkM2/o6m39bfN5Mv0PWqMZIHWrrosZqRqoY9dJnzz/rJxYQ==", "requires": { - "@turf/helpers": "^6.3.0", - "@turf/meta": "^6.3.0" + "@turf/helpers": "^6.5.0", + "@turf/meta": "^6.5.0" } }, "@turf/concave": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/@turf/concave/-/concave-6.3.0.tgz", - "integrity": "sha512-9BPctrW2Oy9K2jjKv80tR26RQEJjwAAFwgG8JEBK8hSF9zdqa07fzx7Ncj+8hM9+3vF30f2TvQ8yxvoH7HSvXA==", + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/concave/-/concave-6.5.0.tgz", + "integrity": "sha512-I/sUmUC8TC5h/E2vPwxVht+nRt+TnXIPRoztDFvS8/Y0+cBDple9inLSo9nnPXMXidrBlGXZ9vQx/BjZUJgsRQ==", "requires": { - "@turf/clone": "^6.3.0", - "@turf/distance": "^6.3.0", - "@turf/helpers": "^6.3.0", - "@turf/invariant": "^6.3.0", - "@turf/meta": "^6.3.0", - "@turf/tin": "^6.3.0", - "topojson": "3.x" + "@turf/clone": "^6.5.0", + "@turf/distance": "^6.5.0", + "@turf/helpers": "^6.5.0", + "@turf/invariant": "^6.5.0", + "@turf/meta": "^6.5.0", + "@turf/tin": "^6.5.0", + "topojson-client": "3.x", + "topojson-server": "3.x" } }, "@turf/convex": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/@turf/convex/-/convex-6.3.0.tgz", - "integrity": "sha512-YpiLKRu1suwbI/knCOd7Fg7LojV6Beonu8gQjCoaPdkBEz0/W3XqNpfWQhcqp+XR10a2g4RK5mi6bUUejToFBw==", + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/convex/-/convex-6.5.0.tgz", + "integrity": "sha512-x7ZwC5z7PJB0SBwNh7JCeCNx7Iu+QSrH7fYgK0RhhNop13TqUlvHMirMLRgf2db1DqUetrAO2qHJeIuasquUWg==", "requires": { - "@turf/helpers": "^6.3.0", - "@turf/meta": "^6.3.0", + "@turf/helpers": "^6.5.0", + "@turf/meta": "^6.5.0", "concaveman": "*" } }, "@turf/destination": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/@turf/destination/-/destination-6.3.0.tgz", - "integrity": "sha512-aLt3U/XkJWyZW08Ln1qZwBNAGh27yhmYLu892+dBj3gKP6UUiR6ZopXxrBwjBVe00A6k2ktftKDn79qe0hptuw==", + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/destination/-/destination-6.5.0.tgz", + "integrity": "sha512-4cnWQlNC8d1tItOz9B4pmJdWpXqS0vEvv65bI/Pj/genJnsL7evI0/Xw42RvEGROS481MPiU80xzvwxEvhQiMQ==", "requires": { - "@turf/helpers": "^6.3.0", - "@turf/invariant": "^6.3.0" + "@turf/helpers": "^6.5.0", + "@turf/invariant": "^6.5.0" } }, "@turf/difference": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/@turf/difference/-/difference-6.3.0.tgz", - "integrity": "sha512-f4P0ra0jBOFk4HO8n/9FZ3NEmOX7FHCXHy/4Z1RSUUQsUQDCkx6/cyqbi8BCy2ZSDUSCGHV+iPgs4fRphMzCHQ==", + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/difference/-/difference-6.5.0.tgz", + "integrity": "sha512-l8iR5uJqvI+5Fs6leNbhPY5t/a3vipUF/3AeVLpwPQcgmedNXyheYuy07PcMGH5Jdpi5gItOiTqwiU/bUH4b3A==", "requires": { - "@turf/helpers": "^6.3.0", - "@turf/invariant": "^6.3.0", - "polygon-clipping": "^0.15.2" - }, - "dependencies": { - "polygon-clipping": { - "version": "0.15.3", - "resolved": "https://registry.npmjs.org/polygon-clipping/-/polygon-clipping-0.15.3.tgz", - "integrity": "sha512-ho0Xx5DLkgxRx/+n4O74XyJ67DcyN3Tu9bGYKsnTukGAW6ssnuak6Mwcyb1wHy9MZc9xsUWqIoiazkZB5weECg==", - "requires": { - "splaytree": "^3.1.0" - } - }, - "splaytree": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/splaytree/-/splaytree-3.1.0.tgz", - "integrity": "sha512-gvUGR7xnOy0fLKTCxDeUZYgU/I1Tdf8M/lM1Qrf8L2TIOR5ipZjGk02uYcdv0o2x7WjVRgpm3iS2clLyuVAt0Q==" - } + "@turf/helpers": "^6.5.0", + "@turf/invariant": "^6.5.0", + "polygon-clipping": "^0.15.3" } }, "@turf/dissolve": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/@turf/dissolve/-/dissolve-6.3.0.tgz", - "integrity": "sha512-DxFH+3MQpBo3rIZSh9gjcdl00ZkyHAEK0DzTLq6JOS4vTHpYvFvDT07j/Vr+9cqfvWrAjGpQg92I8zMzh4XA6Q==", + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/dissolve/-/dissolve-6.5.0.tgz", + "integrity": "sha512-WBVbpm9zLTp0Bl9CE35NomTaOL1c4TQCtEoO43YaAhNEWJOOIhZMFJyr8mbvYruKl817KinT3x7aYjjCMjTAsQ==", "requires": { - "@turf/boolean-overlap": "^6.3.0", - "@turf/clone": "^6.3.0", - "@turf/helpers": "^6.3.0", - "@turf/invariant": "^6.3.0", - "@turf/line-intersect": "^6.3.0", - "@turf/meta": "^6.3.0", - "@turf/union": "^6.3.0", - "geojson-rbush": "3.x", - "get-closest": "*" + "@turf/helpers": "^6.5.0", + "@turf/invariant": "^6.5.0", + "@turf/meta": "^6.5.0", + "polygon-clipping": "^0.15.3" } }, "@turf/distance": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/@turf/distance/-/distance-6.3.0.tgz", - "integrity": "sha512-basi24ssNFnH3iXPFjp/aNUrukjObiFWoIyDRqKyBJxVwVOwAWvfk4d38QQyBj5nDo5IahYRq/Q+T47/5hSs9w==", + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/distance/-/distance-6.5.0.tgz", + "integrity": "sha512-xzykSLfoURec5qvQJcfifw/1mJa+5UwByZZ5TZ8iaqjGYN0vomhV9aiSLeYdUGtYRESZ+DYC/OzY+4RclZYgMg==", "requires": { - "@turf/helpers": "^6.3.0", - "@turf/invariant": "^6.3.0" + "@turf/helpers": "^6.5.0", + "@turf/invariant": "^6.5.0" } }, "@turf/distance-weight": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/@turf/distance-weight/-/distance-weight-6.3.0.tgz", - "integrity": "sha512-o85n4q3WM0L292FV7ZKBtSdTzn20JRqcZSSktkJoxeuQJMHXlstRwviLiF5pTl5oDXO/mRdq6aPecvWkMAaiCQ==", + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/distance-weight/-/distance-weight-6.5.0.tgz", + "integrity": "sha512-a8qBKkgVNvPKBfZfEJZnC3DV7dfIsC3UIdpRci/iap/wZLH41EmS90nM+BokAJflUHYy8PqE44wySGWHN1FXrQ==", "requires": { - "@turf/centroid": "^6.3.0", - "@turf/helpers": "^6.3.0", - "@turf/invariant": "^6.3.0", - "@turf/meta": "^6.3.0" + "@turf/centroid": "^6.5.0", + "@turf/helpers": "^6.5.0", + "@turf/invariant": "^6.5.0", + "@turf/meta": "^6.5.0" } }, "@turf/ellipse": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/@turf/ellipse/-/ellipse-6.3.0.tgz", - "integrity": "sha512-r+EvUK+IGgc3shvS/T1Wof2uCptS2fYmtcwMSFHnHjRnmUyrD4YFjPZT7ygxcDB91+UClZ6cdozR6vqBYzPAog==", + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/ellipse/-/ellipse-6.5.0.tgz", + "integrity": "sha512-kuXtwFviw/JqnyJXF1mrR/cb496zDTSbGKtSiolWMNImYzGGkbsAsFTjwJYgD7+4FixHjp0uQPzo70KDf3AIBw==", "requires": { - "@turf/helpers": "^6.3.0", - "@turf/invariant": "^6.3.0", - "@turf/rhumb-destination": "^6.3.0", - "@turf/transform-rotate": "^6.3.0" + "@turf/helpers": "^6.5.0", + "@turf/invariant": "^6.5.0", + "@turf/rhumb-destination": "^6.5.0", + "@turf/transform-rotate": "^6.5.0" } }, "@turf/envelope": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/@turf/envelope/-/envelope-6.3.0.tgz", - "integrity": "sha512-9xmDTCogXJsAO0TrARA/lniMSEtAil9HIKXHDJ5N6zlZ2K5wfRdD2zDlqkgDT3t9oSvttSP3ltBf03fjMDt6Wg==", + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/envelope/-/envelope-6.5.0.tgz", + "integrity": "sha512-9Z+FnBWvOGOU4X+fMZxYFs1HjFlkKqsddLuMknRaqcJd6t+NIv5DWvPtDL8ATD2GEExYDiFLwMdckfr1yqJgHA==", "requires": { - "@turf/bbox": "^6.3.0", - "@turf/bbox-polygon": "^6.3.0", - "@turf/helpers": "^6.3.0" + "@turf/bbox": "^6.5.0", + "@turf/bbox-polygon": "^6.5.0", + "@turf/helpers": "^6.5.0" } }, "@turf/explode": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/@turf/explode/-/explode-6.3.0.tgz", - "integrity": "sha512-J3vOGwf2EJXfh1gifFtxAuuhVYWAMTRQL6jE3h9a8osNLO1nj8JGVxaL6fmJgdZ/A9cFPv1OYUndBzi86UYZvw==", + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/explode/-/explode-6.5.0.tgz", + "integrity": "sha512-6cSvMrnHm2qAsace6pw9cDmK2buAlw8+tjeJVXMfMyY+w7ZUi1rprWMsY92J7s2Dar63Bv09n56/1V7+tcj52Q==", "requires": { - "@turf/helpers": "^6.3.0", - "@turf/meta": "^6.3.0" + "@turf/helpers": "^6.5.0", + "@turf/meta": "^6.5.0" } }, "@turf/flatten": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/@turf/flatten/-/flatten-6.3.0.tgz", - "integrity": "sha512-0V3qxOGqb0NulEpADPCs/+i/AUQuNSChGA4oy/YGicfMHjnMNapZfOVg3LJEAkd/Kqpw2eJjjKe0gaX5aXo/1w==", + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/flatten/-/flatten-6.5.0.tgz", + "integrity": "sha512-IBZVwoNLVNT6U/bcUUllubgElzpMsNoCw8tLqBw6dfYg9ObGmpEjf9BIYLr7a2Yn5ZR4l7YIj2T7kD5uJjZADQ==", "requires": { - "@turf/helpers": "^6.3.0", - "@turf/meta": "^6.3.0" + "@turf/helpers": "^6.5.0", + "@turf/meta": "^6.5.0" } }, "@turf/flip": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/@turf/flip/-/flip-6.3.0.tgz", - "integrity": "sha512-VTST1oaJFRyHOAbvY9kt8yKKCQt6aXpXeyVQRjhNESzlYLIQlTx3v+lI+eSSu+sc+SX4EDQltB1UdaVk7BIRJg==", + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/flip/-/flip-6.5.0.tgz", + "integrity": "sha512-oyikJFNjt2LmIXQqgOGLvt70RgE2lyzPMloYWM7OR5oIFGRiBvqVD2hA6MNw6JewIm30fWZ8DQJw1NHXJTJPbg==", "requires": { - "@turf/clone": "^6.3.0", - "@turf/helpers": "^6.3.0", - "@turf/meta": "^6.3.0" + "@turf/clone": "^6.5.0", + "@turf/helpers": "^6.5.0", + "@turf/meta": "^6.5.0" } }, "@turf/great-circle": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/@turf/great-circle/-/great-circle-6.3.0.tgz", - "integrity": "sha512-dpGJcRf2TLzBvVUZa0Eej3edXOQofLcp9qgotqDHK68spqYK8lnrXrdyyqzLlTHx3nxZkHvFUOl1lqj8G4NraQ==", + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/great-circle/-/great-circle-6.5.0.tgz", + "integrity": "sha512-7ovyi3HaKOXdFyN7yy1yOMa8IyOvV46RC1QOQTT+RYUN8ke10eyqExwBpL9RFUPvlpoTzoYbM/+lWPogQlFncg==", "requires": { - "@turf/helpers": "^6.3.0", - "@turf/invariant": "^6.3.0" + "@turf/helpers": "^6.5.0", + "@turf/invariant": "^6.5.0" } }, "@turf/helpers": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/@turf/helpers/-/helpers-6.3.0.tgz", - "integrity": "sha512-kr6KuD4Z0GZ30tblTEvi90rvvVNlKieXuMC8CTzE/rVQb0/f/Cb29zCXxTD7giQTEQY/P2nRW23wEqqyNHulCg==" + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/helpers/-/helpers-6.5.0.tgz", + "integrity": "sha512-VbI1dV5bLFzohYYdgqwikdMVpe7pJ9X3E+dlr425wa2/sMJqYDhTO++ec38/pcPvPE6oD9WEEeU3Xu3gza+VPw==" }, "@turf/hex-grid": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/@turf/hex-grid/-/hex-grid-6.3.0.tgz", - "integrity": "sha512-adqOgpBJB+87bjnm5EKVklDuWsYtCrETlLrXpOw4CVyaqYEE2/Mvid25se/0TeGDfvIcnvIQvrApYL5O/sDaMw==", + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/hex-grid/-/hex-grid-6.5.0.tgz", + "integrity": "sha512-Ln3tc2tgZT8etDOldgc6e741Smg1CsMKAz1/Mlel+MEL5Ynv2mhx3m0q4J9IB1F3a4MNjDeVvm8drAaf9SF33g==", "requires": { - "@turf/distance": "^6.3.0", - "@turf/helpers": "^6.3.0", - "@turf/intersect": "^6.3.0", - "@turf/invariant": "^6.3.0" + "@turf/distance": "^6.5.0", + "@turf/helpers": "^6.5.0", + "@turf/intersect": "^6.5.0", + "@turf/invariant": "^6.5.0" } }, "@turf/interpolate": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/@turf/interpolate/-/interpolate-6.3.0.tgz", - "integrity": "sha512-2gVMSj/Ri8l5KGkCTyTJTqSbZwfWco6tWGMZyG0fqcB61PA6pEedU+TShBOOEKu7eBlpSyHlkS7+uii1bEGUCA==", + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/interpolate/-/interpolate-6.5.0.tgz", + "integrity": "sha512-LSH5fMeiGyuDZ4WrDJNgh81d2DnNDUVJtuFryJFup8PV8jbs46lQGfI3r1DJ2p1IlEJIz3pmAZYeTfMMoeeohw==", "requires": { - "@turf/bbox": "^6.3.0", - "@turf/centroid": "^6.3.0", - "@turf/clone": "^6.3.0", - "@turf/distance": "^6.3.0", - "@turf/helpers": "^6.3.0", - "@turf/hex-grid": "^6.3.0", - "@turf/invariant": "^6.3.0", - "@turf/meta": "^6.3.0", - "@turf/point-grid": "^6.3.0", - "@turf/square-grid": "^6.3.0", - "@turf/triangle-grid": "^6.3.0" + "@turf/bbox": "^6.5.0", + "@turf/centroid": "^6.5.0", + "@turf/clone": "^6.5.0", + "@turf/distance": "^6.5.0", + "@turf/helpers": "^6.5.0", + "@turf/hex-grid": "^6.5.0", + "@turf/invariant": "^6.5.0", + "@turf/meta": "^6.5.0", + "@turf/point-grid": "^6.5.0", + "@turf/square-grid": "^6.5.0", + "@turf/triangle-grid": "^6.5.0" } }, "@turf/intersect": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/@turf/intersect/-/intersect-6.3.0.tgz", - "integrity": "sha512-1YCIkyKjuTlX7HaTjtyE7ZRxLCmcu0BYr6jqoVl7TjyF2NUiNpPm3m4X1ZrSF6MfjIt5NFSGYCdNMEPgREq19w==", + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/intersect/-/intersect-6.5.0.tgz", + "integrity": "sha512-2legGJeKrfFkzntcd4GouPugoqPUjexPZnOvfez+3SfIMrHvulw8qV8u7pfVyn2Yqs53yoVCEjS5sEpvQ5YRQg==", "requires": { - "@turf/helpers": "^6.3.0", - "@turf/invariant": "^6.3.0", - "polygon-clipping": "^0.15.2" - }, - "dependencies": { - "polygon-clipping": { - "version": "0.15.3", - "resolved": "https://registry.npmjs.org/polygon-clipping/-/polygon-clipping-0.15.3.tgz", - "integrity": "sha512-ho0Xx5DLkgxRx/+n4O74XyJ67DcyN3Tu9bGYKsnTukGAW6ssnuak6Mwcyb1wHy9MZc9xsUWqIoiazkZB5weECg==", - "requires": { - "splaytree": "^3.1.0" - } - }, - "splaytree": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/splaytree/-/splaytree-3.1.0.tgz", - "integrity": "sha512-gvUGR7xnOy0fLKTCxDeUZYgU/I1Tdf8M/lM1Qrf8L2TIOR5ipZjGk02uYcdv0o2x7WjVRgpm3iS2clLyuVAt0Q==" - } + "@turf/helpers": "^6.5.0", + "@turf/invariant": "^6.5.0", + "polygon-clipping": "^0.15.3" } }, "@turf/invariant": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/@turf/invariant/-/invariant-6.3.0.tgz", - "integrity": "sha512-2OFOi9p+QOrcIMySEnr+WlOiKaFZ1bY56jA98YyECewJHfhPFWUBZEhc4nWGRT0ahK08Vus9+gcuBX8QIpCIIw==", + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/invariant/-/invariant-6.5.0.tgz", + "integrity": "sha512-Wv8PRNCtPD31UVbdJE/KVAWKe7l6US+lJItRR/HOEW3eh+U/JwRCSUl/KZ7bmjM/C+zLNoreM2TU6OoLACs4eg==", "requires": { - "@turf/helpers": "^6.3.0" + "@turf/helpers": "^6.5.0" } }, "@turf/isobands": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/@turf/isobands/-/isobands-6.3.0.tgz", - "integrity": "sha512-Ikk8LyVQJKsLH6nFYKEeUi9sShMVP9S63zy5CPMPvwRhZf0ix59tAEBfnk6DOfd0EzLLmEdfaAM2U0cRhkh9jA==", + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/isobands/-/isobands-6.5.0.tgz", + "integrity": "sha512-4h6sjBPhRwMVuFaVBv70YB7eGz+iw0bhPRnp+8JBdX1UPJSXhoi/ZF2rACemRUr0HkdVB/a1r9gC32vn5IAEkw==", "requires": { - "@turf/area": "^6.3.0", - "@turf/bbox": "^6.3.0", - "@turf/boolean-point-in-polygon": "^6.3.0", - "@turf/explode": "^6.3.0", - "@turf/helpers": "^6.3.0", - "@turf/invariant": "^6.3.0", - "@turf/meta": "^6.3.0", + "@turf/area": "^6.5.0", + "@turf/bbox": "^6.5.0", + "@turf/boolean-point-in-polygon": "^6.5.0", + "@turf/explode": "^6.5.0", + "@turf/helpers": "^6.5.0", + "@turf/invariant": "^6.5.0", + "@turf/meta": "^6.5.0", "object-assign": "*" } }, "@turf/isolines": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/@turf/isolines/-/isolines-6.3.0.tgz", - "integrity": "sha512-z5hUIUcSaInGUhrx+vDZcCNWLS3MawzQGfc0TOUVDe03bO5sqUlaNyvx7C09Js4LEzsqqZ1GPIUvFPjePaXaVQ==", + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/isolines/-/isolines-6.5.0.tgz", + "integrity": "sha512-6ElhiLCopxWlv4tPoxiCzASWt/jMRvmp6mRYrpzOm3EUl75OhHKa/Pu6Y9nWtCMmVC/RcWtiiweUocbPLZLm0A==", "requires": { - "@turf/bbox": "^6.3.0", - "@turf/helpers": "^6.3.0", - "@turf/invariant": "^6.3.0", - "@turf/meta": "^6.3.0", + "@turf/bbox": "^6.5.0", + "@turf/helpers": "^6.5.0", + "@turf/invariant": "^6.5.0", + "@turf/meta": "^6.5.0", "object-assign": "*" } }, "@turf/kinks": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/@turf/kinks/-/kinks-6.3.0.tgz", - "integrity": "sha512-BLWvbl2/fa4SeJzVMbleT6Vo1cmzwmzRfxL2xxMei2jmf6JSvqDoMJFwIHGXrLZXvhOCb1b2C+MhBfhtc7kYkQ==", + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/kinks/-/kinks-6.5.0.tgz", + "integrity": "sha512-ViCngdPt1eEL7hYUHR2eHR662GvCgTc35ZJFaNR6kRtr6D8plLaDju0FILeFFWSc+o8e3fwxZEJKmFj9IzPiIQ==", "requires": { - "@turf/helpers": "^6.3.0" + "@turf/helpers": "^6.5.0" } }, "@turf/length": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/@turf/length/-/length-6.3.0.tgz", - "integrity": "sha512-91MHtigpV7mbrMW3xyaPVtLWQU3p487t3YHU4vdxih03p+dFI512dX/FtWbd9LNgrtBt4PM1uo1WmafGvfStKA==", + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/length/-/length-6.5.0.tgz", + "integrity": "sha512-5pL5/pnw52fck3oRsHDcSGrj9HibvtlrZ0QNy2OcW8qBFDNgZ4jtl6U7eATVoyWPKBHszW3dWETW+iLV7UARig==", "requires": { - "@turf/distance": "^6.3.0", - "@turf/helpers": "^6.3.0", - "@turf/meta": "^6.3.0" + "@turf/distance": "^6.5.0", + "@turf/helpers": "^6.5.0", + "@turf/meta": "^6.5.0" } }, "@turf/line-arc": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/@turf/line-arc/-/line-arc-6.3.0.tgz", - "integrity": "sha512-WAAUgAWGf+U02GhXWrplODyUm3X6LZnYyn4VJQ9BPsKyawfK+NtjP7KsZ1MipIgtixNq3Ceexep0AHGHos4Prw==", + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/line-arc/-/line-arc-6.5.0.tgz", + "integrity": "sha512-I6c+V6mIyEwbtg9P9zSFF89T7QPe1DPTG3MJJ6Cm1MrAY0MdejwQKOpsvNl8LDU2ekHOlz2kHpPVR7VJsoMllA==", "requires": { - "@turf/circle": "^6.3.0", - "@turf/destination": "^6.3.0", - "@turf/helpers": "^6.3.0" + "@turf/circle": "^6.5.0", + "@turf/destination": "^6.5.0", + "@turf/helpers": "^6.5.0" } }, "@turf/line-chunk": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/@turf/line-chunk/-/line-chunk-6.3.0.tgz", - "integrity": "sha512-Xfja7H6XEgFPaK37sg7WBb0pIiA9hfjXtF7A1QPrh8z+JFyuVJzveBG2mYvin5UKTwsMKXuby6s4FUvmoEFqjQ==", + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/line-chunk/-/line-chunk-6.5.0.tgz", + "integrity": "sha512-i1FGE6YJaaYa+IJesTfyRRQZP31QouS+wh/pa6O3CC0q4T7LtHigyBSYjrbjSLfn2EVPYGlPCMFEqNWCOkC6zg==", "requires": { - "@turf/helpers": "^6.3.0", - "@turf/length": "^6.3.0", - "@turf/line-slice-along": "^6.3.0", - "@turf/meta": "^6.3.0" + "@turf/helpers": "^6.5.0", + "@turf/length": "^6.5.0", + "@turf/line-slice-along": "^6.5.0", + "@turf/meta": "^6.5.0" } }, "@turf/line-intersect": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/@turf/line-intersect/-/line-intersect-6.3.0.tgz", - "integrity": "sha512-3naxR7XpkPd2vst3Mw6DFry4C9m3o0/f2n/xu5UAyxb88Ie4m2k+1eqkhzMMx/0L+E6iThWpLx7DASM6q6o9ow==", + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/line-intersect/-/line-intersect-6.5.0.tgz", + "integrity": "sha512-CS6R1tZvVQD390G9Ea4pmpM6mJGPWoL82jD46y0q1KSor9s6HupMIo1kY4Ny+AEYQl9jd21V3Scz20eldpbTVA==", "requires": { - "@turf/helpers": "^6.3.0", - "@turf/invariant": "^6.3.0", - "@turf/line-segment": "^6.3.0", - "@turf/meta": "^6.3.0", + "@turf/helpers": "^6.5.0", + "@turf/invariant": "^6.5.0", + "@turf/line-segment": "^6.5.0", + "@turf/meta": "^6.5.0", "geojson-rbush": "3.x" } }, "@turf/line-offset": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/@turf/line-offset/-/line-offset-6.3.0.tgz", - "integrity": "sha512-yzgmNc/8miyn+pH2ubT4rZb9uAPY6oLqkwmEdzy2fuU4yUFnCNN/nWvYP4acGdgaSfprJd+4MdlLFzWBJxSplw==", + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/line-offset/-/line-offset-6.5.0.tgz", + "integrity": "sha512-CEXZbKgyz8r72qRvPchK0dxqsq8IQBdH275FE6o4MrBkzMcoZsfSjghtXzKaz9vvro+HfIXal0sTk2mqV1lQTw==", "requires": { - "@turf/helpers": "^6.3.0", - "@turf/invariant": "^6.3.0", - "@turf/meta": "^6.3.0" + "@turf/helpers": "^6.5.0", + "@turf/invariant": "^6.5.0", + "@turf/meta": "^6.5.0" } }, "@turf/line-overlap": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/@turf/line-overlap/-/line-overlap-6.3.0.tgz", - "integrity": "sha512-fVyXfTpr/A+ZXZWG6PbuYz5rAGbTQWyrMZveCl2049SbOXSkVXGjUfpnLaklP0p+adw7eRR0LhZn6FGz9CQaFg==", + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/line-overlap/-/line-overlap-6.5.0.tgz", + "integrity": "sha512-xHOaWLd0hkaC/1OLcStCpfq55lPHpPNadZySDXYiYjEz5HXr1oKmtMYpn0wGizsLwrOixRdEp+j7bL8dPt4ojQ==", "requires": { - "@turf/boolean-point-on-line": "^6.3.0", - "@turf/helpers": "^6.3.0", - "@turf/invariant": "^6.3.0", - "@turf/line-segment": "^6.3.0", - "@turf/meta": "^6.3.0", - "@turf/nearest-point-on-line": "^6.3.0", + "@turf/boolean-point-on-line": "^6.5.0", + "@turf/helpers": "^6.5.0", + "@turf/invariant": "^6.5.0", + "@turf/line-segment": "^6.5.0", + "@turf/meta": "^6.5.0", + "@turf/nearest-point-on-line": "^6.5.0", "deep-equal": "1.x", "geojson-rbush": "3.x" } }, "@turf/line-segment": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/@turf/line-segment/-/line-segment-6.3.0.tgz", - "integrity": "sha512-M+aDy83V+E7jYWNaf+b+A88yhnMrJhyg/lhAj6mU6UeB2PbruXB2qgSmmVDSE2dIknOvZZuIWNzEzUI07RO2kw==", + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/line-segment/-/line-segment-6.5.0.tgz", + "integrity": "sha512-jI625Ho4jSuJESNq66Mmi290ZJ5pPZiQZruPVpmHkUw257Pew0alMmb6YrqYNnLUuiVVONxAAKXUVeeUGtycfw==", "requires": { - "@turf/helpers": "^6.3.0", - "@turf/invariant": "^6.3.0", - "@turf/meta": "^6.3.0" + "@turf/helpers": "^6.5.0", + "@turf/invariant": "^6.5.0", + "@turf/meta": "^6.5.0" } }, "@turf/line-slice": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/@turf/line-slice/-/line-slice-6.3.0.tgz", - "integrity": "sha512-HEgVY7TcoRxh59DCb/7SUlX6x3RJWSEBspIfsxCv+2lhgb3aRekn+aELvr3VeY9fWPCXvOfELBH3PNjMhJMY2Q==", + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/line-slice/-/line-slice-6.5.0.tgz", + "integrity": "sha512-vDqJxve9tBHhOaVVFXqVjF5qDzGtKWviyjbyi2QnSnxyFAmLlLnBfMX8TLQCAf2GxHibB95RO5FBE6I2KVPRuw==", "requires": { - "@turf/helpers": "^6.3.0", - "@turf/invariant": "^6.3.0", - "@turf/nearest-point-on-line": "^6.3.0" + "@turf/helpers": "^6.5.0", + "@turf/invariant": "^6.5.0", + "@turf/nearest-point-on-line": "^6.5.0" } }, "@turf/line-slice-along": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/@turf/line-slice-along/-/line-slice-along-6.3.0.tgz", - "integrity": "sha512-3s6vGTxGgCTb3Wd1seyir49rRc0GsX6OZXiRP5VdlT3Aq0cuuCNJycgHCH+H8LiYrEQDUhNUWbGljreCH0/JCg==", + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/line-slice-along/-/line-slice-along-6.5.0.tgz", + "integrity": "sha512-KHJRU6KpHrAj+BTgTNqby6VCTnDzG6a1sJx/I3hNvqMBLvWVA2IrkR9L9DtsQsVY63IBwVdQDqiwCuZLDQh4Ng==", "requires": { - "@turf/bearing": "^6.3.0", - "@turf/destination": "^6.3.0", - "@turf/distance": "^6.3.0", - "@turf/helpers": "^6.3.0" + "@turf/bearing": "^6.5.0", + "@turf/destination": "^6.5.0", + "@turf/distance": "^6.5.0", + "@turf/helpers": "^6.5.0" } }, "@turf/line-split": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/@turf/line-split/-/line-split-6.3.0.tgz", - "integrity": "sha512-Q0nUJ0vczy11piyEz0FaKScFwSQtb1HJ2RPEMCw1coUJhTCB02KBWQLImhYqwsD3uLg+H/fxaJ1Gva6EPWoDNQ==", + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/line-split/-/line-split-6.5.0.tgz", + "integrity": "sha512-/rwUMVr9OI2ccJjw7/6eTN53URtGThNSD5I0GgxyFXMtxWiloRJ9MTff8jBbtPWrRka/Sh2GkwucVRAEakx9Sw==", "requires": { - "@turf/bbox": "^6.3.0", - "@turf/helpers": "^6.3.0", - "@turf/invariant": "^6.3.0", - "@turf/line-intersect": "^6.3.0", - "@turf/line-segment": "^6.3.0", - "@turf/meta": "^6.3.0", - "@turf/nearest-point-on-line": "^6.3.0", - "@turf/square": "^6.3.0", - "@turf/truncate": "^6.3.0", + "@turf/bbox": "^6.5.0", + "@turf/helpers": "^6.5.0", + "@turf/invariant": "^6.5.0", + "@turf/line-intersect": "^6.5.0", + "@turf/line-segment": "^6.5.0", + "@turf/meta": "^6.5.0", + "@turf/nearest-point-on-line": "^6.5.0", + "@turf/square": "^6.5.0", + "@turf/truncate": "^6.5.0", "geojson-rbush": "3.x" } }, "@turf/line-to-polygon": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/@turf/line-to-polygon/-/line-to-polygon-6.3.0.tgz", - "integrity": "sha512-754ywhQzcAylVSqQQwlv0TUMC5nCHp4nDle3X48tkHIKcnn4fJkW8O0YNhhQCE8p6NDcs0Ayi4qR0uHLPTzUWQ==", + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/line-to-polygon/-/line-to-polygon-6.5.0.tgz", + "integrity": "sha512-qYBuRCJJL8Gx27OwCD1TMijM/9XjRgXH/m/TyuND4OXedBpIWlK5VbTIO2gJ8OCfznBBddpjiObLBrkuxTpN4Q==", "requires": { - "@turf/bbox": "^6.3.0", - "@turf/clone": "^6.3.0", - "@turf/helpers": "^6.3.0", - "@turf/invariant": "^6.3.0" + "@turf/bbox": "^6.5.0", + "@turf/clone": "^6.5.0", + "@turf/helpers": "^6.5.0", + "@turf/invariant": "^6.5.0" } }, "@turf/mask": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/@turf/mask/-/mask-6.3.0.tgz", - "integrity": "sha512-2DbaHvmxz0ueQpGCo+6nXHhLqlmTjzGDkUL/ys6rgWTXj40udKakPwMNa2WrvzqHwowJsXWaWDp2GogRT5foDA==", + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/mask/-/mask-6.5.0.tgz", + "integrity": "sha512-RQha4aU8LpBrmrkH8CPaaoAfk0Egj5OuXtv6HuCQnHeGNOQt3TQVibTA3Sh4iduq4EPxnZfDjgsOeKtrCA19lg==", "requires": { - "@turf/bbox": "^6.3.0", - "@turf/helpers": "^6.3.0", - "@turf/meta": "^6.3.0", - "@turf/union": "^6.3.0", - "rbush": "^2.0.1" + "@turf/helpers": "^6.5.0", + "polygon-clipping": "^0.15.3" } }, "@turf/meta": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/@turf/meta/-/meta-6.3.0.tgz", - "integrity": "sha512-qBJjaAJS9H3ap0HlGXyF/Bzfl0qkA9suafX/jnDsZvWMfVLt+s+o6twKrXOGk5t7nnNON2NFRC8+czxpu104EQ==", + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/meta/-/meta-6.5.0.tgz", + "integrity": "sha512-RrArvtsV0vdsCBegoBtOalgdSOfkBrTJ07VkpiCnq/491W67hnMWmDu7e6Ztw0C3WldRYTXkg3SumfdzZxLBHA==", "requires": { - "@turf/helpers": "^6.3.0" + "@turf/helpers": "^6.5.0" } }, "@turf/midpoint": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/@turf/midpoint/-/midpoint-6.3.0.tgz", - "integrity": "sha512-ImiYK5l/QZh5aCynxCyHoaJYn4j1VhorVyw2XihHuwAtebTc+KRaBJpWSD2eJxo3Q3J+QepWMiiMvQFJgQ5uCQ==", + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/midpoint/-/midpoint-6.5.0.tgz", + "integrity": "sha512-MyTzV44IwmVI6ec9fB2OgZ53JGNlgOpaYl9ArKoF49rXpL84F9rNATndbe0+MQIhdkw8IlzA6xVP4lZzfMNVCw==", "requires": { - "@turf/bearing": "^6.3.0", - "@turf/destination": "^6.3.0", - "@turf/distance": "^6.3.0", - "@turf/helpers": "^6.3.0" + "@turf/bearing": "^6.5.0", + "@turf/destination": "^6.5.0", + "@turf/distance": "^6.5.0", + "@turf/helpers": "^6.5.0" } }, "@turf/moran-index": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/@turf/moran-index/-/moran-index-6.3.0.tgz", - "integrity": "sha512-qRsSqmYtvnKiGFbz3aU1up8Q8jY9MCflRdvKeTOJ2E3Z4xOIyOLXOrNvpLIM8CFcLwY06IInMRoaKi/CVOC54g==", + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/moran-index/-/moran-index-6.5.0.tgz", + "integrity": "sha512-ItsnhrU2XYtTtTudrM8so4afBCYWNaB0Mfy28NZwLjB5jWuAsvyV+YW+J88+neK/ougKMTawkmjQqodNJaBeLQ==", "requires": { - "@turf/distance-weight": "^6.3.0", - "@turf/helpers": "^6.3.0", - "@turf/meta": "^6.3.0" + "@turf/distance-weight": "^6.5.0", + "@turf/helpers": "^6.5.0", + "@turf/meta": "^6.5.0" } }, "@turf/nearest-point": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/@turf/nearest-point/-/nearest-point-6.3.0.tgz", - "integrity": "sha512-eovLuWxO2cQaKETbf1OhnWYkRYYgwuDhJAvLU9ZpXnqk2tNE06gt/2C5oJJiSlh4ZksDM8ryHZicswaXrYz+qA==", + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/nearest-point/-/nearest-point-6.5.0.tgz", + "integrity": "sha512-fguV09QxilZv/p94s8SMsXILIAMiaXI5PATq9d7YWijLxWUj6Q/r43kxyoi78Zmwwh1Zfqz9w+bCYUAxZ5+euA==", "requires": { - "@turf/clone": "^6.3.0", - "@turf/distance": "^6.3.0", - "@turf/helpers": "^6.3.0", - "@turf/meta": "^6.3.0" + "@turf/clone": "^6.5.0", + "@turf/distance": "^6.5.0", + "@turf/helpers": "^6.5.0", + "@turf/meta": "^6.5.0" } }, "@turf/nearest-point-on-line": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/@turf/nearest-point-on-line/-/nearest-point-on-line-6.3.0.tgz", - "integrity": "sha512-b4C9Md1VbGn9chMgdSj2grJD4w4t0owEWOKEBwOZfdhrcksyOedVvKB7XqOFdj/8Jitel40EKAC5LQTNu24kEQ==", + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/nearest-point-on-line/-/nearest-point-on-line-6.5.0.tgz", + "integrity": "sha512-WthrvddddvmymnC+Vf7BrkHGbDOUu6Z3/6bFYUGv1kxw8tiZ6n83/VG6kHz4poHOfS0RaNflzXSkmCi64fLBlg==", "requires": { - "@turf/bearing": "^6.3.0", - "@turf/destination": "^6.3.0", - "@turf/distance": "^6.3.0", - "@turf/helpers": "^6.3.0", - "@turf/invariant": "^6.3.0", - "@turf/line-intersect": "^6.3.0", - "@turf/meta": "^6.3.0" + "@turf/bearing": "^6.5.0", + "@turf/destination": "^6.5.0", + "@turf/distance": "^6.5.0", + "@turf/helpers": "^6.5.0", + "@turf/invariant": "^6.5.0", + "@turf/line-intersect": "^6.5.0", + "@turf/meta": "^6.5.0" } }, "@turf/nearest-point-to-line": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/@turf/nearest-point-to-line/-/nearest-point-to-line-6.3.0.tgz", - "integrity": "sha512-1ut4u1KXHwXc6qdnDLkhTdPUdeHOmdmysMBxnNNFH7UTefi3XfR8BF/NOxNP8g7OKJrZ2vhDeR4PCL5xAsVH5A==", + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/nearest-point-to-line/-/nearest-point-to-line-6.5.0.tgz", + "integrity": "sha512-PXV7cN0BVzUZdjj6oeb/ESnzXSfWmEMrsfZSDRgqyZ9ytdiIj/eRsnOXLR13LkTdXVOJYDBuf7xt1mLhM4p6+Q==", "requires": { - "@turf/helpers": "^6.3.0", - "@turf/invariant": "^6.3.0", - "@turf/meta": "^6.3.0", - "@turf/point-to-line-distance": "^6.3.0", + "@turf/helpers": "^6.5.0", + "@turf/invariant": "^6.5.0", + "@turf/meta": "^6.5.0", + "@turf/point-to-line-distance": "^6.5.0", "object-assign": "*" } }, "@turf/planepoint": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/@turf/planepoint/-/planepoint-6.3.0.tgz", - "integrity": "sha512-RDfzUiwB3P3bGeRBZf/czZdtQsqUIVQePaAU5ijCqTBdR1V0TuVbRig1WE0XD4j5dM242OEezHJ3Xqgo71Nzww==", + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/planepoint/-/planepoint-6.5.0.tgz", + "integrity": "sha512-R3AahA6DUvtFbka1kcJHqZ7DMHmPXDEQpbU5WaglNn7NaCQg9HB0XM0ZfqWcd5u92YXV+Gg8QhC8x5XojfcM4Q==", "requires": { - "@turf/helpers": "^6.3.0", - "@turf/invariant": "^6.3.0" + "@turf/helpers": "^6.5.0", + "@turf/invariant": "^6.5.0" } }, "@turf/point-grid": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/@turf/point-grid/-/point-grid-6.3.0.tgz", - "integrity": "sha512-1ERghdRXtA/5Z/To7X1Y9D1cvej3+ZCZXNZnM/0c+3sAioohjK5IXv2enR23p1ftA6Z3H7wug5IB4YmVzs4MaA==", + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/point-grid/-/point-grid-6.5.0.tgz", + "integrity": "sha512-Iq38lFokNNtQJnOj/RBKmyt6dlof0yhaHEDELaWHuECm1lIZLY3ZbVMwbs+nXkwTAHjKfS/OtMheUBkw+ee49w==", "requires": { - "@turf/boolean-within": "^6.3.0", - "@turf/distance": "^6.3.0", - "@turf/helpers": "^6.3.0", - "@turf/invariant": "^6.3.0" + "@turf/boolean-within": "^6.5.0", + "@turf/distance": "^6.5.0", + "@turf/helpers": "^6.5.0", + "@turf/invariant": "^6.5.0" } }, "@turf/point-on-feature": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/@turf/point-on-feature/-/point-on-feature-6.3.0.tgz", - "integrity": "sha512-zN35KN/IUAgOyVtlEQg1j71U8eoav2JPZOdWlEFHsjYQVm9cF+AKOkvBdm6LQWMWvCtwSqqghwe/zRKvzJPynw==", + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/point-on-feature/-/point-on-feature-6.5.0.tgz", + "integrity": "sha512-bDpuIlvugJhfcF/0awAQ+QI6Om1Y1FFYE8Y/YdxGRongivix850dTeXCo0mDylFdWFPGDo7Mmh9Vo4VxNwW/TA==", "requires": { - "@turf/boolean-point-in-polygon": "^6.3.0", - "@turf/center": "^6.3.0", - "@turf/explode": "^6.3.0", - "@turf/helpers": "^6.3.0", - "@turf/nearest-point": "^6.3.0" + "@turf/boolean-point-in-polygon": "^6.5.0", + "@turf/center": "^6.5.0", + "@turf/explode": "^6.5.0", + "@turf/helpers": "^6.5.0", + "@turf/nearest-point": "^6.5.0" } }, "@turf/point-to-line-distance": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/@turf/point-to-line-distance/-/point-to-line-distance-6.3.0.tgz", - "integrity": "sha512-AqCcj4A0GPzKb3w+q+C9ex0r5mC+u+Ee6VN2jY1p25dxBQJNpMZKDE5LcWtaXeD+pAk3ZGmvea8LR5S0AJukxA==", + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/point-to-line-distance/-/point-to-line-distance-6.5.0.tgz", + "integrity": "sha512-opHVQ4vjUhNBly1bob6RWy+F+hsZDH9SA0UW36pIRzfpu27qipU18xup0XXEePfY6+wvhF6yL/WgCO2IbrLqEA==", "requires": { - "@turf/bearing": "^6.3.0", - "@turf/distance": "^6.3.0", - "@turf/helpers": "^6.3.0", - "@turf/invariant": "^6.3.0", - "@turf/meta": "^6.3.0", - "@turf/projection": "^6.3.0", - "@turf/rhumb-bearing": "^6.3.0", - "@turf/rhumb-distance": "^6.3.0" + "@turf/bearing": "^6.5.0", + "@turf/distance": "^6.5.0", + "@turf/helpers": "^6.5.0", + "@turf/invariant": "^6.5.0", + "@turf/meta": "^6.5.0", + "@turf/projection": "^6.5.0", + "@turf/rhumb-bearing": "^6.5.0", + "@turf/rhumb-distance": "^6.5.0" } }, "@turf/points-within-polygon": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/@turf/points-within-polygon/-/points-within-polygon-6.3.0.tgz", - "integrity": "sha512-ES/tLj5oZR7TBg7FSOy8bypBvXALwl2f36MmQ3AJfK0KvAeQ+mxFXTGslAK3ewL9fVVxWLsmbP9bPLSzWeuPAw==", + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/points-within-polygon/-/points-within-polygon-6.5.0.tgz", + "integrity": "sha512-YyuheKqjliDsBDt3Ho73QVZk1VXX1+zIA2gwWvuz8bR1HXOkcuwk/1J76HuFMOQI3WK78wyAi+xbkx268PkQzQ==", "requires": { - "@turf/boolean-point-in-polygon": "^6.3.0", - "@turf/helpers": "^6.3.0", - "@turf/meta": "^6.3.0" + "@turf/boolean-point-in-polygon": "^6.5.0", + "@turf/helpers": "^6.5.0", + "@turf/meta": "^6.5.0" } }, "@turf/polygon-smooth": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/@turf/polygon-smooth/-/polygon-smooth-6.3.0.tgz", - "integrity": "sha512-60aMw3d57DXqdFyWU43c5gHaumCZ9jn6K5GqgeKTfmElIumdSspg9MEIW7d7z6qkPufPY34FczJ9yapMih5SIQ==", + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/polygon-smooth/-/polygon-smooth-6.5.0.tgz", + "integrity": "sha512-LO/X/5hfh/Rk4EfkDBpLlVwt3i6IXdtQccDT9rMjXEP32tRgy0VMFmdkNaXoGlSSKf/1mGqLl4y4wHd86DqKbg==", "requires": { - "@turf/helpers": "^6.3.0", - "@turf/meta": "^6.3.0" + "@turf/helpers": "^6.5.0", + "@turf/meta": "^6.5.0" } }, "@turf/polygon-tangents": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/@turf/polygon-tangents/-/polygon-tangents-6.3.0.tgz", - "integrity": "sha512-QEXsXgZKWV3mPPqxERIQ+DzBSvnO0R1c9FsHuHE0F49Cic+CRMPjEpnzQj39cOUQfwPlQl2ThuaKAljlQ5QNMQ==", + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/polygon-tangents/-/polygon-tangents-6.5.0.tgz", + "integrity": "sha512-sB4/IUqJMYRQH9jVBwqS/XDitkEfbyqRy+EH/cMRJURTg78eHunvJ708x5r6umXsbiUyQU4eqgPzEylWEQiunw==", "requires": { - "@turf/bbox": "^6.3.0", - "@turf/boolean-within": "^6.3.0", - "@turf/explode": "^6.3.0", - "@turf/helpers": "^6.3.0", - "@turf/invariant": "^6.3.0", - "@turf/nearest-point": "^6.3.0" + "@turf/bbox": "^6.5.0", + "@turf/boolean-within": "^6.5.0", + "@turf/explode": "^6.5.0", + "@turf/helpers": "^6.5.0", + "@turf/invariant": "^6.5.0", + "@turf/nearest-point": "^6.5.0" } }, "@turf/polygon-to-line": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/@turf/polygon-to-line/-/polygon-to-line-6.3.0.tgz", - "integrity": "sha512-KFGlQlGOBayBvELz+tip1zCa3eB8xyZePZUZ3I3OnU7mk0FFzJzvLTmPUc7MupgqORT4LkNGmyKSVWaz38NTig==", + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/polygon-to-line/-/polygon-to-line-6.5.0.tgz", + "integrity": "sha512-5p4n/ij97EIttAq+ewSnKt0ruvuM+LIDzuczSzuHTpq4oS7Oq8yqg5TQ4nzMVuK41r/tALCk7nAoBuw3Su4Gcw==", "requires": { - "@turf/helpers": "^6.3.0", - "@turf/invariant": "^6.3.0" + "@turf/helpers": "^6.5.0", + "@turf/invariant": "^6.5.0" } }, "@turf/polygonize": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/@turf/polygonize/-/polygonize-6.3.0.tgz", - "integrity": "sha512-v1w5ibIJ5to3+nuitVNyukPMMY+z++y3e55TBuot1vkAEyCi538Kc8Qz0eWONPGZKzwYtQtkve2NIp0BBeNd5g==", + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/polygonize/-/polygonize-6.5.0.tgz", + "integrity": "sha512-a/3GzHRaCyzg7tVYHo43QUChCspa99oK4yPqooVIwTC61npFzdrmnywMv0S+WZjHZwK37BrFJGFrZGf6ocmY5w==", "requires": { - "@turf/boolean-point-in-polygon": "^6.3.0", - "@turf/envelope": "^6.3.0", - "@turf/helpers": "^6.3.0", - "@turf/invariant": "^6.3.0", - "@turf/meta": "^6.3.0" + "@turf/boolean-point-in-polygon": "^6.5.0", + "@turf/envelope": "^6.5.0", + "@turf/helpers": "^6.5.0", + "@turf/invariant": "^6.5.0", + "@turf/meta": "^6.5.0" } }, "@turf/projection": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/@turf/projection/-/projection-6.3.0.tgz", - "integrity": "sha512-IpSs7Q6G6xi47ynVlYYVegPLy6Jc0yo3/DcIm83jaJa4NnzPFXIFZT0v9Fe1N8MraHZqiqaSPbVnJXCGwR12lg==", + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/projection/-/projection-6.5.0.tgz", + "integrity": "sha512-/Pgh9mDvQWWu8HRxqpM+tKz8OzgauV+DiOcr3FCjD6ubDnrrmMJlsf6fFJmggw93mtVPrZRL6yyi9aYCQBOIvg==", "requires": { - "@turf/clone": "^6.3.0", - "@turf/helpers": "^6.3.0", - "@turf/meta": "^6.3.0" + "@turf/clone": "^6.5.0", + "@turf/helpers": "^6.5.0", + "@turf/meta": "^6.5.0" } }, "@turf/random": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/@turf/random/-/random-6.3.0.tgz", - "integrity": "sha512-jSKNqLCOc/xUPoQp8jZLUYTrtID1PNJV7eLXMbJdHdcYwU7d6dTkrdgI08ZU/Nc4qJv1ZAlWO/xEyKGtC1RgrQ==", + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/random/-/random-6.5.0.tgz", + "integrity": "sha512-8Q25gQ/XbA7HJAe+eXp4UhcXM9aOOJFaxZ02+XSNwMvY8gtWSCBLVqRcW4OhqilgZ8PeuQDWgBxeo+BIqqFWFQ==", "requires": { - "@turf/helpers": "^6.3.0" + "@turf/helpers": "^6.5.0" } }, "@turf/rectangle-grid": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/@turf/rectangle-grid/-/rectangle-grid-6.3.0.tgz", - "integrity": "sha512-XQAjpprUhGA9aoVH8H6lqZb0Dk8SZ2djKAPD6dDplFgrufdmP1Fe1BfbsdBgjyfPrdR7hSffLyEAwC3bhfJo2w==", + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/rectangle-grid/-/rectangle-grid-6.5.0.tgz", + "integrity": "sha512-yQZ/1vbW68O2KsSB3OZYK+72aWz/Adnf7m2CMKcC+aq6TwjxZjAvlbCOsNUnMAuldRUVN1ph6RXMG4e9KEvKvg==", "requires": { - "@turf/boolean-intersects": "^6.3.0", - "@turf/distance": "^6.3.0", - "@turf/helpers": "^6.3.0" + "@turf/boolean-intersects": "^6.5.0", + "@turf/distance": "^6.5.0", + "@turf/helpers": "^6.5.0" } }, "@turf/rewind": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/@turf/rewind/-/rewind-6.3.0.tgz", - "integrity": "sha512-56HwvOZ4r4/wXr8l8zCpdjZ3bxY6Ee7aokuJr/+BlVqikHdRHRx+FJpLGpykZU1YWdO7IiLK7ajX+clYPaqRKg==", + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/rewind/-/rewind-6.5.0.tgz", + "integrity": "sha512-IoUAMcHWotBWYwSYuYypw/LlqZmO+wcBpn8ysrBNbazkFNkLf3btSDZMkKJO/bvOzl55imr/Xj4fi3DdsLsbzQ==", "requires": { - "@turf/boolean-clockwise": "^6.3.0", - "@turf/clone": "^6.3.0", - "@turf/helpers": "^6.3.0", - "@turf/invariant": "^6.3.0", - "@turf/meta": "^6.3.0" + "@turf/boolean-clockwise": "^6.5.0", + "@turf/clone": "^6.5.0", + "@turf/helpers": "^6.5.0", + "@turf/invariant": "^6.5.0", + "@turf/meta": "^6.5.0" } }, "@turf/rhumb-bearing": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/@turf/rhumb-bearing/-/rhumb-bearing-6.3.0.tgz", - "integrity": "sha512-/c/BE3huEUrwN6gx7Bg2FzfJqeU+TWk/slQPDHpbVunlIPbS6L28brqSVD+KXfMG8HQIzynz6Pm4Y+j5Iv4aWA==", + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/rhumb-bearing/-/rhumb-bearing-6.5.0.tgz", + "integrity": "sha512-jMyqiMRK4hzREjQmnLXmkJ+VTNTx1ii8vuqRwJPcTlKbNWfjDz/5JqJlb5NaFDcdMpftWovkW5GevfnuzHnOYA==", "requires": { - "@turf/helpers": "^6.3.0", - "@turf/invariant": "^6.3.0" + "@turf/helpers": "^6.5.0", + "@turf/invariant": "^6.5.0" } }, "@turf/rhumb-destination": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/@turf/rhumb-destination/-/rhumb-destination-6.3.0.tgz", - "integrity": "sha512-MaQf5wldfERfn8cjtbkD/6GUurAwD+sjedvDgV/chZ83yx7kXmRgrVMpRSGUbmGQ3Ww8dn38sUCapnM6M07+Rg==", + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/rhumb-destination/-/rhumb-destination-6.5.0.tgz", + "integrity": "sha512-RHNP1Oy+7xTTdRrTt375jOZeHceFbjwohPHlr9Hf68VdHHPMAWgAKqiX2YgSWDcvECVmiGaBKWus1Df+N7eE4Q==", "requires": { - "@turf/helpers": "^6.3.0", - "@turf/invariant": "^6.3.0" + "@turf/helpers": "^6.5.0", + "@turf/invariant": "^6.5.0" } }, "@turf/rhumb-distance": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/@turf/rhumb-distance/-/rhumb-distance-6.3.0.tgz", - "integrity": "sha512-wMIQVvznusonnp/POeucFdA4Rubn0NrkcEMdxdcCgFK7OmTz0zU4CEnNONF2IUGkQ5WwoKiuS7MOTQ8OuCjSfQ==", + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/rhumb-distance/-/rhumb-distance-6.5.0.tgz", + "integrity": "sha512-oKp8KFE8E4huC2Z1a1KNcFwjVOqa99isxNOwfo4g3SUABQ6NezjKDDrnvC4yI5YZ3/huDjULLBvhed45xdCrzg==", "requires": { - "@turf/helpers": "^6.3.0", - "@turf/invariant": "^6.3.0" + "@turf/helpers": "^6.5.0", + "@turf/invariant": "^6.5.0" } }, "@turf/sample": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/@turf/sample/-/sample-6.3.0.tgz", - "integrity": "sha512-CmUkpoLIi+57jxBmYh4KW7S4Vculty84NC2ERNFZrLkVquewVYSppwKsaZtc0Hbap6a1N7hP4C80e2bPzRC4fg==", + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/sample/-/sample-6.5.0.tgz", + "integrity": "sha512-kSdCwY7el15xQjnXYW520heKUrHwRvnzx8ka4eYxX9NFeOxaFITLW2G7UtXb6LJK8mmPXI8Aexv23F2ERqzGFg==", "requires": { - "@turf/helpers": "^6.3.0" + "@turf/helpers": "^6.5.0" } }, "@turf/sector": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/@turf/sector/-/sector-6.3.0.tgz", - "integrity": "sha512-bHaDlHzCKEl5G+EEXdMTk3MFC8Yl5QjwrMVakF2Usi0P0c7hp6r10QVOjq9nmn6jvZHTPaiG2A4z9unkWIFxIg==", + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/sector/-/sector-6.5.0.tgz", + "integrity": "sha512-cYUOkgCTWqa23SOJBqxoFAc/yGCUsPRdn/ovbRTn1zNTm/Spmk6hVB84LCKOgHqvSF25i0d2kWqpZDzLDdAPbw==", "requires": { - "@turf/circle": "^6.3.0", - "@turf/helpers": "^6.3.0", - "@turf/invariant": "^6.3.0", - "@turf/line-arc": "^6.3.0", - "@turf/meta": "^6.3.0" + "@turf/circle": "^6.5.0", + "@turf/helpers": "^6.5.0", + "@turf/invariant": "^6.5.0", + "@turf/line-arc": "^6.5.0", + "@turf/meta": "^6.5.0" } }, "@turf/shortest-path": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/@turf/shortest-path/-/shortest-path-6.3.0.tgz", - "integrity": "sha512-dc50vcgb6G/nyljCdfxS4T3tGb2f45MkKEFdz6sVTYqjNakPnRoJao8xvInVsf1i2J53dWNU635oZhW9P1nqKg==", + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/shortest-path/-/shortest-path-6.5.0.tgz", + "integrity": "sha512-4de5+G7+P4hgSoPwn+SO9QSi9HY5NEV/xRJ+cmoFVRwv2CDsuOPDheHKeuIAhKyeKDvPvPt04XYWbac4insJMg==", "requires": { - "@turf/bbox": "^6.3.0", - "@turf/bbox-polygon": "^6.3.0", - "@turf/boolean-point-in-polygon": "^6.3.0", - "@turf/clean-coords": "^6.3.0", - "@turf/distance": "^6.3.0", - "@turf/helpers": "^6.3.0", - "@turf/invariant": "^6.3.0", - "@turf/meta": "^6.3.0", - "@turf/transform-scale": "^6.3.0" + "@turf/bbox": "^6.5.0", + "@turf/bbox-polygon": "^6.5.0", + "@turf/boolean-point-in-polygon": "^6.5.0", + "@turf/clean-coords": "^6.5.0", + "@turf/distance": "^6.5.0", + "@turf/helpers": "^6.5.0", + "@turf/invariant": "^6.5.0", + "@turf/meta": "^6.5.0", + "@turf/transform-scale": "^6.5.0" } }, "@turf/simplify": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/@turf/simplify/-/simplify-6.3.0.tgz", - "integrity": "sha512-6a+9oKwZpZk3Oohz9koQZGXh1qb+/UgUz2yW2bunjjlKpBdBFhRbEKi0KeprgPGFLLTMjf0tybhO1rFwiz6S1w==", + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/simplify/-/simplify-6.5.0.tgz", + "integrity": "sha512-USas3QqffPHUY184dwQdP8qsvcVH/PWBYdXY5am7YTBACaQOMAlf6AKJs9FT8jiO6fQpxfgxuEtwmox+pBtlOg==", "requires": { - "@turf/clean-coords": "^6.3.0", - "@turf/clone": "^6.3.0", - "@turf/helpers": "^6.3.0", - "@turf/meta": "^6.3.0" + "@turf/clean-coords": "^6.5.0", + "@turf/clone": "^6.5.0", + "@turf/helpers": "^6.5.0", + "@turf/meta": "^6.5.0" } }, "@turf/square": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/@turf/square/-/square-6.3.0.tgz", - "integrity": "sha512-/nRGsV0DlUcOYv+gKAkIADSf+HooNLbOLBTUdhq9Piy3LuAWIXT+Rt5XN+NuNZP+84Al34GA1fR+BxqQ4reh7w==", + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/square/-/square-6.5.0.tgz", + "integrity": "sha512-BM2UyWDmiuHCadVhHXKIx5CQQbNCpOxB6S/aCNOCLbhCeypKX5Q0Aosc5YcmCJgkwO5BERCC6Ee7NMbNB2vHmQ==", "requires": { - "@turf/distance": "^6.3.0", - "@turf/helpers": "^6.3.0" + "@turf/distance": "^6.5.0", + "@turf/helpers": "^6.5.0" } }, "@turf/square-grid": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/@turf/square-grid/-/square-grid-6.3.0.tgz", - "integrity": "sha512-ZCgThI5hPLJNVErCB9zkJ3w3OpW6BbrOqyrxFbwlYGZrZ6uj52/j8PWQtwnmiqdv0k8+Cbxrap7E6//Oks4jIw==", + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/square-grid/-/square-grid-6.5.0.tgz", + "integrity": "sha512-mlR0ayUdA+L4c9h7p4k3pX6gPWHNGuZkt2c5II1TJRmhLkW2557d6b/Vjfd1z9OVaajb1HinIs1FMSAPXuuUrA==", "requires": { - "@turf/helpers": "^6.3.0", - "@turf/rectangle-grid": "^6.3.0" + "@turf/helpers": "^6.5.0", + "@turf/rectangle-grid": "^6.5.0" } }, "@turf/standard-deviational-ellipse": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/@turf/standard-deviational-ellipse/-/standard-deviational-ellipse-6.3.0.tgz", - "integrity": "sha512-e8CeSUv5FLpzlJxiOr9lDtJIY3e/JKW4is+gBO8rMTQNFbWyrqXtzhyTfrwXEPKmaeei1DK9ixxj/oRDna25Hw==", + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/standard-deviational-ellipse/-/standard-deviational-ellipse-6.5.0.tgz", + "integrity": "sha512-02CAlz8POvGPFK2BKK8uHGUk/LXb0MK459JVjKxLC2yJYieOBTqEbjP0qaWhiBhGzIxSMaqe8WxZ0KvqdnstHA==", "requires": { - "@turf/center-mean": "^6.3.0", - "@turf/ellipse": "^6.3.0", - "@turf/helpers": "^6.3.0", - "@turf/invariant": "^6.3.0", - "@turf/meta": "^6.3.0", - "@turf/points-within-polygon": "^6.3.0" + "@turf/center-mean": "^6.5.0", + "@turf/ellipse": "^6.5.0", + "@turf/helpers": "^6.5.0", + "@turf/invariant": "^6.5.0", + "@turf/meta": "^6.5.0", + "@turf/points-within-polygon": "^6.5.0" } }, "@turf/tag": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/@turf/tag/-/tag-6.3.0.tgz", - "integrity": "sha512-3L//rLql+ILeFuZ5L/sPm0f5NcHrNgUnGiB1hSIp3kdhhIIiZUpcktJUbksTvID67JJlP3smfyIQiU++LZW21w==", + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/tag/-/tag-6.5.0.tgz", + "integrity": "sha512-XwlBvrOV38CQsrNfrxvBaAPBQgXMljeU0DV8ExOyGM7/hvuGHJw3y8kKnQ4lmEQcmcrycjDQhP7JqoRv8vFssg==", "requires": { - "@turf/boolean-point-in-polygon": "^6.3.0", - "@turf/clone": "^6.3.0", - "@turf/helpers": "^6.3.0", - "@turf/meta": "^6.3.0" + "@turf/boolean-point-in-polygon": "^6.5.0", + "@turf/clone": "^6.5.0", + "@turf/helpers": "^6.5.0", + "@turf/meta": "^6.5.0" } }, "@turf/tesselate": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/@turf/tesselate/-/tesselate-6.3.0.tgz", - "integrity": "sha512-SkBHJCci/ergp/Y1TIfBRavdEJgFatQDz+ySdggXHT+mBiJEOEia3N+8V89RVOnORXTCDsjzWOWwftCS/J2sKQ==", + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/tesselate/-/tesselate-6.5.0.tgz", + "integrity": "sha512-M1HXuyZFCfEIIKkglh/r5L9H3c5QTEsnMBoZOFQiRnGPGmJWcaBissGb7mTFX2+DKE7FNWXh4TDnZlaLABB0dQ==", "requires": { - "@turf/helpers": "^6.3.0", + "@turf/helpers": "^6.5.0", "earcut": "^2.0.0" } }, "@turf/tin": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/@turf/tin/-/tin-6.3.0.tgz", - "integrity": "sha512-obk9vyzKo3o3Dy4fPlb8IROb9LdMlz4LvKZ63DNtQsxwrWsc+og0EOh2mpvZrCIeoObx3ah5SnuAh14xH4JybA==", + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/tin/-/tin-6.5.0.tgz", + "integrity": "sha512-YLYikRzKisfwj7+F+Tmyy/LE3d2H7D4kajajIfc9mlik2+esG7IolsX/+oUz1biguDYsG0DUA8kVYXDkobukfg==", "requires": { - "@turf/helpers": "^6.3.0" + "@turf/helpers": "^6.5.0" } }, "@turf/transform-rotate": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/@turf/transform-rotate/-/transform-rotate-6.3.0.tgz", - "integrity": "sha512-6CPfmDdaXjbBoPeyHkui704vz6MD3MoI09LGRVJ/RIo1uH/OL6RDSlCfLxFtkE33FJ7VV4giczc3LF1UP5Oh9w==", + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/transform-rotate/-/transform-rotate-6.5.0.tgz", + "integrity": "sha512-A2Ip1v4246ZmpssxpcL0hhiVBEf4L8lGnSPWTgSv5bWBEoya2fa/0SnFX9xJgP40rMP+ZzRaCN37vLHbv1Guag==", "requires": { - "@turf/centroid": "^6.3.0", - "@turf/clone": "^6.3.0", - "@turf/helpers": "^6.3.0", - "@turf/invariant": "^6.3.0", - "@turf/meta": "^6.3.0", - "@turf/rhumb-bearing": "^6.3.0", - "@turf/rhumb-destination": "^6.3.0", - "@turf/rhumb-distance": "^6.3.0" + "@turf/centroid": "^6.5.0", + "@turf/clone": "^6.5.0", + "@turf/helpers": "^6.5.0", + "@turf/invariant": "^6.5.0", + "@turf/meta": "^6.5.0", + "@turf/rhumb-bearing": "^6.5.0", + "@turf/rhumb-destination": "^6.5.0", + "@turf/rhumb-distance": "^6.5.0" } }, "@turf/transform-scale": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/@turf/transform-scale/-/transform-scale-6.3.0.tgz", - "integrity": "sha512-UnLWEXAUdZy7JYbylMjYczPUkxXlUK1nMgv7zEzQ+8mczysPVsgB/FDyiexY2bgVEEBMeDqFSHtqLRavXljI0A==", + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/transform-scale/-/transform-scale-6.5.0.tgz", + "integrity": "sha512-VsATGXC9rYM8qTjbQJ/P7BswKWXHdnSJ35JlV4OsZyHBMxJQHftvmZJsFbOqVtQnIQIzf2OAly6rfzVV9QLr7g==", "requires": { - "@turf/bbox": "^6.3.0", - "@turf/center": "^6.3.0", - "@turf/centroid": "^6.3.0", - "@turf/clone": "^6.3.0", - "@turf/helpers": "^6.3.0", - "@turf/invariant": "^6.3.0", - "@turf/meta": "^6.3.0", - "@turf/rhumb-bearing": "^6.3.0", - "@turf/rhumb-destination": "^6.3.0", - "@turf/rhumb-distance": "^6.3.0" + "@turf/bbox": "^6.5.0", + "@turf/center": "^6.5.0", + "@turf/centroid": "^6.5.0", + "@turf/clone": "^6.5.0", + "@turf/helpers": "^6.5.0", + "@turf/invariant": "^6.5.0", + "@turf/meta": "^6.5.0", + "@turf/rhumb-bearing": "^6.5.0", + "@turf/rhumb-destination": "^6.5.0", + "@turf/rhumb-distance": "^6.5.0" } }, "@turf/transform-translate": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/@turf/transform-translate/-/transform-translate-6.3.0.tgz", - "integrity": "sha512-ZGAK3T6wdYLOIKr/FHl+i09b1vhPV3XWHw4/M27xA6US2rNcO6/jkLjskdME/3JzJDFmGa8F2vlPqlhtWWoRSw==", + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/transform-translate/-/transform-translate-6.5.0.tgz", + "integrity": "sha512-NABLw5VdtJt/9vSstChp93pc6oel4qXEos56RBMsPlYB8hzNTEKYtC146XJvyF4twJeeYS8RVe1u7KhoFwEM5w==", "requires": { - "@turf/clone": "^6.3.0", - "@turf/helpers": "^6.3.0", - "@turf/invariant": "^6.3.0", - "@turf/meta": "^6.3.0", - "@turf/rhumb-destination": "^6.3.0" + "@turf/clone": "^6.5.0", + "@turf/helpers": "^6.5.0", + "@turf/invariant": "^6.5.0", + "@turf/meta": "^6.5.0", + "@turf/rhumb-destination": "^6.5.0" } }, "@turf/triangle-grid": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/@turf/triangle-grid/-/triangle-grid-6.3.0.tgz", - "integrity": "sha512-2AExXl7pTvRKOyGowuvvUm0tTyLQl+xzvv+mgWgNyg84qQptGN3HFH/QS4quoQdEzOyHNLFHgloNn6cWFX9v4A==", + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/triangle-grid/-/triangle-grid-6.5.0.tgz", + "integrity": "sha512-2jToUSAS1R1htq4TyLQYPTIsoy6wg3e3BQXjm2rANzw4wPQCXGOxrur1Fy9RtzwqwljlC7DF4tg0OnWr8RjmfA==", "requires": { - "@turf/distance": "^6.3.0", - "@turf/helpers": "^6.3.0", - "@turf/intersect": "^6.3.0" + "@turf/distance": "^6.5.0", + "@turf/helpers": "^6.5.0", + "@turf/intersect": "^6.5.0" } }, "@turf/truncate": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/@turf/truncate/-/truncate-6.3.0.tgz", - "integrity": "sha512-fvzR3BUODPciEBELLqqAggEEeb1L0d79WZYb9HKaoSB0GKTTgNrEbkTXiiGEjGJ1s1FMqXOEp0DKsLvvb1h4OA==", + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/truncate/-/truncate-6.5.0.tgz", + "integrity": "sha512-pFxg71pLk+eJj134Z9yUoRhIi8vqnnKvCYwdT4x/DQl/19RVdq1tV3yqOT3gcTQNfniteylL5qV1uTBDV5sgrg==", "requires": { - "@turf/helpers": "^6.3.0", - "@turf/meta": "^6.3.0" + "@turf/helpers": "^6.5.0", + "@turf/meta": "^6.5.0" } }, "@turf/turf": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/@turf/turf/-/turf-6.3.0.tgz", - "integrity": "sha512-6CcUammJKsn6mI7/+DlnXqf1iAk5HZ86/wmHIVG6VTmmPBP5drWSjoRUcaiXQADzLLuR9eZ3kl11KEOdvn9DmQ==", + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/turf/-/turf-6.5.0.tgz", + "integrity": "sha512-ipMCPnhu59bh92MNt8+pr1VZQhHVuTMHklciQURo54heoxRzt1neNYZOBR6jdL+hNsbDGAECMuIpAutX+a3Y+w==", "requires": { - "@turf/along": "^6.3.0", - "@turf/angle": "^6.3.0", - "@turf/area": "^6.3.0", - "@turf/bbox": "^6.3.0", - "@turf/bbox-clip": "^6.3.0", - "@turf/bbox-polygon": "^6.3.0", - "@turf/bearing": "^6.3.0", - "@turf/bezier-spline": "^6.3.0", - "@turf/boolean-clockwise": "^6.3.0", - "@turf/boolean-contains": "^6.3.0", - "@turf/boolean-crosses": "^6.3.0", - "@turf/boolean-disjoint": "^6.3.0", - "@turf/boolean-equal": "^6.3.0", - "@turf/boolean-intersects": "^6.3.0", - "@turf/boolean-overlap": "^6.3.0", - "@turf/boolean-parallel": "^6.3.0", - "@turf/boolean-point-in-polygon": "^6.3.0", - "@turf/boolean-point-on-line": "^6.3.0", - "@turf/boolean-within": "^6.3.0", - "@turf/buffer": "^6.3.0", - "@turf/center": "^6.3.0", - "@turf/center-mean": "^6.3.0", - "@turf/center-median": "^6.3.0", - "@turf/center-of-mass": "^6.3.0", - "@turf/centroid": "^6.3.0", - "@turf/circle": "^6.3.0", - "@turf/clean-coords": "^6.3.0", - "@turf/clone": "^6.3.0", - "@turf/clusters": "^6.3.0", - "@turf/clusters-dbscan": "^6.3.0", - "@turf/clusters-kmeans": "^6.3.0", - "@turf/collect": "^6.3.0", - "@turf/combine": "^6.3.0", - "@turf/concave": "^6.3.0", - "@turf/convex": "^6.3.0", - "@turf/destination": "^6.3.0", - "@turf/difference": "^6.3.0", - "@turf/dissolve": "^6.3.0", - "@turf/distance": "^6.3.0", - "@turf/distance-weight": "^6.3.0", - "@turf/ellipse": "^6.3.0", - "@turf/envelope": "^6.3.0", - "@turf/explode": "^6.3.0", - "@turf/flatten": "^6.3.0", - "@turf/flip": "^6.3.0", - "@turf/great-circle": "^6.3.0", - "@turf/helpers": "^6.3.0", - "@turf/hex-grid": "^6.3.0", - "@turf/interpolate": "^6.3.0", - "@turf/intersect": "^6.3.0", - "@turf/invariant": "^6.3.0", - "@turf/isobands": "^6.3.0", - "@turf/isolines": "^6.3.0", - "@turf/kinks": "^6.3.0", - "@turf/length": "^6.3.0", - "@turf/line-arc": "^6.3.0", - "@turf/line-chunk": "^6.3.0", - "@turf/line-intersect": "^6.3.0", - "@turf/line-offset": "^6.3.0", - "@turf/line-overlap": "^6.3.0", - "@turf/line-segment": "^6.3.0", - "@turf/line-slice": "^6.3.0", - "@turf/line-slice-along": "^6.3.0", - "@turf/line-split": "^6.3.0", - "@turf/line-to-polygon": "^6.3.0", - "@turf/mask": "^6.3.0", - "@turf/meta": "^6.3.0", - "@turf/midpoint": "^6.3.0", - "@turf/moran-index": "^6.3.0", - "@turf/nearest-point": "^6.3.0", - "@turf/nearest-point-on-line": "^6.3.0", - "@turf/nearest-point-to-line": "^6.3.0", - "@turf/planepoint": "^6.3.0", - "@turf/point-grid": "^6.3.0", - "@turf/point-on-feature": "^6.3.0", - "@turf/point-to-line-distance": "^6.3.0", - "@turf/points-within-polygon": "^6.3.0", - "@turf/polygon-smooth": "^6.3.0", - "@turf/polygon-tangents": "^6.3.0", - "@turf/polygon-to-line": "^6.3.0", - "@turf/polygonize": "^6.3.0", - "@turf/projection": "^6.3.0", - "@turf/random": "^6.3.0", - "@turf/rewind": "^6.3.0", - "@turf/rhumb-bearing": "^6.3.0", - "@turf/rhumb-destination": "^6.3.0", - "@turf/rhumb-distance": "^6.3.0", - "@turf/sample": "^6.3.0", - "@turf/sector": "^6.3.0", - "@turf/shortest-path": "^6.3.0", - "@turf/simplify": "^6.3.0", - "@turf/square": "^6.3.0", - "@turf/square-grid": "^6.3.0", - "@turf/standard-deviational-ellipse": "^6.3.0", - "@turf/tag": "^6.3.0", - "@turf/tesselate": "^6.3.0", - "@turf/tin": "^6.3.0", - "@turf/transform-rotate": "^6.3.0", - "@turf/transform-scale": "^6.3.0", - "@turf/transform-translate": "^6.3.0", - "@turf/triangle-grid": "^6.3.0", - "@turf/truncate": "^6.3.0", - "@turf/union": "^6.3.0", - "@turf/unkink-polygon": "^6.3.0", - "@turf/voronoi": "^6.3.0" + "@turf/along": "^6.5.0", + "@turf/angle": "^6.5.0", + "@turf/area": "^6.5.0", + "@turf/bbox": "^6.5.0", + "@turf/bbox-clip": "^6.5.0", + "@turf/bbox-polygon": "^6.5.0", + "@turf/bearing": "^6.5.0", + "@turf/bezier-spline": "^6.5.0", + "@turf/boolean-clockwise": "^6.5.0", + "@turf/boolean-contains": "^6.5.0", + "@turf/boolean-crosses": "^6.5.0", + "@turf/boolean-disjoint": "^6.5.0", + "@turf/boolean-equal": "^6.5.0", + "@turf/boolean-intersects": "^6.5.0", + "@turf/boolean-overlap": "^6.5.0", + "@turf/boolean-parallel": "^6.5.0", + "@turf/boolean-point-in-polygon": "^6.5.0", + "@turf/boolean-point-on-line": "^6.5.0", + "@turf/boolean-within": "^6.5.0", + "@turf/buffer": "^6.5.0", + "@turf/center": "^6.5.0", + "@turf/center-mean": "^6.5.0", + "@turf/center-median": "^6.5.0", + "@turf/center-of-mass": "^6.5.0", + "@turf/centroid": "^6.5.0", + "@turf/circle": "^6.5.0", + "@turf/clean-coords": "^6.5.0", + "@turf/clone": "^6.5.0", + "@turf/clusters": "^6.5.0", + "@turf/clusters-dbscan": "^6.5.0", + "@turf/clusters-kmeans": "^6.5.0", + "@turf/collect": "^6.5.0", + "@turf/combine": "^6.5.0", + "@turf/concave": "^6.5.0", + "@turf/convex": "^6.5.0", + "@turf/destination": "^6.5.0", + "@turf/difference": "^6.5.0", + "@turf/dissolve": "^6.5.0", + "@turf/distance": "^6.5.0", + "@turf/distance-weight": "^6.5.0", + "@turf/ellipse": "^6.5.0", + "@turf/envelope": "^6.5.0", + "@turf/explode": "^6.5.0", + "@turf/flatten": "^6.5.0", + "@turf/flip": "^6.5.0", + "@turf/great-circle": "^6.5.0", + "@turf/helpers": "^6.5.0", + "@turf/hex-grid": "^6.5.0", + "@turf/interpolate": "^6.5.0", + "@turf/intersect": "^6.5.0", + "@turf/invariant": "^6.5.0", + "@turf/isobands": "^6.5.0", + "@turf/isolines": "^6.5.0", + "@turf/kinks": "^6.5.0", + "@turf/length": "^6.5.0", + "@turf/line-arc": "^6.5.0", + "@turf/line-chunk": "^6.5.0", + "@turf/line-intersect": "^6.5.0", + "@turf/line-offset": "^6.5.0", + "@turf/line-overlap": "^6.5.0", + "@turf/line-segment": "^6.5.0", + "@turf/line-slice": "^6.5.0", + "@turf/line-slice-along": "^6.5.0", + "@turf/line-split": "^6.5.0", + "@turf/line-to-polygon": "^6.5.0", + "@turf/mask": "^6.5.0", + "@turf/meta": "^6.5.0", + "@turf/midpoint": "^6.5.0", + "@turf/moran-index": "^6.5.0", + "@turf/nearest-point": "^6.5.0", + "@turf/nearest-point-on-line": "^6.5.0", + "@turf/nearest-point-to-line": "^6.5.0", + "@turf/planepoint": "^6.5.0", + "@turf/point-grid": "^6.5.0", + "@turf/point-on-feature": "^6.5.0", + "@turf/point-to-line-distance": "^6.5.0", + "@turf/points-within-polygon": "^6.5.0", + "@turf/polygon-smooth": "^6.5.0", + "@turf/polygon-tangents": "^6.5.0", + "@turf/polygon-to-line": "^6.5.0", + "@turf/polygonize": "^6.5.0", + "@turf/projection": "^6.5.0", + "@turf/random": "^6.5.0", + "@turf/rewind": "^6.5.0", + "@turf/rhumb-bearing": "^6.5.0", + "@turf/rhumb-destination": "^6.5.0", + "@turf/rhumb-distance": "^6.5.0", + "@turf/sample": "^6.5.0", + "@turf/sector": "^6.5.0", + "@turf/shortest-path": "^6.5.0", + "@turf/simplify": "^6.5.0", + "@turf/square": "^6.5.0", + "@turf/square-grid": "^6.5.0", + "@turf/standard-deviational-ellipse": "^6.5.0", + "@turf/tag": "^6.5.0", + "@turf/tesselate": "^6.5.0", + "@turf/tin": "^6.5.0", + "@turf/transform-rotate": "^6.5.0", + "@turf/transform-scale": "^6.5.0", + "@turf/transform-translate": "^6.5.0", + "@turf/triangle-grid": "^6.5.0", + "@turf/truncate": "^6.5.0", + "@turf/union": "^6.5.0", + "@turf/unkink-polygon": "^6.5.0", + "@turf/voronoi": "^6.5.0" } }, "@turf/union": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/@turf/union/-/union-6.3.0.tgz", - "integrity": "sha512-m8yh13Q5E0Y+YC10+iI/Qq0Txt7UmSIFByc7DfNVlMMGTceqLFa8xGwSVdFuB/d6MWwKuzKonQMl1PUx/Vd2Iw==", + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/union/-/union-6.5.0.tgz", + "integrity": "sha512-igYWCwP/f0RFHIlC2c0SKDuM/ObBaqSljI3IdV/x71805QbIvY/BYGcJdyNcgEA6cylIGl/0VSlIbpJHZ9ldhw==", "requires": { - "@turf/helpers": "^6.3.0", - "@turf/invariant": "^6.3.0", - "polygon-clipping": "^0.15.2" - }, - "dependencies": { - "polygon-clipping": { - "version": "0.15.3", - "resolved": "https://registry.npmjs.org/polygon-clipping/-/polygon-clipping-0.15.3.tgz", - "integrity": "sha512-ho0Xx5DLkgxRx/+n4O74XyJ67DcyN3Tu9bGYKsnTukGAW6ssnuak6Mwcyb1wHy9MZc9xsUWqIoiazkZB5weECg==", - "requires": { - "splaytree": "^3.1.0" - } - }, - "splaytree": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/splaytree/-/splaytree-3.1.0.tgz", - "integrity": "sha512-gvUGR7xnOy0fLKTCxDeUZYgU/I1Tdf8M/lM1Qrf8L2TIOR5ipZjGk02uYcdv0o2x7WjVRgpm3iS2clLyuVAt0Q==" - } + "@turf/helpers": "^6.5.0", + "@turf/invariant": "^6.5.0", + "polygon-clipping": "^0.15.3" } }, "@turf/unkink-polygon": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/@turf/unkink-polygon/-/unkink-polygon-6.3.0.tgz", - "integrity": "sha512-XBUJkuDEr2R8cHpl+sHtV15J1S28/HCxhAHqfV+As3bTi81KhVhBK9EBwFGYCu9aerVgBK129FjRKXjnTYqtDw==", + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/unkink-polygon/-/unkink-polygon-6.5.0.tgz", + "integrity": "sha512-8QswkzC0UqKmN1DT6HpA9upfa1HdAA5n6bbuzHy8NJOX8oVizVAqfEPY0wqqTgboDjmBR4yyImsdPGUl3gZ8JQ==", "requires": { - "@turf/area": "^6.3.0", - "@turf/boolean-point-in-polygon": "^6.3.0", - "@turf/helpers": "^6.3.0", - "@turf/meta": "^6.3.0", + "@turf/area": "^6.5.0", + "@turf/boolean-point-in-polygon": "^6.5.0", + "@turf/helpers": "^6.5.0", + "@turf/meta": "^6.5.0", "rbush": "^2.0.1" } }, "@turf/voronoi": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/@turf/voronoi/-/voronoi-6.3.0.tgz", - "integrity": "sha512-M0C6Kfo+qvKk4veRD7xW1PjMitJ0vqN6F4OOczxyX3tkj/oMyhWg+YbWk7mo/wKdSo9gCvHhnIVNkPsSSaFmyQ==", + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/@turf/voronoi/-/voronoi-6.5.0.tgz", + "integrity": "sha512-C/xUsywYX+7h1UyNqnydHXiun4UPjK88VDghtoRypR9cLlb7qozkiLRphQxxsCM0KxyxpVPHBVQXdAL3+Yurow==", "requires": { - "@turf/helpers": "^6.3.0", - "@turf/invariant": "^6.3.0", + "@turf/helpers": "^6.5.0", + "@turf/invariant": "^6.5.0", "d3-voronoi": "1.1.2" } }, "@types/geojson": { - "version": "7946.0.7", - "resolved": "https://registry.npmjs.org/@types/geojson/-/geojson-7946.0.7.tgz", - "integrity": "sha512-wE2v81i4C4Ol09RtsWFAqg3BUitWbHSpSlIo+bNdsCJijO9sjme+zm+73ZMCa/qMC8UEERxzGbvmr1cffo2SiQ==" + "version": "7946.0.8", + "resolved": "https://registry.npmjs.org/@types/geojson/-/geojson-7946.0.8.tgz", + "integrity": "sha512-1rkryxURpr6aWP7R786/UQOkJ3PcpQiWkAXBmdWc7ryFWqN6a4xfK7BtjXvFBKO9LjQ+MWQSWxYeZX1OApnArA==" }, "@types/jquery": { "version": "3.5.5", @@ -20465,14 +18666,6 @@ "@types/leaflet": "*" } }, - "@types/leaflet.markercluster": { - "version": "1.4.4", - "resolved": "https://registry.npmjs.org/@types/leaflet.markercluster/-/leaflet.markercluster-1.4.4.tgz", - "integrity": "sha512-BQAilNWlBpYl4+PrsJXLOh4vyv7KfWi5kh3Fclg5y4gEeNeXKqhS6y1zzBB4+wcTuVUnMWfm2G0MfqA4yA5A5A==", - "requires": { - "@types/leaflet": "*" - } - }, "@types/lz-string": { "version": "1.3.34", "resolved": "https://registry.npmjs.org/@types/lz-string/-/lz-string-1.3.34.tgz", @@ -20481,8 +18674,15 @@ "@types/node": { "version": "7.10.14", "resolved": "https://registry.npmjs.org/@types/node/-/node-7.10.14.tgz", - "integrity": "sha512-29GS75BE8asnTno3yB6ubOJOO0FboExEqNJy4bpz0GSmW/8wPTNL4h9h63c6s1uTrOopCmJYe/4yJLh5r92ZUA==", - "dev": true + "integrity": "sha512-29GS75BE8asnTno3yB6ubOJOO0FboExEqNJy4bpz0GSmW/8wPTNL4h9h63c6s1uTrOopCmJYe/4yJLh5r92ZUA==" + }, + "@types/papaparse": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/@types/papaparse/-/papaparse-5.3.1.tgz", + "integrity": "sha512-1lbngk9wty2kCyQB42LjqSa12SEop3t9wcEC7/xYr3ujTSTmv7HWKjKYXly0GkMfQ42PRb2lFPFEibDOiMXS0g==", + "requires": { + "@types/node": "*" + } }, "@types/parse-json": { "version": "4.0.0", @@ -20530,6 +18730,14 @@ "wikidata-sdk": "*" } }, + "@types/xml2js": { + "version": "0.4.9", + "resolved": "https://registry.npmjs.org/@types/xml2js/-/xml2js-0.4.9.tgz", + "integrity": "sha512-CHiCKIihl1pychwR2RNX5mAYmJDACgFVCMT5OArMaO3erzwXVcBqPcusr+Vl8yeeXukxZqtF8mZioqX+mpjjdw==", + "requires": { + "@types/node": "*" + } + }, "abab": { "version": "2.0.5", "resolved": "https://registry.npmjs.org/abab/-/abab-2.0.5.tgz", @@ -20606,12 +18814,6 @@ "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-7.2.0.tgz", "integrity": "sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA==" }, - "adiff": { - "version": "0.2.13", - "resolved": "https://registry.npmjs.org/adiff/-/adiff-0.2.13.tgz", - "integrity": "sha1-3D3TL5RNl/J366WM5SmXrf8fdyg=", - "dev": true - }, "affine-hull": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/affine-hull/-/affine-hull-1.0.0.tgz", @@ -20705,7 +18907,8 @@ "arg": { "version": "4.1.3", "resolved": "https://registry.npmjs.org/arg/-/arg-4.1.3.tgz", - "integrity": "sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA==" + "integrity": "sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA==", + "devOptional": true }, "argparse": { "version": "1.0.10", @@ -21444,6 +19647,14 @@ "is-glob": "~4.0.1", "normalize-path": "~3.0.0", "readdirp": "~3.6.0" + }, + "dependencies": { + "fsevents": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz", + "integrity": "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==", + "optional": true + } } }, "chownr": { @@ -21612,6 +19823,11 @@ "simple-swizzle": "^0.2.2" } }, + "colors": { + "version": "0.5.1", + "resolved": "https://registry.npmjs.org/colors/-/colors-0.5.1.tgz", + "integrity": "sha1-fQAj6usVTo7p/Oddy5I9DtFmd3Q=" + }, "combined-stream": { "version": "1.0.8", "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", @@ -21641,35 +19857,20 @@ "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": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/concaveman/-/concaveman-1.2.0.tgz", - "integrity": "sha512-OcqechF2/kubbffomKqjGEkb0ndlYhEbmyg/fxIGqdfYp5AZjD2Kl5hc97Hh3ngEuHU2314Z4KDbxL7qXGWrQQ==", + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/concaveman/-/concaveman-1.2.1.tgz", + "integrity": "sha512-PwZYKaM/ckQSa8peP5JpVr7IMJ4Nn/MHIaWUjP4be+KoZ7Botgs8seAZGpmaOM+UZXawcdYRao/px9ycrCihHw==", "requires": { - "point-in-polygon": "^1.0.1", - "rbush": "^3.0.0", + "point-in-polygon": "^1.1.0", + "rbush": "^3.0.1", "robust-predicates": "^2.0.4", "tinyqueue": "^2.0.3" }, @@ -21824,7 +20025,8 @@ "create-require": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/create-require/-/create-require-1.1.1.tgz", - "integrity": "sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ==" + "integrity": "sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ==", + "devOptional": true }, "cross-spawn": { "version": "6.0.5", @@ -21878,27 +20080,18 @@ }, "dependencies": { "postcss": { - "version": "7.0.36", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.36.tgz", - "integrity": "sha512-BebJSIUMwJHRH0HAQoxN4u1CN86glsrwsW0q7T+/m44eXOUAxSNdHRkNZPYz5vVUbg17hFgOQDE7fZk7li3pZw==", + "version": "7.0.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", "requires": { - "chalk": "^2.4.2", - "source-map": "^0.6.1", - "supports-color": "^6.1.0" + "picocolors": "^0.2.1", + "source-map": "^0.6.1" } }, "source-map": { "version": "0.6.1", "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" - }, - "supports-color": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", - "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", - "requires": { - "has-flag": "^3.0.0" - } } } }, @@ -22065,27 +20258,18 @@ }, "dependencies": { "postcss": { - "version": "7.0.36", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.36.tgz", - "integrity": "sha512-BebJSIUMwJHRH0HAQoxN4u1CN86glsrwsW0q7T+/m44eXOUAxSNdHRkNZPYz5vVUbg17hFgOQDE7fZk7li3pZw==", + "version": "7.0.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", "requires": { - "chalk": "^2.4.2", - "source-map": "^0.6.1", - "supports-color": "^6.1.0" + "picocolors": "^0.2.1", + "source-map": "^0.6.1" } }, "source-map": { "version": "0.6.1", "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" - }, - "supports-color": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", - "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", - "requires": { - "has-flag": "^3.0.0" - } } } }, @@ -22127,27 +20311,18 @@ }, "dependencies": { "postcss": { - "version": "7.0.36", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.36.tgz", - "integrity": "sha512-BebJSIUMwJHRH0HAQoxN4u1CN86glsrwsW0q7T+/m44eXOUAxSNdHRkNZPYz5vVUbg17hFgOQDE7fZk7li3pZw==", + "version": "7.0.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", "requires": { - "chalk": "^2.4.2", - "source-map": "^0.6.1", - "supports-color": "^6.1.0" + "picocolors": "^0.2.1", + "source-map": "^0.6.1" } }, "source-map": { "version": "0.6.1", "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" - }, - "supports-color": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", - "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", - "requires": { - "has-flag": "^3.0.0" - } } } }, @@ -22170,27 +20345,18 @@ }, "dependencies": { "postcss": { - "version": "7.0.36", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.36.tgz", - "integrity": "sha512-BebJSIUMwJHRH0HAQoxN4u1CN86glsrwsW0q7T+/m44eXOUAxSNdHRkNZPYz5vVUbg17hFgOQDE7fZk7li3pZw==", + "version": "7.0.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", "requires": { - "chalk": "^2.4.2", - "source-map": "^0.6.1", - "supports-color": "^6.1.0" + "picocolors": "^0.2.1", + "source-map": "^0.6.1" } }, "source-map": { "version": "0.6.1", "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" - }, - "supports-color": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", - "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", - "requires": { - "has-flag": "^3.0.0" - } } } }, @@ -22617,12 +20783,6 @@ "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.0.4.tgz", "integrity": "sha1-l4hXRCxEdJ5CBmE+N5RiBYJqvYA=" }, - "detect-indent": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/detect-indent/-/detect-indent-6.1.0.tgz", - "integrity": "sha512-reYkTUJAZb9gUuZ2RvVCNhVHdg62RHnJ7WJl8ftMi4diZ6NWlciOzQN88pUhSELEwflJht4oQDv0F0BMlwaYtA==", - "dev": true - }, "detect-libc": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-1.0.3.tgz", @@ -23336,16 +21496,48 @@ "integrity": "sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==", "dev": true }, + "fs-extra": { + "version": "0.8.1", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-0.8.1.tgz", + "integrity": "sha1-Dld5/7/t9RG8dVWVx/A8BtS0Po0=", + "requires": { + "jsonfile": "~1.1.0", + "mkdirp": "0.3.x", + "ncp": "~0.4.2", + "rimraf": "~2.2.0" + }, + "dependencies": { + "jsonfile": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-1.1.1.tgz", + "integrity": "sha1-2k/WrXfxolUgPqY8e8Mtwx72RDM=" + }, + "mkdirp": { + "version": "0.3.5", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.3.5.tgz", + "integrity": "sha1-3j5fiWHIjHh+4TaN+EmsRBPsqNc=" + }, + "rimraf": { + "version": "2.2.8", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.2.8.tgz", + "integrity": "sha1-5Dm+Kq7jJzIZUnMPmaiSnk/FBYI=" + } + } + }, "fs.realpath": { "version": "1.0.0", "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 + "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" + } }, "function-bind": { "version": "1.1.1", @@ -23418,6 +21610,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": { @@ -23426,14 +21641,30 @@ "integrity": "sha1-q0g48SatxeFvj5TmVd74IPkRnbw=" }, "geojson-rbush": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/geojson-rbush/-/geojson-rbush-3.1.2.tgz", - "integrity": "sha512-grkfdg3HIeTjwTfiJe5FT8+fGU3fABCc+vRJDBwdQz9kkLF0Sbif2gs2JUzjewwgmnvLGy9fInySDeADoNuk7w==", + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/geojson-rbush/-/geojson-rbush-3.2.0.tgz", + "integrity": "sha512-oVltQTXolxvsz1sZnutlSuLDEcQAKYC/uXt9zDzJJ6bu0W+baTI8LZBaTup5afzibEH4N3jlq2p+a152wlBJ7w==", "requires": { "@turf/bbox": "*", "@turf/helpers": "6.x", "@turf/meta": "6.x", - "rbush": "^2.0.0" + "@types/geojson": "7946.0.8", + "rbush": "^3.0.1" + }, + "dependencies": { + "quickselect": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/quickselect/-/quickselect-2.0.0.tgz", + "integrity": "sha512-RKJ22hX8mHe3Y6wH/N3wCM6BWtjaxIyyUIkpHOvfFnxdI4yD4tBXEBKSbriGujF6jnSVkJrffuo6vxACiSSxIw==" + }, + "rbush": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/rbush/-/rbush-3.0.1.tgz", + "integrity": "sha512-XRaVO0YecOpEuIvbhbpTrZgoiI6xBlz6hnlr6EHhd+0x9ase6EmeN+hdwwUaJvLcsFFQ8iWVF1GAK1yB0BWi0w==", + "requires": { + "quickselect": "^2.0.0" + } + } } }, "get-caller-file": { @@ -23442,11 +21673,6 @@ "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==", "dev": true }, - "get-closest": { - "version": "0.0.4", - "resolved": "https://registry.npmjs.org/get-closest/-/get-closest-0.0.4.tgz", - "integrity": "sha1-JprHdtHmAiqg/Vht1wjop9Miaa8=" - }, "get-intrinsic": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.1.1.tgz", @@ -23487,16 +21713,6 @@ "assert-plus": "^1.0.0" } }, - "git-json-merge": { - "version": "0.4.5", - "resolved": "https://registry.npmjs.org/git-json-merge/-/git-json-merge-0.4.5.tgz", - "integrity": "sha512-akVUhyzRtkXGe5uAcw3AijF/253RA7tAPdfHtKLawYAhDjuyP+Ebr1YvZUv+7Jyr41g+IVRpKPBd2h+m6AHNqQ==", - "dev": true, - "requires": { - "detect-indent": "^6.0.0", - "xdiff": "^0.2.11" - } - }, "github-from-package": { "version": "0.0.0", "resolved": "https://registry.npmjs.org/github-from-package/-/github-from-package-0.0.0.tgz", @@ -23548,11 +21764,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", @@ -23734,7 +21945,8 @@ "hosted-git-info": { "version": "2.8.9", "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.9.tgz", - "integrity": "sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==" + "integrity": "sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==", + "dev": true }, "hsl-regex": { "version": "1.0.0", @@ -23784,11 +21996,6 @@ "uncss": "^0.17.3" }, "dependencies": { - "commander": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/commander/-/commander-5.1.0.tgz", - "integrity": "sha512-P0CysNDQ7rtVw4QIQtm+MRxV66vKFSvlsQvGYXZWR3qFU0jlMKHZZZgw8e+8DSah4UDKMqnknRDQz+xuQXQ/Zg==" - }, "dom-serializer": { "version": "1.3.1", "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-1.3.1.tgz", @@ -23838,16 +22045,6 @@ "entities": "^2.0.0" } }, - "postcss": { - "version": "7.0.32", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.32.tgz", - "integrity": "sha512-03eXong5NLnNCD05xscnGKGDZ98CyzoqPSMjOe6SuoQY7Z2hIj0Ld1g/O/UQRuOle2aRtiIRDg9tDcTGAkLfKw==", - "requires": { - "chalk": "^2.4.2", - "source-map": "^0.6.1", - "supports-color": "^6.1.0" - } - }, "posthtml": { "version": "0.15.2", "resolved": "https://registry.npmjs.org/posthtml/-/posthtml-0.15.2.tgz", @@ -23865,30 +22062,6 @@ "htmlparser2": "^6.0.0" } }, - "purgecss": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/purgecss/-/purgecss-2.3.0.tgz", - "integrity": "sha512-BE5CROfVGsx2XIhxGuZAT7rTH9lLeQx/6M0P7DTXQH4IUc3BBzs9JUzt4yzGf3JrH9enkeq6YJBe9CTtkm1WmQ==", - "requires": { - "commander": "^5.0.0", - "glob": "^7.0.0", - "postcss": "7.0.32", - "postcss-selector-parser": "^6.0.2" - } - }, - "source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" - }, - "supports-color": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", - "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", - "requires": { - "has-flag": "^3.0.0" - } - }, "terser": { "version": "5.7.0", "resolved": "https://registry.npmjs.org/terser/-/terser-5.7.0.tgz", @@ -24018,6 +22191,14 @@ "resolved": "https://registry.npmjs.org/icss-replace-symbols/-/icss-replace-symbols-1.1.0.tgz", "integrity": "sha1-Bupvg2ead0njhs/h/oEq5dsiPe0=" }, + "idb-keyval": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/idb-keyval/-/idb-keyval-6.0.3.tgz", + "integrity": "sha512-yh8V7CnE6EQMu9YDwQXhRxwZh4nv+8xm/HV4ZqK4IiYFJBWYGjJuykADJbSP+F/GDXUBwCSSNn/14IpGL81TuA==", + "requires": { + "safari-14-idb-fix": "^3.0.0" + } + }, "ieee754": { "version": "1.2.1", "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz", @@ -24593,27 +22774,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", @@ -24707,9 +22867,9 @@ "optional": true }, "ws": { - "version": "6.2.1", - "resolved": "https://registry.npmjs.org/ws/-/ws-6.2.1.tgz", - "integrity": "sha512-GIyAXC2cB7LjvpgMt9EKS2ldqr0MTrORaleiOno6TweZ6r3TKtoFQWay/2PceJ3RuBasOHzXNn5Lrw1X0bEjqA==", + "version": "6.2.2", + "resolved": "https://registry.npmjs.org/ws/-/ws-6.2.2.tgz", + "integrity": "sha512-zmhltoSR8u1cnDsD43TX59mzoMZsLKqUweyYBAIvTngR3shc0W6aOZylZmq/7hqyVxPdi+5Ud2QInblgyE72fw==", "requires": { "async-limiter": "~1.0.0" } @@ -24737,9 +22897,9 @@ "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==" }, "json-schema": { - "version": "0.2.3", - "resolved": "https://registry.npmjs.org/json-schema/-/json-schema-0.2.3.tgz", - "integrity": "sha1-tIDIkuWaLwWVTOcnvT8qTogvnhM=" + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/json-schema/-/json-schema-0.4.0.tgz", + "integrity": "sha512-es94M3nTIfsEPisRafak+HDLfHXnKBhV3vU5eqPcS3flIWqcxJWgXHXiey3YrpaNsanY5ei1VoYEbOzijuq9BA==" }, "json-schema-traverse": { "version": "0.4.1", @@ -24851,13 +23011,13 @@ } }, "jsprim": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/jsprim/-/jsprim-1.4.1.tgz", - "integrity": "sha1-MT5mvB5cwG5Di8G3SZwuXFastqI=", + "version": "1.4.2", + "resolved": "https://registry.npmjs.org/jsprim/-/jsprim-1.4.2.tgz", + "integrity": "sha512-P2bSOMAc/ciLz6DzgjVlGJP9+BrJWu5UDGK70C2iweC5QBIeFf0ZXRvGjEj2uYgrY2MkAAhsSWHDWlFtEroZWw==", "requires": { "assert-plus": "1.0.0", "extsprintf": "1.3.0", - "json-schema": "0.2.3", + "json-schema": "0.4.0", "verror": "1.10.0" } }, @@ -24909,1527 +23069,13 @@ "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==" }, "latlon2country": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/latlon2country/-/latlon2country-1.1.3.tgz", - "integrity": "sha512-jk4xlaG7jkt4qPBZlhjUK60yo9qYs5LrAqf0hDTfHV6KXuR7qp84CgIq34Zm1xhH6PEQG4TknLWJrJWk23qNVA==", + "version": "1.2.6", + "resolved": "https://registry.npmjs.org/latlon2country/-/latlon2country-1.2.6.tgz", + "integrity": "sha512-cS5tMtnXYAsAJV5d/o6QqAJsyom1DEh4eIem+e/rauDhbNxhmmQKTiffrRY+NXAkgzH+hMVIwkgV5GZqLl1Y0g==", "requires": { "@turf/boolean-point-in-polygon": "^6.0.1", - "@turf/turf": "^5.1.6", - "@types/node": "^14.14.10", - "jquery": "^3.5.1", - "ts-node": "^9.1.1", + "@turf/turf": "^6.3.0", "turf": "^3.0.14" - }, - "dependencies": { - "@turf/along": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/along/-/along-5.1.5.tgz", - "integrity": "sha1-YdbmplhKzdq1asVYTge/jL5fi+s=", - "requires": { - "@turf/bearing": "^5.1.5", - "@turf/destination": "^5.1.5", - "@turf/distance": "^5.1.5", - "@turf/helpers": "^5.1.5" - } - }, - "@turf/area": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/area/-/area-5.1.5.tgz", - "integrity": "sha1-79iZv9Jgzb0VQbKjwVX4pdLu+h0=", - "requires": { - "@turf/helpers": "^5.1.5", - "@turf/meta": "^5.1.5" - } - }, - "@turf/bbox": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/bbox/-/bbox-5.1.5.tgz", - "integrity": "sha1-MFHfUUrUxQ9KT5uKLRX9i2hA7aM=", - "requires": { - "@turf/helpers": "^5.1.5", - "@turf/meta": "^5.1.5" - } - }, - "@turf/bbox-clip": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/bbox-clip/-/bbox-clip-5.1.5.tgz", - "integrity": "sha1-M2S1Mo3/nzz0HZ4C7a/zdNFQzIQ=", - "requires": { - "@turf/helpers": "^5.1.5", - "@turf/invariant": "^5.1.5", - "lineclip": "^1.1.5" - } - }, - "@turf/bbox-polygon": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/bbox-polygon/-/bbox-polygon-5.1.5.tgz", - "integrity": "sha1-auuk7VHYXSluD3w4uIwznwHu4CQ=", - "requires": { - "@turf/helpers": "^5.1.5" - } - }, - "@turf/bearing": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/bearing/-/bearing-5.1.5.tgz", - "integrity": "sha1-egt5ATbE70eX8CRjBdRcvi0ns/c=", - "requires": { - "@turf/helpers": "^5.1.5", - "@turf/invariant": "^5.1.5" - } - }, - "@turf/bezier-spline": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/bezier-spline/-/bezier-spline-5.1.5.tgz", - "integrity": "sha1-WaJ7ul17l+8Vqz/VpA+9I4cEm8o=", - "requires": { - "@turf/helpers": "^5.1.5", - "@turf/invariant": "^5.1.5" - } - }, - "@turf/boolean-clockwise": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/boolean-clockwise/-/boolean-clockwise-5.1.5.tgz", - "integrity": "sha1-MwK32sYsXikaB4nimvcoM4f6nes=", - "requires": { - "@turf/helpers": "^5.1.5", - "@turf/invariant": "^5.1.5" - } - }, - "@turf/boolean-contains": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/boolean-contains/-/boolean-contains-5.1.5.tgz", - "integrity": "sha1-WW1jruY2961T7pn5/yTJaZSg7xQ=", - "requires": { - "@turf/bbox": "^5.1.5", - "@turf/boolean-point-in-polygon": "^5.1.5", - "@turf/boolean-point-on-line": "^5.1.5", - "@turf/helpers": "^5.1.5", - "@turf/invariant": "^5.1.5" - }, - "dependencies": { - "@turf/boolean-point-in-polygon": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/boolean-point-in-polygon/-/boolean-point-in-polygon-5.1.5.tgz", - "integrity": "sha1-8BzBlNHgMKVIv9qYHLpDz9YpQbc=", - "requires": { - "@turf/helpers": "^5.1.5", - "@turf/invariant": "^5.1.5" - } - } - } - }, - "@turf/boolean-crosses": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/boolean-crosses/-/boolean-crosses-5.1.5.tgz", - "integrity": "sha1-Ab+uollvFk3kpNMlCU3HwlXHFdY=", - "requires": { - "@turf/boolean-point-in-polygon": "^5.1.5", - "@turf/helpers": "^5.1.5", - "@turf/invariant": "^5.1.5", - "@turf/line-intersect": "^5.1.5", - "@turf/polygon-to-line": "^5.1.5" - }, - "dependencies": { - "@turf/boolean-point-in-polygon": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/boolean-point-in-polygon/-/boolean-point-in-polygon-5.1.5.tgz", - "integrity": "sha1-8BzBlNHgMKVIv9qYHLpDz9YpQbc=", - "requires": { - "@turf/helpers": "^5.1.5", - "@turf/invariant": "^5.1.5" - } - } - } - }, - "@turf/boolean-disjoint": { - "version": "5.1.6", - "resolved": "https://registry.npmjs.org/@turf/boolean-disjoint/-/boolean-disjoint-5.1.6.tgz", - "integrity": "sha512-KHvUS6SBNYHBCLIJEJrg04pF5Oy+Fqn8V5G9U+9pti5vI9tyX7Ln2g7RSB7iJ1Cxsz8QAi6OukhXjEF2/8ZpGg==", - "requires": { - "@turf/boolean-point-in-polygon": "^5.1.5", - "@turf/helpers": "^5.1.5", - "@turf/line-intersect": "^5.1.5", - "@turf/meta": "^5.1.5", - "@turf/polygon-to-line": "^5.1.5" - }, - "dependencies": { - "@turf/boolean-point-in-polygon": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/boolean-point-in-polygon/-/boolean-point-in-polygon-5.1.5.tgz", - "integrity": "sha1-8BzBlNHgMKVIv9qYHLpDz9YpQbc=", - "requires": { - "@turf/helpers": "^5.1.5", - "@turf/invariant": "^5.1.5" - } - } - } - }, - "@turf/boolean-equal": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/boolean-equal/-/boolean-equal-5.1.5.tgz", - "integrity": "sha1-Kfj21gu4RQff12WzIlTbjnLJOKQ=", - "requires": { - "@turf/clean-coords": "^5.1.5", - "@turf/helpers": "^5.1.5", - "@turf/invariant": "^5.1.5", - "geojson-equality": "0.1.6" - } - }, - "@turf/boolean-overlap": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/boolean-overlap/-/boolean-overlap-5.1.5.tgz", - "integrity": "sha1-DU5kxSx3CijpPZ7834qLg3OsznU=", - "requires": { - "@turf/helpers": "^5.1.5", - "@turf/invariant": "^5.1.5", - "@turf/line-intersect": "^5.1.5", - "@turf/line-overlap": "^5.1.5", - "@turf/meta": "^5.1.5", - "geojson-equality": "0.1.6" - } - }, - "@turf/boolean-parallel": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/boolean-parallel/-/boolean-parallel-5.1.5.tgz", - "integrity": "sha1-c5NYR16ltlx+GCejw+DopofTqF0=", - "requires": { - "@turf/clean-coords": "^5.1.5", - "@turf/helpers": "^5.1.5", - "@turf/line-segment": "^5.1.5", - "@turf/rhumb-bearing": "^5.1.5" - } - }, - "@turf/boolean-point-on-line": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/boolean-point-on-line/-/boolean-point-on-line-5.1.5.tgz", - "integrity": "sha1-9jPF/4Aq0ku48Vja269v9KAj3Xs=", - "requires": { - "@turf/helpers": "^5.1.5", - "@turf/invariant": "^5.1.5" - } - }, - "@turf/boolean-within": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/boolean-within/-/boolean-within-5.1.5.tgz", - "integrity": "sha1-RxBdVtB1Kp0Pv81Dw2pfkUnchpc=", - "requires": { - "@turf/bbox": "^5.1.5", - "@turf/boolean-point-in-polygon": "^5.1.5", - "@turf/boolean-point-on-line": "^5.1.5", - "@turf/helpers": "^5.1.5", - "@turf/invariant": "^5.1.5" - }, - "dependencies": { - "@turf/boolean-point-in-polygon": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/boolean-point-in-polygon/-/boolean-point-in-polygon-5.1.5.tgz", - "integrity": "sha1-8BzBlNHgMKVIv9qYHLpDz9YpQbc=", - "requires": { - "@turf/helpers": "^5.1.5", - "@turf/invariant": "^5.1.5" - } - } - } - }, - "@turf/buffer": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/buffer/-/buffer-5.1.5.tgz", - "integrity": "sha1-hByWJ8+5dLEirE4alW8EZrwCMcQ=", - "requires": { - "@turf/bbox": "^5.1.5", - "@turf/center": "^5.1.5", - "@turf/helpers": "^5.1.5", - "@turf/meta": "^5.1.5", - "@turf/projection": "^5.1.5", - "d3-geo": "1.7.1", - "turf-jsts": "*" - } - }, - "@turf/center": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/center/-/center-5.1.5.tgz", - "integrity": "sha1-RKss2VT2PA03dX9xWKmcPvURS4A=", - "requires": { - "@turf/bbox": "^5.1.5", - "@turf/helpers": "^5.1.5" - } - }, - "@turf/center-mean": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/center-mean/-/center-mean-5.1.5.tgz", - "integrity": "sha1-jI6YdTkeXwnw5uePXWYbiLIQigo=", - "requires": { - "@turf/bbox": "^5.1.5", - "@turf/helpers": "^5.1.5", - "@turf/meta": "^5.1.5" - } - }, - "@turf/center-median": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/center-median/-/center-median-5.1.5.tgz", - "integrity": "sha1-u0Yb/noqSGAdikcnaFcYcjoUqHI=", - "requires": { - "@turf/center-mean": "^5.1.5", - "@turf/centroid": "^5.1.5", - "@turf/distance": "^5.1.5", - "@turf/helpers": "^5.1.5", - "@turf/meta": "^5.1.5" - } - }, - "@turf/center-of-mass": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/center-of-mass/-/center-of-mass-5.1.5.tgz", - "integrity": "sha1-TTvXnYhJjbq4Mk1PafAyL2Uguco=", - "requires": { - "@turf/centroid": "^5.1.5", - "@turf/convex": "^5.1.5", - "@turf/helpers": "^5.1.5", - "@turf/invariant": "^5.1.5", - "@turf/meta": "^5.1.5" - } - }, - "@turf/centroid": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/centroid/-/centroid-5.1.5.tgz", - "integrity": "sha1-d4radCFjNQIa2P0OemWoNJ1Tx2k=", - "requires": { - "@turf/helpers": "^5.1.5", - "@turf/meta": "^5.1.5" - } - }, - "@turf/circle": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/circle/-/circle-5.1.5.tgz", - "integrity": "sha1-mxV3g1UIq1L7HBCypQZcuiuHtqU=", - "requires": { - "@turf/destination": "^5.1.5", - "@turf/helpers": "^5.1.5" - } - }, - "@turf/clean-coords": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/clean-coords/-/clean-coords-5.1.5.tgz", - "integrity": "sha1-EoAKmKeMmkUqcuxChJPEOs8q2h8=", - "requires": { - "@turf/helpers": "^5.1.5", - "@turf/invariant": "^5.1.5" - } - }, - "@turf/clone": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/clone/-/clone-5.1.5.tgz", - "integrity": "sha1-JT6NNUdxgZduM636tQoPAqfw42c=", - "requires": { - "@turf/helpers": "^5.1.5" - } - }, - "@turf/clusters": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/clusters/-/clusters-5.1.5.tgz", - "integrity": "sha1-ZzpeXxsZycq6vFfJCO6t1oIiTdQ=", - "requires": { - "@turf/helpers": "^5.1.5", - "@turf/meta": "^5.1.5" - } - }, - "@turf/clusters-dbscan": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/clusters-dbscan/-/clusters-dbscan-5.1.5.tgz", - "integrity": "sha1-V4H7TmVsdHoLjpk333MYHAMJ4m8=", - "requires": { - "@turf/clone": "^5.1.5", - "@turf/distance": "^5.1.5", - "@turf/helpers": "^5.1.5", - "@turf/invariant": "^5.1.5", - "@turf/meta": "^5.1.5", - "density-clustering": "1.3.0" - } - }, - "@turf/clusters-kmeans": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/clusters-kmeans/-/clusters-kmeans-5.1.5.tgz", - "integrity": "sha1-/W3+qLEzuovcI3CsPKzuFYejAvE=", - "requires": { - "@turf/clone": "^5.1.5", - "@turf/helpers": "^5.1.5", - "@turf/invariant": "^5.1.5", - "@turf/meta": "^5.1.5", - "skmeans": "0.9.7" - } - }, - "@turf/collect": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/collect/-/collect-5.1.5.tgz", - "integrity": "sha1-/pjJqMIY7PJP/DPXApUXt8GbKj4=", - "requires": { - "@turf/bbox": "^5.1.5", - "@turf/boolean-point-in-polygon": "^5.1.5", - "@turf/helpers": "^5.1.5", - "rbush": "^2.0.1" - }, - "dependencies": { - "@turf/boolean-point-in-polygon": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/boolean-point-in-polygon/-/boolean-point-in-polygon-5.1.5.tgz", - "integrity": "sha1-8BzBlNHgMKVIv9qYHLpDz9YpQbc=", - "requires": { - "@turf/helpers": "^5.1.5", - "@turf/invariant": "^5.1.5" - } - } - } - }, - "@turf/combine": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/combine/-/combine-5.1.5.tgz", - "integrity": "sha1-uxS976VVBDVxlfwaEkzX1TqMiQU=", - "requires": { - "@turf/helpers": "^5.1.5", - "@turf/meta": "^5.1.5" - } - }, - "@turf/concave": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/concave/-/concave-5.1.5.tgz", - "integrity": "sha1-I7uqw4fQNLlldKG9cNBZI3qdIRA=", - "requires": { - "@turf/clone": "^5.1.5", - "@turf/distance": "^5.1.5", - "@turf/helpers": "^5.1.5", - "@turf/invariant": "^5.1.5", - "@turf/meta": "^5.1.5", - "@turf/tin": "^5.1.5", - "topojson-client": "3.x", - "topojson-server": "3.x" - } - }, - "@turf/convex": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/convex/-/convex-5.1.5.tgz", - "integrity": "sha1-Dfk3fdACIWzpghsH9wXgN9rj4B0=", - "requires": { - "@turf/helpers": "^5.1.5", - "@turf/meta": "^5.1.5", - "concaveman": "*" - } - }, - "@turf/destination": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/destination/-/destination-5.1.5.tgz", - "integrity": "sha1-7TU4G9zoO73cvQei4rzivd/7zCY=", - "requires": { - "@turf/helpers": "^5.1.5", - "@turf/invariant": "^5.1.5" - } - }, - "@turf/difference": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/difference/-/difference-5.1.5.tgz", - "integrity": "sha1-ok1pCnvKgD8QkKnuO52Qb8Q3H0I=", - "requires": { - "@turf/area": "^5.1.5", - "@turf/helpers": "^5.1.5", - "@turf/invariant": "^5.1.5", - "@turf/meta": "^5.1.5", - "turf-jsts": "*" - } - }, - "@turf/dissolve": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/dissolve/-/dissolve-5.1.5.tgz", - "integrity": "sha1-LPEzqQIdIWODHD16lY1lB/nYGTg=", - "requires": { - "@turf/boolean-overlap": "^5.1.5", - "@turf/clone": "^5.1.5", - "@turf/helpers": "^5.1.5", - "@turf/invariant": "^5.1.5", - "@turf/line-intersect": "^5.1.5", - "@turf/meta": "^5.1.5", - "@turf/union": "^5.1.5", - "geojson-rbush": "2.1.0", - "get-closest": "*" - } - }, - "@turf/distance": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/distance/-/distance-5.1.5.tgz", - "integrity": "sha1-Oc8YIEu/h1h9cH5gmmARiQkVZAk=", - "requires": { - "@turf/helpers": "^5.1.5", - "@turf/invariant": "^5.1.5" - } - }, - "@turf/ellipse": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/ellipse/-/ellipse-5.1.5.tgz", - "integrity": "sha1-1XyrhTmFkgzeYCKKeNgEWAJcVL4=", - "requires": { - "@turf/helpers": "^5.1.5", - "@turf/invariant": "^5.1.5", - "@turf/rhumb-destination": "^5.1.5", - "@turf/transform-rotate": "^5.1.5" - } - }, - "@turf/envelope": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/envelope/-/envelope-5.1.5.tgz", - "integrity": "sha1-UBMwnFP91D369LWIplw/7X28EIo=", - "requires": { - "@turf/bbox": "^5.1.5", - "@turf/bbox-polygon": "^5.1.5", - "@turf/helpers": "^5.1.5" - } - }, - "@turf/explode": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/explode/-/explode-5.1.5.tgz", - "integrity": "sha1-sSsvd0AEobSPYrqVsgocZVo94Rg=", - "requires": { - "@turf/helpers": "^5.1.5", - "@turf/meta": "^5.1.5" - } - }, - "@turf/flatten": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/flatten/-/flatten-5.1.5.tgz", - "integrity": "sha1-2iknBnEz7WFpsLnWB7khVoiqE1g=", - "requires": { - "@turf/helpers": "^5.1.5", - "@turf/meta": "^5.1.5" - } - }, - "@turf/flip": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/flip/-/flip-5.1.5.tgz", - "integrity": "sha1-Q29kOnIvDKU7n85jjkaT2zYIpoo=", - "requires": { - "@turf/clone": "^5.1.5", - "@turf/helpers": "^5.1.5", - "@turf/meta": "^5.1.5" - } - }, - "@turf/great-circle": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/great-circle/-/great-circle-5.1.5.tgz", - "integrity": "sha1-3r+2cc5HVQnLY3MBwV/PzPo1mpM=", - "requires": { - "@turf/helpers": "^5.1.5", - "@turf/invariant": "^5.1.5" - } - }, - "@turf/helpers": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/helpers/-/helpers-5.1.5.tgz", - "integrity": "sha1-FTQFInq5M9AEpbuWQantmZ/L4M8=" - }, - "@turf/hex-grid": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/hex-grid/-/hex-grid-5.1.5.tgz", - "integrity": "sha1-m3ul/s9QUfHoWJL3E/zlxVBQKmo=", - "requires": { - "@turf/distance": "^5.1.5", - "@turf/helpers": "^5.1.5", - "@turf/intersect": "^5.1.5", - "@turf/invariant": "^5.1.5" - } - }, - "@turf/interpolate": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/interpolate/-/interpolate-5.1.5.tgz", - "integrity": "sha1-DxLwq3VtbdEK+ykMpuh3ve8BPqo=", - "requires": { - "@turf/bbox": "^5.1.5", - "@turf/centroid": "^5.1.5", - "@turf/clone": "^5.1.5", - "@turf/distance": "^5.1.5", - "@turf/helpers": "^5.1.5", - "@turf/hex-grid": "^5.1.5", - "@turf/invariant": "^5.1.5", - "@turf/meta": "^5.1.5", - "@turf/point-grid": "^5.1.5", - "@turf/square-grid": "^5.1.5", - "@turf/triangle-grid": "^5.1.5" - } - }, - "@turf/intersect": { - "version": "5.1.6", - "resolved": "https://registry.npmjs.org/@turf/intersect/-/intersect-5.1.6.tgz", - "integrity": "sha512-KXyNv/GXdoGAOy03qZF53rgtXC2tNhF/4jLwTKiVRrBQH6kcEpipGStdJ+QkYIlarQPa8f7I9UlVAB19et4MfQ==", - "requires": { - "@turf/clean-coords": "^5.1.5", - "@turf/helpers": "^5.1.5", - "@turf/invariant": "^5.1.5", - "@turf/truncate": "^5.1.5", - "turf-jsts": "*" - } - }, - "@turf/invariant": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/invariant/-/invariant-5.1.5.tgz", - "integrity": "sha1-9Z9P76CSJLFdzhZR+QPIaNV6JOE=", - "requires": { - "@turf/helpers": "^5.1.5" - } - }, - "@turf/isobands": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/isobands/-/isobands-5.1.5.tgz", - "integrity": "sha1-a0TO9YTVUaMTBBh68jtKFYLj8I0=", - "requires": { - "@turf/area": "^5.1.5", - "@turf/bbox": "^5.1.5", - "@turf/boolean-point-in-polygon": "^5.1.5", - "@turf/explode": "^5.1.5", - "@turf/helpers": "^5.1.5", - "@turf/invariant": "^5.1.5", - "@turf/meta": "^5.1.5" - }, - "dependencies": { - "@turf/boolean-point-in-polygon": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/boolean-point-in-polygon/-/boolean-point-in-polygon-5.1.5.tgz", - "integrity": "sha1-8BzBlNHgMKVIv9qYHLpDz9YpQbc=", - "requires": { - "@turf/helpers": "^5.1.5", - "@turf/invariant": "^5.1.5" - } - } - } - }, - "@turf/isolines": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/isolines/-/isolines-5.1.5.tgz", - "integrity": "sha1-irTn9Cuz38VGFOW/FVln9+VdLeE=", - "requires": { - "@turf/bbox": "^5.1.5", - "@turf/helpers": "^5.1.5", - "@turf/invariant": "^5.1.5", - "@turf/meta": "^5.1.5" - } - }, - "@turf/kinks": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/kinks/-/kinks-5.1.5.tgz", - "integrity": "sha1-irtpYdm7AQchO63fLCwmQNAlaYA=", - "requires": { - "@turf/helpers": "^5.1.5" - } - }, - "@turf/length": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/length/-/length-5.1.5.tgz", - "integrity": "sha1-86X4ZMK5lqi7RxeUU1ofrxLuvvs=", - "requires": { - "@turf/distance": "^5.1.5", - "@turf/helpers": "^5.1.5", - "@turf/meta": "^5.1.5" - } - }, - "@turf/line-arc": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/line-arc/-/line-arc-5.1.5.tgz", - "integrity": "sha1-AHinRHg1oSrkFKIR+aZNEYYVDhU=", - "requires": { - "@turf/circle": "^5.1.5", - "@turf/destination": "^5.1.5", - "@turf/helpers": "^5.1.5" - } - }, - "@turf/line-chunk": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/line-chunk/-/line-chunk-5.1.5.tgz", - "integrity": "sha1-kQqFwFwG2dD5w4l3oF4IGNUIXEI=", - "requires": { - "@turf/helpers": "^5.1.5", - "@turf/length": "^5.1.5", - "@turf/line-slice-along": "^5.1.5", - "@turf/meta": "^5.1.5" - } - }, - "@turf/line-intersect": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/line-intersect/-/line-intersect-5.1.5.tgz", - "integrity": "sha1-DikHGuQDKV5JFyO8SfXPrI0R3fM=", - "requires": { - "@turf/helpers": "^5.1.5", - "@turf/invariant": "^5.1.5", - "@turf/line-segment": "^5.1.5", - "@turf/meta": "^5.1.5", - "geojson-rbush": "2.1.0" - } - }, - "@turf/line-offset": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/line-offset/-/line-offset-5.1.5.tgz", - "integrity": "sha1-KrWy8In4yRPiMdmUN4553KkLWh4=", - "requires": { - "@turf/helpers": "^5.1.5", - "@turf/invariant": "^5.1.5", - "@turf/meta": "^5.1.5" - } - }, - "@turf/line-overlap": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/line-overlap/-/line-overlap-5.1.5.tgz", - "integrity": "sha1-lDxvh6A4bcQ9+sEdKz/5wRLNP2A=", - "requires": { - "@turf/boolean-point-on-line": "^5.1.5", - "@turf/helpers": "^5.1.5", - "@turf/invariant": "^5.1.5", - "@turf/line-segment": "^5.1.5", - "@turf/meta": "^5.1.5", - "@turf/nearest-point-on-line": "^5.1.5", - "geojson-rbush": "2.1.0" - } - }, - "@turf/line-segment": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/line-segment/-/line-segment-5.1.5.tgz", - "integrity": "sha1-Mgeq7lRqskw9jcPMY/kcdwuAE+U=", - "requires": { - "@turf/helpers": "^5.1.5", - "@turf/invariant": "^5.1.5", - "@turf/meta": "^5.1.5" - } - }, - "@turf/line-slice": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/line-slice/-/line-slice-5.1.5.tgz", - "integrity": "sha1-Hs/OFGKjeFeXVM7fRGTN4mgp8rU=", - "requires": { - "@turf/helpers": "^5.1.5", - "@turf/invariant": "^5.1.5", - "@turf/nearest-point-on-line": "^5.1.5" - } - }, - "@turf/line-slice-along": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/line-slice-along/-/line-slice-along-5.1.5.tgz", - "integrity": "sha1-7drQoh70efKWihG9LdcomiEy6aU=", - "requires": { - "@turf/bearing": "^5.1.5", - "@turf/destination": "^5.1.5", - "@turf/distance": "^5.1.5", - "@turf/helpers": "^5.1.5" - } - }, - "@turf/line-split": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/line-split/-/line-split-5.1.5.tgz", - "integrity": "sha1-Wy30w3YZty73JbUWPPmSbVVArLc=", - "requires": { - "@turf/bbox": "^5.1.5", - "@turf/helpers": "^5.1.5", - "@turf/invariant": "^5.1.5", - "@turf/line-intersect": "^5.1.5", - "@turf/line-segment": "^5.1.5", - "@turf/meta": "^5.1.5", - "@turf/nearest-point-on-line": "^5.1.5", - "@turf/square": "^5.1.5", - "@turf/truncate": "^5.1.5", - "geojson-rbush": "2.1.0" - } - }, - "@turf/line-to-polygon": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/line-to-polygon/-/line-to-polygon-5.1.5.tgz", - "integrity": "sha1-ITz0Gmj4Ikd4ujnTGH3sPouBhlo=", - "requires": { - "@turf/bbox": "^5.1.5", - "@turf/helpers": "^5.1.5", - "@turf/invariant": "^5.1.5" - } - }, - "@turf/mask": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/mask/-/mask-5.1.5.tgz", - "integrity": "sha1-mrD+8aJyyY/j70kvn/thggayQtU=", - "requires": { - "@turf/bbox": "^5.1.5", - "@turf/helpers": "^5.1.5", - "@turf/meta": "^5.1.5", - "@turf/union": "^5.1.5", - "rbush": "^2.0.1" - } - }, - "@turf/meta": { - "version": "5.1.6", - "resolved": "https://registry.npmjs.org/@turf/meta/-/meta-5.1.6.tgz", - "integrity": "sha1-wgqGPt7Qhp+yhUje6Ik0G8y0akY=", - "requires": { - "@turf/helpers": "^5.1.5" - } - }, - "@turf/midpoint": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/midpoint/-/midpoint-5.1.5.tgz", - "integrity": "sha1-4mH2srDqgSTM7/VSomLdRlydBfA=", - "requires": { - "@turf/bearing": "^5.1.5", - "@turf/destination": "^5.1.5", - "@turf/distance": "^5.1.5", - "@turf/helpers": "^5.1.5" - } - }, - "@turf/nearest-point": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/nearest-point/-/nearest-point-5.1.5.tgz", - "integrity": "sha1-EgUN5Bw5hEMiTHl43g9iE5ANNPs=", - "requires": { - "@turf/clone": "^5.1.5", - "@turf/distance": "^5.1.5", - "@turf/helpers": "^5.1.5", - "@turf/meta": "^5.1.5" - } - }, - "@turf/nearest-point-on-line": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/nearest-point-on-line/-/nearest-point-on-line-5.1.5.tgz", - "integrity": "sha1-VgauKX8VlHUkvqUaKp71HsG/nDY=", - "requires": { - "@turf/bearing": "^5.1.5", - "@turf/destination": "^5.1.5", - "@turf/distance": "^5.1.5", - "@turf/helpers": "^5.1.5", - "@turf/invariant": "^5.1.5", - "@turf/line-intersect": "^5.1.5", - "@turf/meta": "^5.1.5" - } - }, - "@turf/nearest-point-to-line": { - "version": "5.1.6", - "resolved": "https://registry.npmjs.org/@turf/nearest-point-to-line/-/nearest-point-to-line-5.1.6.tgz", - "integrity": "sha512-ZSvDIEiHhifn/vNwLXZI/E8xmEz5yBPqfUR7BVHRZrB1cP7jLhKZvkbidjG//uW8Fr1Ulc+PFOXczLspIcx/lw==", - "requires": { - "@turf/helpers": "6.x", - "@turf/invariant": "6.x", - "@turf/meta": "6.x", - "@turf/point-to-line-distance": "^5.1.5", - "object-assign": "*" - }, - "dependencies": { - "@turf/helpers": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/@turf/helpers/-/helpers-6.3.0.tgz", - "integrity": "sha512-kr6KuD4Z0GZ30tblTEvi90rvvVNlKieXuMC8CTzE/rVQb0/f/Cb29zCXxTD7giQTEQY/P2nRW23wEqqyNHulCg==" - }, - "@turf/invariant": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/@turf/invariant/-/invariant-6.3.0.tgz", - "integrity": "sha512-2OFOi9p+QOrcIMySEnr+WlOiKaFZ1bY56jA98YyECewJHfhPFWUBZEhc4nWGRT0ahK08Vus9+gcuBX8QIpCIIw==", - "requires": { - "@turf/helpers": "^6.3.0" - } - }, - "@turf/meta": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/@turf/meta/-/meta-6.3.0.tgz", - "integrity": "sha512-qBJjaAJS9H3ap0HlGXyF/Bzfl0qkA9suafX/jnDsZvWMfVLt+s+o6twKrXOGk5t7nnNON2NFRC8+czxpu104EQ==", - "requires": { - "@turf/helpers": "^6.3.0" - } - } - } - }, - "@turf/planepoint": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/planepoint/-/planepoint-5.1.5.tgz", - "integrity": "sha1-GLvfAG91ne9eQsagBsn53oGyt/8=", - "requires": { - "@turf/helpers": "^5.1.5", - "@turf/invariant": "^5.1.5" - } - }, - "@turf/point-grid": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/point-grid/-/point-grid-5.1.5.tgz", - "integrity": "sha1-MFFBJI9Quv42zn5mukuX56sjaIc=", - "requires": { - "@turf/boolean-within": "^5.1.5", - "@turf/distance": "^5.1.5", - "@turf/helpers": "^5.1.5", - "@turf/invariant": "^5.1.5" - } - }, - "@turf/point-on-feature": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/point-on-feature/-/point-on-feature-5.1.5.tgz", - "integrity": "sha1-MMfwMkMCd8ZBjZbSieRba/shP+c=", - "requires": { - "@turf/boolean-point-in-polygon": "^5.1.5", - "@turf/center": "^5.1.5", - "@turf/explode": "^5.1.5", - "@turf/helpers": "^5.1.5", - "@turf/nearest-point": "^5.1.5" - }, - "dependencies": { - "@turf/boolean-point-in-polygon": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/boolean-point-in-polygon/-/boolean-point-in-polygon-5.1.5.tgz", - "integrity": "sha1-8BzBlNHgMKVIv9qYHLpDz9YpQbc=", - "requires": { - "@turf/helpers": "^5.1.5", - "@turf/invariant": "^5.1.5" - } - } - } - }, - "@turf/point-to-line-distance": { - "version": "5.1.6", - "resolved": "https://registry.npmjs.org/@turf/point-to-line-distance/-/point-to-line-distance-5.1.6.tgz", - "integrity": "sha512-PE3hiTeeDEi4ZLPtI8XAzFYW9nHo1EVsZGm/4ZVV8jo39d3X1oLVHxY3e1PkCmWwRapXy4QLqvnTQ7nU4wspNw==", - "requires": { - "@turf/bearing": "6.x", - "@turf/distance": "6.x", - "@turf/helpers": "6.x", - "@turf/invariant": "6.x", - "@turf/meta": "6.x", - "@turf/projection": "6.x", - "@turf/rhumb-bearing": "6.x", - "@turf/rhumb-distance": "6.x" - }, - "dependencies": { - "@turf/bearing": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/@turf/bearing/-/bearing-6.3.0.tgz", - "integrity": "sha512-apuUm9xN6VQLO33m7F2mmzlm3dHfeesJjMSzh9iehGtgmp1IaVndjdcIvs0ieiwm8bN9UhwXpfPtO3pV0n9SFw==", - "requires": { - "@turf/helpers": "^6.3.0", - "@turf/invariant": "^6.3.0" - } - }, - "@turf/clone": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/@turf/clone/-/clone-6.3.0.tgz", - "integrity": "sha512-GAgN89/9GCqUKECB1oY2hcTs0K2rZj+a2tY6VfM0ef9wwckuQZCKi+kKGUzhKVrmHee15jKV8n6DY0er8OndKg==", - "requires": { - "@turf/helpers": "^6.3.0" - } - }, - "@turf/distance": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/@turf/distance/-/distance-6.3.0.tgz", - "integrity": "sha512-basi24ssNFnH3iXPFjp/aNUrukjObiFWoIyDRqKyBJxVwVOwAWvfk4d38QQyBj5nDo5IahYRq/Q+T47/5hSs9w==", - "requires": { - "@turf/helpers": "^6.3.0", - "@turf/invariant": "^6.3.0" - } - }, - "@turf/helpers": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/@turf/helpers/-/helpers-6.3.0.tgz", - "integrity": "sha512-kr6KuD4Z0GZ30tblTEvi90rvvVNlKieXuMC8CTzE/rVQb0/f/Cb29zCXxTD7giQTEQY/P2nRW23wEqqyNHulCg==" - }, - "@turf/invariant": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/@turf/invariant/-/invariant-6.3.0.tgz", - "integrity": "sha512-2OFOi9p+QOrcIMySEnr+WlOiKaFZ1bY56jA98YyECewJHfhPFWUBZEhc4nWGRT0ahK08Vus9+gcuBX8QIpCIIw==", - "requires": { - "@turf/helpers": "^6.3.0" - } - }, - "@turf/meta": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/@turf/meta/-/meta-6.3.0.tgz", - "integrity": "sha512-qBJjaAJS9H3ap0HlGXyF/Bzfl0qkA9suafX/jnDsZvWMfVLt+s+o6twKrXOGk5t7nnNON2NFRC8+czxpu104EQ==", - "requires": { - "@turf/helpers": "^6.3.0" - } - }, - "@turf/projection": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/@turf/projection/-/projection-6.3.0.tgz", - "integrity": "sha512-IpSs7Q6G6xi47ynVlYYVegPLy6Jc0yo3/DcIm83jaJa4NnzPFXIFZT0v9Fe1N8MraHZqiqaSPbVnJXCGwR12lg==", - "requires": { - "@turf/clone": "^6.3.0", - "@turf/helpers": "^6.3.0", - "@turf/meta": "^6.3.0" - } - }, - "@turf/rhumb-bearing": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/@turf/rhumb-bearing/-/rhumb-bearing-6.3.0.tgz", - "integrity": "sha512-/c/BE3huEUrwN6gx7Bg2FzfJqeU+TWk/slQPDHpbVunlIPbS6L28brqSVD+KXfMG8HQIzynz6Pm4Y+j5Iv4aWA==", - "requires": { - "@turf/helpers": "^6.3.0", - "@turf/invariant": "^6.3.0" - } - }, - "@turf/rhumb-distance": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/@turf/rhumb-distance/-/rhumb-distance-6.3.0.tgz", - "integrity": "sha512-wMIQVvznusonnp/POeucFdA4Rubn0NrkcEMdxdcCgFK7OmTz0zU4CEnNONF2IUGkQ5WwoKiuS7MOTQ8OuCjSfQ==", - "requires": { - "@turf/helpers": "^6.3.0", - "@turf/invariant": "^6.3.0" - } - } - } - }, - "@turf/points-within-polygon": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/points-within-polygon/-/points-within-polygon-5.1.5.tgz", - "integrity": "sha1-K4VaXfOq2lfC7oIKB1SrlJKKIzc=", - "requires": { - "@turf/boolean-point-in-polygon": "^5.1.5", - "@turf/helpers": "^5.1.5", - "@turf/meta": "^5.1.5" - }, - "dependencies": { - "@turf/boolean-point-in-polygon": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/boolean-point-in-polygon/-/boolean-point-in-polygon-5.1.5.tgz", - "integrity": "sha1-8BzBlNHgMKVIv9qYHLpDz9YpQbc=", - "requires": { - "@turf/helpers": "^5.1.5", - "@turf/invariant": "^5.1.5" - } - } - } - }, - "@turf/polygon-tangents": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/polygon-tangents/-/polygon-tangents-5.1.5.tgz", - "integrity": "sha1-K/AJkUcwJbF44lDcfLmuVAm71lI=", - "requires": { - "@turf/helpers": "^5.1.5", - "@turf/invariant": "^5.1.5" - } - }, - "@turf/polygon-to-line": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/polygon-to-line/-/polygon-to-line-5.1.5.tgz", - "integrity": "sha1-I7tEjYTcTGUZmaxhGjbZHFklA2o=", - "requires": { - "@turf/helpers": "^5.1.5", - "@turf/invariant": "^5.1.5" - } - }, - "@turf/polygonize": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/polygonize/-/polygonize-5.1.5.tgz", - "integrity": "sha1-BJP6EYefOdELmtAs5qI+lC0IqjI=", - "requires": { - "@turf/boolean-point-in-polygon": "^5.1.5", - "@turf/envelope": "^5.1.5", - "@turf/helpers": "^5.1.5", - "@turf/invariant": "^5.1.5", - "@turf/meta": "^5.1.5" - }, - "dependencies": { - "@turf/boolean-point-in-polygon": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/boolean-point-in-polygon/-/boolean-point-in-polygon-5.1.5.tgz", - "integrity": "sha1-8BzBlNHgMKVIv9qYHLpDz9YpQbc=", - "requires": { - "@turf/helpers": "^5.1.5", - "@turf/invariant": "^5.1.5" - } - } - } - }, - "@turf/projection": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/projection/-/projection-5.1.5.tgz", - "integrity": "sha1-JFF+7rLzaBa6n3EueubWo2jt91c=", - "requires": { - "@turf/clone": "^5.1.5", - "@turf/helpers": "^5.1.5", - "@turf/meta": "^5.1.5" - } - }, - "@turf/random": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/random/-/random-5.1.5.tgz", - "integrity": "sha1-sy78k0Vgroulfo67UfJBw5+6Lns=", - "requires": { - "@turf/helpers": "^5.1.5" - } - }, - "@turf/rewind": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/rewind/-/rewind-5.1.5.tgz", - "integrity": "sha1-nqPbSmi3PB/R3RH1djGxQ8/vock=", - "requires": { - "@turf/boolean-clockwise": "^5.1.5", - "@turf/clone": "^5.1.5", - "@turf/helpers": "^5.1.5", - "@turf/invariant": "^5.1.5", - "@turf/meta": "^5.1.5" - } - }, - "@turf/rhumb-bearing": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/rhumb-bearing/-/rhumb-bearing-5.1.5.tgz", - "integrity": "sha1-rPalAkJ+uMSeGM2mrg7/qwxd3NI=", - "requires": { - "@turf/helpers": "^5.1.5", - "@turf/invariant": "^5.1.5" - } - }, - "@turf/rhumb-destination": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/rhumb-destination/-/rhumb-destination-5.1.5.tgz", - "integrity": "sha1-sbKuuSFUfyrAwamUtqEw+SRjx0I=", - "requires": { - "@turf/helpers": "^5.1.5", - "@turf/invariant": "^5.1.5" - } - }, - "@turf/rhumb-distance": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/rhumb-distance/-/rhumb-distance-5.1.5.tgz", - "integrity": "sha1-GAaFdiX0IlOE2tQT5p85U4/192U=", - "requires": { - "@turf/helpers": "^5.1.5", - "@turf/invariant": "^5.1.5" - } - }, - "@turf/sample": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/sample/-/sample-5.1.5.tgz", - "integrity": "sha1-6ctEikeJzFbuPeLdZ4HiNDQ1tBE=", - "requires": { - "@turf/helpers": "^5.1.5" - } - }, - "@turf/sector": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/sector/-/sector-5.1.5.tgz", - "integrity": "sha1-rCu5TBPt1gNPb9wrZwCBNdIPXgc=", - "requires": { - "@turf/circle": "^5.1.5", - "@turf/helpers": "^5.1.5", - "@turf/invariant": "^5.1.5", - "@turf/line-arc": "^5.1.5", - "@turf/meta": "^5.1.5" - } - }, - "@turf/shortest-path": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/shortest-path/-/shortest-path-5.1.5.tgz", - "integrity": "sha1-hUroCW9rw+EwD6ynfz6PZ9j5Nas=", - "requires": { - "@turf/bbox": "^5.1.5", - "@turf/bbox-polygon": "^5.1.5", - "@turf/boolean-point-in-polygon": "^5.1.5", - "@turf/clean-coords": "^5.1.5", - "@turf/distance": "^5.1.5", - "@turf/helpers": "^5.1.5", - "@turf/invariant": "^5.1.5", - "@turf/meta": "^5.1.5", - "@turf/transform-scale": "^5.1.5" - }, - "dependencies": { - "@turf/boolean-point-in-polygon": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/boolean-point-in-polygon/-/boolean-point-in-polygon-5.1.5.tgz", - "integrity": "sha1-8BzBlNHgMKVIv9qYHLpDz9YpQbc=", - "requires": { - "@turf/helpers": "^5.1.5", - "@turf/invariant": "^5.1.5" - } - } - } - }, - "@turf/simplify": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/simplify/-/simplify-5.1.5.tgz", - "integrity": "sha1-Csjyei60IYGD7dmZjDJ1q+QIuSY=", - "requires": { - "@turf/clean-coords": "^5.1.5", - "@turf/clone": "^5.1.5", - "@turf/helpers": "^5.1.5", - "@turf/meta": "^5.1.5" - } - }, - "@turf/square": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/square/-/square-5.1.5.tgz", - "integrity": "sha1-qnsh5gM8ySUsOlvW89iNq9b+0YA=", - "requires": { - "@turf/distance": "^5.1.5", - "@turf/helpers": "^5.1.5" - } - }, - "@turf/square-grid": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/square-grid/-/square-grid-5.1.5.tgz", - "integrity": "sha1-G9X3uesU8LYLwjH+/nNR0aMvGlE=", - "requires": { - "@turf/boolean-contains": "^5.1.5", - "@turf/boolean-overlap": "^5.1.5", - "@turf/distance": "^5.1.5", - "@turf/helpers": "^5.1.5", - "@turf/intersect": "^5.1.5", - "@turf/invariant": "^5.1.5" - } - }, - "@turf/standard-deviational-ellipse": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/standard-deviational-ellipse/-/standard-deviational-ellipse-5.1.5.tgz", - "integrity": "sha1-hc0oO14ayljyG9ZkEuQUtW2FIyQ=", - "requires": { - "@turf/center-mean": "^5.1.5", - "@turf/ellipse": "^5.1.5", - "@turf/helpers": "^5.1.5", - "@turf/invariant": "^5.1.5", - "@turf/meta": "^5.1.5", - "@turf/points-within-polygon": "^5.1.5" - } - }, - "@turf/tag": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/tag/-/tag-5.1.5.tgz", - "integrity": "sha1-0e4aUIjs/UoUEQGcmCOczypJfSA=", - "requires": { - "@turf/boolean-point-in-polygon": "^5.1.5", - "@turf/clone": "^5.1.5", - "@turf/helpers": "^5.1.5", - "@turf/meta": "^5.1.5" - }, - "dependencies": { - "@turf/boolean-point-in-polygon": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/boolean-point-in-polygon/-/boolean-point-in-polygon-5.1.5.tgz", - "integrity": "sha1-8BzBlNHgMKVIv9qYHLpDz9YpQbc=", - "requires": { - "@turf/helpers": "^5.1.5", - "@turf/invariant": "^5.1.5" - } - } - } - }, - "@turf/tesselate": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/tesselate/-/tesselate-5.1.5.tgz", - "integrity": "sha1-MqWU6cIaAEIKn5DSxD3z4RZgYc0=", - "requires": { - "@turf/helpers": "^5.1.5", - "earcut": "^2.0.0" - } - }, - "@turf/tin": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/tin/-/tin-5.1.5.tgz", - "integrity": "sha1-KCI+r8X76a6azKgc3P6l0UJMkX0=", - "requires": { - "@turf/helpers": "^5.1.5" - } - }, - "@turf/transform-rotate": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/transform-rotate/-/transform-rotate-5.1.5.tgz", - "integrity": "sha1-0Jbt2eMA/jFQadVNjkWMQJIh7fs=", - "requires": { - "@turf/centroid": "^5.1.5", - "@turf/clone": "^5.1.5", - "@turf/helpers": "^5.1.5", - "@turf/invariant": "^5.1.5", - "@turf/meta": "^5.1.5", - "@turf/rhumb-bearing": "^5.1.5", - "@turf/rhumb-destination": "^5.1.5", - "@turf/rhumb-distance": "^5.1.5" - } - }, - "@turf/transform-scale": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/transform-scale/-/transform-scale-5.1.5.tgz", - "integrity": "sha1-cP064BhWz3uunxWtVhzf6PiQAbk=", - "requires": { - "@turf/bbox": "^5.1.5", - "@turf/center": "^5.1.5", - "@turf/centroid": "^5.1.5", - "@turf/clone": "^5.1.5", - "@turf/helpers": "^5.1.5", - "@turf/invariant": "^5.1.5", - "@turf/meta": "^5.1.5", - "@turf/rhumb-bearing": "^5.1.5", - "@turf/rhumb-destination": "^5.1.5", - "@turf/rhumb-distance": "^5.1.5" - } - }, - "@turf/transform-translate": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/transform-translate/-/transform-translate-5.1.5.tgz", - "integrity": "sha1-Uwolf7Hccmja3Ks05nkB6yo97GM=", - "requires": { - "@turf/clone": "^5.1.5", - "@turf/helpers": "^5.1.5", - "@turf/invariant": "^5.1.5", - "@turf/meta": "^5.1.5", - "@turf/rhumb-destination": "^5.1.5" - } - }, - "@turf/triangle-grid": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/triangle-grid/-/triangle-grid-5.1.5.tgz", - "integrity": "sha1-ezZ2IQhVTBTyjK/zxIsc/ILI3IE=", - "requires": { - "@turf/distance": "^5.1.5", - "@turf/helpers": "^5.1.5", - "@turf/intersect": "^5.1.5", - "@turf/invariant": "^5.1.5" - } - }, - "@turf/truncate": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/truncate/-/truncate-5.1.5.tgz", - "integrity": "sha1-nu37Oxi6gfLJjT6tCUMcyhiErYk=", - "requires": { - "@turf/helpers": "^5.1.5", - "@turf/meta": "^5.1.5" - } - }, - "@turf/turf": { - "version": "5.1.6", - "resolved": "https://registry.npmjs.org/@turf/turf/-/turf-5.1.6.tgz", - "integrity": "sha1-wxIlkoh+0jS3VGi4qMRb+Ib7+PY=", - "requires": { - "@turf/along": "5.1.x", - "@turf/area": "5.1.x", - "@turf/bbox": "5.1.x", - "@turf/bbox-clip": "5.1.x", - "@turf/bbox-polygon": "5.1.x", - "@turf/bearing": "5.1.x", - "@turf/bezier-spline": "5.1.x", - "@turf/boolean-clockwise": "5.1.x", - "@turf/boolean-contains": "5.1.x", - "@turf/boolean-crosses": "5.1.x", - "@turf/boolean-disjoint": "5.1.x", - "@turf/boolean-equal": "5.1.x", - "@turf/boolean-overlap": "5.1.x", - "@turf/boolean-parallel": "5.1.x", - "@turf/boolean-point-in-polygon": "5.1.x", - "@turf/boolean-point-on-line": "5.1.x", - "@turf/boolean-within": "5.1.x", - "@turf/buffer": "5.1.x", - "@turf/center": "5.1.x", - "@turf/center-mean": "5.1.x", - "@turf/center-median": "5.1.x", - "@turf/center-of-mass": "5.1.x", - "@turf/centroid": "5.1.x", - "@turf/circle": "5.1.x", - "@turf/clean-coords": "5.1.x", - "@turf/clone": "5.1.x", - "@turf/clusters": "5.1.x", - "@turf/clusters-dbscan": "5.1.x", - "@turf/clusters-kmeans": "5.1.x", - "@turf/collect": "5.1.x", - "@turf/combine": "5.1.x", - "@turf/concave": "5.1.x", - "@turf/convex": "5.1.x", - "@turf/destination": "5.1.x", - "@turf/difference": "5.1.x", - "@turf/dissolve": "5.1.x", - "@turf/distance": "5.1.x", - "@turf/ellipse": "5.1.x", - "@turf/envelope": "5.1.x", - "@turf/explode": "5.1.x", - "@turf/flatten": "5.1.x", - "@turf/flip": "5.1.x", - "@turf/great-circle": "5.1.x", - "@turf/helpers": "5.1.x", - "@turf/hex-grid": "5.1.x", - "@turf/interpolate": "5.1.x", - "@turf/intersect": "5.1.x", - "@turf/invariant": "5.1.x", - "@turf/isobands": "5.1.x", - "@turf/isolines": "5.1.x", - "@turf/kinks": "5.1.x", - "@turf/length": "5.1.x", - "@turf/line-arc": "5.1.x", - "@turf/line-chunk": "5.1.x", - "@turf/line-intersect": "5.1.x", - "@turf/line-offset": "5.1.x", - "@turf/line-overlap": "5.1.x", - "@turf/line-segment": "5.1.x", - "@turf/line-slice": "5.1.x", - "@turf/line-slice-along": "5.1.x", - "@turf/line-split": "5.1.x", - "@turf/line-to-polygon": "5.1.x", - "@turf/mask": "5.1.x", - "@turf/meta": "5.1.x", - "@turf/midpoint": "5.1.x", - "@turf/nearest-point": "5.1.x", - "@turf/nearest-point-on-line": "5.1.x", - "@turf/nearest-point-to-line": "5.1.x", - "@turf/planepoint": "5.1.x", - "@turf/point-grid": "5.1.x", - "@turf/point-on-feature": "5.1.x", - "@turf/point-to-line-distance": "5.1.x", - "@turf/points-within-polygon": "5.1.x", - "@turf/polygon-tangents": "5.1.x", - "@turf/polygon-to-line": "5.1.x", - "@turf/polygonize": "5.1.x", - "@turf/projection": "5.1.x", - "@turf/random": "5.1.x", - "@turf/rewind": "5.1.x", - "@turf/rhumb-bearing": "5.1.x", - "@turf/rhumb-destination": "5.1.x", - "@turf/rhumb-distance": "5.1.x", - "@turf/sample": "5.1.x", - "@turf/sector": "5.1.x", - "@turf/shortest-path": "5.1.x", - "@turf/simplify": "5.1.x", - "@turf/square": "5.1.x", - "@turf/square-grid": "5.1.x", - "@turf/standard-deviational-ellipse": "5.1.x", - "@turf/tag": "5.1.x", - "@turf/tesselate": "5.1.x", - "@turf/tin": "5.1.x", - "@turf/transform-rotate": "5.1.x", - "@turf/transform-scale": "5.1.x", - "@turf/transform-translate": "5.1.x", - "@turf/triangle-grid": "5.1.x", - "@turf/truncate": "5.1.x", - "@turf/union": "5.1.x", - "@turf/unkink-polygon": "5.1.x", - "@turf/voronoi": "5.1.x" - }, - "dependencies": { - "@turf/boolean-point-in-polygon": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/boolean-point-in-polygon/-/boolean-point-in-polygon-5.1.5.tgz", - "integrity": "sha1-8BzBlNHgMKVIv9qYHLpDz9YpQbc=", - "requires": { - "@turf/helpers": "^5.1.5", - "@turf/invariant": "^5.1.5" - } - } - } - }, - "@turf/union": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/union/-/union-5.1.5.tgz", - "integrity": "sha1-UyhbYJQEf8WNlqrA6pCGXsNNRUs=", - "requires": { - "@turf/helpers": "^5.1.5", - "turf-jsts": "*" - } - }, - "@turf/unkink-polygon": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/unkink-polygon/-/unkink-polygon-5.1.5.tgz", - "integrity": "sha1-ewGEfFD7V0riV54Z5Ey6hSbSE8M=", - "requires": { - "@turf/area": "^5.1.5", - "@turf/boolean-point-in-polygon": "^5.1.5", - "@turf/helpers": "^5.1.5", - "@turf/meta": "^5.1.5", - "rbush": "^2.0.1" - }, - "dependencies": { - "@turf/boolean-point-in-polygon": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/boolean-point-in-polygon/-/boolean-point-in-polygon-5.1.5.tgz", - "integrity": "sha1-8BzBlNHgMKVIv9qYHLpDz9YpQbc=", - "requires": { - "@turf/helpers": "^5.1.5", - "@turf/invariant": "^5.1.5" - } - } - } - }, - "@turf/voronoi": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/@turf/voronoi/-/voronoi-5.1.5.tgz", - "integrity": "sha1-6FbpQG3MLyXWbdyJhYTifC6/ymY=", - "requires": { - "@turf/helpers": "^5.1.5", - "@turf/invariant": "^5.1.5", - "d3-voronoi": "1.1.2" - } - }, - "@types/node": { - "version": "14.14.44", - "resolved": "https://registry.npmjs.org/@types/node/-/node-14.14.44.tgz", - "integrity": "sha512-+gaugz6Oce6ZInfI/tK4Pq5wIIkJMEJUu92RB3Eu93mtj4wjjjz9EB5mLp5s1pSsLXdC/CPut/xF20ZzAQJbTA==" - }, - "commander": { - "version": "2.20.3", - "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", - "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==" - }, - "geojson-rbush": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/geojson-rbush/-/geojson-rbush-2.1.0.tgz", - "integrity": "sha1-O9c745H8ELCuaT2bis6iquC4Oo0=", - "requires": { - "@turf/helpers": "*", - "@turf/meta": "*", - "rbush": "*" - } - }, - "topojson-client": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/topojson-client/-/topojson-client-3.1.0.tgz", - "integrity": "sha512-605uxS6bcYxGXw9qi62XyrV6Q3xwbndjachmNxu8HWTtVPxZfEJN9fd/SZS1Q54Sn2y0TMyMxFj/cJINqGHrKw==", - "requires": { - "commander": "2" - } - }, - "topojson-server": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/topojson-server/-/topojson-server-3.0.1.tgz", - "integrity": "sha512-/VS9j/ffKr2XAOjlZ9CgyyeLmgJ9dMwq6Y0YEON8O7p/tGGk+dCWnrE03zEdu7i4L7YsFZLEPZPzCvcB7lEEXw==", - "requires": { - "commander": "2" - } - }, - "turf": { - "version": "3.0.14", - "resolved": "https://registry.npmjs.org/turf/-/turf-3.0.14.tgz", - "integrity": "sha1-6y9KgKLVg7jGSGvHtccZBGaGbCc=", - "requires": { - "turf-along": "^3.0.12", - "turf-area": "^3.0.12", - "turf-bbox": "^3.0.12", - "turf-bbox-polygon": "^3.0.12", - "turf-bearing": "^3.0.12", - "turf-bezier": "^3.0.12", - "turf-buffer": "^3.0.12", - "turf-center": "^3.0.12", - "turf-centroid": "^3.0.12", - "turf-circle": "^3.0.12", - "turf-collect": "^3.0.12", - "turf-combine": "^3.0.12", - "turf-concave": "^3.0.12", - "turf-convex": "^3.0.12", - "turf-destination": "^3.0.12", - "turf-difference": "^3.0.12", - "turf-distance": "^3.0.12", - "turf-envelope": "^3.0.12", - "turf-explode": "^3.0.12", - "turf-flip": "^3.0.12", - "turf-helpers": "^3.0.12", - "turf-hex-grid": "^3.0.12", - "turf-inside": "^3.0.12", - "turf-intersect": "^3.0.12", - "turf-isolines": "^3.0.12", - "turf-kinks": "^3.0.12", - "turf-line-distance": "^3.0.12", - "turf-line-slice": "^3.0.12", - "turf-meta": "^3.0.12", - "turf-midpoint": "^3.0.12", - "turf-nearest": "^3.0.12", - "turf-planepoint": "^3.0.12", - "turf-point-grid": "^3.0.12", - "turf-point-on-line": "^3.0.12", - "turf-point-on-surface": "^3.0.12", - "turf-random": "^3.0.12", - "turf-sample": "^3.0.12", - "turf-simplify": "^3.0.12", - "turf-square": "^3.0.12", - "turf-square-grid": "^3.0.12", - "turf-tag": "^3.0.12", - "turf-tesselate": "^3.0.12", - "turf-tin": "^3.0.12", - "turf-triangle-grid": "^3.0.12", - "turf-union": "^3.0.12", - "turf-within": "^3.0.12" - } - } } }, "leaflet": { @@ -26456,12 +23102,6 @@ "file-saver": "^2.0.2" } }, - "leaflet.markercluster": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/leaflet.markercluster/-/leaflet.markercluster-1.5.0.tgz", - "integrity": "sha512-Fvf/cq4o806mJL50n+fZW9+QALDDLPvt7vuAjlD2vfnxx3srMDs2vWINJze4nKYJYRY45OC6tM/669C3pLwMCA==", - "requires": {} - }, "levn": { "version": "0.3.0", "resolved": "https://registry.npmjs.org/levn/-/levn-0.3.0.tgz", @@ -26472,12 +23112,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": { @@ -26490,11 +23129,6 @@ "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-2.0.3.tgz", "integrity": "sha512-EHKqr/+ZvdKCifpNrJCKxBTgk5XupZA3y/aCPY9mxfgBzmgh93Mt/WqjjQ38oMxXuvDokaKiM3lAgvSH2sjtHg==" }, - "lineclip": { - "version": "1.1.5", - "resolved": "https://registry.npmjs.org/lineclip/-/lineclip-1.1.5.tgz", - "integrity": "sha1-K/JgZ9lDVP6r+R5CdoI221YW/RM=" - }, "lines-and-columns": { "version": "1.1.6", "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.1.6.tgz", @@ -26612,11 +23246,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", @@ -26633,7 +23262,8 @@ "make-error": { "version": "1.3.6", "resolved": "https://registry.npmjs.org/make-error/-/make-error-1.3.6.tgz", - "integrity": "sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==" + "integrity": "sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==", + "devOptional": true }, "mangrove-reviews": { "version": "0.1.4", @@ -26664,12 +23294,6 @@ "object-visit": "^1.0.0" } }, - "marked": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/marked/-/marked-2.0.3.tgz", - "integrity": "sha512-5otztIIcJfPc2qGTN8cVtOJEjNJZ0jwa46INMagrYfk0EvqtRuEHLsEe0LrFS0/q+ZRKT0+kXK7P2T1AN5lWRA==", - "dev": true - }, "md5.js": { "version": "1.3.5", "resolved": "https://registry.npmjs.org/md5.js/-/md5.js-1.3.5.tgz", @@ -26685,11 +23309,6 @@ "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.4.tgz", "integrity": "sha512-iV3XNKw06j5Q7mi6h+9vbx23Tv7JkjEVgKHW4pimwyDGWm0OIQntJJ+u1C6mg6mK1EaTv42XQ7w76yuzH7M2cA==" }, - "memorystream": { - "version": "0.3.1", - "resolved": "https://registry.npmjs.org/memorystream/-/memorystream-0.3.1.tgz", - "integrity": "sha1-htcJCzDORV1j+64S3aUaR93K+bI=" - }, "meow": { "version": "3.7.0", "resolved": "https://registry.npmjs.org/meow/-/meow-3.7.0.tgz", @@ -26811,18 +23430,11 @@ } }, "mkdirp": { - "version": "0.5.1", - "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.1.tgz", - "integrity": "sha1-MAV0OOrGz3+MR2fzhkjWaX11yQM=", + "version": "0.5.5", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.5.tgz", + "integrity": "sha512-NKmAlESf6jMGym1++R0Ra7wvhV+wFW63FaSOFPwRahvea0gMUcGUhVeAg/0BC0wiv9ih5NYPB1Wn1UEI1/L+xQ==", "requires": { - "minimist": "0.0.8" - }, - "dependencies": { - "minimist": { - "version": "0.0.8", - "resolved": "https://registry.npmjs.org/minimist/-/minimist-0.0.8.tgz", - "integrity": "sha1-hX/Kv8M5fSYluCKCYuhqp6ARsF0=" - } + "minimist": "^1.2.5" } }, "mkdirp-classic": { @@ -26831,76 +23443,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", @@ -26931,9 +23473,9 @@ "dev": true }, "nan": { - "version": "2.14.2", - "resolved": "https://registry.npmjs.org/nan/-/nan-2.14.2.tgz", - "integrity": "sha512-M2ufzIiINKCuDfBSAUr1vWQ+vuVcA9kqx8JJUsbQi6yf1uGRyb7HfpdfUr5qLXf3B/t8dPvcjhKMmlfnP47EzQ==", + "version": "2.15.0", + "resolved": "https://registry.npmjs.org/nan/-/nan-2.15.0.tgz", + "integrity": "sha512-8ZtvEnA2c5aYCZYd1cvgdnU6cqwixRoYg70xPLWUws5ORTa/lnw+u4amixRS/Ac5U5mQVgp9pnlSUnbNWFaWZQ==", "optional": true }, "nanocolors": { @@ -26942,9 +23484,9 @@ "integrity": "sha512-2pvTw6vYRaBLGir2xR7MxaJtyWkrn+C53EpW8yPotG+pdAwBvt0Xwk4VJ6VHLY0aLthVZPvDfm9TdZvrvAm5UQ==" }, "nanoid": { - "version": "3.1.25", - "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.1.25.tgz", - "integrity": "sha512-rdwtIXaXCLFAQbnfqDRnI6jaRHp9fTcYBjtFKE8eezcZ7LuLjhUaQGNeMXf1HmRoCH32CLz6XwX0TtxEOS/A3Q==" + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.2.0.tgz", + "integrity": "sha512-fmsZYa9lpn69Ad5eDn7FMcnnSR+8R34W9qJEijxYhTbfOWzr22n1QxCMzXLK+ODyW2973V3Fux959iQoUxzUIA==" }, "nanomatch": { "version": "1.2.13", @@ -26970,6 +23512,11 @@ "integrity": "sha512-ONmRUqK7zj7DWX0D9ADe03wbwOBZxNAfF20PlGfCWQcD3+/MakShIHrMqx9YwPTfxDdF1zLeL+RGZiR9kGMLdg==", "dev": true }, + "ncp": { + "version": "0.4.2", + "resolved": "https://registry.npmjs.org/ncp/-/ncp-0.4.2.tgz", + "integrity": "sha1-q8xsvT7C7Spyn/bnwfqPAXhKhXQ=" + }, "neo-async": { "version": "2.6.2", "resolved": "https://registry.npmjs.org/neo-async/-/neo-async-2.6.2.tgz", @@ -27082,10 +23629,27 @@ "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-1.1.76.tgz", "integrity": "sha512-9/IECtNr8dXNmPWmFXepT0/7o5eolGesHUa3mtr0KlgnCvnZxwh2qensKL42JJY2vQKC3nIBXetFAqR+PW1CmA==" }, + "nomnom": { + "version": "1.6.2", + "resolved": "https://registry.npmjs.org/nomnom/-/nomnom-1.6.2.tgz", + "integrity": "sha1-hKZqJgF0QI/Ft3oY+IjszET7aXE=", + "requires": { + "colors": "0.5.x", + "underscore": "~1.4.4" + }, + "dependencies": { + "underscore": { + "version": "1.4.4", + "resolved": "https://registry.npmjs.org/underscore/-/underscore-1.4.4.tgz", + "integrity": "sha1-YaajIBBiKvoHljvzJSA88SI51gQ=" + } + } + }, "normalize-package-data": { "version": "2.5.0", "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.5.0.tgz", "integrity": "sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==", + "dev": true, "requires": { "hosted-git-info": "^2.1.4", "resolve": "^1.10.0", @@ -27096,7 +23660,8 @@ "semver": { "version": "5.7.1", "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", - "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==" + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", + "dev": true } } }, @@ -27116,63 +23681,6 @@ "resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-3.3.0.tgz", "integrity": "sha512-U+JJi7duF1o+u2pynbp2zXDW2/PADgC30f0GsHZtRh+HOcXHnw137TrNlyxxRvWW5fjKd3bcLHPxofWuCjaeZg==" }, - "npm-run-all": { - "version": "4.1.5", - "resolved": "https://registry.npmjs.org/npm-run-all/-/npm-run-all-4.1.5.tgz", - "integrity": "sha512-Oo82gJDAVcaMdi3nuoKFavkIHBRVqQ1qvMb+9LHk/cF4P6B2m8aP04hGf7oL6wZ9BuGwX1onlLhpuoofSyoQDQ==", - "requires": { - "ansi-styles": "^3.2.1", - "chalk": "^2.4.1", - "cross-spawn": "^6.0.5", - "memorystream": "^0.3.1", - "minimatch": "^3.0.4", - "pidtree": "^0.3.0", - "read-pkg": "^3.0.0", - "shell-quote": "^1.6.1", - "string.prototype.padend": "^3.0.0" - }, - "dependencies": { - "load-json-file": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/load-json-file/-/load-json-file-4.0.0.tgz", - "integrity": "sha1-L19Fq5HjMhYjT9U62rZo607AmTs=", - "requires": { - "graceful-fs": "^4.1.2", - "parse-json": "^4.0.0", - "pify": "^3.0.0", - "strip-bom": "^3.0.0" - } - }, - "path-type": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/path-type/-/path-type-3.0.0.tgz", - "integrity": "sha512-T2ZUsdZFHgA3u4e5PfPbjd7HDDpxPnQb5jN0SrDsjNSuVXHJqtwTnWqG0B1jZrgmJ/7lj1EmVIByWt1gxGkWvg==", - "requires": { - "pify": "^3.0.0" - } - }, - "pify": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", - "integrity": "sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY=" - }, - "read-pkg": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-3.0.0.tgz", - "integrity": "sha1-nLxoaXj+5l0WwA4rGcI3/Pbjg4k=", - "requires": { - "load-json-file": "^4.0.0", - "normalize-package-data": "^2.3.2", - "path-type": "^3.0.0" - } - }, - "strip-bom": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", - "integrity": "sha1-IzTBjpx1n3vdVv3vfprj1YjmjtM=" - } - } - }, "npmlog": { "version": "4.1.2", "resolved": "https://registry.npmjs.org/npmlog/-/npmlog-4.1.2.tgz", @@ -27448,6 +23956,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" + } } } }, @@ -27456,6 +23985,11 @@ "resolved": "https://registry.npmjs.org/pako/-/pako-0.2.9.tgz", "integrity": "sha1-8/dSL073gjSNqBYbrZ7P1Rv4OnU=" }, + "papaparse": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/papaparse/-/papaparse-5.3.1.tgz", + "integrity": "sha512-Dbt2yjLJrCwH2sRqKFFJaN5XgIASO9YOFeFP8rIBRG2Ain8mqk5r1M6DkfvqEVozVcz3r3HaUGw253hA1nLIcA==" + }, "parcel": { "version": "1.12.4", "resolved": "https://registry.npmjs.org/parcel/-/parcel-1.12.4.tgz", @@ -27651,13 +24185,12 @@ } }, "postcss": { - "version": "7.0.36", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.36.tgz", - "integrity": "sha512-BebJSIUMwJHRH0HAQoxN4u1CN86glsrwsW0q7T+/m44eXOUAxSNdHRkNZPYz5vVUbg17hFgOQDE7fZk7li3pZw==", + "version": "7.0.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", "requires": { - "chalk": "^2.4.2", - "source-map": "^0.6.1", - "supports-color": "^6.1.0" + "picocolors": "^0.2.1", + "source-map": "^0.6.1" } }, "postcss-value-parser": { @@ -27675,14 +24208,6 @@ "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" }, - "supports-color": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", - "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", - "requires": { - "has-flag": "^3.0.0" - } - }, "to-regex-range": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz", @@ -27821,16 +24346,16 @@ "resolved": "https://registry.npmjs.org/physical-cpu-count/-/physical-cpu-count-2.0.0.tgz", "integrity": "sha1-GN4vl+S/epVRrXURlCtUlverpmA=" }, + "picocolors": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz", + "integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==" + }, "picomatch": { "version": "2.3.0", "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.0.tgz", "integrity": "sha512-lY1Q/PiJGC2zOv/z391WOTD+Z02bCgsFfvxoXXf6h7kv9o+WmsmzYqrAwY63sNgOxE4xEdq0WyUnXfKeBrSvYw==" }, - "pidtree": { - "version": "0.3.1", - "resolved": "https://registry.npmjs.org/pidtree/-/pidtree-0.3.1.tgz", - "integrity": "sha512-qQbW94hLHEqCg7nhby4yRC7G2+jYHY4Rguc2bjw7Uug4GIJuu1tvf2uHaZv5Q8zdt+WKJ6qK1FOI6amaWUo5FA==" - }, "pify": { "version": "2.3.0", "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", @@ -27862,6 +24387,14 @@ "resolved": "https://registry.npmjs.org/point-in-polygon/-/point-in-polygon-1.1.0.tgz", "integrity": "sha512-3ojrFwjnnw8Q9242TzgXuTD+eKiutbzyslcq1ydfu82Db2y+Ogbmyrkpv0Hgj31qwT3lbS9+QAAO/pIQM35XRw==" }, + "polygon-clipping": { + "version": "0.15.3", + "resolved": "https://registry.npmjs.org/polygon-clipping/-/polygon-clipping-0.15.3.tgz", + "integrity": "sha512-ho0Xx5DLkgxRx/+n4O74XyJ67DcyN3Tu9bGYKsnTukGAW6ssnuak6Mwcyb1wHy9MZc9xsUWqIoiazkZB5weECg==", + "requires": { + "splaytree": "^3.1.0" + } + }, "posix-character-classes": { "version": "0.1.1", "resolved": "https://registry.npmjs.org/posix-character-classes/-/posix-character-classes-0.1.1.tgz", @@ -27888,27 +24421,18 @@ }, "dependencies": { "postcss": { - "version": "7.0.36", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.36.tgz", - "integrity": "sha512-BebJSIUMwJHRH0HAQoxN4u1CN86glsrwsW0q7T+/m44eXOUAxSNdHRkNZPYz5vVUbg17hFgOQDE7fZk7li3pZw==", + "version": "7.0.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", "requires": { - "chalk": "^2.4.2", - "source-map": "^0.6.1", - "supports-color": "^6.1.0" + "picocolors": "^0.2.1", + "source-map": "^0.6.1" } }, "source-map": { "version": "0.6.1", "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" - }, - "supports-color": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", - "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", - "requires": { - "has-flag": "^3.0.0" - } } } }, @@ -27925,13 +24449,12 @@ }, "dependencies": { "postcss": { - "version": "7.0.36", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.36.tgz", - "integrity": "sha512-BebJSIUMwJHRH0HAQoxN4u1CN86glsrwsW0q7T+/m44eXOUAxSNdHRkNZPYz5vVUbg17hFgOQDE7fZk7li3pZw==", + "version": "7.0.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", "requires": { - "chalk": "^2.4.2", - "source-map": "^0.6.1", - "supports-color": "^6.1.0" + "picocolors": "^0.2.1", + "source-map": "^0.6.1" } }, "postcss-value-parser": { @@ -27943,14 +24466,6 @@ "version": "0.6.1", "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" - }, - "supports-color": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", - "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", - "requires": { - "has-flag": "^3.0.0" - } } } }, @@ -27964,13 +24479,12 @@ }, "dependencies": { "postcss": { - "version": "7.0.36", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.36.tgz", - "integrity": "sha512-BebJSIUMwJHRH0HAQoxN4u1CN86glsrwsW0q7T+/m44eXOUAxSNdHRkNZPYz5vVUbg17hFgOQDE7fZk7li3pZw==", + "version": "7.0.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", "requires": { - "chalk": "^2.4.2", - "source-map": "^0.6.1", - "supports-color": "^6.1.0" + "picocolors": "^0.2.1", + "source-map": "^0.6.1" } }, "postcss-value-parser": { @@ -27982,14 +24496,6 @@ "version": "0.6.1", "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" - }, - "supports-color": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", - "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", - "requires": { - "has-flag": "^3.0.0" - } } } }, @@ -28002,27 +24508,18 @@ }, "dependencies": { "postcss": { - "version": "7.0.36", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.36.tgz", - "integrity": "sha512-BebJSIUMwJHRH0HAQoxN4u1CN86glsrwsW0q7T+/m44eXOUAxSNdHRkNZPYz5vVUbg17hFgOQDE7fZk7li3pZw==", + "version": "7.0.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", "requires": { - "chalk": "^2.4.2", - "source-map": "^0.6.1", - "supports-color": "^6.1.0" + "picocolors": "^0.2.1", + "source-map": "^0.6.1" } }, "source-map": { "version": "0.6.1", "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" - }, - "supports-color": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", - "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", - "requires": { - "has-flag": "^3.0.0" - } } } }, @@ -28035,27 +24532,18 @@ }, "dependencies": { "postcss": { - "version": "7.0.36", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.36.tgz", - "integrity": "sha512-BebJSIUMwJHRH0HAQoxN4u1CN86glsrwsW0q7T+/m44eXOUAxSNdHRkNZPYz5vVUbg17hFgOQDE7fZk7li3pZw==", + "version": "7.0.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", "requires": { - "chalk": "^2.4.2", - "source-map": "^0.6.1", - "supports-color": "^6.1.0" + "picocolors": "^0.2.1", + "source-map": "^0.6.1" } }, "source-map": { "version": "0.6.1", "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" - }, - "supports-color": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", - "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", - "requires": { - "has-flag": "^3.0.0" - } } } }, @@ -28068,27 +24556,18 @@ }, "dependencies": { "postcss": { - "version": "7.0.36", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.36.tgz", - "integrity": "sha512-BebJSIUMwJHRH0HAQoxN4u1CN86glsrwsW0q7T+/m44eXOUAxSNdHRkNZPYz5vVUbg17hFgOQDE7fZk7li3pZw==", + "version": "7.0.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", "requires": { - "chalk": "^2.4.2", - "source-map": "^0.6.1", - "supports-color": "^6.1.0" + "picocolors": "^0.2.1", + "source-map": "^0.6.1" } }, "source-map": { "version": "0.6.1", "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" - }, - "supports-color": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", - "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", - "requires": { - "has-flag": "^3.0.0" - } } } }, @@ -28101,27 +24580,18 @@ }, "dependencies": { "postcss": { - "version": "7.0.36", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.36.tgz", - "integrity": "sha512-BebJSIUMwJHRH0HAQoxN4u1CN86glsrwsW0q7T+/m44eXOUAxSNdHRkNZPYz5vVUbg17hFgOQDE7fZk7li3pZw==", + "version": "7.0.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", "requires": { - "chalk": "^2.4.2", - "source-map": "^0.6.1", - "supports-color": "^6.1.0" + "picocolors": "^0.2.1", + "source-map": "^0.6.1" } }, "source-map": { "version": "0.6.1", "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" - }, - "supports-color": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", - "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", - "requires": { - "has-flag": "^3.0.0" - } } } }, @@ -28137,13 +24607,12 @@ }, "dependencies": { "postcss": { - "version": "7.0.36", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.36.tgz", - "integrity": "sha512-BebJSIUMwJHRH0HAQoxN4u1CN86glsrwsW0q7T+/m44eXOUAxSNdHRkNZPYz5vVUbg17hFgOQDE7fZk7li3pZw==", + "version": "7.0.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", "requires": { - "chalk": "^2.4.2", - "source-map": "^0.6.1", - "supports-color": "^6.1.0" + "picocolors": "^0.2.1", + "source-map": "^0.6.1" } }, "postcss-value-parser": { @@ -28155,14 +24624,6 @@ "version": "0.6.1", "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" - }, - "supports-color": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", - "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", - "requires": { - "has-flag": "^3.0.0" - } } } }, @@ -28180,13 +24641,12 @@ }, "dependencies": { "postcss": { - "version": "7.0.36", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.36.tgz", - "integrity": "sha512-BebJSIUMwJHRH0HAQoxN4u1CN86glsrwsW0q7T+/m44eXOUAxSNdHRkNZPYz5vVUbg17hFgOQDE7fZk7li3pZw==", + "version": "7.0.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", "requires": { - "chalk": "^2.4.2", - "source-map": "^0.6.1", - "supports-color": "^6.1.0" + "picocolors": "^0.2.1", + "source-map": "^0.6.1" } }, "postcss-selector-parser": { @@ -28203,14 +24663,6 @@ "version": "0.6.1", "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" - }, - "supports-color": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", - "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", - "requires": { - "has-flag": "^3.0.0" - } } } }, @@ -28224,13 +24676,12 @@ }, "dependencies": { "postcss": { - "version": "7.0.36", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.36.tgz", - "integrity": "sha512-BebJSIUMwJHRH0HAQoxN4u1CN86glsrwsW0q7T+/m44eXOUAxSNdHRkNZPYz5vVUbg17hFgOQDE7fZk7li3pZw==", + "version": "7.0.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", "requires": { - "chalk": "^2.4.2", - "source-map": "^0.6.1", - "supports-color": "^6.1.0" + "picocolors": "^0.2.1", + "source-map": "^0.6.1" } }, "postcss-value-parser": { @@ -28242,14 +24693,6 @@ "version": "0.6.1", "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" - }, - "supports-color": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", - "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", - "requires": { - "has-flag": "^3.0.0" - } } } }, @@ -28265,13 +24708,12 @@ }, "dependencies": { "postcss": { - "version": "7.0.36", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.36.tgz", - "integrity": "sha512-BebJSIUMwJHRH0HAQoxN4u1CN86glsrwsW0q7T+/m44eXOUAxSNdHRkNZPYz5vVUbg17hFgOQDE7fZk7li3pZw==", + "version": "7.0.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", "requires": { - "chalk": "^2.4.2", - "source-map": "^0.6.1", - "supports-color": "^6.1.0" + "picocolors": "^0.2.1", + "source-map": "^0.6.1" } }, "postcss-value-parser": { @@ -28283,14 +24725,6 @@ "version": "0.6.1", "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" - }, - "supports-color": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", - "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", - "requires": { - "has-flag": "^3.0.0" - } } } }, @@ -28308,13 +24742,12 @@ }, "dependencies": { "postcss": { - "version": "7.0.36", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.36.tgz", - "integrity": "sha512-BebJSIUMwJHRH0HAQoxN4u1CN86glsrwsW0q7T+/m44eXOUAxSNdHRkNZPYz5vVUbg17hFgOQDE7fZk7li3pZw==", + "version": "7.0.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", "requires": { - "chalk": "^2.4.2", - "source-map": "^0.6.1", - "supports-color": "^6.1.0" + "picocolors": "^0.2.1", + "source-map": "^0.6.1" } }, "postcss-value-parser": { @@ -28326,14 +24759,6 @@ "version": "0.6.1", "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" - }, - "supports-color": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", - "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", - "requires": { - "has-flag": "^3.0.0" - } } } }, @@ -28349,13 +24774,12 @@ }, "dependencies": { "postcss": { - "version": "7.0.36", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.36.tgz", - "integrity": "sha512-BebJSIUMwJHRH0HAQoxN4u1CN86glsrwsW0q7T+/m44eXOUAxSNdHRkNZPYz5vVUbg17hFgOQDE7fZk7li3pZw==", + "version": "7.0.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", "requires": { - "chalk": "^2.4.2", - "source-map": "^0.6.1", - "supports-color": "^6.1.0" + "picocolors": "^0.2.1", + "source-map": "^0.6.1" } }, "postcss-selector-parser": { @@ -28372,14 +24796,6 @@ "version": "0.6.1", "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" - }, - "supports-color": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", - "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", - "requires": { - "has-flag": "^3.0.0" - } } } }, @@ -28495,27 +24911,18 @@ }, "dependencies": { "postcss": { - "version": "7.0.36", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.36.tgz", - "integrity": "sha512-BebJSIUMwJHRH0HAQoxN4u1CN86glsrwsW0q7T+/m44eXOUAxSNdHRkNZPYz5vVUbg17hFgOQDE7fZk7li3pZw==", + "version": "7.0.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", "requires": { - "chalk": "^2.4.2", - "source-map": "^0.6.1", - "supports-color": "^6.1.0" + "picocolors": "^0.2.1", + "source-map": "^0.6.1" } }, "source-map": { "version": "0.6.1", "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" - }, - "supports-color": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", - "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", - "requires": { - "has-flag": "^3.0.0" - } } } }, @@ -28530,13 +24937,12 @@ }, "dependencies": { "postcss": { - "version": "7.0.36", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.36.tgz", - "integrity": "sha512-BebJSIUMwJHRH0HAQoxN4u1CN86glsrwsW0q7T+/m44eXOUAxSNdHRkNZPYz5vVUbg17hFgOQDE7fZk7li3pZw==", + "version": "7.0.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", "requires": { - "chalk": "^2.4.2", - "source-map": "^0.6.1", - "supports-color": "^6.1.0" + "picocolors": "^0.2.1", + "source-map": "^0.6.1" } }, "postcss-value-parser": { @@ -28548,14 +24954,6 @@ "version": "0.6.1", "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" - }, - "supports-color": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", - "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", - "requires": { - "has-flag": "^3.0.0" - } } } }, @@ -28571,13 +24969,12 @@ }, "dependencies": { "postcss": { - "version": "7.0.36", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.36.tgz", - "integrity": "sha512-BebJSIUMwJHRH0HAQoxN4u1CN86glsrwsW0q7T+/m44eXOUAxSNdHRkNZPYz5vVUbg17hFgOQDE7fZk7li3pZw==", + "version": "7.0.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", "requires": { - "chalk": "^2.4.2", - "source-map": "^0.6.1", - "supports-color": "^6.1.0" + "picocolors": "^0.2.1", + "source-map": "^0.6.1" } }, "postcss-value-parser": { @@ -28589,14 +24986,6 @@ "version": "0.6.1", "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" - }, - "supports-color": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", - "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", - "requires": { - "has-flag": "^3.0.0" - } } } }, @@ -28612,13 +25001,12 @@ }, "dependencies": { "postcss": { - "version": "7.0.36", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.36.tgz", - "integrity": "sha512-BebJSIUMwJHRH0HAQoxN4u1CN86glsrwsW0q7T+/m44eXOUAxSNdHRkNZPYz5vVUbg17hFgOQDE7fZk7li3pZw==", + "version": "7.0.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", "requires": { - "chalk": "^2.4.2", - "source-map": "^0.6.1", - "supports-color": "^6.1.0" + "picocolors": "^0.2.1", + "source-map": "^0.6.1" } }, "postcss-value-parser": { @@ -28630,14 +25018,6 @@ "version": "0.6.1", "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" - }, - "supports-color": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", - "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", - "requires": { - "has-flag": "^3.0.0" - } } } }, @@ -28652,13 +25032,12 @@ }, "dependencies": { "postcss": { - "version": "7.0.36", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.36.tgz", - "integrity": "sha512-BebJSIUMwJHRH0HAQoxN4u1CN86glsrwsW0q7T+/m44eXOUAxSNdHRkNZPYz5vVUbg17hFgOQDE7fZk7li3pZw==", + "version": "7.0.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", "requires": { - "chalk": "^2.4.2", - "source-map": "^0.6.1", - "supports-color": "^6.1.0" + "picocolors": "^0.2.1", + "source-map": "^0.6.1" } }, "postcss-value-parser": { @@ -28670,14 +25049,6 @@ "version": "0.6.1", "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" - }, - "supports-color": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", - "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", - "requires": { - "has-flag": "^3.0.0" - } } } }, @@ -28692,13 +25063,12 @@ }, "dependencies": { "postcss": { - "version": "7.0.36", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.36.tgz", - "integrity": "sha512-BebJSIUMwJHRH0HAQoxN4u1CN86glsrwsW0q7T+/m44eXOUAxSNdHRkNZPYz5vVUbg17hFgOQDE7fZk7li3pZw==", + "version": "7.0.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", "requires": { - "chalk": "^2.4.2", - "source-map": "^0.6.1", - "supports-color": "^6.1.0" + "picocolors": "^0.2.1", + "source-map": "^0.6.1" } }, "postcss-value-parser": { @@ -28710,14 +25080,6 @@ "version": "0.6.1", "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" - }, - "supports-color": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", - "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", - "requires": { - "has-flag": "^3.0.0" - } } } }, @@ -28732,13 +25094,12 @@ }, "dependencies": { "postcss": { - "version": "7.0.36", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.36.tgz", - "integrity": "sha512-BebJSIUMwJHRH0HAQoxN4u1CN86glsrwsW0q7T+/m44eXOUAxSNdHRkNZPYz5vVUbg17hFgOQDE7fZk7li3pZw==", + "version": "7.0.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", "requires": { - "chalk": "^2.4.2", - "source-map": "^0.6.1", - "supports-color": "^6.1.0" + "picocolors": "^0.2.1", + "source-map": "^0.6.1" } }, "postcss-value-parser": { @@ -28750,14 +25111,6 @@ "version": "0.6.1", "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" - }, - "supports-color": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", - "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", - "requires": { - "has-flag": "^3.0.0" - } } } }, @@ -28773,13 +25126,12 @@ }, "dependencies": { "postcss": { - "version": "7.0.36", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.36.tgz", - "integrity": "sha512-BebJSIUMwJHRH0HAQoxN4u1CN86glsrwsW0q7T+/m44eXOUAxSNdHRkNZPYz5vVUbg17hFgOQDE7fZk7li3pZw==", + "version": "7.0.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", "requires": { - "chalk": "^2.4.2", - "source-map": "^0.6.1", - "supports-color": "^6.1.0" + "picocolors": "^0.2.1", + "source-map": "^0.6.1" } }, "postcss-value-parser": { @@ -28791,14 +25143,6 @@ "version": "0.6.1", "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" - }, - "supports-color": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", - "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", - "requires": { - "has-flag": "^3.0.0" - } } } }, @@ -28812,13 +25156,12 @@ }, "dependencies": { "postcss": { - "version": "7.0.36", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.36.tgz", - "integrity": "sha512-BebJSIUMwJHRH0HAQoxN4u1CN86glsrwsW0q7T+/m44eXOUAxSNdHRkNZPYz5vVUbg17hFgOQDE7fZk7li3pZw==", + "version": "7.0.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", "requires": { - "chalk": "^2.4.2", - "source-map": "^0.6.1", - "supports-color": "^6.1.0" + "picocolors": "^0.2.1", + "source-map": "^0.6.1" } }, "postcss-value-parser": { @@ -28830,14 +25173,6 @@ "version": "0.6.1", "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" - }, - "supports-color": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", - "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", - "requires": { - "has-flag": "^3.0.0" - } } } }, @@ -28852,13 +25187,12 @@ }, "dependencies": { "postcss": { - "version": "7.0.36", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.36.tgz", - "integrity": "sha512-BebJSIUMwJHRH0HAQoxN4u1CN86glsrwsW0q7T+/m44eXOUAxSNdHRkNZPYz5vVUbg17hFgOQDE7fZk7li3pZw==", + "version": "7.0.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", "requires": { - "chalk": "^2.4.2", - "source-map": "^0.6.1", - "supports-color": "^6.1.0" + "picocolors": "^0.2.1", + "source-map": "^0.6.1" } }, "postcss-value-parser": { @@ -28870,14 +25204,6 @@ "version": "0.6.1", "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" - }, - "supports-color": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", - "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", - "requires": { - "has-flag": "^3.0.0" - } } } }, @@ -28893,27 +25219,18 @@ }, "dependencies": { "postcss": { - "version": "7.0.36", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.36.tgz", - "integrity": "sha512-BebJSIUMwJHRH0HAQoxN4u1CN86glsrwsW0q7T+/m44eXOUAxSNdHRkNZPYz5vVUbg17hFgOQDE7fZk7li3pZw==", + "version": "7.0.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", "requires": { - "chalk": "^2.4.2", - "source-map": "^0.6.1", - "supports-color": "^6.1.0" + "picocolors": "^0.2.1", + "source-map": "^0.6.1" } }, "source-map": { "version": "0.6.1", "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" - }, - "supports-color": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", - "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", - "requires": { - "has-flag": "^3.0.0" - } } } }, @@ -28929,13 +25246,12 @@ }, "dependencies": { "postcss": { - "version": "7.0.36", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.36.tgz", - "integrity": "sha512-BebJSIUMwJHRH0HAQoxN4u1CN86glsrwsW0q7T+/m44eXOUAxSNdHRkNZPYz5vVUbg17hFgOQDE7fZk7li3pZw==", + "version": "7.0.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", "requires": { - "chalk": "^2.4.2", - "source-map": "^0.6.1", - "supports-color": "^6.1.0" + "picocolors": "^0.2.1", + "source-map": "^0.6.1" } }, "postcss-value-parser": { @@ -28947,14 +25263,6 @@ "version": "0.6.1", "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" - }, - "supports-color": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", - "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", - "requires": { - "has-flag": "^3.0.0" - } } } }, @@ -28978,13 +25286,12 @@ }, "dependencies": { "postcss": { - "version": "7.0.36", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.36.tgz", - "integrity": "sha512-BebJSIUMwJHRH0HAQoxN4u1CN86glsrwsW0q7T+/m44eXOUAxSNdHRkNZPYz5vVUbg17hFgOQDE7fZk7li3pZw==", + "version": "7.0.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", "requires": { - "chalk": "^2.4.2", - "source-map": "^0.6.1", - "supports-color": "^6.1.0" + "picocolors": "^0.2.1", + "source-map": "^0.6.1" } }, "postcss-value-parser": { @@ -28996,14 +25303,6 @@ "version": "0.6.1", "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" - }, - "supports-color": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", - "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", - "requires": { - "has-flag": "^3.0.0" - } } } }, @@ -29018,27 +25317,18 @@ }, "dependencies": { "postcss": { - "version": "7.0.36", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.36.tgz", - "integrity": "sha512-BebJSIUMwJHRH0HAQoxN4u1CN86glsrwsW0q7T+/m44eXOUAxSNdHRkNZPYz5vVUbg17hFgOQDE7fZk7li3pZw==", + "version": "7.0.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", "requires": { - "chalk": "^2.4.2", - "source-map": "^0.6.1", - "supports-color": "^6.1.0" + "picocolors": "^0.2.1", + "source-map": "^0.6.1" } }, "source-map": { "version": "0.6.1", "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" - }, - "supports-color": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", - "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", - "requires": { - "has-flag": "^3.0.0" - } } } }, @@ -29176,9 +25466,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", @@ -29213,6 +25503,47 @@ "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz", "integrity": "sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==" }, + "purgecss": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/purgecss/-/purgecss-2.3.0.tgz", + "integrity": "sha512-BE5CROfVGsx2XIhxGuZAT7rTH9lLeQx/6M0P7DTXQH4IUc3BBzs9JUzt4yzGf3JrH9enkeq6YJBe9CTtkm1WmQ==", + "requires": { + "commander": "^5.0.0", + "glob": "^7.0.0", + "postcss": "7.0.32", + "postcss-selector-parser": "^6.0.2" + }, + "dependencies": { + "commander": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-5.1.0.tgz", + "integrity": "sha512-P0CysNDQ7rtVw4QIQtm+MRxV66vKFSvlsQvGYXZWR3qFU0jlMKHZZZgw8e+8DSah4UDKMqnknRDQz+xuQXQ/Zg==" + }, + "postcss": { + "version": "7.0.32", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.32.tgz", + "integrity": "sha512-03eXong5NLnNCD05xscnGKGDZ98CyzoqPSMjOe6SuoQY7Z2hIj0Ld1g/O/UQRuOle2aRtiIRDg9tDcTGAkLfKw==", + "requires": { + "chalk": "^2.4.2", + "source-map": "^0.6.1", + "supports-color": "^6.1.0" + } + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" + }, + "supports-color": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", + "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", + "requires": { + "has-flag": "^3.0.0" + } + } + } + }, "q": { "version": "1.5.1", "resolved": "https://registry.npmjs.org/q/-/q-1.5.1.tgz", @@ -29648,9 +25979,9 @@ } }, "robust-orientation": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/robust-orientation/-/robust-orientation-1.1.3.tgz", - "integrity": "sha1-2v9bANO+TmByLw6cAVbvln8cIEk=", + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/robust-orientation/-/robust-orientation-1.2.1.tgz", + "integrity": "sha512-FuTptgKwY6iNuU15nrIJDLjXzCChWB+T4AvksRtwPS/WZ3HuP1CElCm1t+OBfgQKfWbtZIawip+61k7+buRKAg==", "requires": { "robust-scale": "^1.0.2", "robust-subtract": "^1.0.0", @@ -29713,6 +26044,11 @@ } } }, + "safari-14-idb-fix": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/safari-14-idb-fix/-/safari-14-idb-fix-3.0.0.tgz", + "integrity": "sha512-eBNFLob4PMq8JA1dGyFn6G97q3/WzNtFK4RnzT1fnLq+9RyrGknzYiM/9B12MnKAxuj1IXr7UKYtTNtjyKMBog==" + }, "safe-buffer": { "version": "5.2.1", "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", @@ -29959,15 +26295,10 @@ "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz", "integrity": "sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM=" }, - "shell-quote": { - "version": "1.7.2", - "resolved": "https://registry.npmjs.org/shell-quote/-/shell-quote-1.7.2.tgz", - "integrity": "sha512-mRz/m/JVscCrkMyPqHc/bczi3OQHkLTqXHEFu0zDhK/qfv3UcOA4SVmRCLmos4bhjr9ekVQubj/R7waKapmiQg==" - }, - "sigmund": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/sigmund/-/sigmund-1.0.1.tgz", - "integrity": "sha1-P/IfGYytIXX587eBhT/ZTQ0ZtZA=" + "shelljs": { + "version": "0.2.6", + "resolved": "https://registry.npmjs.org/shelljs/-/shelljs-0.2.6.tgz", + "integrity": "sha1-kEktcv/MgVmXa6umL7D2iE8MM3g=" }, "signal-exit": { "version": "3.0.3", @@ -29981,9 +26312,9 @@ "dev": true }, "simple-get": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/simple-get/-/simple-get-3.1.0.tgz", - "integrity": "sha512-bCR6cP+aTdScaQCnQKbPKtJOKDp/hj9EDLJo3Nw4y1QksqaovlW/bnptB6/c1e+qmNIDHRK+oXFDdEqBT8WzUA==", + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/simple-get/-/simple-get-3.1.1.tgz", + "integrity": "sha512-CQ5LTKGfCpvE1K0n2us+kuMPbk/q0EKl82s4aheV9oXjFEz6W/Y7oQFVJuU6QG77hRT4Ghb5RURteF5vnWjupA==", "dev": true, "requires": { "decompress-response": "^4.2.0", @@ -30175,6 +26506,7 @@ "version": "3.1.1", "resolved": "https://registry.npmjs.org/spdx-correct/-/spdx-correct-3.1.1.tgz", "integrity": "sha512-cOYcUWwhCuHCXi49RhFRCyJEK3iPj1Ziz9DpViV3tbZOwXD49QzIN3MpOLJNxh2qwq2lJJZaKMVw9qNi4jTC0w==", + "dev": true, "requires": { "spdx-expression-parse": "^3.0.0", "spdx-license-ids": "^3.0.0" @@ -30183,12 +26515,14 @@ "spdx-exceptions": { "version": "2.3.0", "resolved": "https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.3.0.tgz", - "integrity": "sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A==" + "integrity": "sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A==", + "dev": true }, "spdx-expression-parse": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz", "integrity": "sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==", + "dev": true, "requires": { "spdx-exceptions": "^2.1.0", "spdx-license-ids": "^3.0.0" @@ -30197,7 +26531,13 @@ "spdx-license-ids": { "version": "3.0.7", "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.7.tgz", - "integrity": "sha512-U+MTEOO0AiDzxwFvoa4JVnMV6mZlJKk2sBLt90s7G0Gd0Mlknc7kxEn3nuDPNZRta7O2uy8oLcZLVT+4sqNZHQ==" + "integrity": "sha512-U+MTEOO0AiDzxwFvoa4JVnMV6mZlJKk2sBLt90s7G0Gd0Mlknc7kxEn3nuDPNZRta7O2uy8oLcZLVT+4sqNZHQ==", + "dev": true + }, + "splaytree": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/splaytree/-/splaytree-3.1.0.tgz", + "integrity": "sha512-gvUGR7xnOy0fLKTCxDeUZYgU/I1Tdf8M/lM1Qrf8L2TIOR5ipZjGk02uYcdv0o2x7WjVRgpm3iS2clLyuVAt0Q==" }, "split": { "version": "0.2.10", @@ -30417,16 +26757,6 @@ } } }, - "string.prototype.padend": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/string.prototype.padend/-/string.prototype.padend-3.1.2.tgz", - "integrity": "sha512-/AQFLdYvePENU3W5rgurfWSMU6n+Ww8n/3cUt7E+vPBB/D7YDG8x+qjoFs4M/alR2bW7Qg6xMjVwWUOvuQ0XpQ==", - "requires": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.3", - "es-abstract": "^1.18.0-next.2" - } - }, "string.prototype.trimend": { "version": "1.0.4", "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.4.tgz", @@ -30488,13 +26818,12 @@ }, "dependencies": { "postcss": { - "version": "7.0.36", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.36.tgz", - "integrity": "sha512-BebJSIUMwJHRH0HAQoxN4u1CN86glsrwsW0q7T+/m44eXOUAxSNdHRkNZPYz5vVUbg17hFgOQDE7fZk7li3pZw==", + "version": "7.0.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", "requires": { - "chalk": "^2.4.2", - "source-map": "^0.6.1", - "supports-color": "^6.1.0" + "picocolors": "^0.2.1", + "source-map": "^0.6.1" } }, "postcss-selector-parser": { @@ -30511,14 +26840,6 @@ "version": "0.6.1", "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" - }, - "supports-color": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", - "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", - "requires": { - "has-flag": "^3.0.0" - } } } }, @@ -30541,6 +26862,24 @@ "integrity": "sha512-TAAvLNSE3fEhyl/Da19JWfMAdhSXTYeviXsLSoDT1UM76ADj5ndwAPX1FKQEgB/gFMPavOy6tOqfalXKUiXrow==", "optional": true }, + "svg-resizer": { + "version": "git+ssh://git@github.com/vieron/svg-resizer.git#00968cb3e7248533ab9451ce7dffa8af288e4f4a", + "from": "svg-resizer@github:vieron/svg-resizer", + "requires": { + "fs-extra": "~0.8.1", + "lodash": "~2.4.1", + "nomnom": "~1.6.2", + "shelljs": "~0.2.6", + "xml2js": "~0.4.2" + }, + "dependencies": { + "lodash": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/lodash/-/lodash-2.4.2.tgz", + "integrity": "sha1-+t2DS5aDBz2hebPq5tnA0VBT9z4=" + } + } + }, "svgo": { "version": "1.3.2", "resolved": "https://registry.npmjs.org/svgo/-/svgo-1.3.2.tgz", @@ -30908,11 +27247,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", @@ -30964,16 +27298,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": { @@ -30981,45 +27305,33 @@ "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.0.tgz", "integrity": "sha512-yaOH/Pk/VEhBWWTlhI+qXxDFXlejDGcQipMlyxda9nthulaxLZUNcUqFxokp0vcYnvteJln5FNQDRrxj3YcbVw==" }, - "topojson": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/topojson/-/topojson-3.0.2.tgz", - "integrity": "sha512-u3zeuL6WEVL0dmsRn7uHZKc4Ao4gpW3sORUv+N3ezLTvY3JdCuyg0hvpWiIfFw8p/JwVN++SvAsFgcFEeR15rQ==", + "topojson-client": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/topojson-client/-/topojson-client-3.1.0.tgz", + "integrity": "sha512-605uxS6bcYxGXw9qi62XyrV6Q3xwbndjachmNxu8HWTtVPxZfEJN9fd/SZS1Q54Sn2y0TMyMxFj/cJINqGHrKw==", "requires": { - "topojson-client": "3.0.0", - "topojson-server": "3.0.0", - "topojson-simplify": "3.0.2" + "commander": "2" + }, + "dependencies": { + "commander": { + "version": "2.20.3", + "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", + "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==" + } + } + }, + "topojson-server": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/topojson-server/-/topojson-server-3.0.1.tgz", + "integrity": "sha512-/VS9j/ffKr2XAOjlZ9CgyyeLmgJ9dMwq6Y0YEON8O7p/tGGk+dCWnrE03zEdu7i4L7YsFZLEPZPzCvcB7lEEXw==", + "requires": { + "commander": "2" }, "dependencies": { "commander": { "version": "2.20.3", "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==" - }, - "topojson-client": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/topojson-client/-/topojson-client-3.0.0.tgz", - "integrity": "sha1-H5kpOnfvQqRI0DKoGqmCtz82DS8=", - "requires": { - "commander": "2" - } - }, - "topojson-server": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/topojson-server/-/topojson-server-3.0.0.tgz", - "integrity": "sha1-N4546Hw5cqe1vixdYENptrrmnF4=", - "requires": { - "commander": "2" - } - }, - "topojson-simplify": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/topojson-simplify/-/topojson-simplify-3.0.2.tgz", - "integrity": "sha512-gyYSVRt4jO/0RJXKZQPzTDQRWV+D/nOfiljNUv0HBXslFLtq3yxRHrl7jbrjdbda5Ytdr7M8BZUI4OxU7tnbRQ==", - "requires": { - "commander": "2", - "topojson-client": "3" - } } } }, @@ -31094,6 +27406,7 @@ "version": "9.1.1", "resolved": "https://registry.npmjs.org/ts-node/-/ts-node-9.1.1.tgz", "integrity": "sha512-hPlt7ZACERQGf03M253ytLY3dHbGNGrAq9qIHWUY9XHYl1z7wYngSr3OQ5xmui8o2AaxsONxIzjafLUiWBo1Fg==", + "devOptional": true, "requires": { "arg": "^4.1.0", "create-require": "^1.1.0", @@ -31282,14 +27595,6 @@ "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==" }, - "mkdirp": { - "version": "0.5.5", - "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.5.tgz", - "integrity": "sha512-NKmAlESf6jMGym1++R0Ra7wvhV+wFW63FaSOFPwRahvea0gMUcGUhVeAg/0BC0wiv9ih5NYPB1Wn1UEI1/L+xQ==", - "requires": { - "minimist": "^1.2.5" - } - }, "semver": { "version": "5.7.1", "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", @@ -31325,6 +27630,59 @@ "safe-buffer": "^5.0.1" } }, + "turf": { + "version": "3.0.14", + "resolved": "https://registry.npmjs.org/turf/-/turf-3.0.14.tgz", + "integrity": "sha1-6y9KgKLVg7jGSGvHtccZBGaGbCc=", + "requires": { + "turf-along": "^3.0.12", + "turf-area": "^3.0.12", + "turf-bbox": "^3.0.12", + "turf-bbox-polygon": "^3.0.12", + "turf-bearing": "^3.0.12", + "turf-bezier": "^3.0.12", + "turf-buffer": "^3.0.12", + "turf-center": "^3.0.12", + "turf-centroid": "^3.0.12", + "turf-circle": "^3.0.12", + "turf-collect": "^3.0.12", + "turf-combine": "^3.0.12", + "turf-concave": "^3.0.12", + "turf-convex": "^3.0.12", + "turf-destination": "^3.0.12", + "turf-difference": "^3.0.12", + "turf-distance": "^3.0.12", + "turf-envelope": "^3.0.12", + "turf-explode": "^3.0.12", + "turf-flip": "^3.0.12", + "turf-helpers": "^3.0.12", + "turf-hex-grid": "^3.0.12", + "turf-inside": "^3.0.12", + "turf-intersect": "^3.0.12", + "turf-isolines": "^3.0.12", + "turf-kinks": "^3.0.12", + "turf-line-distance": "^3.0.12", + "turf-line-slice": "^3.0.12", + "turf-meta": "^3.0.12", + "turf-midpoint": "^3.0.12", + "turf-nearest": "^3.0.12", + "turf-planepoint": "^3.0.12", + "turf-point-grid": "^3.0.12", + "turf-point-on-line": "^3.0.12", + "turf-point-on-surface": "^3.0.12", + "turf-random": "^3.0.12", + "turf-sample": "^3.0.12", + "turf-simplify": "^3.0.12", + "turf-square": "^3.0.12", + "turf-square-grid": "^3.0.12", + "turf-tag": "^3.0.12", + "turf-tesselate": "^3.0.12", + "turf-tin": "^3.0.12", + "turf-triangle-grid": "^3.0.12", + "turf-union": "^3.0.12", + "turf-within": "^3.0.12" + } + }, "turf-along": { "version": "3.0.12", "resolved": "https://registry.npmjs.org/turf-along/-/turf-along-3.0.12.tgz", @@ -31870,13 +28228,12 @@ "integrity": "sha512-opmNIX7uFnS96NtPmhWQgQx6/NYFgsUXYMllcfzwWKUMwfo8kku1TvE6hkNcH+Q1ts5cMVrsY7j0bxXQDciu9Q==" }, "postcss": { - "version": "7.0.36", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.36.tgz", - "integrity": "sha512-BebJSIUMwJHRH0HAQoxN4u1CN86glsrwsW0q7T+/m44eXOUAxSNdHRkNZPYz5vVUbg17hFgOQDE7fZk7li3pZw==", + "version": "7.0.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", "requires": { - "chalk": "^2.4.2", - "source-map": "^0.6.1", - "supports-color": "^6.1.0" + "picocolors": "^0.2.1", + "source-map": "^0.6.1" } }, "postcss-selector-parser": { @@ -31893,14 +28250,6 @@ "version": "0.6.1", "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==" - }, - "supports-color": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", - "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", - "requires": { - "has-flag": "^3.0.0" - } } } }, @@ -32104,6 +28453,7 @@ "version": "3.0.4", "resolved": "https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz", "integrity": "sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==", + "dev": true, "requires": { "spdx-correct": "^3.0.0", "spdx-expression-parse": "^3.0.0" @@ -32345,27 +28695,32 @@ } }, "ws": { - "version": "5.2.2", - "resolved": "https://registry.npmjs.org/ws/-/ws-5.2.2.tgz", - "integrity": "sha512-jaHFD6PFv6UgoIVda6qZllptQsMlDEJkTQcybzzXDYM1XO9Y8em691FGMPmM46WGyLU4z9KMgQN+qrux/nhlHA==", + "version": "5.2.3", + "resolved": "https://registry.npmjs.org/ws/-/ws-5.2.3.tgz", + "integrity": "sha512-jZArVERrMsKUatIdnLzqvcfydI85dvd/Fp1u/VOpfdDWQ4c9qWXe+VIeAbQ5FrDwciAkr+lzofXLz3Kuf26AOA==", "requires": { "async-limiter": "~1.0.0" } }, - "xdiff": { - "version": "0.2.11", - "resolved": "https://registry.npmjs.org/xdiff/-/xdiff-0.2.11.tgz", - "integrity": "sha1-cj1SPhtvJlojPK/HeGBiLqXS2Mg=", - "dev": true, - "requires": { - "adiff": "~0.2.4" - } - }, "xml-name-validator": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/xml-name-validator/-/xml-name-validator-3.0.0.tgz", "integrity": "sha512-A5CUptxDsvxKJEU3yO6DuWBSJz/qizqzJKOMIfUJHETbBw/sFaDxgd6fxm1ewUaM0jZ444Fc5vC5ROYurg/4Pw==" }, + "xml2js": { + "version": "0.4.23", + "resolved": "https://registry.npmjs.org/xml2js/-/xml2js-0.4.23.tgz", + "integrity": "sha512-ySPiMjM0+pLDftHgXY4By0uswI3SPKLDw/i3UXbnO8M/p28zqexCUoPmQFrYD+/1BzhGJSs2i1ERWKJAtiLrug==", + "requires": { + "sax": ">=0.6.0", + "xmlbuilder": "~11.0.0" + } + }, + "xmlbuilder": { + "version": "11.0.1", + "resolved": "https://registry.npmjs.org/xmlbuilder/-/xmlbuilder-11.0.1.tgz", + "integrity": "sha512-fDlsI/kFEx7gLvbecc0/ohLG50fugQp8ryHzMTuW9vSa1GJ0XYWKnhsUx7oie3G98+r56aTQIUB4kht42R3JvA==" + }, "xmlchars": { "version": "2.2.0", "resolved": "https://registry.npmjs.org/xmlchars/-/xmlchars-2.2.0.tgz", @@ -32456,7 +28811,8 @@ "yn": { "version": "3.1.1", "resolved": "https://registry.npmjs.org/yn/-/yn-3.1.1.tgz", - "integrity": "sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q==" + "integrity": "sha512-Ux4ygGWsu2c7isFWe8Yu1YluJmqVhxqK2cLXNQA5AcC3QfbGNpM7fu0Y8b/z16pXLnFxZYvWhd3fhBY9DLmC6Q==", + "devOptional": true } } } diff --git a/package.json b/package.json index eae06c77e8..72af828ffa 100644 --- a/package.json +++ b/package.json @@ -7,48 +7,42 @@ "homepage": "https://mapcomplete.osm.be", "main": "index.js", "scripts": { - "increase-memory": "export NODE_OPTIONS=--max_old_space_size=8364", - "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=8000 $(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:tailwindcli": "tailwindcss -i index.css -o css/index-tailwind-output.css --watch", + "start": "npm run generate:layeroverview && npm run ", + "strt": "export NODE_OPTIONS=--max_old_space_size=8364 && 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/*/*.ttf assets/themes/*/*/*.ttf aassets/themes/*/*.otf assets/themes/*/*/*.otf ssets/themes/*/*.css assets/themes/*/*.jpg assets/themes/*/*.png vendor/* vendor/*/*", + "strttest": "export NODE_OPTIONS=--max_old_space_size=8364 && parcel serve test.html", + "watch:css": "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 -c 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 ../pietervdvn.github.io/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 ../pietervdvn.github.io/speelplekken_cache/ 51.20 4.35 51.09 4.56", - "generate:cache:natuurpunt": "npm run generate:layeroverview && ts-node scripts/generateCache.ts natuurpunt 12 ../pietervdvn.github.io/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: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:cache:natuurpunt:mini": "ts-node scripts/generateCache.ts natuurpunt 12 ../../git/MapComplete-data/natuurpunt_cache_mini/ 51.00792239979105 4.497699737548828 51.0353492224462554 4.539070129394531 --generate-point-overview nature_reserve,visitor_information_centre", + "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:contributor-list": "ts-node scripts/generateContributors.ts", "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/*/*", + "reset:layeroverview": "echo {\\\"layers\\\":[], \\\"themes\\\":[]} > ./assets/generated/known_layers_and_themes.json && echo {\\\"layers\\\": []} > ./assets/generated/known_layers.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 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\\).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" + "clean": "rm -rf .cache/ && (find *.html | grep -v \"\\(404\\|index\\|land\\|test\\|preferences\\|customGenerator\\|professional\\|automaton\\|import_helper\\|import_viewer\\|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" }, "keywords": [ "OpenStreetMap", @@ -58,46 +52,49 @@ "license": "GPL", "dependencies": { "@babel/preset-env": "7.13.8", - "@turf/buffer": "^6.3.0", - "@turf/collect": "^6.3.0", - "@turf/distance": "^6.3.0", - "@turf/length": "^6.3.0", - "@turf/turf": "^6.3.0", + "@turf/buffer": "^6.5.0", + "@turf/collect": "^6.5.0", + "@turf/distance": "^6.5.0", + "@turf/length": "^6.5.0", + "@turf/turf": "^6.5.0", "@types/jquery": "^3.5.5", "@types/leaflet-markercluster": "^1.0.3", "@types/leaflet-providers": "^1.2.0", - "@types/leaflet.markercluster": "^1.4.3", "@types/lz-string": "^1.3.34", + "@types/papaparse": "^5.3.1", "@types/prompt-sync": "^4.1.0", "@types/wikidata-sdk": "^6.1.0", + "@types/xml2js": "^0.4.9", "country-language": "^0.1.7", "email-validator": "^2.0.4", "escape-html": "^1.0.3", "i18next-client": "^1.11.4", + "idb-keyval": "^6.0.3", "jquery": "^3.6.0", "jspdf": "^2.3.1", - "latlon2country": "^1.1.3", + "latlon2country": "^1.2.6", "leaflet": "^1.7.1", "leaflet-polylineoffset": "^1.1.1", "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", "moment": "^2.29.0", - "npm-run-all": "^4.1.5", "opening_hours": "^3.6.0", "osm-auth": "^1.0.2", "osmtogeojson": "^3.0.0-beta.4", + "papaparse": "^5.3.1", "parcel": "^1.2.4", "prompt-sync": "^4.2.0", + "svg-resizer": "github:vieron/svg-resizer", "tailwindcss": "^2.2.15", "togpx": "^0.5.4", "tslint": "^6.1.3", "wikibase-sdk": "^7.14.0", - "wikidata-sdk": "^7.14.0" + "wikidata-sdk": "^7.14.0", + "xml2js": "^0.4.23" }, "devDependencies": { "@babel/polyfill": "^7.10.4", @@ -105,8 +102,6 @@ "assert": "^2.0.0", "dependency-cruiser": "^10.4.0", "fs": "0.0.1-security", - "git-json-merge": "^0.4.5", - "marked": "^2.0.0", "read-file": "^0.2.0", "sharp": "^0.28.3", "ts-node": "^9.0.0", 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/professional.html b/professional.html new file mode 100644 index 0000000000..47f3cb281c --- /dev/null +++ b/professional.html @@ -0,0 +1,46 @@ + + + + + + + + + + + + + + MapComplete + + + + + + + + + + +
+ +
+ +
+ + + + + + diff --git a/scripts/ScriptUtils.ts b/scripts/ScriptUtils.ts index 9ed725d969..91abecce45 100644 --- a/scripts/ScriptUtils.ts +++ b/scripts/ScriptUtils.ts @@ -4,12 +4,9 @@ import {Utils} from "../Utils"; import * as https from "https"; import {LayoutConfigJson} from "../Models/ThemeConfig/Json/LayoutConfigJson"; import {LayerConfigJson} from "../Models/ThemeConfig/Json/LayerConfigJson"; - -Utils.runningFromConsole = true - +import xml2js from 'xml2js'; export default class ScriptUtils { - public static fixUtils() { Utils.externalDownloadFunction = ScriptUtils.DownloadJSON } @@ -48,12 +45,12 @@ export default class ScriptUtils { }) } - public static DownloadJSON(url, headers?: any): Promise { + private static DownloadJSON(url, headers?: any): Promise { return new Promise((resolve, reject) => { try { headers = headers ?? {} headers.accept = "application/json" - console.log("ScriptUtils.DownloadJson(", url.substring(0, 40), url.length > 40 ? "..." : "", ")") + console.log(" > ScriptUtils.DownloadJson(", url, ")") const urlObj = new URL(url) https.get({ host: urlObj.host, @@ -123,7 +120,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 { @@ -148,4 +145,18 @@ export default class ScriptUtils { return ScriptUtils.DownloadJSON(url) } + public static async ReadSvg(path: string): Promise{ + const root = await xml2js.parseStringPromise(readFileSync(path, "UTF8")) + return root.svg + } + + public static async ReadSvgSync(path: string, callback: ((svg: any) => void)): Promise{ + xml2js.parseString(readFileSync(path, "UTF8"),{async: false} , (err, root) => { + if(err){ + throw err + } + callback(root["svg"]); + }) + } + } diff --git a/scripts/build.sh b/scripts/build.sh new file mode 100755 index 0000000000..a983fce246 --- /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/ +cp assets/generated/*.png dist/assets/generated/ +cp assets/generated/*.svg dist/assets/generated/ + +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" "import_helper.html" "import_viewer.html" "land.html" "customGenerator.html" "theme.html" vendor +if [ $? -ne 0 ]; then + echo "ERROR - stopping the build" + exit 1 +fi +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 + parcel build --public-url './' $SRC_MAPS "$theme.html" + if [ $? -ne 0 ]; then + echo "ERROR - stopping the build" + exit 1 + fi +done 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..c119915e7a --- /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..4ae2f6d388 --- /dev/null +++ b/scripts/extractBikeRental.ts @@ -0,0 +1,210 @@ +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/fixImagesInTagRenderings.ts b/scripts/fixImagesInTagRenderings.ts new file mode 100644 index 0000000000..5440238fb2 --- /dev/null +++ b/scripts/fixImagesInTagRenderings.ts @@ -0,0 +1,65 @@ +import {readFileSync, writeFileSync} from "fs"; +import {DesugaringStep} from "../Models/ThemeConfig/Conversion/Conversion"; +import {LayerConfigJson} from "../Models/ThemeConfig/Json/LayerConfigJson"; +import {Utils} from "../Utils"; +import Translations from "../UI/i18n/Translations"; + +class ConvertImagesToIcon extends DesugaringStep { + private _iconClass: string; + + constructor(iconClass: string) { + super("Searches for images in the 'then' path, removes the block and extracts the image itself a 'icon'", + [], "ConvertImagesToIcon") + this._iconClass = iconClass; + } + + convert(json: LayerConfigJson, context: string): { result: LayerConfigJson; errors?: string[]; warnings?: string[]; information?: string[] } { + const information = [] + const errors = [] + json = Utils.Clone(json) + Utils.WalkPath( + ["tagRenderings", "mappings"], + json, + mapping => { + const then = Translations.T(mapping.then) + const images = Utils.Dedup(then.ExtractImages()) + if (images.length == 0) { + return mapping + } + if (images.length > 1) { + errors.push("The mapping " + mapping.then + " has multiple images: " + images.join(", ")) + } + information.push("Replaced image " + images[0]) + const replaced = then.OnEveryLanguage((s) => { + return s.replace(/(
]*>)?]*> ?/, "").replace(/<\/div>$/, "").trim() + }) + + mapping.then = replaced.translations + mapping.icon = {path: images[0], class: this._iconClass} + return mapping + } + ) + + return { + information, + result: json + }; + } +} + +/** + * One-of script to load one layer.json-file and rewrite all tagrenderings + */ +function main() { + let args = [...process.argv] + args.splice(0, 2) + const path = args[0] + const iconClass = args[1] ?? "small" + const targetFile = args[2] ?? path + ".autoconverted.json" + const parsed = JSON.parse(readFileSync(path, "UTF8")) + const converted = new ConvertImagesToIcon(iconClass).convertStrict(parsed, "While running the fixImagesInTagRenderings-script") + writeFileSync(targetFile, JSON.stringify(converted, null, " ")) + console.log("Written fixed version to " + targetFile) +} + +main(); \ No newline at end of file diff --git a/scripts/fixSchemas.ts b/scripts/fixSchemas.ts index 7899ae0957..5bf91fcb6f 100644 --- a/scripts/fixSchemas.ts +++ b/scripts/fixSchemas.ts @@ -2,6 +2,129 @@ import ScriptUtils from "./ScriptUtils"; import {readFileSync, writeFileSync} from "fs"; +interface JsonSchema { + description?: string, + type?: string, + properties?: any, + items?: JsonSchema | JsonSchema[], + anyOf: JsonSchema[], + enum: JsonSchema[], + "$ref": string +} + +function WalkScheme( + onEach: (schemePart: JsonSchema) => T, + scheme: JsonSchema, + registerSchemePath = false, + fullScheme: JsonSchema & { definitions?: any } = undefined, + path: string[] = [], + isHandlingReference = [] +): { path: string[], t: T }[] { + const results: { path: string[], t: T } [] = [] + if (scheme === undefined) { + return [] + } + if (scheme["$ref"] !== undefined) { + const ref = scheme["$ref"] + const prefix = "#/definitions/" + if (!ref.startsWith(prefix)) { + throw "References is not relative!" + } + const definitionName = ref.substr(prefix.length) + if (isHandlingReference.indexOf(definitionName) >= 0) { + return; + } + const loadedScheme = fullScheme.definitions[definitionName] + return WalkScheme(onEach, loadedScheme, registerSchemePath, fullScheme, path, [...isHandlingReference, definitionName]); + } + + fullScheme = fullScheme ?? scheme + var t = onEach(scheme) + if (t !== undefined) { + results.push({ + path: [...path], + t + }) + } + + + function walk(v: JsonSchema, pathPart: string) { + if (v === undefined) { + return + } + if (registerSchemePath) { + path.push("" + pathPart) + } + results.push(...WalkScheme(onEach, v, registerSchemePath, fullScheme, path, isHandlingReference)) + if (registerSchemePath) { + path.pop() + } + } + + function walkEach(scheme: JsonSchema[], pathPart: string) { + if (scheme === undefined) { + return + } + if (registerSchemePath) { + path.push("" + pathPart) + } + scheme.forEach((v, i) => walk(v, "" + i)) + if (registerSchemePath) { + path.pop() + } + } + + + + { + walkEach(scheme.enum, "enum") + walkEach(scheme.anyOf, "anyOf") + if (scheme.items !== undefined) { + + if (scheme.items["forEach"] !== undefined) { + walkEach(scheme.items, "items") + } else { + walk(scheme.items, "items") + } + } + + if (registerSchemePath) { + path.push("properties") + } + for (const key in scheme.properties) { + const prop = scheme.properties[key] + path.push(key) + results.push(...WalkScheme(onEach, prop, registerSchemePath, fullScheme, path, isHandlingReference)) + path.pop() + } + if (registerSchemePath) { + path.pop() + } + } + + return results +} + +function extractMeta(typename: string, path: string) { + const themeSchema = JSON.parse(readFileSync("./Docs/Schemas/" + typename + ".schema.json", "UTF-8")) + const withTypes = WalkScheme((schemePart) => { + if (schemePart.description === undefined) { + return; + } + const typeHint = schemePart.description.split("\n") + .find(line => line.trim().toLocaleLowerCase().startsWith("type:")) + ?.substr("type:".length)?.trim() + const type = schemePart.type ?? schemePart.anyOf; + return {typeHint, type} + }, themeSchema) + + writeFileSync("./assets/" + path + ".json", JSON.stringify(withTypes.map(({ + path, + t + }) => ({path, ...t})), null, " ")) +} + + function main() { const allSchemas = ScriptUtils.readDirRecSync("./Docs/Schemas").filter(pth => pth.endsWith("JSC.ts")) @@ -20,9 +143,12 @@ function main() { def["additionalProperties"] = false } } - writeFileSync(dir + "/" + name + ".schema.json", JSON.stringify(parsed, null, " "), "UTF8") } + + extractMeta("LayoutConfigJson", "layoutconfigmeta") + extractMeta("TagRenderingConfigJson", "tagrenderingconfigmeta") + } main() diff --git a/scripts/fixTheme.ts b/scripts/fixTheme.ts deleted file mode 100644 index fa98e8b483..0000000000 --- a/scripts/fixTheme.ts +++ /dev/null @@ -1,86 +0,0 @@ -/* - * This script attempt to automatically fix some basic issues when a theme from the custom generator is loaded - */ -import {Utils} from "../Utils" -import {readFileSync, writeFileSync} from "fs"; -import SmallLicense from "../Models/smallLicense"; -import ScriptUtils from "./ScriptUtils"; -import AllImageProviders from "../Logic/ImageProviders/AllImageProviders"; -import {LayoutConfigJson} from "../Models/ThemeConfig/Json/LayoutConfigJson"; -import LayerConfig from "../Models/ThemeConfig/LayerConfig"; - -Utils.runningFromConsole = true; - - -ScriptUtils.fixUtils() - -if (process.argv.length == 2) { - console.log("USAGE: ts-node scripts/fixTheme ") - throw "No path specified" -} - -const path = process.argv[2] -const dir = path.substring(0, path.lastIndexOf("/")) - -console.log("Fixing up ", path) - -const themeConfigJson: LayoutConfigJson = JSON.parse(readFileSync(path, "UTF8")) - -const licenses: SmallLicense[] = [] - -const replacements: { source: string, destination: string }[] = [] - -for (const layerConfigJson of themeConfigJson.layers) { - if (typeof (layerConfigJson) === "string") { - continue; - } - if (layerConfigJson["overpassTags"] !== undefined) { - const tags = layerConfigJson["overpassTags"]; - layerConfigJson["overpassTags"] = undefined; - layerConfigJson["source"] = {osmTags: tags} - } - // @ts-ignore - const layerConfig = new LayerConfig(layerConfigJson, "fix theme", true) - const images: string[] = Array.from(layerConfig.ExtractImages()) - const remoteImages = images.filter(img => img.startsWith("http")) - - for (const remoteImage of remoteImages) { - - - const filename = remoteImage.substring(remoteImage.lastIndexOf("/")) - ScriptUtils.DownloadFileTo(remoteImage, dir + "/" + filename) - - - const imgPath = remoteImage.substring(remoteImage.lastIndexOf("/") + 1) - - for (const attributionSrc of AllImageProviders.ImageAttributionSource) { - try { - attributionSrc.GetAttributionFor(remoteImage).addCallbackAndRun(license => { - console.log("Downloaded an attribution!") - licenses.push({ - path: imgPath, - license: license?.license ?? "", - authors: Utils.NoNull([license?.artist]), - sources: [remoteImage] - }) - }) - } catch (e) { - // Hush hush - } - } - - replacements.push({source: remoteImage, destination: `${dir}/${imgPath}`}) - } -} - -let fixedThemeJson = JSON.stringify(themeConfigJson, null, " ") -for (const replacement of replacements) { - fixedThemeJson = fixedThemeJson.replace(new RegExp(replacement.source, "g"), replacement.destination) -} - -writeFileSync(dir + "/generated.license_info.json", JSON.stringify(licenses, null, " ")) -writeFileSync(path + ".autofixed.json", fixedThemeJson) - -console.log(`IMPORTANT: - 1) Copy generated.license_info.json over into license_info.json and add the missing attributions and authors - 2) Verify ${path}.autofixed.json as theme, and rename it to ${path}`) \ No newline at end of file diff --git a/scripts/generateCache.ts b/scripts/generateCache.ts index 5731a9ac4d..36f3303ce8 100644 --- a/scripts/generateCache.ts +++ b/scripts/generateCache.ts @@ -21,11 +21,12 @@ import StaticFeatureSource from "../Logic/FeatureSource/Sources/StaticFeatureSou import TiledFeatureSource from "../Logic/FeatureSource/TiledFeatureSource/TiledFeatureSource"; import Constants from "../Models/Constants"; 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) { let filters: TagsFilter[] = []; let extraScripts: string[] = []; @@ -102,7 +103,7 @@ async function downloadRaw(targetdir: string, r: TileRange, theme: LayoutConfig, try { - const json = await ScriptUtils.DownloadJSON(url) + const json = await Utils.downloadJson(url) if ((json.remark ?? "").startsWith("runtime error")) { console.error("Got a runtime error: ", json.remark) failed++; @@ -141,7 +142,7 @@ async function downloadExtraData(theme: LayoutConfig)/* : any[] */ { continue; } console.log("Downloading extra data: ", source) - await ScriptUtils.DownloadJSON(source).then(json => allFeatures.push(...json.features)) + await Utils.downloadJson(source).then(json => allFeatures.push(...json.features)) } return allFeatures; } @@ -166,6 +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") allFeatures.push(...geojson.features) } @@ -177,12 +179,34 @@ function loadAllTiles(targetdir: string, r: TileRange, theme: LayoutConfig, extr * Load all the tiles into memory from disk */ function sliceToTiles(allFeatures: FeatureSource, theme: LayoutConfig, relationsTracker: RelationsTracker, targetdir: string, pointsOnlyLayers: string[]) { - function handleLayer(source: FeatureSourceForLayer) { + const skippedLayers = new Set() + + const indexedFeatures: Map = new Map() + let indexisBuilt = false; + + 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) { + buildIndex() + } + return indexedFeatures.get(id) + } + + async function handleLayer(source: FeatureSourceForLayer) { const layer = source.layer.layerDef; const targetZoomLevel = layer.source.geojsonZoomLevel ?? 0 const layerId = layer.id if (layer.source.isOsmCacheLayer !== true) { + console.log("Skipping layer ", layerId, ": not a caching layer") + skippedLayers.add(layer.id) return; } console.log("Handling layer ", layerId, "which has", source.features.data.length, "features") @@ -194,14 +218,23 @@ function sliceToTiles(allFeatures: FeatureSource, theme: LayoutConfig, relations memberships: relationsTracker, getFeaturesWithin: _ => { return [allFeatures.features.data.map(f => f.feature)] - } + }, + getFeatureById: getFeatureById }, layer, + {}, { includeDates: false, - includeNonDates: true + includeNonDates: true, + evaluateStrict: true }); + + while (SimpleMetaTaggers.country.runningTasks.size > 0) { + console.log("Still waiting for ", SimpleMetaTaggers.country.runningTasks.size, " features which don't have a country yet") + await ScriptUtils.sleep(1) + } + const createdTiles = [] // At this point, we have all the features of the entire area. // However, we want to export them per tile of a fixed size, so we use a dynamicTileSOurce to split it up @@ -210,23 +243,59 @@ function sliceToTiles(allFeatures: FeatureSource, theme: LayoutConfig, relations maxZoomLevel: targetZoomLevel, maxFeatureCount: undefined, registerTile: tile => { + const tileIndex = tile.tileIndex; + console.log("Got tile:", tileIndex, tile.layer.layerDef.id) if (tile.features.data.length === 0) { return } - for (const feature of tile.features.data) { + + const filteredTile = new FilteringFeatureSource({ + 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") + if (filteredTile.features.data.length === 0) { + return + } + let strictlyCalculated = 0 + let featureCount = 0 + 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) + } + } + } + } // Lets save this tile! - const [z, x, y] = Tiles.tile_from_index(tile.tileIndex) + const [z, x, y] = Tiles.tile_from_index(tileIndex) // console.log("Writing tile ", z, x, y, layerId) const targetPath = geoJsonName(targetdir + "_" + layerId, x, y, z) - createdTiles.push(tile.tileIndex) + createdTiles.push(tileIndex) // This is the geojson file containing all features for this tile writeFileSync(targetPath, JSON.stringify({ type: "FeatureCollection", - features: tile.features.data.map(f => f.feature) + features: filteredTile.features.data.map(f => f.feature) }, null, " ")) + console.log("Written tile", targetPath, "with", filteredTile.features.data.length) } }) @@ -246,7 +315,18 @@ function sliceToTiles(allFeatures: FeatureSource, theme: LayoutConfig, relations // And, if needed, to create a points-only layer if (pointsOnlyLayers.indexOf(layer.id) >= 0) { - const features = source.features.data.map(f => f.feature) + + const filtered = new FilteringFeatureSource({ + locationControl: new UIEventSource(undefined), + allElements: undefined, + selectedElement: new UIEventSource(undefined) + }, + 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" @@ -267,31 +347,63 @@ function sliceToTiles(allFeatures: FeatureSource, theme: LayoutConfig, relations handleLayer, allFeatures ) + + const skipped = Array.from(skippedLayers) + if (skipped.length > 0) { + console.warn("Did not save any cache files for layers " + skipped.join(", ") + " as these didn't set the flag `isOsmCache` to true") + } } -async function main(args: string[]) { +export async function main(args: string[]) { - if (args.length == 0) { - console.error("Expected arguments are: theme zoomlevel targetdirectory lat0 lon0 lat1 lon1 [--generate-point-overview layer-name,layer-name,...]") + console.log("Cache builder started with args ", args.join(", ")) + if (args.length < 6) { + console.error("Expected arguments are: theme zoomlevel targetdirectory lat0 lon0 lat1 lon1 [--generate-point-overview layer-name,layer-name,...] [--force-zoom-level z] \n" + + "Note: a new directory named will be created in targetdirectory") return; } const themeName = args[0] const zoomlevel = Number(args[1]) + const targetdir = args[2] + "/" + themeName + if (!existsSync(args[2])) { + console.log("Directory not found") + throw `The directory ${args[2]} does not exist` + } + const lat0 = Number(args[3]) const lon0 = Number(args[4]) const lat1 = Number(args[5]) const lon1 = Number(args[6]) - let generatePointLayersFor = [] - if (args[7] == "--generate-point-overview") { - generatePointLayersFor = args[8].split(",") + if (isNaN(lat0)) { + throw "The first number (a latitude) is not a valid number" + } + + if (isNaN(lon0)) { + throw "The second number (a longitude) is not a valid number" + } + if (isNaN(lat1)) { + throw "The third number (a latitude) is not a valid number" + } + + if (isNaN(lon1)) { + throw "The fourth number (a longitude) is not a valid number" } const tileRange = Tiles.TileRangeBetween(zoomlevel, lat0, lon0, lat1, lon1) + if (isNaN(tileRange.total)) { + throw "Something has gone wrong: tilerange is NAN" + } + + if (tileRange.total === 0) { + console.log("Tilerange has zero tiles - this is probably an error") + return + } + const theme = AllKnownLayouts.allKnownLayouts.get(themeName) if (theme === undefined) { const keys = [] @@ -301,6 +413,32 @@ async function main(args: string[]) { console.error("The theme " + theme + " was not found; try one of ", keys); return } + + let generatePointLayersFor = [] + if (args[7] == "--generate-point-overview") { + 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] === '*') { + generatePointLayersFor = theme.layers.map(l => l.id) + } 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 relationTracker = new RelationsTracker() let failed = 0; @@ -320,6 +458,13 @@ async function main(args: string[]) { let args = [...process.argv] -args.splice(0, 2) -main(args); -console.log("All done!") \ No newline at end of file +if (!args[1]?.endsWith("test/TestAll.ts")) { + args.splice(0, 2) + try { + main(args) + .then(() => console.log("All done!")) + .catch(e => console.error("Error building cache:", e)); + } catch (e) { + console.error("Error building cache:", e) + } +} diff --git a/scripts/generateContributors.ts b/scripts/generateContributors.ts new file mode 100644 index 0000000000..406a5e52a3 --- /dev/null +++ b/scripts/generateContributors.ts @@ -0,0 +1,44 @@ +import {exec} from "child_process"; +import {writeFile, writeFileSync} from "fs"; + +function asList(hist: Map): {contributors: { contributor: string, commits: number }[] +}{ + const ls = [] + hist.forEach((commits, contributor) => { + ls.push({commits, contributor}) + }) + ls.sort((a, b) => (b.commits - a.commits)) + return {contributors: ls} +} + +function main() { + exec("git log --pretty='%aN %%!%% %s' ", ((error, stdout, stderr) => { + + const entries = stdout.split("\n").filter(str => str !== "") + const codeContributors = new Map() + const translationContributors = new Map() + for (const entry of entries) { + console.log(entry) + let [author, message] = entry.split("%!%").map(s => s.trim()) + if(author === "Weblate"){ + continue + } + if (author === "pietervdvn") { + author = "Pieter Vander Vennet" + } + let hist = codeContributors; + if (message.startsWith("Translated using Weblate")) { + hist = translationContributors + } + hist.set(author, 1 + (hist.get(author) ?? 0)) + } + + const codeContributorsTarget = "assets/contributors.json" + writeFileSync(codeContributorsTarget, JSON.stringify(asList(codeContributors))) + const translatorsTarget = "assets/translators.json" + writeFileSync(translatorsTarget, JSON.stringify(asList(translationContributors))) + + })); +} + +main() \ No newline at end of file diff --git a/scripts/generateDocs.ts b/scripts/generateDocs.ts index 7061896beb..4d43d5c027 100644 --- a/scripts/generateDocs.ts +++ b/scripts/generateDocs.ts @@ -1,33 +1,118 @@ -import {Utils} from "../Utils"; -import SpecialVisualizations from "../UI/SpecialVisualizations"; -import SimpleMetaTagger from "../Logic/SimpleMetaTagger"; import Combine from "../UI/Base/Combine"; -import {ExtraFunction} from "../Logic/ExtraFunction"; -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 AllKnownLayers from "../Customizations/AllKnownLayers"; +import {existsSync, writeFileSync} from "fs"; 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"; +import ScriptUtils from "./ScriptUtils"; +import List from "../UI/Base/List"; +import SharedTagRenderings from "../Customizations/SharedTagRenderings"; -Utils.runningFromConsole = true; +function WriteFile(filename, html: BaseUIElement, autogenSource: string[]): void { -function WriteFile(filename, html: string | BaseUIElement, autogenSource: string[]): void { - writeFileSync(filename, new Combine([Translations.W(html), - "\n\nThis document is autogenerated from " + autogenSource.join(", ") - ]).AsMarkdown()); + for (const source of autogenSource) { + if(source.indexOf("*") > 0){ + continue + } + if(!existsSync(source)){ + throw "While creating a documentation file and checking that the generation sources are properly linked: source file "+source+" was not found. Typo?" + } + } + + if (html instanceof Combine) { + const toc = new TableOfContents(html); + const els = html.getElements(); + html = new Combine( + [els.shift(), + toc, + ...els + ] + ).SetClass("flex flex-col") + } + + let md = new Combine([Translations.W(html), + "\n\nThis document is autogenerated from " + autogenSource.map(file => `[${file}](https://github.com/pietervdvn/MapComplete/blob/develop/${file})`).join(", ") + ]).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/SpecialVisualizations.ts"]) +WriteFile("./Docs/CalculatedTags.md", new Combine([new Title("Metatags", 1), + SimpleMetaTaggers.HelpText(), ExtraFunctions.HelpText()]).SetClass("flex-col"), + ["Logic/SimpleMetaTagger.ts", "Logic/ExtraFunctions.ts"]) +WriteFile("./Docs/SpecialInputElements.md", ValidatedTextField.HelpText(), ["UI/Input/ValidatedTextField.ts"]); +WriteFile("./Docs/BuiltinLayers.md", AllKnownLayouts.GenLayerOverviewText(), ["Customizations/AllKnownLayouts.ts"]) +WriteFile("./Docs/BuiltinQuestions.md", SharedTagRenderings.HelpText(), ["Customizations/SharedTagRenderings.ts","assets/tagRenderings/questions.json"]) + +{ + // Generate the builtinIndex which shows interlayer dependencies + var layers = ScriptUtils.getLayerFiles().map(f => f.parsed) + var builtinsPerLayer= new Map(); + var layersUsingBuiltin = new Map(); + for (const layer of layers) { + if(layer.tagRenderings === undefined){ + continue + } + const usedBuiltins : string[] = [] + for (const tagRendering of layer.tagRenderings) { + if(typeof tagRendering === "string"){ + usedBuiltins.push(tagRendering) + continue + } + if(tagRendering["builtin"] !== undefined){ + const builtins = tagRendering["builtin"] + if(typeof builtins === "string"){ + usedBuiltins.push(builtins) + }else{ + usedBuiltins.push(...builtins) + } + } + } + for (const usedBuiltin of usedBuiltins) { + var using = layersUsingBuiltin.get(usedBuiltin) + if(using === undefined){ + layersUsingBuiltin.set(usedBuiltin, [layer.id]) + }else{ + using.push(layer.id) + } + } + + builtinsPerLayer.set(layer.id, usedBuiltins) + } + + const docs = new Combine([ + new Title("Index of builtin TagRendering" ,1), + new Title("Existing builtin tagrenderings", 2), + ... Array.from(layersUsingBuiltin.entries()).map(([builtin, usedByLayers]) => + new Combine([ + new Title(builtin), + new List(usedByLayers) + ]).SetClass("flex flex-col") + ) + ]).SetClass("flex flex-col") + WriteFile("./Docs/BuiltinIndex.md", docs, ["assets/layers/*.json"]) } -WriteFile("./Docs/SpecialRenderings.md", SpecialVisualizations.HelpMessage(), ["UI/SpecialVisualisations.ts"]) -WriteFile("./Docs/CalculatedTags.md", new Combine([SimpleMetaTagger.HelpText(), ExtraFunction.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 @@ -35,12 +120,12 @@ Minimap.createMiniMap = _ => { const dummyLayout = new LayoutConfig({ - language: ["en"], - id: "", + id: ">theme<", maintainer: "pietervdvn", version: "0", - title: "", + title: {en:""}, description: "A theme to generate docs with", + socialImage: "./assets/SocialImage.png", startLat: 0, startLon: 0, startZoom: 0, @@ -48,11 +133,11 @@ const dummyLayout = new LayoutConfig({ layers: [ { name: "", - id: "", + id: "<layer>", source: { osmTags: "id~*" }, - mapRendering: [] + mapRendering: null, } ] @@ -60,9 +145,9 @@ const dummyLayout = new LayoutConfig({ new FeatureSwitchState(dummyLayout) -QueryParameters.GetQueryParameter("layer-", "true", "Wether or not the layer with id is shown") +QueryParameters.GetQueryParameter("layer-<layer-id>", "true", "Wether or not the layer with id is shown") -WriteFile("./Docs/URL_Parameters.md", QueryParameters.GenerateQueryParameterDocs(), ["QueryParameters"]) +WriteFile("./Docs/URL_Parameters.md", QueryParameterDocumentation.GenerateQueryParameterDocs(), ["Logic/Web/QueryParameters.ts", "UI/QueryParameterDocumentation.ts"]) console.log("Generated docs") diff --git a/scripts/generateIncludedImages.ts b/scripts/generateIncludedImages.ts index f706e455e8..d0902ae158 100644 --- a/scripts/generateIncludedImages.ts +++ b/scripts/generateIncludedImages.ts @@ -1,6 +1,6 @@ import * as fs from "fs"; -function genImages() { +function genImages(dryrun = false) { console.log("Generating images") const dir = fs.readdirSync("./assets/svg") @@ -17,7 +17,7 @@ function genImages() { throw "Non-svg file detected in the svg files: " + path; } - const svg = fs.readFileSync("./assets/svg/" + path, "utf-8") + let svg = fs.readFileSync("./assets/svg/" + path, "utf-8") .replace(/<\?xml.*?>/, "") .replace(/fill: ?none;/g, "fill: none !important;") // This is such a brittle hack... .replace(/\n/g, " ") @@ -26,11 +26,23 @@ function genImages() { .replace(/"/g, "\\\"") const name = path.substr(0, path.length - 4) .replace(/[ -]/g, "_"); + + if (dryrun) { + svg = "xxx" + } + + let rawName = name; + if (dryrun) { + rawName = "add"; + } + module += ` public static ${name} = "${svg}"\n` - module += ` public static ${name}_img = Img.AsImageElement(Svg.${name})\n` - module += ` public static ${name}_svg() { return new Img(Svg.${name}, true);}\n` - module += ` public static ${name}_ui() { return new FixedUiElement(Svg.${name}_img);}\n\n` - allNames.push(`"${path}": Svg.${name}`) + module += ` public static ${name}_img = Img.AsImageElement(Svg.${rawName})\n` + module += ` public static ${name}_svg() { return new Img(Svg.${rawName}, true);}\n` + module += ` public static ${name}_ui() { return new FixedUiElement(Svg.${rawName}_img);}\n\n` + if (!dryrun) { + allNames.push(`"${path}": Svg.${name}`) + } } module += `public static All = {${allNames.join(",")}};` module += "}\n"; diff --git a/scripts/generateLayerOverview.ts b/scripts/generateLayerOverview.ts index fb41616016..a14a88623e 100644 --- a/scripts/generateLayerOverview.ts +++ b/scripts/generateLayerOverview.ts @@ -1,228 +1,225 @@ 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 {PrevalidateTheme, ValidateLayer, ValidateThemeAndLayers} from "../Models/ThemeConfig/Conversion/Validation"; import {Translation} from "../UI/i18n/Translation"; -import {Utils} from "../Utils"; +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"; +import {PrepareLayer} from "../Models/ThemeConfig/Conversion/PrepareLayer"; +import {PrepareTheme} from "../Models/ThemeConfig/Conversion/PrepareTheme"; +import {DesugaringContext} from "../Models/ThemeConfig/Conversion/Conversion"; // 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!" + 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); } - return { - layers: layerFiles, - themes: themeFiles + + + 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"); + } + + writeTheme(theme: LayoutConfigJson) { + if (!existsSync("./assets/generated/themes")) { + mkdirSync("./assets/generated/themes"); + } + writeFileSync(`./assets/generated/themes/${theme.id}.json`, JSON.stringify(theme, null, " "), "UTF8"); + } + + writeLayer(layer: LayerConfigJson) { + if (!existsSync("./assets/generated/layers")) { + mkdirSync("./assets/generated/layers"); + } + writeFileSync(`./assets/generated/layers/${layer.id}.json`, JSON.stringify(layer, null, " "), "UTF8"); + } + + getSharedTagRenderings(): Map { + const dict = new Map(); + + for (const key in questions["default"]) { + if (key === "id") { + continue + } + questions[key].id = key; + dict.set(key, questions[key]) + } + for (const key in icons["default"]) { + if (key === "id") { + continue + } + if (typeof icons[key] !== "object") { + continue + } + icons[key].id = key; + dict.set(key, icons[key]) + } + + dict.forEach((value, key) => { + if (key === "id") { + return + } + value.id = value.id ?? key; + }) + + return dict; + } + + checkAllSvgs() { + const allSvgs = ScriptUtils.readDirRecSync("./assets") + .filter(path => path.endsWith(".svg")) + .filter(path => !path.startsWith("./assets/generated")) + let errCount = 0; + for (const path of allSvgs) { + const contents = readFileSync(path, "UTF8") + if (contents.indexOf("data:image/png;") < 0) { + continue; + } + console.warn("The SVG at " + path + " is a fake SVG: it contains PNG data!") + errCount++; + if (path.startsWith("./assets/svg")) { + throw "A core SVG is actually a PNG. Don't do this!" + } + } + if (errCount > 0) { + throw `There are ${errCount} fake svgs` } } - writeFiles(lt: LayersAndThemes) { - writeFileSync("./assets/generated/known_layers_and_themes.json", JSON.stringify({ - "layers": lt.layers.map(l => l.parsed), - "themes": lt.themes - })) - } - 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)") - } - 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'") - } + main(_: string[]) { - - 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 - } - - main(args: string[]) { - - const layerFiles = ScriptUtils.getLayerFiles(); - const themeFiles = ScriptUtils.getThemeFiles(); - - - console.log(" ---------- VALIDATING ---------") - const licensePaths = [] + const licensePaths = new Set() for (const i in licenses) { - licensePaths.push(licenses[i].path) + licensePaths.add(licenses[i].path) } - const knownPaths = new Set(licensePaths) - let layerErrorCount = [] - const knownLayerIds = new Map(); - for (const layerFile of layerFiles) { + const sharedLayers = this.buildLayerIndex(licensePaths); + const sharedThemes = this.buildThemeIndex(licensePaths, sharedLayers) - if (knownLayerIds.has(layerFile.parsed.id)) { - throw "Duplicate identifier: " + layerFile.parsed.id + " in file " + layerFile.path + 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({layers: 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, " ")) + } + + this.checkAllSvgs() + } + + 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 state: DesugaringContext = { + tagRenderings: sharedTagRenderings, + sharedLayers + } + const prepLayer = new PrepareLayer(state); + for (const sharedLayerJson of layerFiles) { + const context = "While building builtin layer " + sharedLayerJson.path + const fixed = prepLayer.convertStrict(sharedLayerJson.parsed, context) + const validator = new ValidateLayer(sharedLayerJson.path, true); + validator.convertStrict(fixed, context) + + if (sharedLayers.has(fixed.id)) { + throw "There are multiple layers with the id " + fixed.id } - layerErrorCount.push(...this.validateLayer(layerFile.parsed, layerFile.path, knownPaths)) - knownLayerIds.set(layerFile.parsed.id, new LayerConfig(layerFile.parsed)) - } - let themeErrorCount = [] - // used only for the reports - let themeConfigs: LayoutConfig[] = [] + 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` - } - } + + new PrevalidateTheme().convertStrict(themeFile, themePath) + themeFile = new PrepareTheme(convertState).convertStrict(themeFile, themePath) + + if(knownImagePaths === undefined){ + throw "Could not load known images/licenses" } + new ValidateThemeAndLayers(knownImagePaths, themePath, true, convertState.tagRenderings) + .convertStrict(themeFile, themePath) - 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.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) - - - 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 full translation is "+missing.tr.translations) - }) - } - - - } - 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 5335a7a39a..f315653265 100644 --- a/scripts/generateLayouts.ts +++ b/scripts/generateLayouts.ts @@ -1,5 +1,4 @@ -import {Utils} from "../Utils"; -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"; @@ -7,20 +6,19 @@ import Constants from "../Models/Constants"; import * as all_known_layouts from "../assets/generated/known_layers_and_themes.json" import {LayoutConfigJson} from "../Models/ThemeConfig/Json/LayoutConfigJson"; import LayoutConfig from "../Models/ThemeConfig/LayoutConfig"; -// We HAVE to mark this while importing -Utils.runningFromConsole = true; - +import xml2js from 'xml2js'; +import ScriptUtils from "./ScriptUtils"; const sharp = require('sharp'); +const template = readFileSync("theme.html", "utf8"); +const codeTemplate = readFileSync("index_theme.ts.template", "utf8"); function enc(str: string): string { return encodeURIComponent(str.toLowerCase()); } -const alreadyWritten = [] - -async function createIcon(iconPath: string, size: number) { +async function createIcon(iconPath: string, size: number, alreadyWritten: string[]) { let name = iconPath.split(".").slice(0, -1).join("."); if (name.startsWith("./")) { name = name.substr(2) @@ -37,7 +35,7 @@ async function createIcon(iconPath: string, size: number) { readFileSync(newname); return newname; // File already exists - nothing to do } catch (e) { - // Errors are normal here if this file exists + // Errors are normal here if this file does not exists } try { @@ -53,7 +51,7 @@ async function createIcon(iconPath: string, size: number) { return newname; } -async function createManifest(layout: LayoutConfig) { +async function createManifest(layout: LayoutConfig, alreadyWritten: string[]) { const name = layout.id; Translation.forcedLanguage = "en" @@ -62,8 +60,20 @@ async function createManifest(layout: LayoutConfig) { let icon = layout.icon; if (icon.endsWith(".svg") || icon.startsWith(" + - ` + + + + + + + ` let icon = layout.icon; if (icon.startsWith("`) + const whiteBgPath = `./assets/generated/generated_theme_${layout.id}_white_background${icon.sizes.substr(icon.sizes.indexOf("x")+ 1)}.png` + if(!existsSync(whiteBgPath)){ + continue + } + apple_icons.push(``) } let themeSpecific = [ @@ -156,14 +177,17 @@ async function createLandingPage(layout: LayoutConfig, manifest) { ``, og, customCss, - ``, ``, ...apple_icons ].join("\n") + const loadingText = Translations.t.general.loadingTheme.Subs({theme: ogTitle}); let output = template - .replace("Loading MapComplete, hang on...", `Loading MapComplete theme ${ogTitle}...`) - .replace(/.*/s, themeSpecific); + .replace("Loading MapComplete, hang on...", loadingText.textFor(targetLanguage)) + .replace("Powered by OpenStreetMap", Translations.t.general.poweredByOsm.textFor(targetLanguage)) + .replace(/.*/s, themeSpecific) + .replace(/.*/s, layout.shortDescription.textFor(targetLanguage)) + .replace("", ``); try { output = output @@ -176,57 +200,82 @@ async function createLandingPage(layout: LayoutConfig, manifest) { return output; } -const generatedDir = "./assets/generated"; -if (!existsSync(generatedDir)) { - mkdirSync(generatedDir) +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 blacklist = ["", "test", ".", "..", "manifest", "index", "land", "preferences", "account", "openstreetmap", "custom"] -// @ts-ignore -const all: LayoutConfigJson[] = all_known_layouts.themes; -for (const i in all) { - const layoutConfigJson: LayoutConfigJson = all[i] - const layout = new LayoutConfig(layoutConfigJson, true, "generating layouts") - const layoutName = layout.id - if (blacklist.indexOf(layoutName.toLowerCase()) >= 0) { - console.log(`Skipping a layout with name${layoutName}, it is on the blacklist`); - continue; +function createDir(path){ + if (!existsSync(path)) { + mkdirSync(path) } - const err = err => { - if (err !== null) { - console.log("Could not write manifest for ", layoutName, " because ", err) - } - }; - createManifest(layout).then(manifObj => { - const manif = JSON.stringify(manifObj, undefined, 2); - const manifestLocation = encodeURIComponent(layout.id.toLowerCase()) + ".webmanifest"; - writeFile(manifestLocation, manif, err); - - // Create a landing page for the given theme - createLandingPage(layout, manifObj).then(landing => { - writeFile(enc(layout.id) + ".html", landing, err) - }); - }).catch(e => console.log("Could not generate the manifest: ", e)) - } -createManifest(new LayoutConfig({ - icon: "./assets/svg/mapcomplete_logo.svg", - id: "index", - language: "en", - layers: [], - maintainer: "Pieter Vander Vennet", - startLat: 0, - startLon: 0, - startZoom: 0, - title: {en: "MapComplete"}, - version: Constants.vNumber, - description: {en: "A thematic map viewer and editor based on OpenStreetMap"} -})).then(manifObj => { - const manif = JSON.stringify(manifObj, undefined, 2); - writeFileSync("index.manifest", manif) -}) +async function main(): Promise{ + -console.log("Counting all translations") -Translations.CountTranslations(); -console.log("All done!"); \ No newline at end of file + const alreadyWritten = [] + createDir("./assets/generated") + createDir("./assets/generated/layers") + createDir("./assets/generated/themes") + + const blacklist = ["", "test", ".", "..", "manifest", "index", "land", "preferences", "account", "openstreetmap", "custom", "theme"] + // @ts-ignore + const all: LayoutConfigJson[] = all_known_layouts.themes; + const args = process.argv + const theme = args[2] + if(theme !== undefined){ + console.warn("Only generating layout "+theme) + } + for (const i in all) { + const layoutConfigJson: LayoutConfigJson = all[i] + if(theme !== undefined && layoutConfigJson.id !== theme){ + continue + } + const layout = new LayoutConfig(layoutConfigJson, true, "generating layouts") + const layoutName = layout.id + if (blacklist.indexOf(layoutName.toLowerCase()) >= 0) { + console.log(`Skipping a layout with name${layoutName}, it is on the blacklist`); + continue; + } + const err = err => { + if (err !== null) { + console.log("Could not write manifest for ", layoutName, " because ", err) + } + }; + await createManifest(layout, alreadyWritten).then(manifObj => { + const manif = JSON.stringify(manifObj, undefined, 2); + const manifestLocation = encodeURIComponent(layout.id.toLowerCase()) + ".webmanifest"; + writeFile(manifestLocation, manif, err); + + // Create a landing page for the given theme + createLandingPage(layout, manifObj).then(landing => { + writeFile(enc(layout.id) + ".html", landing, err) + }); + createIndexFor(layout) + }).catch(e => console.log("Could not generate the manifest: ", e)) + + } + + await createManifest(new LayoutConfig({ + icon: "./assets/svg/mapcomplete_logo.svg", + id: "index", + layers: [], + maintainer: "Pieter Vander Vennet", + socialImage: "assets/SocialImage.png", + startLat: 0, + startLon: 0, + startZoom: 0, + title: {en: "MapComplete"}, + version: Constants.vNumber, + description: {en: "A thematic map viewer and editor based on OpenStreetMap"} + }), alreadyWritten).then(manifObj => { + const manif = JSON.stringify(manifObj, undefined, 2); + writeFileSync("index.manifest", manif) + }) +} + +main().then(() => { + console.log("All done!") +}) \ No newline at end of file diff --git a/scripts/generateLicenseInfo.ts b/scripts/generateLicenseInfo.ts index e6c47b922e..bb8e77cea8 100644 --- a/scripts/generateLicenseInfo.ts +++ b/scripts/generateLicenseInfo.ts @@ -1,10 +1,11 @@ -import {Utils} from "../Utils"; import {existsSync, mkdirSync, readFileSync, unlinkSync, writeFileSync} from "fs"; import SmallLicense from "../Models/smallLicense"; import ScriptUtils from "./ScriptUtils"; -Utils.runningFromConsole = true; +function validateLicenseInfo(l : SmallLicense){ + l.sources.map(s => new URL(s)) +} /** * Sweeps the entire 'assets/' (except assets/generated) directory for image files and any 'license_info.json'-file. * Checks that the license info is included for each of them and generates a compiles license_info.json for those @@ -14,8 +15,6 @@ function generateLicenseInfos(paths: string[]): SmallLicense[] { const licenses = [] for (const path of paths) { try { - - const parsed = JSON.parse(readFileSync(path, "UTF-8")) if (Array.isArray(parsed)) { const l: SmallLicense[] = parsed @@ -25,12 +24,6 @@ function generateLicenseInfos(paths: string[]): SmallLicense[] { licenses.push(...l) } else { const smallLicens: SmallLicense = parsed; - /*if(parsed.license === "CC-BY"){ - console.log("Rewriting ", path) - parsed.license === "CC-BY 4.0" - writeFileSync(path, JSON.stringify(smallLicens, null, " ")) - }*/ - smallLicens.path = path.substring(0, 1 + path.lastIndexOf("/")) + smallLicens.path licenses.push(smallLicens) } @@ -94,6 +87,29 @@ knownLicenses.set("na", { sources: [] }) +knownLicenses.set("tv", { + authors: ["Toerisme Vlaanderen"], + path: undefined, + license: "CC0", + sources: ["https://toerismevlaanderen.be/pinjepunt","https://mapcomplete.osm.be/toerisme_vlaanderenn"] +}) + +knownLicenses.set("tvf", { + authors: ["Jo De Baerdemaeker "], + path: undefined, + license: "All rights reserved", + sources: ["https://www.studiotype.be/fonts/flandersart"] +}) + + + +knownLicenses.set("twemoji", { + authors: ["Twemoji"], + path: undefined, + license: "CC-BY 4.0", + sources: ["https://github.com/twitter/twemoji"] +}) + function promptLicenseFor(path): SmallLicense { console.log("License abbreviations:") @@ -209,6 +225,7 @@ function createFullLicenseOverview(licensePaths) { for (const licensePath of licensePaths) { const licenses = JSON.parse(readFileSync(licensePath, "UTF-8")) for (const license of licenses) { + validateLicenseInfo(license) const dir = licensePath.substring(0, licensePath.length - "license_info.json".length) license.path = dir + license.path allLicenses.push(license) @@ -219,18 +236,29 @@ function createFullLicenseOverview(licensePaths) { } console.log("Checking and compiling license info") -const contents = ScriptUtils.readDirRecSync("./assets") - .filter(entry => entry.indexOf("./assets/generated") != 0) -const licensePaths = contents.filter(entry => entry.indexOf("license_info.json") >= 0) -const licenseInfos = generateLicenseInfos(licensePaths); if (!existsSync("./assets/generated")) { mkdirSync("./assets/generated") } -const artwork = contents.filter(pth => pth.match(/(.svg|.png|.jpg)$/i) != null) +let contents = ScriptUtils.readDirRecSync("./assets") + .filter(entry => entry.indexOf("./assets/generated") != 0) +let licensePaths = contents.filter(entry => entry.indexOf("license_info.json") >= 0) +let licenseInfos = generateLicenseInfos(licensePaths); + + + +const artwork = contents.filter(pth => pth.match(/(.svg|.png|.jpg|.ttf|.otf|.woff)$/i) != null) const missingLicenses = missingLicenseInfos(licenseInfos, artwork) +if (process.argv.indexOf("--prompt") >= 0 || process.argv.indexOf("--query") >= 0) { + queryMissingLicenses(missingLicenses) + contents = ScriptUtils.readDirRecSync("./assets") + .filter(entry => entry.indexOf("./assets/generated") != 0) + licensePaths = contents.filter(entry => entry.indexOf("license_info.json") >= 0) + licenseInfos = generateLicenseInfos(licensePaths); +} + const invalidLicenses = licenseInfos.filter(l => (l.license ?? "") === "").map(l => `License for artwork ${l.path} is empty string or undefined`) for (const licenseInfo of licenseInfos) { for (const source of licenseInfo.sources) { @@ -244,9 +272,7 @@ for (const licenseInfo of licenseInfos) { } } } -if (process.argv.indexOf("--prompt") >= 0 || process.argv.indexOf("--query") >= 0) { - queryMissingLicenses(missingLicenses) -} + if (missingLicenses.length > 0) { const msg = `There are ${missingLicenses.length} licenses missing and ${invalidLicenses.length} invalid licenses.` console.log(missingLicenses.concat(invalidLicenses).join("\n")) diff --git a/scripts/generateTaginfoProjectFiles.ts b/scripts/generateTaginfoProjectFiles.ts index 58166a11c0..2b2f2ef6b7 100644 --- a/scripts/generateTaginfoProjectFiles.ts +++ b/scripts/generateTaginfoProjectFiles.ts @@ -1,4 +1,3 @@ -import {Utils} from "../Utils"; import {AllKnownLayouts} from "../Customizations/AllKnownLayouts"; import Locale from "../UI/i18n/Locale"; import {Translation} from "../UI/i18n/Translation"; @@ -6,9 +5,6 @@ import {readFileSync, writeFileSync} from "fs"; import LayoutConfig from "../Models/ThemeConfig/LayoutConfig"; import LayerConfig from "../Models/ThemeConfig/LayerConfig"; -Utils.runningFromConsole = true; - - /** * Generates all the files in "Docs/TagInfo". These are picked up by the taginfo project, showing a link to the mapcomplete theme if the key is used */ diff --git a/scripts/generateTileOverview.ts b/scripts/generateTileOverview.ts new file mode 100644 index 0000000000..24445f2fa0 --- /dev/null +++ b/scripts/generateTileOverview.ts @@ -0,0 +1,50 @@ +/** + * Generates an overview for which tiles exist and which don't + */ +import ScriptUtils from "./ScriptUtils"; +import {writeFileSync} from "fs"; + +function main(args: string[]) { + + const directory = args[0] + let zoomLevel = args[1] + const files = ScriptUtils.readDirRecSync(directory, 1) + .filter(f => f.endsWith(".geojson")) + + const indices /* Map*/ = {} + for (const path of files) { + + const match = path.match(".*_\([0-9]*\)_\([0-9]*\)_\([0-9]*\).geojson") + if (match === null) { + continue + } + const z = match[1] + if (zoomLevel === undefined) { + zoomLevel = z + } else if (zoomLevel !== z) { + throw "Mixed zoomlevels detected" + } + + const x = match[2] + const y = match[3] + if (indices[x] === undefined) { + indices[x] = [] + } + indices[x].push(Number(y)) + } + indices["zoom"] = zoomLevel; + const match = files[0].match("\(.*\)_\([0-9]*\)_\([0-9]*\)_\([0-9]*\).geojson") + const path = match[1] + "_" + zoomLevel + "_overview.json" + writeFileSync(path, JSON.stringify(indices)) + console.log("Written overview for", files.length, " tiles at", path) +} + +let args = [...process.argv] +args.splice(0, 2) +args.forEach(file => { + try { + main(args) + } catch (e) { + console.error("Could not handle file ", file, " due to ", e) + } +}) \ No newline at end of file diff --git a/scripts/generateTranslations.ts b/scripts/generateTranslations.ts index 41d4f0ebee..a458af85ca 100644 --- a/scripts/generateTranslations.ts +++ b/scripts/generateTranslations.ts @@ -9,6 +9,11 @@ class TranslationPart { contents: Map = new Map() + /** + * Add a leaf object + * @param language + * @param obj + */ add(language: string, obj: any) { for (const key in obj) { const v = obj[key] @@ -36,7 +41,7 @@ class TranslationPart { } const v = translations[translationsKey] if (typeof (v) != "string") { - console.error("Non-string object in translation while trying to add more translations to '", translationsKey, "': ", v) + console.error(`Non-string object at ${context} in translation while trying to add more translations to '` + translationsKey + "': ", v) throw "Error in an object depicting a translation: a non-string object was found. (" + context + ")\n You probably put some other section accidentally in the translation" } this.contents.set(translationsKey, v) @@ -135,6 +140,94 @@ class TranslationPart { } return `{${parts.join(",")}}`; } + + /** + * Recursively adds a translation object, the inverse of 'toJson' + * @param language + * @param object + * @private + */ + private addTranslation(language: string, object: any){ + for (const key in object) { + const v = object[key] + let subpart = this.contents.get(key) + if(subpart === undefined){ + subpart = new TranslationPart() + this.contents.set(key, subpart) + } + if(typeof v === "string"){ + subpart.contents.set(language, v) + }else{ + subpart.addTranslation(language, v) + } + } + + } + + static fromDirectory(path): TranslationPart{ + const files = ScriptUtils.readDirRecSync(path, 1).filter(file => file.endsWith(".json")) + const rootTranslation = new TranslationPart() + for (const file of files) { + const content = JSON.parse(readFileSync(file, "UTF8")) + rootTranslation.addTranslation(file.substr(0, file.length - ".json".length), content) + } + return rootTranslation + } + + validateStrict(ctx?:string): void { + const errors = this.validate() + for (const err of errors) { + console.error("ERROR in "+(ctx ?? "")+ " " +err.path.join(".")+"\n "+err.error) + } + if(errors.length > 0){ + throw ctx+" has "+errors.length+" inconsistencies in the translation" + } + } + + /** + * Checks the leaf objects: special values must be present and identical in every leaf + */ + validate(path = []): {error: string, path: string[]} [] { + const errors : {error: string, path: string[]} []= [] + const neededSubparts = new Set() + let isLeaf : boolean = undefined + this.contents.forEach((value, key) => { + if(typeof value === "string"){ + if(isLeaf === undefined){ + isLeaf = true + }else if(!isLeaf){ + errors.push({error:"Mixed node: non-leaf node has translation strings", path: path}) + } + + let subparts: string[] = value.match(/{[^}]*}/g) + if(subparts === null){ + if(neededSubparts.size > 0){ + errors.push({error:"The translation for "+key+" does not have any subparts, but expected "+Array.from(neededSubparts).join(",")+" . The full translation is "+value, path: path}) + } + return + } + + subparts = subparts.map(p => p.split(/\(.*\)/)[0]) + + neededSubparts.forEach(part => { + if(subparts.indexOf(part) < 0){ + errors.push({error:"The translation for "+key+" does not have the required subpart "+part+". The full translation is "+value, path: path}) + } + }) + + for (const subpart of subparts) { + neededSubparts.add(subpart) + } + + }else{ + const recErrors = value.validate([...path, key]) + errors.push(...recErrors) + } + }) + + return errors + } + } /** @@ -181,6 +274,32 @@ function transformTranslation(obj: any, depth = 1) { } +function sortKeys(o: object): object{ + const keys = Object.keys(o) + keys.sort() + const nw = {} + for (const key of keys) { + const v = o[key] + if(typeof v === "object"){ + nw[key] = sortKeys(v) + }else{ + nw[key] = v + } + } + return nw +} + +/** + * Formats the specified file, helps to prevent merge conflicts + * */ +function formatFile(path) { + let contents = JSON.parse(readFileSync(path, "utf8")) + + contents = sortKeys(contents) + + writeFileSync(path, JSON.stringify(contents, null, " ")) +} + /** * Generates the big compiledTranslations file */ @@ -194,7 +313,6 @@ function genTranslations() { fs.writeFileSync("./assets/generated/CompiledTranslations.ts", module); - } /** @@ -206,12 +324,20 @@ function compileTranslationsFromWeblate() { .filter(path => path.indexOf(".json") > 0) const allTranslations = new TranslationPart() - + + allTranslations.validateStrict() + + for (const translationFile of translations) { - const contents = JSON.parse(readFileSync(translationFile, "utf-8")); - let language = translationFile.substring(translationFile.lastIndexOf("/") + 1) - language = language.substring(0, language.length - 5) - allTranslations.add(language, contents) + try { + + const contents = JSON.parse(readFileSync(translationFile, "utf-8")); + let language = translationFile.substring(translationFile.lastIndexOf("/") + 1) + language = language.substring(0, language.length - 5) + allTranslations.add(language, contents) + } catch (e) { + throw "Could not read file " + translationFile + " due to " + e + } } writeFileSync("./assets/generated/translations.json", JSON.stringify(JSON.parse(allTranslations.toJson()), null, " ")) @@ -223,7 +349,7 @@ function compileTranslationsFromWeblate() { * @param objects * @param target */ -function generateTranslationsObjectFrom(objects: { path: string, parsed: { id: string } }[], target: string) { +function generateTranslationsObjectFrom(objects: { path: string, parsed: { id: string } }[], target: string): string[] { const tr = new TranslationPart(); for (const layerFile of objects) { @@ -245,13 +371,14 @@ function generateTranslationsObjectFrom(objects: { path: string, parsed: { id: s let json = tr.toJson(lang) try { - json = JSON.stringify(JSON.parse(json), null, " "); + json = JSON.stringify(JSON.parse(json), null, " "); // MUST BE FOUR SPACES } catch (e) { console.error(e) } writeFileSync(`langs/${target}/${lang}.json`, json) } + return langs } /** @@ -360,7 +487,7 @@ function mergeLayerTranslations() { const layerFiles = ScriptUtils.getLayerFiles(); for (const layerFile of layerFiles) { mergeLayerTranslation(layerFile.parsed, layerFile.path, loadTranslationFilesFrom("layers")) - writeFileSync(layerFile.path, JSON.stringify(layerFile.parsed, null, " ")) + writeFileSync(layerFile.path, JSON.stringify(layerFile.parsed, null, " ")) // layers use 2 spaces } } @@ -373,16 +500,9 @@ function mergeThemeTranslations() { const config = themeFile.parsed; mergeLayerTranslation(config, themeFile.path, loadTranslationFilesFrom("themes")) - const oldLanguages = config.language; const allTranslations = new TranslationPart(); allTranslations.recursiveAdd(config, themeFile.path) - const newLanguages = allTranslations.knownLanguages() - const languageDiff = newLanguages.filter(l => oldLanguages.indexOf(l) < 0).join(", ") - if (languageDiff !== "") { - config.language = newLanguages; - console.log(" :hooray: Got a new language for theme", config.id, ":", languageDiff) - } - writeFileSync(themeFile.path, JSON.stringify(config, null, " ")) + writeFileSync(themeFile.path, JSON.stringify(config, null, " ")) // Themefiles use 2 spaces } } @@ -400,14 +520,29 @@ if (!themeOverwritesWeblate) { } else { console.log("Ignore weblate") } -generateTranslationsObjectFrom(ScriptUtils.getLayerFiles(), "layers") -generateTranslationsObjectFrom(ScriptUtils.getThemeFiles(), "themes") +const l1 = generateTranslationsObjectFrom(ScriptUtils.getLayerFiles(), "layers") +const l2 = generateTranslationsObjectFrom(ScriptUtils.getThemeFiles().filter(th => th.parsed.mustHaveLanguage === undefined), "themes") +const l3 = generateTranslationsObjectFrom([{path: questionsPath, parsed: questionsParsed}], "shared-questions") -generateTranslationsObjectFrom([{path: questionsPath, parsed: questionsParsed}], "shared-questions") +const usedLanguages = Utils.Dedup(l1.concat(l2).concat(l3)).filter(v => v !== "*") +usedLanguages.sort() +fs.writeFileSync("./assets/generated/used_languages.json", JSON.stringify({languages: usedLanguages})) if (!themeOverwritesWeblate) { // Generates the core translations compileTranslationsFromWeblate(); } -genTranslations() \ No newline at end of file +genTranslations() +const allTranslationFiles = ScriptUtils.readDirRecSync("langs").filter(path => path.endsWith(".json")) +for (const path of allTranslationFiles) { + console.log("Formatting ", path) + formatFile(path) +} + + +// SOme validation +TranslationPart.fromDirectory("./langs").validateStrict("./langs") +TranslationPart.fromDirectory("./langs/layers").validateStrict("layers") +TranslationPart.fromDirectory("./langs/themes").validateStrict("themes") +TranslationPart.fromDirectory("./langs/shared-questions").validateStrict("shared-questions") diff --git a/scripts/generateWikiPage.ts b/scripts/generateWikiPage.ts index 688dfd2fed..1c06c0f531 100644 --- a/scripts/generateWikiPage.ts +++ b/scripts/generateWikiPage.ts @@ -1,26 +1,24 @@ -import {Utils} from "../Utils"; 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" -Utils.runningFromConsole = true; - - -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>/, "]]") @@ -35,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 2d0498971d..460eb8c874 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/Conversion/LegacyJsonConvert"; /* * This script reads all theme and layer files and reformats them inplace @@ -9,12 +9,20 @@ import LegacyJsonConvert from "../Models/ThemeConfig/LegacyJsonConvert"; const layerFiles = ScriptUtils.getLayerFiles(); for (const layerFile of layerFiles) { - LegacyJsonConvert.fixLayerConfig(layerFile.parsed) - writeFileSync(layerFile.path, JSON.stringify(layerFile.parsed, null, " ")) + try { + const fixed = new UpdateLegacyLayer().convertStrict(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) + } } const themeFiles = ScriptUtils.getThemeFiles() for (const themeFile of themeFiles) { - LegacyJsonConvert.fixThemeConfig(themeFile.parsed) - writeFileSync(themeFile.path, JSON.stringify(themeFile.parsed, null, " ")) + try { + const fixed = new FixLegacyTheme().convertStrict(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/makeConvex.ts b/scripts/makeConvex.ts new file mode 100644 index 0000000000..ddcca08189 --- /dev/null +++ b/scripts/makeConvex.ts @@ -0,0 +1,30 @@ +import fs from "fs"; +import {GeoOperations} from "../Logic/GeoOperations"; +import ScriptUtils from "./ScriptUtils"; + +/** + * Given one of more files, calculates a somewhat convex hull for them + * @param file + */ + +function makeConvex(file) { + ScriptUtils.erasableLog("Handling", file) + const geoJson = JSON.parse(fs.readFileSync(file, "UTF8")) + const convex = GeoOperations.convexHull(geoJson, {concavity: 2}) + if (convex.properties === undefined) { + convex.properties = {} + } + fs.writeFileSync(file + ".convex.geojson", JSON.stringify(convex)) + +} + + +let args = [...process.argv] +args.splice(0, 2) +args.forEach(file => { + try { + makeConvex(file) + } catch (e) { + console.error("Could not handle file ", file, " due to ", e) + } +}) \ No newline at end of file diff --git a/scripts/perProperty.ts b/scripts/perProperty.ts new file mode 100644 index 0000000000..9349499d15 --- /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/createRoutablePoint.ts b/scripts/postal_code_tools/createRoutablePoint.ts new file mode 100644 index 0000000000..4c1fff40a8 --- /dev/null +++ b/scripts/postal_code_tools/createRoutablePoint.ts @@ -0,0 +1,92 @@ +import {appendFileSync, existsSync, readFileSync, writeFileSync} from "fs"; +import {GeoOperations} from "../../Logic/GeoOperations"; +import ScriptUtils from "../ScriptUtils"; +import {Utils} from "../../Utils"; + + +async function main(args: string[]) { +ScriptUtils.fixUtils() + const pointCandidates = JSON.parse(readFileSync(args[0], "utf8")) + const postcodes = JSON.parse(readFileSync(args[1], "utf8")) + const output = args[2] ?? "centralCoordinates.csv" + + const perPostCode = new Map() + + const alreadyLoaded = new Set() + if (existsSync(output)) { + const lines = readFileSync(output, "UTF8").split("\n") + lines.shift() + lines.forEach(line => { + const postalCode = Number(line.split(",")[0]) + alreadyLoaded.add(postalCode) + }) + } else { + writeFileSync(output, "postal_code,lon,lat\n", "UTF-8") + } + + for (const boundary of postcodes.features) { + const postcode = boundary.properties.nouveau_PO + if (alreadyLoaded.has(Number(postcode))) { + console.log("Skipping ", postcode, "as already loaded") + continue + } + if (perPostCode.has(postcode)) { + perPostCode.get(postcode).push(boundary) + } else { + perPostCode.set(postcode, [boundary]) + } + + } + + for (const postcode of Array.from(perPostCode.keys())) { + const boundaries = perPostCode.get(postcode) + const candidates = [] + for (const boundary of boundaries) { + for (const candidate of pointCandidates.features) { + if (!GeoOperations.inside(candidate, boundary)) { + // console.log(JSON.stringify(candidate)) + continue + } + candidates.push(candidate.geometry.coordinates) + + } + } + if (candidates.length === 0) { + console.log("Postcode ", postcode, "has", candidates.length, "candidates, using centerpoint instead") + candidates.push(...boundaries.map(boundary => GeoOperations.centerpointCoordinates(boundary))) + } + + + const url = "https://staging.anyways.eu/routing-api/v1/routes?access_token=postal_code_script&turn_by_turn=false&format=geojson&language=en" + const depPoints: [number, number][] = Utils.NoNull(await Promise.all(candidates.map(async candidate => { + try { + + const result = await Utils.downloadJson(url + "&loc=" + candidate.join("%2C") + "&loc=3.22000%2C51.21577&profile=car.short") + const depPoint = result.features.filter(f => f.geometry.type === "LineString")[0].geometry.coordinates[0] + return <[number, number]>[depPoint[0], depPoint[1]] // Drop elevation + } catch (e) { + console.error("No result or could not calculate a route") + } + }))) + + const centers = boundaries.map(b => GeoOperations.centerpointCoordinates(b)) + const center = GeoOperations.centerpointCoordinates({ + type: "Feature", + geometry: { + type: "LineString", + coordinates: centers + } + }) + + depPoints.sort((c0, c1) => GeoOperations.distanceBetween(c0, center) - GeoOperations.distanceBetween(c1, center)) + console.log("Sorted departure point candidates for ", postcode, " are ", JSON.stringify(depPoints)) + appendFileSync(output, [postcode, ...depPoints[0]].join(", ") + "\n", "UTF-8") + } + + +} + + +let args = [...process.argv] +args.splice(0, 2) +main(args).then(_ => console.log("Done!")) \ No newline at end of file diff --git a/scripts/postal_code_tools/genPostal.sh b/scripts/postal_code_tools/genPostal.sh new file mode 100755 index 0000000000..1784daba42 --- /dev/null +++ b/scripts/postal_code_tools/genPostal.sh @@ -0,0 +1,5 @@ +#! /bin/bash + +# npm run generate:layeroverview +cd ../.. +ts-node scripts/generateCache.ts postal_codes 8 /home/pietervdvn/Downloads/postal_codes 49.69606181911566 2.373046875 51.754240074033525 6.459960937499999 --generate-point-overview '*' --force-zoom-level 1 \ No newline at end of file diff --git a/scripts/postal_code_tools/genWallonia.sh b/scripts/postal_code_tools/genWallonia.sh new file mode 100644 index 0000000000..ba6e85cb3a --- /dev/null +++ b/scripts/postal_code_tools/genWallonia.sh @@ -0,0 +1,14 @@ +#! /bin/bash + +# Generates data for the wallonia address dataset: convex hulls for postal code outlines, tiled address files for import + +wget https://opendata.bosa.be/download/best/openaddress-bewal.zip +unzip openaddress-bewal.zip +rm openaddress-bewal.zip +mkdir data +mkdir tiles +mv openaddress-bewal.csv data/ +ts-node openaddressestogeojson.ts data/openaddress-bewal.csv data/openaddress --per-postal-code +ts-node openaddressestogeojson.ts data/openaddress-bewal.csv data/openaddress.geojson.nljson +ts-node ../slice.ts data/openaddress.geojson.nljson 14 tiles/ + diff --git a/scripts/postal_code_tools/knownPostalCodes.csv b/scripts/postal_code_tools/knownPostalCodes.csv new file mode 100644 index 0000000000..c8b605cdf3 --- /dev/null +++ b/scripts/postal_code_tools/knownPostalCodes.csv @@ -0,0 +1,865 @@ +relation/3132739,9000 +relation/3139053,9042 +relation/3360497,2812 +relation/3362712,2840 +relation/3362870,2880 +relation/3363489,2550 +relation/3363494,2570 +relation/3363502,2850 +relation/3363503,2820 +relation/3363507,2845 +relation/3363508,2630 +relation/3363512,2610 +relation/3363513,2650 +relation/3363518,2600 +relation/3363519,2640 +relation/3363541,2620 +relation/3363542,2627 +relation/3363543,2660 +relation/3363545,2830 +relation/3363546,2870 +relation/3363558,2150 +relation/3363559,2160 +relation/3363560,2530 +relation/3363561,2531 +relation/3363578,2540 +relation/3363579,2547 +relation/3363583,2520 +relation/3363592,2970 +relation/3363595,2100 +relation/3363596,2110 +relation/3363734,2040 +relation/3363834,2940 +relation/3363845,2910 +relation/3363847,2990 +relation/3363868,2980 +relation/3363869,2330 +relation/3363873,2370 +relation/3363878,2470 +relation/3363879,2480 +relation/3363881,2400 +relation/3363885,2340 +relation/3363886,2350 +relation/3363890,2275 +relation/3363892,2290 +relation/3363893,2200 +relation/3363894,2250 +relation/3363897,2260 +relation/3364558,2320 +relation/3364559,2321 +relation/3364560,2322 +relation/3364561,2323 +relation/3364562,2328 +relation/3364725,2280 +relation/3364726,2288 +relation/3364735,2270 +relation/3364739,2235 +relation/3364741,2230 +relation/3364742,2440 +relation/3364743,2460 +relation/3364745,2450 +relation/3364748,3560 +relation/3364754,3920 +relation/3364759,3900 +relation/3364761,3930 +relation/3364762,3910 +relation/3364768,3960 +relation/3364769,3950 +relation/3364771,3990 +relation/3364772,3670 +relation/3364789,3660 +relation/3364795,3640 +relation/3364804,3680 +relation/3364806,3550 +relation/3364812,3520 +relation/3364813,3600 +relation/3364815,3590 +relation/3364821,3690 +relation/3364825,3770 +relation/3364826,3700 +relation/3364827,3840 +relation/3364829,3870 +relation/3364833,3440 +relation/3364835,3350 +relation/3364836,3300 +relation/3364838,4287 +relation/3364841,1357 +relation/3364842,3540 +relation/3364845,3570 +relation/3364847,3980 +relation/3364848,3370 +relation/3364851,3360 +relation/3364852,3040 +relation/3365424,2030 +relation/3365426,2170 +relation/3365439,2950 +relation/3365440,2180 +relation/3365441,2930 +relation/3365442,2920 +relation/3365443,2900 +relation/3365444,2960 +relation/3365445,2390 +relation/3365447,2310 +relation/3365684,2050 +relation/3365779,2020 +relation/3365990,2500 +relation/3366032,2060 +relation/3366102,2000 +relation/3366103,2018 +relation/3366216,2590 +relation/3366218,2580 +relation/3366219,2560 +relation/3366245,3140 +relation/3366247,3130 +relation/3366250,3150 +relation/3366251,1910 +relation/3366254,1820 +relation/3366255,1800 +relation/3366258,1880 +relation/3366260,1840 +relation/3366261,9255 +relation/3366264,1780 +relation/3366265,1785 +relation/3366268,2890 +relation/3366269,1745 +relation/3366272,9280 +relation/3366273,9200 +relation/3366275,9220 +relation/3366276,9240 +relation/3366277,9140 +relation/3366282,9150 +relation/3366288,2070 +relation/3366289,9170 +relation/3366292,9190 +relation/3366294,9250 +relation/3366296,9160 +relation/3366298,9080 +relation/3366299,9180 +relation/3366301,9060 +relation/3366302,9290 +relation/3366305,9260 +relation/3366308,9340 +relation/3366309,9420 +relation/3366312,9230 +relation/3366318,9270 +relation/3366320,9070 +relation/3366321,9090 +relation/3366325,9860 +relation/3366344,9185 +relation/3366347,9940 +relation/3366348,9900 +relation/3366355,9910 +relation/3366358,8340 +relation/3366360,8730 +relation/3366362,8377 +relation/3366364,8490 +relation/3366366,8370 +relation/3366383,2140 +relation/3366390,8300 +relation/3366392,8301 +relation/3366396,8380 +relation/3366400,8310 +relation/3366410,8200 +relation/3366411,8000 +relation/3366414,8470 +relation/3366415,8400 +relation/3366421,8450 +relation/3366423,8620 +relation/3366426,8670 +relation/3366427,8660 +relation/3366428,8630 +relation/3366433,8600 +relation/3366434,8820 +relation/3366435,8480 +relation/3366436,8680 +relation/3366442,8430 +relation/3366446,8431 +relation/3366454,8432 +relation/3366457,8434 +relation/3366462,8433 +relation/3366463,3000 +relation/3366464,3001 +relation/3366465,3010 +relation/3366466,3012 +relation/3366467,3018 +relation/3366516,3020 +relation/3366517,3118 +relation/3366561,3110 +relation/3366562,3111 +relation/3366812,8020 +relation/3366814,8211 +relation/3366818,8210 +relation/3366820,8750 +relation/3366822,8830 +relation/3366823,8840 +relation/3366829,8690 +relation/3366830,8691 +relation/3366874,8647 +relation/3366876,8640 +relation/3366879,8978 +relation/3366883,8970 +relation/3366888,8972 +relation/3367188,8908 +relation/3367195,8906 +relation/3367200,8904 +relation/3367229,8902 +relation/3367235,8900 +relation/3367255,8952 +relation/3367260,8953 +relation/3367485,8950 +relation/3367488,8951 +relation/3367525,8954 +relation/3367526,8956 +relation/3367528,8958 +relation/3367534,8957 +relation/3367536,8980 +relation/3367990,8880 +relation/3367991,8890 +relation/3367995,8920 +relation/3367997,8650 +relation/3368005,8610 +relation/3368013,8810 +relation/3368014,8850 +relation/3368033,8851 +relation/3368036,8740 +relation/3368038,8800 +relation/3368047,8870 +relation/3368056,8770 +relation/3368057,8700 +relation/3368059,8755 +relation/3368064,8760 +relation/3368066,8860 +relation/3368070,8940 +relation/3368084,8930 +relation/3368087,8560 +relation/3368088,8511 +relation/3368096,8720 +relation/3368099,8780 +relation/3368101,8710 +relation/3368108,8531 +relation/3368115,8792 +relation/3368119,8791 +relation/3368120,8193 +relation/3368124,8790 +relation/3368132,8540 +relation/3368143,8530 +relation/3368151,8520 +relation/3368162,8501 +relation/3368167,8510 +relation/3368549,8500 +relation/3368551,8550 +relation/3368552,8551 +relation/3368553,8552 +relation/3368866,8554 +relation/3368867,8587 +relation/3368870,8580 +relation/3368872,8581 +relation/3368875,8582 +relation/3368878,8583 +relation/3368879,8553 +relation/3368881,8572 +relation/3368884,8573 +relation/3368890,8570 +relation/3368898,9790 +relation/3368899,9750 +relation/3368903,9870 +relation/3368904,9700 +relation/3368906,9690 +relation/3368908,9600 +relation/3368920,9661 +relation/3368951,9660 +relation/3369135,2240 +relation/3369136,2242 +relation/3369137,2243 +relation/3369141,2300 +relation/3369143,2360 +relation/3369202,2380 +relation/3369203,2381 +relation/3369204,2382 +relation/3369409,2220 +relation/3369410,2221 +relation/3369411,2222 +relation/3369412,2223 +relation/3369532,2800 +relation/3369533,2801 +relation/3369534,2811 +relation/3369670,2430 +relation/3369671,2431 +relation/3369708,2490 +relation/3369709,2491 +relation/3373522,9120 +relation/3373523,9130 +relation/3376627,9112 +relation/3376836,9100 +relation/3376837,9111 +relation/3379410,1000 +relation/3379411,1020 +relation/3379412,1030 +relation/3379413,1040 +relation/3379414,1050 +relation/3379415,1060 +relation/3379416,1070 +relation/3379417,1080 +relation/3379418,1081 +relation/3379419,1082 +relation/3379420,1083 +relation/3379421,1090 +relation/3379422,1120 +relation/3379423,1130 +relation/3379424,1140 +relation/3379425,1150 +relation/3379426,1160 +relation/3379427,1170 +relation/3379428,1180 +relation/3379429,1190 +relation/3379430,1200 +relation/3379431,1210 +relation/3382866,1730 +relation/3382867,1731 +relation/3388165,2860 +relation/3388166,2861 +relation/3388219,9960 +relation/3388220,9961 +relation/3388221,9968 +relation/3388426,9320 +relation/3389084,9300 +relation/3389085,9308 +relation/3389086,9310 +relation/3389796,9450 +relation/3389797,9451 +relation/3389820,9403 +relation/3389821,9406 +relation/3390349,9400 +relation/3390350,9401 +relation/3390351,9402 +relation/3390352,9404 +relation/3390505,9470 +relation/3390506,9472 +relation/3390507,9473 +relation/3395144,9040 +relation/3395438,9500 +relation/3395439,9506 +relation/3395501,9550 +relation/3395502,9551 +relation/3395503,9552 +relation/3395517,9620 +relation/3395616,9570 +relation/3395617,9571 +relation/3395618,9572 +relation/3396269,9520 +relation/3396270,9521 +relation/3401812,9680 +relation/3401813,9681 +relation/3401814,9688 +relation/3402433,9630 +relation/3402434,9636 +relation/3402455,9890 +relation/3402463,9820 +relation/3402467,9667 +relation/3402498,9770 +relation/3402499,9771 +relation/3402512,9810 +relation/3402518,9840 +relation/3402538,9830 +relation/3402539,9831 +relation/3402546,9800 +relation/3402556,9920 +relation/3402557,9921 +relation/3402566,9950 +relation/3402584,9772 +relation/3464939,9990 +relation/3464940,9991 +relation/3464941,9992 +relation/3465067,9980 +relation/3465068,9988 +relation/3465069,9981 +relation/3465070,9982 +relation/3465093,9970 +relation/3465094,9971 +relation/3465186,9930 +relation/3465187,9931 +relation/3465188,9932 +relation/3465267,9850 +relation/3465316,9880 +relation/3465317,9881 +relation/3465327,8421 +relation/3465330,8420 +relation/3465348,8460 +relation/3465364,1860 +relation/3465365,1861 +relation/3479470,3190 +relation/3479471,3191 +relation/3479494,1980 +relation/3479495,1981 +relation/3479536,1850 +relation/3479537,1851 +relation/3479538,1852 +relation/3479539,1853 +relation/3479592,1830 +relation/3479593,1831 +relation/3479621,3070 +relation/3479622,3071 +relation/3479623,3078 +relation/3479665,1930 +relation/3479666,1932 +relation/3479667,1933 +relation/3479696,3080 +relation/3479742,1970 +relation/3479744,1950 +relation/3479747,3090 +relation/3479750,1560 +relation/3479798,3060 +relation/3479799,3061 +relation/3479847,3050 +relation/3479848,3051 +relation/3479849,3052 +relation/3479850,3053 +relation/3479851,3054 +relation/3479860,1982 +relation/3754121,9050 +relation/3754122,9051 +relation/3867174,3120 +relation/3867175,3128 +relation/3891769,3945 +relation/3891778,3545 +relation/3895654,3970 +relation/3895655,3971 +relation/3929631,3940 +relation/3929632,3941 +relation/3930000,3581 +relation/3930143,3583 +relation/3931049,3580 +relation/3931050,3582 +relation/3939002,3530 +relation/3942151,3850 +relation/3942525,3210 +relation/3942526,3211 +relation/3942527,3212 +relation/3942584,1790 +relation/3942585,1770 +relation/3942600,1547 +relation/3942703,1570 +relation/3942876,1755 +relation/3942878,1750 +relation/3942890,1620 +relation/3942912,1630 +relation/3942913,1640 +relation/3943013,9032 +relation/3943014,9041 +relation/3943048,9030 +relation/3943055,9031 +relation/3943102,9052 +relation/3945536,3220 +relation/3945537,3221 +relation/3950158,1740 +relation/3950159,1741 +relation/3950160,1742 +relation/3953991,1761 +relation/3954045,1760 +relation/3962684,1702 +relation/3964740,3320 +relation/3964741,3321 +relation/3977259,3717 +relation/4011593,1703 +relation/4012641,1700 +relation/4012642,1701 +relation/4017007,7730 +relation/4017128,7760 +relation/4017129,7750 +relation/4017304,7611 +relation/4017305,7610 +relation/4017306,7618 +relation/4017348,7624 +relation/4017358,7623 +relation/4017376,7621 +relation/4017450,7620 +relation/4017452,7622 +relation/4017512,7643 +relation/4017569,7642 +relation/4017570,7641 +relation/4017582,7640 +relation/4017842,7350 +relation/4017852,7382 +relation/4017853,7380 +relation/4018917,7370 +relation/4062084,7600 +relation/4062085,7601 +relation/4069650,7340 +relation/4069687,7080 +relation/4072281,7390 +relation/4072445,7050 +relation/4072459,7870 +relation/4072510,7830 +relation/4072511,7850 +relation/4072560,1430 +relation/4072656,7090 +relation/4072686,7070 +relation/4103968,1650 +relation/4103969,1651 +relation/4103970,1652 +relation/4103971,1653 +relation/4103972,1654 +relation/4104019,1601 +relation/4104200,1600 +relation/4104201,1602 +relation/4105502,1501 +relation/4105926,1500 +relation/4105927,1502 +relation/4108139,1671 +relation/4109781,1670 +relation/4109782,1673 +relation/4109783,1674 +relation/4109911,1540 +relation/4109912,1541 +relation/4186134,3501 +relation/4189269,3500 +relation/4193628,3512 +relation/4196096,3510 +relation/4196328,3650 +relation/4198359,3511 +relation/4203185,7170 +relation/4203186,7160 +relation/4215710,3665 +relation/4215711,3668 +relation/4218236,7120 +relation/4218237,6560 +relation/4218238,6567 +relation/4220905,6470 +relation/4235983,6000 +relation/4236044,6001 +relation/4236045,6010 +relation/4236122,6020 +relation/4236123,6030 +relation/4236155,6031 +relation/4236156,6032 +relation/4236191,6040 +relation/4236198,6041 +relation/4236232,6042 +relation/4236233,6043 +relation/4236263,6044 +relation/4236299,6060 +relation/4236300,6061 +relation/4238953,6120 +relation/4238988,6150 +relation/4239031,6200 +relation/4239038,6211 +relation/4239165,6210 +relation/4240188,6224 +relation/4240192,6223 +relation/4240196,6222 +relation/4240197,6221 +relation/4240223,6220 +relation/4253515,6230 +relation/4253516,6238 +relation/4253571,6240 +relation/4253578,6250 +relation/4253589,6280 +relation/4253627,7180 +relation/4253628,7181 +relation/4253646,6500 +relation/4253647,6511 +relation/4253781,1480 +relation/4473118,3830 +relation/4476408,3730 +relation/4478844,3200 +relation/4478891,3201 +relation/4478892,3202 +relation/4479876,3831 +relation/4479877,3832 +relation/4479929,3720 +relation/4479930,3721 +relation/4479931,3722 +relation/4479932,3723 +relation/4479933,3724 +relation/4479946,3732 +relation/4480724,3293 +relation/4480743,3290 +relation/4480744,3294 +relation/4482775,3746 +relation/4492492,3270 +relation/4493465,3742 +relation/4494368,3271 +relation/4494369,3272 +relation/4497124,3798 +relation/4497188,3792 +relation/4497356,3790 +relation/4497379,3791 +relation/4497380,3793 +relation/4635621,3390 +relation/4635622,3391 +relation/4636469,3460 +relation/4636470,3461 +relation/4641362,3450 +relation/4641363,3454 +relation/4642674,3380 +relation/4642675,3381 +relation/4642676,3384 +relation/4644584,3473 +relation/4644666,3472 +relation/4644681,3470 +relation/4644682,3471 +relation/4677616,3401 +relation/4677870,3404 +relation/4678417,3400 +relation/4681897,3800 +relation/4681898,3803 +relation/4681899,3806 +relation/4713840,3740 +relation/4714602,3621 +relation/4714658,3620 +relation/4717645,3631 +relation/4717688,3630 +relation/4720905,3890 +relation/4720907,3891 +relation/4727591,1315 +relation/4727592,1320 +relation/4727593,1350 +relation/4727594,1360 +relation/4727595,1367 +relation/4727596,1370 +relation/4727602,1390 +relation/4727606,1325 +relation/4727607,1457 +relation/4727631,1310 +relation/4727632,1331 +relation/4727641,1330 +relation/4727642,1332 +relation/4727648,1410 +relation/4727654,1380 +relation/4727658,1440 +relation/4727668,1420 +relation/4727671,1421 +relation/4727712,1460 +relation/4727713,1461 +relation/4727724,1435 +relation/4727727,1450 +relation/4727732,1495 +relation/4727733,1490 +relation/4727759,1342 +relation/4727761,1341 +relation/4728040,7608 +relation/5720163,1428 +relation/5721127,1401 +relation/5721133,1404 +relation/5724081,1402 +relation/5724100,1400 +relation/5724109,1476 +relation/5724114,1473 +relation/5724115,1471 +relation/5724131,1474 +relation/5724280,1472 +relation/5724305,1470 +relation/5726870,5140 +relation/6343119,1300 +relation/6517171,59150 +relation/8345160,1340 +relation/8345161,1348 +relation/9520110,7940 +relation/9622112,6724 +relation/9706199,4970 +relation/9706200,4960 +relation/9708979,4790 +relation/9721913,4760 +relation/9721914,4750 +relation/9721915,4770 +relation/9721916,4950 +relation/9721917,4780 +relation/9724931,5150 +relation/9730734,4987 +relation/9792735,4990 +relation/9938886,4837 +relation/9970249,4820 +relation/9970250,4821 +relation/10143396,4877 +relation/10184618,4870 +relation/10184619,4861 +relation/10184620,4860 +relation/10284874,4845 +relation/10284875,4910 +relation/10284876,4900 +relation/10308690,6700 +relation/10308691,6704 +relation/10308692,6706 +relation/10312732,6721 +relation/10312733,6720 +relation/10312734,6723 +relation/10619232,6792 +relation/10626187,6630 +relation/10626251,6840 +relation/10626571,6717 +relation/10632750,6747 +relation/10707212,6780 +relation/10893681,4920 +relation/10953767,6890 +relation/10973142,4141 +relation/10973143,4140 +relation/11074457,4190 +relation/11133193,4180 +relation/11133194,4181 +relation/11152476,6990 +relation/11152477,6997 +relation/11152478,6960 +relation/11230847,6637 +relation/11278663,6987 +relation/11294782,6860 +relation/11331902,6640 +relation/11384736,6600 +relation/11485371,6687 +relation/11583045,7783 +relation/11583046,7782 +relation/11583047,7784 +relation/11583048,7780 +relation/11583049,7781 +relation/11584131,7711 +relation/11584132,7712 +relation/11584133,7700 +relation/11599903,7880 +relation/11599904,7890 +relation/11611417,4130 +relation/11611430,7860 +relation/11726320,4653 +relation/11726410,4654 +relation/11736448,4651 +relation/11736449,4652 +relation/11736450,4650 +relation/11798622,4890 +relation/11820267,4880 +relation/11866085,6343 +relation/11965721,4841 +relation/11965722,4840 +relation/12006674,6760 +relation/12009767,6769 +relation/12009804,6730 +relation/12077869,6782 +relation/12077908,6781 +relation/12077926,6741 +relation/12077964,6813 +relation/12077971,6740 +relation/12078017,6742 +relation/12095656,4721 +relation/12095657,4720 +relation/12095658,4728 +relation/12108800,6812 +relation/12108822,6811 +relation/12108981,6810 +relation/12109042,6823 +relation/12115031,6820 +relation/12142985,4731 +relation/12142986,4730 +relation/12192340,4701 +relation/12192341,4700 +relation/12192342,4710 +relation/12192343,4711 +relation/12215466,6887 +relation/12215660,6824 +relation/12215687,6821 +relation/12215831,6831 +relation/12215896,6836 +relation/12247586,4590 +relation/12265101,4161 +relation/12265102,4162 +relation/12265103,4163 +relation/12265104,4160 +relation/12431129,4560 +relation/12452305,4577 +relation/12472225,4570 +relation/12476593,4520 +relation/12476594,4500 +relation/12481068,4550 +relation/12481069,4557 +relation/12553251,4217 +relation/12553252,4210 +relation/12575264,4218 +relation/12593511,4480 +relation/12593512,4537 +relation/12593513,4470 +relation/12593514,4540 +relation/12612191,4530 +relation/12616025,6800 +relation/12616487,6830 +relation/12616501,6832 +relation/12616681,6880 +relation/12751422,4260 +relation/12751423,4280 +relation/12751424,4357 +relation/12751425,4350 +relation/12751426,4360 +relation/12751427,4367 +relation/12751428,4300 +relation/12751429,4250 +relation/12751430,4257 +relation/12818751,6681 +relation/12818787,6680 +relation/12888344,6661 +relation/12888355,6666 +relation/12888356,6663 +relation/12888358,6660 +relation/12888379,6662 +relation/12888625,6688 +relation/12888627,6686 +relation/12901768,6673 +relation/12901769,6674 +relation/12901770,6670 +relation/12901772,6672 +relation/12901773,6671 +relation/12901778,6692 +relation/12901817,6690 +relation/12901819,6698 +relation/12904655,6984 +relation/12904664,6983 +relation/12904688,6986 +relation/12904710,6972 +relation/12904847,6982 +relation/12904861,6980 +relation/12904877,6971 +relation/12904949,6970 +relation/12910224,6870 +relation/12911159,6927 +relation/12911189,6852 +relation/12911214,6856 +relation/12911238,6850 +relation/12911239,6851 +relation/12911525,6924 +relation/12911552,6920 +relation/12911560,6922 +relation/12911593,6921 +relation/12911603,6853 +relation/12911813,6838 +relation/12911859,6834 +relation/12911863,6833 +relation/12922472,6929 +relation/13006513,4219 +relation/13017440,4261 +relation/13017441,4263 +relation/13072253,6940 +relation/13072279,6941 +relation/13075685,6951 +relation/13075686,6952 +relation/13075687,6900 +relation/13075718,6950 +relation/13075724,6953 +relation/13163556,4347 +relation/13219312,4351 +relation/13238973,4317 +relation/13241165,4252 +relation/13241166,4253 +relation/13241167,4254 +relation/13281285,4420 +relation/13281286,4400 +relation/13281287,4460 +relation/13330444,4610 +relation/13330601,4608 +relation/13330602,4606 +relation/13330603,4607 +relation/13375800,4672 +relation/13375801,4671 +relation/13375802,4670 +relation/13435478,4624 +relation/13435479,4623 +relation/13435480,4621 +relation/13435481,4620 +relation/13436023,4631 +relation/13436024,4632 +relation/13436025,4633 +relation/13436026,4630 +relation/13529276,4791 diff --git a/scripts/postal_code_tools/openaddressestogeojson.ts b/scripts/postal_code_tools/openaddressestogeojson.ts new file mode 100644 index 0000000000..e3264a3863 --- /dev/null +++ b/scripts/postal_code_tools/openaddressestogeojson.ts @@ -0,0 +1,127 @@ +import * as fs from "fs"; +import {existsSync, writeFileSync} from "fs"; +import * as readline from "readline"; +import ScriptUtils from "../ScriptUtils"; + +/** + * Converts an open-address CSV file into a big geojson file + */ + +async function main(args: string[]) { + + const inputFile = args[0] + const outputFile = args[1] + const fileStream = fs.createReadStream(inputFile); + const perPostalCode = args[2] == "--per-postal-code" + const rl = readline.createInterface({ + input: fileStream, + crlfDelay: Infinity + }); + // Note: we use the crlfDelay option to recognize all instances of CR LF + // ('\r\n') in input.txt as a single line break. + + const fields = [ + "EPSG:31370_x", "EPSG:31370_y", "EPSG:4326_lat", "EPSG:4326_lon", + "address_id", "box_number", + "house_number", "municipality_id", "municipality_name_de", "municipality_name_fr", "municipality_name_nl", "postcode", "postname_fr", + "postname_nl", "street_id", "streetname_de", "streetname_fr", "streetname_nl", "region_code", "status" + ] + + let i = 0; + let failed = 0 + + let createdFiles: string [] = [] + if (!perPostalCode) { + fs.writeFileSync(outputFile, "") + } + // @ts-ignore + for await (const line of rl) { + i++; + if (i % 10000 == 0) { + ScriptUtils.erasableLog("Converted ", i, "features (of which ", failed, "features don't have a coordinate)") + } + const data = line.split(",") + const parsed: any = {} + for (let i = 0; i < fields.length; i++) { + const field = fields[i]; + parsed[field] = data[i] + } + const lat = Number(parsed["EPSG:4326_lat"]) + const lon = Number(parsed["EPSG:4326_lon"]) + + if (parsed["EPSG:31370_x"] === "0.0") { + failed++ + continue + } + + delete parsed["EPSG:4326_lat"] + delete parsed["EPSG:4326_lon"] + delete parsed["EPSG:31370_x"] + delete parsed["EPSG:31370_y"] + delete parsed["EPSG:4326_lat"] + delete parsed["EPSG:4326_lat"] + + let targetFile = outputFile + if (perPostalCode) { + if (parsed["postcode"] === "") { + continue + } + if (isNaN(Number(parsed["postcode"]))) { + continue; + } + targetFile = outputFile + "-" + parsed["postcode"] + ".geojson" + let isFirst = false + if (!existsSync(targetFile)) { + writeFileSync(targetFile, '{ "type":"FeatureCollection", "features":[') + createdFiles.push(targetFile) + isFirst = true + } + + if (!isFirst) { + fs.appendFileSync(targetFile, ",\n") + } + + fs.appendFileSync(targetFile, JSON.stringify({ + type: "Feature", + properties: parsed, + geometry: { + type: "Point", + coordinates: [lon, lat] + } + })) + + } else { + + + fs.appendFileSync(outputFile, JSON.stringify({ + type: "Feature", + properties: parsed, + geometry: { + type: "Point", + coordinates: [lon, lat] + } + }) + "\n") + } + + + } + + console.log("Closing files...") + createdFiles.sort() + for (const createdFile of createdFiles) { + ScriptUtils.erasableLog("Closing ", createdFile, "and creating convex hull") + fs.appendFileSync(createdFile, "]}") + } + + console.log("Done! Converted ", i, "features (of which ", failed, "features don't have a coordinate)") + +} + +let args = [...process.argv] +args.splice(0, 2) + +if (args.length == 0) { + console.log("USAGE: input-csv-file output.newline-delimited-geojson.json [--per-postal-code]") +} else { + main(args).catch(e => console.error(e)) +} diff --git a/scripts/postal_code_tools/prepPostalCodesHulls.ts b/scripts/postal_code_tools/prepPostalCodesHulls.ts new file mode 100644 index 0000000000..749123ad54 --- /dev/null +++ b/scripts/postal_code_tools/prepPostalCodesHulls.ts @@ -0,0 +1,54 @@ +import * as fs from "fs"; +import {writeFileSync} from "fs"; +import ScriptUtils from "../ScriptUtils"; + +function handleFile(file: string, postalCode: number) { + + const geojson = JSON.parse(fs.readFileSync(file, "UTF8")) + geojson.properties = { + type: "boundary", + "boundary": "postal_code", + "postal_code": postalCode + "" + } + return geojson +} + + +function getKnownPostalCodes(): number[] { + return fs.readFileSync("./scripts/postal_code_tools/knownPostalCodes.csv", "UTF8").split("\n") + .map(line => Number(line.split(",")[1])) +} + +function main(args: string[]) { + const dir = args[0] + const knownPostals = new Set(getKnownPostalCodes()) + const files = ScriptUtils.readDirRecSync(dir, 1) + const allFiles = [] + const skipped = [] + for (const file of files) { + const nameParts = file.split("-") + const postalCodeStr = nameParts[nameParts.length - 1] + const postalCode = Number(postalCodeStr.substr(0, postalCodeStr.length - ".geojson.convex.geojson".length)) + if (isNaN(postalCode)) { + console.error("Not a number: ", postalCodeStr) + continue + } + if (knownPostals.has(postalCode)) { + skipped.push(postalCode) + ScriptUtils.erasableLog("Skipping boundary for ", postalCode, "as it is already known - skipped ", skipped.length, "already") + continue + } + allFiles.push(handleFile(file, postalCode)) + } + + + writeFileSync("all_postal_codes_filtered.geojson", JSON.stringify({ + type: "FeatureCollection", + features: allFiles + })) + +} + +let args = [...process.argv] +args.splice(0, 2) +main(args) \ No newline at end of file diff --git a/scripts/printVersion.ts b/scripts/printVersion.ts index e40773c3e0..204b43283d 100644 --- a/scripts/printVersion.ts +++ b/scripts/printVersion.ts @@ -1,6 +1,3 @@ -import {Utils} from "../Utils"; import Constants from "../Models/Constants"; -Utils.runningFromConsole = true; - console.log("git tag -a", Constants.vNumber, `-m "Deployed on ${new Date()}"`) \ No newline at end of file diff --git a/scripts/resizeSvg.sh b/scripts/resizeSvg.sh new file mode 100755 index 0000000000..e801d691c3 --- /dev/null +++ b/scripts/resizeSvg.sh @@ -0,0 +1,29 @@ +#! /bin/bash + +# Requires `sudo apt-get install librsvg2-bin` +# $1 should be the file + +resizeFile(){ + PTH="$(dirname "${1}")" + FILE="$(basename "${1}")" + echo "Path is $PTH, name is $FILE" + + + + if grep --quiet radialGradient $1 + then + echo "SKIPPING $1: it has a radialGradient" + else + + if grep --quiet linearGradient $1 + then + echo "WARNING for $1: it has a linearGradient" + fi + + svg-resizer -f -x 500 -y 500 -o /tmp/resized $1 + mv "/tmp/resized/$FILE" "$PTH" + fi +} + +export -f resizeFile +find . -name "*.svg" -exec bash -c 'resizeFile "$0"' {} \; diff --git a/scripts/slice.ts b/scripts/slice.ts index 342dc22f90..9507befbf7 100644 --- a/scripts/slice.ts +++ b/scripts/slice.ts @@ -3,6 +3,12 @@ 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 + * It was used to convert the CRAB-data into geojson tiles + */ async function readFeaturesFromLineDelimitedJsonFile(inputFile: string): Promise { const fileStream = fs.createReadStream(inputFile); @@ -98,25 +104,28 @@ 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] } delete f.bbox } - - //const knownKeys = Utils.Dedup([].concat(...allFeatures.map(f => Object.keys(f.properties)))) - //console.log("Kept keys: ", knownKeys) - TiledFeatureSource.createHierarchy( new StaticFeatureSource(allFeatures, false), { 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 7141bb366c..fdd7f691e8 100644 --- a/test.ts +++ b/test.ts @@ -1,150 +1,33 @@ -import ShowDataLayer from "./UI/ShowDataLayer/ShowDataLayer"; -import AllKnownLayers from "./Customizations/AllKnownLayers"; -import Minimap from "./UI/Base/Minimap"; -import StaticFeatureSource from "./Logic/FeatureSource/Sources/StaticFeatureSource"; -import MinimapImplementation from "./UI/Base/MinimapImplementation"; -import AvailableBaseLayers from "./Logic/Actors/AvailableBaseLayers"; -import BaseLayer from "./Models/BaseLayer"; +import Combine from "./UI/Base/Combine"; +import ValidatedTextField from "./UI/Input/ValidatedTextField"; +import Title from "./UI/Base/Title"; +import {FixedUiElement} from "./UI/Base/FixedUiElement"; +import {VariableUiElement} from "./UI/Base/VariableUIElement"; import {UIEventSource} from "./Logic/UIEventSource"; -import AvailableBaseLayersImplementation from "./Logic/Actors/AvailableBaseLayersImplementation"; +import {Translation} from "./UI/i18n/Translation"; -MinimapImplementation.initialize() -AvailableBaseLayers.implement(new AvailableBaseLayersImplementation()) -const confirmationMap = Minimap.createMiniMap({ - background: new UIEventSource(AvailableBaseLayers.osmCarto) -}) -const features = [{ - "feature": { - "type": "Feature", - "properties": {"move": "yes", "osm-id": 1728823483}, - "geometry": { - "type": "LineString", - "coordinates": [[3.216693, 51.2147409], [3.2166930000000225, 51.214740500000055]] - } - }, "freshness": "2021-11-02T20:06:53.088Z" -}, { - "feature": { - "type": "Feature", - "properties": {"move": "yes", "osm-id": 1728823481}, - "geometry": { - "type": "LineString", - "coordinates": [[3.2167247, 51.2146969], [3.21671060000004, 51.2147159000002]] - } - }, "freshness": "2021-11-02T20:06:53.088Z" -}, { - "feature": { - "type": "Feature", - "properties": {"move": "yes", "osm-id": 1728823481}, - "geometry": { - "type": "LineString", - "coordinates": [[3.2167247, 51.2146969], [3.2167241999999976, 51.214696799999714]] - } - }, "freshness": "2021-11-02T20:06:53.088Z" -}, { - "feature": { - "type": "Feature", - "properties": {"move": "yes", "osm-id": 1728823549}, - "geometry": { - "type": "LineString", - "coordinates": [[3.2168871, 51.2147399], [3.2168876999999547, 51.21474009999989]] - } - }, "freshness": "2021-11-02T20:06:53.088Z" -}, { - "feature": { - "type": "Feature", - "properties": {"move": "yes", "osm-id": 4978289383}, - "geometry": { - "type": "LineString", - "coordinates": [[3.2169973, 51.2147676], [3.2169969000000034, 51.21476780000005]] - } - }, "freshness": "2021-11-02T20:06:53.088Z" -}, { - "feature": { - "type": "Feature", - "properties": {"move": "yes", "osm-id": 4978289388}, - "geometry": { - "type": "LineString", - "coordinates": [[3.2169829, 51.2147884], [3.2169673999999895, 51.21481170000002]] - } - }, "freshness": "2021-11-02T20:06:53.088Z" -}, { - "feature": { - "type": "Feature", - "properties": {"move": "yes", "osm-id": 4978289388}, - "geometry": { - "type": "LineString", - "coordinates": [[3.2169829, 51.2147884], [3.216949899999979, 51.214808000000225]] - } - }, "freshness": "2021-11-02T20:06:53.088Z" -}, { - "feature": { - "type": "Feature", - "properties": {"move": "yes", "osm-id": 4978289388}, - "geometry": {"type": "LineString", "coordinates": [[3.2169829, 51.2147884], [3.2169306, 51.21480400000028]]} - }, "freshness": "2021-11-02T20:06:53.088Z" -}, { - "feature": { - "type": "Feature", - "properties": {"move": "yes", "osm-id": 4978289388}, - "geometry": { - "type": "LineString", - "coordinates": [[3.2169829, 51.2147884], [3.2169465999999756, 51.214779199999825]] - } - }, "freshness": "2021-11-02T20:06:53.088Z" -}, { - "feature": { - "type": "Feature", - "properties": {"move": "yes", "osm-id": 4978288381}, - "geometry": { - "type": "LineString", - "coordinates": [[3.2168856, 51.2147638], [3.216885599999961, 51.214763799999986]] - } - }, "freshness": "2021-11-02T20:06:53.088Z" -}, { - "feature": { - "type": "Feature", - "properties": {"move": "yes", "osm-id": 4978289386}, - "geometry": { - "type": "LineString", - "coordinates": [[3.2168815, 51.2147718], [3.216881100000038, 51.21477160000009]] - } - }, "freshness": "2021-11-02T20:06:53.088Z" -}, { - "feature": { - "type": "Feature", - "properties": {"move": "yes", "osm-id": 4978289384}, - "geometry": { - "type": "LineString", - "coordinates": [[3.2168674, 51.2147683], [3.216867399999983, 51.214768400000224]] - } - }, "freshness": "2021-11-02T20:06:53.088Z" -}, { - "feature": { - "type": "Feature", - "properties": {"move": "yes", "osm-id": 1728823514}, - "geometry": { - "type": "LineString", - "coordinates": [[3.2168551, 51.2147863], [3.2168551000000436, 51.21478629999984]] - } - }, "freshness": "2021-11-02T20:06:53.088Z" -}, { - "feature": { - "type": "Feature", - "properties": {"move": "yes", "osm-id": 1728823483}, - "geometry": { - "type": "LineString", - "coordinates": [[3.216693, 51.2147409], [3.2166930000000225, 51.214740500000055]] - } - }, "freshness": "2021-11-02T20:06:53.088Z" -}] -const changePreview = new StaticFeatureSource(features.map(f => f.feature), false) -console.log("ChangePreview", changePreview.features.data) -new ShowDataLayer({ - leafletMap: confirmationMap.leafletMap, - enablePopups: false, - zoomToFeatures: true, - features: changePreview, - layerToShow: AllKnownLayers.sharedLayers.get("conflation") -}) +new Combine( + ValidatedTextField.AvailableTypes().map(key => { + let inp; + const feedback = new UIEventSource(undefined) + try { + inp = ValidatedTextField.ForType(key).ConstructInputElement({ + feedback, + country: () => "be", + + }); + } catch (e) { + console.error(e) + inp = new FixedUiElement(e).SetClass("alert") + } + + return new Combine([ + new Title(key), + inp, + new VariableUiElement(inp.GetValue()), + new VariableUiElement(feedback.map(v => v?.SetClass("alert"))) + ]); + } + ) +).AttachTo("maindiv") -confirmationMap.SetStyle("height: 20rem").SetClass("w-full").AttachTo("maindiv") \ No newline at end of file diff --git a/test/Actors.spec.ts b/test/Actors.spec.ts index 38c2a7c17a..50e6e03870 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/CodeQuality.spec.ts b/test/CodeQuality.spec.ts new file mode 100644 index 0000000000..7b3ce78c51 --- /dev/null +++ b/test/CodeQuality.spec.ts @@ -0,0 +1,49 @@ +import T from "./TestHelper"; +import {exec} from "child_process"; + +export default class CodeQualitySpec extends T { + + constructor() { + super([ + [ + "no constructor.name in compiled code", () => { + CodeQualitySpec.detectInCode("constructor\\.name", "This is not allowed, as minification does erase names.") + }], + [ + "no reverse in compiled code", () => { + CodeQualitySpec.detectInCode("reverse()", "Reverse is stateful and changes the source list. This often causes subtle bugs") + }] + ]); + } + + /** + * + * @param forbidden: a GREP-regex. This means that '.' is a wildcard and should be escaped to match a literal dot + * @param reason + * @private + */ + private static detectInCode(forbidden: string, reason: string) { + + const excludedDirs = [".git", "node_modules", "dist", ".cache", ".parcel-cache", "assets"] + + exec("grep -n \"" + forbidden + "\" -r . " + excludedDirs.map(d => "--exclude-dir=" + d).join(" "), ((error, stdout, stderr) => { + if (error?.message?.startsWith("Command failed: grep")) { + console.warn("Command failed!") + return; + } + if (error !== null) { + throw error + + } + if (stderr !== "") { + throw stderr + } + + const found = stdout.split("\n").filter(s => s !== "").filter(s => !s.startsWith("./test/")); + if (found.length > 0) { + throw `Found a '${forbidden}' at \n ${found.join("\n ")}.\n ${reason}` + } + + })) + } +} \ No newline at end of file diff --git a/test/CreateCache.spec.ts b/test/CreateCache.spec.ts new file mode 100644 index 0000000000..801d946e75 --- /dev/null +++ b/test/CreateCache.spec.ts @@ -0,0 +1,53 @@ +import T from "./TestHelper"; +import {main} from "../scripts/generateCache" +import {existsSync, mkdirSync, readFileSync, rmdirSync, unlinkSync} from "fs"; +import ScriptUtils from "../scripts/ScriptUtils"; +import {Utils} from "../Utils"; + +export default class CreateCacheSpec extends T { + + constructor() { + super([["Tests cache generation", + async () => { + if (existsSync("/tmp/np-cache")) { + ScriptUtils.readDirRecSync("/tmp/np-cache").forEach(p => unlinkSync(p)) + rmdirSync("/tmp/np-cache") + } + mkdirSync("/tmp/np-cache") + CreateCacheSpec.initDownloads() + await main([ + "natuurpunt", + "12", + "/tmp/np-cache", + "51.15423567022531", "3.250579833984375", "51.162821593316934", "3.262810707092285", + "--generate-point-overview", "nature_reserve,visitor_information_centre" + ]) + await ScriptUtils.sleep(100) + const birdhides = JSON.parse(readFileSync("/tmp/np-cache/natuurpunt_birdhide_12_2085_1368.geojson","UTF8")) + T.equals(5, birdhides.features.length, "Got "+birdhides.features.length+" birdhidse") + T.isTrue(birdhides.features.some(f => f.properties.id === "node/5158056232"), "Didn't find birdhide node/5158056232 ") + } + ] + ] + ); + } + + + private static initDownloads(){ + Utils.injectJsonDownloadForTests( + "https://overpass-api.de/api/interpreter?data=%5Bout%3Ajson%5D%5Btimeout%3A60%5D%5Bbbox%3A51.124212757826875%2C3.1640625%2C51.17934297928927%2C3.251953125%5D%3B(nwr%5B%22operator%22~%22%5E.*%5BnN%5Datuurpunt.*%24%22%5D%5B%22leisure%22%3D%22nature_reserve%22%5D%3Bnwr%5B%22operator%22~%22%5E.*%5BnN%5Datuurpunt.*%24%22%5D%5B%22protect_class%22!~%22%5E98%24%22%5D%5B%22boundary%22%3D%22protected_area%22%5D%3Bnwr%5B%22operator%22~%22%5E.*%5BnN%5Datuurpunt.*%24%22%5D%5B%22information%22%3D%22visitor_centre%22%5D%3Bnwr%5B%22operator%22~%22%5E.*%5BnN%5Datuurpunt.*%24%22%5D%5B%22information%22%3D%22office%22%5D%3Bnwr%5B%22operator%22~%22%5E.*%5BnN%5Datuurpunt.*%24%22%5D%5B%22route%22~%22%5E.*foot.*%24%22%5D%3Bnwr%5B%22operator%22~%22%5E.*%5BnN%5Datuurpunt.*%24%22%5D%5B%22route%22~%22%5E.*hiking.*%24%22%5D%3Bnwr%5B%22operator%22~%22%5E.*%5BnN%5Datuurpunt.*%24%22%5D%5B%22route%22~%22%5E.*bycicle.*%24%22%5D%3Bnwr%5B%22operator%22~%22%5E.*%5BnN%5Datuurpunt.*%24%22%5D%5B%22route%22~%22%5E.*horse.*%24%22%5D%3Bnwr%5B%22amenity%22%3D%22toilets%22%5D%3Bnwr%5B%22operator%22~%22%5E.*%5BnN%5Datuurpunt.*%24%22%5D%5B%22leisure%22%3D%22bird_hide%22%5D%3Bnwr%5B%22leisure%22%3D%22picnic_table%22%5D%3Bnwr%5B%22amenity%22%3D%22drinking_water%22%5D%5B%22access%22!~%22%5Epermissive%24%22%5D%5B%22access%22!~%22%5Eprivate%24%22%5D%3Bnwr%5B%22amenity%22%3D%22parking%22%5D%3Bnwr%5B%22information%22%3D%22board%22%5D%3Bnwr%5B%22amenity%22%3D%22bench%22%5D%3Bnwr%5B%22man_made%22%3D%22watermill%22%5D%3Bnwr%5B%22id%22%3D%22location_track%22%5D%3Bnwr%5B%22id%22%3D%22gps%22%5D%3Bnwr%5B%22user%3Alocation%22%3D%22yes%22%5D%3Bnwr%5B%22user%3Ahome%22%3D%22yes%22%5D%3B)%3Bout%20body%3Bout%20meta%3B%3E%3Bout%20skel%20qt%3B" , + {"version":0.6,"generator":"Overpass API 0.7.57 93a4d346","osm3s":{"timestamp_osm_base":"2022-02-13T23:54:06Z","copyright":"The data included in this document is from www.openstreetmap.org. The data is made available under ODbL."},"elements":[{"type":"node","id":518224450,"lat":51.1548065,"lon":3.1880118,"tags":{"access":"yes","amenity":"parking","fee":"no","parking":"street_side"}},{"type":"node","id":665418924,"lat":51.1575547,"lon":3.20522,"tags":{"amenity":"parking"}},{"type":"node","id":1168727903,"lat":51.1299141,"lon":3.1776123,"tags":{"amenity":"drinking_water","mapillary":"https://www.mapillary.com/app/?lat=51.129853685131906&lng=3.177603984688602&z=17&pKey=SEyKzIMUeKssni1ZLVe-9A&focus=photo&dateTo=2017-04-02&dateFrom=2017-04-01&x=0.5168826751181941&y=0.6114877557873634&zoom=0"}},{"type":"node","id":1168728245,"lat":51.1290938,"lon":3.1767502,"tags":{"amenity":"drinking_water","mapillary":"https://www.mapillary.com/app/?lat=51.129104406662464&lng=3.176675795895676&z=17&pKey=vSP3D_hWv3XCBtH75GnYUQ&focus=photo&dateTo=2017-04-02&dateFrom=2017-04-01"}},{"type":"node","id":1725842653,"lat":51.153364,"lon":3.2352655,"tags":{"amenity":"bench"}},{"type":"node","id":1744641290,"lat":51.1389321,"lon":3.2385407,"tags":{"amenity":"bench","backrest":"yes","material":"wood"}},{"type":"node","id":1746891135,"lat":51.1598841,"lon":3.2361425,"tags":{"amenity":"bench"}},{"type":"node","id":1810326078,"lat":51.1550855,"lon":3.2349358,"tags":{"amenity":"bench"}},{"type":"node","id":1810326092,"lat":51.1552302,"lon":3.234968,"tags":{"amenity":"bench"}},{"type":"node","id":2325437742,"lat":51.1770052,"lon":3.1967794,"tags":{"board_type":"board","information":"board","name":"Tillegembos","tourism":"information"}},{"type":"node","id":2325437743,"lat":51.1787363,"lon":3.1949036,"tags":{"board_type":"board","information":"board","name":"Tillegembos","tourism":"information"}},{"type":"node","id":2325437813,"lat":51.1733102,"lon":3.1895672,"tags":{"amenity":"bench","backrest":"yes","material":"wood"}},{"type":"node","id":2325437839,"lat":51.1763436,"lon":3.1984985,"tags":{"amenity":"bench","backrest":"yes","material":"wood"}},{"type":"node","id":2325437848,"lat":51.1770966,"lon":3.1963507,"tags":{"amenity":"bench","backrest":"yes","material":"wood"}},{"type":"node","id":2325437862,"lat":51.1773439,"lon":3.1948779,"tags":{"amenity":"bench","backrest":"yes","material":"wood"}},{"type":"node","id":2325437867,"lat":51.1775994,"lon":3.1888088,"tags":{"amenity":"bench","backrest":"yes","material":"wood"}},{"type":"node","id":2325437873,"lat":51.1778384,"lon":3.1913802,"tags":{"amenity":"bench","backrest":"yes","material":"wood"}},{"type":"node","id":2732486257,"lat":51.129741,"lon":3.1907419,"tags":{"board_type":"nature","information":"board","name":"Doeveren","tourism":"information"}},{"type":"node","id":3774054068,"lat":51.1586662,"lon":3.2271102,"tags":{"amenity":"bench"}},{"type":"node","id":4769106605,"lat":51.138264,"lon":3.1798655,"tags":{"backrest":"yes","leisure":"picnic_table"}},{"type":"node","id":4912238707,"lat":51.1448634,"lon":3.2455986,"tags":{"access":"yes","amenity":"parking","fee":"no","name":"Oostkamp","parking":"Carpool"}},{"type":"node","id":5637212235,"lat":51.1305439,"lon":3.1866873,"tags":{"board_type":"nature","image":"https://i.imgur.com/HehOQL9.jpg","information":"board","name":"Welkom Doeveren","tourism":"information"}},{"type":"node","id":5637224573,"lat":51.1281084,"lon":3.1881726,"tags":{"board_type":"nature","information":"board","name":"Welkom Doeveren","tourism":"information"}},{"type":"node","id":5637230107,"lat":51.1280884,"lon":3.1889798,"tags":{"information":"board","tourism":"information"}},{"type":"node","id":5637743026,"lat":51.1295973,"lon":3.1751122,"tags":{"information":"board","name":"Doeveren Wandelroute","tourism":"information"}},{"type":"node","id":5716130103,"lat":51.1767183,"lon":3.1947867,"tags":{"amenity":"bench","backrest":"yes"}},{"type":"node","id":5745783208,"lat":51.1782581,"lon":3.2410111,"tags":{"amenity":"bench"}},{"type":"node","id":5745807545,"lat":51.1784037,"lon":3.2369439,"tags":{"amenity":"bench"}},{"type":"node","id":5745807551,"lat":51.1783278,"lon":3.236678,"tags":{"amenity":"bench"}},{"type":"node","id":6535241426,"lat":51.1693142,"lon":3.1673093,"tags":{"amenity":"bench"}},{"type":"node","id":6535241427,"lat":51.169265,"lon":3.1673159,"tags":{"amenity":"bench"}},{"type":"node","id":6535241428,"lat":51.1692199,"lon":3.1673224,"tags":{"amenity":"bench"}},{"type":"node","id":6535241430,"lat":51.1685726,"lon":3.1678225,"tags":{"bench":"yes","leisure":"picnic_table","material":"wood"}},{"type":"node","id":6536026827,"lat":51.1703142,"lon":3.1691109,"tags":{"leisure":"picnic_table"}},{"type":"node","id":6536026828,"lat":51.1702795,"lon":3.1691552,"tags":{"leisure":"picnic_table"}},{"type":"node","id":6712112244,"lat":51.1595064,"lon":3.2021482,"tags":{"leisure":"picnic_table"}},{"type":"node","id":7304050040,"lat":51.1560908,"lon":3.1748919,"tags":{"amenity":"bench"}},{"type":"node","id":7304050041,"lat":51.1560141,"lon":3.1749533,"tags":{"amenity":"bench"}},{"type":"node","id":7304050042,"lat":51.156032,"lon":3.1749379,"tags":{"amenity":"bench"}},{"type":"node","id":7439979218,"lat":51.1780402,"lon":3.2178666,"tags":{"amenity":"bench","backrest":"yes"}},{"type":"node","id":7439979219,"lat":51.1780508,"lon":3.2179033,"tags":{"amenity":"bench","backrest":"yes"}},{"type":"node","id":7529262982,"lat":51.1585566,"lon":3.1715528,"tags":{"board_type":"map","information":"board","tourism":"information"}},{"type":"node","id":7529262984,"lat":51.1585786,"lon":3.1715385,"tags":{"leisure":"picnic_table"}},{"type":"node","id":7554879668,"lat":51.1573713,"lon":3.2043731,"tags":{"access":"yes","amenity":"toilets","fee":"no","toilets:disposal":"flush","unisex":"yes","wheelchair":"yes"}},{"type":"node","id":7554879669,"lat":51.1594855,"lon":3.2021507,"tags":{"leisure":"picnic_table"}},{"type":"node","id":7556988723,"lat":51.1330234,"lon":3.1839944,"tags":{"amenity":"bench","material":"wood"}},{"type":"node","id":7575825326,"lat":51.1386553,"lon":3.1797358,"tags":{"amenity":"bench"}},{"type":"node","id":7575825327,"lat":51.1382456,"lon":3.1797422,"tags":{"information":"board","tourism":"information"}},{"type":"node","id":8109498958,"lat":51.1332267,"lon":3.2341272,"tags":{"amenity":"bench","backrest":"yes"}},{"type":"node","id":8109498959,"lat":51.1335011,"lon":3.2343954,"tags":{"leisure":"picnic_table"}},{"type":"node","id":8198894646,"lat":51.125688,"lon":3.1856217,"tags":{"image":"https://i.imgur.com/O5kX20u.jpg","information":"board","tourism":"information"}},{"type":"node","id":8199012519,"lat":51.1262245,"lon":3.1802429,"tags":{"image":"https://i.imgur.com/tomw9p5.jpg","information":"board","tourism":"information"}},{"type":"node","id":8199244816,"lat":51.1252874,"lon":3.1837622,"tags":{"amenity":"bench"}},{"type":"node","id":8199301617,"lat":51.1256827,"lon":3.1853543,"tags":{"amenity":"bench","backrest":"no"}},{"type":"node","id":8255488518,"lat":51.1406698,"lon":3.235178,"tags":{"amenity":"bench","backrest":"yes"}},{"type":"node","id":9316104741,"lat":51.1330984,"lon":3.2335257,"tags":{"information":"board","tourism":"information"}},{"type":"node","id":9442532340,"lat":51.1763651,"lon":3.1947952,"tags":{"amenity":"bench","backrest":"yes","image":"https://i.imgur.com/eZ0Loii.jpg"}},{"type":"way","id":15242261,"nodes":[150996092,150996093,6754312552,6754312553,6754312550,6754312551,150996094,150996095,150996097,150996098,6754312560,6754312559,6754312558,150996099,6754312557,150996100,6754312555,6754312556,150996101,6754312554,150996092],"tags":{"access":"yes","amenity":"parking","fee":"no","parking":"surface"}},{"type":"way","id":16514228,"nodes":[170464837,170464839,170464840,170464841,170464837],"tags":{"access":"yes","amenity":"parking","fee":"no","maxstay":"4 hours","parking":"surface"}},{"type":"way","id":76706071,"nodes":[903903386,1038557094,1038557233,1038557143,1038557075,903903387,1038557195,903903388,903903390,903904576,903903386],"tags":{"access":"permissive","amenity":"parking"}},{"type":"way","id":89601157,"nodes":[1038557083,1038557078,1038557104,1038557072,1038557108,1038557230,1038557227,1038557102,1038557137,1038575040,1038557191,1038557014,6960473080,1038557035,1038557012,1038557083],"tags":{"amenity":"parking"}},{"type":"way","id":89604999,"nodes":[1038583404,1038583491,1038583375,1038583483,1038583479,1038583398,1038583459,1038583456,1038583446,1038583441,1038583425,1038583501,1038583451,1038583463,1038583476,1038583404],"tags":{"access":"yes","amenity":"parking","capacity":"57","carpool":"yes","description":"carpoolparking","fee":"no","name":"Loppem","parking":"surface"}},{"type":"way","id":92035679,"nodes":[1069177920,6853179264,1069177925,1069177919,6853179269,6853179268,6853179267,6853179215,6853179213,6853179214,1069178133,1069177984,6853179230,6853179228,6853179229,6853179224,6853179225,6853179227,6853179226,6853179216,6853179220,6853179219,6853179218,6853179217,6853179223,6853179221,6853179222,1069177967,1069177852,6853179211,6853179212,6853179210,6853179327,6853179208,6853179209,6853179203,1069177976,6853179207,6853179206,6853179205,6853179204,6853179202,1069177849,6852012579,6852012578,6852012580,6852012577,6852012581,6852012582,6852012583,1069177845,1759437085,1519342743,1519342742,1069178166,1069177853,1069177915,6853179235,6853179234,6853179236,1069177933,6853179237,6853179238,1069178021,6853179246,6853179244,6853179245,6853179240,6853179243,6853179241,6853179242,6853179239,6853179248,6853179249,6853179250,6853179247,1069177873,6853179262,6853179263,6853179260,6853179261,6853179256,6853179259,6853179257,6853179258,1069177920],"tags":{"access":"yes","amenity":"parking","fee":"no","parking":"surface"}},{"type":"way","id":101248451,"nodes":[1168728158,1168728325,1168728159,5637669355,1168728109,1168728158],"tags":{"access":"private","amenity":"parking","name":"Parking Merkenveld"}},{"type":"way","id":101248462,"nodes":[1168727876,1168728288,1168728412,1168728208,1168727876],"tags":{"amenity":"toilets","building":"yes","source:geometry:date":"2019-03-14","source:geometry:ref":"Gbg/6588148"}},{"type":"way","id":131622387,"nodes":[1448421093,1448421099,1448421091,1448421081,1448421093],"tags":{"amenity":"parking","name":"Tudor - Zeeweg","parking":"surface"}},{"type":"way","id":145691934,"nodes":[1590642859,1590642860,1590642858,1590642849,1590642859],"tags":{"amenity":"parking"}},{"type":"way","id":145691937,"nodes":[1590642829,1590642828,1590642830,1590642832,1590642829],"tags":{"amenity":"parking"}},{"type":"way","id":158901716,"nodes":[1710245713,1710245718,1710245707,1710245705,1710245703,1710245715,1710245711,1710245709,1710245701,1710245713],"tags":{"access":"yes","amenity":"parking","capacity":"14","fee":"no","parking":"surface"}},{"type":"way","id":158904558,"nodes":[1710262742,1710262745,1710262735,1710262733,1710262732,1710262743,1710262741,1710262739,1710262744,1710262737,1710262736,1710262731,1710262738,1710262742],"tags":{"access":"yes","alt_name":"Schoolparking","amenity":"parking","fee":"no","parking":"surface"}},{"type":"way","id":158906028,"nodes":[1710276259,1710276251,1810330766,1710276255,1710276261,1710276240,1710276232,1710276257,1710276243,1710276253,1810347217,1710276242,1710276259],"tags":{"access":"yes","amenity":"parking","fee":"no","name":"Parking Sportcentrum De Valkaart","parking":"surface"}},{"type":"way","id":160825858,"nodes":[1728421375,1728421374,1728421379,1728421377,1728421376,1728421378,1728421375],"tags":{"amenity":"parking","parking":"surface"}},{"type":"way","id":162602213,"nodes":[1920143232,7393009684,7393048385,1744641293,1523513488,1744641292,1920143232],"tags":{"amenity":"parking","capacity":"15"}},{"type":"way","id":165489167,"nodes":[4912197370,4912197365,4912197373,4912197364,4912197372,1770289505,4912197362,4912197371,4912197374,4912197363,4912197368,4912197366,4912197369,4912197367,4912197370],"tags":{"access":"yes","amenity":"parking","fee":"no","name":"Bad Neuheimplein","parking":"surface"}},{"type":"way","id":168291852,"nodes":[1795793399,4979389763,1795793409,1795793395,1795793393,1795793397,1795793407,1795793406,1795793408,1795793405,1795793399],"tags":{"access":"yes","amenity":"parking","fee":"no","parking":"surface"}},{"type":"way","id":169875513,"nodes":[1810345951,1810345955,1810345947,1810345944,1810345951],"tags":{"access":"yes","amenity":"parking","fee":"no","parking":"surface"}},{"type":"way","id":170015605,"nodes":[1811673425,1811673421,1811673418,1811673423,1811673425],"tags":{"access":"private","amenity":"parking","name":"gheeraert E40","operator":"Gheeraert"}},{"type":"way","id":170018487,"nodes":[1811699779,1811699778,1811699776,1811699777,1811699779],"tags":{"access":"private","amenity":"parking","name":"Gheeraert vooraan"}},{"type":"way","id":170559194,"nodes":[1817319304,1817319302,1817319297,1817319301,1817319304],"tags":{"access":"private","amenity":"parking","name":"Gheeraert laadkade"}},{"type":"way","id":170559195,"nodes":[1817319299,1817319303,1817319300,1817319292,1817319299],"tags":{"access":"private","amenity":"parking","name":"Gheeraert spoorweg trailers"}},{"type":"way","id":170559196,"nodes":[1817319293,1817319289,1817319291,1817319296,1817319293],"tags":{"access":"private","amenity":"parking","name":"Gheeraert spoorweg trucks"}},{"type":"way","id":170559197,"nodes":[1817319294,1817319298,1817319295,1817319290,1817319294],"tags":{"access":"private","amenity":"parking","name":"Gheeraert zijkant"}},{"type":"way","id":170559292,"nodes":[1817320496,1817320494,1817320493,1817320495,1817320496],"tags":{"access":"private","amenity":"parking","name":"Gheeraert vooraan gebouw"}},{"type":"way","id":170559832,"nodes":[1817324515,1817324509,1817324491,6397031888,4044172008,4044172003,4044171997,4044171962,4044171957,4044171976,1817324489,1817324488,3550860268,1817324505,3550860269,1817324513,1817324515],"tags":{"access":"yes","amenity":"parking","fee":"no","parking":"surface"}},{"type":"way","id":223674368,"nodes":[2325437844,8191691971,8191691973,8191691972,2325437840,8191691970,414025563,2325437844],"tags":{"amenity":"parking","name":"Tillegembos","parking":"surface"}},{"type":"way","id":237214948,"nodes":[2451574741,2451574742,2451574744,1015583939,2451574741],"tags":{"access":"private","amenity":"parking"}},{"type":"way","id":237214949,"nodes":[2451574748,2451574746,2451574747,2451574749,2451574748],"tags":{"access":"private","amenity":"parking"}},{"type":"way","id":237214950,"nodes":[2451569392,1015567837,2451574745,2451574743,2451578121,2451569392],"tags":{"access":"private","amenity":"parking"}},{"type":"way","id":325909586,"nodes":[3325315243,111759500,3325315247,3325315232,3325315230,3325315226,1169056712,3325315243],"tags":{"amenity":"parking","parking":"surface"}},{"type":"way","id":326834162,"nodes":[3335137807,3335137692,3335137795,9163493632,3335137802,3335137812,9163486855,9163486856,3335137823,3335137807],"tags":{"access":"customers","amenity":"parking","operator":"Best Western Weinebrugge","parking":"surface"}},{"type":"way","id":327849054,"nodes":[3346575929,3346575873,3346575876,3346575843,3346575845,3346575891,3346575901,3346575923,3346575928,3346575950,3346575929],"tags":{"access":"private","amenity":"parking","parking":"surface"}},{"type":"way","id":327849055,"nodes":[3346575945,3346575946,3346575943,3346575933,3346575925,3346575917,3346575903,3346575908,3346575889,3346575886,3346575945],"tags":{"access":"customers","amenity":"parking","parking":"surface"}},{"type":"way","id":327849056,"nodes":[3346575865,3346575853,3346575855,3346575846,3346575840,3346575858,3346575865],"tags":{"access":"private","amenity":"parking","parking":"surface"}},{"type":"way","id":374677860,"nodes":[3780611504,3780611502,3780611500,3780611503,3780611504],"tags":{"amenity":"parking"}},{"type":"way","id":374677861,"nodes":[3780611495,3780611493,3780611492,3780611494,3780611495],"tags":{"amenity":"parking"}},{"type":"way","id":374677862,"nodes":[3780611498,3780611497,3780611496,3780611499,3780611501,3780611498],"tags":{"amenity":"parking"}},{"type":"way","id":389912371,"nodes":[3930713440,3930713451,3930713447,3930713437,3930713440],"tags":{"amenity":"parking"}},{"type":"way","id":389912372,"nodes":[3930713454,3930713442,3930713435,3930713429,5826811614,3930713426,3930713430,6982605752,6982605754,3930713438,6982605769,6982605766,6982605767,6982605762,6982605764,3930713446,3930713454],"tags":{"access":"customers","amenity":"parking","fee":"no","parking":"surface"}},{"type":"way","id":401995684,"nodes":[4044171963,4044171954,4044171924,4044171936,4044171941,4044171963],"tags":{"access":"private","amenity":"parking","parking":"surface"}},{"type":"way","id":500067820,"nodes":[4912203166,4912203165,4912203164,4912203163,4912203162,4912203161,4912203160,4912203166],"tags":{"access":"yes","amenity":"parking","parking":"surface"}},{"type":"way","id":500067821,"nodes":[4912203170,4912203169,4912203168,4912203167,4912203170],"tags":{"access":"yes","amenity":"parking","parking":"surface"}},{"type":"way","id":500067822,"nodes":[4912203174,4912203173,4912203172,4912203171,4912203174],"tags":{"access":"yes","amenity":"parking","parking":"surface"}},{"type":"way","id":500067823,"nodes":[4912203179,4912203178,4912203177,4912203176,4912203179],"tags":{"access":"yes","amenity":"parking","fee":"no","parking":"surface"}},{"type":"way","id":500069613,"nodes":[4912214695,4912214685,4912214694,4912214693,4912214692,4912214680,4912214695],"tags":{"access":"yes","amenity":"parking","fee":"no","parking":"surface"}},{"type":"way","id":500071452,"nodes":[4912225068,4912225062,4912225063,4912225053,4912225064,4912214694,4912214685,4912225068],"tags":{"access":"yes","amenity":"parking","fee":"no","parking":"surface"}},{"type":"way","id":500071455,"nodes":[4912225070,4912214681,4912214686,4912225052,4912225051,4912225067,4912225062,4912225068,4912225070],"tags":{"access":"yes","amenity":"parking","fee":"no","parking":"surface"}},{"type":"way","id":500071458,"nodes":[4912214695,4912214680,4912225069,4912225050,1525460846,4912214681,4912225070,4912214695],"tags":{"access":"yes","amenity":"parking","fee":"no","parking":"surface"}},{"type":"way","id":533276307,"nodes":[5173881316,5173881317,5173881318,7054196467,5173881316],"tags":{"amenity":"parking"}},{"type":"way","id":533276308,"nodes":[5173881320,5173881621,5173881622,5173881623,5173881320],"tags":{"amenity":"parking"}},{"type":"way","id":533276309,"nodes":[5173881624,5173881625,5173881626,5173881627,5173881624],"tags":{"amenity":"parking"}},{"type":"way","id":579848581,"nodes":[4043782112,5825400688,5552466020,6997096756,6997096759,6997096758,5552466018,5552466013,5552466014,6997076567,4043782112],"tags":{"access":"yes","amenity":"parking","fee":"no","parking":"surface"}},{"type":"way","id":584455569,"nodes":[5586765933,5586765934,5586765935,5586765936,5586765933],"tags":{"amenity":"parking"}},{"type":"way","id":585977870,"nodes":[5587844460,5599314384,5599314385,1659850846,6870850178,5587844462,5587844461,6870863414,5587844460],"tags":{"amenity":"parking"}},{"type":"way","id":587014342,"nodes":[5607796820,5607798725,5607798721,5607798722,5607796819,5607798723,5607796820],"tags":{"access":"permissive","amenity":"parking","park_ride":"no","parking":"surface","surface":"paved"}},{"type":"way","id":590167103,"nodes":[5635001277,5635001274,5635001275,5635001276,5635001277],"tags":{"amenity":"parking"}},{"type":"way","id":590167113,"nodes":[5635001312,5635001306,7767137237,7767137235,7767137236,7767137234,5635001312],"tags":{"amenity":"parking"}},{"type":"way","id":590167134,"nodes":[5635001374,5635001373,5635001372,5635001371,5635001374],"tags":{"amenity":"parking"}},{"type":"way","id":590167135,"nodes":[5635001378,5635001377,5635001376,5635001375,5635001378],"tags":{"amenity":"parking"}},{"type":"way","id":590167136,"nodes":[5635001382,5635001381,5635001380,5635001379,5635001382],"tags":{"amenity":"parking"}},{"type":"way","id":590167137,"nodes":[5635001386,5882873336,5882873337,5882873338,5882873335,6593340582,6593340583,5882873334,6593340584,5635001385,5635001384,5635001383,5635001386],"tags":{"amenity":"parking"}},{"type":"way","id":590167147,"nodes":[5635001417,5635001414,5635001415,5635001416,5635001417],"tags":{"amenity":"parking"}},{"type":"way","id":601406079,"nodes":[5716136617,5716136618,5716136619,5716136620,5716136617],"tags":{"amenity":"parking"}},{"type":"way","id":632813009,"nodes":[5974489618,1810326044,1810326087,5974489617,5972179348,5972179347,5972179346,5972179345,5972179344,5972179343,5972179331,5974489616,5974489615,5974489614,5974489618],"tags":{"amenity":"parking","name":"Gemeenteplein","parking":"surface"}},{"type":"way","id":668043297,"nodes":[6255587424,6255587425,6255587426,6255587427,6255587424],"tags":{"access":"private","amenity":"parking"}},{"type":"way","id":670104236,"nodes":[6275462768,6275462769,6275462770,6275462771,6275462768],"tags":{"amenity":"parking"}},{"type":"way","id":670104238,"nodes":[6275462772,6275462989,6275462773,6275462774,6275462775,6275462772],"tags":{"amenity":"parking"}},{"type":"way","id":670104239,"nodes":[6275462776,6275462777,6275462778,6275462779,6275462776],"tags":{"amenity":"parking"}},{"type":"way","id":670104241,"nodes":[6275462780,6275462781,6275462782,6275462783,6275462780],"tags":{"amenity":"parking"}},{"type":"way","id":670104242,"nodes":[6275462784,6275462985,6275462988,6275462986,6275462987,6275462784],"tags":{"amenity":"parking"}},{"type":"way","id":671840055,"nodes":[6291339827,6291339828,6291339816,6291339815,6291339822,6291339821,6291339829,6291339830,6291339827],"tags":{"amenity":"parking"}},{"type":"way","id":695825223,"nodes":[1519476746,6533893620,6533893621,6533893622,1519476797,1519476620,1519476746],"tags":{"access":"yes","amenity":"parking"}},{"type":"way","id":695825224,"nodes":[1519476744,6533893624,6533893625,6533893626,1519476698,1519476635,1519476744],"tags":{"access":"yes","amenity":"parking"}},{"type":"way","id":696040917,"nodes":[6536026850,6536026851,6536026852,6536026853,6536026850],"tags":{"amenity":"parking","name":"Kasteel Tudor"}},{"type":"way","id":696043218,"nodes":[6536038234,6536038235,6536038236,6536038237,6536038234],"tags":{"access":"customers","amenity":"parking"}},{"type":"way","id":700675991,"nodes":[6579962064,6579962065,6579962066,6579962068,6579962067,6579962064],"tags":{"access":"private","amenity":"parking","parking":"surface"}},{"type":"way","id":705278707,"nodes":[6625037999,6625038000,6625038001,6625038002,6625038003,6004375826,6625038005,6625038006,6625037999],"tags":{"amenity":"parking"}},{"type":"way","id":719482833,"nodes":[6754312544,6754312543,6754312542,6754312541,6754312544],"tags":{"access":"yes","amenity":"parking","capacity":"5"}},{"type":"way","id":719482834,"nodes":[6754312565,6754312564,6754312563,6754312562,6754312565],"tags":{"access":"yes","amenity":"parking","capacity":"12"}},{"type":"way","id":737054013,"nodes":[5826811496,5826811497,5826811494,5826811495,5826811496],"tags":{"amenity":"parking"}},{"type":"way","id":737054014,"nodes":[5826810676,5826810673,5826810674,5826810675,5826810676],"tags":{"amenity":"parking"}},{"type":"way","id":737054015,"nodes":[5826810681,5826810678,5826810679,5826810680,5826810681],"tags":{"amenity":"parking"}},{"type":"way","id":737093410,"nodes":[5826811559,5826811536,5826811535,5826811561,5826811560,5826811559],"tags":{"access":"yes","amenity":"parking","capacity":"4","fee":"no","parking":"surface"}},{"type":"way","id":737093411,"nodes":[5826811551,5826811547,5826811548,5826811549,5826811550,5826811551],"tags":{"access":"yes","amenity":"parking","capacity":"4","fee":"no","parking":"surface"}},{"type":"way","id":739652949,"nodes":[6925536542,6925536541,6925536540,6925536539,6925536542],"tags":{"amenity":"parking","capacity":"6","parking":"surface"}},{"type":"way","id":741675236,"nodes":[6943148207,6943148206,6943148205,6943148204,1637742821,6943148203,6943148202,6943148201,6943148200,6943148199,6943148198,6943148197,6943148207],"tags":{"access":"yes","amenity":"parking","fee":"no","parking":"surface"}},{"type":"way","id":742295526,"nodes":[6949357909,6949357908,6949357907,6949357906,6949357909],"tags":{"amenity":"parking","parking":"surface"}},{"type":"way","id":742295527,"nodes":[6949357913,6949357912,6949357911,6949357910,6949357913],"tags":{"amenity":"parking","parking":"surface"}},{"type":"way","id":742295528,"nodes":[6949357917,6949357916,6949357915,6949357914,6949357917],"tags":{"amenity":"parking","parking":"surface"}},{"type":"way","id":742295529,"nodes":[6949357921,6949357920,6949357919,6949357918,6949357921],"tags":{"amenity":"parking","parking":"surface"}},{"type":"way","id":746170866,"nodes":[6982906547,6982906546,6982906545,6982906544,6982906543,6982906542,6982906547],"tags":{"access":"customers","amenity":"parking"}},{"type":"way","id":747880657,"nodes":[3325315397,6997076566,6997076565,6997076563,6997076562,6997076564,3325315395,3325315397],"tags":{"access":"customers","amenity":"parking","fee":"no","parking":"surface"}},{"type":"way","id":763977465,"nodes":[7137343680,7137343681,7137343682,7137343683,7137343680],"tags":{"access":"private","amenity":"parking","parking":"surface"}},{"type":"way","id":763977466,"nodes":[7137343684,7137383185,7137383186,7137383187,7137343684],"tags":{"access":"private","amenity":"parking","parking":"surface"}},{"type":"way","id":803821090,"nodes":[7519058290,7519058289,7519058288,7519058287,7519058290],"tags":{"access":"private","amenity":"parking","parking":"surface"}},{"type":"way","id":803821091,"nodes":[7519058294,7519058293,7519058292,7519058291,7519058294],"tags":{"access":"private","amenity":"parking","parking":"surface"}},{"type":"way","id":803821092,"nodes":[7519058298,7519058297,7519058296,7519058295,7519058298],"tags":{"access":"private","amenity":"parking","parking":"surface"}},{"type":"way","id":803821093,"nodes":[7519058302,7519058301,7519058300,7519058299,7519058302],"tags":{"access":"private","amenity":"parking","capacity":"6","parking":"surface"}},{"type":"way","id":804963962,"nodes":[7529417225,7529417226,7529417227,7529417228,7529417229,7529417230,7529417232,7529417225],"tags":{"access":"customers","amenity":"parking","fee":"no","operator":"’t Kiekekot","parking":"surface","surface":"unpaved"}},{"type":"way","id":806875503,"nodes":[4042671969,7545532512,7545532514,7545532513,3359977305,4042671969],"tags":{"amenity":"parking","parking":"surface"}},{"type":"way","id":806963547,"nodes":[7546193222,7546193221,7546193220,7546193219,7546193222],"tags":{"access":"private","amenity":"parking","parking":"surface"}},{"type":"way","id":865357121,"nodes":[8065883228,8065883227,8065883226,8065883225,8065883228],"tags":{"amenity":"parking","fee":"no","parking":"surface"}},{"type":"way","id":865357122,"nodes":[8065883233,8065883230,8065883229,8065883232,8065883233],"tags":{"amenity":"parking","fee":"no","parking":"surface"}},{"type":"way","id":879281221,"nodes":[8179735269,8179735268,8179735267,8179735266,8179735265,8179735264,8179735224,8179735269],"tags":{"access":"customers","amenity":"parking","parking":"surface"}},{"type":"way","id":881770201,"nodes":[8200275847,8200275848,8200275844,8200275853,8200275849,8200275847],"tags":{"amenity":"parking","parking":"surface","surface":"grass"}},{"type":"way","id":978360549,"nodes":[5761770202,5761770204,9052878229,9052878228,5761770202],"tags":{"amenity":"parking"}},{"type":"way","id":1009692722,"nodes":[9316118540,9316118536,9316118531,9316118535,9316118534,9316118533,9316118530,9316118532,3311835478,9316118540],"tags":{"amenity":"parking","parking":"street_side"}},{"type":"relation","id":8188853,"members":[{"type":"way","ref":577572397,"role":"outer"},{"type":"way","ref":577572399,"role":"outer"}],"tags":{"access":"guided","curator":"Luc Maene;Geert De Clercq","email":"lucmaene@hotmail.com;geert.de.clercq1@pandora.be","landuse":"meadow","leisure":"nature_reserve","name":"De Wulgenbroeken","natural":"wetland","operator":"Natuurpunt Brugge","type":"multipolygon","website":"https://natuurpuntbrugge.be/wulgenbroeken/","wetland":"wet_meadow","wikidata":"Q60061498","wikipedia":"nl:Wulgenbroeken"}},{"type":"relation","id":11163488,"members":[{"type":"way","ref":810604915,"role":"outer"},{"type":"way","ref":989393316,"role":"outer"},{"type":"way","ref":389026405,"role":"inner"},{"type":"way","ref":810607458,"role":"outer"}],"tags":{"access":"yes","curator":"Kris Lesage","description":"Wat Doeveren zo uniek maakt, zijn zijn kleine heidegebiedjes met soorten die erg verschillen van de Kempense heide. Doeveren en omstreken was vroeger één groot heidegebied, maar bestaat nu grotendeels uit bossen.","dog":"leashed","email":"doeveren@natuurpuntzedelgem.be","image":"https://i.imgur.com/NEAsQZG.jpg","image:0":"https://i.imgur.com/Dq71hyQ.jpg","image:1":"https://i.imgur.com/mAIiT4f.jpg","image:2":"https://i.imgur.com/dELZU97.jpg","image:3":"https://i.imgur.com/Bso57JC.jpg","image:4":"https://i.imgur.com/9DtcfXo.jpg","image:5":"https://i.imgur.com/0R6eBfk.jpg","image:6":"https://i.imgur.com/b0JpvbR.jpg","leisure":"nature_reserve","name":"Doeveren","operator":"Natuurpunt Zedelgem","phone":"+32 486 25 25 30","type":"multipolygon","website":"https://www.natuurpuntzedelgem.be/gebieden/doeveren/","wikidata":"Q56395754","wikipedia":"nl:Doeveren (natuurgebied)"}},{"type":"relation","id":11790117,"members":[{"type":"way","ref":863373849,"role":"outer"},{"type":"way","ref":777280458,"role":"outer"}],"tags":{"access":"no","description:0":"In gebruik als waterbuffering","leisure":"nature_reserve","name":"Kerkebeek","operator":"Natuurpunt Brugge","type":"multipolygon"}},{"type":"node","id":518224450,"lat":51.1548065,"lon":3.1880118,"timestamp":"2021-08-14T21:49:28Z","version":5,"changeset":109683837,"user":"effem","uid":16437,"tags":{"access":"yes","amenity":"parking","fee":"no","parking":"street_side"}},{"type":"node","id":665418924,"lat":51.1575547,"lon":3.20522,"timestamp":"2012-05-12T20:13:39Z","version":2,"changeset":11580224,"user":"martino260","uid":655442,"tags":{"amenity":"parking"}},{"type":"node","id":1168727903,"lat":51.1299141,"lon":3.1776123,"timestamp":"2017-04-03T08:34:05Z","version":2,"changeset":47403889,"user":"philippec","uid":76884,"tags":{"amenity":"drinking_water","mapillary":"https://www.mapillary.com/app/?lat=51.129853685131906&lng=3.177603984688602&z=17&pKey=SEyKzIMUeKssni1ZLVe-9A&focus=photo&dateTo=2017-04-02&dateFrom=2017-04-01&x=0.5168826751181941&y=0.6114877557873634&zoom=0"}},{"type":"node","id":1168728245,"lat":51.1290938,"lon":3.1767502,"timestamp":"2019-10-07T11:06:57Z","version":3,"changeset":75370316,"user":"Hopperpop","uid":3664604,"tags":{"amenity":"drinking_water","mapillary":"https://www.mapillary.com/app/?lat=51.129104406662464&lng=3.176675795895676&z=17&pKey=vSP3D_hWv3XCBtH75GnYUQ&focus=photo&dateTo=2017-04-02&dateFrom=2017-04-01"}},{"type":"node","id":1725842653,"lat":51.153364,"lon":3.2352655,"timestamp":"2012-07-02T17:33:00Z","version":2,"changeset":12090625,"user":"martino260","uid":655442,"tags":{"amenity":"bench"}},{"type":"node","id":1744641290,"lat":51.1389321,"lon":3.2385407,"timestamp":"2012-09-18T13:29:52Z","version":3,"changeset":13156159,"user":"martino260","uid":655442,"tags":{"amenity":"bench","backrest":"yes","material":"wood"}},{"type":"node","id":1746891135,"lat":51.1598841,"lon":3.2361425,"timestamp":"2012-05-09T18:22:11Z","version":1,"changeset":11551825,"user":"martino260","uid":655442,"tags":{"amenity":"bench"}},{"type":"node","id":1810326078,"lat":51.1550855,"lon":3.2349358,"timestamp":"2012-07-02T19:50:15Z","version":1,"changeset":12093439,"user":"martino260","uid":655442,"tags":{"amenity":"bench"}},{"type":"node","id":1810326092,"lat":51.1552302,"lon":3.234968,"timestamp":"2012-07-02T19:50:16Z","version":1,"changeset":12093439,"user":"martino260","uid":655442,"tags":{"amenity":"bench"}},{"type":"node","id":2325437742,"lat":51.1770052,"lon":3.1967794,"timestamp":"2013-05-30T12:19:08Z","version":1,"changeset":16350909,"user":"peeweeke","uid":494726,"tags":{"board_type":"board","information":"board","name":"Tillegembos","tourism":"information"}},{"type":"node","id":2325437743,"lat":51.1787363,"lon":3.1949036,"timestamp":"2013-05-30T12:19:08Z","version":1,"changeset":16350909,"user":"peeweeke","uid":494726,"tags":{"board_type":"board","information":"board","name":"Tillegembos","tourism":"information"}},{"type":"node","id":2325437813,"lat":51.1733102,"lon":3.1895672,"timestamp":"2013-05-30T12:19:09Z","version":1,"changeset":16350909,"user":"peeweeke","uid":494726,"tags":{"amenity":"bench","backrest":"yes","material":"wood"}},{"type":"node","id":2325437839,"lat":51.1763436,"lon":3.1984985,"timestamp":"2013-05-30T12:19:10Z","version":1,"changeset":16350909,"user":"peeweeke","uid":494726,"tags":{"amenity":"bench","backrest":"yes","material":"wood"}},{"type":"node","id":2325437848,"lat":51.1770966,"lon":3.1963507,"timestamp":"2013-05-30T12:19:10Z","version":1,"changeset":16350909,"user":"peeweeke","uid":494726,"tags":{"amenity":"bench","backrest":"yes","material":"wood"}},{"type":"node","id":2325437862,"lat":51.1773439,"lon":3.1948779,"timestamp":"2013-05-30T12:19:10Z","version":1,"changeset":16350909,"user":"peeweeke","uid":494726,"tags":{"amenity":"bench","backrest":"yes","material":"wood"}},{"type":"node","id":2325437867,"lat":51.1775994,"lon":3.1888088,"timestamp":"2013-05-30T12:19:11Z","version":1,"changeset":16350909,"user":"peeweeke","uid":494726,"tags":{"amenity":"bench","backrest":"yes","material":"wood"}},{"type":"node","id":2325437873,"lat":51.1778384,"lon":3.1913802,"timestamp":"2013-05-30T12:19:11Z","version":1,"changeset":16350909,"user":"peeweeke","uid":494726,"tags":{"amenity":"bench","backrest":"yes","material":"wood"}},{"type":"node","id":2732486257,"lat":51.129741,"lon":3.1907419,"timestamp":"2014-03-21T21:15:28Z","version":1,"changeset":21234491,"user":"meannder","uid":149496,"tags":{"board_type":"nature","information":"board","name":"Doeveren","tourism":"information"}},{"type":"node","id":3774054068,"lat":51.1586662,"lon":3.2271102,"timestamp":"2015-10-05T20:34:04Z","version":1,"changeset":34456387,"user":"TripleBee","uid":497177,"tags":{"amenity":"bench"}},{"type":"node","id":4769106605,"lat":51.138264,"lon":3.1798655,"timestamp":"2020-05-31T19:49:45Z","version":3,"changeset":86019474,"user":"Hopperpop","uid":3664604,"tags":{"backrest":"yes","leisure":"picnic_table"}},{"type":"node","id":4912238707,"lat":51.1448634,"lon":3.2455986,"timestamp":"2017-06-13T08:12:04Z","version":1,"changeset":49491753,"user":"Jakka","uid":2403313,"tags":{"access":"yes","amenity":"parking","fee":"no","name":"Oostkamp","parking":"Carpool"}},{"type":"node","id":5637212235,"lat":51.1305439,"lon":3.1866873,"timestamp":"2021-11-22T11:54:45Z","version":4,"changeset":114095475,"user":"L'imaginaire","uid":654234,"tags":{"board_type":"nature","image":"https://i.imgur.com/HehOQL9.jpg","information":"board","name":"Welkom Doeveren","tourism":"information"}},{"type":"node","id":5637224573,"lat":51.1281084,"lon":3.1881726,"timestamp":"2020-06-01T22:39:30Z","version":2,"changeset":86065716,"user":"Pieter Vander Vennet","uid":3818858,"tags":{"board_type":"nature","information":"board","name":"Welkom Doeveren","tourism":"information"}},{"type":"node","id":5637230107,"lat":51.1280884,"lon":3.1889798,"timestamp":"2018-05-23T11:55:01Z","version":1,"changeset":59208628,"user":"Jakka","uid":2403313,"tags":{"information":"board","tourism":"information"}},{"type":"node","id":5637743026,"lat":51.1295973,"lon":3.1751122,"timestamp":"2021-10-08T08:53:14Z","version":2,"changeset":112251989,"user":"DieterWesttoer","uid":13062237,"tags":{"information":"board","name":"Doeveren Wandelroute","tourism":"information"}},{"type":"node","id":5716130103,"lat":51.1767183,"lon":3.1947867,"timestamp":"2018-06-24T22:04:21Z","version":1,"changeset":60130942,"user":"Pieter Vander Vennet","uid":3818858,"tags":{"amenity":"bench","backrest":"yes"}},{"type":"node","id":5745783208,"lat":51.1782581,"lon":3.2410111,"timestamp":"2018-07-07T18:42:23Z","version":1,"changeset":60494990,"user":"Pieter Vander Vennet","uid":3818858,"tags":{"amenity":"bench"}},{"type":"node","id":5745807545,"lat":51.1784037,"lon":3.2369439,"timestamp":"2018-07-07T18:58:25Z","version":1,"changeset":60495307,"user":"Pieter Vander Vennet","uid":3818858,"tags":{"amenity":"bench"}},{"type":"node","id":5745807551,"lat":51.1783278,"lon":3.236678,"timestamp":"2018-07-07T18:58:25Z","version":1,"changeset":60495307,"user":"Pieter Vander Vennet","uid":3818858,"tags":{"amenity":"bench"}},{"type":"node","id":6535241426,"lat":51.1693142,"lon":3.1673093,"timestamp":"2019-06-09T13:50:19Z","version":1,"changeset":71071874,"user":"Hopperpop","uid":3664604,"tags":{"amenity":"bench"}},{"type":"node","id":6535241427,"lat":51.169265,"lon":3.1673159,"timestamp":"2019-06-09T13:50:19Z","version":1,"changeset":71071874,"user":"Hopperpop","uid":3664604,"tags":{"amenity":"bench"}},{"type":"node","id":6535241428,"lat":51.1692199,"lon":3.1673224,"timestamp":"2019-06-09T13:50:19Z","version":1,"changeset":71071874,"user":"Hopperpop","uid":3664604,"tags":{"amenity":"bench"}},{"type":"node","id":6535241430,"lat":51.1685726,"lon":3.1678225,"timestamp":"2019-06-09T13:50:19Z","version":1,"changeset":71071874,"user":"Hopperpop","uid":3664604,"tags":{"bench":"yes","leisure":"picnic_table","material":"wood"}},{"type":"node","id":6536026827,"lat":51.1703142,"lon":3.1691109,"timestamp":"2019-06-09T22:54:45Z","version":1,"changeset":71082671,"user":"Hopperpop","uid":3664604,"tags":{"leisure":"picnic_table"}},{"type":"node","id":6536026828,"lat":51.1702795,"lon":3.1691552,"timestamp":"2019-06-09T22:54:45Z","version":1,"changeset":71082671,"user":"Hopperpop","uid":3664604,"tags":{"leisure":"picnic_table"}},{"type":"node","id":6712112244,"lat":51.1595064,"lon":3.2021482,"timestamp":"2020-05-24T21:35:50Z","version":2,"changeset":85695537,"user":"Pieter Vander Vennet","uid":3818858,"tags":{"leisure":"picnic_table"}},{"type":"node","id":7304050040,"lat":51.1560908,"lon":3.1748919,"timestamp":"2020-03-17T19:11:00Z","version":1,"changeset":82315744,"user":"Hopperpop","uid":3664604,"tags":{"amenity":"bench"}},{"type":"node","id":7304050041,"lat":51.1560141,"lon":3.1749533,"timestamp":"2020-03-17T19:11:00Z","version":1,"changeset":82315744,"user":"Hopperpop","uid":3664604,"tags":{"amenity":"bench"}},{"type":"node","id":7304050042,"lat":51.156032,"lon":3.1749379,"timestamp":"2020-03-17T19:11:00Z","version":1,"changeset":82315744,"user":"Hopperpop","uid":3664604,"tags":{"amenity":"bench"}},{"type":"node","id":7439979218,"lat":51.1780402,"lon":3.2178666,"timestamp":"2020-04-24T00:56:14Z","version":1,"changeset":84027933,"user":"Pieter Vander Vennet","uid":3818858,"tags":{"amenity":"bench","backrest":"yes"}},{"type":"node","id":7439979219,"lat":51.1780508,"lon":3.2179033,"timestamp":"2020-04-24T00:56:14Z","version":1,"changeset":84027933,"user":"Pieter Vander Vennet","uid":3818858,"tags":{"amenity":"bench","backrest":"yes"}},{"type":"node","id":7529262982,"lat":51.1585566,"lon":3.1715528,"timestamp":"2020-05-17T16:12:04Z","version":1,"changeset":85340264,"user":"Hopperpop","uid":3664604,"tags":{"board_type":"map","information":"board","tourism":"information"}},{"type":"node","id":7529262984,"lat":51.1585786,"lon":3.1715385,"timestamp":"2020-05-17T16:12:04Z","version":1,"changeset":85340264,"user":"Hopperpop","uid":3664604,"tags":{"leisure":"picnic_table"}},{"type":"node","id":7554879668,"lat":51.1573713,"lon":3.2043731,"timestamp":"2020-05-24T21:35:50Z","version":1,"changeset":85695537,"user":"Pieter Vander Vennet","uid":3818858,"tags":{"access":"yes","amenity":"toilets","fee":"no","toilets:disposal":"flush","unisex":"yes","wheelchair":"yes"}},{"type":"node","id":7554879669,"lat":51.1594855,"lon":3.2021507,"timestamp":"2020-05-24T21:35:50Z","version":1,"changeset":85695537,"user":"Pieter Vander Vennet","uid":3818858,"tags":{"leisure":"picnic_table"}},{"type":"node","id":7556988723,"lat":51.1330234,"lon":3.1839944,"timestamp":"2020-05-25T19:19:56Z","version":1,"changeset":85730259,"user":"Hopperpop","uid":3664604,"tags":{"amenity":"bench","material":"wood"}},{"type":"node","id":7575825326,"lat":51.1386553,"lon":3.1797358,"timestamp":"2020-05-31T19:49:45Z","version":1,"changeset":86019474,"user":"Hopperpop","uid":3664604,"tags":{"amenity":"bench"}},{"type":"node","id":7575825327,"lat":51.1382456,"lon":3.1797422,"timestamp":"2020-05-31T19:49:45Z","version":1,"changeset":86019474,"user":"Hopperpop","uid":3664604,"tags":{"information":"board","tourism":"information"}},{"type":"node","id":8109498958,"lat":51.1332267,"lon":3.2341272,"timestamp":"2020-11-11T20:42:45Z","version":1,"changeset":93951029,"user":"L'imaginaire","uid":654234,"tags":{"amenity":"bench","backrest":"yes"}},{"type":"node","id":8109498959,"lat":51.1335011,"lon":3.2343954,"timestamp":"2020-11-11T20:42:45Z","version":1,"changeset":93951029,"user":"L'imaginaire","uid":654234,"tags":{"leisure":"picnic_table"}},{"type":"node","id":8198894646,"lat":51.125688,"lon":3.1856217,"timestamp":"2020-12-06T23:39:34Z","version":3,"changeset":95384686,"user":"Pieter Vander Vennet","uid":3818858,"tags":{"image":"https://i.imgur.com/O5kX20u.jpg","information":"board","tourism":"information"}},{"type":"node","id":8199012519,"lat":51.1262245,"lon":3.1802429,"timestamp":"2020-12-07T00:12:14Z","version":3,"changeset":95385124,"user":"Pieter Vander Vennet","uid":3818858,"tags":{"image":"https://i.imgur.com/tomw9p5.jpg","information":"board","tourism":"information"}},{"type":"node","id":8199244816,"lat":51.1252874,"lon":3.1837622,"timestamp":"2020-12-06T17:14:52Z","version":1,"changeset":95374174,"user":"Pieter Vander Vennet","uid":3818858,"tags":{"amenity":"bench"}},{"type":"node","id":8199301617,"lat":51.1256827,"lon":3.1853543,"timestamp":"2020-12-06T17:14:52Z","version":1,"changeset":95374174,"user":"Pieter Vander Vennet","uid":3818858,"tags":{"amenity":"bench","backrest":"no"}},{"type":"node","id":8255488518,"lat":51.1406698,"lon":3.235178,"timestamp":"2020-12-23T18:20:35Z","version":1,"changeset":96342158,"user":"L'imaginaire","uid":654234,"tags":{"amenity":"bench","backrest":"yes"}},{"type":"node","id":9316104741,"lat":51.1330984,"lon":3.2335257,"timestamp":"2021-12-06T18:31:00Z","version":1,"changeset":114629890,"user":"L'imaginaire","uid":654234,"tags":{"information":"board","tourism":"information"}},{"type":"node","id":9442532340,"lat":51.1763651,"lon":3.1947952,"timestamp":"2022-01-23T16:26:28Z","version":2,"changeset":116506336,"user":"L'imaginaire","uid":654234,"tags":{"amenity":"bench","backrest":"yes","image":"https://i.imgur.com/eZ0Loii.jpg"}},{"type":"way","id":15242261,"timestamp":"2020-04-05T07:08:45Z","version":8,"changeset":83089516,"user":"Hopperpop","uid":3664604,"nodes":[150996092,150996093,6754312552,6754312553,6754312550,6754312551,150996094,150996095,150996097,150996098,6754312560,6754312559,6754312558,150996099,6754312557,150996100,6754312555,6754312556,150996101,6754312554,150996092],"tags":{"access":"yes","amenity":"parking","fee":"no","parking":"surface"}},{"type":"way","id":16514228,"timestamp":"2017-06-13T07:14:23Z","version":9,"changeset":49490318,"user":"Jakka","uid":2403313,"nodes":[170464837,170464839,170464840,170464841,170464837],"tags":{"access":"yes","amenity":"parking","fee":"no","maxstay":"4 hours","parking":"surface"}},{"type":"way","id":76706071,"timestamp":"2017-06-17T07:51:31Z","version":4,"changeset":49608752,"user":"rowers2","uid":2445224,"nodes":[903903386,1038557094,1038557233,1038557143,1038557075,903903387,1038557195,903903388,903903390,903904576,903903386],"tags":{"access":"permissive","amenity":"parking"}},{"type":"way","id":89601157,"timestamp":"2019-11-09T18:40:50Z","version":3,"changeset":76851428,"user":"Hopperpop","uid":3664604,"nodes":[1038557083,1038557078,1038557104,1038557072,1038557108,1038557230,1038557227,1038557102,1038557137,1038575040,1038557191,1038557014,6960473080,1038557035,1038557012,1038557083],"tags":{"amenity":"parking"}},{"type":"way","id":89604999,"timestamp":"2020-01-16T22:01:28Z","version":5,"changeset":79667667,"user":"Hopperpop","uid":3664604,"nodes":[1038583404,1038583491,1038583375,1038583483,1038583479,1038583398,1038583459,1038583456,1038583446,1038583441,1038583425,1038583501,1038583451,1038583463,1038583476,1038583404],"tags":{"access":"yes","amenity":"parking","capacity":"57","carpool":"yes","description":"carpoolparking","fee":"no","name":"Loppem","parking":"surface"}},{"type":"way","id":92035679,"timestamp":"2019-10-05T08:05:33Z","version":7,"changeset":75311122,"user":"skyman81","uid":955688,"nodes":[1069177920,6853179264,1069177925,1069177919,6853179269,6853179268,6853179267,6853179215,6853179213,6853179214,1069178133,1069177984,6853179230,6853179228,6853179229,6853179224,6853179225,6853179227,6853179226,6853179216,6853179220,6853179219,6853179218,6853179217,6853179223,6853179221,6853179222,1069177967,1069177852,6853179211,6853179212,6853179210,6853179327,6853179208,6853179209,6853179203,1069177976,6853179207,6853179206,6853179205,6853179204,6853179202,1069177849,6852012579,6852012578,6852012580,6852012577,6852012581,6852012582,6852012583,1069177845,1759437085,1519342743,1519342742,1069178166,1069177853,1069177915,6853179235,6853179234,6853179236,1069177933,6853179237,6853179238,1069178021,6853179246,6853179244,6853179245,6853179240,6853179243,6853179241,6853179242,6853179239,6853179248,6853179249,6853179250,6853179247,1069177873,6853179262,6853179263,6853179260,6853179261,6853179256,6853179259,6853179257,6853179258,1069177920],"tags":{"access":"yes","amenity":"parking","fee":"no","parking":"surface"}},{"type":"way","id":101248451,"timestamp":"2018-05-23T14:18:27Z","version":2,"changeset":59213416,"user":"Jakka","uid":2403313,"nodes":[1168728158,1168728325,1168728159,5637669355,1168728109,1168728158],"tags":{"access":"private","amenity":"parking","name":"Parking Merkenveld"}},{"type":"way","id":101248462,"timestamp":"2020-05-25T13:53:02Z","version":3,"changeset":85720081,"user":"Pieter Vander Vennet","uid":3818858,"nodes":[1168727876,1168728288,1168728412,1168728208,1168727876],"tags":{"amenity":"toilets","building":"yes","source:geometry:date":"2019-03-14","source:geometry:ref":"Gbg/6588148"}},{"type":"way","id":131622387,"timestamp":"2015-01-09T12:06:51Z","version":2,"changeset":28017707,"user":"TripleBee","uid":497177,"nodes":[1448421093,1448421099,1448421091,1448421081,1448421093],"tags":{"amenity":"parking","name":"Tudor - Zeeweg","parking":"surface"}},{"type":"way","id":145691934,"timestamp":"2012-01-15T12:43:37Z","version":1,"changeset":10397429,"user":"Sanderd17","uid":253266,"nodes":[1590642859,1590642860,1590642858,1590642849,1590642859],"tags":{"amenity":"parking"}},{"type":"way","id":145691937,"timestamp":"2012-01-15T12:43:37Z","version":1,"changeset":10397429,"user":"Sanderd17","uid":253266,"nodes":[1590642829,1590642828,1590642830,1590642832,1590642829],"tags":{"amenity":"parking"}},{"type":"way","id":158901716,"timestamp":"2017-06-13T07:12:20Z","version":2,"changeset":49490264,"user":"Jakka","uid":2403313,"nodes":[1710245713,1710245718,1710245707,1710245705,1710245703,1710245715,1710245711,1710245709,1710245701,1710245713],"tags":{"access":"yes","amenity":"parking","capacity":"14","fee":"no","parking":"surface"}},{"type":"way","id":158904558,"timestamp":"2020-12-22T22:39:41Z","version":4,"changeset":96283379,"user":"M!dgard","uid":763799,"nodes":[1710262742,1710262745,1710262735,1710262733,1710262732,1710262743,1710262741,1710262739,1710262744,1710262737,1710262736,1710262731,1710262738,1710262742],"tags":{"access":"yes","alt_name":"Schoolparking","amenity":"parking","fee":"no","parking":"surface"}},{"type":"way","id":158906028,"timestamp":"2017-06-13T07:27:19Z","version":5,"changeset":49490646,"user":"Jakka","uid":2403313,"nodes":[1710276259,1710276251,1810330766,1710276255,1710276261,1710276240,1710276232,1710276257,1710276243,1710276253,1810347217,1710276242,1710276259],"tags":{"access":"yes","amenity":"parking","fee":"no","name":"Parking Sportcentrum De Valkaart","parking":"surface"}},{"type":"way","id":160825858,"timestamp":"2012-04-23T20:35:52Z","version":1,"changeset":11399632,"user":"martino260","uid":655442,"nodes":[1728421375,1728421374,1728421379,1728421377,1728421376,1728421378,1728421375],"tags":{"amenity":"parking","parking":"surface"}},{"type":"way","id":162602213,"timestamp":"2020-04-11T18:12:16Z","version":8,"changeset":83407731,"user":"JanFi","uid":672253,"nodes":[1920143232,7393009684,7393048385,1744641293,1523513488,1744641292,1920143232],"tags":{"amenity":"parking","capacity":"15"}},{"type":"way","id":165489167,"timestamp":"2020-10-12T19:06:29Z","version":3,"changeset":92371840,"user":"L'imaginaire","uid":654234,"nodes":[4912197370,4912197365,4912197373,4912197364,4912197372,1770289505,4912197362,4912197371,4912197374,4912197363,4912197368,4912197366,4912197369,4912197367,4912197370],"tags":{"access":"yes","amenity":"parking","fee":"no","name":"Bad Neuheimplein","parking":"surface"}},{"type":"way","id":168291852,"timestamp":"2017-07-19T11:17:33Z","version":3,"changeset":50402298,"user":"martino260","uid":655442,"nodes":[1795793399,4979389763,1795793409,1795793395,1795793393,1795793397,1795793407,1795793406,1795793408,1795793405,1795793399],"tags":{"access":"yes","amenity":"parking","fee":"no","parking":"surface"}},{"type":"way","id":169875513,"timestamp":"2017-06-13T07:26:09Z","version":2,"changeset":49490613,"user":"Jakka","uid":2403313,"nodes":[1810345951,1810345955,1810345947,1810345944,1810345951],"tags":{"access":"yes","amenity":"parking","fee":"no","parking":"surface"}},{"type":"way","id":170015605,"timestamp":"2017-06-17T07:51:33Z","version":4,"changeset":49608752,"user":"rowers2","uid":2445224,"nodes":[1811673425,1811673421,1811673418,1811673423,1811673425],"tags":{"access":"private","amenity":"parking","name":"gheeraert E40","operator":"Gheeraert"}},{"type":"way","id":170018487,"timestamp":"2017-06-17T07:51:33Z","version":3,"changeset":49608752,"user":"rowers2","uid":2445224,"nodes":[1811699779,1811699778,1811699776,1811699777,1811699779],"tags":{"access":"private","amenity":"parking","name":"Gheeraert vooraan"}},{"type":"way","id":170559194,"timestamp":"2017-06-17T07:51:33Z","version":2,"changeset":49608752,"user":"rowers2","uid":2445224,"nodes":[1817319304,1817319302,1817319297,1817319301,1817319304],"tags":{"access":"private","amenity":"parking","name":"Gheeraert laadkade"}},{"type":"way","id":170559195,"timestamp":"2017-06-17T07:51:33Z","version":2,"changeset":49608752,"user":"rowers2","uid":2445224,"nodes":[1817319299,1817319303,1817319300,1817319292,1817319299],"tags":{"access":"private","amenity":"parking","name":"Gheeraert spoorweg trailers"}},{"type":"way","id":170559196,"timestamp":"2017-06-17T07:51:33Z","version":2,"changeset":49608752,"user":"rowers2","uid":2445224,"nodes":[1817319293,1817319289,1817319291,1817319296,1817319293],"tags":{"access":"private","amenity":"parking","name":"Gheeraert spoorweg trucks"}},{"type":"way","id":170559197,"timestamp":"2017-06-17T07:51:33Z","version":2,"changeset":49608752,"user":"rowers2","uid":2445224,"nodes":[1817319294,1817319298,1817319295,1817319290,1817319294],"tags":{"access":"private","amenity":"parking","name":"Gheeraert zijkant"}},{"type":"way","id":170559292,"timestamp":"2017-06-17T07:51:33Z","version":2,"changeset":49608752,"user":"rowers2","uid":2445224,"nodes":[1817320496,1817320494,1817320493,1817320495,1817320496],"tags":{"access":"private","amenity":"parking","name":"Gheeraert vooraan gebouw"}},{"type":"way","id":170559832,"timestamp":"2020-10-07T10:51:41Z","version":6,"changeset":92105788,"user":"effem","uid":16437,"nodes":[1817324515,1817324509,1817324491,6397031888,4044172008,4044172003,4044171997,4044171962,4044171957,4044171976,1817324489,1817324488,3550860268,1817324505,3550860269,1817324513,1817324515],"tags":{"access":"yes","amenity":"parking","fee":"no","parking":"surface"}},{"type":"way","id":223674368,"timestamp":"2020-12-03T18:47:28Z","version":3,"changeset":95244226,"user":"L'imaginaire","uid":654234,"nodes":[2325437844,8191691971,8191691973,8191691972,2325437840,8191691970,414025563,2325437844],"tags":{"amenity":"parking","name":"Tillegembos","parking":"surface"}},{"type":"way","id":237214948,"timestamp":"2017-06-17T07:51:35Z","version":2,"changeset":49608752,"user":"rowers2","uid":2445224,"nodes":[2451574741,2451574742,2451574744,1015583939,2451574741],"tags":{"access":"private","amenity":"parking"}},{"type":"way","id":237214949,"timestamp":"2017-06-17T07:51:35Z","version":2,"changeset":49608752,"user":"rowers2","uid":2445224,"nodes":[2451574748,2451574746,2451574747,2451574749,2451574748],"tags":{"access":"private","amenity":"parking"}},{"type":"way","id":237214950,"timestamp":"2017-06-17T07:51:35Z","version":3,"changeset":49608752,"user":"rowers2","uid":2445224,"nodes":[2451569392,1015567837,2451574745,2451574743,2451578121,2451569392],"tags":{"access":"private","amenity":"parking"}},{"type":"way","id":325909586,"timestamp":"2016-01-05T18:51:49Z","version":2,"changeset":36387330,"user":"JanFi","uid":672253,"nodes":[3325315243,111759500,3325315247,3325315232,3325315230,3325315226,1169056712,3325315243],"tags":{"amenity":"parking","parking":"surface"}},{"type":"way","id":326834162,"timestamp":"2021-10-10T21:49:11Z","version":4,"changeset":112350014,"user":"Pieter Vander Vennet","uid":3818858,"nodes":[3335137807,3335137692,3335137795,9163493632,3335137802,3335137812,9163486855,9163486856,3335137823,3335137807],"tags":{"access":"customers","amenity":"parking","operator":"Best Western Weinebrugge","parking":"surface"}},{"type":"way","id":327849054,"timestamp":"2015-02-12T20:26:22Z","version":1,"changeset":28807613,"user":"escada","uid":436365,"nodes":[3346575929,3346575873,3346575876,3346575843,3346575845,3346575891,3346575901,3346575923,3346575928,3346575950,3346575929],"tags":{"access":"private","amenity":"parking","parking":"surface"}},{"type":"way","id":327849055,"timestamp":"2016-10-08T21:24:46Z","version":2,"changeset":42742859,"user":"maggot27","uid":118021,"nodes":[3346575945,3346575946,3346575943,3346575933,3346575925,3346575917,3346575903,3346575908,3346575889,3346575886,3346575945],"tags":{"access":"customers","amenity":"parking","parking":"surface"}},{"type":"way","id":327849056,"timestamp":"2015-02-12T20:26:22Z","version":1,"changeset":28807613,"user":"escada","uid":436365,"nodes":[3346575865,3346575853,3346575855,3346575846,3346575840,3346575858,3346575865],"tags":{"access":"private","amenity":"parking","parking":"surface"}},{"type":"way","id":374677860,"timestamp":"2015-10-10T09:08:20Z","version":1,"changeset":34545536,"user":"Jakka","uid":2403313,"nodes":[3780611504,3780611502,3780611500,3780611503,3780611504],"tags":{"amenity":"parking"}},{"type":"way","id":374677861,"timestamp":"2015-10-10T09:08:20Z","version":1,"changeset":34545536,"user":"Jakka","uid":2403313,"nodes":[3780611495,3780611493,3780611492,3780611494,3780611495],"tags":{"amenity":"parking"}},{"type":"way","id":374677862,"timestamp":"2015-10-10T09:08:20Z","version":1,"changeset":34545536,"user":"Jakka","uid":2403313,"nodes":[3780611498,3780611497,3780611496,3780611499,3780611501,3780611498],"tags":{"amenity":"parking"}},{"type":"way","id":389912371,"timestamp":"2016-01-06T16:51:45Z","version":1,"changeset":36407948,"user":"Spectrokid","uid":19775,"nodes":[3930713440,3930713451,3930713447,3930713437,3930713440],"tags":{"amenity":"parking"}},{"type":"way","id":389912372,"timestamp":"2019-11-16T13:17:09Z","version":4,"changeset":77164376,"user":"Hopperpop","uid":3664604,"nodes":[3930713454,3930713442,3930713435,3930713429,5826811614,3930713426,3930713430,6982605752,6982605754,3930713438,6982605769,6982605766,6982605767,6982605762,6982605764,3930713446,3930713454],"tags":{"access":"customers","amenity":"parking","fee":"no","parking":"surface"}},{"type":"way","id":401995684,"timestamp":"2020-10-07T10:52:00Z","version":3,"changeset":92105972,"user":"effem","uid":16437,"nodes":[4044171963,4044171954,4044171924,4044171936,4044171941,4044171963],"tags":{"access":"private","amenity":"parking","parking":"surface"}},{"type":"way","id":500067820,"timestamp":"2017-06-13T07:49:12Z","version":1,"changeset":49491219,"user":"Jakka","uid":2403313,"nodes":[4912203166,4912203165,4912203164,4912203163,4912203162,4912203161,4912203160,4912203166],"tags":{"access":"yes","amenity":"parking","parking":"surface"}},{"type":"way","id":500067821,"timestamp":"2017-06-13T07:49:12Z","version":1,"changeset":49491219,"user":"Jakka","uid":2403313,"nodes":[4912203170,4912203169,4912203168,4912203167,4912203170],"tags":{"access":"yes","amenity":"parking","parking":"surface"}},{"type":"way","id":500067822,"timestamp":"2017-06-13T07:49:12Z","version":1,"changeset":49491219,"user":"Jakka","uid":2403313,"nodes":[4912203174,4912203173,4912203172,4912203171,4912203174],"tags":{"access":"yes","amenity":"parking","parking":"surface"}},{"type":"way","id":500067823,"timestamp":"2017-06-13T07:49:12Z","version":1,"changeset":49491219,"user":"Jakka","uid":2403313,"nodes":[4912203179,4912203178,4912203177,4912203176,4912203179],"tags":{"access":"yes","amenity":"parking","fee":"no","parking":"surface"}},{"type":"way","id":500069613,"timestamp":"2018-10-11T09:30:48Z","version":2,"changeset":63409550,"user":"Jakka","uid":2403313,"nodes":[4912214695,4912214685,4912214694,4912214693,4912214692,4912214680,4912214695],"tags":{"access":"yes","amenity":"parking","fee":"no","parking":"surface"}},{"type":"way","id":500071452,"timestamp":"2018-10-11T09:30:48Z","version":2,"changeset":63409550,"user":"Jakka","uid":2403313,"nodes":[4912225068,4912225062,4912225063,4912225053,4912225064,4912214694,4912214685,4912225068],"tags":{"access":"yes","amenity":"parking","fee":"no","parking":"surface"}},{"type":"way","id":500071455,"timestamp":"2018-10-11T09:30:48Z","version":2,"changeset":63409550,"user":"Jakka","uid":2403313,"nodes":[4912225070,4912214681,4912214686,4912225052,4912225051,4912225067,4912225062,4912225068,4912225070],"tags":{"access":"yes","amenity":"parking","fee":"no","parking":"surface"}},{"type":"way","id":500071458,"timestamp":"2018-10-11T09:30:48Z","version":2,"changeset":63409550,"user":"Jakka","uid":2403313,"nodes":[4912214695,4912214680,4912225069,4912225050,1525460846,4912214681,4912225070,4912214695],"tags":{"access":"yes","amenity":"parking","fee":"no","parking":"surface"}},{"type":"way","id":533276307,"timestamp":"2019-12-13T10:02:12Z","version":2,"changeset":78364882,"user":"skyman81","uid":955688,"nodes":[5173881316,5173881317,5173881318,7054196467,5173881316],"tags":{"amenity":"parking"}},{"type":"way","id":533276308,"timestamp":"2017-10-17T23:36:18Z","version":1,"changeset":53027174,"user":"Pieter Vander Vennet","uid":3818858,"nodes":[5173881320,5173881621,5173881622,5173881623,5173881320],"tags":{"amenity":"parking"}},{"type":"way","id":533276309,"timestamp":"2017-10-17T23:36:18Z","version":1,"changeset":53027174,"user":"Pieter Vander Vennet","uid":3818858,"nodes":[5173881624,5173881625,5173881626,5173881627,5173881624],"tags":{"amenity":"parking"}},{"type":"way","id":579848581,"timestamp":"2020-04-05T07:08:57Z","version":6,"changeset":83089516,"user":"Hopperpop","uid":3664604,"nodes":[4043782112,5825400688,5552466020,6997096756,6997096759,6997096758,5552466018,5552466013,5552466014,6997076567,4043782112],"tags":{"access":"yes","amenity":"parking","fee":"no","parking":"surface"}},{"type":"way","id":584455569,"timestamp":"2019-10-31T19:49:18Z","version":2,"changeset":76465627,"user":"Hopperpop","uid":3664604,"nodes":[5586765933,5586765934,5586765935,5586765936,5586765933],"tags":{"amenity":"parking"}},{"type":"way","id":585977870,"timestamp":"2019-10-11T13:28:22Z","version":2,"changeset":75566739,"user":"Hopperpop","uid":3664604,"nodes":[5587844460,5599314384,5599314385,1659850846,6870850178,5587844462,5587844461,6870863414,5587844460],"tags":{"amenity":"parking"}},{"type":"way","id":587014342,"timestamp":"2018-05-09T19:13:29Z","version":1,"changeset":58829130,"user":"Sille Van Landschoot","uid":4852501,"nodes":[5607796820,5607798725,5607798721,5607798722,5607796819,5607798723,5607796820],"tags":{"access":"permissive","amenity":"parking","park_ride":"no","parking":"surface","surface":"paved"}},{"type":"way","id":590167103,"timestamp":"2018-05-22T12:37:36Z","version":1,"changeset":59179114,"user":"ForstEK","uid":1737608,"nodes":[5635001277,5635001274,5635001275,5635001276,5635001277],"tags":{"amenity":"parking"}},{"type":"way","id":590167113,"timestamp":"2020-07-29T17:45:20Z","version":2,"changeset":88691835,"user":"JanFi","uid":672253,"nodes":[5635001312,5635001306,7767137237,7767137235,7767137236,7767137234,5635001312],"tags":{"amenity":"parking"}},{"type":"way","id":590167134,"timestamp":"2018-05-22T12:37:37Z","version":1,"changeset":59179114,"user":"ForstEK","uid":1737608,"nodes":[5635001374,5635001373,5635001372,5635001371,5635001374],"tags":{"amenity":"parking"}},{"type":"way","id":590167135,"timestamp":"2018-05-22T12:37:37Z","version":1,"changeset":59179114,"user":"ForstEK","uid":1737608,"nodes":[5635001378,5635001377,5635001376,5635001375,5635001378],"tags":{"amenity":"parking"}},{"type":"way","id":590167136,"timestamp":"2018-05-22T12:37:37Z","version":1,"changeset":59179114,"user":"ForstEK","uid":1737608,"nodes":[5635001382,5635001381,5635001380,5635001379,5635001382],"tags":{"amenity":"parking"}},{"type":"way","id":590167137,"timestamp":"2019-07-06T15:58:19Z","version":3,"changeset":71962591,"user":"gjosch","uid":1776978,"nodes":[5635001386,5882873336,5882873337,5882873338,5882873335,6593340582,6593340583,5882873334,6593340584,5635001385,5635001384,5635001383,5635001386],"tags":{"amenity":"parking"}},{"type":"way","id":590167147,"timestamp":"2018-05-22T12:37:38Z","version":1,"changeset":59179114,"user":"ForstEK","uid":1737608,"nodes":[5635001417,5635001414,5635001415,5635001416,5635001417],"tags":{"amenity":"parking"}},{"type":"way","id":601406079,"timestamp":"2018-06-24T22:15:06Z","version":1,"changeset":60131072,"user":"Pieter Vander Vennet","uid":3818858,"nodes":[5716136617,5716136618,5716136619,5716136620,5716136617],"tags":{"amenity":"parking"}},{"type":"way","id":632813009,"timestamp":"2018-10-11T09:24:42Z","version":1,"changeset":63409297,"user":"Jakka","uid":2403313,"nodes":[5974489618,1810326044,1810326087,5974489617,5972179348,5972179347,5972179346,5972179345,5972179344,5972179343,5972179331,5974489616,5974489615,5974489614,5974489618],"tags":{"amenity":"parking","name":"Gemeenteplein","parking":"surface"}},{"type":"way","id":668043297,"timestamp":"2019-04-10T18:34:27Z","version":2,"changeset":69093378,"user":"RudolpheDeer","uid":9408828,"nodes":[6255587424,6255587425,6255587426,6255587427,6255587424],"tags":{"access":"private","amenity":"parking"}},{"type":"way","id":670104236,"timestamp":"2019-02-13T00:05:02Z","version":1,"changeset":67147239,"user":"Pieter Vander Vennet","uid":3818858,"nodes":[6275462768,6275462769,6275462770,6275462771,6275462768],"tags":{"amenity":"parking"}},{"type":"way","id":670104238,"timestamp":"2019-02-13T00:05:02Z","version":1,"changeset":67147239,"user":"Pieter Vander Vennet","uid":3818858,"nodes":[6275462772,6275462989,6275462773,6275462774,6275462775,6275462772],"tags":{"amenity":"parking"}},{"type":"way","id":670104239,"timestamp":"2019-02-13T00:05:02Z","version":1,"changeset":67147239,"user":"Pieter Vander Vennet","uid":3818858,"nodes":[6275462776,6275462777,6275462778,6275462779,6275462776],"tags":{"amenity":"parking"}},{"type":"way","id":670104241,"timestamp":"2019-02-13T00:05:02Z","version":1,"changeset":67147239,"user":"Pieter Vander Vennet","uid":3818858,"nodes":[6275462780,6275462781,6275462782,6275462783,6275462780],"tags":{"amenity":"parking"}},{"type":"way","id":670104242,"timestamp":"2019-02-13T00:05:02Z","version":1,"changeset":67147239,"user":"Pieter Vander Vennet","uid":3818858,"nodes":[6275462784,6275462985,6275462988,6275462986,6275462987,6275462784],"tags":{"amenity":"parking"}},{"type":"way","id":671840055,"timestamp":"2019-02-20T15:15:45Z","version":1,"changeset":67395313,"user":"Tim Couwelier","uid":7246683,"nodes":[6291339827,6291339828,6291339816,6291339815,6291339822,6291339821,6291339829,6291339830,6291339827],"tags":{"amenity":"parking"}},{"type":"way","id":695825223,"timestamp":"2019-06-08T15:19:24Z","version":1,"changeset":71053301,"user":"Hopperpop","uid":3664604,"nodes":[1519476746,6533893620,6533893621,6533893622,1519476797,1519476620,1519476746],"tags":{"access":"yes","amenity":"parking"}},{"type":"way","id":695825224,"timestamp":"2019-06-08T15:19:24Z","version":1,"changeset":71053301,"user":"Hopperpop","uid":3664604,"nodes":[1519476744,6533893624,6533893625,6533893626,1519476698,1519476635,1519476744],"tags":{"access":"yes","amenity":"parking"}},{"type":"way","id":696040917,"timestamp":"2019-06-09T23:24:59Z","version":2,"changeset":71082992,"user":"Hopperpop","uid":3664604,"nodes":[6536026850,6536026851,6536026852,6536026853,6536026850],"tags":{"amenity":"parking","name":"Kasteel Tudor"}},{"type":"way","id":696043218,"timestamp":"2019-06-09T23:24:59Z","version":1,"changeset":71082992,"user":"Hopperpop","uid":3664604,"nodes":[6536038234,6536038235,6536038236,6536038237,6536038234],"tags":{"access":"customers","amenity":"parking"}},{"type":"way","id":700675991,"timestamp":"2020-12-18T10:48:20Z","version":2,"changeset":96062619,"user":"Hopperpop","uid":3664604,"nodes":[6579962064,6579962065,6579962066,6579962068,6579962067,6579962064],"tags":{"access":"private","amenity":"parking","parking":"surface"}},{"type":"way","id":705278707,"timestamp":"2020-09-30T20:36:55Z","version":2,"changeset":91787895,"user":"L'imaginaire","uid":654234,"nodes":[6625037999,6625038000,6625038001,6625038002,6625038003,6004375826,6625038005,6625038006,6625037999],"tags":{"amenity":"parking"}},{"type":"way","id":719482833,"timestamp":"2019-08-28T21:18:49Z","version":1,"changeset":73857967,"user":"Hopperpop","uid":3664604,"nodes":[6754312544,6754312543,6754312542,6754312541,6754312544],"tags":{"access":"yes","amenity":"parking","capacity":"5"}},{"type":"way","id":719482834,"timestamp":"2019-08-28T21:18:49Z","version":1,"changeset":73857967,"user":"Hopperpop","uid":3664604,"nodes":[6754312565,6754312564,6754312563,6754312562,6754312565],"tags":{"access":"yes","amenity":"parking","capacity":"12"}},{"type":"way","id":737054013,"timestamp":"2019-10-20T15:39:32Z","version":1,"changeset":75957554,"user":"Hopperpop","uid":3664604,"nodes":[5826811496,5826811497,5826811494,5826811495,5826811496],"tags":{"amenity":"parking"}},{"type":"way","id":737054014,"timestamp":"2019-10-20T15:39:32Z","version":1,"changeset":75957554,"user":"Hopperpop","uid":3664604,"nodes":[5826810676,5826810673,5826810674,5826810675,5826810676],"tags":{"amenity":"parking"}},{"type":"way","id":737054015,"timestamp":"2019-10-20T15:39:32Z","version":1,"changeset":75957554,"user":"Hopperpop","uid":3664604,"nodes":[5826810681,5826810678,5826810679,5826810680,5826810681],"tags":{"amenity":"parking"}},{"type":"way","id":737093410,"timestamp":"2021-08-14T21:52:07Z","version":2,"changeset":109683899,"user":"effem","uid":16437,"nodes":[5826811559,5826811536,5826811535,5826811561,5826811560,5826811559],"tags":{"access":"yes","amenity":"parking","capacity":"4","fee":"no","parking":"surface"}},{"type":"way","id":737093411,"timestamp":"2021-08-14T21:52:03Z","version":2,"changeset":109683899,"user":"effem","uid":16437,"nodes":[5826811551,5826811547,5826811548,5826811549,5826811550,5826811551],"tags":{"access":"yes","amenity":"parking","capacity":"4","fee":"no","parking":"surface"}},{"type":"way","id":739652949,"timestamp":"2019-10-28T20:18:16Z","version":1,"changeset":76314556,"user":"Hopperpop","uid":3664604,"nodes":[6925536542,6925536541,6925536540,6925536539,6925536542],"tags":{"amenity":"parking","capacity":"6","parking":"surface"}},{"type":"way","id":741675236,"timestamp":"2020-12-17T22:07:55Z","version":4,"changeset":96029554,"user":"Hopperpop","uid":3664604,"nodes":[6943148207,6943148206,6943148205,6943148204,1637742821,6943148203,6943148202,6943148201,6943148200,6943148199,6943148198,6943148197,6943148207],"tags":{"access":"yes","amenity":"parking","fee":"no","parking":"surface"}},{"type":"way","id":742295526,"timestamp":"2019-11-05T19:27:15Z","version":1,"changeset":76664875,"user":"Hopperpop","uid":3664604,"nodes":[6949357909,6949357908,6949357907,6949357906,6949357909],"tags":{"amenity":"parking","parking":"surface"}},{"type":"way","id":742295527,"timestamp":"2019-11-05T19:27:15Z","version":1,"changeset":76664875,"user":"Hopperpop","uid":3664604,"nodes":[6949357913,6949357912,6949357911,6949357910,6949357913],"tags":{"amenity":"parking","parking":"surface"}},{"type":"way","id":742295528,"timestamp":"2019-11-05T19:27:15Z","version":1,"changeset":76664875,"user":"Hopperpop","uid":3664604,"nodes":[6949357917,6949357916,6949357915,6949357914,6949357917],"tags":{"amenity":"parking","parking":"surface"}},{"type":"way","id":742295529,"timestamp":"2019-11-05T19:27:15Z","version":1,"changeset":76664875,"user":"Hopperpop","uid":3664604,"nodes":[6949357921,6949357920,6949357919,6949357918,6949357921],"tags":{"amenity":"parking","parking":"surface"}},{"type":"way","id":746170866,"timestamp":"2019-11-16T15:27:02Z","version":1,"changeset":77167609,"user":"Hopperpop","uid":3664604,"nodes":[6982906547,6982906546,6982906545,6982906544,6982906543,6982906542,6982906547],"tags":{"access":"customers","amenity":"parking"}},{"type":"way","id":747880657,"timestamp":"2021-09-19T12:40:45Z","version":2,"changeset":111407274,"user":"Hopperpop","uid":3664604,"nodes":[3325315397,6997076566,6997076565,6997076563,6997076562,6997076564,3325315395,3325315397],"tags":{"access":"customers","amenity":"parking","fee":"no","parking":"surface"}},{"type":"way","id":763977465,"timestamp":"2020-12-17T21:59:46Z","version":2,"changeset":96029554,"user":"Hopperpop","uid":3664604,"nodes":[7137343680,7137343681,7137343682,7137343683,7137343680],"tags":{"access":"private","amenity":"parking","parking":"surface"}},{"type":"way","id":763977466,"timestamp":"2020-12-17T21:59:40Z","version":2,"changeset":96029554,"user":"Hopperpop","uid":3664604,"nodes":[7137343684,7137383185,7137383186,7137383187,7137343684],"tags":{"access":"private","amenity":"parking","parking":"surface"}},{"type":"way","id":803821090,"timestamp":"2020-05-14T17:37:10Z","version":1,"changeset":85215781,"user":"Hopperpop","uid":3664604,"nodes":[7519058290,7519058289,7519058288,7519058287,7519058290],"tags":{"access":"private","amenity":"parking","parking":"surface"}},{"type":"way","id":803821091,"timestamp":"2020-05-14T17:37:10Z","version":1,"changeset":85215781,"user":"Hopperpop","uid":3664604,"nodes":[7519058294,7519058293,7519058292,7519058291,7519058294],"tags":{"access":"private","amenity":"parking","parking":"surface"}},{"type":"way","id":803821092,"timestamp":"2020-05-14T17:37:10Z","version":1,"changeset":85215781,"user":"Hopperpop","uid":3664604,"nodes":[7519058298,7519058297,7519058296,7519058295,7519058298],"tags":{"access":"private","amenity":"parking","parking":"surface"}},{"type":"way","id":803821093,"timestamp":"2020-05-14T17:37:10Z","version":1,"changeset":85215781,"user":"Hopperpop","uid":3664604,"nodes":[7519058302,7519058301,7519058300,7519058299,7519058302],"tags":{"access":"private","amenity":"parking","capacity":"6","parking":"surface"}},{"type":"way","id":804963962,"timestamp":"2020-05-17T17:09:31Z","version":1,"changeset":85342199,"user":"Hopperpop","uid":3664604,"nodes":[7529417225,7529417226,7529417227,7529417228,7529417229,7529417230,7529417232,7529417225],"tags":{"access":"customers","amenity":"parking","fee":"no","operator":"’t Kiekekot","parking":"surface","surface":"unpaved"}},{"type":"way","id":806875503,"timestamp":"2020-05-21T15:48:37Z","version":1,"changeset":85563652,"user":"Hopperpop","uid":3664604,"nodes":[4042671969,7545532512,7545532514,7545532513,3359977305,4042671969],"tags":{"amenity":"parking","parking":"surface"}},{"type":"way","id":806963547,"timestamp":"2020-05-21T21:16:34Z","version":1,"changeset":85574048,"user":"Hopperpop","uid":3664604,"nodes":[7546193222,7546193221,7546193220,7546193219,7546193222],"tags":{"access":"private","amenity":"parking","parking":"surface"}},{"type":"way","id":865357121,"timestamp":"2020-10-30T14:45:23Z","version":1,"changeset":93296961,"user":"L'imaginaire","uid":654234,"nodes":[8065883228,8065883227,8065883226,8065883225,8065883228],"tags":{"amenity":"parking","fee":"no","parking":"surface"}},{"type":"way","id":865357122,"timestamp":"2020-10-30T14:45:23Z","version":1,"changeset":93296961,"user":"L'imaginaire","uid":654234,"nodes":[8065883233,8065883230,8065883229,8065883232,8065883233],"tags":{"amenity":"parking","fee":"no","parking":"surface"}},{"type":"way","id":879281221,"timestamp":"2020-11-30T14:18:18Z","version":1,"changeset":95050429,"user":"M!dgard","uid":763799,"nodes":[8179735269,8179735268,8179735267,8179735266,8179735265,8179735264,8179735224,8179735269],"tags":{"access":"customers","amenity":"parking","parking":"surface"}},{"type":"way","id":881770201,"timestamp":"2020-12-07T00:46:56Z","version":1,"changeset":95385582,"user":"Pieter Vander Vennet","uid":3818858,"nodes":[8200275847,8200275848,8200275844,8200275853,8200275849,8200275847],"tags":{"amenity":"parking","parking":"surface","surface":"grass"}},{"type":"way","id":978360549,"timestamp":"2021-09-01T08:53:08Z","version":1,"changeset":110553113,"user":"JanFi","uid":672253,"nodes":[5761770202,5761770204,9052878229,9052878228,5761770202],"tags":{"amenity":"parking"}},{"type":"way","id":1009692722,"timestamp":"2021-12-06T18:34:20Z","version":1,"changeset":114629990,"user":"L'imaginaire","uid":654234,"nodes":[9316118540,9316118536,9316118531,9316118535,9316118534,9316118533,9316118530,9316118532,3311835478,9316118540],"tags":{"amenity":"parking","parking":"street_side"}},{"type":"relation","id":8188853,"timestamp":"2020-07-05T12:38:48Z","version":13,"changeset":87554177,"user":"Pieter Vander Vennet","uid":3818858,"members":[{"type":"way","ref":577572397,"role":"outer"},{"type":"way","ref":577572399,"role":"outer"}],"tags":{"access":"guided","curator":"Luc Maene;Geert De Clercq","email":"lucmaene@hotmail.com;geert.de.clercq1@pandora.be","landuse":"meadow","leisure":"nature_reserve","name":"De Wulgenbroeken","natural":"wetland","operator":"Natuurpunt Brugge","type":"multipolygon","website":"https://natuurpuntbrugge.be/wulgenbroeken/","wetland":"wet_meadow","wikidata":"Q60061498","wikipedia":"nl:Wulgenbroeken"}},{"type":"relation","id":11163488,"timestamp":"2021-10-04T14:09:47Z","version":15,"changeset":112079863,"user":"DieterWesttoer","uid":13062237,"members":[{"type":"way","ref":810604915,"role":"outer"},{"type":"way","ref":989393316,"role":"outer"},{"type":"way","ref":389026405,"role":"inner"},{"type":"way","ref":810607458,"role":"outer"}],"tags":{"access":"yes","curator":"Kris Lesage","description":"Wat Doeveren zo uniek maakt, zijn zijn kleine heidegebiedjes met soorten die erg verschillen van de Kempense heide. Doeveren en omstreken was vroeger één groot heidegebied, maar bestaat nu grotendeels uit bossen.","dog":"leashed","email":"doeveren@natuurpuntzedelgem.be","image":"https://i.imgur.com/NEAsQZG.jpg","image:0":"https://i.imgur.com/Dq71hyQ.jpg","image:1":"https://i.imgur.com/mAIiT4f.jpg","image:2":"https://i.imgur.com/dELZU97.jpg","image:3":"https://i.imgur.com/Bso57JC.jpg","image:4":"https://i.imgur.com/9DtcfXo.jpg","image:5":"https://i.imgur.com/0R6eBfk.jpg","image:6":"https://i.imgur.com/b0JpvbR.jpg","leisure":"nature_reserve","name":"Doeveren","operator":"Natuurpunt Zedelgem","phone":"+32 486 25 25 30","type":"multipolygon","website":"https://www.natuurpuntzedelgem.be/gebieden/doeveren/","wikidata":"Q56395754","wikipedia":"nl:Doeveren (natuurgebied)"}},{"type":"relation","id":11790117,"timestamp":"2020-10-24T19:11:01Z","version":1,"changeset":92997462,"user":"Pieter Vander Vennet","uid":3818858,"members":[{"type":"way","ref":863373849,"role":"outer"},{"type":"way","ref":777280458,"role":"outer"}],"tags":{"access":"no","description:0":"In gebruik als waterbuffering","leisure":"nature_reserve","name":"Kerkebeek","operator":"Natuurpunt Brugge","type":"multipolygon"}},{"type":"node","id":1038638696,"lat":51.1197075,"lon":3.1827007},{"type":"node","id":7578975029,"lat":51.1199041,"lon":3.1828945},{"type":"node","id":7578975030,"lat":51.1201514,"lon":3.1831942},{"type":"node","id":1038638743,"lat":51.1202445,"lon":3.1894878},{"type":"node","id":7578975002,"lat":51.1202598,"lon":3.1897155},{"type":"node","id":7578975007,"lat":51.1199771,"lon":3.1863015},{"type":"node","id":7578975008,"lat":51.1199523,"lon":3.1863031},{"type":"node","id":7578975009,"lat":51.1199279,"lon":3.1859524},{"type":"node","id":1168728109,"lat":51.1275839,"lon":3.1765505},{"type":"node","id":1168728158,"lat":51.1278835,"lon":3.1763986},{"type":"node","id":1168728159,"lat":51.1276298,"lon":3.1767808},{"type":"node","id":5637669355,"lat":51.1276039,"lon":3.1766509},{"type":"node","id":1038638723,"lat":51.1272818,"lon":3.184601},{"type":"node","id":7554434438,"lat":51.1225298,"lon":3.1847624},{"type":"node","id":7578865273,"lat":51.122084,"lon":3.1846859},{"type":"node","id":7578975032,"lat":51.1215762,"lon":3.1842866},{"type":"node","id":1168727876,"lat":51.1290569,"lon":3.1766033},{"type":"node","id":1168728208,"lat":51.1289763,"lon":3.1767696},{"type":"node","id":1168728288,"lat":51.1291195,"lon":3.1766799},{"type":"node","id":1168728325,"lat":51.1279295,"lon":3.1766288},{"type":"node","id":1168728412,"lat":51.1290389,"lon":3.1768463},{"type":"node","id":1038638712,"lat":51.1282367,"lon":3.1840296},{"type":"node","id":1168727824,"lat":51.1312478,"lon":3.182233},{"type":"node","id":3922375256,"lat":51.1301155,"lon":3.1848042},{"type":"node","id":3922380071,"lat":51.1304048,"lon":3.1838954},{"type":"node","id":3922380081,"lat":51.1305694,"lon":3.1845093},{"type":"node","id":3922380086,"lat":51.1306445,"lon":3.1848152},{"type":"node","id":3922380092,"lat":51.1307378,"lon":3.1849591},{"type":"node","id":7577430793,"lat":51.1289492,"lon":3.1836032},{"type":"node","id":7578975024,"lat":51.1299598,"lon":3.1841704},{"type":"node","id":7578975028,"lat":51.1322547,"lon":3.1833542},{"type":"node","id":7578975049,"lat":51.1313772,"lon":3.1838431},{"type":"node","id":9167054153,"lat":51.1310258,"lon":3.1823668},{"type":"node","id":9167054154,"lat":51.13145,"lon":3.1841492},{"type":"node","id":9167054156,"lat":51.1316731,"lon":3.1850331},{"type":"node","id":9274761589,"lat":51.1297088,"lon":3.1831312},{"type":"node","id":9274761596,"lat":51.1296735,"lon":3.1831518},{"type":"node","id":929120698,"lat":51.1276376,"lon":3.1903134},{"type":"node","id":1038638592,"lat":51.1264889,"lon":3.19027},{"type":"node","id":1038638661,"lat":51.1258582,"lon":3.1854626},{"type":"node","id":1038638721,"lat":51.125636,"lon":3.1855855},{"type":"node","id":1038638753,"lat":51.123845,"lon":3.1880289},{"type":"node","id":3921878998,"lat":51.1255719,"lon":3.1902463},{"type":"node","id":3921879004,"lat":51.1275463,"lon":3.188843},{"type":"node","id":3921879011,"lat":51.1271626,"lon":3.1872368},{"type":"node","id":3921879019,"lat":51.1277666,"lon":3.1868505},{"type":"node","id":7554434436,"lat":51.1252645,"lon":3.1852941},{"type":"node","id":7578865274,"lat":51.1230564,"lon":3.187978},{"type":"node","id":7578865275,"lat":51.1226417,"lon":3.188075},{"type":"node","id":7578904489,"lat":51.1247504,"lon":3.1900249},{"type":"node","id":7578974988,"lat":51.1223221,"lon":3.1906513},{"type":"node","id":7578974989,"lat":51.1224255,"lon":3.1905646},{"type":"node","id":7578974990,"lat":51.1224672,"lon":3.1905195},{"type":"node","id":7578974991,"lat":51.1228709,"lon":3.1901867},{"type":"node","id":7578974992,"lat":51.1229568,"lon":3.1901459},{"type":"node","id":7578974995,"lat":51.123814,"lon":3.1899138},{"type":"node","id":7578974996,"lat":51.1239199,"lon":3.189925},{"type":"node","id":7578974997,"lat":51.1244111,"lon":3.1899686},{"type":"node","id":7578974998,"lat":51.1248503,"lon":3.190215},{"type":"node","id":7578974999,"lat":51.1247917,"lon":3.1900516},{"type":"node","id":7578975000,"lat":51.1248293,"lon":3.1900978},{"type":"node","id":7578975001,"lat":51.1248444,"lon":3.1901483},{"type":"node","id":7578975035,"lat":51.1250798,"lon":3.1851611},{"type":"node","id":7578975045,"lat":51.1278881,"lon":3.1882941},{"type":"node","id":9199177059,"lat":51.1256647,"lon":3.1855696},{"type":"node","id":7578987409,"lat":51.1232707,"lon":3.1920382},{"type":"node","id":7578987413,"lat":51.1260416,"lon":3.1973652},{"type":"node","id":7578987414,"lat":51.1263443,"lon":3.1973775},{"type":"node","id":7578987416,"lat":51.1278708,"lon":3.1974134},{"type":"node","id":7578987417,"lat":51.126749,"lon":3.197258},{"type":"node","id":1675648152,"lat":51.1281877,"lon":3.1903323},{"type":"node","id":2732486274,"lat":51.1302553,"lon":3.1886305},{"type":"node","id":3921879018,"lat":51.1280809,"lon":3.188102},{"type":"node","id":3922380061,"lat":51.1301929,"lon":3.1895402},{"type":"node","id":3922380083,"lat":51.1305788,"lon":3.1884337},{"type":"node","id":3922380095,"lat":51.130784,"lon":3.1852632},{"type":"node","id":7578865281,"lat":51.1283938,"lon":3.1903716},{"type":"node","id":7578865283,"lat":51.1288414,"lon":3.1904911},{"type":"node","id":7578960079,"lat":51.1303025,"lon":3.1855669},{"type":"node","id":7578975012,"lat":51.1294792,"lon":3.1906231},{"type":"node","id":7578975015,"lat":51.1297374,"lon":3.1907018},{"type":"node","id":7578975016,"lat":51.1300451,"lon":3.1907679},{"type":"node","id":7578975018,"lat":51.1305785,"lon":3.186668},{"type":"node","id":7578975019,"lat":51.130956,"lon":3.1881852},{"type":"node","id":7578975021,"lat":51.1303082,"lon":3.1855908},{"type":"node","id":7578975026,"lat":51.1310167,"lon":3.1861981},{"type":"node","id":7578975027,"lat":51.1318642,"lon":3.1857905},{"type":"node","id":7578975040,"lat":51.1280348,"lon":3.1889503},{"type":"node","id":7578975044,"lat":51.1279308,"lon":3.1875031},{"type":"node","id":7578975046,"lat":51.1279329,"lon":3.1881992},{"type":"node","id":9167054157,"lat":51.1308023,"lon":3.1852517},{"type":"node","id":9274761591,"lat":51.1310994,"lon":3.1862668},{"type":"node","id":9274761592,"lat":51.1310643,"lon":3.1862655},{"type":"node","id":9274761593,"lat":51.1310386,"lon":3.1862393},{"type":"node","id":7578987418,"lat":51.128003,"lon":3.1959031},{"type":"node","id":7578987419,"lat":51.1282167,"lon":3.193723},{"type":"node","id":5745833239,"lat":51.1258572,"lon":3.1996713},{"type":"node","id":5745833240,"lat":51.1257519,"lon":3.1995939},{"type":"node","id":5745833241,"lat":51.1253365,"lon":3.1991234},{"type":"node","id":7578987410,"lat":51.1243814,"lon":3.1988516},{"type":"node","id":7578987411,"lat":51.1243992,"lon":3.1989686},{"type":"node","id":7578987412,"lat":51.1259883,"lon":3.1997074},{"type":"node","id":7578987415,"lat":51.1260745,"lon":3.1997142},{"type":"node","id":1590642829,"lat":51.1333867,"lon":3.2308055},{"type":"node","id":1590642832,"lat":51.1334371,"lon":3.2308262},{"type":"node","id":1590642849,"lat":51.1336392,"lon":3.2305316},{"type":"node","id":1590642858,"lat":51.133659,"lon":3.2303991},{"type":"node","id":1590642859,"lat":51.1336899,"lon":3.2305508},{"type":"node","id":1590642860,"lat":51.1337096,"lon":3.2304183},{"type":"node","id":1590642828,"lat":51.1333653,"lon":3.2309374},{"type":"node","id":1590642830,"lat":51.1334157,"lon":3.2309581},{"type":"node","id":3311835478,"lat":51.133195,"lon":3.2334351},{"type":"node","id":9316118530,"lat":51.1331607,"lon":3.2333604},{"type":"node","id":9316118531,"lat":51.1330927,"lon":3.2334241},{"type":"node","id":9316118532,"lat":51.1331767,"lon":3.233347},{"type":"node","id":9316118533,"lat":51.133147,"lon":3.2333808},{"type":"node","id":9316118534,"lat":51.1331302,"lon":3.2334006},{"type":"node","id":9316118535,"lat":51.1331127,"lon":3.2334144},{"type":"node","id":9316118536,"lat":51.1330784,"lon":3.2334281},{"type":"node","id":9316118540,"lat":51.1330946,"lon":3.2335103},{"type":"node","id":6579962064,"lat":51.1367061,"lon":3.1640546},{"type":"node","id":6579962065,"lat":51.1361156,"lon":3.1646435},{"type":"node","id":6579962066,"lat":51.1357413,"lon":3.1637334},{"type":"node","id":6579962067,"lat":51.1359511,"lon":3.1637408},{"type":"node","id":6579962068,"lat":51.1359389,"lon":3.1638093},{"type":"node","id":7546193219,"lat":51.1456739,"lon":3.1637073},{"type":"node","id":7546193220,"lat":51.1455706,"lon":3.1643444},{"type":"node","id":7546193221,"lat":51.1456623,"lon":3.1643821},{"type":"node","id":7546193222,"lat":51.1457656,"lon":3.1637451},{"type":"node","id":3359977305,"lat":51.1464982,"lon":3.1689911},{"type":"node","id":4042671969,"lat":51.1461398,"lon":3.169233},{"type":"node","id":7545532512,"lat":51.1463103,"lon":3.169498},{"type":"node","id":7545532513,"lat":51.1466008,"lon":3.1695349},{"type":"node","id":7545532514,"lat":51.1464331,"lon":3.16962},{"type":"node","id":8200275848,"lat":51.1409105,"lon":3.1800288},{"type":"node","id":8200275844,"lat":51.1416967,"lon":3.1797728},{"type":"node","id":8200275847,"lat":51.1411211,"lon":3.1805153},{"type":"node","id":8200275849,"lat":51.1417397,"lon":3.1802115},{"type":"node","id":8200275853,"lat":51.1417351,"lon":3.1801651},{"type":"node","id":111759500,"lat":51.1483444,"lon":3.1886487},{"type":"node","id":1169056712,"lat":51.1482974,"lon":3.1884805},{"type":"node","id":3325315226,"lat":51.147926,"lon":3.1887015},{"type":"node","id":3325315230,"lat":51.1479856,"lon":3.1889124},{"type":"node","id":3325315232,"lat":51.1480454,"lon":3.1891027},{"type":"node","id":3325315243,"lat":51.1483285,"lon":3.1885919},{"type":"node","id":3325315247,"lat":51.1484007,"lon":3.1888131},{"type":"node","id":5826810673,"lat":51.1512507,"lon":3.1914885},{"type":"node","id":5826810674,"lat":51.15126,"lon":3.1914533},{"type":"node","id":5826810675,"lat":51.1510883,"lon":3.1912776},{"type":"node","id":5826810676,"lat":51.151057,"lon":3.1912906},{"type":"node","id":5826810678,"lat":51.1509897,"lon":3.1911759},{"type":"node","id":5826810679,"lat":51.1510025,"lon":3.1911334},{"type":"node","id":5826810680,"lat":51.1509352,"lon":3.1908874},{"type":"node","id":5826810681,"lat":51.1509074,"lon":3.1908689},{"type":"node","id":5826811494,"lat":51.1512125,"lon":3.1911315},{"type":"node","id":5826811495,"lat":51.1512055,"lon":3.191187},{"type":"node","id":5826811496,"lat":51.151296,"lon":3.1914182},{"type":"node","id":5826811497,"lat":51.1513261,"lon":3.1914182},{"type":"node","id":5826811535,"lat":51.1517839,"lon":3.1959375},{"type":"node","id":5826811536,"lat":51.1518581,"lon":3.1959708},{"type":"node","id":5826811547,"lat":51.1515913,"lon":3.196115},{"type":"node","id":5826811548,"lat":51.1516307,"lon":3.1961465},{"type":"node","id":5826811549,"lat":51.1516435,"lon":3.1961076},{"type":"node","id":5826811550,"lat":51.1516087,"lon":3.1959541},{"type":"node","id":5826811551,"lat":51.1515437,"lon":3.1959024},{"type":"node","id":5826811559,"lat":51.1517896,"lon":3.1957717},{"type":"node","id":5826811560,"lat":51.1517417,"lon":3.1957528},{"type":"node","id":5826811561,"lat":51.1517365,"lon":3.1957872},{"type":"node","id":3325315395,"lat":51.1544187,"lon":3.1856685},{"type":"node","id":3325315397,"lat":51.1545358,"lon":3.1860117},{"type":"node","id":3930713426,"lat":51.1571474,"lon":3.1889324},{"type":"node","id":3930713429,"lat":51.1573669,"lon":3.1883265},{"type":"node","id":3930713430,"lat":51.1573202,"lon":3.1890776},{"type":"node","id":3930713435,"lat":51.1574561,"lon":3.1883916},{"type":"node","id":3930713437,"lat":51.1574971,"lon":3.1893349},{"type":"node","id":3930713438,"lat":51.1574907,"lon":3.1884223},{"type":"node","id":3930713440,"lat":51.1575693,"lon":3.1890951},{"type":"node","id":3930713442,"lat":51.1575932,"lon":3.1879961},{"type":"node","id":3930713446,"lat":51.1577118,"lon":3.1885611},{"type":"node","id":3930713447,"lat":51.157698,"lon":3.1894886},{"type":"node","id":3930713451,"lat":51.1577702,"lon":3.1892488},{"type":"node","id":3930713454,"lat":51.1577969,"lon":3.1882567},{"type":"node","id":4043782112,"lat":51.1549447,"lon":3.1864571},{"type":"node","id":5552466013,"lat":51.1545783,"lon":3.1874672},{"type":"node","id":5552466014,"lat":51.1543143,"lon":3.1873045},{"type":"node","id":5552466018,"lat":51.1545999,"lon":3.1873846},{"type":"node","id":5552466020,"lat":51.1548079,"lon":3.1868846},{"type":"node","id":5825400688,"lat":51.1549303,"lon":3.1867969},{"type":"node","id":5826811614,"lat":51.1572659,"lon":3.1885288},{"type":"node","id":6949357906,"lat":51.1572911,"lon":3.1915323},{"type":"node","id":6949357909,"lat":51.1573109,"lon":3.1914572},{"type":"node","id":6949357910,"lat":51.1574373,"lon":3.1913744},{"type":"node","id":6949357911,"lat":51.1574179,"lon":3.1914502},{"type":"node","id":6949357912,"lat":51.1575109,"lon":3.1915112},{"type":"node","id":6949357913,"lat":51.1575304,"lon":3.1914354},{"type":"node","id":6949357914,"lat":51.1574638,"lon":3.1912712},{"type":"node","id":6949357915,"lat":51.1574444,"lon":3.1913473},{"type":"node","id":6949357916,"lat":51.1575599,"lon":3.191423},{"type":"node","id":6949357917,"lat":51.1575803,"lon":3.1913473},{"type":"node","id":6949357918,"lat":51.157501,"lon":3.1911303},{"type":"node","id":6949357919,"lat":51.1574808,"lon":3.1912058},{"type":"node","id":6949357920,"lat":51.1577374,"lon":3.1913724},{"type":"node","id":6949357921,"lat":51.1577563,"lon":3.1912987},{"type":"node","id":6982605752,"lat":51.1574664,"lon":3.1885975},{"type":"node","id":6982605754,"lat":51.1574428,"lon":3.1885793},{"type":"node","id":6982605762,"lat":51.1576066,"lon":3.1884793},{"type":"node","id":6982605764,"lat":51.1576853,"lon":3.18854},{"type":"node","id":6982605766,"lat":51.1575125,"lon":3.1884502},{"type":"node","id":6982605767,"lat":51.1575959,"lon":3.1885145},{"type":"node","id":6982605769,"lat":51.1575152,"lon":3.1884412},{"type":"node","id":6982906542,"lat":51.1591649,"lon":3.1904238},{"type":"node","id":6982906543,"lat":51.1592937,"lon":3.1905221},{"type":"node","id":6982906544,"lat":51.1593438,"lon":3.1903659},{"type":"node","id":6982906545,"lat":51.1593158,"lon":3.1903453},{"type":"node","id":6982906546,"lat":51.1593351,"lon":3.1902852},{"type":"node","id":6982906547,"lat":51.1592385,"lon":3.1902052},{"type":"node","id":6997076562,"lat":51.1546633,"lon":3.1858333},{"type":"node","id":6997076563,"lat":51.1546293,"lon":3.1858642},{"type":"node","id":6997076564,"lat":51.154594,"lon":3.1856715},{"type":"node","id":6997076565,"lat":51.1546727,"lon":3.1859889},{"type":"node","id":6997076566,"lat":51.1545545,"lon":3.1860687},{"type":"node","id":6997076567,"lat":51.1543063,"lon":3.1869337},{"type":"node","id":6997096756,"lat":51.1547387,"lon":3.1868376},{"type":"node","id":6997096758,"lat":51.1546899,"lon":3.1870707},{"type":"node","id":6997096759,"lat":51.1546751,"lon":3.1870601},{"type":"node","id":7137343680,"lat":51.1558646,"lon":3.1876808},{"type":"node","id":7137343681,"lat":51.1558466,"lon":3.1877456},{"type":"node","id":7137343682,"lat":51.1555824,"lon":3.187559},{"type":"node","id":7137343683,"lat":51.1556004,"lon":3.1874941},{"type":"node","id":7137343684,"lat":51.1555549,"lon":3.1874612},{"type":"node","id":7137383185,"lat":51.1555369,"lon":3.1875268},{"type":"node","id":7137383186,"lat":51.1553925,"lon":3.1874261},{"type":"node","id":7137383187,"lat":51.1554105,"lon":3.1873604},{"type":"node","id":7519058287,"lat":51.1555296,"lon":3.1858152},{"type":"node","id":7519058288,"lat":51.1555027,"lon":3.1858752},{"type":"node","id":7519058289,"lat":51.1556329,"lon":3.1860234},{"type":"node","id":7519058290,"lat":51.1556597,"lon":3.1859634},{"type":"node","id":7519058291,"lat":51.1557039,"lon":3.1860155},{"type":"node","id":7519058292,"lat":51.1556789,"lon":3.1860736},{"type":"node","id":7519058293,"lat":51.1558105,"lon":3.1862177},{"type":"node","id":7519058294,"lat":51.1558355,"lon":3.1861597},{"type":"node","id":7519058295,"lat":51.1557209,"lon":3.185828},{"type":"node","id":7519058296,"lat":51.1556932,"lon":3.1858902},{"type":"node","id":7519058297,"lat":51.1558686,"lon":3.1860888},{"type":"node","id":7519058298,"lat":51.1558963,"lon":3.1860265},{"type":"node","id":7519058299,"lat":51.1555421,"lon":3.1856365},{"type":"node","id":7519058300,"lat":51.1555168,"lon":3.1856923},{"type":"node","id":7519058301,"lat":51.1556479,"lon":3.1858437},{"type":"node","id":7519058302,"lat":51.1556732,"lon":3.1857879},{"type":"node","id":150996092,"lat":51.1554945,"lon":3.1954639},{"type":"node","id":150996093,"lat":51.155531,"lon":3.1953168},{"type":"node","id":150996094,"lat":51.1554912,"lon":3.1943936},{"type":"node","id":150996095,"lat":51.155456,"lon":3.1942488},{"type":"node","id":150996097,"lat":51.155432,"lon":3.1942095},{"type":"node","id":150996098,"lat":51.155397,"lon":3.1941906},{"type":"node","id":150996099,"lat":51.1552938,"lon":3.1945134},{"type":"node","id":150996100,"lat":51.1552701,"lon":3.1949002},{"type":"node","id":150996101,"lat":51.1553901,"lon":3.1953415},{"type":"node","id":1015567837,"lat":51.1603457,"lon":3.1926746},{"type":"node","id":1015583939,"lat":51.1598982,"lon":3.1934595},{"type":"node","id":1659850846,"lat":51.1562462,"lon":3.1925019},{"type":"node","id":1811699776,"lat":51.1604859,"lon":3.1920734},{"type":"node","id":1811699777,"lat":51.1605587,"lon":3.1917984},{"type":"node","id":1817319289,"lat":51.1599853,"lon":3.1935159},{"type":"node","id":1817319290,"lat":51.1600476,"lon":3.1933385},{"type":"node","id":1817319291,"lat":51.1600745,"lon":3.1934309},{"type":"node","id":1817319292,"lat":51.1602073,"lon":3.1941751},{"type":"node","id":1817319293,"lat":51.160208,"lon":3.1941098},{"type":"node","id":1817319294,"lat":51.1602178,"lon":3.1935425},{"type":"node","id":1817319295,"lat":51.1602385,"lon":3.19297},{"type":"node","id":1817319296,"lat":51.1602972,"lon":3.1940248},{"type":"node","id":1817319297,"lat":51.1603313,"lon":3.193809},{"type":"node","id":1817319298,"lat":51.1603427,"lon":3.1930326},{"type":"node","id":1817319299,"lat":51.1603716,"lon":3.1940192},{"type":"node","id":1817319300,"lat":51.1603777,"lon":3.1946319},{"type":"node","id":1817319301,"lat":51.1604665,"lon":3.193304},{"type":"node","id":1817319302,"lat":51.1604758,"lon":3.1939077},{"type":"node","id":1817319303,"lat":51.1605421,"lon":3.194476},{"type":"node","id":1817319304,"lat":51.1606037,"lon":3.1933895},{"type":"node","id":1817320493,"lat":51.1604248,"lon":3.1927398},{"type":"node","id":1817320494,"lat":51.1604851,"lon":3.192495},{"type":"node","id":2451569392,"lat":51.1598651,"lon":3.1919974},{"type":"node","id":2451574741,"lat":51.1594995,"lon":3.1924908},{"type":"node","id":2451574742,"lat":51.1596217,"lon":3.1923259},{"type":"node","id":2451574743,"lat":51.1597161,"lon":3.1922023},{"type":"node","id":2451574744,"lat":51.1600391,"lon":3.1932123},{"type":"node","id":2451574745,"lat":51.1601904,"lon":3.192947},{"type":"node","id":2451574746,"lat":51.1603862,"lon":3.1925461},{"type":"node","id":2451574747,"lat":51.1604272,"lon":3.19257},{"type":"node","id":2451574748,"lat":51.1604837,"lon":3.1921535},{"type":"node","id":2451574749,"lat":51.1605266,"lon":3.1921769},{"type":"node","id":2451578121,"lat":51.159758,"lon":3.1921448},{"type":"node","id":5587844460,"lat":51.1562664,"lon":3.1919544},{"type":"node","id":5587844461,"lat":51.15612,"lon":3.1920681},{"type":"node","id":5587844462,"lat":51.1561808,"lon":3.1922614},{"type":"node","id":5599314384,"lat":51.1563882,"lon":3.1923707},{"type":"node","id":5599314385,"lat":51.1563587,"lon":3.1924465},{"type":"node","id":6754312541,"lat":51.154716,"lon":3.1952084},{"type":"node","id":6754312542,"lat":51.1547723,"lon":3.1953372},{"type":"node","id":6754312543,"lat":51.1548078,"lon":3.1952983},{"type":"node","id":6754312544,"lat":51.1547519,"lon":3.1951702},{"type":"node","id":6754312550,"lat":51.1555879,"lon":3.1950341},{"type":"node","id":6754312551,"lat":51.1556025,"lon":3.194956},{"type":"node","id":6754312552,"lat":51.1555664,"lon":3.1952408},{"type":"node","id":6754312553,"lat":51.1556188,"lon":3.1951751},{"type":"node","id":6754312554,"lat":51.1554565,"lon":3.195427},{"type":"node","id":6754312555,"lat":51.1552894,"lon":3.1950649},{"type":"node","id":6754312556,"lat":51.1553277,"lon":3.1951991},{"type":"node","id":6754312557,"lat":51.1552774,"lon":3.1947027},{"type":"node","id":6754312558,"lat":51.1553131,"lon":3.1943816},{"type":"node","id":6754312559,"lat":51.1553397,"lon":3.1942577},{"type":"node","id":6754312560,"lat":51.1553697,"lon":3.1942084},{"type":"node","id":6754312562,"lat":51.1548064,"lon":3.1954209},{"type":"node","id":6754312563,"lat":51.1548266,"lon":3.1954893},{"type":"node","id":6754312564,"lat":51.1550417,"lon":3.1953175},{"type":"node","id":6754312565,"lat":51.1550193,"lon":3.1952538},{"type":"node","id":6870850178,"lat":51.1561935,"lon":3.1923019},{"type":"node","id":6870863414,"lat":51.1562489,"lon":3.1919675},{"type":"node","id":6949357907,"lat":51.1575239,"lon":3.1916859},{"type":"node","id":6949357908,"lat":51.1575439,"lon":3.1916101},{"type":"node","id":1448421081,"lat":51.167491,"lon":3.1713256},{"type":"node","id":1448421091,"lat":51.1677042,"lon":3.1714548},{"type":"node","id":1448421093,"lat":51.1677455,"lon":3.1702529},{"type":"node","id":1448421099,"lat":51.1679647,"lon":3.1703977},{"type":"node","id":6536026850,"lat":51.1711159,"lon":3.1669401},{"type":"node","id":6536026851,"lat":51.1712692,"lon":3.167296},{"type":"node","id":6536026852,"lat":51.1711296,"lon":3.1674712},{"type":"node","id":6536026853,"lat":51.1709602,"lon":3.1671189},{"type":"node","id":6536038234,"lat":51.1711913,"lon":3.165543},{"type":"node","id":6536038235,"lat":51.1711301,"lon":3.1656263},{"type":"node","id":6536038236,"lat":51.1712318,"lon":3.1658161},{"type":"node","id":6536038237,"lat":51.171293,"lon":3.1657327},{"type":"node","id":1038583451,"lat":51.1625071,"lon":3.191602},{"type":"node","id":4044171936,"lat":51.1609177,"lon":3.1911926},{"type":"node","id":4044171941,"lat":51.1609801,"lon":3.191229},{"type":"node","id":4044171963,"lat":51.1611962,"lon":3.1913534},{"type":"node","id":903903386,"lat":51.1618084,"lon":3.1932127},{"type":"node","id":903903387,"lat":51.1623536,"lon":3.1936011},{"type":"node","id":903903388,"lat":51.1624429,"lon":3.1931156},{"type":"node","id":903903390,"lat":51.1618641,"lon":3.1930197},{"type":"node","id":903904576,"lat":51.1618211,"lon":3.1931711},{"type":"node","id":1038557012,"lat":51.16155,"lon":3.1931121},{"type":"node","id":1038557014,"lat":51.1613774,"lon":3.1930711},{"type":"node","id":1038557035,"lat":51.1615349,"lon":3.1931712},{"type":"node","id":1038557072,"lat":51.1616138,"lon":3.1927483},{"type":"node","id":1038557075,"lat":51.162286,"lon":3.1935989},{"type":"node","id":1038557078,"lat":51.1616517,"lon":3.1928439},{"type":"node","id":1038557083,"lat":51.1616055,"lon":3.1930249},{"type":"node","id":1038557094,"lat":51.1618993,"lon":3.193299},{"type":"node","id":1038557102,"lat":51.1613235,"lon":3.1927138},{"type":"node","id":1038557104,"lat":51.1615987,"lon":3.1928077},{"type":"node","id":1038557108,"lat":51.1615113,"lon":3.1926816},{"type":"node","id":1038557137,"lat":51.1608873,"lon":3.1924416},{"type":"node","id":1038557143,"lat":51.1622248,"lon":3.193662},{"type":"node","id":1038557191,"lat":51.1608171,"lon":3.1926951},{"type":"node","id":1038557195,"lat":51.162409,"lon":3.1933428},{"type":"node","id":1038557227,"lat":51.1613767,"lon":3.1925113},{"type":"node","id":1038557230,"lat":51.1615281,"lon":3.1926132},{"type":"node","id":1038557233,"lat":51.1619765,"lon":3.1933723},{"type":"node","id":1038575040,"lat":51.1608523,"lon":3.1925679},{"type":"node","id":1038583375,"lat":51.1625113,"lon":3.1926776},{"type":"node","id":1038583398,"lat":51.1624305,"lon":3.1925743},{"type":"node","id":1038583404,"lat":51.1627055,"lon":3.191826},{"type":"node","id":1038583425,"lat":51.1624272,"lon":3.1916637},{"type":"node","id":1038583441,"lat":51.1621479,"lon":3.1921546},{"type":"node","id":1038583446,"lat":51.1622018,"lon":3.1921814},{"type":"node","id":1038583456,"lat":51.162174,"lon":3.1922806},{"type":"node","id":1038583459,"lat":51.162259,"lon":3.1924885},{"type":"node","id":1038583463,"lat":51.162661,"lon":3.1917442},{"type":"node","id":1038583476,"lat":51.1626425,"lon":3.1918448},{"type":"node","id":1038583479,"lat":51.1624196,"lon":3.1926561},{"type":"node","id":1038583483,"lat":51.1625037,"lon":3.1927232},{"type":"node","id":1038583491,"lat":51.1625701,"lon":3.1926387},{"type":"node","id":1038583501,"lat":51.1624928,"lon":3.1917013},{"type":"node","id":1811673418,"lat":51.1618484,"lon":3.1950253},{"type":"node","id":1811673421,"lat":51.1619875,"lon":3.1951427},{"type":"node","id":1811673423,"lat":51.162144,"lon":3.193835},{"type":"node","id":1811673425,"lat":51.1622452,"lon":3.1939149},{"type":"node","id":1811699778,"lat":51.1608187,"lon":3.1922973},{"type":"node","id":1811699779,"lat":51.1608915,"lon":3.1920223},{"type":"node","id":1817320495,"lat":51.1607269,"lon":3.192929},{"type":"node","id":1817320496,"lat":51.1607872,"lon":3.1926841},{"type":"node","id":1817324488,"lat":51.1615575,"lon":3.1921423},{"type":"node","id":1817324489,"lat":51.1612682,"lon":3.1920196},{"type":"node","id":1817324491,"lat":51.1617501,"lon":3.1918468},{"type":"node","id":1817324505,"lat":51.1618272,"lon":3.1921231},{"type":"node","id":1817324509,"lat":51.1618658,"lon":3.191793},{"type":"node","id":1817324513,"lat":51.1619814,"lon":3.1920002},{"type":"node","id":1817324515,"lat":51.161985,"lon":3.191793},{"type":"node","id":3550860268,"lat":51.1617349,"lon":3.1921922},{"type":"node","id":3550860269,"lat":51.1619403,"lon":3.1920686},{"type":"node","id":4044171924,"lat":51.1608199,"lon":3.1916126},{"type":"node","id":4044171954,"lat":51.1610853,"lon":3.191781},{"type":"node","id":4044171957,"lat":51.1611433,"lon":3.1918701},{"type":"node","id":4044171962,"lat":51.1611926,"lon":3.1916807},{"type":"node","id":4044171976,"lat":51.1612826,"lon":3.1919582},{"type":"node","id":4044171997,"lat":51.1613568,"lon":3.1917787},{"type":"node","id":4044172003,"lat":51.1613248,"lon":3.1919027},{"type":"node","id":4044172008,"lat":51.1614345,"lon":3.1919767},{"type":"node","id":6397031888,"lat":51.1615029,"lon":3.1919851},{"type":"node","id":6960473080,"lat":51.1614227,"lon":3.1931004},{"type":"node","id":3335137692,"lat":51.1698302,"lon":3.1965654},{"type":"node","id":3335137795,"lat":51.1698788,"lon":3.1970728},{"type":"node","id":3335137802,"lat":51.1700082,"lon":3.1971734},{"type":"node","id":3335137807,"lat":51.1701139,"lon":3.1965001},{"type":"node","id":3335137812,"lat":51.1703247,"lon":3.197352},{"type":"node","id":3335137823,"lat":51.1703133,"lon":3.1966232},{"type":"node","id":6255587427,"lat":51.1694775,"lon":3.1980047},{"type":"node","id":9163486855,"lat":51.1703854,"lon":3.1970901},{"type":"node","id":9163486856,"lat":51.1702114,"lon":3.1969688},{"type":"node","id":9163493632,"lat":51.1699473,"lon":3.197063},{"type":"node","id":414025563,"lat":51.1768198,"lon":3.1839265},{"type":"node","id":2325437840,"lat":51.1765747,"lon":3.1839745},{"type":"node","id":2325437844,"lat":51.1768286,"lon":3.1825946},{"type":"node","id":8191691970,"lat":51.1767611,"lon":3.1839766},{"type":"node","id":8191691971,"lat":51.1767812,"lon":3.1826167},{"type":"node","id":8191691972,"lat":51.1765804,"lon":3.1826583},{"type":"node","id":8191691973,"lat":51.1766324,"lon":3.182616},{"type":"node","id":5716136617,"lat":51.1773127,"lon":3.1969033},{"type":"node","id":5716136618,"lat":51.1771859,"lon":3.1969078},{"type":"node","id":5716136619,"lat":51.177203,"lon":3.1981369},{"type":"node","id":5716136620,"lat":51.1773298,"lon":3.1981324},{"type":"node","id":6004375826,"lat":51.1786839,"lon":3.1952389},{"type":"node","id":6625037999,"lat":51.1788016,"lon":3.1950645},{"type":"node","id":6625038000,"lat":51.1789916,"lon":3.1966631},{"type":"node","id":6625038001,"lat":51.1789003,"lon":3.1966838},{"type":"node","id":6625038002,"lat":51.1788554,"lon":3.1963547},{"type":"node","id":6625038003,"lat":51.1788165,"lon":3.1963622},{"type":"node","id":6625038005,"lat":51.1785124,"lon":3.1952362},{"type":"node","id":6625038006,"lat":51.1784779,"lon":3.1950618},{"type":"node","id":6925536539,"lat":51.1522475,"lon":3.1985416},{"type":"node","id":6925536540,"lat":51.1522635,"lon":3.1986187},{"type":"node","id":6925536541,"lat":51.1523922,"lon":3.1985517},{"type":"node","id":6925536542,"lat":51.1523766,"lon":3.1984746},{"type":"node","id":1637742821,"lat":51.158524,"lon":3.199021},{"type":"node","id":5586765933,"lat":51.1566667,"lon":3.2008881},{"type":"node","id":5586765934,"lat":51.1564286,"lon":3.2012575},{"type":"node","id":5586765935,"lat":51.1562496,"lon":3.2008579},{"type":"node","id":5586765936,"lat":51.1564982,"lon":3.200522},{"type":"node","id":6943148197,"lat":51.1581916,"lon":3.1989071},{"type":"node","id":6943148198,"lat":51.1582377,"lon":3.1989899},{"type":"node","id":6943148199,"lat":51.1581859,"lon":3.1990728},{"type":"node","id":6943148200,"lat":51.1583257,"lon":3.199295},{"type":"node","id":6943148201,"lat":51.1583563,"lon":3.199246},{"type":"node","id":6943148202,"lat":51.1583988,"lon":3.1993135},{"type":"node","id":6943148203,"lat":51.1585529,"lon":3.1990669},{"type":"node","id":6943148204,"lat":51.1586554,"lon":3.1988109},{"type":"node","id":6943148205,"lat":51.1585617,"lon":3.1986619},{"type":"node","id":6943148206,"lat":51.1586782,"lon":3.1984755},{"type":"node","id":6943148207,"lat":51.1585692,"lon":3.1982996},{"type":"node","id":8065883225,"lat":51.1366029,"lon":3.233506},{"type":"node","id":8065883226,"lat":51.1364627,"lon":3.2335338},{"type":"node","id":8065883227,"lat":51.1363922,"lon":3.2326314},{"type":"node","id":8065883228,"lat":51.1365324,"lon":3.2326036},{"type":"node","id":8065883229,"lat":51.1374344,"lon":3.2333338},{"type":"node","id":8065883230,"lat":51.1373632,"lon":3.2324534},{"type":"node","id":8065883232,"lat":51.1375819,"lon":3.2333035},{"type":"node","id":8065883233,"lat":51.1375107,"lon":3.232423},{"type":"node","id":1795793393,"lat":51.1475704,"lon":3.233832},{"type":"node","id":3346575840,"lat":51.146485,"lon":3.2349284},{"type":"node","id":3346575846,"lat":51.1465127,"lon":3.2355341},{"type":"node","id":3346575853,"lat":51.1466617,"lon":3.2349708},{"type":"node","id":3346575855,"lat":51.1466787,"lon":3.2355171},{"type":"node","id":3346575858,"lat":51.1466968,"lon":3.2342532},{"type":"node","id":3346575865,"lat":51.1468756,"lon":3.2344143},{"type":"node","id":3346575873,"lat":51.1469706,"lon":3.2366779},{"type":"node","id":3346575929,"lat":51.1474307,"lon":3.2366434},{"type":"node","id":1523513488,"lat":51.1398248,"lon":3.2392608},{"type":"node","id":1744641292,"lat":51.1395814,"lon":3.2390365},{"type":"node","id":1744641293,"lat":51.1397822,"lon":3.2393867},{"type":"node","id":1920143232,"lat":51.1394724,"lon":3.2390121},{"type":"node","id":7393009684,"lat":51.1394307,"lon":3.2390001},{"type":"node","id":7393048385,"lat":51.1394135,"lon":3.2390524},{"type":"node","id":3346575843,"lat":51.1465041,"lon":3.2376453},{"type":"node","id":3346575845,"lat":51.146508,"lon":3.2378517},{"type":"node","id":3346575876,"lat":51.1470052,"lon":3.237604},{"type":"node","id":3346575886,"lat":51.147098,"lon":3.2412975},{"type":"node","id":3346575889,"lat":51.1471585,"lon":3.2428761},{"type":"node","id":3346575891,"lat":51.1471715,"lon":3.2377865},{"type":"node","id":3346575901,"lat":51.1472492,"lon":3.2398591},{"type":"node","id":3346575903,"lat":51.1472654,"lon":3.242623},{"type":"node","id":3346575908,"lat":51.1472751,"lon":3.2428571},{"type":"node","id":3346575917,"lat":51.1473518,"lon":3.2426093},{"type":"node","id":3346575923,"lat":51.1473906,"lon":3.2398205},{"type":"node","id":3346575925,"lat":51.147408,"lon":3.2424474},{"type":"node","id":3346575928,"lat":51.1474263,"lon":3.24062},{"type":"node","id":3346575933,"lat":51.1474728,"lon":3.2421565},{"type":"node","id":3346575943,"lat":51.1475354,"lon":3.2418174},{"type":"node","id":3346575945,"lat":51.1475494,"lon":3.2412786},{"type":"node","id":3346575946,"lat":51.1475667,"lon":3.2415454},{"type":"node","id":6291339815,"lat":51.1434669,"lon":3.2496811},{"type":"node","id":6291339816,"lat":51.1434103,"lon":3.2497287},{"type":"node","id":6291339821,"lat":51.1435685,"lon":3.2496576},{"type":"node","id":6291339822,"lat":51.1434825,"lon":3.2497283},{"type":"node","id":6291339827,"lat":51.1437401,"lon":3.2490327},{"type":"node","id":6291339828,"lat":51.1433037,"lon":3.2494123},{"type":"node","id":6291339829,"lat":51.1436099,"lon":3.2497855},{"type":"node","id":6291339830,"lat":51.1439041,"lon":3.249535},{"type":"node","id":170464837,"lat":51.1533286,"lon":3.236239},{"type":"node","id":170464839,"lat":51.1532379,"lon":3.2364578},{"type":"node","id":1710262731,"lat":51.1513274,"lon":3.2373199},{"type":"node","id":1710262732,"lat":51.1508759,"lon":3.2370371},{"type":"node","id":1710262733,"lat":51.1509316,"lon":3.2370599},{"type":"node","id":1710262735,"lat":51.1510166,"lon":3.2370123},{"type":"node","id":1710262738,"lat":51.1512751,"lon":3.2372984},{"type":"node","id":1710262742,"lat":51.1513127,"lon":3.237065},{"type":"node","id":1710262743,"lat":51.1508201,"lon":3.2373832},{"type":"node","id":1710262745,"lat":51.151027,"lon":3.2369479},{"type":"node","id":1795793395,"lat":51.1476158,"lon":3.2338163},{"type":"node","id":1795793397,"lat":51.1475842,"lon":3.2344427},{"type":"node","id":1795793399,"lat":51.1477641,"lon":3.233033},{"type":"node","id":1795793405,"lat":51.1477717,"lon":3.2338665},{"type":"node","id":1795793406,"lat":51.1480775,"lon":3.2344787},{"type":"node","id":1795793407,"lat":51.1478893,"lon":3.2344203},{"type":"node","id":1795793408,"lat":51.1481719,"lon":3.2342485},{"type":"node","id":1795793409,"lat":51.147607,"lon":3.2330256},{"type":"node","id":4979389763,"lat":51.1476223,"lon":3.2330288},{"type":"node","id":8179735224,"lat":51.156047,"lon":3.2252534},{"type":"node","id":8179735264,"lat":51.1560464,"lon":3.2252785},{"type":"node","id":8179735265,"lat":51.1558544,"lon":3.2252597},{"type":"node","id":8179735266,"lat":51.1556789,"lon":3.2252522},{"type":"node","id":8179735267,"lat":51.1555253,"lon":3.2252547},{"type":"node","id":8179735268,"lat":51.1555747,"lon":3.2250024},{"type":"node","id":8179735269,"lat":51.1560527,"lon":3.2250198},{"type":"node","id":1525460846,"lat":51.1550489,"lon":3.2347709},{"type":"node","id":1810326044,"lat":51.1547625,"lon":3.2355098},{"type":"node","id":1810326087,"lat":51.1547809,"lon":3.2353708},{"type":"node","id":4912203160,"lat":51.1554941,"lon":3.2364781},{"type":"node","id":4912203161,"lat":51.1554192,"lon":3.2369649},{"type":"node","id":4912203162,"lat":51.1554175,"lon":3.2371071},{"type":"node","id":4912203163,"lat":51.1554301,"lon":3.2372063},{"type":"node","id":4912203164,"lat":51.1553847,"lon":3.2372197},{"type":"node","id":4912203165,"lat":51.1553763,"lon":3.2369502},{"type":"node","id":4912203166,"lat":51.1554512,"lon":3.236462},{"type":"node","id":4912203167,"lat":51.1555218,"lon":3.2366455},{"type":"node","id":4912203168,"lat":51.1554742,"lon":3.2369592},{"type":"node","id":4912203169,"lat":51.155516,"lon":3.2369752},{"type":"node","id":4912203170,"lat":51.1555635,"lon":3.2366616},{"type":"node","id":4912203171,"lat":51.1556125,"lon":3.2360775},{"type":"node","id":4912203172,"lat":51.155547,"lon":3.2364923},{"type":"node","id":4912203173,"lat":51.1555893,"lon":3.2365092},{"type":"node","id":4912203174,"lat":51.1556547,"lon":3.2360945},{"type":"node","id":4912203176,"lat":51.1554841,"lon":3.2362949},{"type":"node","id":4912203177,"lat":51.1553752,"lon":3.2362591},{"type":"node","id":4912203178,"lat":51.1553968,"lon":3.2360924},{"type":"node","id":4912203179,"lat":51.1555056,"lon":3.2361281},{"type":"node","id":4912214680,"lat":51.1553544,"lon":3.2348128},{"type":"node","id":4912214681,"lat":51.1550186,"lon":3.2346814},{"type":"node","id":4912214685,"lat":51.1554486,"lon":3.2338965},{"type":"node","id":4912214686,"lat":51.1550098,"lon":3.2346405},{"type":"node","id":4912214692,"lat":51.155386,"lon":3.2347722},{"type":"node","id":4912214693,"lat":51.1555155,"lon":3.2338415},{"type":"node","id":4912214694,"lat":51.1554587,"lon":3.2338214},{"type":"node","id":4912214695,"lat":51.1553292,"lon":3.2347521},{"type":"node","id":4912225050,"lat":51.1553136,"lon":3.234866},{"type":"node","id":4912225051,"lat":51.1551036,"lon":3.2337751},{"type":"node","id":4912225052,"lat":51.1549825,"lon":3.2346307},{"type":"node","id":4912225053,"lat":51.1551894,"lon":3.2336789},{"type":"node","id":4912225062,"lat":51.1551528,"lon":3.233747},{"type":"node","id":4912225063,"lat":51.1551831,"lon":3.2337249},{"type":"node","id":4912225064,"lat":51.1554653,"lon":3.2337755},{"type":"node","id":4912225067,"lat":51.1551309,"lon":3.2337849},{"type":"node","id":4912225068,"lat":51.1551727,"lon":3.2337999},{"type":"node","id":4912225069,"lat":51.1553182,"lon":3.2348322},{"type":"node","id":4912225070,"lat":51.1550516,"lon":3.2346556},{"type":"node","id":5972179331,"lat":51.154488,"lon":3.2350802},{"type":"node","id":5972179343,"lat":51.1545781,"lon":3.2351138},{"type":"node","id":5972179344,"lat":51.1546444,"lon":3.2351409},{"type":"node","id":5972179345,"lat":51.1546431,"lon":3.2351485},{"type":"node","id":5972179346,"lat":51.1547126,"lon":3.2351739},{"type":"node","id":5972179347,"lat":51.154714,"lon":3.2351659},{"type":"node","id":5972179348,"lat":51.1547795,"lon":3.235188},{"type":"node","id":5974489614,"lat":51.1546386,"lon":3.2355125},{"type":"node","id":5974489615,"lat":51.1544914,"lon":3.2353516},{"type":"node","id":5974489616,"lat":51.1544813,"lon":3.2351384},{"type":"node","id":5974489617,"lat":51.1548024,"lon":3.2352003},{"type":"node","id":5974489618,"lat":51.154732,"lon":3.2356091},{"type":"node","id":7529417225,"lat":51.159095,"lon":3.2366844},{"type":"node","id":7529417226,"lat":51.1589926,"lon":3.2372825},{"type":"node","id":7529417227,"lat":51.1588687,"lon":3.2372286},{"type":"node","id":7529417228,"lat":51.1589264,"lon":3.2368918},{"type":"node","id":7529417229,"lat":51.1588879,"lon":3.236875},{"type":"node","id":7529417230,"lat":51.1589326,"lon":3.2366138},{"type":"node","id":7529417232,"lat":51.159019,"lon":3.2366513},{"type":"node","id":170464840,"lat":51.1531619,"lon":3.2376814},{"type":"node","id":170464841,"lat":51.1532306,"lon":3.2376888},{"type":"node","id":1710245701,"lat":51.1528676,"lon":3.2390068},{"type":"node","id":1710245703,"lat":51.1527703,"lon":3.239403},{"type":"node","id":1710245705,"lat":51.1527888,"lon":3.2390966},{"type":"node","id":1710245707,"lat":51.1526357,"lon":3.2390543},{"type":"node","id":1710245709,"lat":51.1528763,"lon":3.2390382},{"type":"node","id":1710245711,"lat":51.1528928,"lon":3.2390631},{"type":"node","id":1710245713,"lat":51.1528729,"lon":3.2389738},{"type":"node","id":1710245715,"lat":51.1528645,"lon":3.2394083},{"type":"node","id":1710245718,"lat":51.1526407,"lon":3.2389524},{"type":"node","id":1710262736,"lat":51.1512857,"lon":3.2375783},{"type":"node","id":1710262737,"lat":51.151234,"lon":3.2375571},{"type":"node","id":1710262739,"lat":51.151183,"lon":3.2375939},{"type":"node","id":1710262741,"lat":51.1511924,"lon":3.2375358},{"type":"node","id":1710262744,"lat":51.1512252,"lon":3.2376112},{"type":"node","id":3346575950,"lat":51.1475926,"lon":3.2406028},{"type":"node","id":1728421374,"lat":51.1554436,"lon":3.2438233},{"type":"node","id":1728421375,"lat":51.15594,"lon":3.2438649},{"type":"node","id":1728421377,"lat":51.15559,"lon":3.2439695},{"type":"node","id":1728421379,"lat":51.1554335,"lon":3.243944},{"type":"node","id":1770289505,"lat":51.1565437,"lon":3.2437924},{"type":"node","id":4912197362,"lat":51.1565535,"lon":3.2438327},{"type":"node","id":4912197363,"lat":51.1562818,"lon":3.2438374},{"type":"node","id":4912197364,"lat":51.1565321,"lon":3.2435757},{"type":"node","id":4912197365,"lat":51.1565279,"lon":3.2433181},{"type":"node","id":4912197366,"lat":51.1562804,"lon":3.2435833},{"type":"node","id":4912197367,"lat":51.1562798,"lon":3.2431702},{"type":"node","id":4912197368,"lat":51.1562813,"lon":3.2437497},{"type":"node","id":4912197369,"lat":51.1562802,"lon":3.243488},{"type":"node","id":4912197370,"lat":51.1565257,"lon":3.2431702},{"type":"node","id":4912197371,"lat":51.1565542,"lon":3.2439044},{"type":"node","id":4912197372,"lat":51.1565308,"lon":3.2437482},{"type":"node","id":4912197373,"lat":51.1565294,"lon":3.2434893},{"type":"node","id":4912197374,"lat":51.1562835,"lon":3.2439005},{"type":"node","id":1710276232,"lat":51.1572435,"lon":3.2451269},{"type":"node","id":1710276240,"lat":51.156984,"lon":3.2453481},{"type":"node","id":1710276242,"lat":51.1567167,"lon":3.2452913},{"type":"node","id":1710276243,"lat":51.1570484,"lon":3.2451},{"type":"node","id":1710276251,"lat":51.1562241,"lon":3.2457572},{"type":"node","id":1710276253,"lat":51.156868,"lon":3.2451689},{"type":"node","id":1710276255,"lat":51.1563873,"lon":3.2456553},{"type":"node","id":1710276257,"lat":51.1572402,"lon":3.2450303},{"type":"node","id":1710276259,"lat":51.1561703,"lon":3.2454299},{"type":"node","id":1710276261,"lat":51.1564411,"lon":3.2457304},{"type":"node","id":1728421376,"lat":51.1555858,"lon":3.2441572},{"type":"node","id":1728421378,"lat":51.1559348,"lon":3.2441264},{"type":"node","id":1810330766,"lat":51.1562599,"lon":3.2457349},{"type":"node","id":1810345944,"lat":51.1572859,"lon":3.2458614},{"type":"node","id":1810345947,"lat":51.1568366,"lon":3.2461909},{"type":"node","id":1810345951,"lat":51.1572074,"lon":3.2455895},{"type":"node","id":1810345955,"lat":51.1567582,"lon":3.245919},{"type":"node","id":1810347217,"lat":51.1568783,"lon":3.2452387},{"type":"node","id":6255587424,"lat":51.1699788,"lon":3.1988617},{"type":"node","id":6255587425,"lat":51.1695322,"lon":3.1995447},{"type":"node","id":6255587426,"lat":51.1690026,"lon":3.1986489},{"type":"node","id":5173881316,"lat":51.1728811,"lon":3.210692},{"type":"node","id":5173881317,"lat":51.1728829,"lon":3.21077},{"type":"node","id":5173881318,"lat":51.1726197,"lon":3.2107914},{"type":"node","id":5173881320,"lat":51.1728794,"lon":3.2108575},{"type":"node","id":5173881621,"lat":51.1728791,"lon":3.2109364},{"type":"node","id":5173881622,"lat":51.1727133,"lon":3.2109488},{"type":"node","id":5173881623,"lat":51.1727117,"lon":3.2108703},{"type":"node","id":5173881624,"lat":51.1728613,"lon":3.211069},{"type":"node","id":5173881625,"lat":51.1728601,"lon":3.2111406},{"type":"node","id":5173881626,"lat":51.1727019,"lon":3.2111316},{"type":"node","id":5173881627,"lat":51.1727041,"lon":3.2110597},{"type":"node","id":6275462772,"lat":51.1733576,"lon":3.2110928},{"type":"node","id":6275462773,"lat":51.1733528,"lon":3.2112295},{"type":"node","id":6275462774,"lat":51.1735278,"lon":3.2112449},{"type":"node","id":6275462775,"lat":51.1735325,"lon":3.2111082},{"type":"node","id":6275462776,"lat":51.1736659,"lon":3.2112568},{"type":"node","id":6275462777,"lat":51.1736113,"lon":3.2112529},{"type":"node","id":6275462784,"lat":51.1735598,"lon":3.2109277},{"type":"node","id":6275462985,"lat":51.1734626,"lon":3.2109229},{"type":"node","id":6275462986,"lat":51.1734599,"lon":3.2110592},{"type":"node","id":6275462987,"lat":51.1735572,"lon":3.211064},{"type":"node","id":6275462988,"lat":51.1734613,"lon":3.2109904},{"type":"node","id":6275462989,"lat":51.173357,"lon":3.2111476},{"type":"node","id":7054196467,"lat":51.1726209,"lon":3.2107131},{"type":"node","id":8042845810,"lat":51.1737696,"lon":3.206708},{"type":"node","id":8042845811,"lat":51.1734466,"lon":3.2056148},{"type":"node","id":5952389321,"lat":51.1668901,"lon":3.2166736},{"type":"node","id":5952389322,"lat":51.1664592,"lon":3.2166337},{"type":"node","id":5952389323,"lat":51.1659941,"lon":3.2166018},{"type":"node","id":5172938444,"lat":51.1667283,"lon":3.2192609},{"type":"node","id":5536609426,"lat":51.1664884,"lon":3.2184803},{"type":"node","id":5536620510,"lat":51.1668363,"lon":3.2197448},{"type":"node","id":5536620511,"lat":51.1671911,"lon":3.2210959},{"type":"node","id":5952389320,"lat":51.1665059,"lon":3.2183884},{"type":"node","id":5536620506,"lat":51.1675299,"lon":3.2170283},{"type":"node","id":5536620507,"lat":51.1672585,"lon":3.2168071},{"type":"node","id":6275462778,"lat":51.1736042,"lon":3.2115044},{"type":"node","id":6275462779,"lat":51.1736588,"lon":3.2115083},{"type":"node","id":6275462780,"lat":51.1735687,"lon":3.2112964},{"type":"node","id":6275462781,"lat":51.1735211,"lon":3.2112937},{"type":"node","id":6275462782,"lat":51.1735156,"lon":3.2115423},{"type":"node","id":6275462783,"lat":51.1735632,"lon":3.211545},{"type":"node","id":5536620505,"lat":51.1683944,"lon":3.2180288},{"type":"node","id":5536620512,"lat":51.1673641,"lon":3.2217199},{"type":"node","id":5536620513,"lat":51.1675007,"lon":3.2221772},{"type":"node","id":5536620514,"lat":51.1679104,"lon":3.2236675},{"type":"node","id":5536620516,"lat":51.1679955,"lon":3.224005},{"type":"node","id":5536620824,"lat":51.1700823,"lon":3.2236258},{"type":"node","id":5536620826,"lat":51.171324,"lon":3.2230929},{"type":"node","id":5536620827,"lat":51.1717731,"lon":3.2213846},{"type":"node","id":5536620828,"lat":51.170726,"lon":3.2202369},{"type":"node","id":5536620829,"lat":51.1706206,"lon":3.2201178},{"type":"node","id":5536620830,"lat":51.170049,"lon":3.2215441},{"type":"node","id":5536620831,"lat":51.1699442,"lon":3.2215294},{"type":"node","id":5536620832,"lat":51.1683757,"lon":3.2194636},{"type":"node","id":6067483781,"lat":51.1675243,"lon":3.222207},{"type":"node","id":6067483782,"lat":51.1713888,"lon":3.2231705},{"type":"node","id":7794736251,"lat":51.1688401,"lon":3.2184325},{"type":"node","id":1069177852,"lat":51.1789546,"lon":3.2021791},{"type":"node","id":1069177853,"lat":51.1801636,"lon":3.2031369},{"type":"node","id":1069177873,"lat":51.1791663,"lon":3.2034541},{"type":"node","id":1069177915,"lat":51.1799187,"lon":3.2029579},{"type":"node","id":1069177919,"lat":51.1786053,"lon":3.2030903},{"type":"node","id":1069177920,"lat":51.1790417,"lon":3.2033998},{"type":"node","id":1069177925,"lat":51.1788415,"lon":3.2032442},{"type":"node","id":1069177933,"lat":51.1798479,"lon":3.2029364},{"type":"node","id":1069177967,"lat":51.178467,"lon":3.2025563},{"type":"node","id":1069177976,"lat":51.1791427,"lon":3.2026954},{"type":"node","id":1069177984,"lat":51.1783718,"lon":3.2028231},{"type":"node","id":1069178021,"lat":51.1793534,"lon":3.2033094},{"type":"node","id":1069178133,"lat":51.1784113,"lon":3.2028156},{"type":"node","id":6853179202,"lat":51.1792037,"lon":3.2026994},{"type":"node","id":6853179203,"lat":51.1790601,"lon":3.2026755},{"type":"node","id":6853179204,"lat":51.1791861,"lon":3.2027108},{"type":"node","id":6853179205,"lat":51.1791741,"lon":3.2027122},{"type":"node","id":6853179206,"lat":51.1791634,"lon":3.2027102},{"type":"node","id":6853179207,"lat":51.1791526,"lon":3.2027048},{"type":"node","id":6853179208,"lat":51.1790128,"lon":3.202488},{"type":"node","id":6853179209,"lat":51.1790434,"lon":3.2026225},{"type":"node","id":6853179210,"lat":51.1789811,"lon":3.2023837},{"type":"node","id":6853179211,"lat":51.1789744,"lon":3.2022415},{"type":"node","id":6853179212,"lat":51.1789438,"lon":3.2022643},{"type":"node","id":6853179213,"lat":51.1784216,"lon":3.2028567},{"type":"node","id":6853179214,"lat":51.1784157,"lon":3.2028375},{"type":"node","id":6853179215,"lat":51.1784506,"lon":3.2029294},{"type":"node","id":6853179216,"lat":51.1783884,"lon":3.2026704},{"type":"node","id":6853179217,"lat":51.178422,"lon":3.2026034},{"type":"node","id":6853179218,"lat":51.1784117,"lon":3.2026185},{"type":"node","id":6853179219,"lat":51.1784021,"lon":3.2026354},{"type":"node","id":6853179220,"lat":51.1783957,"lon":3.2026505},{"type":"node","id":6853179221,"lat":51.178443,"lon":3.2025785},{"type":"node","id":6853179222,"lat":51.1784546,"lon":3.202567},{"type":"node","id":6853179223,"lat":51.1784321,"lon":3.2025906},{"type":"node","id":6853179224,"lat":51.1783719,"lon":3.2027464},{"type":"node","id":6853179225,"lat":51.1783749,"lon":3.2027238},{"type":"node","id":6853179226,"lat":51.1783827,"lon":3.2026894},{"type":"node","id":6853179227,"lat":51.1783784,"lon":3.2027066},{"type":"node","id":6853179228,"lat":51.1783697,"lon":3.2027864},{"type":"node","id":6853179229,"lat":51.1783704,"lon":3.2027651},{"type":"node","id":6853179230,"lat":51.1783703,"lon":3.2028048},{"type":"node","id":6853179234,"lat":51.1798837,"lon":3.2029379},{"type":"node","id":6853179235,"lat":51.1798988,"lon":3.2029445},{"type":"node","id":6853179236,"lat":51.1798661,"lon":3.2029354},{"type":"node","id":6853179237,"lat":51.1798345,"lon":3.2029407},{"type":"node","id":6853179238,"lat":51.1798207,"lon":3.2029479},{"type":"node","id":6853179239,"lat":51.1792634,"lon":3.2033377},{"type":"node","id":6853179240,"lat":51.1793019,"lon":3.2033359},{"type":"node","id":6853179241,"lat":51.1792828,"lon":3.20334},{"type":"node","id":6853179242,"lat":51.1792732,"lon":3.2033393},{"type":"node","id":6853179243,"lat":51.1792921,"lon":3.2033388},{"type":"node","id":6853179244,"lat":51.1793279,"lon":3.2033257},{"type":"node","id":6853179245,"lat":51.1793153,"lon":3.2033313},{"type":"node","id":6853179246,"lat":51.1793413,"lon":3.2033182},{"type":"node","id":6853179247,"lat":51.1792384,"lon":3.2033981},{"type":"node","id":6853179248,"lat":51.1792572,"lon":3.2033605},{"type":"node","id":6853179249,"lat":51.1792512,"lon":3.2033774},{"type":"node","id":6853179250,"lat":51.1792456,"lon":3.2033888},{"type":"node","id":6853179256,"lat":51.1790996,"lon":3.2034514},{"type":"node","id":6853179257,"lat":51.1790731,"lon":3.2034317},{"type":"node","id":6853179258,"lat":51.1790581,"lon":3.2034168},{"type":"node","id":6853179259,"lat":51.1790862,"lon":3.2034422},{"type":"node","id":6853179260,"lat":51.179133,"lon":3.2034648},{"type":"node","id":6853179261,"lat":51.1791191,"lon":3.203461},{"type":"node","id":6853179262,"lat":51.1791546,"lon":3.2034608},{"type":"node","id":6853179263,"lat":51.1791443,"lon":3.2034639},{"type":"node","id":6853179264,"lat":51.1789437,"lon":3.2033089},{"type":"node","id":6853179267,"lat":51.1785146,"lon":3.2030128},{"type":"node","id":6853179268,"lat":51.1785517,"lon":3.2030489},{"type":"node","id":6853179269,"lat":51.1785863,"lon":3.2030773},{"type":"node","id":6853179327,"lat":51.1789936,"lon":3.2024248},{"type":"node","id":7252820961,"lat":51.175521,"lon":3.2045972},{"type":"node","id":7252863798,"lat":51.1754304,"lon":3.2044959},{"type":"node","id":8042845806,"lat":51.1753353,"lon":3.2041851},{"type":"node","id":8042845807,"lat":51.175363,"lon":3.2043314},{"type":"node","id":8042845812,"lat":51.1752711,"lon":3.2040127},{"type":"node","id":4036885076,"lat":51.1740632,"lon":3.2050437},{"type":"node","id":4036899624,"lat":51.1767493,"lon":3.2082945},{"type":"node","id":5607796819,"lat":51.1782483,"lon":3.2091883},{"type":"node","id":5607796820,"lat":51.1785128,"lon":3.2086016},{"type":"node","id":5607798721,"lat":51.1786474,"lon":3.2090453},{"type":"node","id":5607798722,"lat":51.1782874,"lon":3.2093115},{"type":"node","id":5607798723,"lat":51.178141,"lon":3.2088491},{"type":"node","id":5607798725,"lat":51.1785713,"lon":3.2087945},{"type":"node","id":5728443539,"lat":51.1753294,"lon":3.2097039},{"type":"node","id":5728443540,"lat":51.1752216,"lon":3.2089278},{"type":"node","id":6275462768,"lat":51.174424,"lon":3.2105467},{"type":"node","id":6275462769,"lat":51.1743524,"lon":3.2105548},{"type":"node","id":6275462770,"lat":51.1743644,"lon":3.2108257},{"type":"node","id":6275462771,"lat":51.1744361,"lon":3.2108176},{"type":"node","id":7252820962,"lat":51.1756015,"lon":3.204854},{"type":"node","id":7252820963,"lat":51.1755802,"lon":3.204928},{"type":"node","id":7252820964,"lat":51.1755132,"lon":3.2049422},{"type":"node","id":7252820965,"lat":51.1754719,"lon":3.2050156},{"type":"node","id":7252820966,"lat":51.1754575,"lon":3.2051212},{"type":"node","id":7252820967,"lat":51.1755143,"lon":3.2052892},{"type":"node","id":7252820968,"lat":51.1755533,"lon":3.2055086},{"type":"node","id":7252820969,"lat":51.1755563,"lon":3.2060065},{"type":"node","id":7252820970,"lat":51.175491,"lon":3.2064409},{"type":"node","id":7252820971,"lat":51.1753674,"lon":3.2068348},{"type":"node","id":7252820972,"lat":51.1751944,"lon":3.2070531},{"type":"node","id":7252820973,"lat":51.1751195,"lon":3.2071478},{"type":"node","id":7252820974,"lat":51.1750834,"lon":3.2072467},{"type":"node","id":7252820975,"lat":51.1750963,"lon":3.2073579},{"type":"node","id":7252820976,"lat":51.1751376,"lon":3.2074032},{"type":"node","id":7252820977,"lat":51.175215,"lon":3.2073826},{"type":"node","id":7252820978,"lat":51.1752848,"lon":3.2073785},{"type":"node","id":7252820979,"lat":51.1754252,"lon":3.2073858},{"type":"node","id":7252820980,"lat":51.1754615,"lon":3.2074926},{"type":"node","id":7252820981,"lat":51.1754259,"lon":3.20756},{"type":"node","id":7252820982,"lat":51.17537,"lon":3.2076668},{"type":"node","id":7252820983,"lat":51.1753304,"lon":3.2078901},{"type":"node","id":7252820984,"lat":51.1753152,"lon":3.2079319},{"type":"node","id":7252874885,"lat":51.1754423,"lon":3.2080951},{"type":"node","id":7252874886,"lat":51.1754991,"lon":3.2083134},{"type":"node","id":7252874887,"lat":51.1755307,"lon":3.2084864},{"type":"node","id":7252874888,"lat":51.1755729,"lon":3.2087064},{"type":"node","id":7252874889,"lat":51.1753248,"lon":3.2088635},{"type":"node","id":7252874890,"lat":51.1752645,"lon":3.2092365},{"type":"node","id":7252874891,"lat":51.1747746,"lon":3.2093558},{"type":"node","id":8042845789,"lat":51.1748587,"lon":3.209526},{"type":"node","id":8042845790,"lat":51.1749489,"lon":3.2096774},{"type":"node","id":8042845791,"lat":51.1750595,"lon":3.2097458},{"type":"node","id":8042845792,"lat":51.1753557,"lon":3.2077924},{"type":"node","id":8042845793,"lat":51.1754621,"lon":3.2074425},{"type":"node","id":8042845794,"lat":51.1754531,"lon":3.2074092},{"type":"node","id":8042845795,"lat":51.1754729,"lon":3.2051839},{"type":"node","id":8042845796,"lat":51.1754907,"lon":3.2052089},{"type":"node","id":8042845797,"lat":51.1755084,"lon":3.2052355},{"type":"node","id":8042845798,"lat":51.1755235,"lon":3.2053482},{"type":"node","id":8042845799,"lat":51.1755387,"lon":3.2053805},{"type":"node","id":8042845800,"lat":51.1755584,"lon":3.2057251},{"type":"node","id":8042845801,"lat":51.1755536,"lon":3.205762},{"type":"node","id":8042845802,"lat":51.1755492,"lon":3.2061312},{"type":"node","id":8042845803,"lat":51.1755305,"lon":3.2062755},{"type":"node","id":8042845804,"lat":51.1754335,"lon":3.2066603},{"type":"node","id":8042845805,"lat":51.1755929,"lon":3.2047843},{"type":"node","id":8042845808,"lat":51.1746278,"lon":3.2090183},{"type":"node","id":8042845809,"lat":51.1740796,"lon":3.2076268},{"type":"node","id":8042845844,"lat":51.1768218,"lon":3.20861},{"type":"node","id":8042845845,"lat":51.1767935,"lon":3.2085031},{"type":"node","id":8042845846,"lat":51.1769413,"lon":3.2089936},{"type":"node","id":8042845847,"lat":51.1757541,"lon":3.2096988},{"type":"node","id":8042845848,"lat":51.1757421,"lon":3.2096812},{"type":"node","id":8042845849,"lat":51.1757312,"lon":3.2096924},{"type":"node","id":8042845850,"lat":51.1757202,"lon":3.2096478},{"type":"node","id":8042845851,"lat":51.1756902,"lon":3.2096207},{"type":"node","id":8042845852,"lat":51.1756712,"lon":3.2096143},{"type":"node","id":8042845853,"lat":51.1756602,"lon":3.2095745},{"type":"node","id":8042845854,"lat":51.1756552,"lon":3.2095537},{"type":"node","id":8042845855,"lat":51.1756657,"lon":3.2095174},{"type":"node","id":8042845856,"lat":51.175658,"lon":3.20908},{"type":"node","id":8042845857,"lat":51.1756525,"lon":3.2093366},{"type":"node","id":8042845858,"lat":51.1756466,"lon":3.2088282},{"type":"node","id":8042845859,"lat":51.1756582,"lon":3.2089151},{"type":"node","id":8042845860,"lat":51.1765521,"lon":3.20839},{"type":"node","id":1069177845,"lat":51.1809357,"lon":3.2035366},{"type":"node","id":1069177849,"lat":51.1803975,"lon":3.2017749},{"type":"node","id":1069178166,"lat":51.1804195,"lon":3.2033098},{"type":"node","id":1519342742,"lat":51.1805239,"lon":3.2032684},{"type":"node","id":1519342743,"lat":51.18064,"lon":3.2036951},{"type":"node","id":1759437085,"lat":51.1806986,"lon":3.2036647},{"type":"node","id":6852012577,"lat":51.1804541,"lon":3.2017867},{"type":"node","id":6852012578,"lat":51.1804124,"lon":3.2018177},{"type":"node","id":6852012579,"lat":51.1804106,"lon":3.2018165},{"type":"node","id":6852012580,"lat":51.1804143,"lon":3.2018177},{"type":"node","id":6852012581,"lat":51.1808363,"lon":3.2030295},{"type":"node","id":6852012582,"lat":51.1807955,"lon":3.2030595},{"type":"node","id":6852012583,"lat":51.180798,"lon":3.2030712},{"type":"node","id":1519476620,"lat":51.1786696,"lon":3.2199463},{"type":"node","id":1519476635,"lat":51.179306,"lon":3.2193119},{"type":"node","id":1519476698,"lat":51.1795485,"lon":3.2192221},{"type":"node","id":1519476744,"lat":51.1791125,"lon":3.2194529},{"type":"node","id":1519476746,"lat":51.178483,"lon":3.2203218},{"type":"node","id":1519476797,"lat":51.1788731,"lon":3.2196593},{"type":"node","id":3780611492,"lat":51.1761568,"lon":3.2238485},{"type":"node","id":3780611493,"lat":51.1762213,"lon":3.223901},{"type":"node","id":3780611494,"lat":51.1762626,"lon":3.2237172},{"type":"node","id":3780611495,"lat":51.1763208,"lon":3.2237628},{"type":"node","id":3780611496,"lat":51.1763248,"lon":3.2236414},{"type":"node","id":3780611497,"lat":51.1763881,"lon":3.2236926},{"type":"node","id":3780611498,"lat":51.1764876,"lon":3.2235544},{"type":"node","id":3780611499,"lat":51.1766551,"lon":3.2232337},{"type":"node","id":3780611500,"lat":51.176687,"lon":3.2231945},{"type":"node","id":3780611501,"lat":51.1767105,"lon":3.2232776},{"type":"node","id":3780611502,"lat":51.176751,"lon":3.2232465},{"type":"node","id":3780611503,"lat":51.1767812,"lon":3.2230729},{"type":"node","id":3780611504,"lat":51.1768505,"lon":3.2231083},{"type":"node","id":6533893620,"lat":51.178521,"lon":3.2203687},{"type":"node","id":6533893621,"lat":51.1786845,"lon":3.220025},{"type":"node","id":6533893622,"lat":51.1789011,"lon":3.2197183},{"type":"node","id":6533893624,"lat":51.1791343,"lon":3.2195235},{"type":"node","id":6533893625,"lat":51.1793269,"lon":3.2193854},{"type":"node","id":6533893626,"lat":51.1795596,"lon":3.219299},{"type":"node","id":5536620518,"lat":51.1683264,"lon":3.224863},{"type":"node","id":5536620519,"lat":51.1684352,"lon":3.2251117},{"type":"node","id":5536620520,"lat":51.1685675,"lon":3.2254022},{"type":"node","id":5536620821,"lat":51.1687379,"lon":3.2258223},{"type":"node","id":5536620822,"lat":51.1693682,"lon":3.2250177},{"type":"node","id":5536620823,"lat":51.1693734,"lon":3.225049},{"type":"node","id":5536620825,"lat":51.1707605,"lon":3.2244639},{"type":"node","id":5536620837,"lat":51.1697793,"lon":3.2260181},{"type":"node","id":5536620838,"lat":51.1699712,"lon":3.2262338},{"type":"node","id":5536620839,"lat":51.1701247,"lon":3.2263242},{"type":"node","id":5536620840,"lat":51.1704719,"lon":3.2266478},{"type":"node","id":5536620841,"lat":51.1701028,"lon":3.2281081},{"type":"node","id":5536620842,"lat":51.1698158,"lon":3.2276446},{"type":"node","id":5536620843,"lat":51.1696441,"lon":3.2273837},{"type":"node","id":5536620844,"lat":51.1695154,"lon":3.2272009},{"type":"node","id":5536620845,"lat":51.169536,"lon":3.2271664},{"type":"node","id":5536620846,"lat":51.1694515,"lon":3.2270181},{"type":"node","id":5635001306,"lat":51.1737078,"lon":3.2354437},{"type":"node","id":5635001371,"lat":51.1722128,"lon":3.2340273},{"type":"node","id":5635001372,"lat":51.1723921,"lon":3.2343394},{"type":"node","id":5635001373,"lat":51.1724213,"lon":3.2342967},{"type":"node","id":5635001374,"lat":51.1722421,"lon":3.2339846},{"type":"node","id":5635001375,"lat":51.1728995,"lon":3.2339319},{"type":"node","id":5635001376,"lat":51.1729253,"lon":3.2339922},{"type":"node","id":5635001377,"lat":51.1723583,"lon":3.2340816},{"type":"node","id":5635001378,"lat":51.1723268,"lon":3.2340173},{"type":"node","id":5635001379,"lat":51.172885,"lon":3.2337993},{"type":"node","id":5635001380,"lat":51.1728611,"lon":3.2338706},{"type":"node","id":5635001381,"lat":51.1723325,"lon":3.2339419},{"type":"node","id":5635001382,"lat":51.1723464,"lon":3.2338696},{"type":"node","id":5882873334,"lat":51.1736186,"lon":3.2330966},{"type":"node","id":5882873335,"lat":51.1735451,"lon":3.2327633},{"type":"node","id":5882873336,"lat":51.1737001,"lon":3.2327438},{"type":"node","id":5882873337,"lat":51.1736796,"lon":3.2318764},{"type":"node","id":5882873338,"lat":51.1735265,"lon":3.2318782},{"type":"node","id":6593340582,"lat":51.1727872,"lon":3.2328745},{"type":"node","id":6593340583,"lat":51.1728013,"lon":3.2332051},{"type":"node","id":6593340584,"lat":51.1736743,"lon":3.2331435},{"type":"node","id":7767137235,"lat":51.1735198,"lon":3.2355568},{"type":"node","id":7767137236,"lat":51.1735366,"lon":3.2355246},{"type":"node","id":7767137237,"lat":51.1735198,"lon":3.2356399},{"type":"node","id":5635001274,"lat":51.1751425,"lon":3.2346144},{"type":"node","id":5635001275,"lat":51.1751696,"lon":3.2347601},{"type":"node","id":5635001276,"lat":51.1750553,"lon":3.2348141},{"type":"node","id":5635001277,"lat":51.1750282,"lon":3.2346684},{"type":"node","id":5635001312,"lat":51.174002,"lon":3.2349367},{"type":"node","id":5635001383,"lat":51.1740709,"lon":3.233056},{"type":"node","id":5635001384,"lat":51.1740249,"lon":3.2330598},{"type":"node","id":5635001385,"lat":51.1740265,"lon":3.2331313},{"type":"node","id":5635001386,"lat":51.1740597,"lon":3.2327202},{"type":"node","id":5635001414,"lat":51.174281,"lon":3.2336147},{"type":"node","id":5635001415,"lat":51.174081,"lon":3.2338914},{"type":"node","id":5635001416,"lat":51.1740489,"lon":3.2338323},{"type":"node","id":5635001417,"lat":51.1742489,"lon":3.2335556},{"type":"node","id":5761770202,"lat":51.1783111,"lon":3.2342484},{"type":"node","id":5761770204,"lat":51.1782819,"lon":3.2339616},{"type":"node","id":7767137234,"lat":51.1739713,"lon":3.2348766},{"type":"node","id":9052878228,"lat":51.1781206,"lon":3.234323},{"type":"node","id":9052878229,"lat":51.1781054,"lon":3.2339448},{"type":"way","id":810604915,"nodes":[1168727824,9167054153,9274761589,9274761596,7577430793,1038638712,1038638723,1038638661,9199177059,1038638721,7554434436,7578975035,7554434438,7578865273,7578975032,7578975030,7578975029,1038638696,7578975009,7578975008,7578975007,1038638743,7578975002,7578974988,7578974989,7578974990,7578974991,7578974992,7578865275,7578865274,1038638753,7578974995,7578974996,7578974997,7578904489,7578974999,7578975000,7578975001,7578974998,3921878998,1038638592,929120698,1675648152,7578865281,7578865283,7578975012,7578975015,7578975016,3922380061,2732486274,3922380083,7578975019,7578975018,7578975021,7578960079,3922375256,7578975024,3922380071]},{"type":"way","id":989393316,"nodes":[3922380071,3922380081,3922380086,3922380092,3922380095,9167054157,7578975026,9274761593,9274761592,9274761591,7578975027,9167054156,9167054154,7578975049,7578975028,1168727824]},{"type":"way","id":389026405,"nodes":[3921879019,7578975044,3921879018,7578975046,7578975045,7578975040,3921879004,3921879011,3921879019]},{"type":"way","id":810607458,"nodes":[7578987409,7578987410,7578987411,5745833241,5745833240,5745833239,7578987412,7578987415,7578987413,7578987414,7578987417,7578987416,7578987418,7578987419,7578987409]},{"type":"way","id":777280458,"nodes":[8042845812,8042845806,8042845807,7252863798,7252820961,8042845805,7252820962,7252820963,7252820964,7252820965,7252820966,8042845795,8042845796,8042845797,7252820967,8042845798,8042845799,7252820968,8042845800,8042845801,7252820969,8042845802,8042845803,7252820970,8042845804,7252820971,7252820972,7252820973,7252820974,7252820975,7252820976,7252820977,7252820978,7252820979,8042845794,8042845793,7252820980,7252820981,7252820982,8042845792,7252820983,7252820984,7252874885,7252874886,7252874887,7252874888,7252874889,5728443540,7252874890,5728443539,8042845791,8042845790,8042845789,7252874891,8042845808,8042845809,8042845810,8042845811,4036885076,8042845812]},{"type":"way","id":577572397,"nodes":[5536620518,5536620519,5536620520,5536620821,5536620822,5536620823,5536620824,5536620825,5536620826,6067483782,5536620827,5536620828,5536620829,5536620830,5536620831,5536620832,7794736251,5536620505,5536620506,5536620507,5952389321,5952389322,5952389323,5536609426,5952389320,5172938444,5536620510,5536620511,5536620512,5536620513,6067483781,5536620514,5536620516,5536620518]},{"type":"way","id":863373849,"nodes":[4036899624,8042845845,8042845844,8042845846,8042845847,8042845848,8042845849,8042845850,8042845851,8042845852,8042845853,8042845854,8042845855,8042845857,8042845856,8042845859,8042845858,8042845860,4036899624]},{"type":"way","id":577572399,"nodes":[5536620837,5536620838,5536620839,5536620840,5536620841,5536620842,5536620843,5536620844,5536620845,5536620846,5536620837]}]} + ) + + Utils.injectJsonDownloadForTests( + "https://overpass-api.de/api/interpreter?data=%5Bout%3Ajson%5D%5Btimeout%3A60%5D%5Bbbox%3A51.124212757826875%2C3.251953125%2C51.17934297928927%2C3.33984375%5D%3B(nwr%5B%22operator%22~%22%5E.*%5BnN%5Datuurpunt.*%24%22%5D%5B%22leisure%22%3D%22nature_reserve%22%5D%3Bnwr%5B%22operator%22~%22%5E.*%5BnN%5Datuurpunt.*%24%22%5D%5B%22protect_class%22!~%22%5E98%24%22%5D%5B%22boundary%22%3D%22protected_area%22%5D%3Bnwr%5B%22operator%22~%22%5E.*%5BnN%5Datuurpunt.*%24%22%5D%5B%22information%22%3D%22visitor_centre%22%5D%3Bnwr%5B%22operator%22~%22%5E.*%5BnN%5Datuurpunt.*%24%22%5D%5B%22information%22%3D%22office%22%5D%3Bnwr%5B%22operator%22~%22%5E.*%5BnN%5Datuurpunt.*%24%22%5D%5B%22route%22~%22%5E.*foot.*%24%22%5D%3Bnwr%5B%22operator%22~%22%5E.*%5BnN%5Datuurpunt.*%24%22%5D%5B%22route%22~%22%5E.*hiking.*%24%22%5D%3Bnwr%5B%22operator%22~%22%5E.*%5BnN%5Datuurpunt.*%24%22%5D%5B%22route%22~%22%5E.*bycicle.*%24%22%5D%3Bnwr%5B%22operator%22~%22%5E.*%5BnN%5Datuurpunt.*%24%22%5D%5B%22route%22~%22%5E.*horse.*%24%22%5D%3Bnwr%5B%22amenity%22%3D%22toilets%22%5D%3Bnwr%5B%22operator%22~%22%5E.*%5BnN%5Datuurpunt.*%24%22%5D%5B%22leisure%22%3D%22bird_hide%22%5D%3Bnwr%5B%22leisure%22%3D%22picnic_table%22%5D%3Bnwr%5B%22amenity%22%3D%22drinking_water%22%5D%5B%22access%22!~%22%5Epermissive%24%22%5D%5B%22access%22!~%22%5Eprivate%24%22%5D%3Bnwr%5B%22amenity%22%3D%22parking%22%5D%3Bnwr%5B%22information%22%3D%22board%22%5D%3Bnwr%5B%22amenity%22%3D%22bench%22%5D%3Bnwr%5B%22man_made%22%3D%22watermill%22%5D%3Bnwr%5B%22id%22%3D%22location_track%22%5D%3Bnwr%5B%22id%22%3D%22gps%22%5D%3Bnwr%5B%22user%3Alocation%22%3D%22yes%22%5D%3Bnwr%5B%22user%3Ahome%22%3D%22yes%22%5D%3B)%3Bout%20body%3Bout%20meta%3B%3E%3Bout%20skel%20qt%3B" , + {"version":0.6,"generator":"Overpass API 0.7.57 93a4d346","osm3s":{"timestamp_osm_base":"2022-02-14T00:02:14Z","copyright":"The data included in this document is from www.openstreetmap.org. The data is made available under ODbL."},"elements":[{"type":"node","id":668981602,"lat":51.1588243,"lon":3.2558654,"tags":{"amenity":"bench"}},{"type":"node","id":668981622,"lat":51.1565636,"lon":3.2549888,"tags":{"leisure":"bird_hide","operator":"Natuurpunt Vallei van de Zuidleie","shelter":"no"}},{"type":"node","id":1580339675,"lat":51.1395949,"lon":3.3332507,"tags":{"amenity":"parking"}},{"type":"node","id":1764571836,"lat":51.1701118,"lon":3.3363371,"tags":{"amenity":"parking"}},{"type":"node","id":2121652779,"lat":51.1268536,"lon":3.3239607,"tags":{"amenity":"parking"}},{"type":"node","id":2386053906,"lat":51.162161,"lon":3.263065,"tags":{"amenity":"toilets"}},{"type":"node","id":2978180520,"lat":51.1329149,"lon":3.3362322,"tags":{"amenity":"bench"}},{"type":"node","id":2978183271,"lat":51.1324243,"lon":3.3373735,"tags":{"amenity":"bench"}},{"type":"node","id":2978184471,"lat":51.1436385,"lon":3.2916539,"tags":{"amenity":"bench","backrest":"yes","check_date":"2021-02-26"}},{"type":"node","id":3925976407,"lat":51.1787486,"lon":3.2831866,"tags":{"leisure":"picnic_table"}},{"type":"node","id":5158056232,"lat":51.1592067,"lon":3.2567111,"tags":{"leisure":"bird_hide","operator":"Natuurpunt Vallei van de Zuidleie","shelter":"no"}},{"type":"node","id":5718776382,"lat":51.1609023,"lon":3.2582509,"tags":{"check_date":"2021-02-26","covered":"no","leisure":"picnic_table"}},{"type":"node","id":5718776383,"lat":51.1609488,"lon":3.2581877,"tags":{"check_date":"2021-02-26","covered":"no","leisure":"picnic_table"}},{"type":"node","id":5745727100,"lat":51.1594639,"lon":3.2604304,"tags":{"amenity":"bench"}},{"type":"node","id":5745739587,"lat":51.1580397,"lon":3.263101,"tags":{"check_date":"2021-02-26","leisure":"picnic_table"}},{"type":"node","id":5745739588,"lat":51.1580631,"lon":3.2630345,"tags":{"check_date":"2021-02-26","leisure":"picnic_table"}},{"type":"node","id":5961596093,"lat":51.1588103,"lon":3.2633933,"tags":{"leisure":"picnic_table"}},{"type":"node","id":5964032193,"lat":51.1514821,"lon":3.2723766,"tags":{"leisure":"picnic_table"}},{"type":"node","id":6034563379,"lat":51.1421689,"lon":3.3022271,"tags":{"leisure":"picnic_table"}},{"type":"node","id":6034564191,"lat":51.1722186,"lon":3.2823584,"tags":{"leisure":"picnic_table"}},{"type":"node","id":6034565298,"lat":51.1722796,"lon":3.282329,"tags":{"leisure":"picnic_table"}},{"type":"node","id":6145151111,"lat":51.1690435,"lon":3.3388676,"tags":{"amenity":"bench"}},{"type":"node","id":6145151112,"lat":51.1690023,"lon":3.3388636,"tags":{"amenity":"bench"}},{"type":"node","id":6216549651,"lat":51.1292813,"lon":3.332369,"tags":{"amenity":"bench"}},{"type":"node","id":6216549652,"lat":51.1292768,"lon":3.3324259,"tags":{"amenity":"bench"}},{"type":"node","id":7204447030,"lat":51.1791769,"lon":3.283116,"tags":{"board_type":"nature","information":"board","mapillary":"0BHVgU1XCyTMM9cjvidUqk","name":"De Assebroekse Meersen","tourism":"information"}},{"type":"node","id":7468175778,"lat":51.1344104,"lon":3.3348246,"tags":{"leisure":"picnic_table"}},{"type":"node","id":7602473480,"lat":51.1503874,"lon":3.2836867,"tags":{"leisure":"picnic_table"}},{"type":"node","id":7602473482,"lat":51.150244,"lon":3.2842925,"tags":{"board_type":"wildlife","information":"board","name":"Waterbeestjes","operator":"Natuurpunt Vallei van de Zuidleie","tourism":"information"}},{"type":"node","id":7602699080,"lat":51.1367031,"lon":3.3320712,"tags":{"amenity":"bench","backrest":"yes","material":"metal"}},{"type":"node","id":7680940369,"lat":51.1380074,"lon":3.3369928,"tags":{"amenity":"bench"}},{"type":"node","id":7726850522,"lat":51.1418585,"lon":3.3064234,"tags":{"image:0":"https://i.imgur.com/Bh6UjYy.jpg","information":"board","tourism":"information"}},{"type":"node","id":7727071212,"lat":51.1501173,"lon":3.2845352,"tags":{"board_type":"wildlife","image:0":"https://i.imgur.com/mFEQJWd.jpg","information":"board","name":"Vleermuizen","operator":"Natuurpunt Vallei van de Zuidleie","tourism":"information"}},{"type":"node","id":9122376662,"lat":51.1720505,"lon":3.3308524,"tags":{"amenity":"bench"}},{"type":"node","id":9425818876,"lat":51.1325315,"lon":3.3371616,"tags":{"leisure":"picnic_table","mapillary":"101961548889238"}},{"type":"way","id":149408639,"nodes":[1623924235,1623924236,1623924238,1864750831,1623924241,1623924235],"tags":{"amenity":"parking"}},{"type":"way","id":149553206,"nodes":[1625199938,1625199951,8377691836,8378081366,8378081429,8378081386,1625199950,6414383775,1625199827,1625199938],"tags":{"amenity":"parking"}},{"type":"way","id":184402308,"nodes":[1948836195,1948836194,1948836193,1948836189,1948836192,1948836195],"tags":{"building":"yes","leisure":"bird_hide","operator":"Natuurpunt Vallei van de Zuidleie","shelter":"yes","wheelchair":"yes"}},{"type":"way","id":184402309,"nodes":[1948836029,1948836038,1948836032,1948836025,1948836023,1948836029],"tags":{"building":"yes","leisure":"bird_hide","operator":"Natuurpunt Vallei van de Zuidleie","shelter":"yes","source:geometry:date":"2011-11-07","source:geometry:ref":"Gbg/3489204"}},{"type":"way","id":184402331,"nodes":[1948836104,1948836072,1948836068,1948836093,1948836104],"tags":{"access":"yes","amenity":"parking","fee":"no","parking":"surface"}},{"type":"way","id":236979353,"nodes":[2449323191,7962681624,7962681623,7962681621,7962681622,2449323193,7962681620,7962681619,8360787098,4350143592,6794421028,6794421027,6794421041,7962681614,2123461969,2449323198,7962681615,7962681616,6794421042,2449323191],"tags":{"amenity":"parking"}},{"type":"way","id":251590503,"nodes":[2577910543,2577910530,2577910542,2577910520,6418533335,2577910526,2577910545,2577910543],"tags":{"amenity":"parking","parking":"surface"}},{"type":"way","id":313090489,"nodes":[3190107423,3190107435,3190107442,3190107439,3190107432,3190107428,3190107424,3190107400,3190107393,3190107377,3190107371,3190107374,3190107408,3190107407,3190107415,3190107416,3190107420,3190107423],"tags":{"amenity":"parking"}},{"type":"way","id":314531418,"nodes":[7468171455,7468171451,7727393212,7727393211,7727393210,7727393208,7727393209,8781449489,7727393207,7727393206,7727393205,7727393204,7727393203,7727393202,7727393201,7727393200,7390697550,7390697534,7727393199,7727393198,7727393197,7390697549,7727393196,7727393195,7727393194,7727393193,7727393192,7727393191,7727393190,7727393189,7727393188,7727393187,7727393186,7727393185,7727339384,7727339383,7727339382,1553169911,1553169836,1493821433,1493821422,3185248088,7727339364,7727339365,7727339366,7727339367,7727339368,7727339369,7727339370,7727339371,7727339372,7727339373,7727339374,7727339375,7727339376,7727339377,3185248049,3185248048,3185248042,3185248040,7727339378,7727339379,7727339380,7727339381,7468171438,7468171442,7468171430,7468171432,7468171446,7468171404,7468171405,7468171422,7468171426,7468171433,7468171423,7468171428,7468171431,7468171429,7468171406,7468171407,7468171444,7468171408,7468171409,7468171410,7468171411,7468171412,7468171413,7190927792,7190927791,7190927793,7190927787,7190927788,7190927789,7190927790,7190927786,7602692242,7190927785,7190873584,7468171450,7190873582,7190873576,7190873578,7190873577,7468171455],"tags":{"access":"yes","dog":"leashed","dogs":"leashed","image":"https://i.imgur.com/cOfwWTj.jpg","image:0":"https://i.imgur.com/RliQdyi.jpg","image:1":"https://i.imgur.com/IeKHahz.jpg","image:2":"https://i.imgur.com/1K0IORH.jpg","image:3":"https://i.imgur.com/jojP09s.jpg","image:4":"https://i.imgur.com/DK6kT51.jpg","image:5":"https://i.imgur.com/RizbGM1.jpg","image:6":"https://i.imgur.com/hyoY6Cl.jpg","image:7":"https://i.imgur.com/xDd7Wrq.jpg","leisure":"nature_reserve","name":"Miseriebocht","operator":"Natuurpunt Beernem","website":"https://www.natuurpunt.be/natuurgebied/miseriebocht","wikidata":"Q97060915"}},{"type":"way","id":366318480,"nodes":[3702926557,3702926558,3702926559,3702926560,3702926557],"tags":{"amenity":"parking"}},{"type":"way","id":366318481,"nodes":[3702878648,3702926561,3702926562,3702926563,3702926564,3702926565,3702926566,3702926567,3702878648],"tags":{"amenity":"parking"}},{"type":"way","id":366318482,"nodes":[3702926568,8292789053,8292789054,3702878654,3702926568],"tags":{"amenity":"parking"}},{"type":"way","id":366320440,"nodes":[3702956173,3702956174,3702956175,3702956176,3702956173],"tags":{"amenity":"parking","name":"Kleine Beer"}},{"type":"way","id":366321706,"nodes":[3702969714,3702969715,3702969716,3702969717,3702969714],"tags":{"amenity":"parking"}},{"type":"way","id":480267681,"nodes":[4732689641,4732689640,4732689639,4732689638,4732689637,4732689636,4732689635,4732689634,4732689633,4732689632,4732689631,4732689630,4732689629,4732689628,4732689627,4732689626,8294875888,4732689641],"tags":{"amenity":"parking"}},{"type":"way","id":554341620,"nodes":[5349884603,5349884602,5349884601,5349884600,5349884603],"tags":{"amenity":"parking"}},{"type":"way","id":554341621,"nodes":[5349884607,5349884606,5349884605,5349884604,5349884607],"tags":{"amenity":"parking"}},{"type":"way","id":561902092,"nodes":[5417516023,5417515520,5417516021,5417516022,5417516023],"tags":{"building":"yes","image":"https://i.imgur.com/WmViSbL.jpg","leisure":"bird_hide","operator":"Natuurpunt Vallei van de Zuidleie","shelter":"yes","wheelchair":"no"}},{"type":"way","id":605915064,"nodes":[5745739924,5745739925,5745739926,5745739927,5745739924],"tags":{"amenity":"parking","surface":"fine2"}},{"type":"way","id":650285088,"nodes":[3645188881,6100803131,6100803130,6100803129,6100803124,6100803125,6100803128,6100803127,6100803126,3645188881],"tags":{"amenity":"parking","parking":"surface"}},{"type":"way","id":655944574,"nodes":[6145151107,6145151108,6145151109,6145151115,6145151114,6145151110,6145151107],"tags":{"amenity":"parking"}},{"type":"way","id":664171069,"nodes":[6216549610,6216549611,6216549612,6216549613,1413470849,1413470848,6216549605,6216549604,6216549610],"tags":{"amenity":"parking"}},{"type":"way","id":664171076,"nodes":[6216549656,6216549655,8307316294,6216549661,6216549657,6216549658,6216549659,6216549660,6216549656],"tags":{"amenity":"parking","capacity":"50"}},{"type":"way","id":665330334,"nodes":[6227395993,6227395991,6227395992,6227395997,6227395993],"tags":{"access":"yes","amenity":"parking","fee":"no","parking":"surface","surface":"asphalt"}},{"type":"way","id":684598363,"nodes":[3227068565,6416001161,6414352054,6414352055,7274233390,7274233391,7274233397,7274233395,7274233396,6414352053,3227068568,3227068565],"tags":{"amenity":"parking","fee":"no"}},{"type":"way","id":684599810,"nodes":[1317838331,8279842668,1384096112,1317838328,6414374315,3227068446,6414374316,6414374317,6414374318,3227068456,6414374319,6414374320,6414374321,1317838317,1317838331],"tags":{"access":"no","amenity":"parking","operator":"Politie"}},{"type":"way","id":761474468,"nodes":[7114502201,7114502203,7114502200,7114502202,3170562439,3170562437,3170562431,7114502240,7114502211,7114502212,7114502214,7114502215,7114502228,7114502234,7114502235,7114502236,7114502237,7114502238,7114502239,7114502233,7114502232,7114502231,7114502229,7114502230,7114502227,7114502226,7114502225,7114502216,7114502217,7114502224,3170562392,7114502218,3170562394,7114502219,7114502220,7114502221,7114502222,7114502223,3170562395,3170562396,3170562397,3170562402,3170562410,7114502209,7114502208,7114502207,7114502205,7114502206,3170562436,1475188519,1475188516,6627605025,8294886142,7114502201],"tags":{"image":"http://valleivandezuidleie.be/wp-content/uploads/2011/12/2011-03-24_G12_088_1_1.JPG","leisure":"nature_reserve","name":"Merlebeek-Meerberg","natural":"wetland","operator":"Natuurpunt Vallei van de Zuidleie","start_date":"2011","website":"http://valleivandezuidleie.be/info-over-de-vallei-van-de-zuidleie/merlebeek/","wetland":"wet_meadow"}},{"type":"way","id":813859435,"nodes":[7602479690,7459257985,7602479691,7459154784,7459154782,7602479692,5482441357,7602479693,7602479694,7602479695,7602479696,7602479690],"tags":{"access":"yes","image:0":"https://i.imgur.com/nb9nawa.jpg","landuse":"grass","leisure":"nature_reserve","name:signed":"no","natural":"grass","operator":"Natuurpunt Vallei van de Zuidleie"}},{"type":"way","id":826103452,"nodes":[7713176912,7713176911,7713176910,7713176909,7713176912],"tags":{"amenity":"parking","parking":"surface"}},{"type":"way","id":893176022,"nodes":[1927235214,8301349336,8301349335,8301349337,1927235214],"tags":{"amenity":"parking","parking":"surface"}},{"type":"way","id":895943476,"nodes":[8328251887,8328251886,8328251885,8328251884,8328251887],"tags":{"amenity":"parking","parking":"surface"}},{"type":"way","id":895943477,"nodes":[8328251891,8328251890,8328251889,8328251888,8328251891],"tags":{"amenity":"parking","parking":"surface"}},{"type":"way","id":895943478,"nodes":[8328251895,8328251894,8328251893,8328251892,8328251895],"tags":{"amenity":"parking","parking":"surface"}},{"type":"way","id":895943479,"nodes":[8328251897,8328251896,8328251901,8328251900,8328251897],"tags":{"amenity":"parking","parking":"surface"}},{"type":"way","id":895943480,"nodes":[8328251898,8328251899,8328251903,8328251902,8328251898],"tags":{"amenity":"parking","parking":"surface"}},{"type":"way","id":895943481,"nodes":[8328251907,8328251906,8328251905,8328251904,8328251907],"tags":{"amenity":"parking","parking":"surface"}},{"type":"way","id":895943482,"nodes":[8328251911,8328251910,8328251909,8328251908,8328251911],"tags":{"amenity":"parking","parking":"surface"}},{"type":"way","id":901952767,"nodes":[8378097127,8378097126,8378097125,8378097124,8378097127],"tags":{"amenity":"parking","parking":"street_side"}},{"type":"way","id":901952768,"nodes":[8378097134,8378097133,8378097132,8378097131,8378097130,8378097129,8378097128,8378097134],"tags":{"amenity":"parking","parking":"street_side"}},{"type":"way","id":947325182,"nodes":[8497007549,8768981525,8768981522,8768981524,8768981521,8768981523,8768981520,8768981519,6206789709,8768981533,8497007549],"tags":{"amenity":"parking","parking":"surface"}},{"type":"way","id":966827815,"nodes":[8945026757,8945026756,8945026755,8945026754,8945026757],"tags":{"access":"customers","amenity":"parking","parking":"surface"}},{"type":"relation","id":2589413,"members":[{"type":"way","ref":663050030,"role":"outer"},{"type":"way","ref":184402334,"role":"outer"},{"type":"way","ref":184402332,"role":"outer"},{"type":"way","ref":184402325,"role":"outer"},{"type":"way","ref":184402326,"role":"outer"},{"type":"way","ref":314899865,"role":"outer"},{"type":"way","ref":314956402,"role":"outer"}],"tags":{"access":"yes","image":"https://i.imgur.com/Yu4qHh5.jpg","leisure":"nature_reserve","name":"Warandeputten","operator":"Natuurpunt Vallei van de Zuidleie","type":"multipolygon","wikipedia":"nl:Warandeputten"}},{"type":"relation","id":8782624,"members":[{"type":"way","ref":315041273,"role":"outer"},{"type":"way","ref":631377343,"role":"outer"},{"type":"way","ref":631371237,"role":"outer"},{"type":"way","ref":631371236,"role":"outer"},{"type":"way","ref":631371234,"role":"outer"},{"type":"way","ref":631377344,"role":"outer"},{"type":"way","ref":631371232,"role":"outer"},{"type":"way","ref":631371231,"role":"outer"},{"type":"way","ref":315041263,"role":"outer"},{"type":"way","ref":631371228,"role":"outer"},{"type":"way","ref":631377341,"role":"outer"},{"type":"way","ref":315041261,"role":"outer"},{"type":"way","ref":631371223,"role":"outer"}],"tags":{"access":"yes","image:0":"https://i.imgur.com/VuzX5jW.jpg","image:1":"https://i.imgur.com/tPppmJG.jpg","image:2":"https://i.imgur.com/ecY3RER.jpg","image:3":"https://i.imgur.com/lr4FK6j.jpg","image:5":"https://i.imgur.com/uufEeE6.jpg","leisure":"nature_reserve","name":"Leiemeersen Noord","operator":"Natuurpunt Vallei van de Zuidleie","type":"multipolygon","website":"http://valleivandezuidleie.be/info-over-de-vallei-van-de-zuidleie/leiemeersen-noord/"}},{"type":"relation","id":8890076,"members":[{"type":"way","ref":640979982,"role":"outer"},{"type":"way","ref":640979978,"role":"outer"}],"tags":{"access":"yes","image:0":"https://i.imgur.com/SAAaKBH.jpg","image:1":"https://i.imgur.com/DGK9iBN.jpg","image:2":"https://i.imgur.com/bte1KJx.jpg","image:3":"https://i.imgur.com/f75Gxnx.jpg","leisure":"nature_reserve","name":"Gevaerts Noord","operator":"Natuurpunt Vallei van de Zuidleie","type":"multipolygon"}},{"type":"relation","id":9118029,"members":[{"type":"way","ref":606165130,"role":"outer"},{"type":"way","ref":655652319,"role":"outer"},{"type":"way","ref":655652321,"role":"outer"}],"tags":{"access":"no","image:0":"https://i.imgur.com/eBufo0v.jpg","image:1":"https://i.imgur.com/kBej2Nk.jpg","image:2":"https://i.imgur.com/QKoyIRl.jpg","leisure":"nature_reserve","name":"De Leiemeersen","note":"Door de hoge kwetsbaarheid van het gebied zijn De Leiemeersen enkel te bezoeken onder begeleiding van een gids","note:mapping":"NIET VOOR BEGINNENDE MAPPERS! Dit gebied is met relaties als multipolygonen gemapt (zo'n 50 stuks). Als je niet weet hoe dit werkt, vraag hulp.","note_1":"wetland=marsh is het veenmoerasgebied","operator":"Natuurpunt Vallei van de Zuidleie","type":"multipolygon","website":"http://valleivandezuidleie.be/info-over-de-vallei-van-de-zuidleie/leiemeersen/"}},{"type":"node","id":668981602,"lat":51.1588243,"lon":3.2558654,"timestamp":"2012-07-06T17:58:39Z","version":2,"changeset":12133044,"user":"martino260","uid":655442,"tags":{"amenity":"bench"}},{"type":"node","id":668981622,"lat":51.1565636,"lon":3.2549888,"timestamp":"2020-03-23T23:54:26Z","version":4,"changeset":82544029,"user":"Pieter Vander Vennet","uid":3818858,"tags":{"leisure":"bird_hide","operator":"Natuurpunt Vallei van de Zuidleie","shelter":"no"}},{"type":"node","id":1580339675,"lat":51.1395949,"lon":3.3332507,"timestamp":"2012-01-07T00:44:42Z","version":1,"changeset":10317754,"user":"popaultje","uid":519184,"tags":{"amenity":"parking"}},{"type":"node","id":1764571836,"lat":51.1701118,"lon":3.3363371,"timestamp":"2012-05-24T21:06:50Z","version":1,"changeset":11693640,"user":"popaultje","uid":519184,"tags":{"amenity":"parking"}},{"type":"node","id":2121652779,"lat":51.1268536,"lon":3.3239607,"timestamp":"2013-01-20T20:12:50Z","version":1,"changeset":14725799,"user":"tomvdb","uid":437764,"tags":{"amenity":"parking"}},{"type":"node","id":2386053906,"lat":51.162161,"lon":3.263065,"timestamp":"2018-01-19T21:31:30Z","version":2,"changeset":55589374,"user":"L'imaginaire","uid":654234,"tags":{"amenity":"toilets"}},{"type":"node","id":2978180520,"lat":51.1329149,"lon":3.3362322,"timestamp":"2014-07-24T21:29:38Z","version":1,"changeset":24338416,"user":"pieterjanheyse","uid":254767,"tags":{"amenity":"bench"}},{"type":"node","id":2978183271,"lat":51.1324243,"lon":3.3373735,"timestamp":"2019-09-14T05:02:25Z","version":2,"changeset":74462201,"user":"JanFi","uid":672253,"tags":{"amenity":"bench"}},{"type":"node","id":2978184471,"lat":51.1436385,"lon":3.2916539,"timestamp":"2021-02-26T10:22:54Z","version":3,"changeset":100041319,"user":"s8evq","uid":3710738,"tags":{"amenity":"bench","backrest":"yes","check_date":"2021-02-26"}},{"type":"node","id":3925976407,"lat":51.1787486,"lon":3.2831866,"timestamp":"2019-08-12T19:48:31Z","version":2,"changeset":73281516,"user":"s8evq","uid":3710738,"tags":{"leisure":"picnic_table"}},{"type":"node","id":5158056232,"lat":51.1592067,"lon":3.2567111,"timestamp":"2021-04-17T16:21:52Z","version":5,"changeset":103110072,"user":"L'imaginaire","uid":654234,"tags":{"leisure":"bird_hide","operator":"Natuurpunt Vallei van de Zuidleie","shelter":"no"}},{"type":"node","id":5718776382,"lat":51.1609023,"lon":3.2582509,"timestamp":"2021-10-18T10:27:50Z","version":3,"changeset":112646117,"user":"s8evq","uid":3710738,"tags":{"check_date":"2021-02-26","covered":"no","leisure":"picnic_table"}},{"type":"node","id":5718776383,"lat":51.1609488,"lon":3.2581877,"timestamp":"2021-10-18T10:27:50Z","version":3,"changeset":112646117,"user":"s8evq","uid":3710738,"tags":{"check_date":"2021-02-26","covered":"no","leisure":"picnic_table"}},{"type":"node","id":5745727100,"lat":51.1594639,"lon":3.2604304,"timestamp":"2018-07-07T18:00:29Z","version":1,"changeset":60494261,"user":"Pieter Vander Vennet","uid":3818858,"tags":{"amenity":"bench"}},{"type":"node","id":5745739587,"lat":51.1580397,"lon":3.263101,"timestamp":"2021-02-26T10:07:56Z","version":2,"changeset":100039706,"user":"s8evq","uid":3710738,"tags":{"check_date":"2021-02-26","leisure":"picnic_table"}},{"type":"node","id":5745739588,"lat":51.1580631,"lon":3.2630345,"timestamp":"2021-02-26T10:07:41Z","version":2,"changeset":100039706,"user":"s8evq","uid":3710738,"tags":{"check_date":"2021-02-26","leisure":"picnic_table"}},{"type":"node","id":5961596093,"lat":51.1588103,"lon":3.2633933,"timestamp":"2018-10-06T14:41:12Z","version":1,"changeset":63258667,"user":"Pieter Vander Vennet","uid":3818858,"tags":{"leisure":"picnic_table"}},{"type":"node","id":5964032193,"lat":51.1514821,"lon":3.2723766,"timestamp":"2018-10-07T12:15:53Z","version":1,"changeset":63277533,"user":"Pieter Vander Vennet","uid":3818858,"tags":{"leisure":"picnic_table"}},{"type":"node","id":6034563379,"lat":51.1421689,"lon":3.3022271,"timestamp":"2020-02-11T20:10:26Z","version":2,"changeset":80868434,"user":"s8evq","uid":3710738,"tags":{"leisure":"picnic_table"}},{"type":"node","id":6034564191,"lat":51.1722186,"lon":3.2823584,"timestamp":"2018-11-04T20:27:50Z","version":2,"changeset":64177431,"user":"Pieter Vander Vennet","uid":3818858,"tags":{"leisure":"picnic_table"}},{"type":"node","id":6034565298,"lat":51.1722796,"lon":3.282329,"timestamp":"2018-11-04T20:27:50Z","version":2,"changeset":64177431,"user":"Pieter Vander Vennet","uid":3818858,"tags":{"leisure":"picnic_table"}},{"type":"node","id":6145151111,"lat":51.1690435,"lon":3.3388676,"timestamp":"2018-12-18T13:13:36Z","version":1,"changeset":65580728,"user":"Siel Nollet","uid":3292414,"tags":{"amenity":"bench"}},{"type":"node","id":6145151112,"lat":51.1690023,"lon":3.3388636,"timestamp":"2018-12-18T13:13:36Z","version":1,"changeset":65580728,"user":"Siel Nollet","uid":3292414,"tags":{"amenity":"bench"}},{"type":"node","id":6216549651,"lat":51.1292813,"lon":3.332369,"timestamp":"2019-01-17T16:29:02Z","version":1,"changeset":66400781,"user":"Nilsnn","uid":4652000,"tags":{"amenity":"bench"}},{"type":"node","id":6216549652,"lat":51.1292768,"lon":3.3324259,"timestamp":"2019-01-17T16:29:03Z","version":1,"changeset":66400781,"user":"Nilsnn","uid":4652000,"tags":{"amenity":"bench"}},{"type":"node","id":7204447030,"lat":51.1791769,"lon":3.283116,"timestamp":"2021-01-01T12:18:32Z","version":3,"changeset":96768203,"user":"L'imaginaire","uid":654234,"tags":{"board_type":"nature","information":"board","mapillary":"0BHVgU1XCyTMM9cjvidUqk","name":"De Assebroekse Meersen","tourism":"information"}},{"type":"node","id":7468175778,"lat":51.1344104,"lon":3.3348246,"timestamp":"2020-04-30T19:07:49Z","version":1,"changeset":84433940,"user":"Pieter Vander Vennet","uid":3818858,"tags":{"leisure":"picnic_table"}},{"type":"node","id":7602473480,"lat":51.1503874,"lon":3.2836867,"timestamp":"2020-06-08T10:39:07Z","version":1,"changeset":86349440,"user":"Pieter Vander Vennet","uid":3818858,"tags":{"leisure":"picnic_table"}},{"type":"node","id":7602473482,"lat":51.150244,"lon":3.2842925,"timestamp":"2021-02-26T10:18:19Z","version":4,"changeset":100040859,"user":"s8evq","uid":3710738,"tags":{"board_type":"wildlife","information":"board","name":"Waterbeestjes","operator":"Natuurpunt Vallei van de Zuidleie","tourism":"information"}},{"type":"node","id":7602699080,"lat":51.1367031,"lon":3.3320712,"timestamp":"2020-06-08T12:08:11Z","version":1,"changeset":86353903,"user":"Pieter Vander Vennet","uid":3818858,"tags":{"amenity":"bench","backrest":"yes","material":"metal"}},{"type":"node","id":7680940369,"lat":51.1380074,"lon":3.3369928,"timestamp":"2020-07-03T17:54:31Z","version":1,"changeset":87513827,"user":"L'imaginaire","uid":654234,"tags":{"amenity":"bench"}},{"type":"node","id":7726850522,"lat":51.1418585,"lon":3.3064234,"timestamp":"2020-07-18T15:57:43Z","version":1,"changeset":88179934,"user":"Pieter Vander Vennet","uid":3818858,"tags":{"image:0":"https://i.imgur.com/Bh6UjYy.jpg","information":"board","tourism":"information"}},{"type":"node","id":7727071212,"lat":51.1501173,"lon":3.2845352,"timestamp":"2021-02-26T10:17:39Z","version":2,"changeset":100040859,"user":"s8evq","uid":3710738,"tags":{"board_type":"wildlife","image:0":"https://i.imgur.com/mFEQJWd.jpg","information":"board","name":"Vleermuizen","operator":"Natuurpunt Vallei van de Zuidleie","tourism":"information"}},{"type":"node","id":9122376662,"lat":51.1720505,"lon":3.3308524,"timestamp":"2021-09-25T13:32:42Z","version":1,"changeset":111688164,"user":"TeamP8","uid":718373,"tags":{"amenity":"bench"}},{"type":"node","id":9425818876,"lat":51.1325315,"lon":3.3371616,"timestamp":"2022-01-28T20:13:29Z","version":3,"changeset":116721474,"user":"L'imaginaire","uid":654234,"tags":{"leisure":"picnic_table","mapillary":"101961548889238"}},{"type":"way","id":149408639,"timestamp":"2012-08-15T19:09:59Z","version":4,"changeset":12742790,"user":"tomvdb","uid":437764,"nodes":[1623924235,1623924236,1623924238,1864750831,1623924241,1623924235],"tags":{"amenity":"parking"}},{"type":"way","id":149553206,"timestamp":"2021-01-30T12:11:53Z","version":4,"changeset":98411765,"user":"L'imaginaire","uid":654234,"nodes":[1625199938,1625199951,8377691836,8378081366,8378081429,8378081386,1625199950,6414383775,1625199827,1625199938],"tags":{"amenity":"parking"}},{"type":"way","id":184402308,"timestamp":"2020-03-23T23:54:26Z","version":6,"changeset":82544029,"user":"Pieter Vander Vennet","uid":3818858,"nodes":[1948836195,1948836194,1948836193,1948836189,1948836192,1948836195],"tags":{"building":"yes","leisure":"bird_hide","operator":"Natuurpunt Vallei van de Zuidleie","shelter":"yes","wheelchair":"yes"}},{"type":"way","id":184402309,"timestamp":"2021-12-20T11:33:54Z","version":8,"changeset":115161990,"user":"s8evq","uid":3710738,"nodes":[1948836029,1948836038,1948836032,1948836025,1948836023,1948836029],"tags":{"building":"yes","leisure":"bird_hide","operator":"Natuurpunt Vallei van de Zuidleie","shelter":"yes","source:geometry:date":"2011-11-07","source:geometry:ref":"Gbg/3489204"}},{"type":"way","id":184402331,"timestamp":"2021-02-26T10:03:17Z","version":4,"changeset":100039746,"user":"s8evq","uid":3710738,"nodes":[1948836104,1948836072,1948836068,1948836093,1948836104],"tags":{"access":"yes","amenity":"parking","fee":"no","parking":"surface"}},{"type":"way","id":236979353,"timestamp":"2021-01-25T12:38:22Z","version":4,"changeset":98122705,"user":"JosV","uid":170722,"nodes":[2449323191,7962681624,7962681623,7962681621,7962681622,2449323193,7962681620,7962681619,8360787098,4350143592,6794421028,6794421027,6794421041,7962681614,2123461969,2449323198,7962681615,7962681616,6794421042,2449323191],"tags":{"amenity":"parking"}},{"type":"way","id":251590503,"timestamp":"2019-04-20T22:04:54Z","version":2,"changeset":69412561,"user":"L'imaginaire","uid":654234,"nodes":[2577910543,2577910530,2577910542,2577910520,6418533335,2577910526,2577910545,2577910543],"tags":{"amenity":"parking","parking":"surface"}},{"type":"way","id":313090489,"timestamp":"2014-11-16T14:59:12Z","version":1,"changeset":26823403,"user":"JanFi","uid":672253,"nodes":[3190107423,3190107435,3190107442,3190107439,3190107432,3190107428,3190107424,3190107400,3190107393,3190107377,3190107371,3190107374,3190107408,3190107407,3190107415,3190107416,3190107420,3190107423],"tags":{"amenity":"parking"}},{"type":"way","id":314531418,"timestamp":"2021-05-30T17:02:49Z","version":21,"changeset":105576255,"user":"s8evq","uid":3710738,"nodes":[7468171455,7468171451,7727393212,7727393211,7727393210,7727393208,7727393209,8781449489,7727393207,7727393206,7727393205,7727393204,7727393203,7727393202,7727393201,7727393200,7390697550,7390697534,7727393199,7727393198,7727393197,7390697549,7727393196,7727393195,7727393194,7727393193,7727393192,7727393191,7727393190,7727393189,7727393188,7727393187,7727393186,7727393185,7727339384,7727339383,7727339382,1553169911,1553169836,1493821433,1493821422,3185248088,7727339364,7727339365,7727339366,7727339367,7727339368,7727339369,7727339370,7727339371,7727339372,7727339373,7727339374,7727339375,7727339376,7727339377,3185248049,3185248048,3185248042,3185248040,7727339378,7727339379,7727339380,7727339381,7468171438,7468171442,7468171430,7468171432,7468171446,7468171404,7468171405,7468171422,7468171426,7468171433,7468171423,7468171428,7468171431,7468171429,7468171406,7468171407,7468171444,7468171408,7468171409,7468171410,7468171411,7468171412,7468171413,7190927792,7190927791,7190927793,7190927787,7190927788,7190927789,7190927790,7190927786,7602692242,7190927785,7190873584,7468171450,7190873582,7190873576,7190873578,7190873577,7468171455],"tags":{"access":"yes","dog":"leashed","dogs":"leashed","image":"https://i.imgur.com/cOfwWTj.jpg","image:0":"https://i.imgur.com/RliQdyi.jpg","image:1":"https://i.imgur.com/IeKHahz.jpg","image:2":"https://i.imgur.com/1K0IORH.jpg","image:3":"https://i.imgur.com/jojP09s.jpg","image:4":"https://i.imgur.com/DK6kT51.jpg","image:5":"https://i.imgur.com/RizbGM1.jpg","image:6":"https://i.imgur.com/hyoY6Cl.jpg","image:7":"https://i.imgur.com/xDd7Wrq.jpg","leisure":"nature_reserve","name":"Miseriebocht","operator":"Natuurpunt Beernem","website":"https://www.natuurpunt.be/natuurgebied/miseriebocht","wikidata":"Q97060915"}},{"type":"way","id":366318480,"timestamp":"2015-08-18T13:50:59Z","version":1,"changeset":33415758,"user":"xras3r","uid":323672,"nodes":[3702926557,3702926558,3702926559,3702926560,3702926557],"tags":{"amenity":"parking"}},{"type":"way","id":366318481,"timestamp":"2015-08-18T13:50:59Z","version":1,"changeset":33415758,"user":"xras3r","uid":323672,"nodes":[3702878648,3702926561,3702926562,3702926563,3702926564,3702926565,3702926566,3702926567,3702878648],"tags":{"amenity":"parking"}},{"type":"way","id":366318482,"timestamp":"2021-01-05T09:04:32Z","version":2,"changeset":96964072,"user":"JosV","uid":170722,"nodes":[3702926568,8292789053,8292789054,3702878654,3702926568],"tags":{"amenity":"parking"}},{"type":"way","id":366320440,"timestamp":"2015-08-18T14:02:00Z","version":1,"changeset":33415981,"user":"xras3r","uid":323672,"nodes":[3702956173,3702956174,3702956175,3702956176,3702956173],"tags":{"amenity":"parking","name":"Kleine Beer"}},{"type":"way","id":366321706,"timestamp":"2015-08-18T14:15:30Z","version":1,"changeset":33416303,"user":"xras3r","uid":323672,"nodes":[3702969714,3702969715,3702969716,3702969717,3702969714],"tags":{"amenity":"parking"}},{"type":"way","id":480267681,"timestamp":"2021-01-05T21:32:23Z","version":2,"changeset":97006454,"user":"JosV","uid":170722,"nodes":[4732689641,4732689640,4732689639,4732689638,4732689637,4732689636,4732689635,4732689634,4732689633,4732689632,4732689631,4732689630,4732689629,4732689628,4732689627,4732689626,8294875888,4732689641],"tags":{"amenity":"parking"}},{"type":"way","id":554341620,"timestamp":"2018-01-19T21:31:30Z","version":1,"changeset":55589374,"user":"L'imaginaire","uid":654234,"nodes":[5349884603,5349884602,5349884601,5349884600,5349884603],"tags":{"amenity":"parking"}},{"type":"way","id":554341621,"timestamp":"2018-01-19T21:31:30Z","version":1,"changeset":55589374,"user":"L'imaginaire","uid":654234,"nodes":[5349884607,5349884606,5349884605,5349884604,5349884607],"tags":{"amenity":"parking"}},{"type":"way","id":561902092,"timestamp":"2021-01-17T14:52:46Z","version":6,"changeset":97640804,"user":"Pieter Vander Vennet","uid":3818858,"nodes":[5417516023,5417515520,5417516021,5417516022,5417516023],"tags":{"building":"yes","image":"https://i.imgur.com/WmViSbL.jpg","leisure":"bird_hide","operator":"Natuurpunt Vallei van de Zuidleie","shelter":"yes","wheelchair":"no"}},{"type":"way","id":605915064,"timestamp":"2018-07-07T18:07:31Z","version":1,"changeset":60494380,"user":"Pieter Vander Vennet","uid":3818858,"nodes":[5745739924,5745739925,5745739926,5745739927,5745739924],"tags":{"amenity":"parking","surface":"fine2"}},{"type":"way","id":650285088,"timestamp":"2021-01-29T09:37:56Z","version":2,"changeset":98352073,"user":"JosV","uid":170722,"nodes":[3645188881,6100803131,6100803130,6100803129,6100803124,6100803125,6100803128,6100803127,6100803126,3645188881],"tags":{"amenity":"parking","parking":"surface"}},{"type":"way","id":655944574,"timestamp":"2020-02-23T22:05:54Z","version":2,"changeset":81377451,"user":"L'imaginaire","uid":654234,"nodes":[6145151107,6145151108,6145151109,6145151115,6145151114,6145151110,6145151107],"tags":{"amenity":"parking"}},{"type":"way","id":664171069,"timestamp":"2019-01-17T16:29:08Z","version":1,"changeset":66400781,"user":"Nilsnn","uid":4652000,"nodes":[6216549610,6216549611,6216549612,6216549613,1413470849,1413470848,6216549605,6216549604,6216549610],"tags":{"amenity":"parking"}},{"type":"way","id":664171076,"timestamp":"2021-01-09T21:56:37Z","version":3,"changeset":97230316,"user":"JosV","uid":170722,"nodes":[6216549656,6216549655,8307316294,6216549661,6216549657,6216549658,6216549659,6216549660,6216549656],"tags":{"amenity":"parking","capacity":"50"}},{"type":"way","id":665330334,"timestamp":"2019-01-22T14:20:51Z","version":1,"changeset":66539354,"user":"Nilsnn","uid":4652000,"nodes":[6227395993,6227395991,6227395992,6227395997,6227395993],"tags":{"access":"yes","amenity":"parking","fee":"no","parking":"surface","surface":"asphalt"}},{"type":"way","id":684598363,"timestamp":"2020-03-07T14:21:22Z","version":3,"changeset":81900556,"user":"L'imaginaire","uid":654234,"nodes":[3227068565,6416001161,6414352054,6414352055,7274233390,7274233391,7274233397,7274233395,7274233396,6414352053,3227068568,3227068565],"tags":{"amenity":"parking","fee":"no"}},{"type":"way","id":684599810,"timestamp":"2020-12-31T20:58:28Z","version":3,"changeset":96751036,"user":"JosV","uid":170722,"nodes":[1317838331,8279842668,1384096112,1317838328,6414374315,3227068446,6414374316,6414374317,6414374318,3227068456,6414374319,6414374320,6414374321,1317838317,1317838331],"tags":{"access":"no","amenity":"parking","operator":"Politie"}},{"type":"way","id":761474468,"timestamp":"2021-01-05T21:32:23Z","version":3,"changeset":97006454,"user":"JosV","uid":170722,"nodes":[7114502201,7114502203,7114502200,7114502202,3170562439,3170562437,3170562431,7114502240,7114502211,7114502212,7114502214,7114502215,7114502228,7114502234,7114502235,7114502236,7114502237,7114502238,7114502239,7114502233,7114502232,7114502231,7114502229,7114502230,7114502227,7114502226,7114502225,7114502216,7114502217,7114502224,3170562392,7114502218,3170562394,7114502219,7114502220,7114502221,7114502222,7114502223,3170562395,3170562396,3170562397,3170562402,3170562410,7114502209,7114502208,7114502207,7114502205,7114502206,3170562436,1475188519,1475188516,6627605025,8294886142,7114502201],"tags":{"image":"http://valleivandezuidleie.be/wp-content/uploads/2011/12/2011-03-24_G12_088_1_1.JPG","leisure":"nature_reserve","name":"Merlebeek-Meerberg","natural":"wetland","operator":"Natuurpunt Vallei van de Zuidleie","start_date":"2011","website":"http://valleivandezuidleie.be/info-over-de-vallei-van-de-zuidleie/merlebeek/","wetland":"wet_meadow"}},{"type":"way","id":813859435,"timestamp":"2021-02-26T10:18:26Z","version":3,"changeset":100040879,"user":"s8evq","uid":3710738,"nodes":[7602479690,7459257985,7602479691,7459154784,7459154782,7602479692,5482441357,7602479693,7602479694,7602479695,7602479696,7602479690],"tags":{"access":"yes","image:0":"https://i.imgur.com/nb9nawa.jpg","landuse":"grass","leisure":"nature_reserve","name:signed":"no","natural":"grass","operator":"Natuurpunt Vallei van de Zuidleie"}},{"type":"way","id":826103452,"timestamp":"2020-07-14T09:05:14Z","version":1,"changeset":87965884,"user":"L'imaginaire","uid":654234,"nodes":[7713176912,7713176911,7713176910,7713176909,7713176912],"tags":{"amenity":"parking","parking":"surface"}},{"type":"way","id":893176022,"timestamp":"2021-01-07T23:02:07Z","version":1,"changeset":97133621,"user":"JosV","uid":170722,"nodes":[1927235214,8301349336,8301349335,8301349337,1927235214],"tags":{"amenity":"parking","parking":"surface"}},{"type":"way","id":895943476,"timestamp":"2021-01-16T17:56:50Z","version":1,"changeset":97614669,"user":"JosV","uid":170722,"nodes":[8328251887,8328251886,8328251885,8328251884,8328251887],"tags":{"amenity":"parking","parking":"surface"}},{"type":"way","id":895943477,"timestamp":"2021-01-16T17:56:50Z","version":1,"changeset":97614669,"user":"JosV","uid":170722,"nodes":[8328251891,8328251890,8328251889,8328251888,8328251891],"tags":{"amenity":"parking","parking":"surface"}},{"type":"way","id":895943478,"timestamp":"2021-01-16T17:56:50Z","version":1,"changeset":97614669,"user":"JosV","uid":170722,"nodes":[8328251895,8328251894,8328251893,8328251892,8328251895],"tags":{"amenity":"parking","parking":"surface"}},{"type":"way","id":895943479,"timestamp":"2021-01-16T17:56:50Z","version":1,"changeset":97614669,"user":"JosV","uid":170722,"nodes":[8328251897,8328251896,8328251901,8328251900,8328251897],"tags":{"amenity":"parking","parking":"surface"}},{"type":"way","id":895943480,"timestamp":"2021-01-16T17:56:50Z","version":1,"changeset":97614669,"user":"JosV","uid":170722,"nodes":[8328251898,8328251899,8328251903,8328251902,8328251898],"tags":{"amenity":"parking","parking":"surface"}},{"type":"way","id":895943481,"timestamp":"2021-01-16T17:56:50Z","version":1,"changeset":97614669,"user":"JosV","uid":170722,"nodes":[8328251907,8328251906,8328251905,8328251904,8328251907],"tags":{"amenity":"parking","parking":"surface"}},{"type":"way","id":895943482,"timestamp":"2021-01-16T17:56:50Z","version":1,"changeset":97614669,"user":"JosV","uid":170722,"nodes":[8328251911,8328251910,8328251909,8328251908,8328251911],"tags":{"amenity":"parking","parking":"surface"}},{"type":"way","id":901952767,"timestamp":"2021-01-30T12:19:15Z","version":1,"changeset":98412028,"user":"L'imaginaire","uid":654234,"nodes":[8378097127,8378097126,8378097125,8378097124,8378097127],"tags":{"amenity":"parking","parking":"street_side"}},{"type":"way","id":901952768,"timestamp":"2021-01-30T12:19:15Z","version":1,"changeset":98412028,"user":"L'imaginaire","uid":654234,"nodes":[8378097134,8378097133,8378097132,8378097131,8378097130,8378097129,8378097128,8378097134],"tags":{"amenity":"parking","parking":"street_side"}},{"type":"way","id":947325182,"timestamp":"2021-05-26T15:16:06Z","version":1,"changeset":105366812,"user":"L'imaginaire","uid":654234,"nodes":[8497007549,8768981525,8768981522,8768981524,8768981521,8768981523,8768981520,8768981519,6206789709,8768981533,8497007549],"tags":{"amenity":"parking","parking":"surface"}},{"type":"way","id":966827815,"timestamp":"2021-07-23T20:01:09Z","version":1,"changeset":108511361,"user":"L'imaginaire","uid":654234,"nodes":[8945026757,8945026756,8945026755,8945026754,8945026757],"tags":{"access":"customers","amenity":"parking","parking":"surface"}},{"type":"relation","id":2589413,"timestamp":"2021-03-06T15:13:01Z","version":7,"changeset":100540347,"user":"Pieter Vander Vennet","uid":3818858,"members":[{"type":"way","ref":663050030,"role":"outer"},{"type":"way","ref":184402334,"role":"outer"},{"type":"way","ref":184402332,"role":"outer"},{"type":"way","ref":184402325,"role":"outer"},{"type":"way","ref":184402326,"role":"outer"},{"type":"way","ref":314899865,"role":"outer"},{"type":"way","ref":314956402,"role":"outer"}],"tags":{"access":"yes","image":"https://i.imgur.com/Yu4qHh5.jpg","leisure":"nature_reserve","name":"Warandeputten","operator":"Natuurpunt Vallei van de Zuidleie","type":"multipolygon","wikipedia":"nl:Warandeputten"}},{"type":"relation","id":8782624,"timestamp":"2021-03-08T13:15:15Z","version":14,"changeset":100640534,"user":"M!dgard","uid":763799,"members":[{"type":"way","ref":315041273,"role":"outer"},{"type":"way","ref":631377343,"role":"outer"},{"type":"way","ref":631371237,"role":"outer"},{"type":"way","ref":631371236,"role":"outer"},{"type":"way","ref":631371234,"role":"outer"},{"type":"way","ref":631377344,"role":"outer"},{"type":"way","ref":631371232,"role":"outer"},{"type":"way","ref":631371231,"role":"outer"},{"type":"way","ref":315041263,"role":"outer"},{"type":"way","ref":631371228,"role":"outer"},{"type":"way","ref":631377341,"role":"outer"},{"type":"way","ref":315041261,"role":"outer"},{"type":"way","ref":631371223,"role":"outer"}],"tags":{"access":"yes","image:0":"https://i.imgur.com/VuzX5jW.jpg","image:1":"https://i.imgur.com/tPppmJG.jpg","image:2":"https://i.imgur.com/ecY3RER.jpg","image:3":"https://i.imgur.com/lr4FK6j.jpg","image:5":"https://i.imgur.com/uufEeE6.jpg","leisure":"nature_reserve","name":"Leiemeersen Noord","operator":"Natuurpunt Vallei van de Zuidleie","type":"multipolygon","website":"http://valleivandezuidleie.be/info-over-de-vallei-van-de-zuidleie/leiemeersen-noord/"}},{"type":"relation","id":8890076,"timestamp":"2020-07-18T15:56:50Z","version":6,"changeset":88179905,"user":"Pieter Vander Vennet","uid":3818858,"members":[{"type":"way","ref":640979982,"role":"outer"},{"type":"way","ref":640979978,"role":"outer"}],"tags":{"access":"yes","image:0":"https://i.imgur.com/SAAaKBH.jpg","image:1":"https://i.imgur.com/DGK9iBN.jpg","image:2":"https://i.imgur.com/bte1KJx.jpg","image:3":"https://i.imgur.com/f75Gxnx.jpg","leisure":"nature_reserve","name":"Gevaerts Noord","operator":"Natuurpunt Vallei van de Zuidleie","type":"multipolygon"}},{"type":"relation","id":9118029,"timestamp":"2020-07-11T12:04:16Z","version":4,"changeset":87852045,"user":"Pieter Vander Vennet","uid":3818858,"members":[{"type":"way","ref":606165130,"role":"outer"},{"type":"way","ref":655652319,"role":"outer"},{"type":"way","ref":655652321,"role":"outer"}],"tags":{"access":"no","image:0":"https://i.imgur.com/eBufo0v.jpg","image:1":"https://i.imgur.com/kBej2Nk.jpg","image:2":"https://i.imgur.com/QKoyIRl.jpg","leisure":"nature_reserve","name":"De Leiemeersen","note":"Door de hoge kwetsbaarheid van het gebied zijn De Leiemeersen enkel te bezoeken onder begeleiding van een gids","note:mapping":"NIET VOOR BEGINNENDE MAPPERS! Dit gebied is met relaties als multipolygonen gemapt (zo'n 50 stuks). Als je niet weet hoe dit werkt, vraag hulp.","note_1":"wetland=marsh is het veenmoerasgebied","operator":"Natuurpunt Vallei van de Zuidleie","type":"multipolygon","website":"http://valleivandezuidleie.be/info-over-de-vallei-van-de-zuidleie/leiemeersen/"}},{"type":"node","id":7114502229,"lat":51.1340508,"lon":3.2949303},{"type":"node","id":7114502231,"lat":51.1340428,"lon":3.2959613},{"type":"node","id":7114502232,"lat":51.134096,"lon":3.2971973},{"type":"node","id":1927235214,"lat":51.1267391,"lon":3.3222921},{"type":"node","id":8301349336,"lat":51.1266966,"lon":3.3223356},{"type":"node","id":1413470848,"lat":51.1276558,"lon":3.3278194},{"type":"node","id":1413470849,"lat":51.1276852,"lon":3.3274627},{"type":"node","id":6216549605,"lat":51.1276578,"lon":3.3279376},{"type":"node","id":6216549611,"lat":51.1277354,"lon":3.3273608},{"type":"node","id":6216549612,"lat":51.1277281,"lon":3.3274215},{"type":"node","id":6216549613,"lat":51.1277062,"lon":3.3274249},{"type":"node","id":8301349335,"lat":51.1269096,"lon":3.3228882},{"type":"node","id":8301349337,"lat":51.126955,"lon":3.3228466},{"type":"node","id":8328251884,"lat":51.1278701,"lon":3.3253392},{"type":"node","id":8328251885,"lat":51.127857,"lon":3.3254078},{"type":"node","id":8328251888,"lat":51.1278797,"lon":3.325168},{"type":"node","id":8328251889,"lat":51.1278665,"lon":3.3252369},{"type":"node","id":8328251892,"lat":51.1271569,"lon":3.3248958},{"type":"node","id":8328251893,"lat":51.1272208,"lon":3.3252329},{"type":"node","id":8328251894,"lat":51.1272677,"lon":3.3252111},{"type":"node","id":8328251895,"lat":51.1272033,"lon":3.3248728},{"type":"node","id":8328251896,"lat":51.1271015,"lon":3.3257575},{"type":"node","id":8328251897,"lat":51.1270872,"lon":3.3256877},{"type":"node","id":8328251898,"lat":51.1271271,"lon":3.325744},{"type":"node","id":8328251899,"lat":51.1271128,"lon":3.3256743},{"type":"node","id":8328251900,"lat":51.1270462,"lon":3.3257067},{"type":"node","id":8328251901,"lat":51.1270609,"lon":3.3257756},{"type":"node","id":8328251902,"lat":51.1272095,"lon":3.3257043},{"type":"node","id":8328251903,"lat":51.1271957,"lon":3.3256351},{"type":"node","id":8328251904,"lat":51.1269631,"lon":3.3253915},{"type":"node","id":8328251905,"lat":51.1269756,"lon":3.3254617},{"type":"node","id":8328251906,"lat":51.1271678,"lon":3.3253747},{"type":"node","id":8328251907,"lat":51.1271557,"lon":3.3253045},{"type":"node","id":8328251908,"lat":51.1270115,"lon":3.3255467},{"type":"node","id":8328251909,"lat":51.1270235,"lon":3.3256138},{"type":"node","id":8328251910,"lat":51.1271099,"lon":3.3255749},{"type":"node","id":8328251911,"lat":51.1270975,"lon":3.3255072},{"type":"node","id":2449323191,"lat":51.1340437,"lon":3.3216558},{"type":"node","id":2449323193,"lat":51.134285,"lon":3.3221086},{"type":"node","id":2449323198,"lat":51.1334724,"lon":3.3223472},{"type":"node","id":4350143592,"lat":51.1344661,"lon":3.3226292},{"type":"node","id":4732689626,"lat":51.1301038,"lon":3.3223672},{"type":"node","id":4732689627,"lat":51.1301351,"lon":3.3223533},{"type":"node","id":4732689628,"lat":51.130161,"lon":3.3224805},{"type":"node","id":4732689629,"lat":51.1301379,"lon":3.3224524},{"type":"node","id":4732689630,"lat":51.130151,"lon":3.3225204},{"type":"node","id":4732689631,"lat":51.1301375,"lon":3.3225274},{"type":"node","id":4732689632,"lat":51.1301505,"lon":3.322593},{"type":"node","id":4732689634,"lat":51.1297694,"lon":3.3223954},{"type":"node","id":4732689635,"lat":51.1298034,"lon":3.3223641},{"type":"node","id":4732689636,"lat":51.1297546,"lon":3.3221883},{"type":"node","id":4732689637,"lat":51.1297088,"lon":3.3219708},{"type":"node","id":4732689638,"lat":51.1297683,"lon":3.3219402},{"type":"node","id":4732689639,"lat":51.1297781,"lon":3.3219034},{"type":"node","id":4732689640,"lat":51.1297694,"lon":3.3218478},{"type":"node","id":4732689641,"lat":51.1300088,"lon":3.32173},{"type":"node","id":6794421027,"lat":51.1341852,"lon":3.3223337},{"type":"node","id":6794421042,"lat":51.1336271,"lon":3.3220973},{"type":"node","id":7962681614,"lat":51.1336656,"lon":3.322624},{"type":"node","id":7962681615,"lat":51.1335301,"lon":3.322287},{"type":"node","id":7962681616,"lat":51.1335065,"lon":3.3222317},{"type":"node","id":7962681619,"lat":51.134306,"lon":3.3222136},{"type":"node","id":7962681620,"lat":51.1343186,"lon":3.3221995},{"type":"node","id":7962681621,"lat":51.1341453,"lon":3.321775},{"type":"node","id":7962681622,"lat":51.1341537,"lon":3.321769},{"type":"node","id":7962681623,"lat":51.1341067,"lon":3.3216811},{"type":"node","id":7962681624,"lat":51.1340675,"lon":3.3217193},{"type":"node","id":8294875888,"lat":51.1300197,"lon":3.3219403},{"type":"node","id":8360787098,"lat":51.1344583,"lon":3.3225918},{"type":"node","id":2123461969,"lat":51.1336123,"lon":3.3226786},{"type":"node","id":4732689633,"lat":51.1298776,"lon":3.3227393},{"type":"node","id":6216549604,"lat":51.1280095,"lon":3.328024},{"type":"node","id":6216549610,"lat":51.128134,"lon":3.3274542},{"type":"node","id":6794421028,"lat":51.1343476,"lon":3.3227429},{"type":"node","id":6794421041,"lat":51.1337382,"lon":3.3227794},{"type":"node","id":8328251886,"lat":51.128048,"lon":3.3255015},{"type":"node","id":8328251887,"lat":51.1280616,"lon":3.3254329},{"type":"node","id":8328251890,"lat":51.1280791,"lon":3.3253407},{"type":"node","id":8328251891,"lat":51.1280922,"lon":3.3252721},{"type":"node","id":1623924235,"lat":51.131361,"lon":3.333018},{"type":"node","id":1623924236,"lat":51.1311039,"lon":3.3325764},{"type":"node","id":1623924238,"lat":51.1310489,"lon":3.3326527},{"type":"node","id":1623924241,"lat":51.1314273,"lon":3.3331479},{"type":"node","id":1864750831,"lat":51.1313615,"lon":3.3332222},{"type":"node","id":6216549655,"lat":51.134416,"lon":3.3347284},{"type":"node","id":6216549656,"lat":51.1343187,"lon":3.3349542},{"type":"node","id":6216549657,"lat":51.1334196,"lon":3.335723},{"type":"node","id":6216549658,"lat":51.1334902,"lon":3.3357377},{"type":"node","id":6216549659,"lat":51.133716,"lon":3.335546},{"type":"node","id":6216549660,"lat":51.133883,"lon":3.3353885},{"type":"node","id":6216549661,"lat":51.133662,"lon":3.3355049},{"type":"node","id":8307316294,"lat":51.1338503,"lon":3.3353095},{"type":"node","id":1493821422,"lat":51.1320567,"lon":3.3398517},{"type":"node","id":1493821433,"lat":51.1316132,"lon":3.3408892},{"type":"node","id":1553169836,"lat":51.1311998,"lon":3.3415993},{"type":"node","id":3185248088,"lat":51.1323359,"lon":3.3389757},{"type":"node","id":7727339364,"lat":51.1321819,"lon":3.3388758},{"type":"node","id":7727339365,"lat":51.1319823,"lon":3.339559},{"type":"node","id":7727339366,"lat":51.1316011,"lon":3.3405485},{"type":"node","id":7727339367,"lat":51.1312764,"lon":3.3411848},{"type":"node","id":7727339368,"lat":51.1310889,"lon":3.3414676},{"type":"node","id":7727339369,"lat":51.1304838,"lon":3.3422395},{"type":"node","id":3185248048,"lat":51.1268693,"lon":3.3480331},{"type":"node","id":3185248049,"lat":51.1269831,"lon":3.3475504},{"type":"node","id":7727339376,"lat":51.1274147,"lon":3.3464515},{"type":"node","id":7727339377,"lat":51.1271283,"lon":3.3469817},{"type":"node","id":3185248040,"lat":51.1266778,"lon":3.3491476},{"type":"node","id":3185248042,"lat":51.126712,"lon":3.3489485},{"type":"node","id":7468171404,"lat":51.1277325,"lon":3.3553578},{"type":"node","id":7468171430,"lat":51.1270326,"lon":3.353594},{"type":"node","id":7468171432,"lat":51.1271802,"lon":3.3540454},{"type":"node","id":7468171438,"lat":51.1268064,"lon":3.3526001},{"type":"node","id":7468171442,"lat":51.1268303,"lon":3.3527746},{"type":"node","id":7468171446,"lat":51.1273659,"lon":3.3546333},{"type":"node","id":7727339378,"lat":51.1265656,"lon":3.3505324},{"type":"node","id":7727339379,"lat":51.1266463,"lon":3.350873},{"type":"node","id":7727339380,"lat":51.1266302,"lon":3.3514032},{"type":"node","id":7727339381,"lat":51.1267774,"lon":3.3523929},{"type":"node","id":7727393190,"lat":51.1276264,"lon":3.3489611},{"type":"node","id":7727393191,"lat":51.1274853,"lon":3.3497484},{"type":"node","id":7727393192,"lat":51.127332,"lon":3.350571},{"type":"node","id":7727393193,"lat":51.1273663,"lon":3.3514386},{"type":"node","id":7727393194,"lat":51.1274853,"lon":3.3519206},{"type":"node","id":7727393195,"lat":51.1276889,"lon":3.3531674},{"type":"node","id":1553169911,"lat":51.1313314,"lon":3.3425771},{"type":"node","id":7727339370,"lat":51.1300705,"lon":3.3427304},{"type":"node","id":7727339371,"lat":51.1293083,"lon":3.343643},{"type":"node","id":7727339372,"lat":51.1285642,"lon":3.3445074},{"type":"node","id":7727339373,"lat":51.1285702,"lon":3.3445781},{"type":"node","id":7727339374,"lat":51.1283181,"lon":3.3448801},{"type":"node","id":7727339375,"lat":51.1281023,"lon":3.3451404},{"type":"node","id":7727339382,"lat":51.1311196,"lon":3.3430952},{"type":"node","id":7727339383,"lat":51.1309343,"lon":3.3434996},{"type":"node","id":7727339384,"lat":51.1306234,"lon":3.343745},{"type":"node","id":7727393185,"lat":51.1300873,"lon":3.3443449},{"type":"node","id":7727393186,"lat":51.129401,"lon":3.3453846},{"type":"node","id":7727393187,"lat":51.1290865,"lon":3.345963},{"type":"node","id":7727393188,"lat":51.1285581,"lon":3.3468788},{"type":"node","id":7727393189,"lat":51.1280217,"lon":3.3479457},{"type":"node","id":7390697549,"lat":51.128429,"lon":3.354427},{"type":"node","id":7727393196,"lat":51.1279813,"lon":3.353749},{"type":"node","id":3209560114,"lat":51.1538874,"lon":3.2531858},{"type":"node","id":3209560115,"lat":51.1539649,"lon":3.2531836},{"type":"node","id":3209560116,"lat":51.1541197,"lon":3.2537986},{"type":"node","id":3209560117,"lat":51.1541021,"lon":3.253149},{"type":"node","id":3210389695,"lat":51.1539646,"lon":3.2534427},{"type":"node","id":416917618,"lat":51.1565737,"lon":3.2549365},{"type":"node","id":668981667,"lat":51.1576026,"lon":3.2555383},{"type":"node","id":668981668,"lat":51.1564046,"lon":3.2547045},{"type":"node","id":1815081998,"lat":51.1575578,"lon":3.2555439},{"type":"node","id":1948835662,"lat":51.155957,"lon":3.2562889},{"type":"node","id":1948835742,"lat":51.156182,"lon":3.2540291},{"type":"node","id":1948835950,"lat":51.1591027,"lon":3.2559292},{"type":"node","id":1948836096,"lat":51.1600831,"lon":3.2562989},{"type":"node","id":1948836149,"lat":51.1605378,"lon":3.2568906},{"type":"node","id":2026541837,"lat":51.1543652,"lon":3.2542901},{"type":"node","id":2026541841,"lat":51.1545903,"lon":3.2546809},{"type":"node","id":2026541843,"lat":51.1548384,"lon":3.2550342},{"type":"node","id":2026541846,"lat":51.155086,"lon":3.2553429},{"type":"node","id":2026541851,"lat":51.15565,"lon":3.2542965},{"type":"node","id":3209560118,"lat":51.1542244,"lon":3.2530815},{"type":"node","id":3209560119,"lat":51.1544741,"lon":3.252803},{"type":"node","id":3209560121,"lat":51.1546028,"lon":3.2526667},{"type":"node","id":3209560124,"lat":51.1547447,"lon":3.2525904},{"type":"node","id":3209560126,"lat":51.1550296,"lon":3.2525253},{"type":"node","id":3209560127,"lat":51.1551915,"lon":3.2525297},{"type":"node","id":3209560131,"lat":51.1553436,"lon":3.2525627},{"type":"node","id":3209560132,"lat":51.1554055,"lon":3.2526006},{"type":"node","id":3209560134,"lat":51.155479,"lon":3.2526651},{"type":"node","id":3209560135,"lat":51.155558,"lon":3.2527647},{"type":"node","id":3209560136,"lat":51.1556482,"lon":3.2528805},{"type":"node","id":3209560138,"lat":51.1559652,"lon":3.2534517},{"type":"node","id":3209560139,"lat":51.1560327,"lon":3.2535705},{"type":"node","id":5417515520,"lat":51.1545998,"lon":3.2545767},{"type":"node","id":5417516021,"lat":51.1545476,"lon":3.2544989},{"type":"node","id":5417516022,"lat":51.1545856,"lon":3.2544342},{"type":"node","id":5417516023,"lat":51.1546378,"lon":3.2545119},{"type":"node","id":6206789688,"lat":51.1553578,"lon":3.255668},{"type":"node","id":416917603,"lat":51.1591104,"lon":3.2595563},{"type":"node","id":416917605,"lat":51.1592829,"lon":3.2591123},{"type":"node","id":416917609,"lat":51.1597764,"lon":3.2597849},{"type":"node","id":1554514806,"lat":51.1586314,"lon":3.2636074},{"type":"node","id":1948835842,"lat":51.1570345,"lon":3.2574053},{"type":"node","id":1948835900,"lat":51.1583428,"lon":3.258761},{"type":"node","id":1948835986,"lat":51.1595419,"lon":3.2593891},{"type":"node","id":1948836023,"lat":51.1597284,"lon":3.2585312},{"type":"node","id":1948836025,"lat":51.1597477,"lon":3.2585581},{"type":"node","id":1948836029,"lat":51.1597506,"lon":3.2584887},{"type":"node","id":1948836032,"lat":51.159778,"lon":3.2585905},{"type":"node","id":1948836038,"lat":51.1597992,"lon":3.2585462},{"type":"node","id":1948836068,"lat":51.1598265,"lon":3.2595499},{"type":"node","id":1948836072,"lat":51.1598725,"lon":3.2596329},{"type":"node","id":1948836093,"lat":51.1600505,"lon":3.2592835},{"type":"node","id":1948836104,"lat":51.1601026,"lon":3.2593298},{"type":"node","id":1948836189,"lat":51.1606847,"lon":3.2577063},{"type":"node","id":5745739926,"lat":51.160615,"lon":3.2602336},{"type":"node","id":5747937642,"lat":51.1580603,"lon":3.2636348},{"type":"node","id":5962340003,"lat":51.1587851,"lon":3.2632739},{"type":"node","id":5962414276,"lat":51.158949,"lon":3.2635109},{"type":"node","id":5962415498,"lat":51.1589617,"lon":3.2635523},{"type":"node","id":5962415499,"lat":51.1589623,"lon":3.2635339},{"type":"node","id":5962415500,"lat":51.1589568,"lon":3.2635203},{"type":"node","id":5962415538,"lat":51.1589195,"lon":3.2636407},{"type":"node","id":6206789709,"lat":51.1545829,"lon":3.2585784},{"type":"node","id":8497007481,"lat":51.1588349,"lon":3.2633671},{"type":"node","id":8497007549,"lat":51.1548977,"lon":3.257909},{"type":"node","id":8768981519,"lat":51.1545715,"lon":3.2585859},{"type":"node","id":8768981520,"lat":51.1544691,"lon":3.2584642},{"type":"node","id":8768981521,"lat":51.1543652,"lon":3.2584253},{"type":"node","id":8768981522,"lat":51.1543648,"lon":3.2583401},{"type":"node","id":8768981523,"lat":51.1544439,"lon":3.2585178},{"type":"node","id":8768981524,"lat":51.1543892,"lon":3.258369},{"type":"node","id":8768981525,"lat":51.1547185,"lon":3.2575482},{"type":"node","id":8768981533,"lat":51.1545902,"lon":3.2585725},{"type":"node","id":3162627482,"lat":51.1513402,"lon":3.2701364},{"type":"node","id":3162627509,"lat":51.1517878,"lon":3.2696503},{"type":"node","id":5745963944,"lat":51.1524768,"lon":3.2700312},{"type":"node","id":5745963946,"lat":51.1519527,"lon":3.2698278},{"type":"node","id":5745963947,"lat":51.1513495,"lon":3.2697903},{"type":"node","id":5747937657,"lat":51.1538472,"lon":3.269262},{"type":"node","id":5747937658,"lat":51.1536592,"lon":3.2698471},{"type":"node","id":5747937668,"lat":51.1514068,"lon":3.2699149},{"type":"node","id":5747937669,"lat":51.1514278,"lon":3.26999},{"type":"node","id":5747937670,"lat":51.1514329,"lon":3.2701134},{"type":"node","id":5747937671,"lat":51.1514387,"lon":3.2702207},{"type":"node","id":5747937672,"lat":51.1515532,"lon":3.2702006},{"type":"node","id":5747937673,"lat":51.1515986,"lon":3.2701456},{"type":"node","id":5747937674,"lat":51.151872,"lon":3.2701201},{"type":"node","id":6142725039,"lat":51.1513841,"lon":3.2701799},{"type":"node","id":6142725060,"lat":51.1499168,"lon":3.2700268},{"type":"node","id":6142725061,"lat":51.1497438,"lon":3.2697269},{"type":"node","id":6142725064,"lat":51.1499256,"lon":3.2692437},{"type":"node","id":6142727594,"lat":51.1500369,"lon":3.2694178},{"type":"node","id":6142727597,"lat":51.1513713,"lon":3.2701053},{"type":"node","id":6143075014,"lat":51.1512852,"lon":3.2702041},{"type":"node","id":1554514655,"lat":51.1533288,"lon":3.2766885},{"type":"node","id":1554514811,"lat":51.1537898,"lon":3.2754789},{"type":"node","id":3211247019,"lat":51.1538788,"lon":3.2763248},{"type":"node","id":3211247021,"lat":51.1538471,"lon":3.2764673},{"type":"node","id":5745963922,"lat":51.1499683,"lon":3.2708447},{"type":"node","id":5745963942,"lat":51.1530892,"lon":3.2704581},{"type":"node","id":5745963943,"lat":51.1529125,"lon":3.2703349},{"type":"node","id":5747535101,"lat":51.1533021,"lon":3.2705247},{"type":"node","id":5747937659,"lat":51.1534063,"lon":3.2705828},{"type":"node","id":5747937675,"lat":51.1521092,"lon":3.2702998},{"type":"node","id":5747937676,"lat":51.1524591,"lon":3.2704822},{"type":"node","id":5747937677,"lat":51.1527839,"lon":3.2706727},{"type":"node","id":5747937678,"lat":51.1529841,"lon":3.2707276},{"type":"node","id":5747937679,"lat":51.15326,"lon":3.2708913},{"type":"node","id":5747937680,"lat":51.1535477,"lon":3.2712989},{"type":"node","id":5747937681,"lat":51.1536831,"lon":3.2717402},{"type":"node","id":5747937682,"lat":51.1536839,"lon":3.2721747},{"type":"node","id":5747937683,"lat":51.1536469,"lon":3.2724161},{"type":"node","id":5747937684,"lat":51.1534635,"lon":3.2730652},{"type":"node","id":5747937685,"lat":51.1540625,"lon":3.2735735},{"type":"node","id":5962339921,"lat":51.1535454,"lon":3.2761201},{"type":"node","id":5962496725,"lat":51.1538672,"lon":3.276374},{"type":"node","id":6142725040,"lat":51.1514014,"lon":3.2704388},{"type":"node","id":6142725041,"lat":51.1514255,"lon":3.2722713},{"type":"node","id":6142725042,"lat":51.1514044,"lon":3.2722821},{"type":"node","id":6142725043,"lat":51.1513617,"lon":3.2722639},{"type":"node","id":6142725044,"lat":51.1513141,"lon":3.2722165},{"type":"node","id":6142725045,"lat":51.1512346,"lon":3.2721372},{"type":"node","id":6142725046,"lat":51.1511314,"lon":3.2720304},{"type":"node","id":6142725047,"lat":51.1509926,"lon":3.2718816},{"type":"node","id":6142725048,"lat":51.1508222,"lon":3.2716946},{"type":"node","id":6142725049,"lat":51.1507329,"lon":3.2715909},{"type":"node","id":6142725050,"lat":51.1506561,"lon":3.2714915},{"type":"node","id":6142725051,"lat":51.1506027,"lon":3.2714102},{"type":"node","id":6142725052,"lat":51.1505293,"lon":3.2712712},{"type":"node","id":6142725053,"lat":51.1504912,"lon":3.2711826},{"type":"node","id":6142725054,"lat":51.1504464,"lon":3.2710615},{"type":"node","id":6142725055,"lat":51.1503588,"lon":3.2707712},{"type":"node","id":6142725056,"lat":51.1503432,"lon":3.2707336},{"type":"node","id":6142725057,"lat":51.1503035,"lon":3.2706647},{"type":"node","id":6142725058,"lat":51.1501763,"lon":3.2704663},{"type":"node","id":6142725059,"lat":51.1500465,"lon":3.270256},{"type":"node","id":6142725065,"lat":51.1511856,"lon":3.2703268},{"type":"node","id":6142725066,"lat":51.1510244,"lon":3.2705705},{"type":"node","id":6142725067,"lat":51.1509355,"lon":3.270823},{"type":"node","id":6142725074,"lat":51.149723,"lon":3.271666},{"type":"node","id":6142725076,"lat":51.1498322,"lon":3.2716555},{"type":"node","id":6142725077,"lat":51.1499403,"lon":3.2715209},{"type":"node","id":6142725078,"lat":51.1500262,"lon":3.2714548},{"type":"node","id":6142725079,"lat":51.1501462,"lon":3.2714359},{"type":"node","id":6142725080,"lat":51.1502306,"lon":3.2714572},{"type":"node","id":6142725081,"lat":51.1502676,"lon":3.2714288},{"type":"node","id":6142725084,"lat":51.1496118,"lon":3.2714056},{"type":"node","id":6142727585,"lat":51.1497709,"lon":3.271258},{"type":"node","id":6142727586,"lat":51.1496767,"lon":3.2713056},{"type":"node","id":6142727587,"lat":51.1498468,"lon":3.2711798},{"type":"node","id":6142727588,"lat":51.1500514,"lon":3.2703954},{"type":"node","id":6142727589,"lat":51.1503033,"lon":3.270777},{"type":"node","id":6142727590,"lat":51.1503141,"lon":3.2713705},{"type":"node","id":6142727591,"lat":51.1498992,"lon":3.2710354},{"type":"node","id":6142727592,"lat":51.1499461,"lon":3.270906},{"type":"node","id":6142727595,"lat":51.1505973,"lon":3.2702942},{"type":"node","id":6142727596,"lat":51.1508515,"lon":3.2706917},{"type":"node","id":6142727598,"lat":51.1504337,"lon":3.2712326},{"type":"node","id":6143074993,"lat":51.1501845,"lon":3.2706959},{"type":"node","id":6143075018,"lat":51.1508744,"lon":3.2707275},{"type":"node","id":8638721230,"lat":51.151458,"lon":3.2721756},{"type":"node","id":8638721239,"lat":51.1514715,"lon":3.2719839},{"type":"node","id":1554514618,"lat":51.1581789,"lon":3.2646401},{"type":"node","id":1554514658,"lat":51.1578742,"lon":3.2653982},{"type":"node","id":1554514750,"lat":51.1568056,"lon":3.2677508},{"type":"node","id":1554514755,"lat":51.1573435,"lon":3.2665694},{"type":"node","id":1554514831,"lat":51.1561729,"lon":3.2691965},{"type":"node","id":3211247042,"lat":51.1557516,"lon":3.2701591},{"type":"node","id":3211247054,"lat":51.1570321,"lon":3.2690614},{"type":"node","id":3211247058,"lat":51.1571866,"lon":3.2685962},{"type":"node","id":3211247059,"lat":51.1572111,"lon":3.2673633},{"type":"node","id":3211247060,"lat":51.1572915,"lon":3.2701354},{"type":"node","id":3211247261,"lat":51.157332,"lon":3.2685775},{"type":"node","id":3211247265,"lat":51.1575267,"lon":3.2694937},{"type":"node","id":3211247266,"lat":51.1576636,"lon":3.2677588},{"type":"node","id":3211247291,"lat":51.15873,"lon":3.2640973},{"type":"node","id":3211247328,"lat":51.1594831,"lon":3.2648765},{"type":"node","id":3211247331,"lat":51.1596428,"lon":3.2643669},{"type":"node","id":5747937641,"lat":51.1581621,"lon":3.2637783},{"type":"node","id":5747937643,"lat":51.1576288,"lon":3.2640519},{"type":"node","id":5747937644,"lat":51.1572672,"lon":3.2645347},{"type":"node","id":5747937645,"lat":51.1568533,"lon":3.2650349},{"type":"node","id":5747937646,"lat":51.1564933,"lon":3.2652213},{"type":"node","id":5747937647,"lat":51.1562275,"lon":3.2654708},{"type":"node","id":5747937648,"lat":51.1560046,"lon":3.2656894},{"type":"node","id":5747937649,"lat":51.1556867,"lon":3.2659965},{"type":"node","id":5747937650,"lat":51.1551778,"lon":3.2664082},{"type":"node","id":5747937651,"lat":51.1550608,"lon":3.2664739},{"type":"node","id":5747937652,"lat":51.1547446,"lon":3.2666805},{"type":"node","id":5747937653,"lat":51.1546747,"lon":3.2667583},{"type":"node","id":5747937654,"lat":51.1546066,"lon":3.266895},{"type":"node","id":5747937655,"lat":51.1544363,"lon":3.2672456},{"type":"node","id":5747937656,"lat":51.1543612,"lon":3.2677126},{"type":"node","id":5747937688,"lat":51.1553145,"lon":3.2701637},{"type":"node","id":5747937689,"lat":51.1564724,"lon":3.2675566},{"type":"node","id":5747937690,"lat":51.1580352,"lon":3.2640939},{"type":"node","id":5747937691,"lat":51.1581075,"lon":3.2639222},{"type":"node","id":5962338038,"lat":51.1580663,"lon":3.2649607},{"type":"node","id":5962340009,"lat":51.1585904,"lon":3.2644244},{"type":"node","id":5962340010,"lat":51.1579212,"lon":3.2658517},{"type":"node","id":5962340011,"lat":51.1575197,"lon":3.2676156},{"type":"node","id":5962340012,"lat":51.1573374,"lon":3.2674543},{"type":"node","id":5962340013,"lat":51.1574265,"lon":3.2698457},{"type":"node","id":5962415543,"lat":51.1591427,"lon":3.2638615},{"type":"node","id":5962415564,"lat":51.1563757,"lon":3.269274},{"type":"node","id":5962444841,"lat":51.1584746,"lon":3.2639653},{"type":"node","id":5962444846,"lat":51.1585428,"lon":3.2645259},{"type":"node","id":5962444849,"lat":51.1586783,"lon":3.2642185},{"type":"node","id":5962444850,"lat":51.1586559,"lon":3.2642708},{"type":"node","id":5962496715,"lat":51.1577157,"lon":3.2657479},{"type":"node","id":5962496718,"lat":51.1572172,"lon":3.2685923},{"type":"node","id":5962496719,"lat":51.1571618,"lon":3.2686709},{"type":"node","id":1554514640,"lat":51.1556541,"lon":3.2703864},{"type":"node","id":1554514735,"lat":51.1546949,"lon":3.273022},{"type":"node","id":1554514739,"lat":51.1552715,"lon":3.271391},{"type":"node","id":1554514744,"lat":51.154165,"lon":3.2744194},{"type":"node","id":3211247024,"lat":51.1541505,"lon":3.2756042},{"type":"node","id":3211247029,"lat":51.154764,"lon":3.2739293},{"type":"node","id":3211247032,"lat":51.1550284,"lon":3.2731777},{"type":"node","id":3211247034,"lat":51.1553184,"lon":3.2723493},{"type":"node","id":3211247036,"lat":51.1554324,"lon":3.2715569},{"type":"node","id":3211247037,"lat":51.1555577,"lon":3.2717139},{"type":"node","id":3211247039,"lat":51.1556614,"lon":3.2709968},{"type":"node","id":5747937686,"lat":51.1543123,"lon":3.272868},{"type":"node","id":5747937687,"lat":51.1551484,"lon":3.2706069},{"type":"node","id":5962415565,"lat":51.1558985,"lon":3.2703959},{"type":"node","id":3170562436,"lat":51.138924,"lon":3.2898032},{"type":"node","id":7114502205,"lat":51.1385818,"lon":3.2899019},{"type":"node","id":7114502206,"lat":51.1387244,"lon":3.289738},{"type":"node","id":1475188516,"lat":51.1392568,"lon":3.2899836},{"type":"node","id":1475188519,"lat":51.1391868,"lon":3.2900136},{"type":"node","id":3170562392,"lat":51.1364433,"lon":3.2910119},{"type":"node","id":3170562394,"lat":51.1368907,"lon":3.291708},{"type":"node","id":3170562395,"lat":51.137106,"lon":3.2924864},{"type":"node","id":3170562396,"lat":51.137265,"lon":3.2919875},{"type":"node","id":3170562397,"lat":51.1374825,"lon":3.2913695},{"type":"node","id":3170562402,"lat":51.1378658,"lon":3.2906394},{"type":"node","id":3170562410,"lat":51.1378512,"lon":3.2905949},{"type":"node","id":3170562431,"lat":51.138431,"lon":3.2910415},{"type":"node","id":3170562437,"lat":51.1389596,"lon":3.2905649},{"type":"node","id":3170562439,"lat":51.1391839,"lon":3.2903042},{"type":"node","id":6627605025,"lat":51.1393014,"lon":3.2899729},{"type":"node","id":7114502200,"lat":51.139377,"lon":3.2901873},{"type":"node","id":7114502201,"lat":51.1395801,"lon":3.2901445},{"type":"node","id":7114502202,"lat":51.1393183,"lon":3.290151},{"type":"node","id":7114502203,"lat":51.1395636,"lon":3.2902055},{"type":"node","id":7114502207,"lat":51.13835,"lon":3.2901225},{"type":"node","id":7114502208,"lat":51.138259,"lon":3.2902362},{"type":"node","id":7114502209,"lat":51.1381351,"lon":3.2903372},{"type":"node","id":7114502211,"lat":51.1376987,"lon":3.2921954},{"type":"node","id":7114502212,"lat":51.1373598,"lon":3.2927952},{"type":"node","id":7114502214,"lat":51.1364782,"lon":3.2933157},{"type":"node","id":7114502215,"lat":51.1356558,"lon":3.2938122},{"type":"node","id":7114502216,"lat":51.1364577,"lon":3.2922382},{"type":"node","id":7114502217,"lat":51.1365055,"lon":3.2917901},{"type":"node","id":7114502218,"lat":51.1369977,"lon":3.2911659},{"type":"node","id":7114502219,"lat":51.1367691,"lon":3.2924051},{"type":"node","id":7114502220,"lat":51.1367022,"lon":3.2927526},{"type":"node","id":7114502221,"lat":51.1367354,"lon":3.2929091},{"type":"node","id":7114502222,"lat":51.1367962,"lon":3.2930156},{"type":"node","id":7114502223,"lat":51.1369436,"lon":3.2928838},{"type":"node","id":7114502224,"lat":51.1365124,"lon":3.2914123},{"type":"node","id":7114502225,"lat":51.135804,"lon":3.2926995},{"type":"node","id":7114502226,"lat":51.1354385,"lon":3.2929897},{"type":"node","id":7114502227,"lat":51.135128,"lon":3.2935318},{"type":"node","id":7114502228,"lat":51.1352851,"lon":3.2947114},{"type":"node","id":7114502230,"lat":51.135254,"lon":3.2946241},{"type":"node","id":7114502234,"lat":51.1354035,"lon":3.2959064},{"type":"node","id":7114502235,"lat":51.1362234,"lon":3.2955042},{"type":"node","id":7114502236,"lat":51.1362859,"lon":3.2964578},{"type":"node","id":7114502240,"lat":51.1379417,"lon":3.2917937},{"type":"node","id":8294886142,"lat":51.1394294,"lon":3.290127},{"type":"node","id":7114502233,"lat":51.1354361,"lon":3.2966386},{"type":"node","id":7114502237,"lat":51.1362025,"lon":3.2964851},{"type":"node","id":7114502238,"lat":51.1362303,"lon":3.2969415},{"type":"node","id":7114502239,"lat":51.1355032,"lon":3.297292},{"type":"node","id":1494027348,"lat":51.1419125,"lon":3.3028989},{"type":"node","id":1494027349,"lat":51.1419929,"lon":3.3024731},{"type":"node","id":1951759298,"lat":51.1421456,"lon":3.3024503},{"type":"node","id":6037556099,"lat":51.1420961,"lon":3.3023333},{"type":"node","id":6037556100,"lat":51.142124,"lon":3.302398},{"type":"node","id":6037556101,"lat":51.1421476,"lon":3.3023664},{"type":"node","id":6037556102,"lat":51.1421686,"lon":3.3023966},{"type":"node","id":6037556103,"lat":51.1421392,"lon":3.3024395},{"type":"node","id":6037556104,"lat":51.1419363,"lon":3.3027154},{"type":"node","id":6037556128,"lat":51.1421612,"lon":3.3024776},{"type":"node","id":6037556129,"lat":51.1421598,"lon":3.3025191},{"type":"node","id":1554514647,"lat":51.1510862,"lon":3.2830051},{"type":"node","id":1554514679,"lat":51.1528746,"lon":3.2778124},{"type":"node","id":1554514683,"lat":51.152459,"lon":3.2789175},{"type":"node","id":1554514730,"lat":51.1514294,"lon":3.2817821},{"type":"node","id":1554514747,"lat":51.1515758,"lon":3.2812966},{"type":"node","id":1554514765,"lat":51.1518248,"lon":3.2805268},{"type":"node","id":1554514773,"lat":51.15167,"lon":3.280964},{"type":"node","id":1554514775,"lat":51.1517205,"lon":3.2808218},{"type":"node","id":3211246555,"lat":51.1516922,"lon":3.2825734},{"type":"node","id":3211246995,"lat":51.1531241,"lon":3.2787307},{"type":"node","id":3211246997,"lat":51.1532256,"lon":3.2781298},{"type":"node","id":3211247004,"lat":51.1532551,"lon":3.2780324},{"type":"node","id":3211247008,"lat":51.1532769,"lon":3.2780262},{"type":"node","id":3211247010,"lat":51.1533547,"lon":3.2780182},{"type":"node","id":3211247013,"lat":51.1534072,"lon":3.2778679},{"type":"node","id":5962338069,"lat":51.1531224,"lon":3.2785269},{"type":"node","id":5962338070,"lat":51.1532454,"lon":3.2781435},{"type":"node","id":5962338071,"lat":51.1531839,"lon":3.2785716},{"type":"node","id":9284562682,"lat":51.153154,"lon":3.2784189},{"type":"node","id":1554514649,"lat":51.1502146,"lon":3.285505},{"type":"node","id":1554514661,"lat":51.1499067,"lon":3.2861781},{"type":"node","id":1554514682,"lat":51.150038,"lon":3.2859179},{"type":"node","id":1554514693,"lat":51.1498077,"lon":3.2862946},{"type":"node","id":1554514703,"lat":51.1497368,"lon":3.2863685},{"type":"node","id":1554514726,"lat":51.1498748,"lon":3.2862129},{"type":"node","id":1554514783,"lat":51.1497118,"lon":3.2864368},{"type":"node","id":1554514787,"lat":51.1499524,"lon":3.2860908},{"type":"node","id":1554514789,"lat":51.1506254,"lon":3.2845029},{"type":"node","id":3203029856,"lat":51.1498994,"lon":3.2867119},{"type":"node","id":3211246542,"lat":51.1505988,"lon":3.2851597},{"type":"node","id":5482441357,"lat":51.1504615,"lon":3.2836968},{"type":"node","id":7459154782,"lat":51.1501541,"lon":3.2834044},{"type":"node","id":7459154784,"lat":51.14999,"lon":3.2838049},{"type":"node","id":7459257985,"lat":51.1496077,"lon":3.2846412},{"type":"node","id":7602479690,"lat":51.150018,"lon":3.2848987},{"type":"node","id":7602479691,"lat":51.149806,"lon":3.2842251},{"type":"node","id":7602479692,"lat":51.1504686,"lon":3.2836785},{"type":"node","id":7602479693,"lat":51.1504309,"lon":3.2838118},{"type":"node","id":7602479694,"lat":51.1504255,"lon":3.2838072},{"type":"node","id":7602479695,"lat":51.1503423,"lon":3.2840392},{"type":"node","id":7602479696,"lat":51.1501698,"lon":3.2845196},{"type":"node","id":7727406921,"lat":51.1497539,"lon":3.2864986},{"type":"node","id":8945026754,"lat":51.1518736,"lon":3.2973911},{"type":"node","id":8945026755,"lat":51.1521646,"lon":3.297599},{"type":"node","id":8945026756,"lat":51.1522042,"lon":3.2974333},{"type":"node","id":8945026757,"lat":51.1519287,"lon":3.2972449},{"type":"node","id":416917612,"lat":51.1610842,"lon":3.2579973},{"type":"node","id":1948836192,"lat":51.1607104,"lon":3.2576119},{"type":"node","id":1948836193,"lat":51.1607138,"lon":3.2577265},{"type":"node","id":1948836194,"lat":51.1607261,"lon":3.2576817},{"type":"node","id":1948836195,"lat":51.1607396,"lon":3.2576322},{"type":"node","id":1948836202,"lat":51.1608376,"lon":3.2582648},{"type":"node","id":1948836209,"lat":51.1608764,"lon":3.2583297},{"type":"node","id":1948836218,"lat":51.1609914,"lon":3.2580679},{"type":"node","id":1948836237,"lat":51.1610295,"lon":3.2581432},{"type":"node","id":1948836277,"lat":51.1610699,"lon":3.2580833},{"type":"node","id":5349884600,"lat":51.1623355,"lon":3.2627383},{"type":"node","id":5349884601,"lat":51.1621681,"lon":3.2630327},{"type":"node","id":5349884602,"lat":51.1622043,"lon":3.2630816},{"type":"node","id":5349884603,"lat":51.162375,"lon":3.2627913},{"type":"node","id":5349884604,"lat":51.1622594,"lon":3.2633478},{"type":"node","id":5349884605,"lat":51.1621955,"lon":3.2632528},{"type":"node","id":5349884606,"lat":51.1623824,"lon":3.2629335},{"type":"node","id":5349884607,"lat":51.1624462,"lon":3.2630285},{"type":"node","id":5745739924,"lat":51.1608677,"lon":3.2604028},{"type":"node","id":5745739925,"lat":51.160749,"lon":3.2605301},{"type":"node","id":5745739927,"lat":51.160719,"lon":3.2600865},{"type":"node","id":1494027341,"lat":51.1418334,"lon":3.3035292},{"type":"node","id":1494027359,"lat":51.1413757,"lon":3.3074828},{"type":"node","id":1494027374,"lat":51.14132,"lon":3.3086261},{"type":"node","id":1494027376,"lat":51.1415625,"lon":3.3055864},{"type":"node","id":1494027385,"lat":51.1414514,"lon":3.3065628},{"type":"node","id":1494027386,"lat":51.1416927,"lon":3.3044972},{"type":"node","id":1494027389,"lat":51.1412677,"lon":3.3093509},{"type":"node","id":6037556130,"lat":51.1420599,"lon":3.303249},{"type":"node","id":6037556131,"lat":51.1419859,"lon":3.3038109},{"type":"node","id":6037556132,"lat":51.1418857,"lon":3.3046747},{"type":"node","id":6037556133,"lat":51.1418916,"lon":3.3050562},{"type":"node","id":6037556134,"lat":51.141927,"lon":3.3054665},{"type":"node","id":6037556135,"lat":51.1419362,"lon":3.3056543},{"type":"node","id":6037556136,"lat":51.1419369,"lon":3.3060001},{"type":"node","id":6037556137,"lat":51.1419328,"lon":3.3061768},{"type":"node","id":6037556138,"lat":51.1419139,"lon":3.3062337},{"type":"node","id":6037556139,"lat":51.1419032,"lon":3.3062932},{"type":"node","id":6037556140,"lat":51.1419001,"lon":3.3065944},{"type":"node","id":6037556141,"lat":51.1419262,"lon":3.3066872},{"type":"node","id":6037556142,"lat":51.1419119,"lon":3.3074563},{"type":"node","id":6037556143,"lat":51.1419027,"lon":3.3079359},{"type":"node","id":6037556144,"lat":51.1418924,"lon":3.3090764},{"type":"node","id":6037556145,"lat":51.1418843,"lon":3.3094015},{"type":"node","id":1494027342,"lat":51.1411958,"lon":3.3123073},{"type":"node","id":1494027346,"lat":51.1411509,"lon":3.3144776},{"type":"node","id":1494027353,"lat":51.141193,"lon":3.3127209},{"type":"node","id":1494027361,"lat":51.1411944,"lon":3.3118627},{"type":"node","id":1494027366,"lat":51.1411788,"lon":3.3132011},{"type":"node","id":1494027368,"lat":51.1411457,"lon":3.3148322},{"type":"node","id":1494027372,"lat":51.1412147,"lon":3.3112199},{"type":"node","id":1494027373,"lat":51.1411641,"lon":3.3142758},{"type":"node","id":1494027378,"lat":51.1412256,"lon":3.3114828},{"type":"node","id":1494027382,"lat":51.1412174,"lon":3.3105548},{"type":"node","id":6037556098,"lat":51.1411339,"lon":3.315984},{"type":"node","id":6037556146,"lat":51.1418276,"lon":3.309789},{"type":"node","id":6037556148,"lat":51.1418583,"lon":3.3096011},{"type":"node","id":6037556149,"lat":51.1418039,"lon":3.3098357},{"type":"node","id":6037556150,"lat":51.1417743,"lon":3.3098805},{"type":"node","id":6037556151,"lat":51.1416977,"lon":3.3101207},{"type":"node","id":6037556152,"lat":51.1416834,"lon":3.3102232},{"type":"node","id":6037556153,"lat":51.1416823,"lon":3.3102705},{"type":"node","id":6037556154,"lat":51.1416302,"lon":3.3105557},{"type":"node","id":6037556155,"lat":51.1416042,"lon":3.3107844},{"type":"node","id":6037556156,"lat":51.1415929,"lon":3.3110547},{"type":"node","id":6037556157,"lat":51.1415904,"lon":3.3118741},{"type":"node","id":6037556158,"lat":51.1415817,"lon":3.3145778},{"type":"node","id":6037556159,"lat":51.14157,"lon":3.3146421},{"type":"node","id":6037556160,"lat":51.1415557,"lon":3.3146975},{"type":"node","id":6037556161,"lat":51.1415541,"lon":3.3148416},{"type":"node","id":6037556162,"lat":51.1415551,"lon":3.3149739},{"type":"node","id":6037556163,"lat":51.1415802,"lon":3.3150635},{"type":"node","id":1494027343,"lat":51.1410607,"lon":3.3204128},{"type":"node","id":1494027365,"lat":51.141078,"lon":3.3193848},{"type":"node","id":1494027369,"lat":51.1410588,"lon":3.3212214},{"type":"node","id":1494027380,"lat":51.1410813,"lon":3.317924},{"type":"node","id":6037556105,"lat":51.141131,"lon":3.31628},{"type":"node","id":6037556106,"lat":51.1411581,"lon":3.3165005},{"type":"node","id":6037556107,"lat":51.141174,"lon":3.3167222},{"type":"node","id":6037556108,"lat":51.1411155,"lon":3.3169939},{"type":"node","id":6037556109,"lat":51.1410508,"lon":3.3221866},{"type":"node","id":6037556110,"lat":51.1410676,"lon":3.3223383},{"type":"node","id":6037556164,"lat":51.1415792,"lon":3.3164565},{"type":"node","id":6037556165,"lat":51.141573,"lon":3.3172357},{"type":"node","id":6037556166,"lat":51.1415771,"lon":3.3182023},{"type":"node","id":6037556167,"lat":51.1415495,"lon":3.3182625},{"type":"node","id":6037556168,"lat":51.1415495,"lon":3.3185605},{"type":"node","id":6037556169,"lat":51.1415684,"lon":3.3186069},{"type":"node","id":6037556170,"lat":51.1415633,"lon":3.3207654},{"type":"node","id":6037556171,"lat":51.1415444,"lon":3.3214131},{"type":"node","id":6037556172,"lat":51.1415097,"lon":3.3218544},{"type":"node","id":6037556173,"lat":51.1414642,"lon":3.3225703},{"type":"node","id":1493821404,"lat":51.1410663,"lon":3.3233361},{"type":"node","id":1494027355,"lat":51.1410465,"lon":3.3227899},{"type":"node","id":1801373604,"lat":51.1410713,"lon":3.3237592},{"type":"node","id":1951759314,"lat":51.1411466,"lon":3.3245554},{"type":"node","id":2474247506,"lat":51.1411643,"lon":3.3245589},{"type":"node","id":6037556111,"lat":51.1410551,"lon":3.3241916},{"type":"node","id":6037556112,"lat":51.1410504,"lon":3.3243751},{"type":"node","id":6037556118,"lat":51.1410331,"lon":3.3245183},{"type":"node","id":6037556120,"lat":51.1411823,"lon":3.3245635},{"type":"node","id":6037556174,"lat":51.1414121,"lon":3.3230419},{"type":"node","id":6037556175,"lat":51.1413953,"lon":3.3230745},{"type":"node","id":6037556176,"lat":51.1413682,"lon":3.323164},{"type":"node","id":6037556177,"lat":51.1413426,"lon":3.3233187},{"type":"node","id":6037556178,"lat":51.1413353,"lon":3.3234317},{"type":"node","id":6037556179,"lat":51.1413527,"lon":3.3235128},{"type":"node","id":6037556180,"lat":51.141294,"lon":3.3239374},{"type":"node","id":3702878648,"lat":51.1401344,"lon":3.3337214},{"type":"node","id":3702878654,"lat":51.1395918,"lon":3.3338166},{"type":"node","id":3702926557,"lat":51.1404241,"lon":3.333592},{"type":"node","id":3702926558,"lat":51.1406229,"lon":3.3335608},{"type":"node","id":3702926559,"lat":51.1406259,"lon":3.3336496},{"type":"node","id":3702926560,"lat":51.1404301,"lon":3.333676},{"type":"node","id":3702926561,"lat":51.1403789,"lon":3.3336784},{"type":"node","id":3702926562,"lat":51.1403729,"lon":3.3335752},{"type":"node","id":3702926563,"lat":51.1403021,"lon":3.333592},{"type":"node","id":3702926564,"lat":51.1402991,"lon":3.3335295},{"type":"node","id":3702926565,"lat":51.1402253,"lon":3.3335392},{"type":"node","id":3702926566,"lat":51.1402283,"lon":3.3336112},{"type":"node","id":3702926567,"lat":51.1401304,"lon":3.3336285},{"type":"node","id":3702926568,"lat":51.1400111,"lon":3.3337421},{"type":"node","id":3702956173,"lat":51.1406298,"lon":3.3321023},{"type":"node","id":3702956174,"lat":51.140115,"lon":3.3325162},{"type":"node","id":3702956175,"lat":51.1400702,"lon":3.3323734},{"type":"node","id":3702956176,"lat":51.1405896,"lon":3.3319784},{"type":"node","id":3702969714,"lat":51.1404452,"lon":3.3324432},{"type":"node","id":3702969715,"lat":51.1402175,"lon":3.3326312},{"type":"node","id":3702969716,"lat":51.1401965,"lon":3.3325686},{"type":"node","id":3702969717,"lat":51.1404269,"lon":3.3323835},{"type":"node","id":7713176909,"lat":51.1387744,"lon":3.3335489},{"type":"node","id":7713176910,"lat":51.1389364,"lon":3.3334306},{"type":"node","id":7713176911,"lat":51.1387319,"lon":3.3327211},{"type":"node","id":7713176912,"lat":51.1385501,"lon":3.332864},{"type":"node","id":8292789053,"lat":51.1400165,"lon":3.3338082},{"type":"node","id":8292789054,"lat":51.1396286,"lon":3.333874},{"type":"node","id":8378097124,"lat":51.140324,"lon":3.3355884},{"type":"node","id":8378097125,"lat":51.1403179,"lon":3.3355055},{"type":"node","id":8378097126,"lat":51.1406041,"lon":3.3354515},{"type":"node","id":8378097127,"lat":51.1406102,"lon":3.3355344},{"type":"node","id":8378097131,"lat":51.14074,"lon":3.3354785},{"type":"node","id":8378097132,"lat":51.1407879,"lon":3.3354717},{"type":"node","id":8378097133,"lat":51.1407993,"lon":3.3356206},{"type":"node","id":1317838317,"lat":51.1372361,"lon":3.338639},{"type":"node","id":1317838328,"lat":51.1369619,"lon":3.3386232},{"type":"node","id":1317838331,"lat":51.1371806,"lon":3.3384037},{"type":"node","id":1384096112,"lat":51.1371794,"lon":3.3384971},{"type":"node","id":1625199827,"lat":51.1408446,"lon":3.3375722},{"type":"node","id":1625199950,"lat":51.1407563,"lon":3.3373232},{"type":"node","id":3227068446,"lat":51.1369433,"lon":3.3387663},{"type":"node","id":3227068456,"lat":51.1371252,"lon":3.3388226},{"type":"node","id":3227068565,"lat":51.1371943,"lon":3.3389942},{"type":"node","id":3227068568,"lat":51.1372698,"lon":3.3389467},{"type":"node","id":6227395991,"lat":51.1392741,"lon":3.3367141},{"type":"node","id":6227395992,"lat":51.1392236,"lon":3.3367356},{"type":"node","id":6227395993,"lat":51.139313,"lon":3.3369193},{"type":"node","id":6227395997,"lat":51.1392584,"lon":3.3369405},{"type":"node","id":6414352053,"lat":51.1374056,"lon":3.3395184},{"type":"node","id":6414352054,"lat":51.1371278,"lon":3.3390236},{"type":"node","id":6414352055,"lat":51.1372589,"lon":3.3395769},{"type":"node","id":6414374315,"lat":51.1369166,"lon":3.338648},{"type":"node","id":6414374316,"lat":51.1369683,"lon":3.3388767},{"type":"node","id":6414374317,"lat":51.1370053,"lon":3.3388543},{"type":"node","id":6414374318,"lat":51.1371169,"lon":3.3387872},{"type":"node","id":6414374319,"lat":51.1371271,"lon":3.3388309},{"type":"node","id":6414374320,"lat":51.137238,"lon":3.3387628},{"type":"node","id":6414374321,"lat":51.1372074,"lon":3.338651},{"type":"node","id":6414383775,"lat":51.1407766,"lon":3.3373855},{"type":"node","id":6416001161,"lat":51.1371631,"lon":3.3390024},{"type":"node","id":7274233390,"lat":51.1372936,"lon":3.3395562},{"type":"node","id":7274233391,"lat":51.137309,"lon":3.3396231},{"type":"node","id":7274233395,"lat":51.1374325,"lon":3.3396124},{"type":"node","id":7274233396,"lat":51.137422,"lon":3.3395803},{"type":"node","id":7274233397,"lat":51.1373776,"lon":3.3396587},{"type":"node","id":8279842668,"lat":51.1371603,"lon":3.3384139},{"type":"node","id":8377691836,"lat":51.1409346,"lon":3.337164},{"type":"node","id":8378081366,"lat":51.140887,"lon":3.3372065},{"type":"node","id":8378081386,"lat":51.1407701,"lon":3.3373106},{"type":"node","id":8378081429,"lat":51.1408204,"lon":3.3372657},{"type":"node","id":8378097128,"lat":51.1407837,"lon":3.3359331},{"type":"node","id":8378097129,"lat":51.1407736,"lon":3.3358962},{"type":"node","id":8378097130,"lat":51.1407627,"lon":3.3358224},{"type":"node","id":8378097134,"lat":51.1408355,"lon":3.3359157},{"type":"node","id":1625199938,"lat":51.1411535,"lon":3.3372917},{"type":"node","id":1625199951,"lat":51.1410675,"lon":3.3370397},{"type":"node","id":6100803125,"lat":51.1672329,"lon":3.3331872},{"type":"node","id":6100803128,"lat":51.1672258,"lon":3.3333568},{"type":"node","id":2577910530,"lat":51.1685713,"lon":3.3356917},{"type":"node","id":2577910542,"lat":51.1681925,"lon":3.3356582},{"type":"node","id":2577910543,"lat":51.1685972,"lon":3.3356499},{"type":"node","id":3645188881,"lat":51.1679055,"lon":3.3337545},{"type":"node","id":6100803124,"lat":51.1673065,"lon":3.3331116},{"type":"node","id":6100803126,"lat":51.1672788,"lon":3.3336938},{"type":"node","id":6100803127,"lat":51.1672758,"lon":3.3333629},{"type":"node","id":6100803129,"lat":51.1675567,"lon":3.3331312},{"type":"node","id":6100803130,"lat":51.1675525,"lon":3.3333096},{"type":"node","id":6100803131,"lat":51.1679171,"lon":3.3333454},{"type":"node","id":2577910520,"lat":51.1681983,"lon":3.3360484},{"type":"node","id":2577910526,"lat":51.1687824,"lon":3.3362878},{"type":"node","id":2577910545,"lat":51.16885,"lon":3.3360431},{"type":"node","id":6145151107,"lat":51.1694008,"lon":3.3386946},{"type":"node","id":6145151108,"lat":51.1688319,"lon":3.3385737},{"type":"node","id":6145151109,"lat":51.1688258,"lon":3.3386467},{"type":"node","id":6145151110,"lat":51.1693942,"lon":3.3387681},{"type":"node","id":6145151114,"lat":51.1691188,"lon":3.3387104},{"type":"node","id":6145151115,"lat":51.1688569,"lon":3.3386537},{"type":"node","id":6418533335,"lat":51.1685948,"lon":3.3361624},{"type":"node","id":3190107371,"lat":51.1741471,"lon":3.3384365},{"type":"node","id":3190107374,"lat":51.1741746,"lon":3.3388275},{"type":"node","id":3190107377,"lat":51.1741968,"lon":3.3384276},{"type":"node","id":3190107393,"lat":51.1743618,"lon":3.3383982},{"type":"node","id":3190107400,"lat":51.1744043,"lon":3.3384036},{"type":"node","id":3190107407,"lat":51.1744809,"lon":3.3386827},{"type":"node","id":3190107408,"lat":51.1744875,"lon":3.3387716},{"type":"node","id":3190107415,"lat":51.1746495,"lon":3.3386505},{"type":"node","id":3190107416,"lat":51.1746548,"lon":3.3387211},{"type":"node","id":3190107420,"lat":51.1747424,"lon":3.3387044},{"type":"node","id":3190107423,"lat":51.1747681,"lon":3.3390477},{"type":"node","id":3190107424,"lat":51.1747706,"lon":3.3384763},{"type":"node","id":3190107428,"lat":51.1747993,"lon":3.3384858},{"type":"node","id":3190107432,"lat":51.1748198,"lon":3.3387594},{"type":"node","id":3190107435,"lat":51.1750772,"lon":3.3389888},{"type":"node","id":3190107439,"lat":51.1752356,"lon":3.3387751},{"type":"node","id":3190107442,"lat":51.1752492,"lon":3.338956},{"type":"node","id":7390697534,"lat":51.1297479,"lon":3.3578326},{"type":"node","id":7390697550,"lat":51.1297706,"lon":3.3588263},{"type":"node","id":7468171405,"lat":51.1279967,"lon":3.3559306},{"type":"node","id":7468171406,"lat":51.1288847,"lon":3.3598888},{"type":"node","id":7468171407,"lat":51.1288383,"lon":3.3606949},{"type":"node","id":7468171408,"lat":51.128796,"lon":3.3619912},{"type":"node","id":7468171422,"lat":51.1285744,"lon":3.3574498},{"type":"node","id":7468171423,"lat":51.1288319,"lon":3.3586353},{"type":"node","id":7468171426,"lat":51.1287158,"lon":3.3579031},{"type":"node","id":7468171428,"lat":51.1288787,"lon":3.3588438},{"type":"node","id":7468171429,"lat":51.1288942,"lon":3.3595607},{"type":"node","id":7468171431,"lat":51.1288954,"lon":3.3592459},{"type":"node","id":7468171433,"lat":51.1287831,"lon":3.3582062},{"type":"node","id":7468171444,"lat":51.1287924,"lon":3.361646},{"type":"node","id":7727393197,"lat":51.1288566,"lon":3.3555067},{"type":"node","id":7727393198,"lat":51.1292196,"lon":3.356551},{"type":"node","id":7727393199,"lat":51.129399,"lon":3.3566378},{"type":"node","id":7190873584,"lat":51.1287267,"lon":3.3682604},{"type":"node","id":7190927785,"lat":51.1287057,"lon":3.3681343},{"type":"node","id":7190927786,"lat":51.1287121,"lon":3.3673045},{"type":"node","id":7190927787,"lat":51.1286419,"lon":3.3641562},{"type":"node","id":7190927788,"lat":51.1286407,"lon":3.3644331},{"type":"node","id":7190927789,"lat":51.128655,"lon":3.3650286},{"type":"node","id":7190927790,"lat":51.128688,"lon":3.3661227},{"type":"node","id":7190927791,"lat":51.1286681,"lon":3.3635132},{"type":"node","id":7190927792,"lat":51.1286863,"lon":3.3631709},{"type":"node","id":7190927793,"lat":51.1286419,"lon":3.3639077},{"type":"node","id":7468171409,"lat":51.1288502,"lon":3.3621534},{"type":"node","id":7468171410,"lat":51.1288454,"lon":3.3623212},{"type":"node","id":7468171411,"lat":51.1287924,"lon":3.36282},{"type":"node","id":7468171412,"lat":51.1287335,"lon":3.363023},{"type":"node","id":7468171413,"lat":51.1286942,"lon":3.363003},{"type":"node","id":7602692242,"lat":51.1287128,"lon":3.3675239},{"type":"node","id":7727393200,"lat":51.129492,"lon":3.3624712},{"type":"node","id":7727393201,"lat":51.1294385,"lon":3.3629631},{"type":"node","id":7727393202,"lat":51.1293629,"lon":3.3638402},{"type":"node","id":7727393203,"lat":51.1293586,"lon":3.3662748},{"type":"node","id":7727393204,"lat":51.1292824,"lon":3.3662748},{"type":"node","id":7727393205,"lat":51.1292881,"lon":3.3667997},{"type":"node","id":7727393206,"lat":51.1293315,"lon":3.3682391},{"type":"node","id":7190873576,"lat":51.1287907,"lon":3.36923},{"type":"node","id":7190873577,"lat":51.1289144,"lon":3.369348},{"type":"node","id":7190873578,"lat":51.1288472,"lon":3.3692931},{"type":"node","id":7190873582,"lat":51.1287752,"lon":3.3691898},{"type":"node","id":7468171450,"lat":51.1287442,"lon":3.3685677},{"type":"node","id":7468171451,"lat":51.1290764,"lon":3.3693851},{"type":"node","id":7468171455,"lat":51.1289835,"lon":3.3693823},{"type":"node","id":7727393207,"lat":51.1293768,"lon":3.368773},{"type":"node","id":7727393208,"lat":51.1293116,"lon":3.3692219},{"type":"node","id":7727393209,"lat":51.1293718,"lon":3.368916},{"type":"node","id":7727393210,"lat":51.1292845,"lon":3.3692843},{"type":"node","id":7727393211,"lat":51.1292517,"lon":3.3693264},{"type":"node","id":7727393212,"lat":51.1291932,"lon":3.3693491},{"type":"node","id":8781449489,"lat":51.1293725,"lon":3.3688971},{"type":"way","id":640979978,"nodes":[6037556099,6037556100,6037556101,6037556102,6037556103,1951759298,6037556128,6037556129,6037556130,6037556131,6037556132,6037556133,6037556134,6037556135,6037556136,6037556137,6037556138,6037556139,6037556140,6037556141,6037556142,6037556143,6037556144,6037556145,6037556148,6037556146,6037556149,6037556150,6037556151,6037556152,6037556153,6037556154,6037556155,6037556156,6037556157,6037556158,6037556159,6037556160,6037556161,6037556162,6037556163,6037556164,6037556165,6037556166,6037556167,6037556168,6037556169,6037556170,6037556171,6037556172,6037556173,6037556174,6037556175,6037556176,6037556177,6037556178,6037556179,6037556180,6037556120,2474247506,1951759314,6037556118]},{"type":"way","id":640979982,"nodes":[6037556099,1494027349,6037556104,1494027348,1494027341,1494027386,1494027376,1494027385,1494027359,1494027374,1494027389,1494027382,1494027372,1494027378,1494027361,1494027342,1494027353,1494027366,1494027373,1494027346,1494027368,6037556098,6037556105,6037556106,6037556107,6037556108,1494027380,1494027365,1494027343,1494027369,6037556109,6037556110,1494027355,1493821404,1801373604,6037556111,6037556112,6037556118]},{"type":"way","id":184402325,"nodes":[1948835900,416917603,416917605,1948835986,416917609,1948836072,1948836068,1948836093,1948836104,1948836209,1948836202,1948836218,1948836237,1948836277,416917612,1948836149,1948836096,1948835950]},{"type":"way","id":184402326,"nodes":[1948835900,1948835842,1948835662]},{"type":"way","id":314899865,"nodes":[2026541851,2026541846,2026541843,2026541841,2026541837,3209560116,3210389695,3209560114,3209560115,3209560117,3209560118,3209560119,3209560121,3209560124,3209560126,3209560127,3209560131,3209560132,3209560134,3209560135,3209560136,3209560138]},{"type":"way","id":315041273,"nodes":[1554514739,1554514640,3211247042,1554514831,1554514750,1554514755,5962496715,1554514658,5962338038,1554514618,5962444841,1554514806,5962340003,8497007481,5962414276,5962415500,5962415499,5962415498,5962415538,5962415543,3211247331,3211247328,3211247291,5962444849,5962444850,5962340009,5962444846,5962340010,3211247059,5962340012,5962340011,3211247266,3211247261,5962496718,3211247058,5962496719,3211247054,3211247265,5962340013,3211247060,5962415564,5962415565]},{"type":"way","id":606165130,"nodes":[5747937641,5747937642,5747937643,5747937644,5747937645,5747937646,5747937647,5747937648,5747937649,5747937650,5747937651,5747937652,5747937653,5747937654,5747937655,5747937656,5747937657,5747937658,5747937659,5747535101,5745963942,5745963943,5745963944,5745963946,3162627509,5745963947,5747937668,5747937669,5747937670,5747937671,5747937672,5747937673,5747937674,5747937675,5747937676,5747937677,5747937678,5747937679,5747937680,5747937681,5747937682,5747937683,5747937684,5747937685,5747937686,5747937687,5747937688,5747937689,5747937690,5747937691,5747937641]},{"type":"way","id":184402332,"nodes":[668981668,416917618,1815081998,668981667,1948835950]},{"type":"way","id":184402334,"nodes":[6206789688,1948835742,668981668]},{"type":"way","id":314956402,"nodes":[2026541851,3209560139,3209560138]},{"type":"way","id":663050030,"nodes":[1948835662,6206789688]},{"type":"way","id":631371232,"nodes":[3211247019,5962496725]},{"type":"way","id":631377344,"nodes":[5962496725,3211247021]},{"type":"way","id":655652321,"nodes":[6142727588,6143074993,6142727589,6142727598,6142727590,6142725081,6142725080,6142725079,6142725078,6142725077,6142725076,6142725074,6142725084,6142727586,6142727585,6142727587,6142727591,6142727592,5745963922,6142727588]},{"type":"way","id":631371231,"nodes":[3211247019,3211247024]},{"type":"way","id":631371234,"nodes":[3211247013,3211247021]},{"type":"way","id":631377343,"nodes":[1554514739,1554514735,1554514744,1554514811,5962339921,1554514655,1554514679,1554514683,1554514765,1554514775,1554514773,1554514747,1554514730,1554514647,1554514789,1554514649,1554514682,1554514787,1554514661,1554514726,1554514693,1554514703,1554514783]},{"type":"way","id":655652319,"nodes":[6142725039,6142725040,8638721239,8638721230,6142725041,6142725042,6142725043,6142725044,6142725045,6142725046,6142725047,6142725048,6142725049,6142725050,6142725051,6142725052,6142725053,6142725054,6142725055,6142725056,6142725057,6142725058,6142725059,6142725060,6142725061,6142725064,6142727594,6142727595,6142727596,6143075018,6142725067,6142725066,6142725065,6143075014,3162627482,6142727597,6142725039]},{"type":"way","id":315041261,"nodes":[3211247039,3211247036]},{"type":"way","id":315041263,"nodes":[3211247032,3211247029,3211247024]},{"type":"way","id":631371223,"nodes":[5962415565,3211247039]},{"type":"way","id":631371228,"nodes":[3211247034,3211247032]},{"type":"way","id":631377341,"nodes":[3211247036,3211247037,3211247034]},{"type":"way","id":631371236,"nodes":[3211247013,3211247010,3211247008,3211247004,3211246997,5962338070,9284562682,5962338069,5962338071,3211246995]},{"type":"way","id":631371237,"nodes":[3211246995,3211246555,3211246542,3203029856,7727406921,1554514783]}]} + ) + + + + } + + + +} \ No newline at end of file diff --git a/test/CreateNoteImportLayer.spec.ts b/test/CreateNoteImportLayer.spec.ts new file mode 100644 index 0000000000..8eed041595 --- /dev/null +++ b/test/CreateNoteImportLayer.spec.ts @@ -0,0 +1,35 @@ +import T from "./TestHelper"; +import CreateNoteImportLayer from "../Models/ThemeConfig/Conversion/CreateNoteImportLayer"; +import * as bookcases from "../assets/layers/public_bookcase/public_bookcase.json" +import {DesugaringContext} from "../Models/ThemeConfig/Conversion/Conversion"; +import {LayerConfigJson} from "../Models/ThemeConfig/Json/LayerConfigJson"; +import {TagRenderingConfigJson} from "../Models/ThemeConfig/Json/TagRenderingConfigJson"; +import {PrepareLayer} from "../Models/ThemeConfig/Conversion/PrepareLayer"; +import {Utils} from "../Utils"; + +export default class CreateNoteImportLayerSpec extends T { + + constructor() { + super([ + ["Bookcase", () => { + const desugaringState: DesugaringContext = { + sharedLayers: new Map(), + tagRenderings: new Map() + + } + const layerPrepare = new PrepareLayer(desugaringState) + const layer = layerPrepare.convertStrict(bookcases, "ImportLayerGeneratorTest:Parse bookcases") + const generator = new CreateNoteImportLayer() + const generatedLayer: LayerConfigJson = generator.convertStrict(layer, "ImportLayerGeneratorTest: convert") + T.equals("_tags~(^|.*;)amenity=public_bookcase($|;.*)", generatedLayer.isShown.mappings[1].if["and"][1].or[0].and[0]) + T.isTrue(generatedLayer.minzoom <= layer.minzoom, "Zoomlevel is to high") + let renderings = Utils.NoNull(Utils.NoNull(generatedLayer.tagRenderings + .map(tr => (tr).render)) + .map(render => render["en"])) + T.isTrue(renderings.some(r => r.indexOf("import_button") > 0), "no import button found") + }] + ]); + } + + +} \ No newline at end of file diff --git a/test/GeoOperations.spec.ts b/test/GeoOperations.spec.ts index a615efb0c8..5eb64fa0ec 100644 --- a/test/GeoOperations.spec.ts +++ b/test/GeoOperations.spec.ts @@ -1,11 +1,9 @@ -import {Utils} from "../Utils"; import * as Assert from "assert"; import {equal} from "assert"; import T from "./TestHelper"; import {GeoOperations} from "../Logic/GeoOperations"; import {BBox} from "../Logic/BBox"; - -Utils.runningFromConsole = true; +import * as turf from "@turf/turf" export default class GeoOperationsSpec extends T { @@ -91,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, @@ -187,7 +184,265 @@ export default class GeoOperationsSpec extends T { equal(51.5292513551899, bbox.minLat) equal(51.53266860674158, bbox.maxLat) } - ] + ], + ["Regression test: intersection/overlap", () => { + + const polyGrb = { + "type": "Feature", + "properties": { + "osm_id": "25189153", + "size_grb_building": "217.14", + "addr:housenumber": "173", + "addr:street": "Kortrijksestraat", + "building": "house", + "source:geometry:entity": "Gbg", + "source:geometry:date": "2015/02/27", + "source:geometry:oidn": "1729460", + "source:geometry:uidn": "8713648", + "H_DTM_MIN": "17.28", + "H_DTM_GEM": "17.59", + "H_DSM_MAX": "29.04", + "H_DSM_P99": "28.63", + "HN_MAX": "11.45", + "HN_P99": "11.04", + "detection_method": "from existing OSM building source: house ,hits (3)", + "auto_building": "house", + "size_shared": "210.68", + "size_source_building": "212.63", + "id": "https://betadata.grbosm.site/grb?bbox=360935.6475626023,6592540.815539878,361088.52161917265,6592693.689596449/37", + "_lat": "50.83736194999996", + "_lon": "3.2432137000000116", + "_layer": "GRB", + "_length": "48.51529464293261", + "_length:km": "0.0", + "_now:date": "2021-12-05", + "_now:datetime": "2021-12-05 21:51:40", + "_loaded:date": "2021-12-05", + "_loaded:datetime": "2021-12-05 21:51:40" + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.2431059999999974, + 50.83730270000021 + ], + [ + 3.243174299999987, + 50.83728850000007 + ], + [ + 3.2432116000000173, + 50.83736910000003 + ], + [ + 3.2433214000000254, + 50.83740350000011 + ], + [ + 3.24329779999996, + 50.837435399999855 + ], + [ + 3.2431881000000504, + 50.83740090000025 + ], + [ + 3.243152699999997, + 50.83738980000017 + ], + [ + 3.2431059999999974, + 50.83730270000021 + ] + ] + ] + }, + "id": "https://betadata.grbosm.site/grb?bbox=360935.6475626023,6592540.815539878,361088.52161917265,6592693.689596449/37", + "_lon": 3.2432137000000116, + "_lat": 50.83736194999996, + "bbox": { + "maxLat": 50.837435399999855, + "maxLon": 3.2433214000000254, + "minLat": 50.83728850000007, + "minLon": 3.2431059999999974 + } + } + const polyHouse = { + "type": "Feature", + "id": "way/594963177", + "properties": { + "timestamp": "2021-12-05T04:04:55Z", + "version": 3, + "changeset": 114571409, + "user": "Pieter Vander Vennet", + "uid": 3818858, + "addr:housenumber": "171", + "addr:street": "Kortrijksestraat", + "building": "house", + "source:geometry:date": "2018-10-22", + "source:geometry:ref": "Gbg/5096537", + "_last_edit:contributor": "Pieter Vander Vennet", + "_last_edit:contributor:uid": 3818858, + "_last_edit:changeset": 114571409, + "_last_edit:timestamp": "2021-12-05T04:04:55Z", + "_version_number": 3, + "id": "way/594963177", + "_backend": "https://www.openstreetmap.org", + "_lat": "50.83736395", + "_lon": "3.2430937", + "_layer": "OSM-buildings", + "_length": "43.561938680928506", + "_length:km": "0.0", + "_now:date": "2021-12-05", + "_now:datetime": "2021-12-05 21:51:40", + "_loaded:date": "2021-12-05", + "_loaded:datetime": "2021-12-05 21:51:39", + "_surface": "93.32785810484549", + "_surface:ha": "0" + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 3.2429993, + 50.8373243 + ], + [ + 3.243106, + 50.8373027 + ], + [ + 3.2431527, + 50.8373898 + ], + [ + 3.2431881, + 50.8374009 + ], + [ + 3.2431691, + 50.8374252 + ], + [ + 3.2430936, + 50.837401 + ], + [ + 3.243046, + 50.8374112 + ], + [ + 3.2429993, + 50.8373243 + ] + ] + ] + }, + "_lon": 3.2430937, + "_lat": 50.83736395, + "bbox": { + "maxLat": 50.8374252, + "maxLon": 3.2431881, + "minLat": 50.8373027, + "minLon": 3.2429993 + } + } + + const p0 = turf.polygon(polyGrb.geometry.coordinates) + Assert.notEqual(p0, null) + const p1 = turf.polygon(polyHouse.geometry.coordinates) + Assert.notEqual(p1, null) + + const overlaps = GeoOperations.calculateOverlap(polyGrb, [polyHouse]) + Assert.equal(overlaps.length, 0) + const overlapsRev = GeoOperations.calculateOverlap(polyHouse, [polyGrb]) + Assert.equal(overlapsRev.length, 0) + + }], + ["Overnode removal test", () => { + + const feature = { + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 4.477944199999975, + 51.02783550000022 + ], + [ + 4.477987899999996, + 51.027818800000034 + ], + [ + 4.478004500000021, + 51.02783399999988 + ], + [ + 4.478025499999962, + 51.02782489999994 + ], + [ + 4.478079099999993, + 51.027873899999896 + ], + [ + 4.47801040000006, + 51.027903799999955 + ], + [ + 4.477964799999972, + 51.02785709999982 + ], + [ + 4.477964699999964, + 51.02785690000006 + ], + [ + 4.477944199999975, + 51.02783550000022 + ] + ] + ] + } + } + + const copy = GeoOperations.removeOvernoding(feature) + Assert.equal(copy.geometry.coordinates[0].length, 7) + T.listIdentical([ + [ + 4.477944199999975, + 51.02783550000022 + ], + [ + 4.477987899999996, + 51.027818800000034 + ], + [ + 4.478004500000021, + 51.02783399999988 + ], + [ + 4.478025499999962, + 51.02782489999994 + ], + [ + 4.478079099999993, + 51.027873899999896 + ], + [ + 4.47801040000006, + 51.027903799999955 + ], + [ + 4.477944199999975, + 51.02783550000022 + ] + ], copy.geometry.coordinates[0]) + }] ] ) diff --git a/test/ImageAttribution.spec.ts b/test/ImageAttribution.spec.ts index 08007b2770..86b394a790 100644 --- a/test/ImageAttribution.spec.ts +++ b/test/ImageAttribution.spec.ts @@ -1,48 +1,45 @@ -import {Utils} from "../Utils"; import {equal} from "assert"; import T from "./TestHelper"; import {Translation} from "../UI/i18n/Translation"; -import * as bike_repair_station from "../assets/layers/bike_repair_station/bike_repair_station.json" -import LayerConfig from "../Models/ThemeConfig/LayerConfig"; - -Utils.runningFromConsole = true; +import * as cyclofix from "../assets/generated/themes/cyclofix.json" +import {ExtractImages} from "../Models/ThemeConfig/Conversion/FixImages"; export default class ImageAttributionSpec extends T { constructor() { - super( - "imageattribution", [ - [ - "Should find all the images", - () => { - const pumps: LayerConfig = new LayerConfig(bike_repair_station) - const images = pumps.ExtractImages(); - const expectedValues = ['./assets/layers/bike_repair_station/repair_station.svg', - './assets/layers/bike_repair_station/repair_station_pump.svg', - './assets/layers/bike_repair_station/broken_pump_2.svg', - './assets/layers/bike_repair_station/pump.svg', - './assets/themes/cyclofix/fietsambassade_gent_logo_small.svg', - './assets/layers/bike_repair_station/pump_example_manual.jpg', - './assets/layers/bike_repair_station/pump_example.png', - './assets/layers/bike_repair_station/pump_example_round.jpg', - './assets/layers/bike_repair_station/repair_station_example.jpg'] - for (const expected of expectedValues) { - T.isTrue(images.has(expected), expected + " not found") - } + super([ + [ + "Should find all the images", + () => { + const images = new Set(new ExtractImages(true, new Map()).convertStrict( cyclofix, "test")) + const expectedValues = [ + './assets/layers/bike_repair_station/repair_station.svg', + './assets/layers/bike_repair_station/repair_station_pump.svg', + './assets/layers/bike_repair_station/broken_pump.svg', + './assets/layers/bike_repair_station/pump.svg', + './assets/themes/cyclofix/fietsambassade_gent_logo_small.svg', + './assets/layers/bike_repair_station/pump_example_manual.jpg', + './assets/layers/bike_repair_station/pump_example.png', + './assets/layers/bike_repair_station/pump_example_round.jpg', + './assets/layers/bike_repair_station/repair_station_example_2.jpg', + 'close'] + for (const expected of expectedValues) { + T.isTrue(images.has(expected), expected + " not found") } - ], - [ - "Test image discovery regex", - () => { - const tr = new Translation({en: "XYZ XYZ XYZ "}) - const images = new Set(tr.ExtractImages(false)); - equal(3, images.size) - T.isTrue(images.has("a.svg"), "a.svg not found") - T.isTrue(images.has("b.svg"), "b.svg not found") - T.isTrue(images.has("some image.svg"), "some image.svg not found") + } + ], + [ + "Test image discovery regex", + () => { + const tr = new Translation({en: "XYZ XYZ XYZ "}) + const images = new Set(tr.ExtractImages(false)); + equal(3, images.size) + T.isTrue(images.has("a.svg"), "a.svg not found") + T.isTrue(images.has("b.svg"), "b.svg not found") + T.isTrue(images.has("some image.svg"), "some image.svg not found") - } - ] + } + ] - ]); + ]); } } \ No newline at end of file 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/ImportMultiPolygon.spec.ts b/test/ImportMultiPolygon.spec.ts new file mode 100644 index 0000000000..e4b480f926 --- /dev/null +++ b/test/ImportMultiPolygon.spec.ts @@ -0,0 +1,219 @@ +import T from "./TestHelper"; +import CreateMultiPolygonWithPointReuseAction from "../Logic/Osm/Actions/CreateMultiPolygonWithPointReuseAction"; +import { Tag } from "../Logic/Tags/Tag"; +import FeaturePipelineState from "../Logic/State/FeaturePipelineState"; +import { Changes } from "../Logic/Osm/Changes"; +import {ChangesetHandler} from "../Logic/Osm/ChangesetHandler"; +import * as Assert from "assert"; + +export default class ImportMultiPolygonSpec extends T { + + constructor() { + super([ + ["Correct changeset", + async () => { + + const feature = { + "type": "Feature", + "properties": { + "osm_id": "41097039", + "size_grb_building": "1374.89", + "addr:housenumber": "53", + "addr:street": "Startelstraat", + "building": "house", + "source:geometry:entity": "Gbg", + "source:geometry:date": "2014-04-28", + "source:geometry:oidn": "150044", + "source:geometry:uidn": "5403181", + "H_DTM_MIN": "50.35", + "H_DTM_GEM": "50.97", + "H_DSM_MAX": "59.40", + "H_DSM_P99": "59.09", + "HN_MAX": "8.43", + "HN_P99": "8.12", + "detection_method": "derived from OSM landuse: farmyard", + "auto_target_landuse": "farmyard", + "size_source_landuse": "8246.28", + "auto_building": "farm", + "id": "41097039", + "_lat": "50.84633355000016", + "_lon": "5.262964150000011", + "_layer": "grb", + "_length": "185.06002152312757", + "_length:km": "0.2", + "_now:date": "2022-02-22", + "_now:datetime": "2022-02-22 10:15:51", + "_loaded:date": "2022-02-22", + "_loaded:datetime": "2022-02-22 10:15:51", + "_geometry:type": "Polygon", + "_intersects_with_other_features": "", + "_country": "be", + "_overlaps_with_buildings": "[]", + "_overlap_percentage": "null", + "_grb_date": "2014-04-28", + "_grb_ref": "Gbg/150044", + "_building:min_level": "", + "_surface": "548.1242491529038", + "_surface:ha": "0", + "_reverse_overlap_percentage": "null", + "_imported_osm_object_found": "false", + "_imported_osm_still_fresh": "false", + "_target_building_type": "house" + }, + "geometry": { + "type": "Polygon", + "coordinates": <[number, number][][]>[ + [ + [ + 5.262684300000043, + 50.84624409999995 + ], + [ + 5.262777500000024, + 50.84620759999988 + ], + [ + 5.262798899999998, + 50.84621390000019 + ], + [ + 5.262999799999994, + 50.84619519999999 + ], + [ + 5.263107500000007, + 50.84618920000014 + ], + [ + 5.263115, + 50.84620990000026 + ], + [ + 5.26310279999998, + 50.84623050000014 + ], + [ + 5.263117999999977, + 50.846247400000166 + ], + [ + 5.263174599999989, + 50.84631019999971 + ], + [ + 5.263166999999989, + 50.84631459999995 + ], + [ + 5.263243999999979, + 50.84640239999989 + ], + [ + 5.2631607000000065, + 50.84643459999996 + ], + [ + 5.26313309999997, + 50.84640089999985 + ], + [ + 5.262907499999996, + 50.84647790000018 + ], + [ + 5.2628939999999576, + 50.846463699999774 + ], + [ + 5.262872100000033, + 50.846440700000294 + ], + [ + 5.262784699999991, + 50.846348899999924 + ], + [ + 5.262684300000043, + 50.84624409999995 + ] + ], + [ + [ + 5.262801899999976, + 50.84623269999982 + ], + [ + 5.2629535000000285, + 50.84638830000012 + ], + [ + 5.263070700000018, + 50.84634720000008 + ], + [ + 5.262998000000025, + 50.84626279999982 + ], + [ + 5.263066799999966, + 50.84623959999975 + ], + [ + 5.263064000000004, + 50.84623330000007 + ], + [ + 5.263009599999997, + 50.84623730000026 + ], + [ + 5.263010199999956, + 50.84621629999986 + ], + [ + 5.262801899999976, + 50.84623269999982 + ] + ] + ] + }, + } + + const innerRings = [...feature.geometry.coordinates] + innerRings.splice(0, 1) + + const action = new CreateMultiPolygonWithPointReuseAction( + [new Tag("building", "yes")], + feature.geometry.coordinates[0], + innerRings, + undefined, + [], + "import" + ) + const descriptions = await action.Perform(new Changes()) + + function getCoor(id: number): {lat: number, lon:number} { + return descriptions.find(d => d.type === "node" && d.id === id).changes + } + + const ways= descriptions.filter(d => d.type === "way") + T.isTrue(ways[0].id == -18, "unexpected id") + T.isTrue(ways[1].id == -27, "unexpected id") + const outer = ways[0].changes["coordinates"] + const outerExpected = [[5.262684300000043,50.84624409999995],[5.262777500000024,50.84620759999988],[5.262798899999998,50.84621390000019],[5.262999799999994,50.84619519999999],[5.263107500000007,50.84618920000014],[5.263115,50.84620990000026],[5.26310279999998,50.84623050000014],[5.263117999999977,50.846247400000166],[5.263174599999989,50.84631019999971],[5.263166999999989,50.84631459999995],[5.263243999999979,50.84640239999989],[5.2631607000000065,50.84643459999996],[5.26313309999997,50.84640089999985],[5.262907499999996,50.84647790000018],[5.2628939999999576,50.846463699999774],[5.262872100000033,50.846440700000294],[5.262784699999991,50.846348899999924],[5.262684300000043,50.84624409999995]] + T.listIdentical(feature.geometry.coordinates[0], outer) + const inner = ways[1].changes["coordinates"] + T.listIdentical(feature.geometry.coordinates[1], inner) + const members = <{type: string, role: string, ref: number}[]> descriptions.find(d => d.type === "relation").changes["members"] + T.isTrue(members[0].role == "outer", "incorrect role") + T.isTrue(members[1].role == "inner", "incorrect role") + T.isTrue(members[0].type == "way", "incorrect type") + T.isTrue(members[1].type == "way", "incorrect type") + T.isTrue(members[0].ref == -18, "incorrect id") + T.isTrue(members[1].ref == -27, "incorrect id") + }] + ]); + } + + +} \ No newline at end of file diff --git a/test/LegacyThemeLoader.spec.ts b/test/LegacyThemeLoader.spec.ts new file mode 100644 index 0000000000..8b1972120d --- /dev/null +++ b/test/LegacyThemeLoader.spec.ts @@ -0,0 +1,513 @@ +import T from "./TestHelper"; +import {FixLegacyTheme} from "../Models/ThemeConfig/Conversion/LegacyJsonConvert"; +import LayoutConfig from "../Models/ThemeConfig/LayoutConfig"; +import {TagRenderingConfigJson} from "../Models/ThemeConfig/Json/TagRenderingConfigJson"; +import {AddMiniMap} from "../Models/ThemeConfig/Conversion/PrepareTheme"; +import {DetectMappingsWithImages, DetectShadowedMappings} from "../Models/ThemeConfig/Conversion/Validation"; +import * as Assert from "assert"; +import {ExtractImages, FixImages} from "../Models/ThemeConfig/Conversion/FixImages"; + +export default class LegacyThemeLoaderSpec extends T { + + private static readonly walking_node_theme = { + "id": "walkingnodenetworks", + "title": { + "en": "Walking node networks" + }, + "maintainer": "L'imaginaire", + "icon": "https://upload.wikimedia.org/wikipedia/commons/3/30/Man_walking_icon_1410105361.svg", + "description": { + "en": "This map shows walking node networks" + }, + "language": [ + "en" + ], + socialImage: "img.jpg", + "version": "2021-10-02", + "startLat": 51.1599, + "startLon": 3.34750, + "startZoom": 12, + "clustering": { + "maxZoom": 12 + }, + "layers": [ + { + "id": "node2node", + "name": { + "en": "node to node links" + }, + "source": { + "osmTags": { + "and": [ + "network=rwn", + "network:type=node_network" + ] + } + }, + "minzoom": 12, + "title": { + "render": { + "en": "node to node link" + }, + "mappings": [ + { + "if": "ref~*", + "then": { + "en": "node to node link {ref}" + } + } + ] + }, + "width": { + "render": "4" + }, + "color": { + "render": "#8b1e20" + }, + "tagRenderings": [ + { + "question": { + "en": "When was this node to node link last surveyed?" + }, + "render": { + "en": "This node to node link was last surveyed on {survey:date}" + }, + "freeform": { + "key": "survey:date", + "type": "date" + }, + "mappings": [ + { + "if": "survey:date:={_now:date}", + "then": "Surveyed today!" + } + ] + } + ] + }, + { + "id": "node", + "name": { + "en": "nodes" + }, + "source": { + "osmTags": "rwn_ref~*" + }, + "minzoom": 12, + "title": { + "render": { + "en": "walking node {rwn_ref}" + } + }, + "label": { + "mappings": [ + { + "if": "rwn_ref~*", + "then": "
{rwn_ref}
" + } + ] + }, + "tagRenderings": [ + { + "question": { + "en": "When was this walking node last surveyed?" + }, + "render": { + "en": "This walking node was last surveyed on {survey:date}" + }, + "freeform": { + "key": "survey:date", + "type": "date" + }, + "mappings": [ + { + "if": "survey:date:={_now:date}", + "then": "Surveyed today!" + } + ] + }, + { + "question": { + "en": "How many other walking nodes does this node link to?" + }, + "render": { + "en": "This node links to {expected_rwn_route_relations} other walking nodes." + }, + "freeform": { + "key": "expected_rwn_route_relations", + "type": "int" + } + }, + "images" + ] + } + ] + } + + private static readonly verkeerde_borden = { + "id": "https://raw.githubusercontent.com/seppesantens/MapComplete-Themes/main/VerkeerdeBordenDatabank/VerkeerdeBordenDatabank.json", + "title": { + "nl": "VerkeerdeBordenDatabank", + "en": "Erratic Signs Database" + }, + "maintainer": "Seppe Santens", + "icon": "https://upload.wikimedia.org/wikipedia/commons/b/bc/Belgian_traffic_sign_A51.svg", + "description": { + "nl": "Een kaart om verkeerde of ontbrekende verkeersborden te tonen en te editeren.", + "en": "A map to show and edit incorrect or missing traffic signs." + }, + "version": "2021-09-16", + "startLat": 51.08881, + "startLon": 3.447282, + "startZoom": 15, + "clustering": { + "maxZoom": 8 + }, + "layers": [ + { + "id": "trafficsign", + "name": { + "nl": "verkeersbord", + "en": "traffic sign" + }, + "source": { + "osmTags": { + "and": [ + "traffic_sign~*", + "traffic_sign:issue~*" + ] + } + }, + "minzoom": 10, + "title": { + "render": { + "nl": "verkeersbord", + "en": "traffic sign" + } + }, + "tagRenderings": [ + "images", + { + "render": { + "nl": "ID verkeersbord: {traffic_sign}", + "en": "traffic sign ID: {traffic_sign}" + }, + "question": { + "nl": "Wat is het ID voor dit verkeersbord?", + "en": "What is ID for this traffic sign?" + }, + "freeform": { + "key": "traffic_sign" + }, + "id": "trafficsign-traffic_sign" + }, + { + "render": { + "nl": "Probleem bij dit verkeersbord: {traffic_sign:issue}", + "en": "Issue with this traffic sign: {traffic_sign:issue}" + }, + "question": { + "nl": "Wat is het probleem met dit verkeersbord?", + "en": "What is the issue with this traffic sign?" + }, + "freeform": { + "key": "traffic_sign:issue" + }, + "id": "trafficsign-traffic_sign:issue" + }, + { + "question": { + "nl": "Wanneer werd dit verkeersbord laatst gesurveyed?", + "en": "When was this traffic sign last surveyed?" + }, + "render": { + "nl": "Dit verkeersbord werd laatst gesurveyed op {survey:date}", + "en": "This traffic sign was last surveyed on {survey:date}" + }, + "freeform": { + "key": "survey:date", + "type": "date" + }, + "mappings": [ + { + "if": "survey:date:={_now:date}", + "then": "Vandaag gesurveyed!" + } + ], + "id": "trafficsign-survey:date" + } + ], + "mapRendering": [ + { + "icon": "./TS_bolt.svg", + iconBadges: [{ + if: "id=yes", + then: { + mappings: [ + { + if: "id=yes", + then: "./Something.svg" + } + ] + } + }], + "location": [ + "point", + "centroid" + ] + } + ] + }, + { + "id": "notrafficsign", + "name": { + "nl": "geen verkeersbord", + "en": "no traffic sign" + }, + "source": { + "osmTags": { + "and": [ + { + "or": [ + "no:traffic_sign~*", + "not:traffic_sign~*" + ] + }, + "traffic_sign:issue~*" + ] + } + }, + "minzoom": 10, + "title": { + "render": { + "nl": "ontbrekend verkeersbord", + "en": "missing traffic sign" + } + }, + "tagRenderings": [ + "images", + { + "render": { + "nl": "ID ontbrekend verkeersbord: {no:traffic_sign}", + "en": "missing traffic sign ID: {no:traffic_sign}" + }, + "question": { + "nl": "Wat is het ID voor het ontbrekende verkeersbord?", + "en": "What is ID for the missing traffic sign?" + }, + "freeform": { + "key": "no:traffic_sign" + }, + "id": "notrafficsign-no:traffic_sign" + }, + { + "render": { + "nl": "Probleem bij deze situatie: {traffic_sign:issue}", + "en": "Issue with this situation: {traffic_sign:issue}" + }, + "question": { + "nl": "Wat is er mis met deze situatie?", + "en": "What is the issue with this situation?" + }, + "freeform": { + "key": "traffic_sign:issue" + }, + "id": "notrafficsign-traffic_sign:issue" + }, + { + "question": { + "nl": "Wanneer werd deze situatie laatst gesurveyed?", + "en": "When was this situation last surveyed?" + }, + "render": { + "nl": "Deze situatie werd laatst gesurveyed op {survey:date}", + "en": "This situation was last surveyed on {survey:date}" + }, + "freeform": { + "key": "survey:date", + "type": "date" + }, + "mappings": [ + { + "if": "survey:date:={_now:date}", + "then": "Vandaag gesurveyed!" + } + ], + "id": "notrafficsign-survey:date" + } + ], + "mapRendering": [ + { + "icon": "./TS_questionmark.svg", + "location": [ + "point", + "centroid" + ] + } + ] + } + ], + "defaultBackgroundId": "Stamen.TonerLite" + } + + + constructor() { + super([ + ["Walking_node_theme", () => { + + const config = LegacyThemeLoaderSpec.walking_node_theme + const fixed = new FixLegacyTheme().convert( + // @ts-ignore + config, + "While testing") + T.isTrue(fixed.errors.length === 0, "Could not fix the legacy theme") + const theme = new LayoutConfig(fixed.result) + + }], + ["Detect minimaps", () => { + function shouldHave(config: TagRenderingConfigJson) { + T.equals(AddMiniMap.hasMinimap(config), true, "Did _not_ dected a minimap, even though there is one in " + JSON.stringify(config)) + } + + function shouldNot(config: TagRenderingConfigJson) { + T.equals(AddMiniMap.hasMinimap(config), false, "Did erronously dected a minimap, even though there is none in " + JSON.stringify(config)) + } + + shouldHave({ + render: "{minimap()}" + }); + shouldHave({ + render: {en: "{minimap()}"} + }); + shouldHave({ + render: {en: "{minimap()}", nl: "{minimap()}"} + }); + shouldHave({ + render: {en: "{minimap()}", nl: "No map for the dutch!"} + }); + + shouldHave({ + render: "{minimap()}" + }) + shouldHave({ + render: "{minimap(18,featurelist)}" + }) + shouldHave({ + mappings: [ + { + if: "xyz=abc", + then: "{minimap(18,featurelist)}" + } + ] + }) + shouldNot({ + render: "Some random value {key}" + }) + shouldNot({ + render: "Some random value {minimap}" + }) + + }], + ["Shadowed mappings are detected", + () => { + const r = new DetectShadowedMappings().convert({ + mappings: [ + { + if: {or: ["key=value", "x=y"]}, + then: "Case A" + }, + { + if: "key=value", + then: "Shadowed" + } + ] + }, "test"); + T.isTrue(r.warnings.length > 0, "Failing case 0 is not detected") + T.isTrue(r.warnings[0].indexOf("The mapping key=value is fully matched by a previous mapping (namely 0)") >= 0, "Error message does not contain tag and indices") + const r0 = new DetectShadowedMappings().convert({ + mappings: [ + { + if: {or: ["key=value", "x=y"]}, + then: "Case A" + }, + { + if: {and: ["key=value", "x=y"]}, + then: "Shadowed" + } + ] + }, "test"); + T.isTrue(r0.warnings.length > 0, "Failing case 1 is not detected") + } + ], + ["Images are rewritten", () => { + const fixed = new FixImages(new Set()).convertStrict(LegacyThemeLoaderSpec.verkeerde_borden, "test") + const fixedValue = fixed.layers[0]["mapRendering"][0].icon + Assert.equal("https://raw.githubusercontent.com/seppesantens/MapComplete-Themes/main/VerkeerdeBordenDatabank/TS_bolt.svg", + fixedValue) + + const fixedMapping = fixed.layers[0]["mapRendering"][0].iconBadges[0].then.mappings[0].then + Assert.equal("https://raw.githubusercontent.com/seppesantens/MapComplete-Themes/main/VerkeerdeBordenDatabank/Something.svg", + fixedMapping) + }], + ["Images in 'thens' are detected", () => { + const r = new DetectMappingsWithImages().convert({ + "mappings": [ + { + "if": "bicycle_parking=stands", + "then": { + "en": "Staple racks ", + "nl": "Nietjes ", + "fr": "Arceaux ", + "gl": "De roda (Stands) ", + "de": "Fahrradbügel ", + "hu": "Korlát ", + "it": "Archetti ", + "zh_Hant": "單車架 " + } + }] + }, "test"); + const errors = r.errors; + T.isTrue(errors.length > 0, "No images found"); + T.isTrue(errors.some(msg => msg.indexOf("./assets/layers/bike_parking/staple.svg") >= 0), "staple.svg not mentioned"); + }], + ["Images in 'thens' icons are detected", () => { + const r = new ExtractImages(true, new Map()).convert({ + "layers": [ + { + tagRenderings: [ + { + "mappings": [ + { + "if": "bicycle_parking=stands", + "then": { + "en": "Staple racks", + }, + "icon": { + path: "./assets/layers/bike_parking/staple.svg", + class: "small" + } + }, + { + "if": "bicycle_parking=stands", + "then": { + "en": "Bollard", + }, + "icon": "./assets/layers/bike_parking/bollard.svg", + } + ] + } + ] + } + ] + }, "test"); + const images = r.result + T.isTrue(images.length > 0, "No images found"); + T.isTrue(images.findIndex(img => img =="./assets/layers/bike_parking/staple.svg") >= 0, "staple.svg not mentioned"); + T.isTrue(images.findIndex(img => img == "./assets/layers/bike_parking/bollard.svg") >= 0, "bollard.svg not mentioned"); + }] + ] + ); + } + + +} \ No newline at end of file diff --git a/test/OsmConnection.spec.ts b/test/OsmConnection.spec.ts index 3bd69ac9b4..1b81162131 100644 --- a/test/OsmConnection.spec.ts +++ b/test/OsmConnection.spec.ts @@ -2,8 +2,6 @@ import T from "./TestHelper"; import UserDetails, {OsmConnection} from "../Logic/Osm/OsmConnection"; import {UIEventSource} from "../Logic/UIEventSource"; import ScriptUtils from "../scripts/ScriptUtils"; -import {ElementStorage} from "../Logic/ElementStorage"; -import {Changes} from "../Logic/Osm/Changes"; export default class OsmConnectionSpec extends T { @@ -14,14 +12,11 @@ export default class OsmConnectionSpec extends T { private static _osm_token = "LJFmv2nUicSNmBNsFeyCHx5KKx6Aiesx8pXPbX4n" constructor() { - super("osmconnection", [ + super([ ["login on dev", () => { const osmConn = new OsmConnection({ osmConfiguration: "osm-test", - layoutName: "Unit test", - allElements: new ElementStorage(), - changes: new Changes(), oauth_token: new UIEventSource(OsmConnectionSpec._osm_token) } ); diff --git a/test/OsmObject.spec.ts b/test/OsmObject.spec.ts index 9cf60e354c..1e0cd3707b 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..7f42577a2d 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 4919914cc7..96b49d9450 100644 --- a/test/ReplaceGeometry.spec.ts +++ b/test/ReplaceGeometry.spec.ts @@ -1,14 +1,338 @@ import T from "./TestHelper"; import {Utils} from "../Utils"; +import ReplaceGeometryAction from "../Logic/Osm/Actions/ReplaceGeometryAction"; +import * as grb from "../assets/themes/grb_import/grb.json" +import LayoutConfig from "../Models/ThemeConfig/LayoutConfig"; +import State from "../State"; +import {BBox} from "../Logic/BBox"; +import Minimap from "../UI/Base/Minimap"; export default class ReplaceGeometrySpec extends T { - constructor() { - super("ReplaceGeometry", [ - ["Simple house replacement", async () => { - const coordinates = <[number, number][]>[[ - 3.216690793633461, - 51.21474084112525 + + private static readonly grbStripped = { + "id": "grb", + "title": { + "nl": "GRB import helper" + }, + "description": "Smaller version of the GRB theme", + "language": [ + "nl", + "en" + ], + socialImage: "img.jpg", + "version": "0", + "startLat": 51.0249, + "startLon": 4.026489, + "startZoom": 9, + "clustering": false, + "overrideAll": { + "minzoom": 19 + }, + "layers": [ + { + "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", + "_is_part_of_grb_building=feat.get('parent_ways')?.some(p => p['source:geometry:ref'] !== undefined) ?? false", + "_is_part_of_building_passage=feat.get('parent_ways')?.some(p => p.tunnel === 'building_passage') ?? false", + "_is_part_of_highway=!feat.get('is_part_of_building_passage') && (feat.get('parent_ways')?.some(p => p.highway !== undefined && p.highway !== '') ?? false)", + "_is_part_of_landuse=feat.get('parent_ways')?.some(p => (p.landuse !== undefined && p.landuse !== '') || (p.natural !== undefined && p.natural !== '')) ?? false", + "_moveable=feat.get('_is_part_of_building') && !feat.get('_is_part_of_grb_building')" + ], + "mapRendering": [ + { + "icon": "square:#cc0", + "iconSize": "5,5,center", + "location": [ + "point" + ] + } + ], + "passAllFeatures": true + } + }, + { + "id": "osm-buildings", + "name": "All OSM-buildings", + "source": { + "osmTags": "building~*", + "maxCacheAge": 0 + }, + "calculatedTags": [ + "_surface:strict:=feat.get('_surface')" ], + "mapRendering": [ + { + "width": { + "render": "2", + "mappings": [ + { + "if": "fixme~*", + "then": "5" + } + ] + }, + "color": { + "render": "#00c", + "mappings": [ + { + "if": "fixme~*", + "then": "#ff00ff" + }, + { + "if": "building=house", + "then": "#a00" + }, + { + "if": "building=shed", + "then": "#563e02" + }, + { + "if": { + "or": [ + "building=garage", + "building=garages" + ] + }, + "then": "#f9bfbb" + }, + { + "if": "building=yes", + "then": "#0774f2" + } + ] + } + } + ], + "title": "OSM-gebouw", + "tagRenderings": [ + { + "id": "building type", + "freeform": { + "key": "building" + }, + "render": "The building type is {building}", + "question": { + "en": "What kind of building is this?" + }, + "mappings": [ + { + "if": "building=house", + "then": "A normal house" + }, + { + "if": "building=detached", + "then": "A house detached from other building" + }, + { + "if": "building=semidetached_house", + "then": "A house sharing only one wall with another house" + }, + { + "if": "building=apartments", + "then": "An apartment building - highrise for living" + }, + { + "if": "building=office", + "then": "An office building - highrise for work" + }, + { + "if": "building=apartments", + "then": "An apartment building" + }, + { + "if": "building=shed", + "then": "A small shed, e.g. in a garden" + }, + { + "if": "building=garage", + "then": "A single garage to park a car" + }, + { + "if": "building=garages", + "then": "A building containing only garages; typically they are all identical" + }, + { + "if": "building=yes", + "then": "A building - no specification" + } + ] + }, + { + "id": "grb-housenumber", + "render": { + "nl": "Het huisnummer is {addr:housenumber}" + }, + "question": { + "nl": "Wat is het huisnummer?" + }, + "freeform": { + "key": "addr:housenumber" + }, + "mappings": [ + { + "if": { + "and": [ + "not:addr:housenumber=yes", + "addr:housenumber=" + ] + }, + "then": { + "nl": "Geen huisnummer" + } + } + ] + }, + { + "id": "grb-unit", + "question": "Wat is de wooneenheid-aanduiding?", + "render": { + "nl": "De wooneenheid-aanduiding is {addr:unit} " + }, + "freeform": { + "key": "addr:unit" + }, + "mappings": [ + { + "if": "addr:unit=", + "then": "Geen wooneenheid-nummer" + } + ] + }, + { + "id": "grb-street", + "render": { + "nl": "De straat is {addr:street}" + }, + "freeform": { + "key": "addr:street" + }, + "question": { + "nl": "Wat is de straat?" + } + }, + { + "id": "grb-fixme", + "render": { + "nl": "De fixme is {fixme}" + }, + "question": { + "nl": "Wat zegt de fixme?" + }, + "freeform": { + "key": "fixme" + }, + "mappings": [ + { + "if": { + "and": [ + "fixme=" + ] + }, + "then": { + "nl": "Geen fixme" + } + } + ] + }, + { + "id": "grb-min-level", + "render": { + "nl": "Dit gebouw begint maar op de {building:min_level} verdieping" + }, + "question": { + "nl": "Hoeveel verdiepingen ontbreken?" + }, + "freeform": { + "key": "building:min_level", + "type": "pnat" + } + }, + "all_tags" + ], + "filter": [ + { + "id": "has-fixme", + "options": [ + { + "osmTags": "fixme~*", + "question": "Heeft een FIXME" + } + ] + } + ] + }, + { + "id": "grb", + "description": "Geometry which comes from GRB with tools to import them", + "source": { + "osmTags": { + "and": [ + "HUISNR~*", + "man_made!=mast" + ] + }, + "geoJson": "https://betadata.grbosm.site/grb?bbox={x_min},{y_min},{x_max},{y_max}", + "geoJsonZoomLevel": 18, + "mercatorCrs": true, + "maxCacheAge": 0 + }, + "name": "GRB geometries", + "title": "GRB outline", + "calculatedTags": [ + "_overlaps_with_buildings=feat.overlapWith('osm-buildings').filter(f => f.feat.properties.id.indexOf('-') < 0)", + "_overlaps_with=feat.get('_overlaps_with_buildings').filter(f => f.overlap > 1 /* square meter */ )[0] ?? ''", + "_osm_obj:source:ref=feat.get('_overlaps_with')?.feat?.properties['source:geometry:ref']", + "_osm_obj:id=feat.get('_overlaps_with')?.feat?.properties?.id", + "_osm_obj:source:date=feat.get('_overlaps_with')?.feat?.properties['source:geometry:date'].replace(/\\//g, '-')", + "_osm_obj:building=feat.get('_overlaps_with')?.feat?.properties?.building", + "_osm_obj:addr:street=(feat.get('_overlaps_with')?.feat?.properties ?? {})['addr:street']", + "_osm_obj:addr:housenumber=(feat.get('_overlaps_with')?.feat?.properties ?? {})['addr:housenumber']", + "_osm_obj:surface=(feat.get('_overlaps_with')?.feat?.properties ?? {})['_surface:strict']", + + "_overlap_absolute=feat.get('_overlaps_with')?.overlap", + "_reverse_overlap_percentage=Math.round(100 * feat.get('_overlap_absolute') / feat.get('_surface'))", + "_overlap_percentage=Math.round(100 * feat.get('_overlap_absolute') / feat.get('_osm_obj:surface'))", + "_grb_ref=feat.properties['source:geometry:entity'] + '/' + feat.properties['source:geometry:oidn']", + "_imported_osm_object_found= feat.properties['_osm_obj:source:ref'] == feat.properties._grb_ref", + "_grb_date=feat.properties['source:geometry:date'].replace(/\\//g,'-')", + "_imported_osm_still_fresh= feat.properties['_osm_obj:source:date'] == feat.properties._grb_date", + "_target_building_type=feat.properties['_osm_obj:building'] === 'yes' ? feat.properties.building : (feat.properties['_osm_obj:building'] ?? feat.properties.building)", + "_building:min_level= feat.properties['fixme']?.startsWith('verdieping, correct the building tag, add building:level and building:min_level before upload in JOSM!') ? '1' : ''", + "_intersects_with_other_features=feat.intersectionsWith('generic_osm_object').map(f => \"
\" + f.feat.properties.id + \"\").join(', ')" + ], + "tagRenderings": [], + "mapRendering": [ + { + "iconSize": "50,50,center", + "icon": "./assets/themes/grb_import/housenumber_blank.svg", + "location": [ + "point", + "centroid" + ] + } + ] + } + ] + } + + + constructor() { + super([ + ["House replacement with connected node", async () => { + + Minimap.createMiniMap = () => undefined; + + const coordinates = <[number, number][]>[ + [ + 3.216690793633461, + 51.21474084112525 + ], [ 3.2167256623506546, 51.214696737309964 @@ -51,19 +375,71 @@ export default class ReplaceGeometrySpec extends T { ] ] + const targetFeature = { + type: "Feature", + properties: {}, + geometry: { + type: "Polygon", + coordinates: [coordinates] + } + } + + const wayId = "way/160909312" + Utils.injectJsonDownloadForTests( - "https://www.openstreetmap.org/api/0.6/way/160909312/full", + "https://www.openstreetmap.org/api/0.6/map.json?bbox=3.2166673243045807,51.21467321525788,3.217007964849472,51.21482442824023", { "version": "0.6", - "generator": "CGImap 0.8.5 (920083 spike-06.openstreetmap.org)", + "generator": "CGImap 0.8.6 (1549677 spike-06.openstreetmap.org)", "copyright": "OpenStreetMap and contributors", "attribution": "http://www.openstreetmap.org/copyright", "license": "http://opendatacommons.org/licenses/odbl/1-0/", + "bounds": {"minlat": 51.2146732, "minlon": 3.2166673, "maxlat": 51.2148244, "maxlon": 3.217008}, "elements": [{ + "type": "node", + "id": 1612385157, + "lat": 51.2148016, + "lon": 3.2168453, + "timestamp": "2018-04-30T12:26:00Z", + "version": 3, + "changeset": 58553478, + "user": "Pieter Vander Vennet", + "uid": 3818858 + }, { + "type": "node", + "id": 1728816256, + "lat": 51.2147111, + "lon": 3.2170233, + "timestamp": "2017-07-18T22:52:44Z", + "version": 2, + "changeset": 50391526, + "user": "catweazle67", + "uid": 1976209 + }, { + "type": "node", + "id": 1728816287, + "lat": 51.2146408, + "lon": 3.2167601, + "timestamp": "2021-10-29T16:24:43Z", + "version": 3, + "changeset": 113131915, + "user": "Pieter Vander Vennet", + "uid": 3818858 + }, { "type": "node", "id": 1728823481, - "lat": 51.2146969, - "lon": 3.2167247, + "lat": 51.2146968, + "lon": 3.2167242, + "timestamp": "2021-11-02T23:37:11Z", + "version": 5, + "changeset": 113305401, + "user": "Pieter Vander Vennet", + "uid": 3818858 + }, { + "type": "node", + "id": 1728823499, + "lat": 51.2147127, + "lon": 3.2170302, "timestamp": "2017-07-18T22:52:45Z", "version": 2, "changeset": 50391526, @@ -71,9 +447,9 @@ export default class ReplaceGeometrySpec extends T { "uid": 1976209 }, { "type": "node", - "id": 1728823483, - "lat": 51.2147409, - "lon": 3.216693, + "id": 1728823501, + "lat": 51.2148696, + "lon": 3.2168941, "timestamp": "2017-07-18T22:52:45Z", "version": 2, "changeset": 50391526, @@ -84,6 +460,16 @@ export default class ReplaceGeometrySpec extends T { "id": 1728823514, "lat": 51.2147863, "lon": 3.2168551, + "timestamp": "2021-11-02T23:37:11Z", + "version": 5, + "changeset": 113305401, + "user": "Pieter Vander Vennet", + "uid": 3818858 + }, { + "type": "node", + "id": 1728823522, + "lat": 51.2148489, + "lon": 3.2169012, "timestamp": "2017-07-18T22:52:45Z", "version": 2, "changeset": 50391526, @@ -91,19 +477,89 @@ export default class ReplaceGeometrySpec extends T { "uid": 1976209 }, { "type": "node", - "id": 1728823549, - "lat": 51.2147399, - "lon": 3.2168871, + "id": 1728823523, + "lat": 51.2147578, + "lon": 3.2169995, + "timestamp": "2017-07-18T22:52:45Z", + "version": 2, + "changeset": 50391526, + "user": "catweazle67", + "uid": 1976209 + }, { + "type": "node", + "id": 1728823543, + "lat": 51.2148075, + "lon": 3.2166445, + "timestamp": "2017-07-18T22:52:46Z", + "version": 3, + "changeset": 50391526, + "user": "catweazle67", + "uid": 1976209 + }, { + "type": "node", + "id": 1728823544, + "lat": 51.2148553, + "lon": 3.2169315, "timestamp": "2017-07-18T22:52:46Z", "version": 2, "changeset": 50391526, "user": "catweazle67", "uid": 1976209 + }, { + "type": "node", + "id": 1728823549, + "lat": 51.2147401, + "lon": 3.2168877, + "timestamp": "2021-11-02T23:37:11Z", + "version": 5, + "changeset": 113305401, + "user": "Pieter Vander Vennet", + "uid": 3818858 + }, { + "type": "node", + "id": 4978288376, + "lat": 51.2147306, + "lon": 3.2168928, + "timestamp": "2017-07-18T22:52:21Z", + "version": 1, + "changeset": 50391526, + "user": "catweazle67", + "uid": 1976209 }, { "type": "node", "id": 4978288381, "lat": 51.2147638, "lon": 3.2168856, + "timestamp": "2021-11-02T23:37:11Z", + "version": 4, + "changeset": 113305401, + "user": "Pieter Vander Vennet", + "uid": 3818858 + }, { + "type": "node", + "id": 4978288382, + "lat": 51.2148189, + "lon": 3.216912, + "timestamp": "2017-07-18T22:52:21Z", + "version": 1, + "changeset": 50391526, + "user": "catweazle67", + "uid": 1976209 + }, { + "type": "node", + "id": 4978288385, + "lat": 51.2148835, + "lon": 3.2170623, + "timestamp": "2017-07-18T22:52:21Z", + "version": 1, + "changeset": 50391526, + "user": "catweazle67", + "uid": 1976209 + }, { + "type": "node", + "id": 4978288387, + "lat": 51.2148904, + "lon": 3.2171037, "timestamp": "2017-07-18T22:52:21Z", "version": 1, "changeset": 50391526, @@ -112,28 +568,48 @@ export default class ReplaceGeometrySpec extends T { }, { "type": "node", "id": 4978289383, - "lat": 51.2147676, - "lon": 3.2169973, - "timestamp": "2017-07-18T22:52:21Z", - "version": 1, - "changeset": 50391526, - "user": "catweazle67", - "uid": 1976209 + "lat": 51.2147678, + "lon": 3.2169969, + "timestamp": "2021-11-02T23:37:11Z", + "version": 4, + "changeset": 113305401, + "user": "Pieter Vander Vennet", + "uid": 3818858 }, { "type": "node", "id": 4978289384, - "lat": 51.2147683, + "lat": 51.2147684, "lon": 3.2168674, - "timestamp": "2017-07-18T22:52:21Z", - "version": 1, - "changeset": 50391526, - "user": "catweazle67", - "uid": 1976209 + "timestamp": "2021-11-02T23:37:11Z", + "version": 4, + "changeset": 113305401, + "user": "Pieter Vander Vennet", + "uid": 3818858 }, { "type": "node", "id": 4978289386, - "lat": 51.2147718, - "lon": 3.2168815, + "lat": 51.2147716, + "lon": 3.2168811, + "timestamp": "2021-11-02T23:37:11Z", + "version": 4, + "changeset": 113305401, + "user": "Pieter Vander Vennet", + "uid": 3818858 + }, { + "type": "node", + "id": 4978289388, + "lat": 51.2148115, + "lon": 3.216966, + "timestamp": "2021-11-02T23:38:13Z", + "version": 7, + "changeset": 113306325, + "user": "Pieter Vander Vennet", + "uid": 3818858 + }, { + "type": "node", + "id": 4978289391, + "lat": 51.2148019, + "lon": 3.2169194, "timestamp": "2017-07-18T22:52:21Z", "version": 1, "changeset": 50391526, @@ -141,42 +617,316 @@ export default class ReplaceGeometrySpec extends T { "uid": 1976209 }, { "type": "node", - "id": 4978289388, - "lat": 51.2147884, - "lon": 3.2169829, - "timestamp": "2017-07-18T22:52:21Z", + "id": 9219974337, + "lat": 51.2148449, + "lon": 3.2171278, + "timestamp": "2021-11-02T23:40:52Z", "version": 1, - "changeset": 50391526, - "user": "catweazle67", - "uid": 1976209 + "changeset": 113305401, + "user": "Pieter Vander Vennet", + "uid": 3818858 + }, { + "type": "node", + "id": 9219979643, + "lat": 51.2147405, + "lon": 3.216693, + "timestamp": "2021-11-02T23:37:11Z", + "version": 1, + "changeset": 113305401, + "user": "Pieter Vander Vennet", + "uid": 3818858 + }, { + "type": "node", + "id": 9219979646, + "lat": 51.2148043, + "lon": 3.2169312, + "timestamp": "2021-11-02T23:38:13Z", + "version": 2, + "changeset": 113306325, + "user": "Pieter Vander Vennet", + "uid": 3818858 + }, { + "type": "node", + "id": 9219979647, + "lat": 51.2147792, + "lon": 3.2169466, + "timestamp": "2021-11-02T23:37:11Z", + "version": 1, + "changeset": 113305401, + "user": "Pieter Vander Vennet", + "uid": 3818858 + }, { + "type": "way", + "id": 160909311, + "timestamp": "2021-12-23T12:03:37Z", + "version": 6, + "changeset": 115295690, + "user": "s8evq", + "uid": 3710738, + "nodes": [1728823481, 1728823549, 4978288376, 1728823523, 1728823499, 1728816256, 1728816287, 1728823481], + "tags": { + "addr:city": "Brugge", + "addr:country": "BE", + "addr:housenumber": "106", + "addr:postcode": "8000", + "addr:street": "Ezelstraat", + "building": "house", + "source:geometry:date": "2015-07-09", + "source:geometry:ref": "Gbg/2391617" + } }, { "type": "way", "id": 160909312, - "timestamp": "2017-07-18T22:52:30Z", - "version": 2, - "changeset": 50391526, - "user": "catweazle67", - "uid": 1976209, - "nodes": [1728823483, 1728823514, 4978289384, 4978289386, 4978288381, 4978289388, 4978289383, 1728823549, 1728823481, 1728823483], + "timestamp": "2021-11-02T23:38:13Z", + "version": 4, + "changeset": 113306325, + "user": "Pieter Vander Vennet", + "uid": 3818858, + "nodes": [9219979643, 1728823481, 1728823549, 4978289383, 4978289388, 9219979646, 9219979647, 4978288381, 4978289386, 4978289384, 1728823514, 9219979643], "tags": { "addr:city": "Brugge", "addr:country": "BE", "addr:housenumber": "108", "addr:postcode": "8000", "addr:street": "Ezelstraat", - "building": "yes" + "building": "house", + "source:geometry:date": "2018-10-02", + "source:geometry:ref": "Gbg/5926383" + } + }, { + "type": "way", + "id": 160909315, + "timestamp": "2021-12-23T12:03:37Z", + "version": 8, + "changeset": 115295690, + "user": "s8evq", + "uid": 3710738, + "nodes": [1728823543, 1728823501, 1728823522, 4978288382, 1612385157, 1728823514, 9219979643, 1728823543], + "tags": { + "addr:city": "Brugge", + "addr:country": "BE", + "addr:housenumber": "110", + "addr:postcode": "8000", + "addr:street": "Ezelstraat", + "building": "house", + "name": "La Style", + "shop": "hairdresser", + "source:geometry:date": "2015-07-09", + "source:geometry:ref": "Gbg/5260837" + } + }, { + "type": "way", + "id": 508533816, + "timestamp": "2021-12-23T12:03:37Z", + "version": 7, + "changeset": 115295690, + "user": "s8evq", + "uid": 3710738, + "nodes": [4978288387, 4978288385, 1728823544, 1728823522, 4978288382, 4978289391, 9219979646, 4978289388, 9219974337, 4978288387], + "tags": { + "building": "yes", + "source:geometry:date": "2015-07-09", + "source:geometry:ref": "Gbg/5260790" } }] } ) + Utils.injectJsonDownloadForTests( + "https://www.openstreetmap.org/api/0.6/way/160909312/full", + { + "version": "0.6", + "generator": "CGImap 0.8.6 (2407324 spike-06.openstreetmap.org)", + "copyright": "OpenStreetMap and contributors", + "attribution": "http://www.openstreetmap.org/copyright", + "license": "http://opendatacommons.org/licenses/odbl/1-0/", + "elements": [{ + "type": "node", + "id": 1728823481, + "lat": 51.2146968, + "lon": 3.2167242, + "timestamp": "2021-11-02T23:37:11Z", + "version": 5, + "changeset": 113305401, + "user": "Pieter Vander Vennet", + "uid": 3818858 + }, { + "type": "node", + "id": 1728823514, + "lat": 51.2147863, + "lon": 3.2168551, + "timestamp": "2021-11-02T23:37:11Z", + "version": 5, + "changeset": 113305401, + "user": "Pieter Vander Vennet", + "uid": 3818858 + }, { + "type": "node", + "id": 1728823549, + "lat": 51.2147401, + "lon": 3.2168877, + "timestamp": "2021-11-02T23:37:11Z", + "version": 5, + "changeset": 113305401, + "user": "Pieter Vander Vennet", + "uid": 3818858 + }, { + "type": "node", + "id": 4978288381, + "lat": 51.2147638, + "lon": 3.2168856, + "timestamp": "2021-11-02T23:37:11Z", + "version": 4, + "changeset": 113305401, + "user": "Pieter Vander Vennet", + "uid": 3818858 + }, { + "type": "node", + "id": 4978289383, + "lat": 51.2147678, + "lon": 3.2169969, + "timestamp": "2021-11-02T23:37:11Z", + "version": 4, + "changeset": 113305401, + "user": "Pieter Vander Vennet", + "uid": 3818858 + }, { + "type": "node", + "id": 4978289384, + "lat": 51.2147684, + "lon": 3.2168674, + "timestamp": "2021-11-02T23:37:11Z", + "version": 4, + "changeset": 113305401, + "user": "Pieter Vander Vennet", + "uid": 3818858 + }, { + "type": "node", + "id": 4978289386, + "lat": 51.2147716, + "lon": 3.2168811, + "timestamp": "2021-11-02T23:37:11Z", + "version": 4, + "changeset": 113305401, + "user": "Pieter Vander Vennet", + "uid": 3818858 + }, { + "type": "node", + "id": 4978289388, + "lat": 51.2148115, + "lon": 3.216966, + "timestamp": "2021-11-02T23:38:13Z", + "version": 7, + "changeset": 113306325, + "user": "Pieter Vander Vennet", + "uid": 3818858 + }, { + "type": "node", + "id": 9219979643, + "lat": 51.2147405, + "lon": 3.216693, + "timestamp": "2021-11-02T23:37:11Z", + "version": 1, + "changeset": 113305401, + "user": "Pieter Vander Vennet", + "uid": 3818858 + }, { + "type": "node", + "id": 9219979646, + "lat": 51.2148043, + "lon": 3.2169312, + "timestamp": "2021-11-02T23:38:13Z", + "version": 2, + "changeset": 113306325, + "user": "Pieter Vander Vennet", + "uid": 3818858 + }, { + "type": "node", + "id": 9219979647, + "lat": 51.2147792, + "lon": 3.2169466, + "timestamp": "2021-11-02T23:37:11Z", + "version": 1, + "changeset": 113305401, + "user": "Pieter Vander Vennet", + "uid": 3818858 + }, { + "type": "way", + "id": 160909312, + "timestamp": "2021-11-02T23:38:13Z", + "version": 4, + "changeset": 113306325, + "user": "Pieter Vander Vennet", + "uid": 3818858, + "nodes": [9219979643, 1728823481, 1728823549, 4978289383, 4978289388, 9219979646, 9219979647, 4978288381, 4978289386, 4978289384, 1728823514, 9219979643], + "tags": { + "addr:city": "Brugge", + "addr:country": "BE", + "addr:housenumber": "108", + "addr:postcode": "8000", + "addr:street": "Ezelstraat", + "building": "house", + "source:geometry:date": "2018-10-02", + "source:geometry:ref": "Gbg/5926383" + } + }] + } + ) + Utils.injectJsonDownloadForTests("https://raw.githubusercontent.com/pietervdvn/MapComplete-data/main/latlon2country/0.0.0.json", "be") - const wayId = "way/160909312" - const url = `https://www.openstreetmap.org/api/0.6/${wayId}/full`; - const rawData = await Utils.downloadJsonCached(url, 1000) + const layout = new LayoutConfig(ReplaceGeometrySpec.grbStripped) - }] + const state = new State(layout) + State.state = state; + const bbox = new BBox( + [[ + 3.2166673243045807, + 51.21467321525788 + ], + [ + 3.217007964849472, + 51.21482442824023 + ] + ]) + 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" + } + ) + + const closestIds = await action.GetClosestIds() + T.listIdentical( + [9219979643, + 1728823481, + 4978289383, + 4978289388, + 9219979646, + 9219979647, + 4978288381, + 4978289386, + 4978289384, + 1728823514, + undefined], + closestIds.closestIds + ); + + T.equals(1, closestIds.reprojectedNodes.size, "Expected only a single reprojected node"); + const reproj = closestIds.reprojectedNodes.get(1728823549) + T.equals(1, reproj.projectAfterIndex) + T.equals(3.2168880864669203, reproj.newLon); + T.equals(51.214739524104694, reproj.newLat); + T.equals(0, closestIds.detachedNodes.size) + const changes = await action.Perform(state.changes) + T.listIdentical([[3.216690793633461, 51.21474084112525], [3.2167256623506546, 51.214696737309964], [3.2168880864669203, 51.214739524104694], [3.2169999182224274, 51.214768983537674], [3.2169650495052338, 51.21480720678671], [3.2169368863105774, 51.21480090625335], [3.2169489562511444, 51.21478074454077], [3.216886594891548, 51.214765203214625], [3.2168812304735184, 51.21477192378873], [3.2168644666671753, 51.214768983537674], [3.2168537378311157, 51.21478746511261], [3.216690793633461, 51.21474084112525]], + changes[11].changes["coordinates"]) + + }], ]); } } \ No newline at end of file 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 0180a15120..0428115d8b 100644 --- a/test/Tag.spec.ts +++ b/test/Tag.spec.ts @@ -10,13 +10,10 @@ import {And} from "../Logic/Tags/And"; import {TagUtils} from "../Logic/Tags/TagUtils"; import TagRenderingConfig from "../Models/ThemeConfig/TagRenderingConfig"; - -Utils.runningFromConsole = true; - export default class TagSpec extends T { constructor() { - super("tag", [ + super([ ["Tag replacement works in translation", () => { const tr = new Translation({ "en": "Test {key} abc" @@ -115,6 +112,12 @@ export default class TagSpec extends T { equal(compare.matchesProperties({"key": "5"}), true); equal(compare.matchesProperties({"key": "4.2"}), false); + const importMatch = TagUtils.Tag("tags~(^|.*;)amenity=public_bookcase($|;.*)") + equal(importMatch.matchesProperties({"tags": "amenity=public_bookcase;name=test"}), true) + equal(importMatch.matchesProperties({"tags": "amenity=public_bookcase"}), true) + equal(importMatch.matchesProperties({"tags": "name=test;amenity=public_bookcase"}), true) + equal(importMatch.matchesProperties({"tags": "amenity=bench"}), false) + })], ["Is equivalent test", (() => { @@ -519,7 +522,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 e6dc4f9e7c..37f4082200 100644 --- a/test/TestAll.ts +++ b/test/TestAll.ts @@ -14,60 +14,90 @@ import WikidataSpecTest from "./Wikidata.spec.test"; 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"; +import ValidatedTextFieldTranslationsSpec from "./ValidatedTextFieldTranslations.spec"; +import CreateCacheSpec from "./CreateCache.spec"; +import CodeQualitySpec from "./CodeQuality.spec"; +import ImportMultiPolygonSpec from "./ImportMultiPolygon.spec"; -ScriptUtils.fixUtils() -const allTests = [ - new OsmObjectSpec(), - new TagSpec(), - new ImageAttributionSpec(), - new GeoOperationsSpec(), - new ThemeSpec(), - new UtilsSpec(), - new UnitsSpec(), - new RelationSplitHandlerSpec(), - new SplitActionSpec(), - new TileFreshnessCalculatorSpec(), - new WikidataSpecTest(), - new ImageProviderSpec(), - new ActorsSpec(), - new ReplaceGeometrySpec() -] +async function main() { -Utils.externalDownloadFunction = async (url) => { - console.error("Fetching ", url, "blocked in tests, use Utils.injectJsonDownloadForTests") - const data = await ScriptUtils.DownloadJSON(url) - console.log("\n\n ----------- \nBLOCKED DATA\n Utils.injectJsonDownloadForTests(\n" + - " ", JSON.stringify(url), ", \n", - " ", JSON.stringify(data), "\n )\n------------------\n\n") - throw "Detected internet access for URL " + url + ", please inject it with Utils.injectJsonDownloadForTests" -} + const allTests: T[] = [ + new OsmObjectSpec(), + new TagSpec(), + new ImageAttributionSpec(), + new GeoOperationsSpec(), + new ThemeSpec(), + new UtilsSpec(), + new UnitsSpec(), + new RelationSplitHandlerSpec(), + new SplitActionSpec(), + new TileFreshnessCalculatorSpec(), + new WikidataSpecTest(), + new ImageProviderSpec(), + new ActorsSpec(), + new ReplaceGeometrySpec(), + new LegacyThemeLoaderSpec(), + new CreateNoteImportLayerSpec(), + new ValidatedTextFieldTranslationsSpec(), + new CreateCacheSpec(), + new CodeQualitySpec(), + new ImportMultiPolygonSpec() + ] + ScriptUtils.fixUtils(); + const realDownloadFunc = Utils.externalDownloadFunction; -let args = [...process.argv] -args.splice(0, 2) -args = args.map(a => a.toLowerCase()) - -const allFailures: { testsuite: string, name: string, msg: string } [] = [] -let testsToRun = allTests -if (args.length > 0) { - args = args.map(a => a.toLowerCase()) - 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(", ") -} - -for (let i = 0; i < testsToRun.length; i++) { - const test = testsToRun[i]; - console.log(" Running test", i, "/", testsToRun.length, test.name) - allFailures.push(...(test.Run() ?? [])) - console.log("OK!") -} -if (allFailures.length > 0) { - for (const failure of allFailures) { - console.error(" !! " + failure.testsuite + "." + failure.name + " failed due to: " + failure.msg) + Utils.externalDownloadFunction = async (url) => { + console.error("Fetching ", url, "blocked in tests, use Utils.injectJsonDownloadForTests") + const data = await realDownloadFunc(url) + console.log("\n\n ----------- \nBLOCKED DATA\n Utils.injectJsonDownloadForTests(\n" + + " ", JSON.stringify(url), ", \n", + " ", JSON.stringify(data), "\n )\n------------------\n\n") + throw "Detected internet access for URL " + url + ", please inject it with Utils.injectJsonDownloadForTests" } - throw "Some test failed" + + let args = [...process.argv] + args.splice(0, 2) + args = args.map(a => a.toLowerCase().replace(/"/g, "")) + + const allFailures: { testsuite: string, name: string, msg: string } [] = [] + let testsToRun = allTests + if (args.length > 0) { + 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) + console.log("Only running test "+testsToRun.join(", ")) + } + + if (testsToRun.length == 0) { + 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++) { + const test = testsToRun[i]; + console.log(" Running test", i, "/", testsToRun.length, test.name) + + allFailures.push(...(await test.Run() ?? [])) + console.log("OK!") + } + if (allFailures.length > 0) { + for (const failure of allFailures) { + console.error(" !! " + failure.testsuite + "." + failure.name + " failed due to: " + failure.msg) + } + throw "Some test failed" + } + console.log("All tests successful: ", testsToRun.map(t => t.name).join(", ")) + } -console.log("All tests successful: ", testsToRun.map(t => t.name).join(", ")) + +main() \ No newline at end of file diff --git a/test/TestHelper.ts b/test/TestHelper.ts index 3e31130f29..c29d68a9ac 100644 --- a/test/TestHelper.ts +++ b/test/TestHelper.ts @@ -1,10 +1,10 @@ export default class T { public readonly name: string; - private readonly _tests: [string, (() => void)][]; + private readonly _tests: [string, (() => (void | Promise))][]; - constructor(testsuite: string, tests: [string, () => void][]) { - this.name = testsuite + constructor(tests: [string, () => (Promise | void)][]) { + this.name = this.constructor.name; this._tests = tests; } @@ -45,7 +45,9 @@ export default class T { throw `ListIdentical failed: expected a list of length ${expected.length} but got a list of length ${actual.length}` } for (let i = 0; i < expected.length; i++) { - if (expected[i] !== actual[i]) { + if (expected[i] !== undefined && expected[i]["length"] !== undefined) { + T.listIdentical(expected[i], actual[i]) + } else if (expected[i] !== actual[i]) { throw `ListIdentical failed at index ${i}: expected ${expected[i]} but got ${actual[i]}` } } @@ -56,11 +58,20 @@ export default class T { * Returns an empty list if successful * @constructor */ - public Run(): ({ testsuite: string, name: string, msg: string } []) { + public async Run(): Promise<{ testsuite: string, name: string, msg: string } []> { const failures: { testsuite: string, name: string, msg: string } [] = [] for (const [name, test] of this._tests) { try { - test(); + const r = test() + if (r instanceof Promise) { + try { + await r + } catch (e) { + console.log("ASYNC ERROR: ", e, e.stack) + failures.push({testsuite: this.name, name: name, msg: "" + e}); + } + } + } catch (e) { console.log("ERROR: ", e, e.stack) failures.push({testsuite: this.name, name: name, msg: "" + e}); diff --git a/test/Theme.spec.ts b/test/Theme.spec.ts index cb6cc27565..e331af3a00 100644 --- a/test/Theme.spec.ts +++ b/test/Theme.spec.ts @@ -1,47 +1,54 @@ 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"; - -Utils.runningFromConsole = true; +import * as bookcaseLayer from "../assets/generated/layers/public_bookcase.json" +import {TagRenderingConfigJson} from "../Models/ThemeConfig/Json/TagRenderingConfigJson"; +import {LayerConfigJson} from "../Models/ThemeConfig/Json/LayerConfigJson"; +import Constants from "../Models/Constants"; +import {PrepareTheme} from "../Models/ThemeConfig/Conversion/PrepareTheme"; export default class ThemeSpec extends T { constructor() { - super("theme", - [ - ["Nested overrides work", () => { + super([ + ["Nested overrides work", () => { - const themeConfigJson: LayoutConfigJson = { - description: "Descr", - icon: "", - language: ["en"], - layers: [ - { - builtin: "public_bookcase", - override: { - source: { - geoJson: "xyz" - } + let themeConfigJson: LayoutConfigJson = { + description: "Descr", + icon: "", + layers: [ + { + builtin: "public_bookcase", + override: { + source: { + geoJson: "xyz" } } - ], - maintainer: "", - startLat: 0, - startLon: 0, - startZoom: 0, - title: { - en: "Title" - }, - version: "", - id: "test" - } - - const themeConfig = new LayoutConfig(themeConfigJson); - assert.equal("xyz", themeConfig.layers[0].source.geojsonSource) + } + ], + maintainer: "", + startLat: 0, + startLon: 0, + startZoom: 0, + title: { + en: "Title" + }, + 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({ + tagRenderings: new Map(), + sharedLayers: sharedLayers + }).convertStrict( 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..009ba2b90c 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..a0851fd8b2 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..0d0d7ebf4d 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/ValidatedTextFieldTranslations.spec.ts b/test/ValidatedTextFieldTranslations.spec.ts new file mode 100644 index 0000000000..1bb2827492 --- /dev/null +++ b/test/ValidatedTextFieldTranslations.spec.ts @@ -0,0 +1,27 @@ +import T from "./TestHelper"; +import ValidatedTextField from "../UI/Input/ValidatedTextField"; +import Translations from "../UI/i18n/Translations"; + +export default class ValidatedTextFieldTranslationsSpec extends T { + constructor() { + super([ + ["Test all", () => { + const ts = Translations.t.validation; + console.log("Hello world!") + const allErrors = Array.from(ValidatedTextField.allTypes.keys()).map(key => { + const errors = [] + const t = ts[key] + if (t === undefined) { + errors.push("No tranlations at all for " + key) + } + return errors; + }) + const errs = [].concat(...allErrors) + if (errs.length > 0) { + errs.forEach(e => console.log(e)) + // throw errs.join("\n") + } + }] + ]); + } +} \ No newline at end of file diff --git a/test/Wikidata.spec.test.ts b/test/Wikidata.spec.test.ts index cf636ffc2f..903da0ad7a 100644 --- a/test/Wikidata.spec.test.ts +++ b/test/Wikidata.spec.test.ts @@ -7255,534 +7255,73 @@ export default class WikidataSpecTest extends T { } constructor() { - super("Wikidata", - [ - ["Download Lion", async () => { + super([ + ["Download Lion", async () => { + + Utils.injectJsonDownloadForTests( + "https://www.wikidata.org/wiki/Special:EntityData/Q140.json", + WikidataSpecTest.Q140 + ) + + + const wikidata = await Wikidata.LoadWikidataEntryAsync("Q140") + T.equals(2, wikidata.claims.get("P18").size) + + + }], + ["download wikidata", + async () => { Utils.injectJsonDownloadForTests( - "https://www.wikidata.org/wiki/Special:EntityData/Q140.json", - WikidataSpecTest.Q140 - ) - - - const wikidata = await Wikidata.LoadWikidataEntryAsync("Q140") - T.equals(2, wikidata.claims.get("P18").size) - - - }], - ["download wikidata", - async () => { - - Utils.injectJsonDownloadForTests( - "https://www.wikidata.org/wiki/Special:EntityData/Q14517013.json", - { - "entities": { - "Q14517013": { - "pageid": 16187848, - "ns": 0, - "title": "Q14517013", - "lastrevid": 1408823680, - "modified": "2021-04-26T07:35:01Z", - "type": "item", - "id": "Q14517013", - "labels": { - "nl": {"language": "nl", "value": "Vredesmolen"}, - "en": {"language": "en", "value": "Peace Mill"} - }, - "descriptions": {"nl": {"language": "nl", "value": "molen in West-Vlaanderen"}}, - "aliases": {}, - "claims": { - "P625": [{ - "mainsnak": { - "snaktype": "value", - "property": "P625", - "hash": "d86538f14e8cca00bbf30fb029829aacbc6903a0", - "datavalue": { - "value": { - "latitude": 50.99444, - "longitude": 2.92528, - "altitude": null, - "precision": 0.0001, - "globe": "http://www.wikidata.org/entity/Q2" - }, "type": "globecoordinate" - }, - "datatype": "globe-coordinate" - }, - "type": "statement", - "id": "Q14517013$DBFBFD69-F54D-4C92-A7F4-A44F876E5776", - "rank": "normal", - "references": [{ - "hash": "732ec1c90a6f0694c7db9a71bf09fe7f2b674172", - "snaks": { - "P143": [{ - "snaktype": "value", - "property": "P143", - "hash": "9123b0de1cc9c3954366ba797d598e4e1ea4146f", - "datavalue": { - "value": { - "entity-type": "item", - "numeric-id": 10000, - "id": "Q10000" - }, "type": "wikibase-entityid" - }, - "datatype": "wikibase-item" - }] - }, - "snaks-order": ["P143"] - }] - }], - "P17": [{ - "mainsnak": { - "snaktype": "value", - "property": "P17", - "hash": "c2859f311753176d6bdfa7da54ceeeac7acb52c8", - "datavalue": { - "value": { - "entity-type": "item", - "numeric-id": 31, - "id": "Q31" - }, "type": "wikibase-entityid" - }, - "datatype": "wikibase-item" - }, - "type": "statement", - "id": "Q14517013$C12E4DA5-44E1-41ED-BF3D-C84381246429", - "rank": "normal" - }], - "P18": [{ - "mainsnak": { - "snaktype": "value", - "property": "P18", - "hash": "af765166ecaa7d01ea800812b5b356886b8849a0", - "datavalue": { - "value": "Klerken Vredesmolen R01.jpg", - "type": "string" - }, - "datatype": "commonsMedia" - }, - "type": "statement", - "id": "Q14517013$5291801E-11BE-4CE7-8F42-D0D6A120F390", - "rank": "normal" - }], - "P2867": [{ - "mainsnak": { - "snaktype": "value", - "property": "P2867", - "hash": "b1c627972ba2cc71e3567d2fb56cb5f90dd64007", - "datavalue": {"value": "893", "type": "string"}, - "datatype": "external-id" - }, - "type": "statement", - "id": "Q14517013$2aff9dcd-4d24-cd92-b5af-f6268425695f", - "rank": "normal" - }], - "P31": [{ - "mainsnak": { - "snaktype": "value", - "property": "P31", - "hash": "9b48263bb51c506553aac2281ae331353b5c9002", - "datavalue": { - "value": { - "entity-type": "item", - "numeric-id": 38720, - "id": "Q38720" - }, "type": "wikibase-entityid" - }, - "datatype": "wikibase-item" - }, - "type": "statement", - "id": "Q14517013$46dd9d89-4999-eee6-20a4-c4f6650b1d9c", - "rank": "normal" - }, { - "mainsnak": { - "snaktype": "value", - "property": "P31", - "hash": "a1d6f3409c57de0361c68263c9397a99dabe19ea", - "datavalue": { - "value": { - "entity-type": "item", - "numeric-id": 3851468, - "id": "Q3851468" - }, "type": "wikibase-entityid" - }, - "datatype": "wikibase-item" - }, - "type": "statement", - "id": "Q14517013$C83A8B1F-7798-493A-86C9-EC0EFEE356B3", - "rank": "normal" - }, { - "mainsnak": { - "snaktype": "value", - "property": "P31", - "hash": "ee5ba9185bdf9f0eb80b52e1cdc70c5883fac95a", - "datavalue": { - "value": { - "entity-type": "item", - "numeric-id": 623605, - "id": "Q623605" - }, "type": "wikibase-entityid" - }, - "datatype": "wikibase-item" - }, - "type": "statement", - "id": "Q14517013$CF74DC2E-6814-4755-9BAD-6EE9FEF637DD", - "rank": "normal" - }], - "P2671": [{ - "mainsnak": { - "snaktype": "value", - "property": "P2671", - "hash": "83fb38a3c6407f7d0d7bb051d1c31cea8ae26975", - "datavalue": {"value": "/g/121cb15z", "type": "string"}, - "datatype": "external-id" - }, - "type": "statement", - "id": "Q14517013$E6FFEF32-0131-42FD-9C66-1A406B68059A", - "rank": "normal" - }] - }, - "sitelinks": { - "commonswiki": { - "site": "commonswiki", - "title": "Category:Vredesmolen, Klerken", - "badges": [], - "url": "https://commons.wikimedia.org/wiki/Category:Vredesmolen,_Klerken" - }, - "nlwiki": { - "site": "nlwiki", - "title": "Vredesmolen", - "badges": [], - "url": "https://nl.wikipedia.org/wiki/Vredesmolen" - } - } - } - } - } - ) - - - const wdata = await Wikidata.LoadWikidataEntryAsync(14517013) - T.isTrue(wdata.wikisites.has("nl"), "dutch for wikisite not found") - equal("Vredesmolen", wdata.wikisites.get("nl")) - } - - ], - ["Download Prince", async () => { - - Utils.injectJsonDownloadForTests( - "https://www.wikidata.org/wiki/Special:EntityData/Q2747456.json", + "https://www.wikidata.org/wiki/Special:EntityData/Q14517013.json", { "entities": { - "Q2747456": { - "pageid": 2638026, + "Q14517013": { + "pageid": 16187848, "ns": 0, - "title": "Q2747456", - "lastrevid": 1507566187, - "modified": "2021-10-03T20:26:12Z", + "title": "Q14517013", + "lastrevid": 1408823680, + "modified": "2021-04-26T07:35:01Z", "type": "item", - "id": "Q2747456", + "id": "Q14517013", "labels": { - "nl": {"language": "nl", "value": "prins"}, - "am": {"language": "am", "value": "\u120d\u12d1\u120d"}, - "ar": {"language": "ar", "value": "\u0623\u0645\u064a\u0631"}, - "be": {"language": "be", "value": "\u043f\u0440\u044b\u043d\u0446"}, - "bg": {"language": "bg", "value": "\u043f\u0440\u0438\u043d\u0446"}, - "ca": {"language": "ca", "value": "pr\u00edncep"}, - "cs": {"language": "cs", "value": "princ"}, - "cy": {"language": "cy", "value": "tywysog"}, - "da": {"language": "da", "value": "prins"}, - "de": {"language": "de", "value": "Prinz"}, - "en": {"language": "en", "value": "prince"}, - "eo": {"language": "eo", "value": "princo"}, - "es": {"language": "es", "value": "pr\u00edncipe"}, - "fa": {"language": "fa", "value": "\u0634\u0627\u0647\u0632\u0627\u062f\u0647"}, - "fi": {"language": "fi", "value": "prinssi"}, - "fr": {"language": "fr", "value": "prince"}, - "he": {"language": "he", "value": "\u05e0\u05e1\u05d9\u05da"}, - "hr": {"language": "hr", "value": "princ"}, - "id": {"language": "id", "value": "pangeran"}, - "it": {"language": "it", "value": "principe"}, - "ja": {"language": "ja", "value": "\u30d7\u30ea\u30f3\u30b9"}, - "ka": { - "language": "ka", - "value": "\u10e3\u10e4\u10da\u10d8\u10e1\u10ec\u10e3\u10da\u10d8" - }, - "lv": {"language": "lv", "value": "princis"}, - "ms": {"language": "ms", "value": "putera"}, - "ne": { - "language": "ne", - "value": "\u0930\u093e\u091c\u0915\u0941\u092e\u093e\u0930" - }, - "nn": {"language": "nn", "value": "prins"}, - "pt": {"language": "pt", "value": "pr\u00edncipe"}, - "ro": {"language": "ro", "value": "prin\u021b"}, - "ru": {"language": "ru", "value": "\u043f\u0440\u0438\u043d\u0446"}, - "scn": {"language": "scn", "value": "pr\u00ecncipi"}, - "sk": {"language": "sk", "value": "princ"}, - "sl": {"language": "sl", "value": "princ"}, - "sv": {"language": "sv", "value": "prins"}, - "tr": {"language": "tr", "value": "prens"}, - "uk": {"language": "uk", "value": "\u043f\u0440\u0438\u043d\u0446"}, - "vec": {"language": "vec", "value": "principe"}, - "vi": {"language": "vi", "value": "v\u01b0\u01a1ng"}, - "ko": {"language": "ko", "value": "\uc655\uc790"}, - "th": {"language": "th", "value": "\u0e40\u0e08\u0e49\u0e32"}, - "la": {"language": "la", "value": "princeps"}, - "gl": {"language": "gl", "value": "pr\u00edncipe"}, - "nb": {"language": "nb", "value": "prins"}, - "el": { - "language": "el", - "value": "\u03c0\u03c1\u03af\u03b3\u03ba\u03b9\u03c0\u03b1\u03c2" - }, - "is": {"language": "is", "value": "prins"}, - "pl": {"language": "pl", "value": "ksi\u0105\u017c\u0119 (princeps)"}, - "nan": {"language": "nan", "value": "th\u00e2u-l\u00e2ng"}, - "be-tarask": { - "language": "be-tarask", - "value": "\u043f\u0440\u044b\u043d\u0446" - }, - "ur": {"language": "ur", "value": "\u0634\u06c1\u0632\u0627\u062f\u06c1"}, - "sco": {"language": "sco", "value": "prince"}, - "zh": {"language": "zh", "value": "\u738b\u7235"}, - "sr": {"language": "sr", "value": "\u043f\u0440\u0438\u043d\u0446"}, - "sh": {"language": "sh", "value": "princ"}, - "hy": { - "language": "hy", - "value": "\u0561\u0580\u0584\u0561\u0575\u0561\u0566\u0576" - }, - "et": {"language": "et", "value": "prints"}, - "bxr": { - "language": "bxr", - "value": "\u0445\u0430\u043d \u0445\u04af\u0431\u04af\u04af\u043d" - }, - "fy": {"language": "fy", "value": "prins"}, - "diq": {"language": "diq", "value": "prens"}, - "ba": {"language": "ba", "value": "\u043f\u0440\u0438\u043d\u0446"}, - "eu": {"language": "eu", "value": "printze"}, - "gd": {"language": "gd", "value": "prionnsa"}, - "gu": {"language": "gu", "value": "\u0a95\u0ac1\u0a82\u0ab5\u0ab0"}, - "lb": {"language": "lb", "value": "Pr\u00ebnz"}, - "ga": {"language": "ga", "value": "prionsa"}, - "hu": {"language": "hu", "value": "herceg"}, - "su": {"language": "su", "value": "pang\u00e9ran"}, - "ast": {"language": "ast", "value": "pr\u00edncipe"}, - "rmy": {"language": "rmy", "value": "rayon"}, - "yue": {"language": "yue", "value": "\u89aa\u738b"}, - "jv": {"language": "jv", "value": "pang\u00e9ran"}, - "zh-hant": {"language": "zh-hant", "value": "\u738b\u7235"}, - "se": {"language": "se", "value": "prinsa"}, - "smj": {"language": "smj", "value": "prinssa"}, - "smn": {"language": "smn", "value": "prinss\u00e2"}, - "sms": {"language": "sms", "value": "prinss"}, - "az": {"language": "az", "value": "Prens"}, - "wuu": {"language": "wuu", "value": "\u738b\u7235"}, - "yi": {"language": "yi", "value": "\u05e4\u05e8\u05d9\u05e0\u05e5"} - }, - "descriptions": { - "fr": {"language": "fr", "value": "titre de noblesse"}, - "es": {"language": "es", "value": "t\u00edtulo nobiliario"}, - "en": { - "language": "en", - "value": "son of a prince, king, queen, emperor or empress, or other high-ranking person (such as a grand duke)" - }, - "el": { - "language": "el", - "value": "\u03c4\u03af\u03c4\u03bb\u03bf\u03c2 \u03b5\u03c5\u03b3\u03b5\u03bd\u03b5\u03af\u03b1\u03c2" - }, - "de": { - "language": "de", - "value": "Adels-Titel, m\u00e4nnliches Mitglied der K\u00f6nigsfamilie" - }, - "pl": {"language": "pl", "value": "tytu\u0142 szlachecki"}, - "ca": {"language": "ca", "value": "t\u00edtol de noblesa"}, - "vi": { - "language": "vi", - "value": "con trai c\u1ee7a ho\u00e0ng t\u1eed, vua, ho\u00e0ng h\u1eadu, ho\u00e0ng \u0111\u1ebf, ho\u00e0ng h\u1eadu ho\u1eb7c nh\u1eefng ng\u01b0\u1eddi c\u00f3 \u0111\u1ecba v\u1ecb cao kh\u00e1c" - }, - "da": {"language": "da", "value": "kongelig titel"}, - "eu": {"language": "eu", "value": "noblezia titulu"}, - "hu": {"language": "hu", "value": "nemesi c\u00edm"}, - "zh": {"language": "zh", "value": "\u8cb4\u65cf\u982d\u929c"}, - "ar": { - "language": "ar", - "value": "\u0644\u0642\u0628 \u0646\u0628\u064a\u0644" - }, - "ast": {"language": "ast", "value": "t\u00edtulu de nobleza"}, - "ru": {"language": "ru", "value": "\u0442\u0438\u0442\u0443\u043b"}, - "be-tarask": { - "language": "be-tarask", - "value": "\u0448\u043b\u044f\u0445\u0435\u0446\u043a\u0456 \u0442\u044b\u0442\u0443\u043b" - }, - "zh-hant": {"language": "zh-hant", "value": "\u8cb4\u65cf\u982d\u929c"}, - "it": { - "language": "it", - "value": "figlio di un principe, re, regina, imperatore o imperatrice o altra persona di alto rango (come un granduca)" - }, - "nl": { - "language": "nl", - "value": "zoon van een prins(es), koning(in), keizer(in) of andere persoon met een adellijke rang (zoals een groothertog)" - }, - "ro": { - "language": "ro", - "value": "titlu nobiliar acordat \u00een general membrilor unei familii imperiale, regale, princiare etc." - }, - "lb": {"language": "lb", "value": "Adelstitel"}, - "id": { - "language": "id", - "value": "putra seorang pangeran, raja, ratu, kaisar atau permaisuri, atau orang berpangkat tinggi lainnya (seperti adipati agung)" - }, - "he": { - "language": "he", - "value": "\u05ea\u05d5\u05d0\u05e8 \u05d0\u05e6\u05d5\u05dc\u05d4" - }, - "fi": { - "language": "fi", - "value": "ylh\u00e4isaatelisarvo, monesti monarkin poika" - }, - "cs": { - "language": "cs", - "value": "titul potomka prince/princezny, kn\u00ed\u017eete/kn\u011b\u017eny, (velko)v\u00e9vody/v\u00e9vodkyn\u011b, kr\u00e1le/kr\u00e1lovny \u010di c\u00edsa\u0159e/c\u00edsa\u0159ovny" - }, - "uk": { - "language": "uk", - "value": "\u0434\u0438\u0442\u0438\u043d\u0430 \u043f\u0440\u0438\u043d\u0446\u0430(-\u0435\u0441\u0438), \u043a\u043e\u0440\u043e\u043b\u044f (\u043a\u043e\u0440\u043e\u043b\u0435\u0432\u0438), \u0456\u043d\u043c\u0435\u0440\u0430\u0442\u043e\u0440\u0430(-\u043a\u0438) \u0447\u0438 \u0456\u043d\u0448\u043e\u0457 \u0437\u043d\u0430\u0442\u043d\u043e\u0457 \u043e\u0441\u043e\u0431\u0438" - } - }, - "aliases": { - "es": [{"language": "es", "value": "princesa"}, { - "language": "es", - "value": "principe" - }], - "ru": [{ - "language": "ru", - "value": "\u043f\u0440\u0438\u043d\u0446\u0435\u0441\u0441\u0430" - }, {"language": "ru", "value": "\u0446\u0430\u0440\u0435\u0432\u0438\u0447"}], - "ca": [{"language": "ca", "value": "princesa"}], - "ba": [{ - "language": "ba", - "value": "\u043f\u0440\u0438\u043d\u0446\u0435\u0441\u0441\u0430" - }], - "gu": [{ - "language": "gu", - "value": "\u0aae\u0ab9\u0abe\u0ab0\u0abe\u0a9c \u0a95\u0ac1\u0a82\u0ab5\u0ab0" - }, {"language": "gu", "value": "\u0aae. \u0a95\u0ac1."}, { - "language": "gu", - "value": "\u0a8f\u0aae. \u0a95\u0ac7." - }], - "he": [{"language": "he", "value": "\u05e0\u05e1\u05d9\u05db\u05d4"}], - "de": [{"language": "de", "value": "Prinzessin"}], - "ast": [{"language": "ast", "value": "princesa"}], - "be-tarask": [{ - "language": "be-tarask", - "value": "\u043f\u0440\u044b\u043d\u0446\u044d\u0441\u0430" - }], - "nl": [{"language": "nl", "value": "prinsje"}], - "it": [{"language": "it", "value": "principessa"}], - "se": [{"language": "se", "value": "gonagasb\u00e1rdni"}], - "pl": [{"language": "pl", "value": "ksi\u0105\u017c\u0119"}], - "vi": [{"language": "vi", "value": "v\u01b0\u01a1ng t\u01b0\u1edbc"}], - "cs": [{"language": "cs", "value": "princezna"}] + "nl": {"language": "nl", "value": "Vredesmolen"}, + "en": {"language": "en", "value": "Peace Mill"} }, + "descriptions": {"nl": {"language": "nl", "value": "molen in West-Vlaanderen"}}, + "aliases": {}, "claims": { - "P31": [{ + "P625": [{ "mainsnak": { "snaktype": "value", - "property": "P31", - "hash": "a456372c8e6a681381eca31ab0662159db12ab1e", + "property": "P625", + "hash": "d86538f14e8cca00bbf30fb029829aacbc6903a0", "datavalue": { "value": { - "entity-type": "item", - "numeric-id": 355567, - "id": "Q355567" - }, "type": "wikibase-entityid" + "latitude": 50.99444, + "longitude": 2.92528, + "altitude": null, + "precision": 0.0001, + "globe": "http://www.wikidata.org/entity/Q2" + }, "type": "globecoordinate" }, - "datatype": "wikibase-item" + "datatype": "globe-coordinate" }, "type": "statement", - "id": "q2747456$ff8e76c2-47b8-d2b7-a192-9af298c36c8e", - "rank": "normal" - }, { - "mainsnak": { - "snaktype": "value", - "property": "P31", - "hash": "0ec7ed0637d631867884c8c0553e2de4b90b63ca", - "datavalue": { - "value": { - "entity-type": "item", - "numeric-id": 3320743, - "id": "Q3320743" - }, "type": "wikibase-entityid" - }, - "datatype": "wikibase-item" - }, - "type": "statement", - "id": "Q2747456$7b3a375d-48d8-18db-12db-9be699a1c34f", - "rank": "normal" - }], - "P910": [{ - "mainsnak": { - "snaktype": "value", - "property": "P910", - "hash": "ee5be4ad914a3f79dc30c6a6ac320404d7b6bf65", - "datavalue": { - "value": { - "entity-type": "item", - "numeric-id": 7214172, - "id": "Q7214172" - }, "type": "wikibase-entityid" - }, - "datatype": "wikibase-item" - }, - "type": "statement", - "id": "Q2747456$92971E9D-FA6B-4CFA-88C9-91EF27DDE2DC", - "rank": "normal" - }], - "P508": [{ - "mainsnak": { - "snaktype": "value", - "property": "P508", - "hash": "36109efdac97e7f035d386101fb85a397380f9ee", - "datavalue": {"value": "8468", "type": "string"}, - "datatype": "external-id" - }, - "type": "statement", - "id": "Q2747456$cdaad4c5-4ec8-54b2-3dac-4db04f994fda", - "rank": "normal" - }], - "P1001": [{ - "mainsnak": { - "snaktype": "somevalue", - "property": "P1001", - "hash": "be44552ae528f03d39720570854717fa0ebedcef", - "datatype": "wikibase-item" - }, - "type": "statement", - "id": "Q2747456$5eea869d-4f5d-99ee-90bb-471cccbf4b84", - "rank": "normal" - }], - "P373": [{ - "mainsnak": { - "snaktype": "value", - "property": "P373", - "hash": "e766c6be546f129979614c185bb172cd237a626a", - "datavalue": {"value": "Princes", "type": "string"}, - "datatype": "string" - }, - "type": "statement", - "id": "Q2747456$D4EEC77F-1F89-46DA-BD9E-FA15F29B686A", + "id": "Q14517013$DBFBFD69-F54D-4C92-A7F4-A44F876E5776", "rank": "normal", "references": [{ - "hash": "fa278ebfc458360e5aed63d5058cca83c46134f1", + "hash": "732ec1c90a6f0694c7db9a71bf09fe7f2b674172", "snaks": { "P143": [{ "snaktype": "value", "property": "P143", - "hash": "e4f6d9441d0600513c4533c672b5ab472dc73694", + "hash": "9123b0de1cc9c3954366ba797d598e4e1ea4146f", "datavalue": { "value": { "entity-type": "item", - "numeric-id": 328, - "id": "Q328" + "numeric-id": 10000, + "id": "Q10000" }, "type": "wikibase-entityid" }, "datatype": "wikibase-item" @@ -7791,305 +7330,785 @@ export default class WikidataSpecTest extends T { "snaks-order": ["P143"] }] }], - "P2521": [{ + "P17": [{ "mainsnak": { "snaktype": "value", - "property": "P2521", - "hash": "3ac9f3b0f1b60d0fbeac8ce587b3f74470a2ea00", - "datavalue": { - "value": {"text": "princesse", "language": "fr"}, - "type": "monolingualtext" - }, - "datatype": "monolingualtext" - }, - "type": "statement", - "id": "Q2747456$9c9a7d8e-4fea-87b1-0d41-7efd98922665", - "rank": "normal" - }, { - "mainsnak": { - "snaktype": "value", - "property": "P2521", - "hash": "8eef33f2c1e8a583fd498d380838e5f72cc06491", - "datavalue": { - "value": {"text": "princess", "language": "en"}, - "type": "monolingualtext" - }, - "datatype": "monolingualtext" - }, - "type": "statement", - "id": "Q2747456$e0281f91-4b2c-053b-9900-57d12d7d4211", - "rank": "normal" - }, { - "mainsnak": { - "snaktype": "value", - "property": "P2521", - "hash": "1a86a592d40223b73b7f0686672650d48c997806", - "datavalue": { - "value": {"text": "princino", "language": "eo"}, - "type": "monolingualtext" - }, - "datatype": "monolingualtext" - }, - "type": "statement", - "id": "Q2747456$1cb248ea-490c-b5f7-b011-06845ccac2b4", - "rank": "normal" - }, { - "mainsnak": { - "snaktype": "value", - "property": "P2521", - "hash": "abbaf9a41f548f9a7c58e38f91db34cb370c876a", - "datavalue": { - "value": {"text": "prinses", "language": "nl"}, - "type": "monolingualtext" - }, - "datatype": "monolingualtext" - }, - "type": "statement", - "id": "Q2747456$1d636ed1-4f4d-0851-ca7f-66c847e7c4be", - "rank": "normal" - }, { - "mainsnak": { - "snaktype": "value", - "property": "P2521", - "hash": "37efe8398a055d9ace75c625cdc286b9aadb5ab0", - "datavalue": { - "value": {"text": "princesa", "language": "ca"}, - "type": "monolingualtext" - }, - "datatype": "monolingualtext" - }, - "type": "statement", - "id": "Q2747456$316855ff-4047-0ffb-76fb-90057b0840ef", - "rank": "normal" - }, { - "mainsnak": { - "snaktype": "value", - "property": "P2521", - "hash": "7810d8cabaaaeb41fad675cd9c3bfb39ab41d00f", - "datavalue": { - "value": { - "text": "\u043f\u0440\u0438\u043d\u0446\u0435\u0441\u0441\u0430", - "language": "ru" - }, "type": "monolingualtext" - }, - "datatype": "monolingualtext" - }, - "type": "statement", - "id": "Q2747456$fa60cb7b-460d-c8ff-b99c-c2bf515b12a0", - "rank": "normal" - }, { - "mainsnak": { - "snaktype": "value", - "property": "P2521", - "hash": "e18f093988121762e3b247104eb626501d14ad2e", - "datavalue": { - "value": { - "text": "\u05e0\u05e1\u05d9\u05db\u05d4", - "language": "he" - }, "type": "monolingualtext" - }, - "datatype": "monolingualtext" - }, - "type": "statement", - "id": "Q2747456$03851c85-4db0-ff39-7608-1dc63852b6c8", - "rank": "normal" - }, { - "mainsnak": { - "snaktype": "value", - "property": "P2521", - "hash": "3f8c2d8b4e28c17d49cc1bff30990657e0ab485a", - "datavalue": { - "value": { - "text": "n\u1eef v\u01b0\u01a1ng", - "language": "vi" - }, "type": "monolingualtext" - }, - "datatype": "monolingualtext" - }, - "type": "statement", - "id": "Q2747456$6115764d-4391-6997-ecb2-7768f18b2b45", - "rank": "normal" - }, { - "mainsnak": { - "snaktype": "value", - "property": "P2521", - "hash": "106d96fa708baf606b060bdc8c6b545f477eee32", - "datavalue": { - "value": {"text": "Prinzessin", "language": "de"}, - "type": "monolingualtext" - }, - "datatype": "monolingualtext" - }, - "type": "statement", - "id": "Q2747456$6f2c129e-413c-dead-3404-146368643ab8", - "rank": "normal" - }, { - "mainsnak": { - "snaktype": "value", - "property": "P2521", - "hash": "69a2a841f26ab197dca7c5a6e2dd595b67e4188c", - "datavalue": { - "value": { - "text": "\u03c0\u03c1\u03b9\u03b3\u03ba\u03af\u03c0\u03b9\u03c3\u03c3\u03b1", - "language": "el" - }, "type": "monolingualtext" - }, - "datatype": "monolingualtext" - }, - "type": "statement", - "id": "Q2747456$9b901d48-4e41-ba93-344e-299c69a27ac6", - "rank": "normal" - }, { - "mainsnak": { - "snaktype": "value", - "property": "P2521", - "hash": "560ecce28fcadaf0e2b8a584519fe94ffbf25ec1", - "datavalue": { - "value": {"text": "princesa", "language": "ast"}, - "type": "monolingualtext" - }, - "datatype": "monolingualtext" - }, - "type": "statement", - "id": "Q2747456$520756e7-476d-a435-bc1c-0a56fa7851a1", - "rank": "normal" - }, { - "mainsnak": { - "snaktype": "value", - "property": "P2521", - "hash": "44f2eb3f4fee6f4b4b3b992407bda0f6caed2536", - "datavalue": { - "value": {"text": "tywysoges", "language": "cy"}, - "type": "monolingualtext" - }, - "datatype": "monolingualtext" - }, - "type": "statement", - "id": "Q2747456$698beb10-4e2c-b535-a89b-e29210f2be75", - "rank": "normal" - }, { - "mainsnak": { - "snaktype": "value", - "property": "P2521", - "hash": "006e13a77c798832882c84070fe8f76cdc48611c", - "datavalue": { - "value": { - "text": "\u0623\u0645\u064a\u0631\u0629", - "language": "ar" - }, "type": "monolingualtext" - }, - "datatype": "monolingualtext" - }, - "type": "statement", - "id": "Q2747456$b75e51e5-48e5-1f4c-d99c-d83dde03e91d", - "rank": "normal" - }, { - "mainsnak": { - "snaktype": "value", - "property": "P2521", - "hash": "25eb24e42c0a566023ceb354777cb1ec14492ef1", - "datavalue": { - "value": { - "text": "\u043f\u0440\u044b\u043d\u0446\u044d\u0441\u0430", - "language": "be-tarask" - }, "type": "monolingualtext" - }, - "datatype": "monolingualtext" - }, - "type": "statement", - "id": "Q2747456$075f0038-475e-e4ba-9801-52aac2067799", - "rank": "normal" - }, { - "mainsnak": { - "snaktype": "value", - "property": "P2521", - "hash": "e72b1dd598ce40db3f7e9b195a3e9345b4ae4ba5", - "datavalue": { - "value": {"text": "princezna", "language": "cs"}, - "type": "monolingualtext" - }, - "datatype": "monolingualtext" - }, - "type": "statement", - "id": "Q2747456$1085cbb9-4cd4-8a2f-a4c7-6f29fafea206", - "rank": "normal" - }, { - "mainsnak": { - "snaktype": "value", - "property": "P2521", - "hash": "70d88bc577587e2732cf37a66dfd0920b175211a", - "datavalue": { - "value": {"text": "prinsesse", "language": "da"}, - "type": "monolingualtext" - }, - "datatype": "monolingualtext" - }, - "type": "statement", - "id": "Q2747456$33d2e452-4ca2-8dea-4f98-242c53ef1811", - "rank": "normal" - }, { - "mainsnak": { - "snaktype": "value", - "property": "P2521", - "hash": "eebf786f7c2b0963b9db4c2876bb24c6afc4ce1c", - "datavalue": { - "value": {"text": "principessa", "language": "it"}, - "type": "monolingualtext" - }, - "datatype": "monolingualtext" - }, - "type": "statement", - "id": "Q2747456$3098804a-4758-d07f-8443-24ebe96c56ec", - "rank": "normal" - }, { - "mainsnak": { - "snaktype": "value", - "property": "P2521", - "hash": "649307549f96bfe54f16e9130f014bf018cc46c4", - "datavalue": { - "value": { - "text": "\u043f\u0440\u0438\u043d\u0446\u0435\u0441\u0430", - "language": "uk" - }, "type": "monolingualtext" - }, - "datatype": "monolingualtext" - }, - "type": "statement", - "id": "Q2747456$ff433d7c-4e07-f7c0-14af-3b3f31f8ae9a", - "rank": "normal" - }], - "P3827": [{ - "mainsnak": { - "snaktype": "value", - "property": "P3827", - "hash": "22ee9c46325acd0a1ca54f27bff5d75331211f8a", - "datavalue": {"value": "princes", "type": "string"}, - "datatype": "external-id" - }, - "type": "statement", - "id": "Q2747456$6C64B5EA-8B74-4BF6-BB90-81C28320200A", - "rank": "normal" - }], - "P1343": [{ - "mainsnak": { - "snaktype": "value", - "property": "P1343", - "hash": "eda63bed5c3d7a3460033092338ab321a2374c7f", + "property": "P17", + "hash": "c2859f311753176d6bdfa7da54ceeeac7acb52c8", "datavalue": { "value": { "entity-type": "item", - "numeric-id": 2041543, - "id": "Q2041543" + "numeric-id": 31, + "id": "Q31" }, "type": "wikibase-entityid" }, "datatype": "wikibase-item" }, "type": "statement", - "qualifiers": { - "P805": [{ + "id": "Q14517013$C12E4DA5-44E1-41ED-BF3D-C84381246429", + "rank": "normal" + }], + "P18": [{ + "mainsnak": { + "snaktype": "value", + "property": "P18", + "hash": "af765166ecaa7d01ea800812b5b356886b8849a0", + "datavalue": { + "value": "Klerken Vredesmolen R01.jpg", + "type": "string" + }, + "datatype": "commonsMedia" + }, + "type": "statement", + "id": "Q14517013$5291801E-11BE-4CE7-8F42-D0D6A120F390", + "rank": "normal" + }], + "P2867": [{ + "mainsnak": { + "snaktype": "value", + "property": "P2867", + "hash": "b1c627972ba2cc71e3567d2fb56cb5f90dd64007", + "datavalue": {"value": "893", "type": "string"}, + "datatype": "external-id" + }, + "type": "statement", + "id": "Q14517013$2aff9dcd-4d24-cd92-b5af-f6268425695f", + "rank": "normal" + }], + "P31": [{ + "mainsnak": { + "snaktype": "value", + "property": "P31", + "hash": "9b48263bb51c506553aac2281ae331353b5c9002", + "datavalue": { + "value": { + "entity-type": "item", + "numeric-id": 38720, + "id": "Q38720" + }, "type": "wikibase-entityid" + }, + "datatype": "wikibase-item" + }, + "type": "statement", + "id": "Q14517013$46dd9d89-4999-eee6-20a4-c4f6650b1d9c", + "rank": "normal" + }, { + "mainsnak": { + "snaktype": "value", + "property": "P31", + "hash": "a1d6f3409c57de0361c68263c9397a99dabe19ea", + "datavalue": { + "value": { + "entity-type": "item", + "numeric-id": 3851468, + "id": "Q3851468" + }, "type": "wikibase-entityid" + }, + "datatype": "wikibase-item" + }, + "type": "statement", + "id": "Q14517013$C83A8B1F-7798-493A-86C9-EC0EFEE356B3", + "rank": "normal" + }, { + "mainsnak": { + "snaktype": "value", + "property": "P31", + "hash": "ee5ba9185bdf9f0eb80b52e1cdc70c5883fac95a", + "datavalue": { + "value": { + "entity-type": "item", + "numeric-id": 623605, + "id": "Q623605" + }, "type": "wikibase-entityid" + }, + "datatype": "wikibase-item" + }, + "type": "statement", + "id": "Q14517013$CF74DC2E-6814-4755-9BAD-6EE9FEF637DD", + "rank": "normal" + }], + "P2671": [{ + "mainsnak": { + "snaktype": "value", + "property": "P2671", + "hash": "83fb38a3c6407f7d0d7bb051d1c31cea8ae26975", + "datavalue": {"value": "/g/121cb15z", "type": "string"}, + "datatype": "external-id" + }, + "type": "statement", + "id": "Q14517013$E6FFEF32-0131-42FD-9C66-1A406B68059A", + "rank": "normal" + }] + }, + "sitelinks": { + "commonswiki": { + "site": "commonswiki", + "title": "Category:Vredesmolen, Klerken", + "badges": [], + "url": "https://commons.wikimedia.org/wiki/Category:Vredesmolen,_Klerken" + }, + "nlwiki": { + "site": "nlwiki", + "title": "Vredesmolen", + "badges": [], + "url": "https://nl.wikipedia.org/wiki/Vredesmolen" + } + } + } + } + } + ) + + + const wdata = await Wikidata.LoadWikidataEntryAsync(14517013) + T.isTrue(wdata.wikisites.has("nl"), "dutch for wikisite not found") + equal("Vredesmolen", wdata.wikisites.get("nl")) + } + + ], + ["Download Prince", async () => { + + Utils.injectJsonDownloadForTests( + "https://www.wikidata.org/wiki/Special:EntityData/Q2747456.json", + { + "entities": { + "Q2747456": { + "pageid": 2638026, + "ns": 0, + "title": "Q2747456", + "lastrevid": 1507566187, + "modified": "2021-10-03T20:26:12Z", + "type": "item", + "id": "Q2747456", + "labels": { + "nl": {"language": "nl", "value": "prins"}, + "am": {"language": "am", "value": "\u120d\u12d1\u120d"}, + "ar": {"language": "ar", "value": "\u0623\u0645\u064a\u0631"}, + "be": {"language": "be", "value": "\u043f\u0440\u044b\u043d\u0446"}, + "bg": {"language": "bg", "value": "\u043f\u0440\u0438\u043d\u0446"}, + "ca": {"language": "ca", "value": "pr\u00edncep"}, + "cs": {"language": "cs", "value": "princ"}, + "cy": {"language": "cy", "value": "tywysog"}, + "da": {"language": "da", "value": "prins"}, + "de": {"language": "de", "value": "Prinz"}, + "en": {"language": "en", "value": "prince"}, + "eo": {"language": "eo", "value": "princo"}, + "es": {"language": "es", "value": "pr\u00edncipe"}, + "fa": {"language": "fa", "value": "\u0634\u0627\u0647\u0632\u0627\u062f\u0647"}, + "fi": {"language": "fi", "value": "prinssi"}, + "fr": {"language": "fr", "value": "prince"}, + "he": {"language": "he", "value": "\u05e0\u05e1\u05d9\u05da"}, + "hr": {"language": "hr", "value": "princ"}, + "id": {"language": "id", "value": "pangeran"}, + "it": {"language": "it", "value": "principe"}, + "ja": {"language": "ja", "value": "\u30d7\u30ea\u30f3\u30b9"}, + "ka": { + "language": "ka", + "value": "\u10e3\u10e4\u10da\u10d8\u10e1\u10ec\u10e3\u10da\u10d8" + }, + "lv": {"language": "lv", "value": "princis"}, + "ms": {"language": "ms", "value": "putera"}, + "ne": { + "language": "ne", + "value": "\u0930\u093e\u091c\u0915\u0941\u092e\u093e\u0930" + }, + "nn": {"language": "nn", "value": "prins"}, + "pt": {"language": "pt", "value": "pr\u00edncipe"}, + "ro": {"language": "ro", "value": "prin\u021b"}, + "ru": {"language": "ru", "value": "\u043f\u0440\u0438\u043d\u0446"}, + "scn": {"language": "scn", "value": "pr\u00ecncipi"}, + "sk": {"language": "sk", "value": "princ"}, + "sl": {"language": "sl", "value": "princ"}, + "sv": {"language": "sv", "value": "prins"}, + "tr": {"language": "tr", "value": "prens"}, + "uk": {"language": "uk", "value": "\u043f\u0440\u0438\u043d\u0446"}, + "vec": {"language": "vec", "value": "principe"}, + "vi": {"language": "vi", "value": "v\u01b0\u01a1ng"}, + "ko": {"language": "ko", "value": "\uc655\uc790"}, + "th": {"language": "th", "value": "\u0e40\u0e08\u0e49\u0e32"}, + "la": {"language": "la", "value": "princeps"}, + "gl": {"language": "gl", "value": "pr\u00edncipe"}, + "nb": {"language": "nb", "value": "prins"}, + "el": { + "language": "el", + "value": "\u03c0\u03c1\u03af\u03b3\u03ba\u03b9\u03c0\u03b1\u03c2" + }, + "is": {"language": "is", "value": "prins"}, + "pl": {"language": "pl", "value": "ksi\u0105\u017c\u0119 (princeps)"}, + "nan": {"language": "nan", "value": "th\u00e2u-l\u00e2ng"}, + "be-tarask": { + "language": "be-tarask", + "value": "\u043f\u0440\u044b\u043d\u0446" + }, + "ur": {"language": "ur", "value": "\u0634\u06c1\u0632\u0627\u062f\u06c1"}, + "sco": {"language": "sco", "value": "prince"}, + "zh": {"language": "zh", "value": "\u738b\u7235"}, + "sr": {"language": "sr", "value": "\u043f\u0440\u0438\u043d\u0446"}, + "sh": {"language": "sh", "value": "princ"}, + "hy": { + "language": "hy", + "value": "\u0561\u0580\u0584\u0561\u0575\u0561\u0566\u0576" + }, + "et": {"language": "et", "value": "prints"}, + "bxr": { + "language": "bxr", + "value": "\u0445\u0430\u043d \u0445\u04af\u0431\u04af\u04af\u043d" + }, + "fy": {"language": "fy", "value": "prins"}, + "diq": {"language": "diq", "value": "prens"}, + "ba": {"language": "ba", "value": "\u043f\u0440\u0438\u043d\u0446"}, + "eu": {"language": "eu", "value": "printze"}, + "gd": {"language": "gd", "value": "prionnsa"}, + "gu": {"language": "gu", "value": "\u0a95\u0ac1\u0a82\u0ab5\u0ab0"}, + "lb": {"language": "lb", "value": "Pr\u00ebnz"}, + "ga": {"language": "ga", "value": "prionsa"}, + "hu": {"language": "hu", "value": "herceg"}, + "su": {"language": "su", "value": "pang\u00e9ran"}, + "ast": {"language": "ast", "value": "pr\u00edncipe"}, + "rmy": {"language": "rmy", "value": "rayon"}, + "yue": {"language": "yue", "value": "\u89aa\u738b"}, + "jv": {"language": "jv", "value": "pang\u00e9ran"}, + "zh-hant": {"language": "zh-hant", "value": "\u738b\u7235"}, + "se": {"language": "se", "value": "prinsa"}, + "smj": {"language": "smj", "value": "prinssa"}, + "smn": {"language": "smn", "value": "prinss\u00e2"}, + "sms": {"language": "sms", "value": "prinss"}, + "az": {"language": "az", "value": "Prens"}, + "wuu": {"language": "wuu", "value": "\u738b\u7235"}, + "yi": {"language": "yi", "value": "\u05e4\u05e8\u05d9\u05e0\u05e5"} + }, + "descriptions": { + "fr": {"language": "fr", "value": "titre de noblesse"}, + "es": {"language": "es", "value": "t\u00edtulo nobiliario"}, + "en": { + "language": "en", + "value": "son of a prince, king, queen, emperor or empress, or other high-ranking person (such as a grand duke)" + }, + "el": { + "language": "el", + "value": "\u03c4\u03af\u03c4\u03bb\u03bf\u03c2 \u03b5\u03c5\u03b3\u03b5\u03bd\u03b5\u03af\u03b1\u03c2" + }, + "de": { + "language": "de", + "value": "Adels-Titel, m\u00e4nnliches Mitglied der K\u00f6nigsfamilie" + }, + "pl": {"language": "pl", "value": "tytu\u0142 szlachecki"}, + "ca": {"language": "ca", "value": "t\u00edtol de noblesa"}, + "vi": { + "language": "vi", + "value": "con trai c\u1ee7a ho\u00e0ng t\u1eed, vua, ho\u00e0ng h\u1eadu, ho\u00e0ng \u0111\u1ebf, ho\u00e0ng h\u1eadu ho\u1eb7c nh\u1eefng ng\u01b0\u1eddi c\u00f3 \u0111\u1ecba v\u1ecb cao kh\u00e1c" + }, + "da": {"language": "da", "value": "kongelig titel"}, + "eu": {"language": "eu", "value": "noblezia titulu"}, + "hu": {"language": "hu", "value": "nemesi c\u00edm"}, + "zh": {"language": "zh", "value": "\u8cb4\u65cf\u982d\u929c"}, + "ar": { + "language": "ar", + "value": "\u0644\u0642\u0628 \u0646\u0628\u064a\u0644" + }, + "ast": {"language": "ast", "value": "t\u00edtulu de nobleza"}, + "ru": {"language": "ru", "value": "\u0442\u0438\u0442\u0443\u043b"}, + "be-tarask": { + "language": "be-tarask", + "value": "\u0448\u043b\u044f\u0445\u0435\u0446\u043a\u0456 \u0442\u044b\u0442\u0443\u043b" + }, + "zh-hant": {"language": "zh-hant", "value": "\u8cb4\u65cf\u982d\u929c"}, + "it": { + "language": "it", + "value": "figlio di un principe, re, regina, imperatore o imperatrice o altra persona di alto rango (come un granduca)" + }, + "nl": { + "language": "nl", + "value": "zoon van een prins(es), koning(in), keizer(in) of andere persoon met een adellijke rang (zoals een groothertog)" + }, + "ro": { + "language": "ro", + "value": "titlu nobiliar acordat \u00een general membrilor unei familii imperiale, regale, princiare etc." + }, + "lb": {"language": "lb", "value": "Adelstitel"}, + "id": { + "language": "id", + "value": "putra seorang pangeran, raja, ratu, kaisar atau permaisuri, atau orang berpangkat tinggi lainnya (seperti adipati agung)" + }, + "he": { + "language": "he", + "value": "\u05ea\u05d5\u05d0\u05e8 \u05d0\u05e6\u05d5\u05dc\u05d4" + }, + "fi": { + "language": "fi", + "value": "ylh\u00e4isaatelisarvo, monesti monarkin poika" + }, + "cs": { + "language": "cs", + "value": "titul potomka prince/princezny, kn\u00ed\u017eete/kn\u011b\u017eny, (velko)v\u00e9vody/v\u00e9vodkyn\u011b, kr\u00e1le/kr\u00e1lovny \u010di c\u00edsa\u0159e/c\u00edsa\u0159ovny" + }, + "uk": { + "language": "uk", + "value": "\u0434\u0438\u0442\u0438\u043d\u0430 \u043f\u0440\u0438\u043d\u0446\u0430(-\u0435\u0441\u0438), \u043a\u043e\u0440\u043e\u043b\u044f (\u043a\u043e\u0440\u043e\u043b\u0435\u0432\u0438), \u0456\u043d\u043c\u0435\u0440\u0430\u0442\u043e\u0440\u0430(-\u043a\u0438) \u0447\u0438 \u0456\u043d\u0448\u043e\u0457 \u0437\u043d\u0430\u0442\u043d\u043e\u0457 \u043e\u0441\u043e\u0431\u0438" + } + }, + "aliases": { + "es": [{"language": "es", "value": "princesa"}, { + "language": "es", + "value": "principe" + }], + "ru": [{ + "language": "ru", + "value": "\u043f\u0440\u0438\u043d\u0446\u0435\u0441\u0441\u0430" + }, {"language": "ru", "value": "\u0446\u0430\u0440\u0435\u0432\u0438\u0447"}], + "ca": [{"language": "ca", "value": "princesa"}], + "ba": [{ + "language": "ba", + "value": "\u043f\u0440\u0438\u043d\u0446\u0435\u0441\u0441\u0430" + }], + "gu": [{ + "language": "gu", + "value": "\u0aae\u0ab9\u0abe\u0ab0\u0abe\u0a9c \u0a95\u0ac1\u0a82\u0ab5\u0ab0" + }, {"language": "gu", "value": "\u0aae. \u0a95\u0ac1."}, { + "language": "gu", + "value": "\u0a8f\u0aae. \u0a95\u0ac7." + }], + "he": [{"language": "he", "value": "\u05e0\u05e1\u05d9\u05db\u05d4"}], + "de": [{"language": "de", "value": "Prinzessin"}], + "ast": [{"language": "ast", "value": "princesa"}], + "be-tarask": [{ + "language": "be-tarask", + "value": "\u043f\u0440\u044b\u043d\u0446\u044d\u0441\u0430" + }], + "nl": [{"language": "nl", "value": "prinsje"}], + "it": [{"language": "it", "value": "principessa"}], + "se": [{"language": "se", "value": "gonagasb\u00e1rdni"}], + "pl": [{"language": "pl", "value": "ksi\u0105\u017c\u0119"}], + "vi": [{"language": "vi", "value": "v\u01b0\u01a1ng t\u01b0\u1edbc"}], + "cs": [{"language": "cs", "value": "princezna"}] + }, + "claims": { + "P31": [{ + "mainsnak": { + "snaktype": "value", + "property": "P31", + "hash": "a456372c8e6a681381eca31ab0662159db12ab1e", + "datavalue": { + "value": { + "entity-type": "item", + "numeric-id": 355567, + "id": "Q355567" + }, "type": "wikibase-entityid" + }, + "datatype": "wikibase-item" + }, + "type": "statement", + "id": "q2747456$ff8e76c2-47b8-d2b7-a192-9af298c36c8e", + "rank": "normal" + }, { + "mainsnak": { + "snaktype": "value", + "property": "P31", + "hash": "0ec7ed0637d631867884c8c0553e2de4b90b63ca", + "datavalue": { + "value": { + "entity-type": "item", + "numeric-id": 3320743, + "id": "Q3320743" + }, "type": "wikibase-entityid" + }, + "datatype": "wikibase-item" + }, + "type": "statement", + "id": "Q2747456$7b3a375d-48d8-18db-12db-9be699a1c34f", + "rank": "normal" + }], + "P910": [{ + "mainsnak": { + "snaktype": "value", + "property": "P910", + "hash": "ee5be4ad914a3f79dc30c6a6ac320404d7b6bf65", + "datavalue": { + "value": { + "entity-type": "item", + "numeric-id": 7214172, + "id": "Q7214172" + }, "type": "wikibase-entityid" + }, + "datatype": "wikibase-item" + }, + "type": "statement", + "id": "Q2747456$92971E9D-FA6B-4CFA-88C9-91EF27DDE2DC", + "rank": "normal" + }], + "P508": [{ + "mainsnak": { + "snaktype": "value", + "property": "P508", + "hash": "36109efdac97e7f035d386101fb85a397380f9ee", + "datavalue": {"value": "8468", "type": "string"}, + "datatype": "external-id" + }, + "type": "statement", + "id": "Q2747456$cdaad4c5-4ec8-54b2-3dac-4db04f994fda", + "rank": "normal" + }], + "P1001": [{ + "mainsnak": { + "snaktype": "somevalue", + "property": "P1001", + "hash": "be44552ae528f03d39720570854717fa0ebedcef", + "datatype": "wikibase-item" + }, + "type": "statement", + "id": "Q2747456$5eea869d-4f5d-99ee-90bb-471cccbf4b84", + "rank": "normal" + }], + "P373": [{ + "mainsnak": { + "snaktype": "value", + "property": "P373", + "hash": "e766c6be546f129979614c185bb172cd237a626a", + "datavalue": {"value": "Princes", "type": "string"}, + "datatype": "string" + }, + "type": "statement", + "id": "Q2747456$D4EEC77F-1F89-46DA-BD9E-FA15F29B686A", + "rank": "normal", + "references": [{ + "hash": "fa278ebfc458360e5aed63d5058cca83c46134f1", + "snaks": { + "P143": [{ "snaktype": "value", - "property": "P805", - "hash": "a83263a5d43ce3636971eac0d25071e09746ed50", + "property": "P143", + "hash": "e4f6d9441d0600513c4533c672b5ab472dc73694", + "datavalue": { + "value": { + "entity-type": "item", + "numeric-id": 328, + "id": "Q328" + }, "type": "wikibase-entityid" + }, + "datatype": "wikibase-item" + }] + }, + "snaks-order": ["P143"] + }] + }], + "P2521": [{ + "mainsnak": { + "snaktype": "value", + "property": "P2521", + "hash": "3ac9f3b0f1b60d0fbeac8ce587b3f74470a2ea00", + "datavalue": { + "value": {"text": "princesse", "language": "fr"}, + "type": "monolingualtext" + }, + "datatype": "monolingualtext" + }, + "type": "statement", + "id": "Q2747456$9c9a7d8e-4fea-87b1-0d41-7efd98922665", + "rank": "normal" + }, { + "mainsnak": { + "snaktype": "value", + "property": "P2521", + "hash": "8eef33f2c1e8a583fd498d380838e5f72cc06491", + "datavalue": { + "value": {"text": "princess", "language": "en"}, + "type": "monolingualtext" + }, + "datatype": "monolingualtext" + }, + "type": "statement", + "id": "Q2747456$e0281f91-4b2c-053b-9900-57d12d7d4211", + "rank": "normal" + }, { + "mainsnak": { + "snaktype": "value", + "property": "P2521", + "hash": "1a86a592d40223b73b7f0686672650d48c997806", + "datavalue": { + "value": {"text": "princino", "language": "eo"}, + "type": "monolingualtext" + }, + "datatype": "monolingualtext" + }, + "type": "statement", + "id": "Q2747456$1cb248ea-490c-b5f7-b011-06845ccac2b4", + "rank": "normal" + }, { + "mainsnak": { + "snaktype": "value", + "property": "P2521", + "hash": "abbaf9a41f548f9a7c58e38f91db34cb370c876a", + "datavalue": { + "value": {"text": "prinses", "language": "nl"}, + "type": "monolingualtext" + }, + "datatype": "monolingualtext" + }, + "type": "statement", + "id": "Q2747456$1d636ed1-4f4d-0851-ca7f-66c847e7c4be", + "rank": "normal" + }, { + "mainsnak": { + "snaktype": "value", + "property": "P2521", + "hash": "37efe8398a055d9ace75c625cdc286b9aadb5ab0", + "datavalue": { + "value": {"text": "princesa", "language": "ca"}, + "type": "monolingualtext" + }, + "datatype": "monolingualtext" + }, + "type": "statement", + "id": "Q2747456$316855ff-4047-0ffb-76fb-90057b0840ef", + "rank": "normal" + }, { + "mainsnak": { + "snaktype": "value", + "property": "P2521", + "hash": "7810d8cabaaaeb41fad675cd9c3bfb39ab41d00f", + "datavalue": { + "value": { + "text": "\u043f\u0440\u0438\u043d\u0446\u0435\u0441\u0441\u0430", + "language": "ru" + }, "type": "monolingualtext" + }, + "datatype": "monolingualtext" + }, + "type": "statement", + "id": "Q2747456$fa60cb7b-460d-c8ff-b99c-c2bf515b12a0", + "rank": "normal" + }, { + "mainsnak": { + "snaktype": "value", + "property": "P2521", + "hash": "e18f093988121762e3b247104eb626501d14ad2e", + "datavalue": { + "value": { + "text": "\u05e0\u05e1\u05d9\u05db\u05d4", + "language": "he" + }, "type": "monolingualtext" + }, + "datatype": "monolingualtext" + }, + "type": "statement", + "id": "Q2747456$03851c85-4db0-ff39-7608-1dc63852b6c8", + "rank": "normal" + }, { + "mainsnak": { + "snaktype": "value", + "property": "P2521", + "hash": "3f8c2d8b4e28c17d49cc1bff30990657e0ab485a", + "datavalue": { + "value": { + "text": "n\u1eef v\u01b0\u01a1ng", + "language": "vi" + }, "type": "monolingualtext" + }, + "datatype": "monolingualtext" + }, + "type": "statement", + "id": "Q2747456$6115764d-4391-6997-ecb2-7768f18b2b45", + "rank": "normal" + }, { + "mainsnak": { + "snaktype": "value", + "property": "P2521", + "hash": "106d96fa708baf606b060bdc8c6b545f477eee32", + "datavalue": { + "value": {"text": "Prinzessin", "language": "de"}, + "type": "monolingualtext" + }, + "datatype": "monolingualtext" + }, + "type": "statement", + "id": "Q2747456$6f2c129e-413c-dead-3404-146368643ab8", + "rank": "normal" + }, { + "mainsnak": { + "snaktype": "value", + "property": "P2521", + "hash": "69a2a841f26ab197dca7c5a6e2dd595b67e4188c", + "datavalue": { + "value": { + "text": "\u03c0\u03c1\u03b9\u03b3\u03ba\u03af\u03c0\u03b9\u03c3\u03c3\u03b1", + "language": "el" + }, "type": "monolingualtext" + }, + "datatype": "monolingualtext" + }, + "type": "statement", + "id": "Q2747456$9b901d48-4e41-ba93-344e-299c69a27ac6", + "rank": "normal" + }, { + "mainsnak": { + "snaktype": "value", + "property": "P2521", + "hash": "560ecce28fcadaf0e2b8a584519fe94ffbf25ec1", + "datavalue": { + "value": {"text": "princesa", "language": "ast"}, + "type": "monolingualtext" + }, + "datatype": "monolingualtext" + }, + "type": "statement", + "id": "Q2747456$520756e7-476d-a435-bc1c-0a56fa7851a1", + "rank": "normal" + }, { + "mainsnak": { + "snaktype": "value", + "property": "P2521", + "hash": "44f2eb3f4fee6f4b4b3b992407bda0f6caed2536", + "datavalue": { + "value": {"text": "tywysoges", "language": "cy"}, + "type": "monolingualtext" + }, + "datatype": "monolingualtext" + }, + "type": "statement", + "id": "Q2747456$698beb10-4e2c-b535-a89b-e29210f2be75", + "rank": "normal" + }, { + "mainsnak": { + "snaktype": "value", + "property": "P2521", + "hash": "006e13a77c798832882c84070fe8f76cdc48611c", + "datavalue": { + "value": { + "text": "\u0623\u0645\u064a\u0631\u0629", + "language": "ar" + }, "type": "monolingualtext" + }, + "datatype": "monolingualtext" + }, + "type": "statement", + "id": "Q2747456$b75e51e5-48e5-1f4c-d99c-d83dde03e91d", + "rank": "normal" + }, { + "mainsnak": { + "snaktype": "value", + "property": "P2521", + "hash": "25eb24e42c0a566023ceb354777cb1ec14492ef1", + "datavalue": { + "value": { + "text": "\u043f\u0440\u044b\u043d\u0446\u044d\u0441\u0430", + "language": "be-tarask" + }, "type": "monolingualtext" + }, + "datatype": "monolingualtext" + }, + "type": "statement", + "id": "Q2747456$075f0038-475e-e4ba-9801-52aac2067799", + "rank": "normal" + }, { + "mainsnak": { + "snaktype": "value", + "property": "P2521", + "hash": "e72b1dd598ce40db3f7e9b195a3e9345b4ae4ba5", + "datavalue": { + "value": {"text": "princezna", "language": "cs"}, + "type": "monolingualtext" + }, + "datatype": "monolingualtext" + }, + "type": "statement", + "id": "Q2747456$1085cbb9-4cd4-8a2f-a4c7-6f29fafea206", + "rank": "normal" + }, { + "mainsnak": { + "snaktype": "value", + "property": "P2521", + "hash": "70d88bc577587e2732cf37a66dfd0920b175211a", + "datavalue": { + "value": {"text": "prinsesse", "language": "da"}, + "type": "monolingualtext" + }, + "datatype": "monolingualtext" + }, + "type": "statement", + "id": "Q2747456$33d2e452-4ca2-8dea-4f98-242c53ef1811", + "rank": "normal" + }, { + "mainsnak": { + "snaktype": "value", + "property": "P2521", + "hash": "eebf786f7c2b0963b9db4c2876bb24c6afc4ce1c", + "datavalue": { + "value": {"text": "principessa", "language": "it"}, + "type": "monolingualtext" + }, + "datatype": "monolingualtext" + }, + "type": "statement", + "id": "Q2747456$3098804a-4758-d07f-8443-24ebe96c56ec", + "rank": "normal" + }, { + "mainsnak": { + "snaktype": "value", + "property": "P2521", + "hash": "649307549f96bfe54f16e9130f014bf018cc46c4", + "datavalue": { + "value": { + "text": "\u043f\u0440\u0438\u043d\u0446\u0435\u0441\u0430", + "language": "uk" + }, "type": "monolingualtext" + }, + "datatype": "monolingualtext" + }, + "type": "statement", + "id": "Q2747456$ff433d7c-4e07-f7c0-14af-3b3f31f8ae9a", + "rank": "normal" + }], + "P3827": [{ + "mainsnak": { + "snaktype": "value", + "property": "P3827", + "hash": "22ee9c46325acd0a1ca54f27bff5d75331211f8a", + "datavalue": {"value": "princes", "type": "string"}, + "datatype": "external-id" + }, + "type": "statement", + "id": "Q2747456$6C64B5EA-8B74-4BF6-BB90-81C28320200A", + "rank": "normal" + }], + "P1343": [{ + "mainsnak": { + "snaktype": "value", + "property": "P1343", + "hash": "eda63bed5c3d7a3460033092338ab321a2374c7f", + "datavalue": { + "value": { + "entity-type": "item", + "numeric-id": 2041543, + "id": "Q2041543" + }, "type": "wikibase-entityid" + }, + "datatype": "wikibase-item" + }, + "type": "statement", + "qualifiers": { + "P805": [{ + "snaktype": "value", + "property": "P805", + "hash": "a83263a5d43ce3636971eac0d25071e09746ed50", + "datavalue": { + "value": { + "entity-type": "item", + "numeric-id": 23858844, + "id": "Q23858844" + }, "type": "wikibase-entityid" + }, + "datatype": "wikibase-item" + }] + }, + "qualifiers-order": ["P805"], + "id": "Q2747456$BC72E96E-6B05-4437-97F4-2BC0AC5DFA6D", + "rank": "normal", + "references": [{ + "hash": "c454383fe86a434f02006970b5c8b8f3f9b6714d", + "snaks": { + "P3452": [{ + "snaktype": "value", + "property": "P3452", + "hash": "482b5f23c034bd9eb5565e3869de4856bd9d5311", "datavalue": { "value": { "entity-type": "item", @@ -8100,58 +8119,236 @@ export default class WikidataSpecTest extends T { "datatype": "wikibase-item" }] }, - "qualifiers-order": ["P805"], - "id": "Q2747456$BC72E96E-6B05-4437-97F4-2BC0AC5DFA6D", - "rank": "normal", - "references": [{ - "hash": "c454383fe86a434f02006970b5c8b8f3f9b6714d", - "snaks": { - "P3452": [{ - "snaktype": "value", - "property": "P3452", - "hash": "482b5f23c034bd9eb5565e3869de4856bd9d5311", - "datavalue": { - "value": { - "entity-type": "item", - "numeric-id": 23858844, - "id": "Q23858844" - }, "type": "wikibase-entityid" - }, - "datatype": "wikibase-item" - }] - }, - "snaks-order": ["P3452"] - }] - }, { - "mainsnak": { + "snaks-order": ["P3452"] + }] + }, { + "mainsnak": { + "snaktype": "value", + "property": "P1343", + "hash": "d5011798f92464584d8ccfc5f19f18f3659668bb", + "datavalue": { + "value": { + "entity-type": "item", + "numeric-id": 106727050, + "id": "Q106727050" + }, "type": "wikibase-entityid" + }, + "datatype": "wikibase-item" + }, + "type": "statement", + "qualifiers": { + "P1810": [{ "snaktype": "value", - "property": "P1343", - "hash": "d5011798f92464584d8ccfc5f19f18f3659668bb", + "property": "P1810", + "hash": "03c80cb894e30b3c675b60c14a8c96334cbb474c", + "datavalue": {"value": "Princes", "type": "string"}, + "datatype": "string" + }], + "P585": [{ + "snaktype": "value", + "property": "P585", + "hash": "ffb837135313cad3b2545c4b9ce5ee416deda3e2", "datavalue": { "value": { - "entity-type": "item", - "numeric-id": 106727050, - "id": "Q106727050" - }, "type": "wikibase-entityid" + "time": "+2021-05-07T00:00:00Z", + "timezone": 0, + "before": 0, + "after": 0, + "precision": 11, + "calendarmodel": "http://www.wikidata.org/entity/Q1985727" + }, "type": "time" }, - "datatype": "wikibase-item" + "datatype": "time" + }] + }, + "qualifiers-order": ["P1810", "P585"], + "id": "Q2747456$D6FEFF9B-75B5-4D37-B4CE-4DB70C6254C9", + "rank": "normal" + }], + "P1889": [{ + "mainsnak": { + "snaktype": "value", + "property": "P1889", + "hash": "6999c7ae15eaea290cccb76ffdd06bc0677d0238", + "datavalue": { + "value": { + "entity-type": "item", + "numeric-id": 18244, + "id": "Q18244" + }, "type": "wikibase-entityid" }, - "type": "statement", - "qualifiers": { - "P1810": [{ + "datatype": "wikibase-item" + }, + "type": "statement", + "id": "Q2747456$F24DA145-D17F-4574-AA66-6985CB25F420", + "rank": "normal" + }], + "P460": [{ + "mainsnak": { + "snaktype": "value", + "property": "P460", + "hash": "6615255f4b0abf58e9bbf71279496fb1a0b511fa", + "datavalue": { + "value": { + "entity-type": "item", + "numeric-id": 863048, + "id": "Q863048" + }, "type": "wikibase-entityid" + }, + "datatype": "wikibase-item" + }, + "type": "statement", + "id": "Q2747456$838f53a3-4fd7-a6b9-48bd-ee70d9e91dc1", + "rank": "normal" + }, { + "mainsnak": { + "snaktype": "value", + "property": "P460", + "hash": "5f65f50d44d2a5b28655dc0b966f518e2106d3e1", + "datavalue": { + "value": { + "entity-type": "item", + "numeric-id": 147925, + "id": "Q147925" + }, "type": "wikibase-entityid" + }, + "datatype": "wikibase-item" + }, + "type": "statement", + "id": "Q2747456$4c67b4d9-4a6f-dfe4-65c1-3aa104506737", + "rank": "normal" + }, { + "mainsnak": { + "snaktype": "value", + "property": "P460", + "hash": "2a1ef20476a8fa0d78b0bdfcdb34c88a72e4424f", + "datavalue": { + "value": { + "entity-type": "item", + "numeric-id": 11572959, + "id": "Q11572959" + }, "type": "wikibase-entityid" + }, + "datatype": "wikibase-item" + }, + "type": "statement", + "id": "Q2747456$14b54a7e-4c22-fae3-81b2-1bd50ebca9e3", + "rank": "normal" + }], + "P2924": [{ + "mainsnak": { + "snaktype": "value", + "property": "P2924", + "hash": "5fd70a45453598d8cbd3f35682444dffb93ef183", + "datavalue": {"value": "3167678", "type": "string"}, + "datatype": "external-id" + }, + "type": "statement", + "id": "Q2747456$D2F12FF3-B07F-408D-BAD1-87F8666ADBA6", + "rank": "normal" + }], + "P1417": [{ + "mainsnak": { + "snaktype": "value", + "property": "P1417", + "hash": "b55bafafbccecce645f2a5f3ccfe4f1a93d5c797", + "datavalue": {"value": "topic/prince-title", "type": "string"}, + "datatype": "external-id" + }, + "type": "statement", + "id": "Q2747456$3825CF57-55DE-4718-90B4-79DED5864AC4", + "rank": "normal" + }], + "P4212": [{ + "mainsnak": { + "snaktype": "value", + "property": "P4212", + "hash": "18175f20026e3c7967427cbf8230be7b80ba428b", + "datavalue": {"value": "pcrtSqFZmJvcTu", "type": "string"}, + "datatype": "external-id" + }, + "type": "statement", + "id": "Q2747456$9791794A-44F1-4FC2-BA56-BA56D2B3578A", + "rank": "normal" + }], + "P279": [{ + "mainsnak": { + "snaktype": "value", + "property": "P279", + "hash": "05fb47e9bcde5c8dc864b788fbcab6eece27147b", + "datavalue": { + "value": { + "entity-type": "item", + "numeric-id": 2478141, + "id": "Q2478141" + }, "type": "wikibase-entityid" + }, + "datatype": "wikibase-item" + }, + "type": "statement", + "id": "Q2747456$d68be51e-4bef-c388-920f-c76313d767a4", + "rank": "normal" + }], + "P6573": [{ + "mainsnak": { + "snaktype": "value", + "property": "P6573", + "hash": "a3dd889f664f66353f3bdc1217a652bf779f0882", + "datavalue": {"value": "Prinz", "type": "string"}, + "datatype": "external-id" + }, + "type": "statement", + "id": "Q2747456$6DCF9C3D-9898-4C78-A58F-FDC8400CCCA1", + "rank": "normal" + }], + "P3321": [{ + "mainsnak": { + "snaktype": "value", + "property": "P3321", + "hash": "83853e4f2ae83443c17c417de86f13d7adf2c6de", + "datavalue": { + "value": { + "text": "\u0623\u0645\u064a\u0631", + "language": "ar" + }, "type": "monolingualtext" + }, + "datatype": "monolingualtext" + }, + "type": "statement", + "id": "Q2747456$e5768817-48a9-44bc-637e-2137393ea3ff", + "rank": "normal" + }], + "P244": [{ + "mainsnak": { + "snaktype": "value", + "property": "P244", + "hash": "3484a6a7868e031d3d479ecf0dd02abd5ad5df67", + "datavalue": {"value": "sh85106721", "type": "string"}, + "datatype": "external-id" + }, + "type": "statement", + "id": "Q2747456$2BEAAB19-60A8-4B69-85B2-80E522D88798", + "rank": "normal", + "references": [{ + "hash": "ac5d47e9fbcc281bc0d27a205ae02e22ad24ce31", + "snaks": { + "P854": [{ "snaktype": "value", - "property": "P1810", - "hash": "03c80cb894e30b3c675b60c14a8c96334cbb474c", - "datavalue": {"value": "Princes", "type": "string"}, - "datatype": "string" + "property": "P854", + "hash": "b560dc6b281a39d061e189d2eb299a426a06f1a2", + "datavalue": { + "value": "https://github.com/JohnMarkOckerbloom/ftl/blob/master/data/wikimap", + "type": "string" + }, + "datatype": "url" }], - "P585": [{ + "P813": [{ "snaktype": "value", - "property": "P585", - "hash": "ffb837135313cad3b2545c4b9ce5ee416deda3e2", + "property": "P813", + "hash": "0dcf4f64e93fdcc654e2c7534285881fe48b9f3d", "datavalue": { "value": { - "time": "+2021-05-07T00:00:00Z", + "time": "+2019-04-03T00:00:00Z", "timezone": 0, "before": 0, "after": 0, @@ -8162,1022 +8359,824 @@ export default class WikidataSpecTest extends T { "datatype": "time" }] }, - "qualifiers-order": ["P1810", "P585"], - "id": "Q2747456$D6FEFF9B-75B5-4D37-B4CE-4DB70C6254C9", - "rank": "normal" - }], - "P1889": [{ - "mainsnak": { + "snaks-order": ["P854", "P813"] + }] + }], + "P7033": [{ + "mainsnak": { + "snaktype": "value", + "property": "P7033", + "hash": "bbeb07d3dd6a36a1b4ff44294353090777d3f68f", + "datavalue": {"value": "scot/9663", "type": "string"}, + "datatype": "external-id" + }, + "type": "statement", + "id": "Q2747456$7D6E3549-7ABD-43B0-BCF2-572F271FBE61", + "rank": "normal" + }], + "P6404": [{ + "mainsnak": { + "snaktype": "value", + "property": "P6404", + "hash": "b73a884b2dbc4d181d68748eb0a1369a60b6779a", + "datavalue": {"value": "principe", "type": "string"}, + "datatype": "external-id" + }, + "type": "statement", + "qualifiers": { + "P1810": [{ "snaktype": "value", - "property": "P1889", - "hash": "6999c7ae15eaea290cccb76ffdd06bc0677d0238", - "datavalue": { - "value": { - "entity-type": "item", - "numeric-id": 18244, - "id": "Q18244" - }, "type": "wikibase-entityid" - }, - "datatype": "wikibase-item" - }, - "type": "statement", - "id": "Q2747456$F24DA145-D17F-4574-AA66-6985CB25F420", - "rank": "normal" - }], - "P460": [{ - "mainsnak": { - "snaktype": "value", - "property": "P460", - "hash": "6615255f4b0abf58e9bbf71279496fb1a0b511fa", - "datavalue": { - "value": { - "entity-type": "item", - "numeric-id": 863048, - "id": "Q863048" - }, "type": "wikibase-entityid" - }, - "datatype": "wikibase-item" - }, - "type": "statement", - "id": "Q2747456$838f53a3-4fd7-a6b9-48bd-ee70d9e91dc1", - "rank": "normal" - }, { - "mainsnak": { - "snaktype": "value", - "property": "P460", - "hash": "5f65f50d44d2a5b28655dc0b966f518e2106d3e1", - "datavalue": { - "value": { - "entity-type": "item", - "numeric-id": 147925, - "id": "Q147925" - }, "type": "wikibase-entityid" - }, - "datatype": "wikibase-item" - }, - "type": "statement", - "id": "Q2747456$4c67b4d9-4a6f-dfe4-65c1-3aa104506737", - "rank": "normal" - }, { - "mainsnak": { - "snaktype": "value", - "property": "P460", - "hash": "2a1ef20476a8fa0d78b0bdfcdb34c88a72e4424f", - "datavalue": { - "value": { - "entity-type": "item", - "numeric-id": 11572959, - "id": "Q11572959" - }, "type": "wikibase-entityid" - }, - "datatype": "wikibase-item" - }, - "type": "statement", - "id": "Q2747456$14b54a7e-4c22-fae3-81b2-1bd50ebca9e3", - "rank": "normal" - }], - "P2924": [{ - "mainsnak": { - "snaktype": "value", - "property": "P2924", - "hash": "5fd70a45453598d8cbd3f35682444dffb93ef183", - "datavalue": {"value": "3167678", "type": "string"}, - "datatype": "external-id" - }, - "type": "statement", - "id": "Q2747456$D2F12FF3-B07F-408D-BAD1-87F8666ADBA6", - "rank": "normal" - }], - "P1417": [{ - "mainsnak": { - "snaktype": "value", - "property": "P1417", - "hash": "b55bafafbccecce645f2a5f3ccfe4f1a93d5c797", - "datavalue": {"value": "topic/prince-title", "type": "string"}, - "datatype": "external-id" - }, - "type": "statement", - "id": "Q2747456$3825CF57-55DE-4718-90B4-79DED5864AC4", - "rank": "normal" - }], - "P4212": [{ - "mainsnak": { - "snaktype": "value", - "property": "P4212", - "hash": "18175f20026e3c7967427cbf8230be7b80ba428b", - "datavalue": {"value": "pcrtSqFZmJvcTu", "type": "string"}, - "datatype": "external-id" - }, - "type": "statement", - "id": "Q2747456$9791794A-44F1-4FC2-BA56-BA56D2B3578A", - "rank": "normal" - }], - "P279": [{ - "mainsnak": { - "snaktype": "value", - "property": "P279", - "hash": "05fb47e9bcde5c8dc864b788fbcab6eece27147b", - "datavalue": { - "value": { - "entity-type": "item", - "numeric-id": 2478141, - "id": "Q2478141" - }, "type": "wikibase-entityid" - }, - "datatype": "wikibase-item" - }, - "type": "statement", - "id": "Q2747456$d68be51e-4bef-c388-920f-c76313d767a4", - "rank": "normal" - }], - "P6573": [{ - "mainsnak": { - "snaktype": "value", - "property": "P6573", - "hash": "a3dd889f664f66353f3bdc1217a652bf779f0882", - "datavalue": {"value": "Prinz", "type": "string"}, - "datatype": "external-id" - }, - "type": "statement", - "id": "Q2747456$6DCF9C3D-9898-4C78-A58F-FDC8400CCCA1", - "rank": "normal" - }], - "P3321": [{ - "mainsnak": { - "snaktype": "value", - "property": "P3321", - "hash": "83853e4f2ae83443c17c417de86f13d7adf2c6de", - "datavalue": { - "value": { - "text": "\u0623\u0645\u064a\u0631", - "language": "ar" - }, "type": "monolingualtext" - }, - "datatype": "monolingualtext" - }, - "type": "statement", - "id": "Q2747456$e5768817-48a9-44bc-637e-2137393ea3ff", - "rank": "normal" - }], - "P244": [{ - "mainsnak": { - "snaktype": "value", - "property": "P244", - "hash": "3484a6a7868e031d3d479ecf0dd02abd5ad5df67", - "datavalue": {"value": "sh85106721", "type": "string"}, - "datatype": "external-id" - }, - "type": "statement", - "id": "Q2747456$2BEAAB19-60A8-4B69-85B2-80E522D88798", - "rank": "normal", - "references": [{ - "hash": "ac5d47e9fbcc281bc0d27a205ae02e22ad24ce31", - "snaks": { - "P854": [{ - "snaktype": "value", - "property": "P854", - "hash": "b560dc6b281a39d061e189d2eb299a426a06f1a2", - "datavalue": { - "value": "https://github.com/JohnMarkOckerbloom/ftl/blob/master/data/wikimap", - "type": "string" - }, - "datatype": "url" - }], - "P813": [{ - "snaktype": "value", - "property": "P813", - "hash": "0dcf4f64e93fdcc654e2c7534285881fe48b9f3d", - "datavalue": { - "value": { - "time": "+2019-04-03T00:00:00Z", - "timezone": 0, - "before": 0, - "after": 0, - "precision": 11, - "calendarmodel": "http://www.wikidata.org/entity/Q1985727" - }, "type": "time" - }, - "datatype": "time" - }] - }, - "snaks-order": ["P854", "P813"] - }] - }], - "P7033": [{ - "mainsnak": { - "snaktype": "value", - "property": "P7033", - "hash": "bbeb07d3dd6a36a1b4ff44294353090777d3f68f", - "datavalue": {"value": "scot/9663", "type": "string"}, - "datatype": "external-id" - }, - "type": "statement", - "id": "Q2747456$7D6E3549-7ABD-43B0-BCF2-572F271FBE61", - "rank": "normal" - }], - "P6404": [{ - "mainsnak": { - "snaktype": "value", - "property": "P6404", - "hash": "b73a884b2dbc4d181d68748eb0a1369a60b6779a", + "property": "P1810", + "hash": "aa57b954447e129789c598d135f12a17358aecac", "datavalue": {"value": "principe", "type": "string"}, - "datatype": "external-id" - }, - "type": "statement", - "qualifiers": { - "P1810": [{ + "datatype": "string" + }], + "P577": [{ + "snaktype": "value", + "property": "P577", + "hash": "d2a40d22655021267a9386d3086e000722b5a2d3", + "datavalue": { + "value": { + "time": "+2011-01-01T00:00:00Z", + "timezone": 0, + "before": 0, + "after": 0, + "precision": 9, + "calendarmodel": "http://www.wikidata.org/entity/Q1985727" + }, "type": "time" + }, + "datatype": "time" + }] + }, + "qualifiers-order": ["P1810", "P577"], + "id": "Q2747456$B0237EEF-F865-48E1-B40C-6078B365CA08", + "rank": "normal" + }], + "P1245": [{ + "mainsnak": { + "snaktype": "value", + "property": "P1245", + "hash": "96bd0f2ac61d64e0c7f70fc77dbc936887d30178", + "datavalue": {"value": "5814", "type": "string"}, + "datatype": "external-id" + }, + "type": "statement", + "id": "Q2747456$CA27EF8B-8DE0-4B3D-98F2-2ED0857103E3", + "rank": "normal" + }], + "P487": [{ + "mainsnak": { + "snaktype": "value", + "property": "P487", + "hash": "14725f4cf317ce7d4b1a0e750232b59d06b5072c", + "datavalue": {"value": "\ud83e\udd34", "type": "string"}, + "datatype": "string" + }, + "type": "statement", + "id": "Q2747456$1df4cace-4275-e6a6-0c5a-edd013874f47", + "rank": "normal" + }], + "P8408": [{ + "mainsnak": { + "snaktype": "value", + "property": "P8408", + "hash": "1959b085f955100ebf2128c228f5a48c527b3066", + "datavalue": {"value": "Prince", "type": "string"}, + "datatype": "external-id" + }, + "type": "statement", + "id": "Q2747456$DE4D8776-C78F-4ECC-A2AB-FF4C3C605B3D", + "rank": "normal", + "references": [{ + "hash": "9a681f9dd95c90224547c404e11295f4f7dcf54e", + "snaks": { + "P248": [{ "snaktype": "value", - "property": "P1810", - "hash": "aa57b954447e129789c598d135f12a17358aecac", - "datavalue": {"value": "principe", "type": "string"}, - "datatype": "string" - }], - "P577": [{ - "snaktype": "value", - "property": "P577", - "hash": "d2a40d22655021267a9386d3086e000722b5a2d3", + "property": "P248", + "hash": "9d5780dddffa8746637a9929a936ab6b0f601e24", "datavalue": { "value": { - "time": "+2011-01-01T00:00:00Z", + "entity-type": "item", + "numeric-id": 64139102, + "id": "Q64139102" + }, "type": "wikibase-entityid" + }, + "datatype": "wikibase-item" + }], + "P813": [{ + "snaktype": "value", + "property": "P813", + "hash": "622a5a27fa5b25e7e7984974e9db494cf8460990", + "datavalue": { + "value": { + "time": "+2020-07-09T00:00:00Z", "timezone": 0, "before": 0, "after": 0, - "precision": 9, + "precision": 11, "calendarmodel": "http://www.wikidata.org/entity/Q1985727" }, "type": "time" }, "datatype": "time" }] }, - "qualifiers-order": ["P1810", "P577"], - "id": "Q2747456$B0237EEF-F865-48E1-B40C-6078B365CA08", - "rank": "normal" - }], - "P1245": [{ - "mainsnak": { - "snaktype": "value", - "property": "P1245", - "hash": "96bd0f2ac61d64e0c7f70fc77dbc936887d30178", - "datavalue": {"value": "5814", "type": "string"}, - "datatype": "external-id" - }, - "type": "statement", - "id": "Q2747456$CA27EF8B-8DE0-4B3D-98F2-2ED0857103E3", - "rank": "normal" - }], - "P487": [{ - "mainsnak": { - "snaktype": "value", - "property": "P487", - "hash": "14725f4cf317ce7d4b1a0e750232b59d06b5072c", - "datavalue": {"value": "\ud83e\udd34", "type": "string"}, - "datatype": "string" - }, - "type": "statement", - "id": "Q2747456$1df4cace-4275-e6a6-0c5a-edd013874f47", - "rank": "normal" - }], - "P8408": [{ - "mainsnak": { - "snaktype": "value", - "property": "P8408", - "hash": "1959b085f955100ebf2128c228f5a48c527b3066", - "datavalue": {"value": "Prince", "type": "string"}, - "datatype": "external-id" - }, - "type": "statement", - "id": "Q2747456$DE4D8776-C78F-4ECC-A2AB-FF4C3C605B3D", - "rank": "normal", - "references": [{ - "hash": "9a681f9dd95c90224547c404e11295f4f7dcf54e", - "snaks": { - "P248": [{ - "snaktype": "value", - "property": "P248", - "hash": "9d5780dddffa8746637a9929a936ab6b0f601e24", - "datavalue": { - "value": { - "entity-type": "item", - "numeric-id": 64139102, - "id": "Q64139102" - }, "type": "wikibase-entityid" - }, - "datatype": "wikibase-item" - }], - "P813": [{ - "snaktype": "value", - "property": "P813", - "hash": "622a5a27fa5b25e7e7984974e9db494cf8460990", - "datavalue": { - "value": { - "time": "+2020-07-09T00:00:00Z", - "timezone": 0, - "before": 0, - "after": 0, - "precision": 11, - "calendarmodel": "http://www.wikidata.org/entity/Q1985727" - }, "type": "time" - }, - "datatype": "time" - }] - }, - "snaks-order": ["P248", "P813"] - }] - }], - "P646": [{ - "mainsnak": { - "snaktype": "value", - "property": "P646", - "hash": "e2a702b2c25f7f56f203253d626302e897f59a8e", - "datavalue": {"value": "/m/0dl76", "type": "string"}, - "datatype": "external-id" - }, - "type": "statement", - "id": "Q2747456$C85A80F8-BBE5-4036-B390-FE2D440662CE", - "rank": "normal" - }], - "P9486": [{ - "mainsnak": { - "snaktype": "value", - "property": "P9486", - "hash": "8112e14818e95883f0df779234ffa2b5bd7544ef", - "datavalue": {"value": "2114", "type": "string"}, - "datatype": "external-id" - }, - "type": "statement", - "id": "Q2747456$03DF860D-8766-4A8E-BA39-CA20E7748101", - "rank": "normal" - }], - "P268": [{ - "mainsnak": { - "snaktype": "value", - "property": "P268", - "hash": "6c26a220e139d739b090f743a20ceec3b2b13d36", - "datavalue": {"value": "11934545s", "type": "string"}, - "datatype": "external-id" - }, - "type": "statement", - "qualifiers": { - "P1810": [{ - "snaktype": "value", - "property": "P1810", - "hash": "03c80cb894e30b3c675b60c14a8c96334cbb474c", - "datavalue": {"value": "Princes", "type": "string"}, - "datatype": "string" - }] - }, - "qualifiers-order": ["P1810"], - "id": "Q2747456$58ba630c-6458-4a5a-8913-a294e6124d7b", - "rank": "normal", - "references": [{ - "hash": "7c27b83b9977dcc1e39904c165117c33f6d4d258", - "snaks": { - "P248": [{ - "snaktype": "value", - "property": "P248", - "hash": "3b090a7bae73c288393b2c8b9846cc7ed9a58f91", - "datavalue": { - "value": { - "entity-type": "item", - "numeric-id": 16583225, - "id": "Q16583225" - }, "type": "wikibase-entityid" - }, - "datatype": "wikibase-item" - }], - "P854": [{ - "snaktype": "value", - "property": "P854", - "hash": "42ed86952731f89f4c99b0a5091aa580a24bf41f", - "datavalue": { - "value": "https://thes.bncf.firenze.sbn.it/termine.php?id=8468", - "type": "string" - }, - "datatype": "url" - }], - "P813": [{ - "snaktype": "value", - "property": "P813", - "hash": "fa626481f5288f46170160e657d94c0b692e3140", - "datavalue": { - "value": { - "time": "+2021-06-13T00:00:00Z", - "timezone": 0, - "before": 0, - "after": 0, - "precision": 11, - "calendarmodel": "http://www.wikidata.org/entity/Q1985727" - }, "type": "time" - }, - "datatype": "time" - }] - }, - "snaks-order": ["P248", "P854", "P813"] - }] - }], - "P950": [{ - "mainsnak": { - "snaktype": "value", - "property": "P950", - "hash": "cffc5e803a428e4e1c294de58122f1d3ed126bcd", - "datavalue": {"value": "XX542448", "type": "string"}, - "datatype": "external-id" - }, - "type": "statement", - "qualifiers": { - "P1810": [{ - "snaktype": "value", - "property": "P1810", - "hash": "c1ce0e3e614f65130d263d0a08d806a912624221", - "datavalue": {"value": "Pr\u00edncipes", "type": "string"}, - "datatype": "string" - }] - }, - "qualifiers-order": ["P1810"], - "id": "Q2747456$c8094f9b-d4b1-4050-9be0-252f7a070d8b", - "rank": "normal", - "references": [{ - "hash": "7c27b83b9977dcc1e39904c165117c33f6d4d258", - "snaks": { - "P248": [{ - "snaktype": "value", - "property": "P248", - "hash": "3b090a7bae73c288393b2c8b9846cc7ed9a58f91", - "datavalue": { - "value": { - "entity-type": "item", - "numeric-id": 16583225, - "id": "Q16583225" - }, "type": "wikibase-entityid" - }, - "datatype": "wikibase-item" - }], - "P854": [{ - "snaktype": "value", - "property": "P854", - "hash": "42ed86952731f89f4c99b0a5091aa580a24bf41f", - "datavalue": { - "value": "https://thes.bncf.firenze.sbn.it/termine.php?id=8468", - "type": "string" - }, - "datatype": "url" - }], - "P813": [{ - "snaktype": "value", - "property": "P813", - "hash": "fa626481f5288f46170160e657d94c0b692e3140", - "datavalue": { - "value": { - "time": "+2021-06-13T00:00:00Z", - "timezone": 0, - "before": 0, - "after": 0, - "precision": 11, - "calendarmodel": "http://www.wikidata.org/entity/Q1985727" - }, "type": "time" - }, - "datatype": "time" - }] - }, - "snaks-order": ["P248", "P854", "P813"] - }] - }], - "P527": [{ - "mainsnak": { - "snaktype": "value", - "property": "P527", - "hash": "1f078eae805dfe58ac01a303b2a5474a99df8a48", - "datavalue": { - "value": { - "entity-type": "item", - "numeric-id": 28495701, - "id": "Q28495701" - }, "type": "wikibase-entityid" - }, - "datatype": "wikibase-item" - }, - "type": "statement", - "id": "Q2747456$6a3b7447-4721-18a4-578e-97af51eeb4a5", - "rank": "normal" - }, { - "mainsnak": { - "snaktype": "value", - "property": "P527", - "hash": "168b349e75ce98b28c0f65998a2fe2d2f1e0f7f5", - "datavalue": { - "value": { - "entity-type": "item", - "numeric-id": 3403409, - "id": "Q3403409" - }, "type": "wikibase-entityid" - }, - "datatype": "wikibase-item" - }, - "type": "statement", - "id": "Q2747456$d2253d2b-4584-2367-122e-557303f41540", - "rank": "normal" + "snaks-order": ["P248", "P813"] }] + }], + "P646": [{ + "mainsnak": { + "snaktype": "value", + "property": "P646", + "hash": "e2a702b2c25f7f56f203253d626302e897f59a8e", + "datavalue": {"value": "/m/0dl76", "type": "string"}, + "datatype": "external-id" + }, + "type": "statement", + "id": "Q2747456$C85A80F8-BBE5-4036-B390-FE2D440662CE", + "rank": "normal" + }], + "P9486": [{ + "mainsnak": { + "snaktype": "value", + "property": "P9486", + "hash": "8112e14818e95883f0df779234ffa2b5bd7544ef", + "datavalue": {"value": "2114", "type": "string"}, + "datatype": "external-id" + }, + "type": "statement", + "id": "Q2747456$03DF860D-8766-4A8E-BA39-CA20E7748101", + "rank": "normal" + }], + "P268": [{ + "mainsnak": { + "snaktype": "value", + "property": "P268", + "hash": "6c26a220e139d739b090f743a20ceec3b2b13d36", + "datavalue": {"value": "11934545s", "type": "string"}, + "datatype": "external-id" + }, + "type": "statement", + "qualifiers": { + "P1810": [{ + "snaktype": "value", + "property": "P1810", + "hash": "03c80cb894e30b3c675b60c14a8c96334cbb474c", + "datavalue": {"value": "Princes", "type": "string"}, + "datatype": "string" + }] + }, + "qualifiers-order": ["P1810"], + "id": "Q2747456$58ba630c-6458-4a5a-8913-a294e6124d7b", + "rank": "normal", + "references": [{ + "hash": "7c27b83b9977dcc1e39904c165117c33f6d4d258", + "snaks": { + "P248": [{ + "snaktype": "value", + "property": "P248", + "hash": "3b090a7bae73c288393b2c8b9846cc7ed9a58f91", + "datavalue": { + "value": { + "entity-type": "item", + "numeric-id": 16583225, + "id": "Q16583225" + }, "type": "wikibase-entityid" + }, + "datatype": "wikibase-item" + }], + "P854": [{ + "snaktype": "value", + "property": "P854", + "hash": "42ed86952731f89f4c99b0a5091aa580a24bf41f", + "datavalue": { + "value": "https://thes.bncf.firenze.sbn.it/termine.php?id=8468", + "type": "string" + }, + "datatype": "url" + }], + "P813": [{ + "snaktype": "value", + "property": "P813", + "hash": "fa626481f5288f46170160e657d94c0b692e3140", + "datavalue": { + "value": { + "time": "+2021-06-13T00:00:00Z", + "timezone": 0, + "before": 0, + "after": 0, + "precision": 11, + "calendarmodel": "http://www.wikidata.org/entity/Q1985727" + }, "type": "time" + }, + "datatype": "time" + }] + }, + "snaks-order": ["P248", "P854", "P813"] + }] + }], + "P950": [{ + "mainsnak": { + "snaktype": "value", + "property": "P950", + "hash": "cffc5e803a428e4e1c294de58122f1d3ed126bcd", + "datavalue": {"value": "XX542448", "type": "string"}, + "datatype": "external-id" + }, + "type": "statement", + "qualifiers": { + "P1810": [{ + "snaktype": "value", + "property": "P1810", + "hash": "c1ce0e3e614f65130d263d0a08d806a912624221", + "datavalue": {"value": "Pr\u00edncipes", "type": "string"}, + "datatype": "string" + }] + }, + "qualifiers-order": ["P1810"], + "id": "Q2747456$c8094f9b-d4b1-4050-9be0-252f7a070d8b", + "rank": "normal", + "references": [{ + "hash": "7c27b83b9977dcc1e39904c165117c33f6d4d258", + "snaks": { + "P248": [{ + "snaktype": "value", + "property": "P248", + "hash": "3b090a7bae73c288393b2c8b9846cc7ed9a58f91", + "datavalue": { + "value": { + "entity-type": "item", + "numeric-id": 16583225, + "id": "Q16583225" + }, "type": "wikibase-entityid" + }, + "datatype": "wikibase-item" + }], + "P854": [{ + "snaktype": "value", + "property": "P854", + "hash": "42ed86952731f89f4c99b0a5091aa580a24bf41f", + "datavalue": { + "value": "https://thes.bncf.firenze.sbn.it/termine.php?id=8468", + "type": "string" + }, + "datatype": "url" + }], + "P813": [{ + "snaktype": "value", + "property": "P813", + "hash": "fa626481f5288f46170160e657d94c0b692e3140", + "datavalue": { + "value": { + "time": "+2021-06-13T00:00:00Z", + "timezone": 0, + "before": 0, + "after": 0, + "precision": 11, + "calendarmodel": "http://www.wikidata.org/entity/Q1985727" + }, "type": "time" + }, + "datatype": "time" + }] + }, + "snaks-order": ["P248", "P854", "P813"] + }] + }], + "P527": [{ + "mainsnak": { + "snaktype": "value", + "property": "P527", + "hash": "1f078eae805dfe58ac01a303b2a5474a99df8a48", + "datavalue": { + "value": { + "entity-type": "item", + "numeric-id": 28495701, + "id": "Q28495701" + }, "type": "wikibase-entityid" + }, + "datatype": "wikibase-item" + }, + "type": "statement", + "id": "Q2747456$6a3b7447-4721-18a4-578e-97af51eeb4a5", + "rank": "normal" + }, { + "mainsnak": { + "snaktype": "value", + "property": "P527", + "hash": "168b349e75ce98b28c0f65998a2fe2d2f1e0f7f5", + "datavalue": { + "value": { + "entity-type": "item", + "numeric-id": 3403409, + "id": "Q3403409" + }, "type": "wikibase-entityid" + }, + "datatype": "wikibase-item" + }, + "type": "statement", + "id": "Q2747456$d2253d2b-4584-2367-122e-557303f41540", + "rank": "normal" + }] + }, + "sitelinks": { + "amwiki": { + "site": "amwiki", + "title": "\u120d\u12d1\u120d", + "badges": [], + "url": "https://am.wikipedia.org/wiki/%E1%88%8D%E1%8B%91%E1%88%8D" }, - "sitelinks": { - "amwiki": { - "site": "amwiki", - "title": "\u120d\u12d1\u120d", - "badges": [], - "url": "https://am.wikipedia.org/wiki/%E1%88%8D%E1%8B%91%E1%88%8D" - }, - "arwiki": { - "site": "arwiki", - "title": "\u0623\u0645\u064a\u0631 (\u0644\u0642\u0628)", - "badges": [], - "url": "https://ar.wikipedia.org/wiki/%D8%A3%D9%85%D9%8A%D8%B1_(%D9%84%D9%82%D8%A8)" - }, - "astwiki": { - "site": "astwiki", - "title": "Pr\u00edncipe", - "badges": [], - "url": "https://ast.wikipedia.org/wiki/Pr%C3%ADncipe" - }, - "azwiki": { - "site": "azwiki", - "title": "Prens", - "badges": [], - "url": "https://az.wikipedia.org/wiki/Prens" - }, - "be_x_oldwiki": { - "site": "be_x_oldwiki", - "title": "\u041f\u0440\u044b\u043d\u0446", - "badges": [], - "url": "https://be-tarask.wikipedia.org/wiki/%D0%9F%D1%80%D1%8B%D0%BD%D1%86" - }, - "bewiki": { - "site": "bewiki", - "title": "\u041f\u0440\u044b\u043d\u0446", - "badges": [], - "url": "https://be.wikipedia.org/wiki/%D0%9F%D1%80%D1%8B%D0%BD%D1%86" - }, - "bgwiki": { - "site": "bgwiki", - "title": "\u041f\u0440\u0438\u043d\u0446", - "badges": [], - "url": "https://bg.wikipedia.org/wiki/%D0%9F%D1%80%D0%B8%D0%BD%D1%86" - }, - "bxrwiki": { - "site": "bxrwiki", - "title": "\u0425\u0430\u043d \u0445\u04af\u0431\u04af\u04af\u043d", - "badges": [], - "url": "https://bxr.wikipedia.org/wiki/%D0%A5%D0%B0%D0%BD_%D1%85%D2%AF%D0%B1%D2%AF%D2%AF%D0%BD" - }, - "cawiki": { - "site": "cawiki", - "title": "Pr\u00edncep", - "badges": [], - "url": "https://ca.wikipedia.org/wiki/Pr%C3%ADncep" - }, - "cswiki": { - "site": "cswiki", - "title": "Princ", - "badges": [], - "url": "https://cs.wikipedia.org/wiki/Princ" - }, - "cywiki": { - "site": "cywiki", - "title": "Tywysog", - "badges": [], - "url": "https://cy.wikipedia.org/wiki/Tywysog" - }, - "dawiki": { - "site": "dawiki", - "title": "Prins", - "badges": [], - "url": "https://da.wikipedia.org/wiki/Prins" - }, - "dewiki": { - "site": "dewiki", - "title": "Prinz", - "badges": [], - "url": "https://de.wikipedia.org/wiki/Prinz" - }, - "dewikiquote": { - "site": "dewikiquote", - "title": "Prinz", - "badges": [], - "url": "https://de.wikiquote.org/wiki/Prinz" - }, - "diqwiki": { - "site": "diqwiki", - "title": "Prens", - "badges": [], - "url": "https://diq.wikipedia.org/wiki/Prens" - }, - "elwiki": { - "site": "elwiki", - "title": "\u03a0\u03c1\u03af\u03b3\u03ba\u03b9\u03c0\u03b1\u03c2", - "badges": [], - "url": "https://el.wikipedia.org/wiki/%CE%A0%CF%81%CE%AF%CE%B3%CE%BA%CE%B9%CF%80%CE%B1%CF%82" - }, - "enwiki": { - "site": "enwiki", - "title": "Prince", - "badges": [], - "url": "https://en.wikipedia.org/wiki/Prince" - }, - "enwikiquote": { - "site": "enwikiquote", - "title": "Prince", - "badges": [], - "url": "https://en.wikiquote.org/wiki/Prince" - }, - "eowiki": { - "site": "eowiki", - "title": "Princo", - "badges": [], - "url": "https://eo.wikipedia.org/wiki/Princo" - }, - "eswiki": { - "site": "eswiki", - "title": "Pr\u00edncipe", - "badges": [], - "url": "https://es.wikipedia.org/wiki/Pr%C3%ADncipe" - }, - "etwiki": { - "site": "etwiki", - "title": "Prints (j\u00e4reltulija)", - "badges": [], - "url": "https://et.wikipedia.org/wiki/Prints_(j%C3%A4reltulija)" - }, - "etwikiquote": { - "site": "etwikiquote", - "title": "Prints", - "badges": [], - "url": "https://et.wikiquote.org/wiki/Prints" - }, - "euwiki": { - "site": "euwiki", - "title": "Printze", - "badges": [], - "url": "https://eu.wikipedia.org/wiki/Printze" - }, - "fawiki": { - "site": "fawiki", - "title": "\u0634\u0627\u0647\u0632\u0627\u062f\u0647", - "badges": [], - "url": "https://fa.wikipedia.org/wiki/%D8%B4%D8%A7%D9%87%D8%B2%D8%A7%D8%AF%D9%87" - }, - "fiwiki": { - "site": "fiwiki", - "title": "Prinssi", - "badges": [], - "url": "https://fi.wikipedia.org/wiki/Prinssi" - }, - "frwiki": { - "site": "frwiki", - "title": "Prince (dignit\u00e9)", - "badges": [], - "url": "https://fr.wikipedia.org/wiki/Prince_(dignit%C3%A9)" - }, - "fywiki": { - "site": "fywiki", - "title": "Prins", - "badges": [], - "url": "https://fy.wikipedia.org/wiki/Prins" - }, - "gawiki": { - "site": "gawiki", - "title": "Prionsa", - "badges": [], - "url": "https://ga.wikipedia.org/wiki/Prionsa" - }, - "glwiki": { - "site": "glwiki", - "title": "Pr\u00edncipe", - "badges": [], - "url": "https://gl.wikipedia.org/wiki/Pr%C3%ADncipe" - }, - "hewiki": { - "site": "hewiki", - "title": "\u05e0\u05e1\u05d9\u05da", - "badges": [], - "url": "https://he.wikipedia.org/wiki/%D7%A0%D7%A1%D7%99%D7%9A" - }, - "hewikiquote": { - "site": "hewikiquote", - "title": "\u05e0\u05e1\u05d9\u05da", - "badges": [], - "url": "https://he.wikiquote.org/wiki/%D7%A0%D7%A1%D7%99%D7%9A" - }, - "hrwiki": { - "site": "hrwiki", - "title": "Princ", - "badges": [], - "url": "https://hr.wikipedia.org/wiki/Princ" - }, - "idwiki": { - "site": "idwiki", - "title": "Pangeran", - "badges": [], - "url": "https://id.wikipedia.org/wiki/Pangeran" - }, - "iswiki": { - "site": "iswiki", - "title": "Prins", - "badges": [], - "url": "https://is.wikipedia.org/wiki/Prins" - }, - "itwiki": { - "site": "itwiki", - "title": "Principe", - "badges": [], - "url": "https://it.wikipedia.org/wiki/Principe" - }, - "itwikiquote": { - "site": "itwikiquote", - "title": "Principe", - "badges": [], - "url": "https://it.wikiquote.org/wiki/Principe" - }, - "jawiki": { - "site": "jawiki", - "title": "\u30d7\u30ea\u30f3\u30b9", - "badges": [], - "url": "https://ja.wikipedia.org/wiki/%E3%83%97%E3%83%AA%E3%83%B3%E3%82%B9" - }, - "jvwiki": { - "site": "jvwiki", - "title": "Pang\u00e9ran", - "badges": [], - "url": "https://jv.wikipedia.org/wiki/Pang%C3%A9ran" - }, - "kawiki": { - "site": "kawiki", - "title": "\u10e3\u10e4\u10da\u10d8\u10e1\u10ec\u10e3\u10da\u10d8", - "badges": [], - "url": "https://ka.wikipedia.org/wiki/%E1%83%A3%E1%83%A4%E1%83%9A%E1%83%98%E1%83%A1%E1%83%AC%E1%83%A3%E1%83%9A%E1%83%98" - }, - "kowiki": { - "site": "kowiki", - "title": "\ud504\ub9b0\uc2a4", - "badges": [], - "url": "https://ko.wikipedia.org/wiki/%ED%94%84%EB%A6%B0%EC%8A%A4" - }, - "lawiki": { - "site": "lawiki", - "title": "Princeps", - "badges": [], - "url": "https://la.wikipedia.org/wiki/Princeps" - }, - "lawikiquote": { - "site": "lawikiquote", - "title": "Princeps", - "badges": [], - "url": "https://la.wikiquote.org/wiki/Princeps" - }, - "lvwiki": { - "site": "lvwiki", - "title": "Princis", - "badges": [], - "url": "https://lv.wikipedia.org/wiki/Princis" - }, - "mswiki": { - "site": "mswiki", - "title": "Putera", - "badges": [], - "url": "https://ms.wikipedia.org/wiki/Putera" - }, - "newiki": { - "site": "newiki", - "title": "\u0930\u093e\u091c\u0915\u0941\u092e\u093e\u0930", - "badges": [], - "url": "https://ne.wikipedia.org/wiki/%E0%A4%B0%E0%A4%BE%E0%A4%9C%E0%A4%95%E0%A5%81%E0%A4%AE%E0%A4%BE%E0%A4%B0" - }, - "nlwiki": { - "site": "nlwiki", - "title": "Prins", - "badges": [], - "url": "https://nl.wikipedia.org/wiki/Prins" - }, - "nnwiki": { - "site": "nnwiki", - "title": "Prins", - "badges": [], - "url": "https://nn.wikipedia.org/wiki/Prins" - }, - "nowiki": { - "site": "nowiki", - "title": "Prins", - "badges": [], - "url": "https://no.wikipedia.org/wiki/Prins" - }, - "plwiki": { - "site": "plwiki", - "title": "Ksi\u0105\u017c\u0119", - "badges": [], - "url": "https://pl.wikipedia.org/wiki/Ksi%C4%85%C5%BC%C4%99" - }, - "plwikiquote": { - "site": "plwikiquote", - "title": "Ksi\u0105\u017c\u0119", - "badges": [], - "url": "https://pl.wikiquote.org/wiki/Ksi%C4%85%C5%BC%C4%99" - }, - "ptwiki": { - "site": "ptwiki", - "title": "Pr\u00edncipe", - "badges": [], - "url": "https://pt.wikipedia.org/wiki/Pr%C3%ADncipe" - }, - "ptwikiquote": { - "site": "ptwikiquote", - "title": "Pr\u00edncipe", - "badges": [], - "url": "https://pt.wikiquote.org/wiki/Pr%C3%ADncipe" - }, - "rmywiki": { - "site": "rmywiki", - "title": "Rayon", - "badges": [], - "url": "https://rmy.wikipedia.org/wiki/Rayon" - }, - "rowiki": { - "site": "rowiki", - "title": "Prin\u021b", - "badges": [], - "url": "https://ro.wikipedia.org/wiki/Prin%C8%9B" - }, - "ruwiki": { - "site": "ruwiki", - "title": "\u041f\u0440\u0438\u043d\u0446", - "badges": [], - "url": "https://ru.wikipedia.org/wiki/%D0%9F%D1%80%D0%B8%D0%BD%D1%86" - }, - "scnwiki": { - "site": "scnwiki", - "title": "Pr\u00ecncipi", - "badges": [], - "url": "https://scn.wikipedia.org/wiki/Pr%C3%ACncipi" - }, - "scowiki": { - "site": "scowiki", - "title": "Prince", - "badges": [], - "url": "https://sco.wikipedia.org/wiki/Prince" - }, - "shwiki": { - "site": "shwiki", - "title": "Princ", - "badges": [], - "url": "https://sh.wikipedia.org/wiki/Princ" - }, - "simplewiki": { - "site": "simplewiki", - "title": "Prince", - "badges": [], - "url": "https://simple.wikipedia.org/wiki/Prince" - }, - "skwiki": { - "site": "skwiki", - "title": "Princ", - "badges": [], - "url": "https://sk.wikipedia.org/wiki/Princ" - }, - "slwiki": { - "site": "slwiki", - "title": "Princ", - "badges": [], - "url": "https://sl.wikipedia.org/wiki/Princ" - }, - "srwiki": { - "site": "srwiki", - "title": "Princ", - "badges": [], - "url": "https://sr.wikipedia.org/wiki/Princ" - }, - "suwiki": { - "site": "suwiki", - "title": "Pang\u00e9ran", - "badges": [], - "url": "https://su.wikipedia.org/wiki/Pang%C3%A9ran" - }, - "svwiki": { - "site": "svwiki", - "title": "Prins", - "badges": [], - "url": "https://sv.wikipedia.org/wiki/Prins" - }, - "thwiki": { - "site": "thwiki", - "title": "\u0e40\u0e08\u0e49\u0e32", - "badges": [], - "url": "https://th.wikipedia.org/wiki/%E0%B9%80%E0%B8%88%E0%B9%89%E0%B8%B2" - }, - "trwiki": { - "site": "trwiki", - "title": "Prens", - "badges": [], - "url": "https://tr.wikipedia.org/wiki/Prens" - }, - "ukwiki": { - "site": "ukwiki", - "title": "\u041f\u0440\u0438\u043d\u0446", - "badges": [], - "url": "https://uk.wikipedia.org/wiki/%D0%9F%D1%80%D0%B8%D0%BD%D1%86" - }, - "urwiki": { - "site": "urwiki", - "title": "\u0634\u06c1\u0632\u0627\u062f\u06c1", - "badges": [], - "url": "https://ur.wikipedia.org/wiki/%D8%B4%DB%81%D8%B2%D8%A7%D8%AF%DB%81" - }, - "vecwiki": { - "site": "vecwiki", - "title": "Principe", - "badges": [], - "url": "https://vec.wikipedia.org/wiki/Principe" - }, - "viwiki": { - "site": "viwiki", - "title": "V\u01b0\u01a1ng t\u01b0\u1edbc", - "badges": [], - "url": "https://vi.wikipedia.org/wiki/V%C6%B0%C6%A1ng_t%C6%B0%E1%BB%9Bc" - }, - "wuuwiki": { - "site": "wuuwiki", - "title": "\u738b\u7235", - "badges": [], - "url": "https://wuu.wikipedia.org/wiki/%E7%8E%8B%E7%88%B5" - }, - "zh_min_nanwiki": { - "site": "zh_min_nanwiki", - "title": "Prince", - "badges": [], - "url": "https://zh-min-nan.wikipedia.org/wiki/Prince" - }, - "zh_yuewiki": { - "site": "zh_yuewiki", - "title": "\u89aa\u738b", - "badges": [], - "url": "https://zh-yue.wikipedia.org/wiki/%E8%A6%AA%E7%8E%8B" - }, - "zhwiki": { - "site": "zhwiki", - "title": "\u738b\u7235", - "badges": [], - "url": "https://zh.wikipedia.org/wiki/%E7%8E%8B%E7%88%B5" - } + "arwiki": { + "site": "arwiki", + "title": "\u0623\u0645\u064a\u0631 (\u0644\u0642\u0628)", + "badges": [], + "url": "https://ar.wikipedia.org/wiki/%D8%A3%D9%85%D9%8A%D8%B1_(%D9%84%D9%82%D8%A8)" + }, + "astwiki": { + "site": "astwiki", + "title": "Pr\u00edncipe", + "badges": [], + "url": "https://ast.wikipedia.org/wiki/Pr%C3%ADncipe" + }, + "azwiki": { + "site": "azwiki", + "title": "Prens", + "badges": [], + "url": "https://az.wikipedia.org/wiki/Prens" + }, + "be_x_oldwiki": { + "site": "be_x_oldwiki", + "title": "\u041f\u0440\u044b\u043d\u0446", + "badges": [], + "url": "https://be-tarask.wikipedia.org/wiki/%D0%9F%D1%80%D1%8B%D0%BD%D1%86" + }, + "bewiki": { + "site": "bewiki", + "title": "\u041f\u0440\u044b\u043d\u0446", + "badges": [], + "url": "https://be.wikipedia.org/wiki/%D0%9F%D1%80%D1%8B%D0%BD%D1%86" + }, + "bgwiki": { + "site": "bgwiki", + "title": "\u041f\u0440\u0438\u043d\u0446", + "badges": [], + "url": "https://bg.wikipedia.org/wiki/%D0%9F%D1%80%D0%B8%D0%BD%D1%86" + }, + "bxrwiki": { + "site": "bxrwiki", + "title": "\u0425\u0430\u043d \u0445\u04af\u0431\u04af\u04af\u043d", + "badges": [], + "url": "https://bxr.wikipedia.org/wiki/%D0%A5%D0%B0%D0%BD_%D1%85%D2%AF%D0%B1%D2%AF%D2%AF%D0%BD" + }, + "cawiki": { + "site": "cawiki", + "title": "Pr\u00edncep", + "badges": [], + "url": "https://ca.wikipedia.org/wiki/Pr%C3%ADncep" + }, + "cswiki": { + "site": "cswiki", + "title": "Princ", + "badges": [], + "url": "https://cs.wikipedia.org/wiki/Princ" + }, + "cywiki": { + "site": "cywiki", + "title": "Tywysog", + "badges": [], + "url": "https://cy.wikipedia.org/wiki/Tywysog" + }, + "dawiki": { + "site": "dawiki", + "title": "Prins", + "badges": [], + "url": "https://da.wikipedia.org/wiki/Prins" + }, + "dewiki": { + "site": "dewiki", + "title": "Prinz", + "badges": [], + "url": "https://de.wikipedia.org/wiki/Prinz" + }, + "dewikiquote": { + "site": "dewikiquote", + "title": "Prinz", + "badges": [], + "url": "https://de.wikiquote.org/wiki/Prinz" + }, + "diqwiki": { + "site": "diqwiki", + "title": "Prens", + "badges": [], + "url": "https://diq.wikipedia.org/wiki/Prens" + }, + "elwiki": { + "site": "elwiki", + "title": "\u03a0\u03c1\u03af\u03b3\u03ba\u03b9\u03c0\u03b1\u03c2", + "badges": [], + "url": "https://el.wikipedia.org/wiki/%CE%A0%CF%81%CE%AF%CE%B3%CE%BA%CE%B9%CF%80%CE%B1%CF%82" + }, + "enwiki": { + "site": "enwiki", + "title": "Prince", + "badges": [], + "url": "https://en.wikipedia.org/wiki/Prince" + }, + "enwikiquote": { + "site": "enwikiquote", + "title": "Prince", + "badges": [], + "url": "https://en.wikiquote.org/wiki/Prince" + }, + "eowiki": { + "site": "eowiki", + "title": "Princo", + "badges": [], + "url": "https://eo.wikipedia.org/wiki/Princo" + }, + "eswiki": { + "site": "eswiki", + "title": "Pr\u00edncipe", + "badges": [], + "url": "https://es.wikipedia.org/wiki/Pr%C3%ADncipe" + }, + "etwiki": { + "site": "etwiki", + "title": "Prints (j\u00e4reltulija)", + "badges": [], + "url": "https://et.wikipedia.org/wiki/Prints_(j%C3%A4reltulija)" + }, + "etwikiquote": { + "site": "etwikiquote", + "title": "Prints", + "badges": [], + "url": "https://et.wikiquote.org/wiki/Prints" + }, + "euwiki": { + "site": "euwiki", + "title": "Printze", + "badges": [], + "url": "https://eu.wikipedia.org/wiki/Printze" + }, + "fawiki": { + "site": "fawiki", + "title": "\u0634\u0627\u0647\u0632\u0627\u062f\u0647", + "badges": [], + "url": "https://fa.wikipedia.org/wiki/%D8%B4%D8%A7%D9%87%D8%B2%D8%A7%D8%AF%D9%87" + }, + "fiwiki": { + "site": "fiwiki", + "title": "Prinssi", + "badges": [], + "url": "https://fi.wikipedia.org/wiki/Prinssi" + }, + "frwiki": { + "site": "frwiki", + "title": "Prince (dignit\u00e9)", + "badges": [], + "url": "https://fr.wikipedia.org/wiki/Prince_(dignit%C3%A9)" + }, + "fywiki": { + "site": "fywiki", + "title": "Prins", + "badges": [], + "url": "https://fy.wikipedia.org/wiki/Prins" + }, + "gawiki": { + "site": "gawiki", + "title": "Prionsa", + "badges": [], + "url": "https://ga.wikipedia.org/wiki/Prionsa" + }, + "glwiki": { + "site": "glwiki", + "title": "Pr\u00edncipe", + "badges": [], + "url": "https://gl.wikipedia.org/wiki/Pr%C3%ADncipe" + }, + "hewiki": { + "site": "hewiki", + "title": "\u05e0\u05e1\u05d9\u05da", + "badges": [], + "url": "https://he.wikipedia.org/wiki/%D7%A0%D7%A1%D7%99%D7%9A" + }, + "hewikiquote": { + "site": "hewikiquote", + "title": "\u05e0\u05e1\u05d9\u05da", + "badges": [], + "url": "https://he.wikiquote.org/wiki/%D7%A0%D7%A1%D7%99%D7%9A" + }, + "hrwiki": { + "site": "hrwiki", + "title": "Princ", + "badges": [], + "url": "https://hr.wikipedia.org/wiki/Princ" + }, + "idwiki": { + "site": "idwiki", + "title": "Pangeran", + "badges": [], + "url": "https://id.wikipedia.org/wiki/Pangeran" + }, + "iswiki": { + "site": "iswiki", + "title": "Prins", + "badges": [], + "url": "https://is.wikipedia.org/wiki/Prins" + }, + "itwiki": { + "site": "itwiki", + "title": "Principe", + "badges": [], + "url": "https://it.wikipedia.org/wiki/Principe" + }, + "itwikiquote": { + "site": "itwikiquote", + "title": "Principe", + "badges": [], + "url": "https://it.wikiquote.org/wiki/Principe" + }, + "jawiki": { + "site": "jawiki", + "title": "\u30d7\u30ea\u30f3\u30b9", + "badges": [], + "url": "https://ja.wikipedia.org/wiki/%E3%83%97%E3%83%AA%E3%83%B3%E3%82%B9" + }, + "jvwiki": { + "site": "jvwiki", + "title": "Pang\u00e9ran", + "badges": [], + "url": "https://jv.wikipedia.org/wiki/Pang%C3%A9ran" + }, + "kawiki": { + "site": "kawiki", + "title": "\u10e3\u10e4\u10da\u10d8\u10e1\u10ec\u10e3\u10da\u10d8", + "badges": [], + "url": "https://ka.wikipedia.org/wiki/%E1%83%A3%E1%83%A4%E1%83%9A%E1%83%98%E1%83%A1%E1%83%AC%E1%83%A3%E1%83%9A%E1%83%98" + }, + "kowiki": { + "site": "kowiki", + "title": "\ud504\ub9b0\uc2a4", + "badges": [], + "url": "https://ko.wikipedia.org/wiki/%ED%94%84%EB%A6%B0%EC%8A%A4" + }, + "lawiki": { + "site": "lawiki", + "title": "Princeps", + "badges": [], + "url": "https://la.wikipedia.org/wiki/Princeps" + }, + "lawikiquote": { + "site": "lawikiquote", + "title": "Princeps", + "badges": [], + "url": "https://la.wikiquote.org/wiki/Princeps" + }, + "lvwiki": { + "site": "lvwiki", + "title": "Princis", + "badges": [], + "url": "https://lv.wikipedia.org/wiki/Princis" + }, + "mswiki": { + "site": "mswiki", + "title": "Putera", + "badges": [], + "url": "https://ms.wikipedia.org/wiki/Putera" + }, + "newiki": { + "site": "newiki", + "title": "\u0930\u093e\u091c\u0915\u0941\u092e\u093e\u0930", + "badges": [], + "url": "https://ne.wikipedia.org/wiki/%E0%A4%B0%E0%A4%BE%E0%A4%9C%E0%A4%95%E0%A5%81%E0%A4%AE%E0%A4%BE%E0%A4%B0" + }, + "nlwiki": { + "site": "nlwiki", + "title": "Prins", + "badges": [], + "url": "https://nl.wikipedia.org/wiki/Prins" + }, + "nnwiki": { + "site": "nnwiki", + "title": "Prins", + "badges": [], + "url": "https://nn.wikipedia.org/wiki/Prins" + }, + "nowiki": { + "site": "nowiki", + "title": "Prins", + "badges": [], + "url": "https://no.wikipedia.org/wiki/Prins" + }, + "plwiki": { + "site": "plwiki", + "title": "Ksi\u0105\u017c\u0119", + "badges": [], + "url": "https://pl.wikipedia.org/wiki/Ksi%C4%85%C5%BC%C4%99" + }, + "plwikiquote": { + "site": "plwikiquote", + "title": "Ksi\u0105\u017c\u0119", + "badges": [], + "url": "https://pl.wikiquote.org/wiki/Ksi%C4%85%C5%BC%C4%99" + }, + "ptwiki": { + "site": "ptwiki", + "title": "Pr\u00edncipe", + "badges": [], + "url": "https://pt.wikipedia.org/wiki/Pr%C3%ADncipe" + }, + "ptwikiquote": { + "site": "ptwikiquote", + "title": "Pr\u00edncipe", + "badges": [], + "url": "https://pt.wikiquote.org/wiki/Pr%C3%ADncipe" + }, + "rmywiki": { + "site": "rmywiki", + "title": "Rayon", + "badges": [], + "url": "https://rmy.wikipedia.org/wiki/Rayon" + }, + "rowiki": { + "site": "rowiki", + "title": "Prin\u021b", + "badges": [], + "url": "https://ro.wikipedia.org/wiki/Prin%C8%9B" + }, + "ruwiki": { + "site": "ruwiki", + "title": "\u041f\u0440\u0438\u043d\u0446", + "badges": [], + "url": "https://ru.wikipedia.org/wiki/%D0%9F%D1%80%D0%B8%D0%BD%D1%86" + }, + "scnwiki": { + "site": "scnwiki", + "title": "Pr\u00ecncipi", + "badges": [], + "url": "https://scn.wikipedia.org/wiki/Pr%C3%ACncipi" + }, + "scowiki": { + "site": "scowiki", + "title": "Prince", + "badges": [], + "url": "https://sco.wikipedia.org/wiki/Prince" + }, + "shwiki": { + "site": "shwiki", + "title": "Princ", + "badges": [], + "url": "https://sh.wikipedia.org/wiki/Princ" + }, + "simplewiki": { + "site": "simplewiki", + "title": "Prince", + "badges": [], + "url": "https://simple.wikipedia.org/wiki/Prince" + }, + "skwiki": { + "site": "skwiki", + "title": "Princ", + "badges": [], + "url": "https://sk.wikipedia.org/wiki/Princ" + }, + "slwiki": { + "site": "slwiki", + "title": "Princ", + "badges": [], + "url": "https://sl.wikipedia.org/wiki/Princ" + }, + "srwiki": { + "site": "srwiki", + "title": "Princ", + "badges": [], + "url": "https://sr.wikipedia.org/wiki/Princ" + }, + "suwiki": { + "site": "suwiki", + "title": "Pang\u00e9ran", + "badges": [], + "url": "https://su.wikipedia.org/wiki/Pang%C3%A9ran" + }, + "svwiki": { + "site": "svwiki", + "title": "Prins", + "badges": [], + "url": "https://sv.wikipedia.org/wiki/Prins" + }, + "thwiki": { + "site": "thwiki", + "title": "\u0e40\u0e08\u0e49\u0e32", + "badges": [], + "url": "https://th.wikipedia.org/wiki/%E0%B9%80%E0%B8%88%E0%B9%89%E0%B8%B2" + }, + "trwiki": { + "site": "trwiki", + "title": "Prens", + "badges": [], + "url": "https://tr.wikipedia.org/wiki/Prens" + }, + "ukwiki": { + "site": "ukwiki", + "title": "\u041f\u0440\u0438\u043d\u0446", + "badges": [], + "url": "https://uk.wikipedia.org/wiki/%D0%9F%D1%80%D0%B8%D0%BD%D1%86" + }, + "urwiki": { + "site": "urwiki", + "title": "\u0634\u06c1\u0632\u0627\u062f\u06c1", + "badges": [], + "url": "https://ur.wikipedia.org/wiki/%D8%B4%DB%81%D8%B2%D8%A7%D8%AF%DB%81" + }, + "vecwiki": { + "site": "vecwiki", + "title": "Principe", + "badges": [], + "url": "https://vec.wikipedia.org/wiki/Principe" + }, + "viwiki": { + "site": "viwiki", + "title": "V\u01b0\u01a1ng t\u01b0\u1edbc", + "badges": [], + "url": "https://vi.wikipedia.org/wiki/V%C6%B0%C6%A1ng_t%C6%B0%E1%BB%9Bc" + }, + "wuuwiki": { + "site": "wuuwiki", + "title": "\u738b\u7235", + "badges": [], + "url": "https://wuu.wikipedia.org/wiki/%E7%8E%8B%E7%88%B5" + }, + "zh_min_nanwiki": { + "site": "zh_min_nanwiki", + "title": "Prince", + "badges": [], + "url": "https://zh-min-nan.wikipedia.org/wiki/Prince" + }, + "zh_yuewiki": { + "site": "zh_yuewiki", + "title": "\u89aa\u738b", + "badges": [], + "url": "https://zh-yue.wikipedia.org/wiki/%E8%A6%AA%E7%8E%8B" + }, + "zhwiki": { + "site": "zhwiki", + "title": "\u738b\u7235", + "badges": [], + "url": "https://zh.wikipedia.org/wiki/%E7%8E%8B%E7%88%B5" } } } } - ) + } + ) - const wikidata = await Wikidata.LoadWikidataEntryAsync("2747456") - }], - ["Extract key from a lexeme", () => { - Utils.injectJsonDownloadForTests( - "https://www.wikidata.org/wiki/Special:EntityData/L614072.json", - { - "entities": { - "L614072": { - "pageid": 104085278, - "ns": 146, - "title": "Lexeme:L614072", - "lastrevid": 1509989280, - "modified": "2021-10-09T18:43:52Z", - "type": "lexeme", - "id": "L614072", - "lemmas": {"nl": {"language": "nl", "value": "Groen"}}, - "lexicalCategory": "Q34698", - "language": "Q7411", - "claims": {}, - "forms": [], - "senses": [{ - "id": "L614072-S1", - "glosses": {"nl": {"language": "nl", "value": "Nieuw"}}, - "claims": {} - }, { - "id": "L614072-S2", - "glosses": {"nl": {"language": "nl", "value": "Jong"}}, - "claims": {} - }, { - "id": "L614072-S3", - "glosses": {"nl": {"language": "nl", "value": "Pril"}}, - "claims": {} - }] - } + const wikidata = await Wikidata.LoadWikidataEntryAsync("2747456") + }], + ["Extract key from a lexeme", () => { + Utils.injectJsonDownloadForTests( + "https://www.wikidata.org/wiki/Special:EntityData/L614072.json", + { + "entities": { + "L614072": { + "pageid": 104085278, + "ns": 146, + "title": "Lexeme:L614072", + "lastrevid": 1509989280, + "modified": "2021-10-09T18:43:52Z", + "type": "lexeme", + "id": "L614072", + "lemmas": {"nl": {"language": "nl", "value": "Groen"}}, + "lexicalCategory": "Q34698", + "language": "Q7411", + "claims": {}, + "forms": [], + "senses": [{ + "id": "L614072-S1", + "glosses": {"nl": {"language": "nl", "value": "Nieuw"}}, + "claims": {} + }, { + "id": "L614072-S2", + "glosses": {"nl": {"language": "nl", "value": "Jong"}}, + "claims": {} + }, { + "id": "L614072-S3", + "glosses": {"nl": {"language": "nl", "value": "Pril"}}, + "claims": {} + }] } } - ) + } + ) - const key = Wikidata.ExtractKey("https://www.wikidata.org/wiki/Lexeme:L614072") - T.equals("L614072", key) + const key = Wikidata.ExtractKey("https://www.wikidata.org/wiki/Lexeme:L614072") + T.equals("L614072", key) - }], - ["Download a lexeme", async () => { + }], + ["Download a lexeme", async () => { - const response = await Wikidata.LoadWikidataEntryAsync("https://www.wikidata.org/wiki/Lexeme:L614072") - T.isTrue(response !== undefined, "Response is undefined") + const response = await Wikidata.LoadWikidataEntryAsync("https://www.wikidata.org/wiki/Lexeme:L614072") + T.isTrue(response !== undefined, "Response is undefined") - }] + }] - ]); + ]); } } \ No newline at end of file diff --git a/theme.html b/theme.html new file mode 100644 index 0000000000..d032d0174d --- /dev/null +++ b/theme.html @@ -0,0 +1,91 @@ + + + + + + + + + + + + + + + + + + + + MapComplete + + + + + + + + + + + + + + + + + + + + + +
+ + + + +
+ + +
+
+ +
+
+
+
+ +
+
+ +
+
+
+
+ +

Loading MapComplete, hang on...

+
+

Powered by OpenStreetMap

+
+ + MapComplete is an easy to use map viewer and map editor + +
+
+
+
+ + +Below +
+ + + + + + + +